commit 7416dfed3822a8301c17237b67590e3ed3e0d8fd Author: Carlos Gutierrez Date: Mon Nov 24 17:11:51 2025 -0500 Adding hash algorithms diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7792c05 --- /dev/null +++ b/.gitignore @@ -0,0 +1,47 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class +papers/ +report.tex +*.so +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg + +# Virtual Environment +.venv/ +venv/ +ENV/ +env/ + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# Testing +.pytest_cache/ +.coverage +htmlcov/ +.tox/ + +# OS +.DS_Store +Thumbs.db + diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..5d03f9f --- /dev/null +++ b/LICENSE @@ -0,0 +1,22 @@ +MIT License + +Copyright (c) 2025 Carlos Gutierrez + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + diff --git a/README.md b/README.md new file mode 100644 index 0000000..2d690e7 --- /dev/null +++ b/README.md @@ -0,0 +1,230 @@ +# MSCS532 Assignment 7: Hash Tables and Their Practical Applications + +**Author:** Carlos Gutierrez +**Email:** cgutierrez44833@ucumberlands.edu +**Course:** MSCS532 – Data Structures and Algorithms +**Assignment:** Hash Tables and Their Practical Applications + +## Overview + +This assignment provides a comprehensive study of hash tables, including direct-address tables, hash functions, open addressing, and separate chaining. It includes implementations of various hash table data structures, hash function designs (both good and bad examples), theoretical complexity analysis, empirical benchmarking, test coverage, and reproducible visualization assets. + +## Repository Structure + +``` +MSCS532_Assignment7/ +├── docs/ +│ ├── hash_function_comparison.png # Hash function performance comparison +│ ├── open_addressing_vs_chaining.png # Collision resolution strategies comparison +│ ├── load_factor_impact.png # Performance at different load factors +│ └── collision_analysis.png # Collision analysis for different hash functions +├── examples/ +│ ├── hash_tables_demo.py # Hash table demonstrations +│ └── generate_plots.py # Script to reproduce all plots +├── src/ +│ ├── hash_functions.py # Various hash function implementations +│ ├── hash_tables.py # Hash table data structures +│ ├── benchmark.py # Benchmarking utilities +│ └── __init__.py # Package initialization +├── tests/ +│ ├── test_hash_functions.py # Tests for hash functions +│ └── test_hash_tables.py # Tests for hash tables +├── papers/ # Reference papers (PDFs) +├── requirements.txt # Python dependencies +├── README.md # Project documentation (this file) +└── REPORT.md # Detailed analysis report + +``` + +## Part 1: Hash Functions and Their Impact + +### Implementation + +#### Good Hash Functions + +* **Division Method:** `h(k) = k mod m` + * Simple and fast + * Requires careful choice of table size (preferably prime) + +* **Multiplication Method:** `h(k) = floor(m * (kA mod 1))` + * Good distribution with proper choice of A + * Default A = (√5 - 1)/2 ≈ 0.618 + +* **Universal Hash Functions:** `h(k) = ((a*k + b) mod p) mod m` + * Minimizes collisions for any set of keys + * Requires random parameters a, b and prime p + +* **Polynomial String Hash:** Rolling hash for strings + * Better distribution than simple summation + * Base 31 is commonly used + +* **DJB2 Hash:** Popular string hash function + * Known for good distribution properties + +#### Bad Hash Functions (Demonstration) + +* **Simple String Hash:** Sums character values + * Prone to collisions for similar strings + * Poor distribution + +* **Bad Clustering Hash:** Demonstrates clustering behavior + * Causes many collisions and poor performance + +### API Highlights + +**Hash Functions:** + +```python +division_hash(key: int, table_size: int) -> int +multiplication_hash(key: int, table_size: int, A: float) -> int +universal_hash(key: int, table_size: int, a: int, b: int, p: int) -> int +string_hash_polynomial(key: str, table_size: int, base: int) -> int +string_hash_simple(key: str, table_size: int) -> int # BAD EXAMPLE +bad_hash_clustering(key: int, table_size: int) -> int # BAD EXAMPLE +``` + +## Part 2: Hash Table Data Structures + +### Implementation + +#### Direct-Address Table + +* **File:** `src/hash_tables.py` +* **Operations:** insert, search, delete +* **Time Complexity:** O(1) for all operations +* **Space Complexity:** O(m) where m is the key range +* **Use Case:** When keys are integers in a small known range + +#### Open Addressing + +* **File:** `src/hash_tables.py` +* **Probe Types:** + * Linear Probing: `h(k,i) = (h'(k) + i) mod m` + * Quadratic Probing: `h(k,i) = (h'(k) + c1*i + c2*i²) mod m` + * Double Hashing: `h(k,i) = (h1(k) + i*h2(k)) mod m` +* **Operations:** insert, search, delete +* **Time Complexity:** + * Best/Average: O(1) + * Worst: O(n) due to clustering +* **Space Complexity:** O(n) where n is number of elements + +#### Separate Chaining + +* **File:** `src/hash_tables.py` +* **Implementation:** Each bucket contains a linked list +* **Operations:** insert, search, delete +* **Time Complexity:** + * Best/Average: O(1) + * Worst: O(n) if all keys hash to same bucket +* **Space Complexity:** O(n + m) where m is table size + +### Theoretical Performance Analysis + +| Operation | Direct-Address | Open Addressing | Separate Chaining | +|-----------|---------------|-----------------|-------------------| +| Search | O(1) | O(1) avg, O(n) worst | O(1) avg, O(n) worst | +| Insert | O(1) | O(1) avg, O(n) worst | O(1) avg, O(n) worst | +| Delete | O(1) | O(1) avg, O(n) worst | O(1) avg, O(n) worst | +| Space | O(m) | O(n) | O(n + m) | + +**Key Insights:** + +* **Direct-Address:** Fastest but requires keys in known range +* **Open Addressing:** Better cache performance, but clustering can degrade performance +* **Separate Chaining:** More robust to high load factors, easier deletion + +## Getting Started + +### Prerequisites + +* Python 3.10 or later +* Recommended to use a virtual environment + +### Installation + +```bash +python -m venv .venv +source .venv/bin/activate # On Windows: .venv\Scripts\activate +pip install -r requirements.txt +``` + +## Running the Examples + +```bash +python examples/hash_tables_demo.py # Hash table demonstrations +python examples/generate_plots.py # Regenerate all figures in docs/ +``` + +## Running Tests + +```bash +python -m pytest +``` + +The test suite verifies correctness for: + +* All hash function implementations +* Direct-address table +* Open addressing (all probe types) +* Separate chaining + +## Reproducing the Empirical Study + +1. Activate your environment and install dependencies. +2. Run `python examples/generate_plots.py`. + * Benchmarks may take several minutes depending on hardware. +3. Generated figures will be written to the `docs/` directory. + +## Visualizations + +The following visualizations demonstrate key findings from our empirical analysis: + +### Hash Function Comparison + +![Hash Function Comparison](docs/hash_function_comparison.png) + +This visualization compares different hash functions across multiple metrics: collision rates, distribution variance, execution time, and maximum chain lengths. It clearly demonstrates the impact of hash function design on performance. + +### Open Addressing vs. Separate Chaining + +![Open Addressing vs. Separate Chaining](docs/open_addressing_vs_chaining.png) + +This comprehensive comparison shows insert, search, and delete performance across different data sizes for both open addressing (linear, quadratic, double hashing) and separate chaining methods. + +### Load Factor Impact + +![Load Factor Impact](docs/load_factor_impact.png) + +Performance curves demonstrating how operations degrade as load factor increases, highlighting the importance of maintaining appropriate load factors for optimal performance. + +### Collision Analysis + +![Collision Analysis](docs/collision_analysis.png) + +Detailed comparison of collision behavior, clearly demonstrating the dramatic difference between well-designed and poorly-designed hash functions. + +## Practical Applications + +### Hash Tables + +* **Database Systems:** Indexing, join operations +* **Caching:** Memoization, LRU caches +* **Symbol Tables:** Compilers, interpreters +* **Distributed Systems:** Consistent hashing for load balancing +* **Cryptography:** Hash-based data structures, digital signatures + +### Hash Functions + +* **Data Integrity:** Checksums, hash-based message authentication +* **Load Balancing:** Consistent hashing in distributed systems +* **Bloom Filters:** Probabilistic data structures +* **Database Indexing:** Hash indexes for fast lookups + +## Academic Integrity Statement + +This project is submitted for academic evaluation in MSCS532 – Data Structures and Algorithms. All code, analysis, and documentation were authored by Carlos Gutierrez for the specific purpose of this assignment. + +## References + +All references are cited in REPORT.md using APA 7th edition format. Reference papers are located in the `papers/` directory. + diff --git a/docs/collision_analysis.png b/docs/collision_analysis.png new file mode 100644 index 0000000..39d78b4 Binary files /dev/null and b/docs/collision_analysis.png differ diff --git a/docs/hash_function_comparison.png b/docs/hash_function_comparison.png new file mode 100644 index 0000000..ee11b7c Binary files /dev/null and b/docs/hash_function_comparison.png differ diff --git a/docs/load_factor_impact.png b/docs/load_factor_impact.png new file mode 100644 index 0000000..4e69a9a Binary files /dev/null and b/docs/load_factor_impact.png differ diff --git a/docs/load_factor_impact_probes.png b/docs/load_factor_impact_probes.png new file mode 100644 index 0000000..93519b8 Binary files /dev/null and b/docs/load_factor_impact_probes.png differ diff --git a/docs/open_addressing_vs_chaining.png b/docs/open_addressing_vs_chaining.png new file mode 100644 index 0000000..5a966ba Binary files /dev/null and b/docs/open_addressing_vs_chaining.png differ diff --git a/examples/generate_plots.py b/examples/generate_plots.py new file mode 100644 index 0000000..c5a3a39 --- /dev/null +++ b/examples/generate_plots.py @@ -0,0 +1,389 @@ +""" +Generate visualization plots for hash table performance analysis. +""" + +import sys +import os +import matplotlib.pyplot as plt +import numpy as np +sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..')) + +from src.benchmark import ( + benchmark_hash_functions, + benchmark_open_addressing_vs_chaining, + benchmark_load_factor_impact, + benchmark_load_factor_impact_probes, + generate_test_data +) +from src.hash_functions import ( + division_hash, + multiplication_hash, + string_hash_simple, + string_hash_polynomial, + string_hash_djb2, + bad_hash_clustering +) + + +def plot_hash_function_comparison(): + """Compare different hash functions.""" + print("Generating hash function comparison plot...") + + keys = generate_test_data(1000) + table_size = 100 + + hash_funcs = { + 'Division': division_hash, + 'Multiplication': lambda k, s: multiplication_hash(k, s), + 'Simple String': lambda k, s: string_hash_simple(str(k), s), + 'Polynomial String': lambda k, s: string_hash_polynomial(str(k), s), + 'DJB2': lambda k, s: string_hash_djb2(str(k), s), + 'Bad Clustering': bad_hash_clustering, + } + + results = benchmark_hash_functions(hash_funcs, keys, table_size) + + fig, axes = plt.subplots(2, 2, figsize=(14, 10)) + fig.suptitle('Hash Function Performance Comparison', fontsize=16, fontweight='bold') + + names = list(results.keys()) + collision_rates = [results[n]['collision_rate'] * 100 for n in names] + variances = [results[n]['variance'] for n in names] + times = [results[n]['time'] * 1000 for n in names] # Convert to ms + max_chains = [results[n]['max_chain_length'] for n in names] + + # Collision rate + axes[0, 0].bar(names, collision_rates, color='steelblue') + axes[0, 0].set_title('Collision Rate (%)', fontweight='bold') + axes[0, 0].set_ylabel('Collision Rate (%)') + axes[0, 0].tick_params(axis='x', rotation=45) + axes[0, 0].grid(axis='y', alpha=0.3) + + # Variance (distribution quality) + axes[0, 1].bar(names, variances, color='coral') + axes[0, 1].set_title('Distribution Variance (Lower is Better)', fontweight='bold') + axes[0, 1].set_ylabel('Variance') + axes[0, 1].tick_params(axis='x', rotation=45) + axes[0, 1].grid(axis='y', alpha=0.3) + + # Execution time + axes[1, 0].bar(names, times, color='mediumseagreen') + axes[1, 0].set_title('Execution Time', fontweight='bold') + axes[1, 0].set_ylabel('Time (ms)') + axes[1, 0].tick_params(axis='x', rotation=45) + axes[1, 0].grid(axis='y', alpha=0.3) + + # Max chain length + axes[1, 1].bar(names, max_chains, color='plum') + axes[1, 1].set_title('Maximum Chain Length', fontweight='bold') + axes[1, 1].set_ylabel('Max Chain Length') + axes[1, 1].tick_params(axis='x', rotation=45) + axes[1, 1].grid(axis='y', alpha=0.3) + + plt.tight_layout() + output_path = os.path.join(os.path.dirname(__file__), '..', 'docs', 'hash_function_comparison.png') + plt.savefig(output_path, dpi=300, bbox_inches='tight') + print(f"Saved: {output_path}") + plt.close() + + +def plot_open_addressing_vs_chaining(): + """Compare open addressing vs separate chaining.""" + print("Generating open addressing vs separate chaining comparison plot...") + + sizes = [100, 500, 1000, 5000, 10000] + results = benchmark_open_addressing_vs_chaining(sizes) + + fig, axes = plt.subplots(2, 2, figsize=(14, 10)) + fig.suptitle('Open Addressing vs Separate Chaining Performance', fontsize=16, fontweight='bold') + + sizes_arr = np.array(sizes) + + # Insert time + ax = axes[0, 0] + for probe_type in ['linear', 'quadratic', 'double']: + insert_times = [r['insert_time'] for r in results['open_addressing'][probe_type]] + ax.plot(sizes_arr, insert_times, marker='o', label=f'Open Addressing ({probe_type})', linewidth=2) + + insert_times_sc = [r['insert_time'] for r in results['separate_chaining']] + ax.plot(sizes_arr, insert_times_sc, marker='s', label='Separate Chaining', linewidth=2, linestyle='--') + ax.set_xlabel('Number of Elements') + ax.set_ylabel('Insert Time (seconds)') + ax.set_title('Insert Performance', fontweight='bold') + ax.legend() + ax.grid(alpha=0.3) + ax.set_xscale('log') + ax.set_yscale('log') + + # Search time + ax = axes[0, 1] + for probe_type in ['linear', 'quadratic', 'double']: + search_times = [r['search_time'] for r in results['open_addressing'][probe_type]] + ax.plot(sizes_arr, search_times, marker='o', label=f'Open Addressing ({probe_type})', linewidth=2) + + search_times_sc = [r['search_time'] for r in results['separate_chaining']] + ax.plot(sizes_arr, search_times_sc, marker='s', label='Separate Chaining', linewidth=2, linestyle='--') + ax.set_xlabel('Number of Elements') + ax.set_ylabel('Search Time (seconds)') + ax.set_title('Search Performance', fontweight='bold') + ax.legend() + ax.grid(alpha=0.3) + ax.set_xscale('log') + ax.set_yscale('log') + + # Delete time + ax = axes[1, 0] + for probe_type in ['linear', 'quadratic', 'double']: + delete_times = [r['delete_time'] for r in results['open_addressing'][probe_type]] + ax.plot(sizes_arr, delete_times, marker='o', label=f'Open Addressing ({probe_type})', linewidth=2) + + delete_times_sc = [r['delete_time'] for r in results['separate_chaining']] + ax.plot(sizes_arr, delete_times_sc, marker='s', label='Separate Chaining', linewidth=2, linestyle='--') + ax.set_xlabel('Number of Elements') + ax.set_ylabel('Delete Time (seconds)') + ax.set_title('Delete Performance', fontweight='bold') + ax.legend() + ax.grid(alpha=0.3) + ax.set_xscale('log') + ax.set_yscale('log') + + # Load factors + ax = axes[1, 1] + for probe_type in ['linear', 'quadratic', 'double']: + load_factors = [r['load_factor'] for r in results['open_addressing'][probe_type]] + ax.plot(sizes_arr, load_factors, marker='o', label=f'Open Addressing ({probe_type})', linewidth=2) + + load_factors_sc = [r['load_factor'] for r in results['separate_chaining']] + ax.plot(sizes_arr, load_factors_sc, marker='s', label='Separate Chaining', linewidth=2, linestyle='--') + ax.set_xlabel('Number of Elements') + ax.set_ylabel('Load Factor') + ax.set_title('Load Factor', fontweight='bold') + ax.legend() + ax.grid(alpha=0.3) + ax.set_xscale('log') + + plt.tight_layout() + output_path = os.path.join(os.path.dirname(__file__), '..', 'docs', 'open_addressing_vs_chaining.png') + plt.savefig(output_path, dpi=300, bbox_inches='tight') + print(f"Saved: {output_path}") + plt.close() + + +def plot_load_factor_impact(): + """Plot performance at different load factors with statistical smoothing.""" + print("Generating load factor impact plot...") + + results = benchmark_load_factor_impact(initial_size=100, max_elements=1000, probe_type='linear', num_runs=30) + + fig, axes = plt.subplots(1, 2, figsize=(14, 5)) + fig.suptitle('Performance Impact of Load Factor', fontsize=16, fontweight='bold') + + # Extract data + oa_data = results['open_addressing'] + sc_data = results['separate_chaining'] + + # Sort by load factor to avoid zig-zag lines + oa_sorted = sorted(oa_data, key=lambda x: x['load_factor']) + sc_sorted = sorted(sc_data, key=lambda x: x['load_factor']) + + oa_load_factors = [r['load_factor'] for r in oa_sorted] + oa_insert_times = [r['insert_time'] for r in oa_sorted] + oa_insert_stds = [r.get('insert_time_std', 0) for r in oa_sorted] + oa_search_times = [r['search_time'] for r in oa_sorted] + oa_search_stds = [r.get('search_time_std', 0) for r in oa_sorted] + + sc_load_factors = [r['load_factor'] for r in sc_sorted] + sc_insert_times = [r['insert_time'] for r in sc_sorted] + sc_insert_stds = [r.get('insert_time_std', 0) for r in sc_sorted] + sc_search_times = [r['search_time'] for r in sc_sorted] + sc_search_stds = [r.get('search_time_std', 0) for r in sc_sorted] + sc_chain_lengths = [r['avg_chain_length'] for r in sc_sorted] + + # Insert time vs load factor (per element) with error bars + ax = axes[0] + ax.errorbar(oa_load_factors, oa_insert_times, yerr=oa_insert_stds, + marker='o', label='Open Addressing (Linear)', linewidth=2, + capsize=3, capthick=1.5, alpha=0.8) + ax.errorbar(sc_load_factors, sc_insert_times, yerr=sc_insert_stds, + marker='s', label='Separate Chaining', linewidth=2, linestyle='--', + capsize=3, capthick=1.5, alpha=0.8) + ax.set_xlabel('Load Factor') + ax.set_ylabel('Insert Time per Element (seconds)') + ax.set_title('Insert Time vs Load Factor', fontweight='bold') + ax.legend() + ax.grid(alpha=0.3) + + # Search time vs load factor (per element) with error bars + ax = axes[1] + ax.errorbar(oa_load_factors, oa_search_times, yerr=oa_search_stds, + marker='o', label='Open Addressing (Linear)', linewidth=2, + capsize=3, capthick=1.5, alpha=0.8) + ax.errorbar(sc_load_factors, sc_search_times, yerr=sc_search_stds, + marker='s', label='Separate Chaining', linewidth=2, linestyle='--', + capsize=3, capthick=1.5, alpha=0.8) + ax2 = ax.twinx() + # Chain length is smooth and accurate, so use line plot + ax2.plot(sc_load_factors, sc_chain_lengths, marker='^', + label='Avg Chain Length (SC)', color='green', linestyle=':', linewidth=2) + ax.set_xlabel('Load Factor') + ax.set_ylabel('Search Time per Element (seconds)', color='blue') + ax2.set_ylabel('Average Chain Length', color='green') + ax.set_title('Search Time vs Load Factor', fontweight='bold') + ax.legend(loc='upper left') + ax2.legend(loc='upper right') + ax.grid(alpha=0.3) + + plt.tight_layout() + output_path = os.path.join(os.path.dirname(__file__), '..', 'docs', 'load_factor_impact.png') + plt.savefig(output_path, dpi=300, bbox_inches='tight') + print(f"Saved: {output_path}") + plt.close() + + +def plot_load_factor_impact_probes(): + """Plot probe counts and comparisons at different load factors. + + Uses deterministic metrics (probe counts, comparisons) instead of timing + to produce smooth theoretical curves without measurement noise. + """ + print("Generating load factor impact plot (probe counts)...") + + results = benchmark_load_factor_impact_probes(initial_size=100, max_elements=1000, probe_type='linear', num_runs=10) + + fig, axes = plt.subplots(2, 2, figsize=(14, 10)) + fig.suptitle('Performance Impact of Load Factor (Probe Counts & Comparisons)', fontsize=16, fontweight='bold') + + # Extract data + oa_data = results['open_addressing'] + sc_data = results['separate_chaining'] + + # Sort by load factor + oa_sorted = sorted(oa_data, key=lambda x: x['load_factor']) + sc_sorted = sorted(sc_data, key=lambda x: x['load_factor']) + + oa_load_factors = [r['load_factor'] for r in oa_sorted] + oa_insert_probes = [r['insert_probes_per_element'] for r in oa_sorted] + oa_search_probes = [r['search_probes_per_element'] for r in oa_sorted] + oa_insert_comparisons = [r['insert_comparisons_per_element'] for r in oa_sorted] + oa_search_comparisons = [r['search_comparisons_per_element'] for r in oa_sorted] + + sc_load_factors = [r['load_factor'] for r in sc_sorted] + sc_insert_comparisons = [r['insert_comparisons_per_element'] for r in sc_sorted] + sc_search_comparisons = [r['search_comparisons_per_element'] for r in sc_sorted] + sc_chain_lengths = [r['avg_chain_length'] for r in sc_sorted] + + # Insert probes per element (Open Addressing) + ax = axes[0, 0] + ax.plot(oa_load_factors, oa_insert_probes, marker='o', label='Open Addressing (Linear)', + linewidth=2, color='blue', markersize=6) + ax.set_xlabel('Load Factor') + ax.set_ylabel('Probes per Element') + ax.set_title('Insert: Probes per Element (Open Addressing)', fontweight='bold') + ax.legend() + ax.grid(alpha=0.3) + + # Search probes per element (Open Addressing) + ax = axes[0, 1] + ax.plot(oa_load_factors, oa_search_probes, marker='o', label='Open Addressing (Linear)', + linewidth=2, color='blue', markersize=6) + ax.set_xlabel('Load Factor') + ax.set_ylabel('Probes per Element') + ax.set_title('Search: Probes per Element (Open Addressing)', fontweight='bold') + ax.legend() + ax.grid(alpha=0.3) + + # Comparisons per element (both methods) + ax = axes[1, 0] + ax.plot(oa_load_factors, oa_insert_comparisons, marker='o', label='Open Addressing (Linear)', + linewidth=2, color='blue', markersize=6) + ax.plot(sc_load_factors, sc_insert_comparisons, marker='s', label='Separate Chaining', + linewidth=2, linestyle='--', color='orange', markersize=6) + ax.set_xlabel('Load Factor') + ax.set_ylabel('Comparisons per Element') + ax.set_title('Insert: Comparisons per Element', fontweight='bold') + ax.legend() + ax.grid(alpha=0.3) + + # Search comparisons per element and chain length + ax = axes[1, 1] + ax.plot(oa_load_factors, oa_search_comparisons, marker='o', label='Open Addressing (Linear)', + linewidth=2, color='blue', markersize=6) + ax.plot(sc_load_factors, sc_search_comparisons, marker='s', label='Separate Chaining', + linewidth=2, linestyle='--', color='orange', markersize=6) + ax2 = ax.twinx() + ax2.plot(sc_load_factors, sc_chain_lengths, marker='^', label='Avg Chain Length (SC)', + color='green', linestyle=':', linewidth=2, markersize=6) + ax.set_xlabel('Load Factor') + ax.set_ylabel('Comparisons per Element', color='blue') + ax2.set_ylabel('Average Chain Length', color='green') + ax.set_title('Search: Comparisons per Element', fontweight='bold') + ax.legend(loc='upper left') + ax2.legend(loc='upper right') + ax.grid(alpha=0.3) + + plt.tight_layout() + output_path = os.path.join(os.path.dirname(__file__), '..', 'docs', 'load_factor_impact_probes.png') + plt.savefig(output_path, dpi=300, bbox_inches='tight') + print(f"Saved: {output_path}") + plt.close() + + +def plot_collision_analysis(): + """Plot collision analysis for different hash functions.""" + print("Generating collision analysis plot...") + + keys = generate_test_data(500) + table_size = 100 + + hash_funcs = { + 'Division': division_hash, + 'Multiplication': lambda k, s: multiplication_hash(k, s), + 'Simple String': lambda k, s: string_hash_simple(str(k), s), + 'Polynomial': lambda k, s: string_hash_polynomial(str(k), s), + 'Bad Clustering': bad_hash_clustering, + } + + results = benchmark_hash_functions(hash_funcs, keys, table_size) + + fig, ax = plt.subplots(figsize=(12, 6)) + + names = list(results.keys()) + collision_counts = [results[n]['collisions'] for n in names] + colors = ['steelblue' if 'Bad' not in n else 'coral' for n in names] + + bars = ax.bar(names, collision_counts, color=colors) + ax.set_xlabel('Hash Function', fontweight='bold') + ax.set_ylabel('Number of Collisions', fontweight='bold') + ax.set_title('Collision Analysis: Good vs Bad Hash Functions', fontsize=14, fontweight='bold') + ax.grid(axis='y', alpha=0.3) + ax.tick_params(axis='x', rotation=45) + + # Add value labels on bars + for bar in bars: + height = bar.get_height() + ax.text(bar.get_x() + bar.get_width()/2., height, + f'{int(height)}', + ha='center', va='bottom', fontweight='bold') + + plt.tight_layout() + output_path = os.path.join(os.path.dirname(__file__), '..', 'docs', 'collision_analysis.png') + plt.savefig(output_path, dpi=300, bbox_inches='tight') + print(f"Saved: {output_path}") + plt.close() + + +if __name__ == "__main__": + # Ensure docs directory exists + os.makedirs(os.path.join(os.path.dirname(__file__), '..', 'docs'), exist_ok=True) + + print("Generating visualization plots...") + print("This may take a few minutes...\n") + + plot_hash_function_comparison() + plot_open_addressing_vs_chaining() + plot_load_factor_impact() + plot_load_factor_impact_probes() + plot_collision_analysis() + + print("\nAll plots generated successfully!") + diff --git a/examples/hash_tables_demo.py b/examples/hash_tables_demo.py new file mode 100644 index 0000000..4a9d2eb --- /dev/null +++ b/examples/hash_tables_demo.py @@ -0,0 +1,207 @@ +""" +Demonstration of hash table implementations and their usage. +""" + +import sys +import os +sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..')) + +from src.hash_tables import ( + DirectAddressTable, + HashTableOpenAddressing, + HashTableSeparateChaining +) +from src.hash_functions import ( + division_hash, + string_hash_polynomial, + string_hash_simple +) + + +def demo_direct_address_table(): + """Demonstrate direct-address table.""" + print("=" * 60) + print("Direct-Address Table Demonstration") + print("=" * 60) + + # Create table for keys in range [0, 99] + table = DirectAddressTable(100) + + # Insert some values + table.insert(5, "Alice") + table.insert(42, "Bob") + table.insert(99, "Charlie") + + print("\nInserted key-value pairs:") + print(" Key 5 ->", table.search(5)) + print(" Key 42 ->", table.search(42)) + print(" Key 99 ->", table.search(99)) + + # Search + print("\nSearching for key 42:", table.search(42)) + print("Searching for key 10:", table.search(10)) # Not found + + # Delete + table.delete(42) + print("\nAfter deleting key 42:") + print(" Key 42 ->", table.search(42)) # None + print() + + +def demo_open_addressing(): + """Demonstrate open addressing hash table.""" + print("=" * 60) + print("Open Addressing Hash Table Demonstration") + print("=" * 60) + + # Test with linear probing + print("\n--- Linear Probing ---") + ht_linear = HashTableOpenAddressing(10, probe_type='linear') + + keys = [10, 22, 31, 4, 15, 28, 17, 88, 59] + for key in keys: + ht_linear.insert(key, f"Value_{key}") + + print(f"Inserted {len(keys)} keys") + print(f"Load factor: {ht_linear._load_factor():.2f}") + + print("\nSearching for keys:") + for key in [10, 22, 88, 99]: + result = ht_linear.search(key) + print(f" Key {key}: {'Found' if result else 'Not found'}") + + # Test with quadratic probing + print("\n--- Quadratic Probing ---") + # Use larger table size for quadratic probing to avoid probe sequence issues + ht_quad = HashTableOpenAddressing(20, probe_type='quadratic') + + for key in keys: + ht_quad.insert(key, f"Value_{key}") + + print(f"Inserted {len(keys)} keys") + print(f"Load factor: {ht_quad._load_factor():.2f}") + + # Test with double hashing + print("\n--- Double Hashing ---") + # Use larger table size for double hashing to ensure all keys can be inserted + ht_double = HashTableOpenAddressing(20, probe_type='double') + + for key in keys: + ht_double.insert(key, f"Value_{key}") + + print(f"Inserted {len(keys)} keys") + print(f"Load factor: {ht_double._load_factor():.2f}") + print() + + +def demo_separate_chaining(): + """Demonstrate separate chaining hash table.""" + print("=" * 60) + print("Separate Chaining Hash Table Demonstration") + print("=" * 60) + + ht = HashTableSeparateChaining(10) + + keys = [10, 22, 31, 4, 15, 28, 17, 88, 59, 71] + for key in keys: + ht.insert(key, f"Value_{key}") + + print(f"\nInserted {len(keys)} keys") + print(f"Load factor: {ht._load_factor():.2f}") + + chain_lengths = ht.get_chain_lengths() + print(f"Chain lengths: {chain_lengths}") + print(f"Average chain length: {sum(chain_lengths) / len(chain_lengths):.2f}") + print(f"Maximum chain length: {max(chain_lengths)}") + + print("\nSearching for keys:") + for key in [10, 22, 88, 99]: + result = ht.search(key) + print(f" Key {key}: {'Found' if result else 'Not found'}") + + # Delete some keys + print("\nDeleting keys 22 and 88:") + ht.delete(22) + ht.delete(88) + print(f" Key 22: {'Found' if ht.search(22) else 'Not found'}") + print(f" Key 88: {'Found' if ht.search(88) else 'Not found'}") + print() + + +def demo_hash_functions(): + """Demonstrate different hash functions.""" + print("=" * 60) + print("Hash Function Demonstration") + print("=" * 60) + + keys = [10, 22, 31, 4, 15, 28, 17, 88, 59, 71] + table_size = 11 + + print(f"\nKeys: {keys}") + print(f"Table size: {table_size}\n") + + # Division method + print("Division method (h(k) = k mod m):") + for key in keys[:5]: + hash_val = division_hash(key, table_size) + print(f" h({key}) = {hash_val}") + + # String hashing + print("\nString hash functions:") + string_keys = ["hello", "world", "hash", "table", "test"] + + print("Simple string hash (BAD - prone to collisions):") + for key in string_keys: + hash_val = string_hash_simple(key, table_size) + print(f" h('{key}') = {hash_val}") + + print("\nPolynomial string hash (GOOD - better distribution):") + for key in string_keys: + hash_val = string_hash_polynomial(key, table_size) + print(f" h('{key}') = {hash_val}") + print() + + +def demo_collision_comparison(): + """Demonstrate collision behavior with different hash functions.""" + print("=" * 60) + print("Collision Comparison Demonstration") + print("=" * 60) + + # Generate test keys + keys = list(range(100, 200)) + table_size = 50 + + from src.hash_functions import ( + division_hash, + multiplication_hash, + string_hash_simple, + string_hash_polynomial + ) + + hash_funcs = { + 'Division': division_hash, + 'Multiplication': lambda k, s: multiplication_hash(k, s), + } + + print(f"\nTesting with {len(keys)} keys and table size {table_size}\n") + + for name, hash_func in hash_funcs.items(): + hash_values = [hash_func(k, table_size) for k in keys] + collisions = len(keys) - len(set(hash_values)) + collision_rate = collisions / len(keys) * 100 + + print(f"{name} method:") + print(f" Collisions: {collisions}") + print(f" Collision rate: {collision_rate:.2f}%") + print(f" Buckets used: {len(set(hash_values))}/{table_size}") + print() + + +if __name__ == "__main__": + demo_direct_address_table() + demo_open_addressing() + demo_separate_chaining() + demo_hash_functions() + demo_collision_comparison() + diff --git a/papers/An Overview of Cuckoo Hashing.pdf b/papers/An Overview of Cuckoo Hashing.pdf new file mode 100644 index 0000000..1103f04 Binary files /dev/null and b/papers/An Overview of Cuckoo Hashing.pdf differ diff --git a/papers/Data Structures and Algorithm Analysis in C++.pdf b/papers/Data Structures and Algorithm Analysis in C++.pdf new file mode 100644 index 0000000..d0bc7d3 Binary files /dev/null and b/papers/Data Structures and Algorithm Analysis in C++.pdf differ diff --git a/papers/Dynamic Hash Tables.pdf b/papers/Dynamic Hash Tables.pdf new file mode 100644 index 0000000..a067e6f Binary files /dev/null and b/papers/Dynamic Hash Tables.pdf differ diff --git a/papers/Introduction to Algorithms.pdf b/papers/Introduction to Algorithms.pdf new file mode 100644 index 0000000..d717b3c Binary files /dev/null and b/papers/Introduction to Algorithms.pdf differ diff --git a/papers/Programming Pearls.pdf b/papers/Programming Pearls.pdf new file mode 100644 index 0000000..55ca2ae --- /dev/null +++ b/papers/Programming Pearls.pdf @@ -0,0 +1,7857 @@ +%PDF-1.4 % +1949 0 obj << /Linearized 1 /O 1954 /H [ 64260 6254 ] /L 1294193 /E 526349 /N 283 /T 1255093 >> endobj xref 1949 3125 0000000016 00000 n +0000062857 00000 n +0000063096 00000 n +0000063251 00000 n +0000064186 00000 n +0000070514 00000 n +0000070942 00000 n +0000071029 00000 n +0000071137 00000 n +0000071267 00000 n +0000071420 00000 n +0000071600 00000 n +0000071693 00000 n +0000071975 00000 n +0000072154 00000 n +0000072373 00000 n +0000072561 00000 n +0000072725 00000 n +0000072882 00000 n +0000073055 00000 n +0000073196 00000 n +0000073378 00000 n +0000073555 00000 n +0000073673 00000 n +0000073824 00000 n +0000073979 00000 n +0000074156 00000 n +0000074283 00000 n +0000074448 00000 n +0000074758 00000 n +0000074946 00000 n +0000075046 00000 n +0000075208 00000 n +0000075363 00000 n +0000075522 00000 n +0000075668 00000 n +0000075842 00000 n +0000076024 00000 n +0000076204 00000 n +0000076432 00000 n +0000076597 00000 n +0000077071 00000 n +0000077227 00000 n +0000077436 00000 n +0000077606 00000 n +0000077752 00000 n +0000077902 00000 n +0000078048 00000 n +0000078191 00000 n +0000078446 00000 n +0000078591 00000 n +0000078727 00000 n +0000078874 00000 n +0000079029 00000 n +0000079178 00000 n +0000079351 00000 n +0000079507 00000 n +0000079771 00000 n +0000079918 00000 n +0000080155 00000 n +0000080305 00000 n +0000080423 00000 n +0000080566 00000 n +0000080794 00000 n +0000080939 00000 n +0000081121 00000 n +0000081277 00000 n +0000081459 00000 n +0000081608 00000 n +0000081744 00000 n +0000081904 00000 n +0000082040 00000 n +0000082172 00000 n +0000082350 00000 n +0000082642 00000 n +0000082786 00000 n +0000082968 00000 n +0000083132 00000 n +0000083287 00000 n +0000083449 00000 n +0000083786 00000 n +0000083940 00000 n +0000084159 00000 n +0000084339 00000 n +0000084530 00000 n +0000084686 00000 n +0000085251 00000 n +0000085396 00000 n +0000085474 00000 n +0000085622 00000 n +0000085700 00000 n +0000085846 00000 n +0000085924 00000 n +0000086072 00000 n +0000086150 00000 n +0000086298 00000 n +0000086376 00000 n +0000086524 00000 n +0000086602 00000 n +0000086746 00000 n +0000086824 00000 n +0000086974 00000 n +0000087052 00000 n +0000087201 00000 n +0000087279 00000 n +0000087423 00000 n +0000087501 00000 n +0000087645 00000 n +0000087723 00000 n +0000087868 00000 n +0000087946 00000 n +0000088090 00000 n +0000088168 00000 n +0000088314 00000 n +0000088392 00000 n +0000088536 00000 n +0000088614 00000 n +0000088758 00000 n +0000088836 00000 n +0000088978 00000 n +0000089056 00000 n +0000089200 00000 n +0000089278 00000 n +0000089426 00000 n +0000089504 00000 n +0000089651 00000 n +0000089729 00000 n +0000089877 00000 n +0000089955 00000 n +0000090100 00000 n +0000090178 00000 n +0000090341 00000 n +0000090459 00000 n +0000090616 00000 n +0000090844 00000 n +0000091003 00000 n +0000091240 00000 n +0000091405 00000 n +0000091578 00000 n +0000091723 00000 n +0000091942 00000 n +0000092096 00000 n +0000092324 00000 n +0000092453 00000 n +0000092582 00000 n +0000092711 00000 n +0000092840 00000 n +0000092969 00000 n +0000093098 00000 n +0000093227 00000 n +0000093357 00000 n +0000093529 00000 n +0000093784 00000 n +0000093956 00000 n +0000094476 00000 n +0000094626 00000 n +0000094735 00000 n +0000094892 00000 n +0000095092 00000 n +0000095237 00000 n +0000095392 00000 n +0000095540 00000 n +0000095618 00000 n +0000095762 00000 n +0000095840 00000 n +0000095987 00000 n +0000096065 00000 n +0000096222 00000 n +0000096422 00000 n +0000096581 00000 n +0000096909 00000 n +0000097058 00000 n +0000097505 00000 n +0000097649 00000 n +0000097727 00000 n +0000097882 00000 n +0000098183 00000 n +0000098324 00000 n +0000098716 00000 n +0000098866 00000 n +0000098984 00000 n +0000099139 00000 n +0000099449 00000 n +0000099591 00000 n +0000099864 00000 n +0000100009 00000 n +0000100355 00000 n +0000100506 00000 n +0000100697 00000 n +0000100875 00000 n +0000101066 00000 n +0000101125 00000 n +0000101189 00000 n +0000101253 00000 n +0000101388 00000 n +0000101453 00000 n +0000101545 00000 n +0000101610 00000 n +0000101690 00000 n +0000101755 00000 n +0000101835 00000 n +0000101900 00000 n +0000101980 00000 n +0000102044 00000 n +0000102147 00000 n +0000102411 00000 n +0000102514 00000 n +0000102776 00000 n +0000102879 00000 n +0000103140 00000 n +0000103243 00000 n +0000103346 00000 n +0000103547 00000 n +0000103811 00000 n +0000103913 00000 n +0000104048 00000 n +0000104183 00000 n +0000104285 00000 n +0000104388 00000 n +0000104524 00000 n +0000104786 00000 n +0000105056 00000 n +0000105322 00000 n +0000105589 00000 n +0000105850 00000 n +0000106116 00000 n +0000106375 00000 n +0000106639 00000 n +0000106899 00000 n +0000107007 00000 n +0000107188 00000 n +0000107432 00000 n +0000107491 00000 n +0000107556 00000 n +0000107620 00000 n +0000107684 00000 n +0000107749 00000 n +0000107888 00000 n +0000107954 00000 n +0000108059 00000 n +0000108140 00000 n +0000108233 00000 n +0000108387 00000 n +0000108466 00000 n +0000108530 00000 n +0000108633 00000 n +0000108890 00000 n +0000108994 00000 n +0000109131 00000 n +0000109235 00000 n +0000109372 00000 n +0000109476 00000 n +0000109580 00000 n +0000109684 00000 n +0000109952 00000 n +0000110219 00000 n +0000110476 00000 n +0000110728 00000 n +0000110987 00000 n +0000111240 00000 n +0000111491 00000 n +0000111755 00000 n +0000112020 00000 n +0000112124 00000 n +0000112228 00000 n +0000112487 00000 n +0000112739 00000 n +0000112843 00000 n +0000113106 00000 n +0000113210 00000 n +0000113314 00000 n +0000113418 00000 n +0000113668 00000 n +0000113865 00000 n +0000114128 00000 n +0000114231 00000 n +0000114334 00000 n +0000114438 00000 n +0000114542 00000 n +0000114646 00000 n +0000114750 00000 n +0000115011 00000 n +0000115269 00000 n +0000115524 00000 n +0000115782 00000 n +0000116039 00000 n +0000116297 00000 n +0000116406 00000 n +0000116588 00000 n +0000116832 00000 n +0000116891 00000 n +0000116956 00000 n +0000117035 00000 n +0000117114 00000 n +0000117174 00000 n +0000117238 00000 n +0000117303 00000 n +0000117363 00000 n +0000117428 00000 n +0000117505 00000 n +0000117569 00000 n +0000117629 00000 n +0000117693 00000 n +0000117757 00000 n +0000117836 00000 n +0000117896 00000 n +0000117961 00000 n +0000118021 00000 n +0000118085 00000 n +0000118145 00000 n +0000118209 00000 n +0000118273 00000 n +0000118333 00000 n +0000118397 00000 n +0000118457 00000 n +0000118521 00000 n +0000118625 00000 n +0000118689 00000 n +0000118766 00000 n +0000118830 00000 n +0000118933 00000 n +0000119193 00000 n +0000119253 00000 n +0000119321 00000 n +0000119381 00000 n +0000119449 00000 n +0000119509 00000 n +0000119577 00000 n +0000119637 00000 n +0000119746 00000 n +0000119806 00000 n +0000119874 00000 n +0000120070 00000 n +0000120130 00000 n +0000120198 00000 n +0000120301 00000 n +0000120562 00000 n +0000120622 00000 n +0000120691 00000 n +0000120751 00000 n +0000120819 00000 n +0000120922 00000 n +0000121177 00000 n +0000121280 00000 n +0000121543 00000 n +0000121652 00000 n +0000121834 00000 n +0000122078 00000 n +0000122137 00000 n +0000122202 00000 n +0000122281 00000 n +0000122345 00000 n +0000122409 00000 n +0000122473 00000 n +0000122553 00000 n +0000122634 00000 n +0000122699 00000 n +0000122764 00000 n +0000122829 00000 n +0000122894 00000 n +0000122959 00000 n +0000123023 00000 n +0000123102 00000 n +0000123181 00000 n +0000123245 00000 n +0000123325 00000 n +0000123390 00000 n +0000123455 00000 n +0000123533 00000 n +0000123598 00000 n +0000123702 00000 n +0000123964 00000 n +0000124067 00000 n +0000124332 00000 n +0000124435 00000 n +0000124695 00000 n +0000124798 00000 n +0000125062 00000 n +0000125166 00000 n +0000125434 00000 n +0000125537 00000 n +0000125800 00000 n +0000125903 00000 n +0000126163 00000 n +0000126272 00000 n +0000126454 00000 n +0000126698 00000 n +0000126757 00000 n +0000126822 00000 n +0000126901 00000 n +0000126961 00000 n +0000127038 00000 n +0000127098 00000 n +0000127162 00000 n +0000127227 00000 n +0000127287 00000 n +0000127366 00000 n +0000127426 00000 n +0000127490 00000 n +0000127669 00000 n +0000127734 00000 n +0000127815 00000 n +0000127875 00000 n +0000127940 00000 n +0000128005 00000 n +0000128110 00000 n +0000128189 00000 n +0000128249 00000 n +0000128313 00000 n +0000128377 00000 n +0000128441 00000 n +0000128591 00000 n +0000128655 00000 n +0000128758 00000 n +0000129204 00000 n +0000129264 00000 n +0000129332 00000 n +0000129542 00000 n +0000129602 00000 n +0000129671 00000 n +0000129775 00000 n +0000130034 00000 n +0000130125 00000 n +0000130225 00000 n +0000130325 00000 n +0000130425 00000 n +0000130485 00000 n +0000130545 00000 n +0000130605 00000 n +0000130665 00000 n +0000130725 00000 n +0000130790 00000 n +0000130855 00000 n +0000130920 00000 n +0000130985 00000 n +0000131050 00000 n +0000131110 00000 n +0000131170 00000 n +0000131230 00000 n +0000131290 00000 n +0000131350 00000 n +0000131415 00000 n +0000131480 00000 n +0000131545 00000 n +0000131610 00000 n +0000131675 00000 n +0000131735 00000 n +0000131795 00000 n +0000131855 00000 n +0000131915 00000 n +0000131975 00000 n +0000132040 00000 n +0000132105 00000 n +0000132170 00000 n +0000132235 00000 n +0000132300 00000 n +0000132360 00000 n +0000132420 00000 n +0000132480 00000 n +0000132540 00000 n +0000132604 00000 n +0000132668 00000 n +0000132732 00000 n +0000132796 00000 n +0000132856 00000 n +0000132924 00000 n +0000133027 00000 n +0000133273 00000 n +0000133333 00000 n +0000133442 00000 n +0000133502 00000 n +0000133570 00000 n +0000133673 00000 n +0000133934 00000 n +0000133994 00000 n +0000134062 00000 n +0000134165 00000 n +0000134425 00000 n +0000134534 00000 n +0000134716 00000 n +0000134961 00000 n +0000135020 00000 n +0000135085 00000 n +0000135184 00000 n +0000135244 00000 n +0000135308 00000 n +0000135368 00000 n +0000135436 00000 n +0000135539 00000 n +0000135642 00000 n +0000135745 00000 n +0000136014 00000 n +0000136306 00000 n +0000136572 00000 n +0000136681 00000 n +0000136894 00000 n +0000137163 00000 n +0000137222 00000 n +0000137287 00000 n +0000137351 00000 n +0000137415 00000 n +0000137494 00000 n +0000137558 00000 n +0000137635 00000 n +0000137700 00000 n +0000137760 00000 n +0000137825 00000 n +0000137885 00000 n +0000137949 00000 n +0000138013 00000 n +0000138073 00000 n +0000138137 00000 n +0000138197 00000 n +0000138261 00000 n +0000138325 00000 n +0000138385 00000 n +0000138449 00000 n +0000138514 00000 n +0000138574 00000 n +0000138638 00000 n +0000138702 00000 n +0000138762 00000 n +0000138826 00000 n +0000138886 00000 n +0000138950 00000 n +0000139029 00000 n +0000139089 00000 n +0000139154 00000 n +0000139232 00000 n +0000139313 00000 n +0000139391 00000 n +0000139456 00000 n +0000139560 00000 n +0000139819 00000 n +0000139923 00000 n +0000140181 00000 n +0000140285 00000 n +0000140538 00000 n +0000140598 00000 n +0000140666 00000 n +0000140769 00000 n +0000141019 00000 n +0000141079 00000 n +0000141147 00000 n +0000141207 00000 n +0000141275 00000 n +0000141335 00000 n +0000141404 00000 n +0000141464 00000 n +0000141532 00000 n +0000141592 00000 n +0000141660 00000 n +0000141720 00000 n +0000141788 00000 n +0000141848 00000 n +0000141957 00000 n +0000142017 00000 n +0000142086 00000 n +0000142189 00000 n +0000142450 00000 n +0000142586 00000 n +0000143167 00000 n +0000143755 00000 n +0000143864 00000 n +0000144046 00000 n +0000144291 00000 n +0000144350 00000 n +0000144415 00000 n +0000144514 00000 n +0000144579 00000 n +0000144644 00000 n +0000144709 00000 n +0000144774 00000 n +0000144840 00000 n +0000144905 00000 n +0000144970 00000 n +0000145036 00000 n +0000145101 00000 n +0000145182 00000 n +0000145248 00000 n +0000145313 00000 n +0000145377 00000 n +0000145441 00000 n +0000145506 00000 n +0000145570 00000 n +0000145649 00000 n +0000145714 00000 n +0000145779 00000 n +0000145844 00000 n +0000145934 00000 n +0000145999 00000 n +0000146103 00000 n +0000146207 00000 n +0000146473 00000 n +0000146756 00000 n +0000146859 00000 n +0000147128 00000 n +0000147232 00000 n +0000147492 00000 n +0000147595 00000 n +0000147731 00000 n +0000147867 00000 n +0000148125 00000 n +0000148387 00000 n +0000148672 00000 n +0000148963 00000 n +0000149218 00000 n +0000149327 00000 n +0000149509 00000 n +0000149754 00000 n +0000149818 00000 n +0000149877 00000 n +0000149942 00000 n +0000150006 00000 n +0000150066 00000 n +0000150130 00000 n +0000150194 00000 n +0000150254 00000 n +0000150318 00000 n +0000150382 00000 n +0000150473 00000 n +0000150551 00000 n +0000150616 00000 n +0000150681 00000 n +0000150761 00000 n +0000150843 00000 n +0000150909 00000 n +0000150988 00000 n +0000151095 00000 n +0000151160 00000 n +0000151220 00000 n +0000151298 00000 n +0000151358 00000 n +0000151423 00000 n +0000151488 00000 n +0000151548 00000 n +0000151613 00000 n +0000151679 00000 n +0000151739 00000 n +0000151805 00000 n +0000151870 00000 n +0000151930 00000 n +0000151995 00000 n +0000152060 00000 n +0000152120 00000 n +0000152185 00000 n +0000152250 00000 n +0000152310 00000 n +0000152412 00000 n +0000152502 00000 n +0000152581 00000 n +0000152647 00000 n +0000152752 00000 n +0000153004 00000 n +0000153108 00000 n +0000153213 00000 n +0000153468 00000 n +0000153715 00000 n +0000153819 00000 n +0000153923 00000 n +0000154027 00000 n +0000154491 00000 n +0000154955 00000 n +0000155420 00000 n +0000155480 00000 n +0000155590 00000 n +0000155650 00000 n +0000155719 00000 n +0000155779 00000 n +0000155848 00000 n +0000155908 00000 n +0000155978 00000 n +0000156038 00000 n +0000156107 00000 n +0000156167 00000 n +0000156236 00000 n +0000156340 00000 n +0000156588 00000 n +0000156648 00000 n +0000156717 00000 n +0000156822 00000 n +0000157086 00000 n +0000157146 00000 n +0000157206 00000 n +0000157266 00000 n +0000157336 00000 n +0000157405 00000 n +0000157474 00000 n +0000157578 00000 n +0000157842 00000 n +0000157946 00000 n +0000158197 00000 n +0000158257 00000 n +0000158317 00000 n +0000158377 00000 n +0000158437 00000 n +0000158506 00000 n +0000158575 00000 n +0000158644 00000 n +0000158712 00000 n +0000158772 00000 n +0000158840 00000 n +0000158900 00000 n +0000158968 00000 n +0000159077 00000 n +0000159259 00000 n +0000159504 00000 n +0000159563 00000 n +0000159629 00000 n +0000159729 00000 n +0000159795 00000 n +0000159860 00000 n +0000159926 00000 n +0000159992 00000 n +0000160058 00000 n +0000160124 00000 n +0000160191 00000 n +0000160256 00000 n +0000160321 00000 n +0000160386 00000 n +0000160451 00000 n +0000160516 00000 n +0000160582 00000 n +0000160647 00000 n +0000160753 00000 n +0000160818 00000 n +0000160883 00000 n +0000160948 00000 n +0000161014 00000 n +0000161079 00000 n +0000161144 00000 n +0000161209 00000 n +0000161274 00000 n +0000161339 00000 n +0000161404 00000 n +0000161508 00000 n +0000161645 00000 n +0000161782 00000 n +0000162043 00000 n +0000162308 00000 n +0000162590 00000 n +0000162878 00000 n +0000163133 00000 n +0000163243 00000 n +0000163426 00000 n +0000163671 00000 n +0000163730 00000 n +0000163796 00000 n +0000163896 00000 n +0000163962 00000 n +0000164027 00000 n +0000164093 00000 n +0000164200 00000 n +0000164265 00000 n +0000164331 00000 n +0000164396 00000 n +0000164502 00000 n +0000164567 00000 n +0000164632 00000 n +0000164697 00000 n +0000164801 00000 n +0000164938 00000 n +0000165075 00000 n +0000165333 00000 n +0000165595 00000 n +0000165873 00000 n +0000166157 00000 n +0000166412 00000 n +0000166522 00000 n +0000166705 00000 n +0000166950 00000 n +0000167015 00000 n +0000167121 00000 n +0000167227 00000 n +0000167286 00000 n +0000167352 00000 n +0000167417 00000 n +0000167482 00000 n +0000167564 00000 n +0000167629 00000 n +0000167694 00000 n +0000167773 00000 n +0000167839 00000 n +0000167943 00000 n +0000168198 00000 n +0000168258 00000 n +0000168318 00000 n +0000168378 00000 n +0000168447 00000 n +0000168516 00000 n +0000168585 00000 n +0000168695 00000 n +0000168878 00000 n +0000169123 00000 n +0000169182 00000 n +0000169248 00000 n +0000169350 00000 n +0000169415 00000 n +0000169481 00000 n +0000169547 00000 n +0000169613 00000 n +0000169673 00000 n +0000169752 00000 n +0000169818 00000 n +0000169884 00000 n +0000169944 00000 n +0000170022 00000 n +0000170087 00000 n +0000170191 00000 n +0000170452 00000 n +0000170512 00000 n +0000170581 00000 n +0000170686 00000 n +0000170945 00000 n +0000171005 00000 n +0000171075 00000 n +0000171179 00000 n +0000171283 00000 n +0000171387 00000 n +0000171642 00000 n +0000171906 00000 n +0000172173 00000 n +0000172283 00000 n +0000172466 00000 n +0000172711 00000 n +0000172770 00000 n +0000172836 00000 n +0000172916 00000 n +0000172981 00000 n +0000173085 00000 n +0000173371 00000 n +0000173481 00000 n +0000173664 00000 n +0000173909 00000 n +0000173968 00000 n +0000174034 00000 n +0000174099 00000 n +0000174165 00000 n +0000174292 00000 n +0000174435 00000 n +0000174502 00000 n +0000174596 00000 n +0000174678 00000 n +0000174745 00000 n +0000174839 00000 n +0000174906 00000 n +0000175024 00000 n +0000175091 00000 n +0000175191 00000 n +0000175257 00000 n +0000175432 00000 n +0000175499 00000 n +0000175590 00000 n +0000175720 00000 n +0000175787 00000 n +0000175905 00000 n +0000175987 00000 n +0000176081 00000 n +0000176172 00000 n +0000176263 00000 n +0000176330 00000 n +0000176461 00000 n +0000176552 00000 n +0000176618 00000 n +0000176744 00000 n +0000176859 00000 n +0000176926 00000 n +0000177032 00000 n +0000177150 00000 n +0000177217 00000 n +0000177344 00000 n +0000177411 00000 n +0000177505 00000 n +0000177599 00000 n +0000177665 00000 n +0000177765 00000 n +0000177831 00000 n +0000177924 00000 n +0000178018 00000 n +0000178100 00000 n +0000178215 00000 n +0000178358 00000 n +0000178424 00000 n +0000178529 00000 n +0000178634 00000 n +0000178739 00000 n +0000178844 00000 n +0000178949 00000 n +0000179054 00000 n +0000179536 00000 n +0000180015 00000 n +0000180523 00000 n +0000180981 00000 n +0000181465 00000 n +0000181925 00000 n +0000182030 00000 n +0000182135 00000 n +0000182273 00000 n +0000182378 00000 n +0000182870 00000 n +0000183339 00000 n +0000183803 00000 n +0000184268 00000 n +0000184728 00000 n +0000184833 00000 n +0000185341 00000 n +0000185446 00000 n +0000185551 00000 n +0000185992 00000 n +0000186543 00000 n +0000186647 00000 n +0000186752 00000 n +0000187328 00000 n +0000187768 00000 n +0000187872 00000 n +0000187976 00000 n +0000188080 00000 n +0000188576 00000 n +0000189052 00000 n +0000189531 00000 n +0000189636 00000 n +0000189741 00000 n +0000190318 00000 n +0000190766 00000 n +0000190871 00000 n +0000190976 00000 n +0000191418 00000 n +0000191966 00000 n +0000192071 00000 n +0000192176 00000 n +0000192281 00000 n +0000192386 00000 n +0000192491 00000 n +0000193028 00000 n +0000193514 00000 n +0000194027 00000 n +0000194515 00000 n +0000195006 00000 n +0000195111 00000 n +0000195216 00000 n +0000195354 00000 n +0000195459 00000 n +0000195954 00000 n +0000196420 00000 n +0000196880 00000 n +0000197339 00000 n +0000197809 00000 n +0000197947 00000 n +0000198052 00000 n +0000198157 00000 n +0000198629 00000 n +0000199101 00000 n +0000199572 00000 n +0000200040 00000 n +0000200145 00000 n +0000200250 00000 n +0000200388 00000 n +0000200526 00000 n +0000201039 00000 n +0000201543 00000 n +0000202002 00000 n +0000202478 00000 n +0000202987 00000 n +0000203241 00000 n +0000203345 00000 n +0000203449 00000 n +0000203554 00000 n +0000203659 00000 n +0000203797 00000 n +0000204249 00000 n +0000204695 00000 n +0000205232 00000 n +0000205726 00000 n +0000206210 00000 n +0000206675 00000 n +0000206779 00000 n +0000206916 00000 n +0000207482 00000 n +0000208040 00000 n +0000208468 00000 n +0000208573 00000 n +0000208678 00000 n +0000209134 00000 n +0000209677 00000 n +0000209782 00000 n +0000209887 00000 n +0000210370 00000 n +0000210819 00000 n +0000210924 00000 n +0000211029 00000 n +0000211549 00000 n +0000212034 00000 n +0000212139 00000 n +0000212244 00000 n +0000212755 00000 n +0000213262 00000 n +0000213367 00000 n +0000213937 00000 n +0000214042 00000 n +0000214147 00000 n +0000214252 00000 n +0000214357 00000 n +0000214873 00000 n +0000215364 00000 n +0000215827 00000 n +0000216094 00000 n +0000216199 00000 n +0000216304 00000 n +0000216409 00000 n +0000216514 00000 n +0000216619 00000 n +0000217099 00000 n +0000217547 00000 n +0000218061 00000 n +0000218520 00000 n +0000218998 00000 n +0000219103 00000 n +0000219208 00000 n +0000219742 00000 n +0000220225 00000 n +0000220329 00000 n +0000220433 00000 n +0000220538 00000 n +0000220643 00000 n +0000220781 00000 n +0000220886 00000 n +0000220991 00000 n +0000221096 00000 n +0000221201 00000 n +0000221691 00000 n +0000222180 00000 n +0000222676 00000 n +0000223160 00000 n +0000223625 00000 n +0000224094 00000 n +0000224595 00000 n +0000225069 00000 n +0000225546 00000 n +0000226018 00000 n +0000226122 00000 n +0000226226 00000 n +0000226330 00000 n +0000226828 00000 n +0000227316 00000 n +0000227781 00000 n +0000227886 00000 n +0000227991 00000 n +0000228096 00000 n +0000228201 00000 n +0000228709 00000 n +0000229179 00000 n +0000229655 00000 n +0000230161 00000 n +0000230266 00000 n +0000230371 00000 n +0000230897 00000 n +0000231362 00000 n +0000231467 00000 n +0000231921 00000 n +0000232026 00000 n +0000232131 00000 n +0000232625 00000 n +0000233086 00000 n +0000233191 00000 n +0000233296 00000 n +0000233401 00000 n +0000233506 00000 n +0000233611 00000 n +0000233716 00000 n +0000233923 00000 n +0000234413 00000 n +0000234874 00000 n +0000235369 00000 n +0000235857 00000 n +0000236323 00000 n +0000236427 00000 n +0000236531 00000 n +0000236635 00000 n +0000236740 00000 n +0000236878 00000 n +0000237347 00000 n +0000237820 00000 n +0000238296 00000 n +0000238771 00000 n +0000239253 00000 n +0000239725 00000 n +0000239835 00000 n +0000240018 00000 n +0000240263 00000 n +0000240322 00000 n +0000240388 00000 n +0000240454 00000 n +0000240519 00000 n +0000240584 00000 n +0000240649 00000 n +0000240741 00000 n +0000240835 00000 n +0000240929 00000 n +0000241023 00000 n +0000241117 00000 n +0000241211 00000 n +0000241342 00000 n +0000241433 00000 n +0000241525 00000 n +0000241592 00000 n +0000241698 00000 n +0000241780 00000 n +0000241846 00000 n +0000241912 00000 n +0000242017 00000 n +0000242280 00000 n +0000242385 00000 n +0000242490 00000 n +0000242595 00000 n +0000242858 00000 n +0000243126 00000 n +0000243389 00000 n +0000243493 00000 n +0000243597 00000 n +0000243856 00000 n +0000244117 00000 n +0000244221 00000 n +0000244325 00000 n +0000244588 00000 n +0000244797 00000 n +0000244902 00000 n +0000245007 00000 n +0000245268 00000 n +0000245475 00000 n +0000245580 00000 n +0000245685 00000 n +0000245948 00000 n +0000246157 00000 n +0000246262 00000 n +0000246367 00000 n +0000246630 00000 n +0000246841 00000 n +0000246946 00000 n +0000247051 00000 n +0000247311 00000 n +0000247520 00000 n +0000247625 00000 n +0000247730 00000 n +0000247993 00000 n +0000248202 00000 n +0000248307 00000 n +0000248412 00000 n +0000248675 00000 n +0000248886 00000 n +0000248990 00000 n +0000249094 00000 n +0000249358 00000 n +0000249568 00000 n +0000249678 00000 n +0000249861 00000 n +0000250106 00000 n +0000250165 00000 n +0000250231 00000 n +0000250296 00000 n +0000250361 00000 n +0000250427 00000 n +0000250518 00000 n +0000250585 00000 n +0000250679 00000 n +0000250746 00000 n +0000250864 00000 n +0000250931 00000 n +0000251025 00000 n +0000251241 00000 n +0000251308 00000 n +0000251421 00000 n +0000251526 00000 n +0000251592 00000 n +0000251697 00000 n +0000251835 00000 n +0000251940 00000 n +0000252198 00000 n +0000252466 00000 n +0000252753 00000 n +0000253016 00000 n +0000253120 00000 n +0000253224 00000 n +0000253328 00000 n +0000253432 00000 n +0000253696 00000 n +0000253910 00000 n +0000254118 00000 n +0000254562 00000 n +0000254667 00000 n +0000254772 00000 n +0000254877 00000 n +0000255015 00000 n +0000255120 00000 n +0000255225 00000 n +0000255330 00000 n +0000255435 00000 n +0000255540 00000 n +0000255645 00000 n +0000255750 00000 n +0000255855 00000 n +0000256137 00000 n +0000256412 00000 n +0000256703 00000 n +0000256989 00000 n +0000257267 00000 n +0000257547 00000 n +0000257825 00000 n +0000258106 00000 n +0000258382 00000 n +0000258666 00000 n +0000258938 00000 n +0000259224 00000 n +0000259491 00000 n +0000259596 00000 n +0000259701 00000 n +0000259986 00000 n +0000260252 00000 n +0000260357 00000 n +0000260462 00000 n +0000260567 00000 n +0000260672 00000 n +0000260954 00000 n +0000261224 00000 n +0000261504 00000 n +0000261767 00000 n +0000261872 00000 n +0000261977 00000 n +0000262245 00000 n +0000262510 00000 n +0000262614 00000 n +0000262718 00000 n +0000262998 00000 n +0000263261 00000 n +0000263371 00000 n +0000263554 00000 n +0000263799 00000 n +0000263858 00000 n +0000263924 00000 n +0000263989 00000 n +0000264054 00000 n +0000264119 00000 n +0000264184 00000 n +0000264249 00000 n +0000264314 00000 n +0000264379 00000 n +0000264444 00000 n +0000264510 00000 n +0000264576 00000 n +0000264642 00000 n +0000264708 00000 n +0000264790 00000 n +0000264856 00000 n +0000264961 00000 n +0000265229 00000 n +0000265339 00000 n +0000265522 00000 n +0000265767 00000 n +0000265826 00000 n +0000265892 00000 n +0000265972 00000 n +0000266037 00000 n +0000266103 00000 n +0000266168 00000 n +0000266233 00000 n +0000266298 00000 n +0000266364 00000 n +0000266430 00000 n +0000266496 00000 n +0000266600 00000 n +0000266864 00000 n +0000266974 00000 n +0000267157 00000 n +0000267402 00000 n +0000267461 00000 n +0000267527 00000 n +0000267593 00000 n +0000267658 00000 n +0000267723 00000 n +0000267788 00000 n +0000267853 00000 n +0000267919 00000 n +0000268257 00000 n +0000268324 00000 n +0000268418 00000 n +0000268509 00000 n +0000268612 00000 n +0000268706 00000 n +0000268812 00000 n +0000268894 00000 n +0000268976 00000 n +0000269042 00000 n +0000269147 00000 n +0000269619 00000 n +0000269724 00000 n +0000269988 00000 n +0000270093 00000 n +0000270198 00000 n +0000270303 00000 n +0000270563 00000 n +0000270773 00000 n +0000271037 00000 n +0000271142 00000 n +0000271247 00000 n +0000271517 00000 n +0000271784 00000 n +0000271889 00000 n +0000271994 00000 n +0000272099 00000 n +0000272362 00000 n +0000272630 00000 n +0000272893 00000 n +0000272998 00000 n +0000273103 00000 n +0000273365 00000 n +0000273623 00000 n +0000273728 00000 n +0000273833 00000 n +0000274102 00000 n +0000274363 00000 n +0000274467 00000 n +0000274572 00000 n +0000274677 00000 n +0000274781 00000 n +0000274885 00000 n +0000274989 00000 n +0000275093 00000 n +0000275197 00000 n +0000275448 00000 n +0000275710 00000 n +0000275958 00000 n +0000276214 00000 n +0000276468 00000 n +0000276726 00000 n +0000276984 00000 n +0000277244 00000 n +0000277354 00000 n +0000277537 00000 n +0000277782 00000 n +0000277841 00000 n +0000277907 00000 n +0000278018 00000 n +0000278084 00000 n +0000278166 00000 n +0000278233 00000 n +0000278315 00000 n +0000278382 00000 n +0000278500 00000 n +0000278582 00000 n +0000278649 00000 n +0000278714 00000 n +0000278779 00000 n +0000278844 00000 n +0000278909 00000 n +0000278974 00000 n +0000279039 00000 n +0000279144 00000 n +0000279410 00000 n +0000279515 00000 n +0000279653 00000 n +0000279758 00000 n +0000279863 00000 n +0000280435 00000 n +0000280897 00000 n +0000281169 00000 n +0000281447 00000 n +0000281710 00000 n +0000281815 00000 n +0000282082 00000 n +0000282187 00000 n +0000282763 00000 n +0000282867 00000 n +0000283004 00000 n +0000283108 00000 n +0000283212 00000 n +0000283663 00000 n +0000284104 00000 n +0000284566 00000 n +0000285036 00000 n +0000285491 00000 n +0000285601 00000 n +0000285784 00000 n +0000286029 00000 n +0000286088 00000 n +0000286154 00000 n +0000286331 00000 n +0000286397 00000 n +0000286463 00000 n +0000286521 00000 n +0000286594 00000 n +0000286667 00000 n +0000286740 00000 n +0000286813 00000 n +0000286886 00000 n +0000286959 00000 n +0000287032 00000 n +0000287105 00000 n +0000287178 00000 n +0000287251 00000 n +0000287324 00000 n +0000287397 00000 n +0000287465 00000 n +0000287563 00000 n +0000287668 00000 n +0000287773 00000 n +0000288015 00000 n +0000288278 00000 n +0000288345 00000 n +0000288500 00000 n +0000288604 00000 n +0000288708 00000 n +0000288812 00000 n +0000288917 00000 n +0000289022 00000 n +0000289127 00000 n +0000289232 00000 n +0000289486 00000 n +0000289749 00000 n +0000289996 00000 n +0000290253 00000 n +0000290504 00000 n +0000290757 00000 n +0000291018 00000 n +0000291086 00000 n +0000291206 00000 n +0000291310 00000 n +0000291565 00000 n +0000291633 00000 n +0000291719 00000 n +0000291824 00000 n +0000292080 00000 n +0000292148 00000 n +0000292234 00000 n +0000292339 00000 n +0000292601 00000 n +0000292669 00000 n +0000292767 00000 n +0000292872 00000 n +0000292977 00000 n +0000293239 00000 n +0000293496 00000 n +0000293564 00000 n +0000293662 00000 n +0000293767 00000 n +0000293872 00000 n +0000294131 00000 n +0000294388 00000 n +0000294456 00000 n +0000294542 00000 n +0000294647 00000 n +0000294904 00000 n +0000294972 00000 n +0000295058 00000 n +0000295163 00000 n +0000295418 00000 n +0000295486 00000 n +0000295572 00000 n +0000295677 00000 n +0000295934 00000 n +0000296002 00000 n +0000296112 00000 n +0000296217 00000 n +0000296322 00000 n +0000296427 00000 n +0000296684 00000 n +0000296939 00000 n +0000297198 00000 n +0000297265 00000 n +0000297383 00000 n +0000297487 00000 n +0000297591 00000 n +0000297695 00000 n +0000297800 00000 n +0000298061 00000 n +0000298321 00000 n +0000298582 00000 n +0000298836 00000 n +0000298946 00000 n +0000299129 00000 n +0000299374 00000 n +0000299439 00000 n +0000299504 00000 n +0000299569 00000 n +0000299634 00000 n +0000299815 00000 n +0000299880 00000 n +0000299945 00000 n +0000300164 00000 n +0000300229 00000 n +0000300373 00000 n +0000300479 00000 n +0000300585 00000 n +0000300879 00000 n +0000301098 00000 n +0000301204 00000 n +0000301498 00000 n +0000301604 00000 n +0000301669 00000 n +0000301734 00000 n +0000301840 00000 n +0000301946 00000 n +0000302052 00000 n +0000302111 00000 n +0000302177 00000 n +0000302242 00000 n +0000302308 00000 n +0000302373 00000 n +0000302433 00000 n +0000302498 00000 n +0000302580 00000 n +0000302646 00000 n +0000302728 00000 n +0000302794 00000 n +0000302860 00000 n +0000302925 00000 n +0000303016 00000 n +0000303081 00000 n +0000303141 00000 n +0000303207 00000 n +0000303272 00000 n +0000303332 00000 n +0000303398 00000 n +0000303458 00000 n +0000303524 00000 n +0000303584 00000 n +0000303691 00000 n +0000303751 00000 n +0000303816 00000 n +0000303882 00000 n +0000303947 00000 n +0000304007 00000 n +0000304072 00000 n +0000304132 00000 n +0000304197 00000 n +0000304257 00000 n +0000304323 00000 n +0000304390 00000 n +0000304456 00000 n +0000304529 00000 n +0000304594 00000 n +0000304667 00000 n +0000304732 00000 n +0000304792 00000 n +0000304857 00000 n +0000304948 00000 n +0000305014 00000 n +0000305081 00000 n +0000305147 00000 n +0000305247 00000 n +0000305312 00000 n +0000305372 00000 n +0000305437 00000 n +0000305497 00000 n +0000305562 00000 n +0000305635 00000 n +0000305701 00000 n +0000305761 00000 n +0000305821 00000 n +0000305890 00000 n +0000305959 00000 n +0000306019 00000 n +0000306088 00000 n +0000306148 00000 n +0000306217 00000 n +0000306277 00000 n +0000306337 00000 n +0000306397 00000 n +0000306457 00000 n +0000306517 00000 n +0000306586 00000 n +0000306655 00000 n +0000306724 00000 n +0000306794 00000 n +0000306864 00000 n +0000306924 00000 n +0000306984 00000 n +0000307044 00000 n +0000307104 00000 n +0000307174 00000 n +0000307243 00000 n +0000307312 00000 n +0000307381 00000 n +0000307441 00000 n +0000307510 00000 n +0000307570 00000 n +0000307630 00000 n +0000307699 00000 n +0000307768 00000 n +0000307828 00000 n +0000307888 00000 n +0000307957 00000 n +0000308027 00000 n +0000308087 00000 n +0000308156 00000 n +0000308216 00000 n +0000308285 00000 n +0000308345 00000 n +0000308414 00000 n +0000308474 00000 n +0000308543 00000 n +0000308603 00000 n +0000308673 00000 n +0000308733 00000 n +0000308803 00000 n +0000308863 00000 n +0000308933 00000 n +0000308993 00000 n +0000309062 00000 n +0000309122 00000 n +0000309182 00000 n +0000309242 00000 n +0000309302 00000 n +0000309371 00000 n +0000309440 00000 n +0000309509 00000 n +0000309578 00000 n +0000309638 00000 n +0000309698 00000 n +0000309758 00000 n +0000309828 00000 n +0000309898 00000 n +0000309968 00000 n +0000310028 00000 n +0000310088 00000 n +0000310148 00000 n +0000310217 00000 n +0000310286 00000 n +0000310355 00000 n +0000310415 00000 n +0000310484 00000 n +0000310594 00000 n +0000310777 00000 n +0000311022 00000 n +0000311081 00000 n +0000311147 00000 n +0000311212 00000 n +0000311277 00000 n +0000311342 00000 n +0000311407 00000 n +0000311472 00000 n +0000311537 00000 n +0000311602 00000 n +0000311667 00000 n +0000311727 00000 n +0000311793 00000 n +0000311859 00000 n +0000311919 00000 n +0000311989 00000 n +0000312099 00000 n +0000312282 00000 n +0000312527 00000 n +0000312586 00000 n +0000312652 00000 n +0000312717 00000 n +0000312783 00000 n +0000312848 00000 n +0000312913 00000 n +0000313041 00000 n +0000313107 00000 n +0000313172 00000 n +0000313238 00000 n +0000313377 00000 n +0000313471 00000 n +0000313553 00000 n +0000313635 00000 n +0000313717 00000 n +0000313783 00000 n +0000313888 00000 n +0000314330 00000 n +0000314435 00000 n +0000314702 00000 n +0000314807 00000 n +0000315073 00000 n +0000315178 00000 n +0000315283 00000 n +0000315552 00000 n +0000315818 00000 n +0000315922 00000 n +0000316026 00000 n +0000316130 00000 n +0000316234 00000 n +0000316339 00000 n +0000316444 00000 n +0000316712 00000 n +0000316979 00000 n +0000317247 00000 n +0000317515 00000 n +0000317782 00000 n +0000318050 00000 n +0000318110 00000 n +0000318170 00000 n +0000318230 00000 n +0000318290 00000 n +0000318350 00000 n +0000318410 00000 n +0000318470 00000 n +0000318530 00000 n +0000318600 00000 n +0000318670 00000 n +0000318740 00000 n +0000318810 00000 n +0000318879 00000 n +0000318948 00000 n +0000319017 00000 n +0000319086 00000 n +0000319196 00000 n +0000319409 00000 n +0000319678 00000 n +0000319737 00000 n +0000319803 00000 n +0000319868 00000 n +0000319933 00000 n +0000320039 00000 n +0000320145 00000 n +0000320251 00000 n +0000320437 00000 n +0000320503 00000 n +0000320569 00000 n +0000320634 00000 n +0000320699 00000 n +0000320764 00000 n +0000320870 00000 n +0000320935 00000 n +0000321041 00000 n +0000321106 00000 n +0000321171 00000 n +0000321277 00000 n +0000321342 00000 n +0000321407 00000 n +0000321551 00000 n +0000321616 00000 n +0000321722 00000 n +0000321787 00000 n +0000321852 00000 n +0000321917 00000 n +0000321982 00000 n +0000322047 00000 n +0000322151 00000 n +0000322255 00000 n +0000322359 00000 n +0000322463 00000 n +0000322568 00000 n +0000322706 00000 n +0000322811 00000 n +0000322916 00000 n +0000323021 00000 n +0000323126 00000 n +0000323400 00000 n +0000323672 00000 n +0000323956 00000 n +0000324229 00000 n +0000324491 00000 n +0000324759 00000 n +0000325029 00000 n +0000325295 00000 n +0000325566 00000 n +0000325839 00000 n +0000326097 00000 n +0000326207 00000 n +0000326390 00000 n +0000326635 00000 n +0000326694 00000 n +0000326760 00000 n +0000326825 00000 n +0000326890 00000 n +0000326955 00000 n +0000327021 00000 n +0000327101 00000 n +0000327182 00000 n +0000327248 00000 n +0000327353 00000 n +0000327617 00000 n +0000327721 00000 n +0000327982 00000 n +0000328092 00000 n +0000328275 00000 n +0000328520 00000 n +0000328579 00000 n +0000328645 00000 n +0000328710 00000 n +0000328775 00000 n +0000328840 00000 n +0000328905 00000 n +0000328970 00000 n +0000329035 00000 n +0000329100 00000 n +0000329165 00000 n +0000329230 00000 n +0000329295 00000 n +0000329405 00000 n +0000329588 00000 n +0000329833 00000 n +0000329892 00000 n +0000329958 00000 n +0000330038 00000 n +0000330103 00000 n +0000330168 00000 n +0000330233 00000 n +0000330298 00000 n +0000330363 00000 n +0000330429 00000 n +0000330495 00000 n +0000330577 00000 n +0000330643 00000 n +0000330709 00000 n +0000330769 00000 n +0000330834 00000 n +0000330899 00000 n +0000330964 00000 n +0000331029 00000 n +0000331094 00000 n +0000331159 00000 n +0000331263 00000 n +0000331329 00000 n +0000331395 00000 n +0000331461 00000 n +0000331565 00000 n +0000331670 00000 n +0000331808 00000 n +0000332053 00000 n +0000332310 00000 n +0000332565 00000 n +0000332834 00000 n +0000332894 00000 n +0000333005 00000 n +0000333110 00000 n +0000333374 00000 n +0000333478 00000 n +0000333748 00000 n +0000333858 00000 n +0000334041 00000 n +0000334286 00000 n +0000334345 00000 n +0000334411 00000 n +0000334476 00000 n +0000334585 00000 n +0000334650 00000 n +0000334729 00000 n +0000334795 00000 n +0000334900 00000 n +0000335162 00000 n +0000335222 00000 n +0000335282 00000 n +0000335342 00000 n +0000335402 00000 n +0000335462 00000 n +0000335522 00000 n +0000335591 00000 n +0000335658 00000 n +0000335727 00000 n +0000335794 00000 n +0000335863 00000 n +0000335930 00000 n +0000336040 00000 n +0000336223 00000 n +0000336468 00000 n +0000336527 00000 n +0000336593 00000 n +0000336658 00000 n +0000336723 00000 n +0000336898 00000 n +0000336976 00000 n +0000337041 00000 n +0000337145 00000 n +0000337407 00000 n +0000337604 00000 n +0000337803 00000 n +0000337989 00000 n +0000338099 00000 n +0000338282 00000 n +0000338527 00000 n +0000338586 00000 n +0000338652 00000 n +0000338717 00000 n +0000338777 00000 n +0000338842 00000 n +0000338922 00000 n +0000338987 00000 n +0000339047 00000 n +0000339129 00000 n +0000339235 00000 n +0000339314 00000 n +0000339379 00000 n +0000339484 00000 n +0000339750 00000 n +0000339855 00000 n +0000339960 00000 n +0000340065 00000 n +0000340326 00000 n +0000340588 00000 n +0000340850 00000 n +0000340955 00000 n +0000341241 00000 n +0000341301 00000 n +0000341370 00000 n +0000341474 00000 n +0000341737 00000 n +0000341797 00000 n +0000341866 00000 n +0000341976 00000 n +0000342186 00000 n +0000342454 00000 n +0000342513 00000 n +0000342579 00000 n +0000342644 00000 n +0000342709 00000 n +0000342812 00000 n +0000342906 00000 n +0000342988 00000 n +0000343095 00000 n +0000343160 00000 n +0000343225 00000 n +0000343303 00000 n +0000343368 00000 n +0000343472 00000 n +0000343728 00000 n +0000343833 00000 n +0000344102 00000 n +0000344207 00000 n +0000344312 00000 n +0000344576 00000 n +0000344836 00000 n +0000344940 00000 n +0000345044 00000 n +0000345148 00000 n +0000345410 00000 n +0000345676 00000 n +0000345942 00000 n +0000346052 00000 n +0000346235 00000 n +0000346480 00000 n +0000346539 00000 n +0000346605 00000 n +0000346685 00000 n +0000346750 00000 n +0000346815 00000 n +0000346880 00000 n +0000346945 00000 n +0000347010 00000 n +0000347076 00000 n +0000347142 00000 n +0000347208 00000 n +0000347315 00000 n +0000347380 00000 n +0000347445 00000 n +0000347510 00000 n +0000347588 00000 n +0000347653 00000 n +0000347757 00000 n +0000348019 00000 n +0000348123 00000 n +0000348383 00000 n +0000348493 00000 n +0000348676 00000 n +0000348921 00000 n +0000348980 00000 n +0000349046 00000 n +0000349111 00000 n +0000349213 00000 n +0000349279 00000 n +0000349383 00000 n +0000349487 00000 n +0000349591 00000 n +0000349853 00000 n +0000350115 00000 n +0000350377 00000 n +0000350487 00000 n +0000350670 00000 n +0000350915 00000 n +0000350974 00000 n +0000351040 00000 n +0000351105 00000 n +0000351170 00000 n +0000351235 00000 n +0000351300 00000 n +0000351557 00000 n +0000351622 00000 n +0000351682 00000 n +0000351747 00000 n +0000351813 00000 n +0000351879 00000 n +0000351945 00000 n +0000352011 00000 n +0000352118 00000 n +0000352209 00000 n +0000352287 00000 n +0000352352 00000 n +0000352456 00000 n +0000352715 00000 n +0000352819 00000 n +0000352923 00000 n +0000353188 00000 n +0000353455 00000 n +0000353515 00000 n +0000353584 00000 n +0000353779 00000 n +0000353963 00000 n +0000354159 00000 n +0000354347 00000 n +0000354457 00000 n +0000354640 00000 n +0000354885 00000 n +0000354944 00000 n +0000355010 00000 n +0000355075 00000 n +0000355135 00000 n +0000355200 00000 n +0000355265 00000 n +0000355325 00000 n +0000355390 00000 n +0000355455 00000 n +0000355534 00000 n +0000355594 00000 n +0000355660 00000 n +0000355725 00000 n +0000355790 00000 n +0000355850 00000 n +0000355915 00000 n +0000355995 00000 n +0000356060 00000 n +0000356125 00000 n +0000356204 00000 n +0000356270 00000 n +0000356374 00000 n +0000356640 00000 n +0000356744 00000 n +0000357015 00000 n +0000357075 00000 n +0000357144 00000 n +0000357204 00000 n +0000357274 00000 n +0000357378 00000 n +0000357649 00000 n +0000357709 00000 n +0000357778 00000 n +0000357838 00000 n +0000357907 00000 n +0000358017 00000 n +0000358227 00000 n +0000358495 00000 n +0000358554 00000 n +0000358620 00000 n +0000358685 00000 n +0000358750 00000 n +0000358815 00000 n +0000358880 00000 n +0000358945 00000 n +0000359051 00000 n +0000359116 00000 n +0000359194 00000 n +0000359259 00000 n +0000359363 00000 n +0000359625 00000 n +0000359735 00000 n +0000359918 00000 n +0000360163 00000 n +0000360222 00000 n +0000360288 00000 n +0000360353 00000 n +0000360418 00000 n +0000360483 00000 n +0000360548 00000 n +0000360613 00000 n +0000360691 00000 n +0000360756 00000 n +0000360860 00000 n +0000361120 00000 n +0000361230 00000 n +0000361413 00000 n +0000361658 00000 n +0000361717 00000 n +0000361783 00000 n +0000361848 00000 n +0000361908 00000 n +0000361973 00000 n +0000362051 00000 n +0000362116 00000 n +0000362220 00000 n +0000362476 00000 n +0000362536 00000 n +0000362605 00000 n +0000362715 00000 n +0000362898 00000 n +0000363143 00000 n +0000363202 00000 n +0000363268 00000 n +0000363348 00000 n +0000363428 00000 n +0000363493 00000 n +0000363558 00000 n +0000363624 00000 n +0000363690 00000 n +0000363756 00000 n +0000363822 00000 n +0000363904 00000 n +0000363970 00000 n +0000364030 00000 n +0000364090 00000 n +0000364155 00000 n +0000364220 00000 n +0000364285 00000 n +0000364350 00000 n +0000364428 00000 n +0000364493 00000 n +0000364597 00000 n +0000364859 00000 n +0000364919 00000 n +0000364989 00000 n +0000365049 00000 n +0000365119 00000 n +0000365224 00000 n +0000365487 00000 n +0000365591 00000 n +0000365852 00000 n +0000365956 00000 n +0000366220 00000 n +0000366330 00000 n +0000366513 00000 n +0000366758 00000 n +0000366817 00000 n +0000366883 00000 n +0000366948 00000 n +0000367013 00000 n +0000367073 00000 n +0000367138 00000 n +0000367216 00000 n +0000367281 00000 n +0000367385 00000 n +0000367645 00000 n +0000367705 00000 n +0000367774 00000 n +0000367884 00000 n +0000368067 00000 n +0000368312 00000 n +0000368371 00000 n +0000368437 00000 n +0000368502 00000 n +0000368567 00000 n +0000368632 00000 n +0000368732 00000 n +0000368798 00000 n +0000368863 00000 n +0000368923 00000 n +0000368983 00000 n +0000369043 00000 n +0000369103 00000 n +0000369163 00000 n +0000369232 00000 n +0000369301 00000 n +0000369370 00000 n +0000369439 00000 n +0000369508 00000 n +0000369618 00000 n +0000369801 00000 n +0000370046 00000 n +0000370105 00000 n +0000370171 00000 n +0000370236 00000 n +0000370301 00000 n +0000370366 00000 n +0000370431 00000 n +0000370496 00000 n +0000370561 00000 n +0000370626 00000 n +0000370691 00000 n +0000370757 00000 n +0000370822 00000 n +0000370887 00000 n +0000370952 00000 n +0000371017 00000 n +0000371127 00000 n +0000371310 00000 n +0000371555 00000 n +0000371614 00000 n +0000371680 00000 n +0000371758 00000 n +0000371838 00000 n +0000371898 00000 n +0000371963 00000 n +0000372023 00000 n +0000372089 00000 n +0000372149 00000 n +0000372215 00000 n +0000372275 00000 n +0000372340 00000 n +0000372405 00000 n +0000372465 00000 n +0000372530 00000 n +0000372590 00000 n +0000372655 00000 n +0000372720 00000 n +0000372989 00000 n +0000373096 00000 n +0000373161 00000 n +0000373250 00000 n +0000373310 00000 n +0000373375 00000 n +0000373435 00000 n +0000373500 00000 n +0000373560 00000 n +0000373626 00000 n +0000373733 00000 n +0000373798 00000 n +0000373858 00000 n +0000373923 00000 n +0000373988 00000 n +0000374048 00000 n +0000374113 00000 n +0000374178 00000 n +0000374238 00000 n +0000374303 00000 n +0000374363 00000 n +0000374428 00000 n +0000374488 00000 n +0000374553 00000 n +0000374613 00000 n +0000374678 00000 n +0000374738 00000 n +0000374807 00000 n +0000374867 00000 n +0000374936 00000 n +0000374996 00000 n +0000375065 00000 n +0000375125 00000 n +0000375235 00000 n +0000375295 00000 n +0000375364 00000 n +0000375424 00000 n +0000375493 00000 n +0000375553 00000 n +0000375623 00000 n +0000375683 00000 n +0000375752 00000 n +0000375812 00000 n +0000375881 00000 n +0000375985 00000 n +0000376089 00000 n +0000376331 00000 n +0000376587 00000 n +0000376669 00000 n +0000376751 00000 n +0000376833 00000 n +0000376915 00000 n +0000376997 00000 n +0000377079 00000 n +0000377161 00000 n +0000377243 00000 n +0000377325 00000 n +0000377407 00000 n +0000377489 00000 n +0000377571 00000 n +0000377653 00000 n +0000377735 00000 n +0000377795 00000 n +0000377855 00000 n +0000377915 00000 n +0000377981 00000 n +0000378047 00000 n +0000378113 00000 n +0000378173 00000 n +0000378233 00000 n +0000378293 00000 n +0000378359 00000 n +0000378425 00000 n +0000378491 00000 n +0000378551 00000 n +0000378611 00000 n +0000378671 00000 n +0000378737 00000 n +0000378803 00000 n +0000378869 00000 n +0000378929 00000 n +0000378989 00000 n +0000379049 00000 n +0000379115 00000 n +0000379181 00000 n +0000379247 00000 n +0000379307 00000 n +0000379367 00000 n +0000379427 00000 n +0000379493 00000 n +0000379559 00000 n +0000379625 00000 n +0000379685 00000 n +0000379745 00000 n +0000379805 00000 n +0000379871 00000 n +0000379937 00000 n +0000380003 00000 n +0000380063 00000 n +0000380123 00000 n +0000380183 00000 n +0000380249 00000 n +0000380315 00000 n +0000380381 00000 n +0000380441 00000 n +0000380501 00000 n +0000380561 00000 n +0000380627 00000 n +0000380693 00000 n +0000380759 00000 n +0000380819 00000 n +0000380879 00000 n +0000380939 00000 n +0000381005 00000 n +0000381071 00000 n +0000381137 00000 n +0000381197 00000 n +0000381257 00000 n +0000381317 00000 n +0000381383 00000 n +0000381449 00000 n +0000381515 00000 n +0000381575 00000 n +0000381635 00000 n +0000381695 00000 n +0000381761 00000 n +0000381827 00000 n +0000381893 00000 n +0000381953 00000 n +0000382013 00000 n +0000382073 00000 n +0000382139 00000 n +0000382205 00000 n +0000382271 00000 n +0000382331 00000 n +0000382391 00000 n +0000382451 00000 n +0000382517 00000 n +0000382583 00000 n +0000382649 00000 n +0000382709 00000 n +0000382769 00000 n +0000382829 00000 n +0000382894 00000 n +0000382959 00000 n +0000383024 00000 n +0000383084 00000 n +0000383153 00000 n +0000383213 00000 n +0000383282 00000 n +0000383342 00000 n +0000383412 00000 n +0000383472 00000 n +0000383542 00000 n +0000383602 00000 n +0000383671 00000 n +0000383731 00000 n +0000383800 00000 n +0000383904 00000 n +0000384172 00000 n +0000384276 00000 n +0000384532 00000 n +0000384642 00000 n +0000384825 00000 n +0000385070 00000 n +0000385129 00000 n +0000385195 00000 n +0000385275 00000 n +0000385341 00000 n +0000385454 00000 n +0000385521 00000 n +0000385603 00000 n +0000385706 00000 n +0000385800 00000 n +0000385906 00000 n +0000386000 00000 n +0000386091 00000 n +0000386302 00000 n +0000386385 00000 n +0000386451 00000 n +0000386517 00000 n +0000386583 00000 n +0000386688 00000 n +0000387162 00000 n +0000387266 00000 n +0000387403 00000 n +0000387507 00000 n +0000387611 00000 n +0000387748 00000 n +0000387853 00000 n +0000387991 00000 n +0000388096 00000 n +0000388201 00000 n +0000388339 00000 n +0000388444 00000 n +0000388549 00000 n +0000389060 00000 n +0000389575 00000 n +0000390054 00000 n +0000390542 00000 n +0000391042 00000 n +0000391548 00000 n +0000392073 00000 n +0000392599 00000 n +0000393075 00000 n +0000393574 00000 n +0000394078 00000 n +0000394568 00000 n +0000395060 00000 n +0000395559 00000 n +0000396065 00000 n +0000396559 00000 n +0000396664 00000 n +0000396769 00000 n +0000397251 00000 n +0000397703 00000 n +0000397808 00000 n +0000397913 00000 n +0000398423 00000 n +0000398873 00000 n +0000398978 00000 n +0000399116 00000 n +0000399221 00000 n +0000399713 00000 n +0000400172 00000 n +0000400640 00000 n +0000401136 00000 n +0000401241 00000 n +0000401346 00000 n +0000401876 00000 n +0000402341 00000 n +0000402446 00000 n +0000402551 00000 n +0000402656 00000 n +0000403140 00000 n +0000403630 00000 n +0000404095 00000 n +0000404200 00000 n +0000404464 00000 n +0000404522 00000 n +0000404595 00000 n +0000404668 00000 n +0000404741 00000 n +0000404814 00000 n +0000404887 00000 n +0000404955 00000 n +0000405025 00000 n +0000405093 00000 n +0000405163 00000 n +0000405231 00000 n +0000405301 00000 n +0000405368 00000 n +0000405437 00000 n +0000405504 00000 n +0000405573 00000 n +0000405677 00000 n +0000406112 00000 n +0000406222 00000 n +0000406405 00000 n +0000406650 00000 n +0000406709 00000 n +0000406775 00000 n +0000406840 00000 n +0000406905 00000 n +0000406970 00000 n +0000407065 00000 n +0000407131 00000 n +0000407197 00000 n +0000407263 00000 n +0000407329 00000 n +0000407394 00000 n +0000407459 00000 n +0000407517 00000 n +0000407590 00000 n +0000407663 00000 n +0000407736 00000 n +0000407804 00000 n +0000407874 00000 n +0000407941 00000 n +0000408024 00000 n +0000408128 00000 n +0000408392 00000 n +0000408459 00000 n +0000408541 00000 n +0000408645 00000 n +0000408905 00000 n +0000409015 00000 n +0000409198 00000 n +0000409443 00000 n +0000409502 00000 n +0000409568 00000 n +0000409633 00000 n +0000409698 00000 n +0000409764 00000 n +0000409829 00000 n +0000409933 00000 n +0000409999 00000 n +0000410103 00000 n +0000410207 00000 n +0000410312 00000 n +0000410575 00000 n +0000410777 00000 n +0000411041 00000 n +0000411151 00000 n +0000411334 00000 n +0000411579 00000 n +0000411638 00000 n +0000411704 00000 n +0000411782 00000 n +0000411847 00000 n +0000411913 00000 n +0000411978 00000 n +0000412082 00000 n +0000412164 00000 n +0000412230 00000 n +0000412335 00000 n +0000412599 00000 n +0000412703 00000 n +0000412808 00000 n +0000412913 00000 n +0000413176 00000 n +0000413378 00000 n +0000413642 00000 n +0000413746 00000 n +0000414010 00000 n +0000414120 00000 n +0000414303 00000 n +0000414548 00000 n +0000414607 00000 n +0000414673 00000 n +0000415005 00000 n +0000415063 00000 n +0000415136 00000 n +0000415209 00000 n +0000415282 00000 n +0000415355 00000 n +0000415428 00000 n +0000415501 00000 n +0000415574 00000 n +0000415647 00000 n +0000415720 00000 n +0000415793 00000 n +0000415866 00000 n +0000415939 00000 n +0000416012 00000 n +0000416085 00000 n +0000416158 00000 n +0000416231 00000 n +0000416304 00000 n +0000416377 00000 n +0000416450 00000 n +0000416523 00000 n +0000416596 00000 n +0000416669 00000 n +0000416742 00000 n +0000416815 00000 n +0000416888 00000 n +0000416961 00000 n +0000417034 00000 n +0000417107 00000 n +0000417180 00000 n +0000417248 00000 n +0000417332 00000 n +0000417437 00000 n +0000417702 00000 n +0000417770 00000 n +0000418034 00000 n +0000418139 00000 n +0000418244 00000 n +0000418349 00000 n +0000418454 00000 n +0000418712 00000 n +0000418968 00000 n +0000419227 00000 n +0000419479 00000 n +0000419547 00000 n +0000419617 00000 n +0000419685 00000 n +0000419768 00000 n +0000419873 00000 n +0000420124 00000 n +0000420192 00000 n +0000420275 00000 n +0000420380 00000 n +0000420634 00000 n +0000420702 00000 n +0000420785 00000 n +0000420890 00000 n +0000421152 00000 n +0000421220 00000 n +0000421303 00000 n +0000421408 00000 n +0000421654 00000 n +0000421722 00000 n +0000421792 00000 n +0000421860 00000 n +0000421943 00000 n +0000422048 00000 n +0000422302 00000 n +0000422370 00000 n +0000422453 00000 n +0000422558 00000 n +0000422813 00000 n +0000422881 00000 n +0000423037 00000 n +0000423142 00000 n +0000423247 00000 n +0000423352 00000 n +0000423457 00000 n +0000423562 00000 n +0000423667 00000 n +0000423772 00000 n +0000424037 00000 n +0000424299 00000 n +0000424564 00000 n +0000424830 00000 n +0000425096 00000 n +0000425355 00000 n +0000425605 00000 n +0000425673 00000 n +0000425759 00000 n +0000425864 00000 n +0000426122 00000 n +0000426190 00000 n +0000426260 00000 n +0000426327 00000 n +0000426397 00000 n +0000426464 00000 n +0000426533 00000 n +0000426600 00000 n +0000426682 00000 n +0000426786 00000 n +0000427046 00000 n +0000427113 00000 n +0000427182 00000 n +0000427249 00000 n +0000427318 00000 n +0000427386 00000 n +0000427472 00000 n +0000427577 00000 n +0000427845 00000 n +0000427913 00000 n +0000428093 00000 n +0000428198 00000 n +0000428303 00000 n +0000428408 00000 n +0000428513 00000 n +0000428618 00000 n +0000428723 00000 n +0000428828 00000 n +0000428966 00000 n +0000429071 00000 n +0000429336 00000 n +0000429596 00000 n +0000429863 00000 n +0000430128 00000 n +0000430393 00000 n +0000430658 00000 n +0000430925 00000 n +0000431194 00000 n +0000431456 00000 n +0000431716 00000 n +0000431784 00000 n +0000431854 00000 n +0000431922 00000 n +0000432005 00000 n +0000432110 00000 n +0000432371 00000 n +0000432439 00000 n +0000432537 00000 n +0000432642 00000 n +0000432747 00000 n +0000433017 00000 n +0000433284 00000 n +0000433352 00000 n +0000433438 00000 n +0000433543 00000 n +0000433812 00000 n +0000433880 00000 n +0000433950 00000 n +0000434018 00000 n +0000434104 00000 n +0000434209 00000 n +0000434477 00000 n +0000434544 00000 n +0000434712 00000 n +0000434816 00000 n +0000434921 00000 n +0000435026 00000 n +0000435131 00000 n +0000435236 00000 n +0000435341 00000 n +0000435446 00000 n +0000435551 00000 n +0000435815 00000 n +0000436075 00000 n +0000436344 00000 n +0000436613 00000 n +0000436875 00000 n +0000437142 00000 n +0000437399 00000 n +0000437658 00000 n +0000437725 00000 n +0000437807 00000 n +0000437911 00000 n +0000438171 00000 n +0000438238 00000 n +0000438320 00000 n +0000438424 00000 n +0000438686 00000 n +0000438796 00000 n +0000438979 00000 n +0000439224 00000 n +0000439283 00000 n +0000439350 00000 n +0000439416 00000 n +0000439483 00000 n +0000439549 00000 n +0000439615 00000 n +0000439681 00000 n +0000439786 00000 n +0000439853 00000 n +0000439962 00000 n +0000440029 00000 n +0000440110 00000 n +0000440191 00000 n +0000440257 00000 n +0000440323 00000 n +0000440391 00000 n +0000440458 00000 n +0000440525 00000 n +0000440620 00000 n +0000440729 00000 n +0000440796 00000 n +0000440862 00000 n +0000440928 00000 n +0000440995 00000 n +0000441061 00000 n +0000441127 00000 n +0000441233 00000 n +0000441339 00000 n +0000441604 00000 n +0000441873 00000 n +0000441978 00000 n +0000442245 00000 n +0000442350 00000 n +0000442615 00000 n +0000442720 00000 n +0000442826 00000 n +0000442932 00000 n +0000443197 00000 n +0000443463 00000 n +0000443728 00000 n +0000443839 00000 n +0000444023 00000 n +0000444268 00000 n +0000444327 00000 n +0000444394 00000 n +0000444475 00000 n +0000444554 00000 n +0000444645 00000 n +0000444712 00000 n +0000444817 00000 n +0000444922 00000 n +0000445189 00000 n +0000445452 00000 n +0000445557 00000 n +0000445821 00000 n +0000445959 00000 n +0000446211 00000 n +0000446475 00000 n +0000446586 00000 n +0000446770 00000 n +0000447015 00000 n +0000447074 00000 n +0000447141 00000 n +0000447207 00000 n +0000447273 00000 n +0000447340 00000 n +0000447406 00000 n +0000447535 00000 n +0000447618 00000 n +0000447685 00000 n +0000447791 00000 n +0000448055 00000 n +0000448160 00000 n +0000448265 00000 n +0000448371 00000 n +0000448477 00000 n +0000448583 00000 n +0000448846 00000 n +0000449057 00000 n +0000449319 00000 n +0000449530 00000 n +0000449794 00000 n +0000449905 00000 n +0000450089 00000 n +0000450334 00000 n +0000450393 00000 n +0000450460 00000 n +0000450552 00000 n +0000450645 00000 n +0000450712 00000 n +0000450817 00000 n +0000450923 00000 n +0000451190 00000 n +0000451460 00000 n +0000451565 00000 n +0000451670 00000 n +0000451934 00000 n +0000452201 00000 n +0000452312 00000 n +0000452496 00000 n +0000452741 00000 n +0000452800 00000 n +0000452867 00000 n +0000452933 00000 n +0000453006 00000 n +0000453072 00000 n +0000453138 00000 n +0000453205 00000 n +0000453271 00000 n +0000453377 00000 n +0000453472 00000 n +0000453555 00000 n +0000453622 00000 n +0000453728 00000 n +0000453994 00000 n +0000454100 00000 n +0000454206 00000 n +0000454472 00000 n +0000454736 00000 n +0000454842 00000 n +0000454948 00000 n +0000455054 00000 n +0000455317 00000 n +0000455519 00000 n +0000455783 00000 n +0000455843 00000 n +0000455903 00000 n +0000455973 00000 n +0000456043 00000 n +0000456154 00000 n +0000456338 00000 n +0000456583 00000 n +0000456642 00000 n +0000456709 00000 n +0000456775 00000 n +0000456856 00000 n +0000456922 00000 n +0000456982 00000 n +0000457064 00000 n +0000457131 00000 n +0000457252 00000 n +0000457318 00000 n +0000457384 00000 n +0000457490 00000 n +0000457964 00000 n +0000458069 00000 n +0000458555 00000 n +0000458615 00000 n +0000458685 00000 n +0000458790 00000 n +0000459295 00000 n +0000459406 00000 n +0000459590 00000 n +0000459835 00000 n +0000459894 00000 n +0000459961 00000 n +0000460027 00000 n +0000460093 00000 n +0000460159 00000 n +0000460313 00000 n +0000460467 00000 n +0000460533 00000 n +0000460627 00000 n +0000460694 00000 n +0000460799 00000 n +0000460905 00000 n +0000461172 00000 n +0000461443 00000 n +0000461554 00000 n +0000461738 00000 n +0000461983 00000 n +0000462042 00000 n +0000462109 00000 n +0000462201 00000 n +0000462267 00000 n +0000462333 00000 n +0000462399 00000 n +0000462466 00000 n +0000462533 00000 n +0000462600 00000 n +0000462683 00000 n +0000462749 00000 n +0000462923 00000 n +0000462990 00000 n +0000463073 00000 n +0000463168 00000 n +0000463235 00000 n +0000463341 00000 n +0000463447 00000 n +0000463712 00000 n +0000463973 00000 n +0000464079 00000 n +0000464347 00000 n +0000464447 00000 n +0000464547 00000 n +0000464647 00000 n +0000464707 00000 n +0000464767 00000 n +0000464827 00000 n +0000464887 00000 n +0000464947 00000 n +0000465014 00000 n +0000465081 00000 n +0000465148 00000 n +0000465215 00000 n +0000465282 00000 n +0000465342 00000 n +0000465402 00000 n +0000465462 00000 n +0000465522 00000 n +0000465582 00000 n +0000465649 00000 n +0000465715 00000 n +0000465781 00000 n +0000465847 00000 n +0000465913 00000 n +0000465973 00000 n +0000466033 00000 n +0000466093 00000 n +0000466153 00000 n +0000466213 00000 n +0000466279 00000 n +0000466345 00000 n +0000466411 00000 n +0000466477 00000 n +0000466543 00000 n +0000466649 00000 n +0000466918 00000 n +0000467023 00000 n +0000467161 00000 n +0000467441 00000 n +0000467726 00000 n +0000467993 00000 n +0000468104 00000 n +0000468288 00000 n +0000468533 00000 n +0000468592 00000 n +0000468659 00000 n +0000468740 00000 n +0000468806 00000 n +0000468872 00000 n +0000468938 00000 n +0000469032 00000 n +0000469099 00000 n +0000469182 00000 n +0000469249 00000 n +0000469316 00000 n +0000469383 00000 n +0000469466 00000 n +0000469549 00000 n +0000469658 00000 n +0000469724 00000 n +0000469827 00000 n +0000469893 00000 n +0000469988 00000 n +0000470095 00000 n +0000470162 00000 n +0000470229 00000 n +0000470296 00000 n +0000470402 00000 n +0000470508 00000 n +0000470614 00000 n +0000471129 00000 n +0000471571 00000 n +0000472061 00000 n +0000472167 00000 n +0000472273 00000 n +0000472723 00000 n +0000473167 00000 n +0000473272 00000 n +0000473377 00000 n +0000473482 00000 n +0000473738 00000 n +0000473998 00000 n +0000474262 00000 n +0000474368 00000 n +0000474630 00000 n +0000474736 00000 n +0000475003 00000 n +0000475109 00000 n +0000475396 00000 n +0000475501 00000 n +0000475607 00000 n +0000475880 00000 n +0000476145 00000 n +0000476250 00000 n +0000476515 00000 n +0000476626 00000 n +0000476810 00000 n +0000477055 00000 n +0000477255 00000 n +0000477314 00000 n +0000477381 00000 n +0000477462 00000 n +0000477541 00000 n +0000477607 00000 n +0000477673 00000 n +0000477739 00000 n +0000477831 00000 n +0000478377 00000 n +0000478493 00000 n +0000478621 00000 n +0000478685 00000 n +0000478780 00000 n +0000478844 00000 n +0000478902 00000 n +0000478975 00000 n +0000479048 00000 n +0000479121 00000 n +0000479187 00000 n +0000479319 00000 n +0000479422 00000 n +0000479525 00000 n +0000479628 00000 n +0000479731 00000 n +0000479834 00000 n +0000480285 00000 n +0000480816 00000 n +0000481407 00000 n +0000481948 00000 n +0000482443 00000 n +0000482509 00000 n +0000482590 00000 n +0000482693 00000 n +0000483210 00000 n +0000483276 00000 n +0000483357 00000 n +0000483460 00000 n +0000483900 00000 n +0000484003 00000 n +0000484106 00000 n +0000484209 00000 n +0000484312 00000 n +0000484415 00000 n +0000484676 00000 n +0000484923 00000 n +0000485187 00000 n +0000485438 00000 n +0000485689 00000 n +0000485792 00000 n +0000485895 00000 n +0000485998 00000 n +0000486101 00000 n +0000486349 00000 n +0000486611 00000 n +0000486883 00000 n +0000487136 00000 n +0000487242 00000 n +0000487348 00000 n +0000487454 00000 n +0000487560 00000 n +0000487666 00000 n +0000487772 00000 n +0000487878 00000 n +0000487984 00000 n +0000488090 00000 n +0000488196 00000 n +0000488302 00000 n +0000488408 00000 n +0000488514 00000 n +0000488620 00000 n +0000488726 00000 n +0000488832 00000 n +0000488938 00000 n +0000489040 00000 n +0000489142 00000 n +0000489244 00000 n +0000489346 00000 n +0000489448 00000 n +0000489551 00000 n +0000489802 00000 n +0000490067 00000 n +0000490330 00000 n +0000490596 00000 n +0000490859 00000 n +0000491112 00000 n +0000491371 00000 n +0000491626 00000 n +0000491885 00000 n +0000492146 00000 n +0000492407 00000 n +0000492671 00000 n +0000492932 00000 n +0000493195 00000 n +0000493454 00000 n +0000493712 00000 n +0000493973 00000 n +0000494236 00000 n +0000494497 00000 n +0000494751 00000 n +0000495008 00000 n +0000495267 00000 n +0000495522 00000 n +0000495689 00000 n +0000495795 00000 n +0000496052 00000 n +0000496157 00000 n +0000496590 00000 n +0000496695 00000 n +0000497152 00000 n +0000497263 00000 n +0000497447 00000 n +0000497640 00000 n +0000497855 00000 n +0000497910 00000 n +0000498018 00000 n +0000498048 00000 n +0000498159 00000 n +0000500102 00000 n +0000500126 00000 n +0000500233 00000 n +0000525232 00000 n +0000525254 00000 n +0000525327 00000 n +0000525365 00000 n +0000525390 00000 n +0000525598 00000 n +0000525620 00000 n +0000525657 00000 n +0000525951 00000 n +0000064260 00000 n +0000070490 00000 n +trailer << /Size 5074 /Info 1364 0 R /Root 1950 0 R /Prev 1255081 /ID[<874e1efc9c008bbaeb06504d0a9f6571>] >> startxref 0 %%EOF 1950 0 obj << /Type /Catalog /Pages 1363 0 R /Metadata 1362 0 R /Outlines 1955 0 R /MarkInfo << /Marked false >> /Names 1953 0 R /StructTreeRoot 1952 0 R /SpiderInfo 1374 0 R /PageMode /UseOutlines /AcroForm 1951 0 R >> endobj 1951 0 obj << /Fields [ ] /DR << /Font << /ZaDb 1088 0 R /Helv 1089 0 R >> /Encoding << /PDFDocEncoding 1090 0 R >> >> /DA (/Helv 0 Tf 0 g ) >> endobj 1952 0 obj << /Type /StructTreeRoot /ClassMap 1091 0 R /RoleMap 1092 0 R /ParentTreeNextKey 826 /ParentTree 1093 0 R /K [ 4941 0 R 1096 0 R 2138 0 R 2136 0 R 2134 0 R 2132 0 R 2130 0 R 2128 0 R 2126 0 R 2124 0 R 2122 0 R 2120 0 R 2118 0 R 2116 0 R 2114 0 R 2112 0 R 2110 0 R 2108 0 R 2106 0 R 2104 0 R 2102 0 R 2100 0 R 2090 0 R 2088 0 R 2086 0 R 2084 0 R 2082 0 R 2080 0 R 2078 0 R 2076 0 R 2074 0 R 2072 0 R 2070 0 R 2068 0 R 2066 0 R 2064 0 R 2062 0 R 2060 0 R 2058 0 R 2056 0 R 2054 0 R 2052 0 R 2050 0 R 2048 0 R 2046 0 R 2044 0 R 2042 0 R 2040 0 R 2038 0 R 2036 0 R 2034 0 R 2032 0 R 2030 0 R 2028 0 R 2026 0 R 2024 0 R 2022 0 R 2019 0 R 2017 0 R 2015 0 R 2013 0 R 2011 0 R 2009 0 R 2007 0 R 2005 0 R 2003 0 R 2001 0 R 1999 0 R 1997 0 R 1995 0 R 1993 0 R 1991 0 R 1989 0 R 1987 0 R 1985 0 R 1983 0 R 1981 0 R 1979 0 R 1977 0 R 1975 0 R 1973 0 R 1971 0 R 1969 0 R 1967 0 R 1965 0 R 1963 0 R 1961 0 R ] >> endobj 1953 0 obj << /IDS 1368 0 R /URLS 1369 0 R /Dests 1316 0 R >> endobj 5072 0 obj << /S 5052 /O 11355 /V 11371 /E 11393 /C 11409 /Filter /FlateDecode /Length 5073 0 R >> stream +HWolSgvR1Y$476Ld"6bC*D&1ɫA%:Eդu"41b#!!ee_(P,N>gV㞮^~9sϻ758CH5زS ^NxbR$ͅ0YrʖZ;Qr +fNf, ,eޖ )6X"JQu4 VĊF5TVL0 +3xcyǔxie-z͌֔wu7rh^mayKe4ߒa&\(p6' Voz(a#2x}mϨvaRk q_5rM ]˳ ؟e#n}ُ*h53;0DvC5<@(P0c^5|ƀe&ͮc9֊<ͫ~ օ/mTwA{MSj Vcj=|5B:f), +_6gJ-uP<ئ[>oRoT.CKiO0&K@zM#v'SGݶј;pT؃_=m58 |;:mU>K` +[p78'9Xk`ob-h$F JTPXCc[I֤}LRHX\?:I3M:!ٕP?>O?cym"kox~K}:/=:W{ 񯊗N1t.NyPDGGr˞DtM&bD#䩳gb$wϾ;Frd2u4s՞ɑ$:pfb$:389(?>]A:>{t4O/g{W8f9>ؕ:Zg/vfp^ \WӋEc9^ +gjzΟsώwrӢg)~UE,N[x楅*^_MלVRTZd/m_2qėRhQ9s-*/0\̅rsCrPf q.œ)w<$ʶŠ^*rAxkZK͹\-wE +KLܨ,VݔaCuo (<]¹"r`,]JVdGl725 BNʵss%?(-!sY,&XE +,7bZ-&8!13GJII=7[\]x~+80 E~3&yxDuIh/B( 帼űW| gы=X~8geXOp;B"\2by=9_I/Gl,q>e Fqzc)s-o +˘@qఒYo./J訵PxlHe  (Bb !!ZaӢə,u OX<+3C ӺRO;>fqLى7Y֢X?aMy|7rh^maui逢[2,ք;.f$ẃBZ%7-'fj'}&u@5^#'4е< Ҏ)Q]F=G{Vڽ=j/ +Cda'14]36;Uʷh XFq k:vAchX}C޼l]mOx<4`=W#dcF %o.y^Ńmum@]SuFUs}ơvfNKQXhK)hKaouP%Oq!,?]5Ⱥ f48$ddNM*Asc61t7uOBH讍!scǗ{9s}<^ϨwamAAr݂Ϣ1Ⱥe(Nvv 1]䟂n灝S +w5';N>܃Uke+=q_7TZu,BA/'BA?\m'g+9x]"SjߦEvMH]`ZC1wt`#ȎBYvu )OGB/m \2ߚ*x,ϽcN$K؉P|tl0S6V1#l% |k}U">TDʤ~CJH_u.s4ġ R[C-uq:@]!tVQjm7x90n~YȫA_1O M_kъꆍ5qjq@_I+f}׌W /@+Y%+pCWS}\+tVf8BfZbTБ!}|_K&#*bЄ Gxj9&Îha\M^ CFuk-x.AEHsIMp6K 4a <%ydba^Ψ~< ֐Ƣ{.Ffy͵ݴzB! }Kde3{)i7w]³&l^'~WVm֛/ZDd VO7;M]V[UuV;A ow\SwA w8eׅu!#ꌜÏjvOh %<+=yx:(lϩ⢾GO_kZ} =-~m}vV%RLDYg_3.Ͳ_ݢڣ4: Y+;fJK7cmΎ׬A]aN59vpppv{gj#ozt\j$'3q@yat8V* +U ;gfo NIάv2)]ZZ52֒Qzq>T jtߔ`tG 6)MB噯[Z +U6TDXd?eOB6)foS3h24x„ph.]טg Ѐυr v"‡Aϖ#`zN QO1 {=+\ĭS5H/$:Ty` +D*g**EJK4A3m&a&k{jn2l0$z2ưULY=c A^3Gp?wZ<*h--)JWMhTW>̤3TIcPLFXH5} )vc"R)". 6 qpaPDt1"Zkj ߹7vYps@B p(>(YǨ3)ߖr?dOG+ +q^|{@)޼mN.{ Q>-]qH՞tjN'c)q&p,LUVgAAr@&#/^iXNqU?rB=~FNۇI$ ݈{g +a h[m*5.+!nܼ7F)WzYd;u\hBppH Qg܀pg%k L+U+8)q1f("F΂yh6fT5`FrތJ[eR-0CMe+'LAk1ƕthYgq])d!:QT/nkζI +nO`q`̼V}0oo.{A`uBki#zUK|աÛf 5>vVrKjpBt/锵jCpOvk+u3gM⾘0?c&4CFYl~Vka C c\j@L ZR W†/ms0ą< +Z8%4=eN(_^1^ZHk-H=#o~r,۽򡸆6}-#B^7ߊp|M.s| ڭ՝St% *sdTD0Ű9z Ej#Yp;J7p3K4u ȯϱo| K%pPI&foPMk"mz*x5Ma4OF#&>yTm4/Zt({ivhQV4lv5^˔-*~ZƛiuSJ9j?d/ߢhN֨" +6}M"U ﳘz'o'1Y2󋻈_QYǤy +Gqp>`$fUV 'WMVQ  (8QW& i[ͨk,2YJV5FSYt"3ycN53.Ra~?}'Iwij3:8f0ʑF"$lf6~J6Khn5@S- +z_őe7q3OX\Im?xzGT*Q`v?e 9;a1&=IB,&LlN@\B|E\e't4: 8U4(:9MW(:|?7a:eP?o̅\TQ _{78euvD]tފP6Y0d)f!Sdzys=t9M;i +i;vU_?%#NԽb'_"HZuu,D\+Og QzVwD|%> endstream endobj 5073 0 obj 6103 endobj 1954 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1406 0 R /StructParents 0 /Annots 5054 0 R /Contents 5059 0 R /Resources << /XObject << /Im0 5062 0 R /Im1 5070 0 R >> /ColorSpace << /CS0 5057 0 R /CS1 5055 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC /ImageI ] >> /ID 5071 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 1955 0 obj << /Count 97 /Type /Outlines /First 1956 0 R /Last 1956 0 R >> endobj 1956 0 obj << /Title (Local Disk) /Parent 1955 0 R /First 1957 0 R /Last 1958 0 R /Count 96 >> endobj 1957 0 obj << /Title (index.html) /Dest [ 1954 0 R /XYZ 0 792 null ] /SE 4941 0 R /Parent 1956 0 R /Next 2137 0 R >> endobj 1958 0 obj << /Title (http://www.cs.bell-labs.com/cm/cs/pearls/code.html) /Prev 1959 0 R /Parent 1956 0 R /A 1960 0 R /C [ 0 0 1 ] /F 2 >> endobj 1959 0 obj << /Title (Epilog to Programming Pearls, Second Edition) /Dest [ 1058 0 R /XYZ 0 792 null ] /SE 1961 0 R /Parent 1956 0 R /Prev 1962 0 R /Next 1958 0 R >> endobj 1960 0 obj << /S /URI /URI (http://www.cs.bell-labs.com/cm/cs/pearls/code.html) >> endobj 1961 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 4887 0 R 4888 0 R 4889 0 R 4890 0 R 4891 0 R 4892 0 R 4893 0 R 4894 0 R 4895 0 R 4896 0 R 4897 0 R 4898 0 R 4899 0 R 4900 0 R 4901 0 R 4902 0 R 4903 0 R 4904 0 R 4905 0 R 4906 0 R 4907 0 R 4908 0 R 4909 0 R ] >> endobj 1962 0 obj << /Title (Why A Second Edition of Programming Pearls?) /Dest [ 1049 0 R /XYZ 0 792 null ] /SE 1963 0 R /Parent 1956 0 R /Prev 1964 0 R /Next 1959 0 R >> endobj 1963 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 4822 0 R 4823 0 R 4824 0 R 4825 0 R 4826 0 R 4827 0 R 4828 0 R 4829 0 R 4830 0 R 4831 0 R 4832 0 R 4833 0 R 4834 0 R 4835 0 R 4836 0 R 4837 0 R ] >> endobj 1964 0 obj << /Title (Sorting Algorithm Animations from Programming Pearls) /Dest [ 1044 0 R /XYZ 0 792 null ] /SE 1965 0 R /Parent 1956 0 R /Prev 1966 0 R /Next 1962 0 R >> endobj 1965 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 4805 0 R 4806 0 R 4807 0 R 4808 0 R 4809 0 R 4810 0 R 4811 0 R 4812 0 R 4813 0 R 4814 0 R ] >> endobj 1966 0 obj << /Title (Solutions to Column 5) /Dest [ 1036 0 R /XYZ 0 792 null ] /SE 1967 0 R /Parent 1956 0 R /Prev 1968 0 R /Next 1964 0 R >> endobj 1967 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 4783 0 R 4784 0 R 4785 0 R 4786 0 R 4787 0 R 4788 0 R 4789 0 R 4790 0 R 4791 0 R 4792 0 R 4793 0 R ] >> endobj 1968 0 obj << /Title (Heaps) /Dest [ 1031 0 R /XYZ 0 792 null ] /SE 1969 0 R /Parent 1956 0 R /Prev 1970 0 R /Next 1966 0 R >> endobj 1969 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 4752 0 R 4753 0 R 4754 0 R 4755 0 R 4756 0 R 4757 0 R 4758 0 R 4759 0 R 4760 0 R 4761 0 R 4762 0 R 4763 0 R ] >> endobj 1970 0 obj << /Title (Programming Pearls, Part III: The Product) /Dest [ 1026 0 R /XYZ 0 792 null ] /SE 1971 0 R /Parent 1956 0 R /Prev 1972 0 R /Next 1968 0 R >> endobj 1971 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 4736 0 R 4737 0 R 4738 0 R 4739 0 R 4740 0 R ] >> endobj 1972 0 obj << /Title (Aha! Algorithms) /Dest [ 1021 0 R /XYZ 0 792 null ] /SE 1973 0 R /Parent 1956 0 R /Prev 1974 0 R /Next 1970 0 R >> endobj 1973 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 4712 0 R 4713 0 R 4714 0 R 4715 0 R 4716 0 R 4717 0 R 4718 0 R 4719 0 R 4720 0 R ] >> endobj 1974 0 obj << /Title (Programming Pearls, Part I: Preliminaries) /Dest [ 1016 0 R /XYZ 0 792 null ] /SE 1975 0 R /Parent 1956 0 R /Prev 1976 0 R /Next 1972 0 R >> endobj 1975 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 4694 0 R 4695 0 R 4696 0 R 4697 0 R 4698 0 R 4699 0 R ] >> endobj 1976 0 obj << /Title (Preface to Programming Pearls) /Dest [ 1004 0 R /XYZ 0 792 null ] /SE 1977 0 R /Parent 1956 0 R /Prev 1978 0 R /Next 1974 0 R >> endobj 1977 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 4651 0 R 4652 0 R 4653 0 R 4654 0 R 4655 0 R 4656 0 R 4657 0 R 4658 0 R 4659 0 R 4660 0 R 4661 0 R 4662 0 R 4663 0 R 4664 0 R 4665 0 R 4666 0 R 4667 0 R 4668 0 R 4669 0 R 4670 0 R 4671 0 R 4672 0 R 4673 0 R 4674 0 R 4675 0 R 4676 0 R ] >> endobj 1978 0 obj << /Title (Programming Pearls, Second Edition: Table of Contents) /Dest [ 991 0 R /XYZ 0 792 null ] /SE 1979 0 R /Parent 1956 0 R /Prev 1980 0 R /Next 1976 0 R >> endobj 1979 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 4466 0 R 4467 0 R 4468 0 R ] >> endobj 1980 0 obj << /Title (Algorithm Design Techniques) /Dest [ 986 0 R /XYZ 0 792 null ] /SE 1981 0 R /Parent 1956 0 R /Prev 1982 0 R /Next 1978 0 R >> endobj 1981 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 4444 0 R 4445 0 R 4446 0 R 4447 0 R 4448 0 R 4449 0 R 4450 0 R 4451 0 R 4452 0 R ] >> endobj 1982 0 obj << /Title (Writing Correct Programs) /Dest [ 981 0 R /XYZ 0 792 null ] /SE 1983 0 R /Parent 1956 0 R /Prev 1984 0 R /Next 1980 0 R >> endobj 1983 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 4427 0 R 4428 0 R 4429 0 R 4430 0 R 4431 0 R 4432 0 R 4433 0 R 4434 0 R ] >> endobj 1984 0 obj << /Title (Programming Pearls, Part 2: Performance) /Dest [ 973 0 R /XYZ 0 792 null ] /SE 1985 0 R /Parent 1956 0 R /Prev 1986 0 R /Next 1982 0 R >> endobj 1985 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 4398 0 R 4399 0 R 4400 0 R 4401 0 R 4402 0 R 4403 0 R 4404 0 R 4405 0 R 4406 0 R 4407 0 R 4408 0 R 4409 0 R ] >> endobj 1986 0 obj << /Title (About the First Edition of Programming Pearls) /Dest [ 961 0 R /XYZ 0 792 null ] /SE 1987 0 R /Parent 1956 0 R /Prev 1988 0 R /Next 1984 0 R >> endobj 1987 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 4303 0 R 4304 0 R 4305 0 R 4306 0 R 4307 0 R 4308 0 R 4309 0 R 4310 0 R 4311 0 R 4312 0 R 4313 0 R 4314 0 R 4315 0 R 4316 0 R 4317 0 R 4318 0 R 4319 0 R ] >> endobj 1988 0 obj << /Title (Cost Models for Time and Space) /Dest [ 943 0 R /XYZ 0 792 null ] /SE 1989 0 R /Parent 1956 0 R /Prev 1990 0 R /Next 1986 0 R >> endobj 1989 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 4120 0 R 4121 0 R 4122 0 R 4123 0 R 4124 0 R 4125 0 R 4126 0 R 4127 0 R 4128 0 R 4129 0 R 4130 0 R 4131 0 R 4132 0 R 4133 0 R 4134 0 R 4135 0 R 4136 0 R 4137 0 R 4138 0 R 4139 0 R 4140 0 R 4141 0 R 4142 0 R 4143 0 R 4144 0 R 4145 0 R 4146 0 R 4147 0 R 4148 0 R 4149 0 R 4150 0 R 4151 0 R 4152 0 R 4153 0 R 4154 0 R 4155 0 R 4156 0 R 4157 0 R 4158 0 R 4159 0 R 4160 0 R 4161 0 R 4162 0 R 4163 0 R ] >> endobj 1990 0 obj << /Title (Solutions to Column 7) /Dest [ 935 0 R /XYZ 0 792 null ] /SE 1991 0 R /Parent 1956 0 R /Prev 1992 0 R /Next 1988 0 R >> endobj 1991 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 4102 0 R 4103 0 R 4104 0 R 4105 0 R 4106 0 R 4107 0 R 4108 0 R 4109 0 R 4110 0 R 4111 0 R 4112 0 R 4113 0 R 4114 0 R 4115 0 R 4116 0 R ] >> endobj 1992 0 obj << /Title (Quick Calculations in Everyday Life) /Dest [ 927 0 R /XYZ 0 792 null ] /SE 1993 0 R /Parent 1956 0 R /Prev 1994 0 R /Next 1990 0 R >> endobj 1993 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 4081 0 R 4082 0 R 4083 0 R 4084 0 R 4085 0 R 4086 0 R 4087 0 R 4088 0 R ] >> endobj 1994 0 obj << /Title (Further Reading) /Dest [ 922 0 R /XYZ 0 792 null ] /SE 1995 0 R /Parent 1956 0 R /Prev 1996 0 R /Next 1992 0 R >> endobj 1995 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 4066 0 R 4067 0 R 4068 0 R 4069 0 R 4070 0 R 4071 0 R 4072 0 R 4073 0 R ] >> endobj 1996 0 obj << /Title (Problems) /Dest [ 913 0 R /XYZ 0 792 null ] /SE 1997 0 R /Parent 1956 0 R /Prev 1998 0 R /Next 1994 0 R >> endobj 1997 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 4031 0 R 4032 0 R 4033 0 R 4034 0 R 4035 0 R 4036 0 R 4037 0 R 4038 0 R 4039 0 R 4040 0 R 4041 0 R 4042 0 R 4043 0 R 4044 0 R 4045 0 R 4046 0 R 4047 0 R 4048 0 R 4049 0 R 4050 0 R ] >> endobj 1998 0 obj << /Title (Principles) /Dest [ 908 0 R /XYZ 0 792 null ] /SE 1999 0 R /Parent 1956 0 R /Prev 2000 0 R /Next 1996 0 R >> endobj 1999 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 4017 0 R 4018 0 R 4019 0 R 4020 0 R 4021 0 R 4022 0 R 4023 0 R ] >> endobj 2000 0 obj << /Title (Little's Law) /Dest [ 903 0 R /XYZ 0 792 null ] /SE 2001 0 R /Parent 1956 0 R /Prev 2002 0 R /Next 1998 0 R >> endobj 2001 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 4003 0 R 4004 0 R 4005 0 R 4006 0 R 4007 0 R 4008 0 R 4009 0 R 4010 0 R 4011 0 R ] >> endobj 2002 0 obj << /Title (Safety Factors) /Dest [ 894 0 R /XYZ 0 792 null ] /SE 2003 0 R /Parent 1956 0 R /Prev 2004 0 R /Next 2000 0 R >> endobj 2003 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 3987 0 R 3988 0 R 3989 0 R 3990 0 R 3991 0 R 3992 0 R 3993 0 R 3994 0 R 3995 0 R 3996 0 R 3997 0 R ] >> endobj 2004 0 obj << /Title (Performance Estimates) /Dest [ 885 0 R /XYZ 0 792 null ] /SE 2005 0 R /Parent 1956 0 R /Prev 2006 0 R /Next 2002 0 R >> endobj 2005 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 3949 0 R 3950 0 R 3951 0 R 3952 0 R 3953 0 R 3954 0 R 3955 0 R 3956 0 R 3957 0 R 3958 0 R 3959 0 R 3960 0 R 3961 0 R 3962 0 R 3963 0 R 3964 0 R 3965 0 R 3966 0 R 3967 0 R 3968 0 R 3969 0 R ] >> endobj 2006 0 obj << /Title (Basic Skills) /Dest [ 861 0 R /XYZ 0 792 null ] /SE 2007 0 R /Parent 1956 0 R /Prev 2008 0 R /Next 2004 0 R >> endobj 2007 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 3916 0 R 3917 0 R 3918 0 R 3919 0 R 3920 0 R 3921 0 R 3922 0 R 3923 0 R 3924 0 R 3925 0 R 3926 0 R 3927 0 R 3928 0 R 3929 0 R 3930 0 R 3931 0 R 3932 0 R 3933 0 R ] >> endobj 2008 0 obj << /Title (Further Reading) /Dest [ 856 0 R /XYZ 0 792 null ] /SE 2009 0 R /Parent 1956 0 R /Prev 2010 0 R /Next 2006 0 R >> endobj 2009 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 3902 0 R 3903 0 R 3904 0 R 3905 0 R 3906 0 R ] >> endobj 2010 0 obj << /Title (Problems) /Dest [ 847 0 R /XYZ 0 792 null ] /SE 2011 0 R /Parent 1956 0 R /Prev 2012 0 R /Next 2008 0 R >> endobj 2011 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 3878 0 R 3879 0 R 3880 0 R 3881 0 R 3882 0 R 3883 0 R 3884 0 R 3885 0 R 3886 0 R 3887 0 R 3888 0 R 3889 0 R 3890 0 R 3891 0 R 3892 0 R 3893 0 R 3894 0 R ] >> endobj 2012 0 obj << /Title (Principles) /Dest [ 838 0 R /XYZ 0 792 null ] /SE 2013 0 R /Parent 1956 0 R /Prev 2014 0 R /Next 2010 0 R >> endobj 2013 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 3849 0 R 3850 0 R 3851 0 R 3852 0 R 3853 0 R 3854 0 R 3855 0 R 3856 0 R 3857 0 R 3858 0 R 3859 0 R 3860 0 R ] >> endobj 2014 0 obj << /Title (Implementation Sketch) /Dest [ 830 0 R /XYZ 0 792 null ] /SE 2015 0 R /Parent 1956 0 R /Prev 2016 0 R /Next 2012 0 R >> endobj 2015 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 3818 0 R 3819 0 R 3820 0 R 3821 0 R 3822 0 R 3823 0 R 3824 0 R 3825 0 R 3826 0 R 3827 0 R 3828 0 R 3829 0 R ] >> endobj 2016 0 obj << /Title (Program Design) /Dest [ 812 0 R /XYZ 0 792 null ] /SE 2017 0 R /Parent 1956 0 R /Prev 2018 0 R /Next 2014 0 R >> endobj 2017 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 3803 0 R 3804 0 R 3805 0 R 3806 0 R 3807 0 R 3808 0 R 3809 0 R ] >> endobj 2018 0 obj << /Title (Precise Problem Statement) /Dest [ 807 0 R /XYZ 0 792 null ] /SE 2019 0 R /Parent 1956 0 R /Prev 2020 0 R /Next 2016 0 R >> endobj 2019 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 3779 0 R 3780 0 R 3781 0 R 3782 0 R 3783 0 R 3784 0 R 3785 0 R ] >> endobj 2020 0 obj << /Title (/tricks.pdf) /Dest [ 761 0 R /XYZ 0 792 null ] /Parent 1956 0 R /Prev 2021 0 R /Next 2018 0 R >> endobj 2021 0 obj << /Title (Epilog to Programming Pearls, First Edition) /Dest [ 752 0 R /XYZ 0 792 null ] /SE 2022 0 R /Parent 1956 0 R /Prev 2023 0 R /Next 2020 0 R >> endobj 2022 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 3739 0 R 3740 0 R 3741 0 R 3742 0 R 3743 0 R 3744 0 R 3745 0 R 3746 0 R 3747 0 R 3748 0 R 3749 0 R 3750 0 R 3751 0 R 3752 0 R 3753 0 R 3754 0 R 3755 0 R 3756 0 R 3757 0 R 3758 0 R 3759 0 R 3760 0 R 3761 0 R 3762 0 R ] >> endobj 2023 0 obj << /Title (Debugging) /Dest [ 744 0 R /XYZ 0 792 null ] /SE 2024 0 R /Parent 1956 0 R /Prev 2025 0 R /Next 2021 0 R >> endobj 2024 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 3724 0 R 3725 0 R 3726 0 R 3727 0 R 3728 0 R 3729 0 R 3730 0 R 3731 0 R 3732 0 R 3733 0 R 3734 0 R 3735 0 R ] >> endobj 2025 0 obj << /Title (A Small Matter of Programming) /Dest [ 739 0 R /XYZ 0 792 null ] /SE 2026 0 R /Parent 1956 0 R /Prev 2027 0 R /Next 2023 0 R >> endobj 2026 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 3708 0 R 3709 0 R 3710 0 R 3711 0 R 3712 0 R 3713 0 R 3714 0 R 3715 0 R 3716 0 R ] >> endobj 2027 0 obj << /Title (Index to Programming Pearls) /Dest [ 700 0 R /XYZ 0 792 null ] /SE 2028 0 R /Parent 1956 0 R /Prev 2029 0 R /Next 2025 0 R >> endobj 2028 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 3655 0 R 3656 0 R 3657 0 R 3658 0 R 3659 0 R 3660 0 R 3661 0 R 3662 0 R 3663 0 R 3664 0 R 3665 0 R 3666 0 R 3667 0 R 3668 0 R 3669 0 R 3670 0 R 3671 0 R 3672 0 R 3673 0 R 3674 0 R 3675 0 R 3676 0 R 3677 0 R 3678 0 R 3679 0 R 3680 0 R 3681 0 R 3682 0 R 3683 0 R ] >> endobj 2029 0 obj << /Title (Cracking the Oyster) /Dest [ 691 0 R /XYZ 0 792 null ] /SE 2030 0 R /Parent 1956 0 R /Prev 2031 0 R /Next 2027 0 R >> endobj 2030 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 3598 0 R 3599 0 R 3600 0 R 3601 0 R 3602 0 R 3603 0 R 3604 0 R 3605 0 R 3606 0 R 3607 0 R 3608 0 R 3609 0 R 3610 0 R 3611 0 R 3612 0 R 3613 0 R ] >> endobj 2031 0 obj << /Title (Errata for Programming Pearls, Second Edition) /Dest [ 686 0 R /XYZ 0 792 null ] /SE 2032 0 R /Parent 1956 0 R /Prev 2033 0 R /Next 2029 0 R >> endobj 2032 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 3580 0 R 3581 0 R 3582 0 R 3583 0 R 3584 0 R 3585 0 R 3586 0 R 3587 0 R 3588 0 R 3589 0 R 3590 0 R 3591 0 R 3592 0 R ] >> endobj 2033 0 obj << /Title (Rules for Code Tuning) /Dest [ 669 0 R /XYZ 0 792 null ] /SE 2034 0 R /Parent 1956 0 R /Prev 2035 0 R /Next 2031 0 R >> endobj 2034 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 3449 0 R 3450 0 R 3451 0 R 3452 0 R 3453 0 R 3454 0 R 3455 0 R 3456 0 R 3457 0 R 3458 0 R 3459 0 R 3460 0 R 3461 0 R 3462 0 R 3463 0 R 3464 0 R 3465 0 R 3466 0 R 3467 0 R 3468 0 R 3469 0 R 3470 0 R 3471 0 R 3472 0 R 3473 0 R 3474 0 R 3475 0 R 3476 0 R 3477 0 R 3478 0 R 3479 0 R 3480 0 R 3481 0 R 3482 0 R 3483 0 R 3484 0 R 3485 0 R 3486 0 R 3487 0 R 3488 0 R 3489 0 R 3490 0 R 3491 0 R 3492 0 R 3493 0 R 3494 0 R 3495 0 R 3496 0 R 3497 0 R 3498 0 R 3499 0 R 3500 0 R 3501 0 R 3502 0 R ] >> endobj 2035 0 obj << /Title (/timemod.c) /Dest [ 662 0 R /XYZ 0 792 null ] /SE 2036 0 R /Parent 1956 0 R /Prev 2037 0 R /Next 2033 0 R >> endobj 2036 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K 3448 0 R >> endobj 2037 0 obj << /Title (/spacemod.cpp) /Dest [ 655 0 R /XYZ 0 792 null ] /SE 2038 0 R /Parent 1956 0 R /Prev 2039 0 R /Next 2035 0 R >> endobj 2038 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K 3447 0 R >> endobj 2039 0 obj << /Title (/wordfreq.c) /Dest [ 648 0 R /XYZ 0 792 null ] /SE 2040 0 R /Parent 1956 0 R /Prev 2041 0 R /Next 2037 0 R >> endobj 2040 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K 3446 0 R >> endobj 2041 0 obj << /Title (/wordfreq.cpp) /Dest [ 644 0 R /XYZ 0 792 null ] /SE 2042 0 R /Parent 1956 0 R /Prev 2043 0 R /Next 2039 0 R >> endobj 2042 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K 3445 0 R >> endobj 2043 0 obj << /Title (/wordlist.cpp) /Dest [ 640 0 R /XYZ 0 792 null ] /SE 2044 0 R /Parent 1956 0 R /Prev 2045 0 R /Next 2041 0 R >> endobj 2044 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K 3444 0 R >> endobj 2045 0 obj << /Title (/priqueue.cpp) /Dest [ 633 0 R /XYZ 0 792 null ] /SE 2046 0 R /Parent 1956 0 R /Prev 2047 0 R /Next 2043 0 R >> endobj 2046 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K 3443 0 R >> endobj 2047 0 obj << /Title (/sets.cpp) /Dest [ 611 0 R /XYZ 0 792 null ] /SE 2048 0 R /Parent 1956 0 R /Prev 2049 0 R /Next 2045 0 R >> endobj 2048 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K 3442 0 R >> endobj 2049 0 obj << /Title (/sortedrand.cpp) /Dest [ 604 0 R /XYZ 0 792 null ] /SE 2050 0 R /Parent 1956 0 R /Prev 2051 0 R /Next 2047 0 R >> endobj 2050 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K 3441 0 R >> endobj 2051 0 obj << /Title (/SortAnim.java) /Dest [ 588 0 R /XYZ 0 792 null ] /SE 2052 0 R /Parent 1956 0 R /Prev 2053 0 R /Next 2049 0 R >> endobj 2052 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K 3440 0 R >> endobj 2053 0 obj << /Title (/sort.cpp) /Dest [ 566 0 R /XYZ 0 792 null ] /SE 2054 0 R /Parent 1956 0 R /Prev 2055 0 R /Next 2051 0 R >> endobj 2054 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K 3439 0 R >> endobj 2055 0 obj << /Title (/macfun.c) /Dest [ 559 0 R /XYZ 0 792 null ] /SE 2056 0 R /Parent 1956 0 R /Prev 2057 0 R /Next 2053 0 R >> endobj 2056 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K 3438 0 R >> endobj 2057 0 obj << /Title (/genbins.c) /Dest [ 552 0 R /XYZ 0 792 null ] /SE 2058 0 R /Parent 1956 0 R /Prev 2059 0 R /Next 2055 0 R >> endobj 2058 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K 3437 0 R >> endobj 2059 0 obj << /Title (/maxsum.c) /Dest [ 542 0 R /XYZ 0 792 null ] /SE 2060 0 R /Parent 1956 0 R /Prev 2061 0 R /Next 2057 0 R >> endobj 2060 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K 3436 0 R >> endobj 2061 0 obj << /Title (/timemod0.c) /Dest [ 538 0 R /XYZ 0 792 null ] /SE 2062 0 R /Parent 1956 0 R /Prev 2063 0 R /Next 2059 0 R >> endobj 2062 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K 3435 0 R >> endobj 2063 0 obj << /Title (/search.c) /Dest [ 522 0 R /XYZ 0 792 null ] /SE 2064 0 R /Parent 1956 0 R /Prev 2065 0 R /Next 2061 0 R >> endobj 2064 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K 3434 0 R >> endobj 2065 0 obj << /Title (/squash.c) /Dest [ 518 0 R /XYZ 0 792 null ] /SE 2066 0 R /Parent 1956 0 R /Prev 2067 0 R /Next 2063 0 R >> endobj 2066 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K 3433 0 R >> endobj 2067 0 obj << /Title (/sign.c) /Dest [ 514 0 R /XYZ 0 792 null ] /SE 2068 0 R /Parent 1956 0 R /Prev 2069 0 R /Next 2065 0 R >> endobj 2068 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K 3432 0 R >> endobj 2069 0 obj << /Title (/rotate.c) /Dest [ 501 0 R /XYZ 0 792 null ] /SE 2070 0 R /Parent 1956 0 R /Prev 2071 0 R /Next 2067 0 R >> endobj 2070 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K 3431 0 R >> endobj 2071 0 obj << /Title (/bitsortgen.c) /Dest [ 497 0 R /XYZ 0 792 null ] /SE 2072 0 R /Parent 1956 0 R /Prev 2073 0 R /Next 2069 0 R >> endobj 2072 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K 3430 0 R >> endobj 2073 0 obj << /Title (/qsortints.c) /Dest [ 493 0 R /XYZ 0 792 null ] /SE 2074 0 R /Parent 1956 0 R /Prev 2075 0 R /Next 2071 0 R >> endobj 2074 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K 3429 0 R >> endobj 2075 0 obj << /Title (/sortints.cpp) /Dest [ 489 0 R /XYZ 0 792 null ] /SE 2076 0 R /Parent 1956 0 R /Prev 2077 0 R /Next 2073 0 R >> endobj 2076 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K 3428 0 R >> endobj 2077 0 obj << /Title (/bitsort.c) /Dest [ 485 0 R /XYZ 0 792 null ] /SE 2078 0 R /Parent 1956 0 R /Prev 2079 0 R /Next 2075 0 R >> endobj 2078 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K 3427 0 R >> endobj 2079 0 obj << /Title (Code from Programming Pearls) /Dest [ 476 0 R /XYZ 0 792 null ] /SE 2080 0 R /Parent 1956 0 R /Prev 2081 0 R /Next 2077 0 R >> endobj 2080 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 3330 0 R 3331 0 R 3332 0 R 3333 0 R 3334 0 R ] >> endobj 2081 0 obj << /Title (First-Year Instruction) /Dest [ 468 0 R /XYZ 0 792 null ] /SE 2082 0 R /Parent 1956 0 R /Prev 2083 0 R /Next 2079 0 R >> endobj 2082 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 3286 0 R 3287 0 R 3288 0 R 3289 0 R 3290 0 R 3291 0 R 3292 0 R 3293 0 R 3294 0 R 3295 0 R 3296 0 R 3297 0 R 3298 0 R 3299 0 R 3300 0 R 3301 0 R 3302 0 R ] >> endobj 2083 0 obj << /Title (The Back of the Envelope) /Dest [ 459 0 R /XYZ 0 792 null ] /SE 2084 0 R /Parent 1956 0 R /Prev 2085 0 R /Next 2081 0 R >> endobj 2084 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 3221 0 R 3222 0 R 3223 0 R 3224 0 R 3225 0 R 3226 0 R 3227 0 R 3228 0 R 3229 0 R 3230 0 R 3231 0 R 3232 0 R 3233 0 R 3234 0 R 3235 0 R 3236 0 R 3237 0 R 3238 0 R ] >> endobj 2085 0 obj << /Title (Answers for an Estimation Quiz) /Dest [ 454 0 R /XYZ 0 792 null ] /SE 2086 0 R /Parent 1956 0 R /Prev 2087 0 R /Next 2083 0 R >> endobj 2086 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 3205 0 R 3206 0 R 3207 0 R 3208 0 R 3209 0 R 3210 0 R 3211 0 R 3212 0 R 3213 0 R 3214 0 R 3215 0 R ] >> endobj 2087 0 obj << /Title (/quiz.html) /Dest [ 449 0 R /XYZ 0 792 null ] /SE 2088 0 R /Parent 1956 0 R /Prev 2089 0 R /Next 2085 0 R >> endobj 2088 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 3184 0 R 3185 0 R 3186 0 R 3187 0 R 3188 0 R 3189 0 R 3190 0 R 3191 0 R 3192 0 R 3193 0 R 3194 0 R 3195 0 R 3196 0 R 3197 0 R 3198 0 R 3199 0 R ] >> endobj 2089 0 obj << /Title (Tricks of the Trade) /Dest [ 440 0 R /XYZ 0 792 null ] /SE 2090 0 R /Parent 1956 0 R /Prev 2091 0 R /Next 2087 0 R >> endobj 2090 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 3104 0 R 3105 0 R 3106 0 R 3107 0 R 3108 0 R 3109 0 R 3110 0 R 3111 0 R 3112 0 R 3113 0 R 3114 0 R 3115 0 R 3116 0 R 3117 0 R 3118 0 R 3119 0 R 3120 0 R ] >> endobj 2091 0 obj << /Title (/s15.pdf) /Dest [ 403 0 R /XYZ 0 792 null ] /Parent 1956 0 R /Prev 2092 0 R /Next 2089 0 R >> endobj 2092 0 obj << /Title (/s14.pdf) /Dest [ 363 0 R /XYZ 0 792 null ] /Parent 1956 0 R /Prev 2093 0 R /Next 2091 0 R >> endobj 2093 0 obj << /Title (/s13.pdf) /Dest [ 335 0 R /XYZ 0 792 null ] /Parent 1956 0 R /Prev 2094 0 R /Next 2092 0 R >> endobj 2094 0 obj << /Title (/s08.pdf) /Dest [ 301 0 R /XYZ 0 792 null ] /Parent 1956 0 R /Prev 2095 0 R /Next 2093 0 R >> endobj 2095 0 obj << /Title (/s07.pdf) /Dest [ 279 0 R /XYZ 0 792 null ] /Parent 1956 0 R /Prev 2096 0 R /Next 2094 0 R >> endobj 2096 0 obj << /Title (/s04.pdf) /Dest [ 254 0 R /XYZ 0 792 null ] /Parent 1956 0 R /Prev 2097 0 R /Next 2095 0 R >> endobj 2097 0 obj << /Title (/s02.pdf) /Dest [ 229 0 R /XYZ 0 792 null ] /Parent 1956 0 R /Prev 2098 0 R /Next 2096 0 R >> endobj 2098 0 obj << /Title (/s02b.pdf) /Dest [ 207 0 R /XYZ 0 792 null ] /Parent 1956 0 R /Prev 2099 0 R /Next 2097 0 R >> endobj 2099 0 obj << /Title (Programming Pearls: Teaching Material) /Dest [ 198 0 R /XYZ 0 792 null ] /SE 2100 0 R /Parent 1956 0 R /Prev 2101 0 R /Next 2098 0 R >> endobj 2100 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 3037 0 R 3038 0 R 3039 0 R 3040 0 R 3041 0 R 3042 0 R 3043 0 R 3044 0 R 3045 0 R 3046 0 R 3047 0 R 3048 0 R 3049 0 R 3050 0 R 3051 0 R 3052 0 R 3053 0 R 3054 0 R 3055 0 R 3056 0 R ] >> endobj 2101 0 obj << /Title (Web References for Programming Pearls) /Dest [ 181 0 R /XYZ 0 792 null ] /SE 2102 0 R /Parent 1956 0 R /Prev 2103 0 R /Next 2099 0 R >> endobj 2102 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 2782 0 R 2783 0 R 2784 0 R 2785 0 R 2786 0 R 2787 0 R 2788 0 R 2789 0 R 2790 0 R 2791 0 R 2792 0 R 2793 0 R 2794 0 R 2795 0 R 2796 0 R 2797 0 R 2798 0 R 2799 0 R 2800 0 R 2801 0 R 2802 0 R 2803 0 R 2804 0 R 2805 0 R 2806 0 R 2807 0 R 2808 0 R 2809 0 R 2810 0 R 2811 0 R 2812 0 R 2813 0 R 2814 0 R 2815 0 R 2816 0 R 2817 0 R 2818 0 R 2819 0 R 2820 0 R 2821 0 R 2822 0 R 2823 0 R 2824 0 R 2825 0 R 2826 0 R 2827 0 R 2828 0 R 2829 0 R 2830 0 R ] >> endobj 2103 0 obj << /Title (Further Reading) /Dest [ 176 0 R /XYZ 0 792 null ] /SE 2104 0 R /Parent 1956 0 R /Prev 2105 0 R /Next 2101 0 R >> endobj 2104 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 2773 0 R 2774 0 R 2775 0 R 2776 0 R ] >> endobj 2105 0 obj << /Title (Solutions to Column 15) /Dest [ 167 0 R /XYZ 0 792 null ] /SE 2106 0 R /Parent 1956 0 R /Prev 2107 0 R /Next 2103 0 R >> endobj 2106 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 2742 0 R 2743 0 R 2744 0 R 2745 0 R 2746 0 R 2747 0 R 2748 0 R 2749 0 R 2750 0 R 2751 0 R 2752 0 R 2753 0 R 2754 0 R 2755 0 R ] >> endobj 2107 0 obj << /Title (Principles) /Dest [ 162 0 R /XYZ 0 792 null ] /SE 2108 0 R /Parent 1956 0 R /Prev 2109 0 R /Next 2105 0 R >> endobj 2108 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 2722 0 R 2723 0 R 2724 0 R 2725 0 R 2726 0 R 2727 0 R 2728 0 R 2729 0 R 2730 0 R ] >> endobj 2109 0 obj << /Title (/markovhash.c) /Dest [ 155 0 R /XYZ 0 792 null ] /SE 2110 0 R /Parent 1956 0 R /Prev 2111 0 R /Next 2107 0 R >> endobj 2110 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K 2721 0 R >> endobj 2111 0 obj << /Title (/markov.c) /Dest [ 148 0 R /XYZ 0 792 null ] /SE 2112 0 R /Parent 1956 0 R /Prev 2113 0 R /Next 2109 0 R >> endobj 2112 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K 2720 0 R >> endobj 2113 0 obj << /Title (/markovlet.c) /Dest [ 144 0 R /XYZ 0 792 null ] /SE 2114 0 R /Parent 1956 0 R /Prev 2115 0 R /Next 2111 0 R >> endobj 2114 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K 2719 0 R >> endobj 2115 0 obj << /Title (Word-Level Markov Text) /Dest [ 133 0 R /XYZ 0 792 null ] /SE 2116 0 R /Parent 1956 0 R /Prev 2117 0 R /Next 2113 0 R >> endobj 2116 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 2694 0 R 2695 0 R 2696 0 R 2697 0 R 2698 0 R 2699 0 R 2700 0 R 2701 0 R 2702 0 R 2703 0 R 2704 0 R 2705 0 R 2706 0 R 2707 0 R ] >> endobj 2117 0 obj << /Title (Letter-Level Markov Text) /Dest [ 119 0 R /XYZ 0 792 null ] /SE 2118 0 R /Parent 1956 0 R /Prev 2119 0 R /Next 2115 0 R >> endobj 2118 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 2655 0 R 2656 0 R 2657 0 R 2658 0 R 2659 0 R 2660 0 R 2661 0 R 2662 0 R 2663 0 R 2664 0 R 2665 0 R 2666 0 R 2667 0 R 2668 0 R 2669 0 R 2670 0 R 2671 0 R 2672 0 R 2673 0 R 2674 0 R 2675 0 R 2676 0 R 2677 0 R 2678 0 R 2679 0 R 2680 0 R 2681 0 R 2682 0 R ] >> endobj 2119 0 obj << /Title (Generating Text) /Dest [ 99 0 R /XYZ 0 792 null ] /SE 2120 0 R /Parent 1956 0 R /Prev 2121 0 R /Next 2117 0 R >> endobj 2120 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 2559 0 R 2560 0 R 2561 0 R 2562 0 R 2563 0 R 2564 0 R 2565 0 R 2566 0 R 2567 0 R 2568 0 R 2569 0 R 2570 0 R 2571 0 R 2572 0 R 2573 0 R 2574 0 R 2575 0 R 2576 0 R 2577 0 R 2578 0 R 2579 0 R 2580 0 R 2581 0 R 2582 0 R 2583 0 R 2584 0 R 2585 0 R 2586 0 R 2587 0 R 2588 0 R 2589 0 R 2590 0 R 2591 0 R 2592 0 R 2593 0 R 2594 0 R 2595 0 R 2596 0 R 2597 0 R 2598 0 R 2599 0 R ] >> endobj 2121 0 obj << /Title (/longdup.c) /Dest [ 95 0 R /XYZ 0 792 null ] /SE 2122 0 R /Parent 1956 0 R /Prev 2123 0 R /Next 2119 0 R >> endobj 2122 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K 2558 0 R >> endobj 2123 0 obj << /Title (Long Repeated Strings) /Dest [ 86 0 R /XYZ 0 792 null ] /SE 2124 0 R /Parent 1956 0 R /Prev 2125 0 R /Next 2121 0 R >> endobj 2124 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 2514 0 R 2515 0 R 2516 0 R 2517 0 R 2518 0 R 2519 0 R 2520 0 R 2521 0 R 2522 0 R 2523 0 R 2524 0 R 2525 0 R 2526 0 R 2527 0 R 2528 0 R 2529 0 R 2530 0 R 2531 0 R 2532 0 R 2533 0 R 2534 0 R 2535 0 R 2536 0 R 2537 0 R 2538 0 R ] >> endobj 2125 0 obj << /Title (Phrases) /Dest [ 74 0 R /XYZ 0 792 null ] /SE 2126 0 R /Parent 1956 0 R /Prev 2127 0 R /Next 2123 0 R >> endobj 2126 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 2445 0 R 2446 0 R 2447 0 R 2448 0 R 2449 0 R 2450 0 R 2451 0 R 2452 0 R 2453 0 R 2454 0 R 2455 0 R 2456 0 R 2457 0 R 2458 0 R 2459 0 R 2460 0 R 2461 0 R 2462 0 R 2463 0 R 2464 0 R 2465 0 R 2466 0 R 2467 0 R 2468 0 R 2469 0 R 2470 0 R 2471 0 R 2472 0 R 2473 0 R 2474 0 R 2475 0 R 2476 0 R 2477 0 R 2478 0 R 2479 0 R ] >> endobj 2127 0 obj << /Title (Word Frequencies) /Dest [ 66 0 R /XYZ 0 792 null ] /SE 2128 0 R /Parent 1956 0 R /Prev 2129 0 R /Next 2125 0 R >> endobj 2128 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 2429 0 R 2430 0 R 2431 0 R 2432 0 R 2433 0 R ] >> endobj 2129 0 obj << /Title (Solutions to Column 1) /Dest [ 47 0 R /XYZ 0 792 null ] /SE 2130 0 R /Parent 1956 0 R /Prev 2131 0 R /Next 2127 0 R >> endobj 2130 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 2335 0 R 2336 0 R 2337 0 R 2338 0 R 2339 0 R 2340 0 R 2341 0 R 2342 0 R 2343 0 R 2344 0 R 2345 0 R 2346 0 R 2347 0 R 2348 0 R 2349 0 R 2350 0 R 2351 0 R 2352 0 R 2353 0 R 2354 0 R 2355 0 R 2356 0 R 2357 0 R 2358 0 R 2359 0 R 2360 0 R ] >> endobj 2131 0 obj << /Title (Problems) /Dest [ 38 0 R /XYZ 0 792 null ] /SE 2132 0 R /Parent 1956 0 R /Prev 2133 0 R /Next 2129 0 R >> endobj 2132 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 2296 0 R 2297 0 R 2298 0 R 2299 0 R 2300 0 R 2301 0 R 2302 0 R 2303 0 R 2304 0 R 2305 0 R 2306 0 R 2307 0 R 2308 0 R 2309 0 R 2310 0 R 2311 0 R 2312 0 R 2313 0 R 2314 0 R 2315 0 R 2316 0 R 2317 0 R ] >> endobj 2133 0 obj << /Title (sec151.html) /Dest [ 19 0 R /XYZ 0 792 null ] /SE 2134 0 R /Parent 1956 0 R /Prev 2135 0 R /Next 2131 0 R >> endobj 2134 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 2238 0 R 2239 0 R 2240 0 R 2241 0 R 2242 0 R 2243 0 R 2244 0 R 2245 0 R 2246 0 R 2247 0 R 2248 0 R 2249 0 R 2250 0 R 2251 0 R 2252 0 R 2253 0 R 2254 0 R 2255 0 R 2256 0 R 2257 0 R 2258 0 R 2259 0 R 2260 0 R 2261 0 R 2262 0 R 2263 0 R 2264 0 R 2265 0 R 2266 0 R 2267 0 R ] >> endobj 2135 0 obj << /Title (Strings of Pearls) /Dest [ 10 0 R /XYZ 0 792 null ] /SE 2136 0 R /Parent 1956 0 R /Prev 2137 0 R /Next 2133 0 R >> endobj 2136 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 2180 0 R 2181 0 R 2182 0 R 2183 0 R 2184 0 R 2185 0 R 2186 0 R 2187 0 R 2188 0 R 2189 0 R 2190 0 R 2191 0 R 2192 0 R ] >> endobj 2137 0 obj << /Title (What's New on the Programming Pearls Web Site) /Dest [ 5 0 R /XYZ 0 792 null ] /SE 2138 0 R /Parent 1956 0 R /Prev 1957 0 R /Next 2135 0 R >> endobj 2138 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 2139 0 R 2140 0 R 2141 0 R 2142 0 R 2143 0 R 2144 0 R 2145 0 R 2146 0 R 2147 0 R 2148 0 R 2149 0 R 2150 0 R 2151 0 R ] >> endobj 2139 0 obj << /S /P /P 2138 0 R /K 2177 0 R >> endobj 2140 0 obj << /S /H1 /P 2138 0 R /Pg 5 0 R /K 1 >> endobj 2141 0 obj << /S /H3 /P 2138 0 R /Pg 5 0 R /K 2 >> endobj 2142 0 obj << /S /P /P 2138 0 R /Pg 5 0 R /K [ 2162 0 R 4 2163 0 R 6 2164 0 R 8 2165 0 R 10 2166 0 R 12 2167 0 R 14 ] >> endobj 2143 0 obj << /S /H3 /P 2138 0 R /Pg 5 0 R /K 15 >> endobj 2144 0 obj << /S /P /P 2138 0 R /Pg 5 0 R /K [ 16 2158 0 R 18 2159 0 R 20 ] >> endobj 2145 0 obj << /S /H3 /P 2138 0 R /Pg 5 0 R /K 21 >> endobj 2146 0 obj << /S /P /P 2138 0 R /Pg 5 0 R /K [ 22 2156 0 R 24 ] >> endobj 2147 0 obj << /S /H3 /P 2138 0 R /Pg 5 0 R /K 25 >> endobj 2148 0 obj << /S /P /P 2138 0 R /Pg 5 0 R /K [ 26 2154 0 R 28 ] >> endobj 2149 0 obj << /S /H3 /P 2138 0 R /Pg 5 0 R /K 29 >> endobj 2150 0 obj << /S /P /P 2138 0 R /Pg 5 0 R /K [ 30 2152 0 R 32 ] >> endobj 2151 0 obj << /S /P /P 2138 0 R /Pg 5 0 R /K 33 >> endobj 2152 0 obj << /S /Link /P 2150 0 R /Pg 5 0 R /K [ 31 << /Type /OBJR /Obj 2153 0 R >> ] >> endobj 2153 0 obj << /Subtype /Link /Rect [ 278.632 231.05714 370.936 244.05714 ] /StructParent 61 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 440 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/tricks.html)>> >> endobj 2154 0 obj << /S /Link /P 2148 0 R /Pg 5 0 R /K [ 27 << /Type /OBJR /Obj 2155 0 R >> ] >> endobj 2155 0 obj << /Subtype /Link /Rect [ 231.31599 318.37143 348.28 331.37143 ] /StructParent 60 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 468 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/fyi.html)>> >> endobj 2156 0 obj << /S /Link /P 2146 0 R /Pg 5 0 R /K [ 23 << /Type /OBJR /Obj 2157 0 R >> ] >> endobj 2157 0 obj << /Subtype /Link /Rect [ 67.66 391.28572 94.972 404.28572 ] /StructParent 59 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 686 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/errata.html)>> >> endobj 2158 0 obj << /S /Link /P 2144 0 R /Pg 5 0 R /K [ 17 << /Type /OBJR /Obj 2161 0 R >> ] >> endobj 2159 0 obj << /S /Link /P 2144 0 R /Pg 5 0 R /K [ 19 << /Type /OBJR /Obj 2160 0 R >> ] >> endobj 2160 0 obj << /Subtype /Link /Rect [ 91.336 464.2 330.64 477.2 ] /A << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/ccads.pps)>> /Border [ 0 0 0 ] /StructParent 58 >> endobj 2161 0 obj << /Subtype /Link /Rect [ 67.66 480.60001 167.308 493.60001 ] /StructParent 57 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 669 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/apprules.html)>> >> endobj 2162 0 obj << /S /Link /P 2142 0 R /Pg 5 0 R /K [ 3 << /Type /OBJR /Obj 2176 0 R >> ] >> endobj 2163 0 obj << /S /Link /P 2142 0 R /Pg 5 0 R /K [ 5 << /Type /OBJR /Obj 2175 0 R >> << /Type /OBJR /Obj 2174 0 R >> ] >> endobj 2164 0 obj << /S /Link /P 2142 0 R /Pg 5 0 R /K [ 7 << /Type /OBJR /Obj 2173 0 R >> << /Type /OBJR /Obj 2172 0 R >> ] >> endobj 2165 0 obj << /S /Link /P 2142 0 R /Pg 5 0 R /K [ 9 << /Type /OBJR /Obj 2171 0 R >> ] >> endobj 2166 0 obj << /S /Link /P 2142 0 R /Pg 5 0 R /K [ 11 << /Type /OBJR /Obj 2170 0 R >> ] >> endobj 2167 0 obj << /S /Link /P 2142 0 R /Pg 5 0 R /K [ 13 << /Type /OBJR /Obj 2169 0 R >> << /Type /OBJR /Obj 2168 0 R >> ] >> endobj 2168 0 obj << /Subtype /Link /Rect [ 46 553.51428 69.328 566.51428 ] /StructParent 56 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 133 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/markovword.html)>> >> endobj 2169 0 obj << /Subtype /Link /Rect [ 308.93201 569.91429 337.588 582.91429 ] /StructParent 55 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 133 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/markovword.html)>> >> endobj 2170 0 obj << /Subtype /Link /Rect [ 233.62 569.91429 285.604 582.91429 ] /StructParent 54 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 119 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/markovlet.html)>> >> endobj 2171 0 obj << /Subtype /Link /Rect [ 107.308 569.91429 207.29201 582.91429 ] /StructParent 53 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 86 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/longdups.html)>> >> endobj 2172 0 obj << /Subtype /Link /Rect [ 46 569.91429 101.308 582.91429 ] /StructParent 52 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 66 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/wordfreqs.html)>> >> endobj 2173 0 obj << /Subtype /Link /Rect [ 270.616 586.31429 295.276 599.31429 ] /StructParent 51 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 66 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/wordfreqs.html)>> >> endobj 2174 0 obj << /Subtype /Link /Rect [ 46 586.31429 159.976 599.31429 ] /StructParent 50 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 144 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/markovlet.c)>> >> endobj 2175 0 obj << /Subtype /Link /Rect [ 264.004 602.71428 352.972 615.71428 ] /StructParent 49 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 144 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/markovlet.c)>> >> endobj 2176 0 obj << /Subtype /Link /Rect [ 46 602.71428 99.67599 615.71428 ] /StructParent 48 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 10 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/strings.html)>> >> endobj 2177 0 obj << /S /Link /P 2139 0 R /K [ 2178 0 R << /Type /OBJR /Pg 5 0 R /Obj 2179 0 R >> ] >> endobj 2178 0 obj << /S /I /P 2177 0 R /Pg 5 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 2179 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 47 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 2180 0 obj << /S /P /P 2136 0 R /K 2235 0 R >> endobj 2181 0 obj << /S /H1 /P 2136 0 R /Pg 10 0 R /K 1 >> endobj 2182 0 obj << /S /P /P 2136 0 R /Pg 10 0 R /K 2 >> endobj 2183 0 obj << /S /P /P 2136 0 R /Pg 10 0 R /K 3 >> endobj 2184 0 obj << /S /H3 /P 2136 0 R /Pg 10 0 R /K 4 >> endobj 2185 0 obj << /S /P /P 2136 0 R /Pg 10 0 R /K [ 5 2223 0 R 7 2224 0 R 9 2225 0 R 11 2226 0 R 13 2227 0 R 15 2228 0 R 17 ] >> endobj 2186 0 obj << /S /H3 /P 2136 0 R /Pg 10 0 R /K 18 >> endobj 2187 0 obj << /S /P /P 2136 0 R /Pg 10 0 R /K [ 19 2217 0 R 21 2218 0 R 23 2219 0 R 25 ] >> endobj 2188 0 obj << /S /P /P 2136 0 R /Pg 10 0 R /K [ 26 2215 0 R 28 ] >> endobj 2189 0 obj << /S /P /P 2136 0 R /Pg 10 0 R /K [ 29 2211 0 R 31 2212 0 R 33 ] >> endobj 2190 0 obj << /S /P /P 2136 0 R /Pg 10 0 R /K [ 34 2195 0 R 36 2196 0 R 38 2197 0 R 40 2198 0 R 42 2199 0 R 44 2200 0 R 46 2201 0 R 48 ] >> endobj 2191 0 obj << /S /P /P 2136 0 R /Pg 15 0 R /K [ 0 2193 0 R 2 ] >> endobj 2192 0 obj << /S /P /P 2136 0 R /Pg 15 0 R /K 3 >> endobj 2193 0 obj << /S /Link /P 2191 0 R /Pg 15 0 R /K [ 1 << /Type /OBJR /Obj 2194 0 R >> ] >> endobj 2194 0 obj << /Subtype /Link /Rect [ 67.66 731 139.948 744 ] /StructParent 86 /Border [ 0 0 0 ] /A << /S /GoTo /D (нIh\(-i!գstrings)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/webrefs.html#strings)>> >> endobj 2195 0 obj << /S /Link /P 2190 0 R /Pg 10 0 R /K [ 35 << /Type /OBJR /Obj 2210 0 R >> ] >> endobj 2196 0 obj << /S /Link /P 2190 0 R /Pg 10 0 R /K [ 37 << /Type /OBJR /Obj 2209 0 R >> << /Type /OBJR /Obj 2208 0 R >> ] >> endobj 2197 0 obj << /S /Link /P 2190 0 R /Pg 10 0 R /K [ 39 << /Type /OBJR /Obj 2207 0 R >> ] >> endobj 2198 0 obj << /S /Link /P 2190 0 R /Pg 10 0 R /K [ 41 << /Type /OBJR /Obj 2206 0 R >> << /Type /OBJR /Obj 2205 0 R >> ] >> endobj 2199 0 obj << /S /Link /P 2190 0 R /Pg 10 0 R /K [ 43 << /Type /OBJR /Obj 2204 0 R >> ] >> endobj 2200 0 obj << /S /Link /P 2190 0 R /Pg 10 0 R /K [ 45 << /Type /OBJR /Obj 2203 0 R >> ] >> endobj 2201 0 obj << /S /Link /P 2190 0 R /Pg 10 0 R /K [ 47 << /Type /OBJR /Obj 2202 0 R >> ] >> endobj 2202 0 obj << /Subtype /Link /Rect [ 277.276 36.39999 328.26401 49.39999 ] /StructParent 84 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 133 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/markovword.html)>> >> endobj 2203 0 obj << /Subtype /Link /Rect [ 202.96001 36.39999 253.948 49.39999 ] /StructParent 83 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 119 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/markovlet.html)>> >> endobj 2204 0 obj << /Subtype /Link /Rect [ 127.64799 52.8 187.64799 65.8 ] /StructParent 82 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 99 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec153.html)>> >> endobj 2205 0 obj << /Subtype /Link /Rect [ 46 52.8 121.64799 65.8 ] /StructParent 81 /Border [ 0 0 0 ] /A << /S /GoToÜٹ utJ2Qfi|O-ѧ C]S *Im4SB7,ZsNWy?{ D|SP'Hl\Cu[ۗDӫ ~nZkZ\inLhTV-ۧSʱ"h )Z<`IUR׻4XWfUAήN\` 5Ul!քea'=Nl}0&Q y4|.’pQ!:AhK9D܀ ZJ.P{J(U-{o{`KwODS|75Ma}H5؎#`RR]' &Ob{UaoAA+Tn('~W|H| U~u{hb @EE#6G6l bsuW{ +;;$X/&u=ƔTw2UdX5kiv/Jʫ)d\g> Wj*iv XKNyErLKe6WL6ަ{H[na@ 3#S~a(y7 +|)gp|N5(I@*Z?o;1蛃0kٞo>]yj3@Fѣ% LG d5qh#.٬[? +a"YtG6n|O[tKQ K돌ZtiC{8Y&a!R1ȺQ4MIGF}KoJ$Ti쑡6kO'7-3~> ҀEJV>xd|zտ* :;9x` '6Clˤb喞2 Vsd>(.=څT㳧\VMNHLfydxZP4] I#9h}沤z4g> Wd*m]<'EdVAJ SLf~| +ߤzJ[na@ 3#S~a(y7 +|)gp|N5(I@*Z?opwH#'7=Լ*7靼pV5\rnnmdy|r;(:m!6l brrP{[_FhU4b`_1**Ί-sCM0ݯ:ِU=~q2{CH՝N#| /$O~r`ȷd]ﰗl} :یFHo[xd$cJ'7"Fuy4ȫa\g߱'rB4š0ӗ|cZ?{Iי S@x}3m͐=`%k-=2S%ctOqg7R[VO:il4V`k4ʿhKgFkZ‹|ӵ`7x0%Ъx-pPH8n<1$GWo!gN f.f5\N,9X& ?mtŕdV޼am\!tqpPvQTaT<vJz8cD_?o$ɪtwˏ>Q%2jv2T* +:MN3@WdV 2в6'ےu`Uk2BJkR]C6]\d(3Ze%eшޝڦaf%Pq܌}&U:Jh4x%J m(uCDt޵Wz> ؎.zUFGmDbUVP2O aqF۰e@zMj,ysp"lAbRՑNH'pJ W{:@jtl"#O@8c<_%Q>R5zE̼_:VsLߔƷ+obX43;--] ^`i*|S6x-H^jexbU'r}*T;ȉܢA# B r ݒ֟ ,ͱ'rB4š0ӗ|c#7KԴOv-i۔]UȌ6ӛ򉂾@+5+N=VS-έuJ~1?~CA24?ND]IZ|ގf,ǿEN|}mj6{+  3n ʕ6:wTugD"2"nT\\;6l brtV{bF0qsأbT'+o6O# +^B)]֔o2& 6o-a{#i`\[BSu_Z_!J՛ !qEBq^eT0ix&x<+dN]+ +kd>H7#j 檃G|˲4SevS6-͉ N5:Yum2[HwnȤGݢwv@kR0.YV_PNo0; .nDۖhNໄngZǩlJ0!r|G 6$ H6mleߖHsB4%H<nuQoU/i܋ApOn6↝N3Pn$6O(r--> X ,2en (SyHJSR0 YV_PNo0׃%;p.©>;ً DkxhLN3>/?︉'-8X`p5\G{3.V^NxO 4Ղc ю9dF\֌d-FAn0޴oil+z$7cJkR]C1]\c(ܾ?2kcOFЭ5.c褿yڠ|O[na@ 3#S~a(y7 +|)gp|N5(I@*Z?oRǸ23ﰝ9X56Nij3O8iSv"]"l ͙$Baܢ9C%7_)&ZgT0swR*ñORMgEXwu"Է$HP&<+dN]+ +kd>H7#j 檃G|UlNZuN%!oK8́!YEΒU$f"IQ1)! h}MgAfCJWH jNjnH2Cq2sU`+#!?7XZ&d.хowoDx +Sl R5=ΩFBc0; (@bǬ+c{\a5XU0!ɍ3bQX9_*C .+h`|\U*# X+ 4(̇]Qs"J)(s "{К2luh *>k^cy_+85uD:nWJ3mH~j|S0;ɄK޲FdpvٟRvm^P.o{0]Mc?|L]uESXuIAԝ3J\8m!`?u>H_X \X+ 4(̇](f$ =!uZj +vd8g&&lhBV%`*E9.ݸa_]bk}zXW ]?nZZ^K^j|S05ɄK8:mk(/oZ@3oJ +wn%|LyUq ]3{TG2As>Z*DiU5U춈=o^g3OH8cSS55k0ʱ|fE E\FߦHZ8 Aá#hj\Z BS +m'\vQ$gJyC%CGO*j`*nCQdNA6gyrb&( rq\xɿ q3s~GacYMg&`&4UwXL{=z_8–A@ɩYKrx@NR`PH5PIhAJٖGTCNbQۼ 9.S> M| A0 +eszMd^n=].mY&ݠ:No U@)"^hӘD  yw9b&V" }\k#!&yˣi]\<叀?/t,Zsg5}dLIJ_Z: +[OWc èe*x>/R[32D~rlU#5C3tveDU89Ig\?A Xۏ΀N ^cj*%祪ʋa]Vbwl31 +Vd3A~y4ȫa\g߱'rB4š0ӗ|c^Mx.!%} I4$oFT m:#uh#j^WE@w_N7mSr 18/?8#EVK_jg1C*p)~XdkzzỀ z¤=6V'g=>$MG/p6}]Yw08DrZ ؎.zUFGmDbUVP2O aqF۰e@zQ9جχjw Z V7aMohῺK@ +ҰӦ`#p}, +-}Ji^e)J3/:MRg2/4[ eG#xV +j:AhK9D^#ڀ+g=2Ohc<pŖ{iK~ODS|75Ma}Ͻ-3-iн$߳Ϲ>&1LNdu$dxÖHpSu3uGt3@ڬ A ;Nn4AGcANFo/!PC-<<ze 6b{r@[ 3-nHfݟQmRҙ|$Tcި6Bd@jP˒U4vt~ReI,*eh=| +a<35gB,SgU\A?QpC21*}Ng,Z@XnH0̼km ۗpj R"b)9:(>km! +77@k6}0zT޻9>|۰ ZގE`8 ڑ*6F(:|0p(4H,*s#TS*g@8TN4Gr&+[ RRSYFI,%e3뻫4[$b UV8QZE`m<$+oqIla+ZpsZж\aD -ERuXx> +ERٟ )T֯D'Y'L?&tRN0,zьeY)?[ܐ9/9hħ&֍z9P$jUaAF*Wh&iVr0̂Y[xh fhIZYxqkRՁJɴLt# ݸ]30_W42 ؿ `vÚb9dL1)1 $쳉k%`ue^.@.=ܲi䌐|$)\z>۷.{89 3Wo_ވShTTQrRf q[5&SB;vWjӱUf Na^|8]~w/2KO8ǤJǴm;|E^DWguYvu Vԡ[D::y9ʑ]WV)(5~\[:XQ\f ՙd29 .Hi%`ιNŏ0ܥMTG1up,}-cJeTlf\mjҧmJ A:y"_k <0Ȇ"|z&\AAc}7xM@s/:Ngaޒ]]-,ϐxKd$Mq2T%pY|O+3TY|q6:N$aRfGGڢзj~Еm(H<,yӎK2iޔ\eSFBVOc6g_">:j I6S\ w7׽v ldsyU.F!;~ZW"Uߙ(O95P7 `x>Šsجl>ӷO9}J3K-3RM[`%Lr7#%EUJs\*~m, +kԶN~jߐU ]LZuQZ=[rS4đ%ǍIbJtCfxس2k ڮ* +a =(.9H:ý T(*o<|]-F{_Ң"4lZ鍚Ӥ*2bœ274#jF P9G5(;@SWV_l2<& +]~rRs7y%AKL'GuB1ɶ*@T.R'H<(;쀳QKubV8-a\yp$ 0]qOP~Ws HסdliTB +!@n5ftkX,`I%?2poP8DE g?˷=hdliTB x=8Fi̻ñ0҂Fb72O!0&-RPcTiBR">_mof ƍmt_ʸBkۏjnqw4o:wo}?Rʕ, X@ ,]{Ǻmqw7o:wo76+HYhCHYt1-Css)&f:gkeoT{Bޜ|u&'$Cya?P Ukxƌgw|~IAOl ф!-+v)ۅ|R0 GX+LAVR;yK.Ū]l21320q¯u9m{)py%97IO@gğn wR-C߫مN)HKj/jKͻ'_R>tiF*@ٹE?%__؏-1"̭KH 4iO:AhK9D:D1W p@P{oKxODS|75Ma}H5؎#`RR]' &Ndu$dxÖHsСIJna1E,RڕvvKݯXi[B7Cό\꨼@q|֮ SpPLDh pz5m +;˾γٿzR +'ntV=mOd { ʑ6ov"qkZF@j m]?='  +l k*gG(v?k$ƌȦ^K SGi^IhܴR(}O?[Ľ("N RMd@"(Y;J/(򚸊ff!3[ 'JY&;Oj9W/4 \5s%)d+P  +V^HbrzO:~W6ƴ"l!k6d[56R+-K4AIRdgy0{qČxYD7Elkݠ5>W'7mjӞl>i1?OMTJuR+W6v91>:nM4:XD>Gd˷q/ߚX=gԲQM2SSbeY$M~aB-Gԛ\2Rvob{yp9Qm|+ܫāU6P{Nj +pH0Dnt;@+nϗlK.0~f2@7&Uw XPÿzF~4U%a=8^}[w5g~8HUTT0>sA,4悏f-zH:45Jy݊r4-vq0 ""h _X0+sz$/ˣS)P%xl%?ݧind ư@T7ѤZQ_xqt9Xru(D6?P^fV#Eкy@fCUyP Db D|rvDn dد~wY_q8#?,65{!٢hNѮb>7`IyfuM0ɛY)A*hqEGGK wPNM%s>E~[Z|b<m*VxR\`2nݿ?{346i׻={M,\뮢ǘSY,,mŜ"jnj'@rIݛVbjdůLAmKit5Yqݸsh" :B1hxkd>x>9pV'Iѫm(7geYG Du|-r1O |RJ8(0Lߟ-X2̯ɀa [p%HCiA<$ct9(M$BButޑɄM6z=عݬOq̠˸J6M~R0,ڮ@]i||!#1 +@hloOzA]Gƍ&rp)Vj/ۙÅ1pf,vx0Mk.HfbqWBFҬhrpbjhqOd(%c.۽;؝doSE& +h\u_О9]YtkQfGR(W~"C L$̆ugN\:~}b z1oiN <_wTK~ݨx38o=šܗf2ѻK\`C v><nGP?19$gv?9,ݦ?fUgXPyt hYpLɺO^qV4YG8fe41] +:`.\-|1&.@ MJy-)ԅҍ5yl[X!3 s L،4RȧYpMN^D_LHhr{3?_c3I?bݮ׋\̖3+YpMºN^Mw-: s {:-A,zC H_`:ŋ0 q#]~xYpMúN^e $^ծ WE#2f1[9&wT* !<^CڮEP9%šܖj2вG\,lZcNsM$޽Em.TŊJdsJd" ki˜tAO.0LnYR1]Ar`{%xIcvϡˌy#\G̦enۦ"uj +?w0rV8`6gkd5`_^ueHݷճ =LO/9u +H2PDž ˺UZ%.ig덜"I{Z4 P52o(=Ng[M:m .-OUA븅tH f[3v~;Y)v2]mqj*&Iҷ$Nl5ivSq o k]YlAo;bO[w2]mqj*ߋ_,\Fk2Q♛/t9Qш [7ÍUk\>6ĽIKdg)nrT|UwB<D:ؓQ~"-a}i(*uFEv[KdFZko$Ov)EyU"8Q{,:qX?[VfVƲE$QCJzhjnnߨ١|u̬ +`h͒n R|Njn 89Z^8rw̸.ʰU&g) ErMxĮ9e{-Mt3Uh{U>c\3y}p cj xOƲǕnrT|Uwg5^ <=OI8{6#&7[O= P^NTp.w2]mqj*Ɠ'f_o6&!OuG4XFL& .sc4I .`_^uexĮ9e{-e;bܠ )2HNo ԝONf97yǨ 0cU\;Nj:ח߮%=f AZ`nHpN*=U0ea)؜5v0IBK 4jҳyPd>BOa|֍mD(XJ!bvݽN2#jg1Ǯn[6V+o|l5t{iY>I%a`͖$Q!mYH^.u :ÝyF*ɔV 8udmG5ub.Ɛܥ\CIMWT߱'rB4š0ӗ|cXuT78JMV)2(mN^enTz6sX,s˕Zx[\]10?ߎ$yBjQNH܈yX(QX+CiMxFCkΧnOj=T4US%tUw=κx$!XL}D",I +_Hvy'fVUܕR&A@:\-c~h՚3'U>[W[PqJN+~BH-Q_kϦ!T~u>| ;gZPgX7 V=p~(Q.xr@]5T}1pcHݓ#9|JYG WavFZ4ZX<^FR0ZBCv+_|Ԗ`5/A*} C"B3[jOqu +- OTГ~=D(6•Ϊ;zD8p$ }J UMQ!7Dj p `߷[9S^$~ez,,<܄X 8$bW͙"Mgt@ɗ.i7H"ءg)@RJTE}CRS *Im4SB7,ZsNWy?{ D|SP'Hl\Cu[ۗDG`a(eB3L|"Q^n:v֟GjJFblMNYȿR(eZ?pc0g x%XSP12 Da N3M5$ !- + q?z9 p&~+uḿLOׄ$,cȨ߸csSŒ\<4ߓ +Qn*|v̉R1n+x*VaDiXυB˟29D2g&csv Qx,M*,+7Շ!<:whzrW Tč(]:S2$p6Cg> Wj*r,_8P7{?Gb=,bVث}E[na@ 3#S~a(y7 +|)gp|N5(I@*Z?o;1%9tbH?#nPjd |,'ͽ \i2 p1Tt_4gT2ӑ5al+qO9j[4v#@<s-6G()}: ف^7e +YKm + -bPy[X}%4Q~l. +JV2Rjx~xTXy'By_&]h~^T,dK~ ^le*|S6x-H^jexbU'rd3A{y4ȫa\g߱'rB4š0ӗ|c#7KԴOv-i۔]UȌ6ӛYa gW05Vsu w-ADJ>Kz LrFGsJzۗ$$ &DV !hTHgSVBeWN- 7,҄VX7 +Nhtk]v)8>~t0.ԩi|V* FB7tU@&QW4FHmRM# u:p%ǻ},WYs/D;X!ӒnuɇO+ތ'k1 W<'WWjװL؈Q$OfCk%GlH8C&TPe e :AhK9D€`Vb((>T>#Q(N˔#ݢ(aTc&Y۽ +0C {9`'qV(ԴPCsJfۜVl.!͙5%Ӳ FR ϰΏ`ח)vN"$Q3uvVue23y)Vh.8{.0e-cL W̼dt;|7mur +æّr~ {JB5sAzB~LJ le)x1<(S +X/ ! !`&6*qO);c1/Ybe:~~=\vxL!%R\yW)ɾ +.}* +HBD988TȄR^{IY +^%$t^GaWiMTOJMxi)nN]?ϧ + Qj'Yl(Y9fQ ] bsS 4lK-ݺ6Ia(T]*!E@2t,fbnJ2S!IN_%I?*rT fEfiEB9lfbnJ2P!;w2D?S"e6kTJ\W"Gs.3']0|~DB ebПpR@ꥏpvzs#5wbfRK0ޜPҕ%BoZ\([Bdk^>-# :йw,bs +I.`*)zp^W~n3D:hNg;>#$dΟX].)Z+jPb TÄ?;WڮQQ"B. [HC}s|P46=t=܃nݯ-$ CfRM:(Y,M`9h L4c)#nwTm=S/tVeqՙDm-mמQ_ =0<ԇ0ˈP|:mVÛB7A_hS{k,;>HX/K`rȆ(\(Ltz܈vƒP~ճ%,N$G.յ!|feWPAfd"Rο Fuhe}A B($Zev2F1${."Y,>ҏ@O.1# +ֿyŊ"W;auvj$v}=jHOw1uj 7 Qc^EF +߉NBvL$%i}1im )LӚpNqSA z).'E?P.z葼LrKىKuݶm`v$HfRKUD@.յ |feW$[ %]wI4j0|ێh`C_.VsL{Qخtd]Ū0ɲ1w\{ l9\;I8&ΞFiĴ[k"`F/rfFot# +4$\=p8WIuNǥѨ0[ ; +~v*FN͏q͜jŨH|e/ K않|rۢeZsb-0<͏q͝jũH|A}CS)~Vl{侢 V/Qr6_p ,:Nc͏q͒jŦH|*(wrp5iQ<#$Ce# + +ȀK͏q͓jŧH||ei66> `dDkXÔg v7r֞!v9ovK£7K1u2clJ~`_'D]/>&Dk2J$ +QP?*c,bPP,`?K/$;i)95Ed * 嵔1hƁ=o 6W||$*ٌ<iow%W{nJUgdDmw@RROD!h=e#4r\h$-hA¬]x]!^5aHp7$ ~g 7E +POu%VlVwUX_l=Ihu2m1C-7 ӄ]J|ˊ>Wp4K$a xEM%m]}􃷈Uyߚ B =R0f-I|D:aKw +I2=^jA+&Jj3cҼg\? o:#4В_=4¿̺n۬܏\~\xcV<g2Ͱq>((v4K=v@Dyp7=n e&b'6+aђ7O4~hT̵4]eY!)}#edmHu@JIc<' DXuB`+)aɯ޲ڀswZ#[:+e +5ӨF60eߢ*$:0k_e#IX޾9c^Nztu +Z6Ĕ^ot:/}R0^++v!6Δ%ț2/E9Lxĵ" ;APj,wޕ{|@kZ[Prmy ަ yD)f 娸O'Nv'ҕhlFGV֠b]CR]xr}srKAsn@%B+ bS76@7&0䵴!3zQJp,xƷ; rUݽC&X J}0"b F~`-]V`nD(r%Hyq%kXb*xaq)q[r&8XMtF-̹w[uG̓dla0*'9^ۇ"l=6&@?XyܺG')OlKoNoW 8 -Ki,;ĘLB6tDkZX~O鴌 +Z +L1:&:0M%`*{E,3, \a#0.h,D"pmJU]@m^VMeU +'Tא_L3yejuK5lV5\Ց$ItG6nE,%!"NV&J,*]6tC5'm(A2 +o{MS&Ap8Ila+ZpsZж\aD Cb|k&n@҄9{[4$XUH(2 a +Z֥e %xk@P Fz3% +/xjnLY{XהɊLh3%}E-3nkmÜƐYkJLuKǢ؎I;T6bѐ7mbw]f  +ݹC%- 7]~"S@iJ=u jFV@qw Y&%<7qN#=>b{J][F oNO/hۛ ^jkD}cҥ!RFˀ5a@>{GBN^M 6!MW1I̭%}E-3nk H˸yͿ[p9|bv>[ﳶj髜)sf`B㼺nZF6p +Y/;\u%zr7YBX6GayMmwV bc?pAood4 t\g`O.=GV:=IOY_(V=CH!TBCEZ7WS,teCR]Bb~$c`DŽ &m G+|0o+M~F5k;<`x^L+w2lYbj*9H"I3YADJ,$gŷd(~dъ0ˢ}ahǤʃZn*i#Wy DV \: +Ƣ-#/\ w@rGHMz/F|y@;q~"=R_s \PE3κyk%ߥL&ԮفbTdY.) k_;ߏ-W,?(l 2rVt/@ƀaz/HV!3F;QQ|"Z³ZW> qT>ـrS<]>!\>C ApM4|ȗj4D'0op*z{߈jht *Xihcz}P3O~ YƈS?2Qi3{Y?jP;7RʼhztaV@T΄U+$\YbS}\Ckt&k`;J3=I{(ADS͠9q*zT=NsUv$2DfkÛJm?CcR[5ڥ ؾ@yY')BqEoƛG*t:>n{FL=7 ؤSFP6:J4 +A՝!M夠6.6\o Y睵+gTKו8-BOƃdI+J,6c%a"V{ + _HG՛>GV ۆ5i\\Ff3B瑛KCV0}29үj/枵3ϧ1IQݽc&|B'z( ==:^ U5iL乀0jj鷳D#l$sLMX"!v'*qbH8-VZL)J6MU4Z8*'-`UKC-sO|o‚:x a}ـpl; +1rFAViQ=7 +l]އR[so|O@Oj:ϣÜF[{+0% QM#1e#? c)uU TECz;1 Xܜ.S=ӂZSۣ;OI\cRtP>0Irz@Gq +roMnX(˔5B¥iba蘬XYsvozzCj`WU\KGIhVi;b *F$NՉ)9/=%EQ9HzېqB$P'—5l;.l.>I-"do1f65+bdw/Xyf[Z ~Lny x6CY),x!&W^z%.-7N x :,UD^;nۈpJ|x y<U6MF= /1 \#۽ +0C {9`'qV(ԴPCsJfۜVl.!|;fYnR$1!܄bcFTl 0N='| + 9̆?5y}}vZói4\_!Uk]+n%C +l;f+zn_YҖ!ͱs f&vBk[uV!ij#ScI)rZH?&okPp~۞6 L_(x,&t;`X>8iZ+QuMoVP9 UjIM?uT"z5Eu^5qIMU@CpARf(- `wfh$vr!mmmt`Y ^B|YP_ d4bF +ՅqmHRdJ<# u-VGB,Z{MUOئhS[h f`bAФlK!Ke^V|-ڞmB +>I,|_FNeZ–E +2TVssvفA"$xhdMi`ב-|InGĻiKgP7Lޔ_߉sVi Ig"T E>$ŵQ[k*Kҭ&g, f;ZXUe4ލ$ux_vODS|75Ma}H5؎#`RR]' &WTk+r $y_?nQT$g,QFW}"Ⱦp,ՅU?XT"rƿEʜsӕ{ +' ER}g7xỼ +Ȉaxm1;i%ޡ8d ~9;169iVɽ|6ur~&b9o9sU( Ag?35bE+SgU\A?QpC21*}Ng,Zq?_KB]"ؔuNjNH(>km! +7X$5ى9VD3- ZގCa7 ܐ *6F(:|0p~ht/p<<%Zr.ƿr($LtG6n|cjl6HϬwqVGY/xBnow؂n`"~>eq. +H)_ Cw|F$gl~H7h: q͵Ck,AT +\l +R_D%BM{ ;iXF%=Ɔ!շ٧8mJ0tuSoe#nI H?k,Yy#p-AZ>:̈́=.aP}cs'8,.2{[ևV/ @\[e=H s 6umWb/lXSEzQ0v}~INC"80q>u-5rO T ݠCB 㺃뙟tLDl3}-)7#'1X*eAuL2Up|;Lj9;Ħ˥dTc.Hp%#fba'2Oڵv[(2`6E&&5*x̫@~ 7c>l<˫?aQ25/Q2:2Ռ/7I }œktol[|(_#؞“A@*?nyQ{I-xlnEk??tL? I9grcJ-?Nz=4cF,l[6Q _OvaڶJ=mR(YCO`Rؕ_kR/lXuv˪{)27R&GgmL8v4)fyU*J*Zpa(LD@zE1c[ +sz%<}4u[!)DHv96I< SZ[8d-F=UH&#GTW1נ.{kElmDz +TŨc1id3˅:d)o65O:ɢ͢eޣju~H0 c$ Hʌz0utC:Kn e ΃HBKhQrc#=mV@0[, w(w^uxأ:JɽQ٥|6Cx{vlZsL m >Nk6D^=Ssۻz?"j?|D'D坪 :TtrFWHAo&aP6^hSN +GG|X NʊS ?iо꽕PPqJN+~BH2'Pܪ dSM8`掖" T>T2 ߺ/x 4Gd*qޣcoJ$Ti쑡6kO'7-3~>L|1R5ݏZu2G(':[.2;bocRNHISyGa(tSVLPqhHW!yny!JCeȮ,dTs'B6VV?'2Ȱ| +9O[l;βr-֊Ժ1v\mjsQjɯ%71Fze<(~[qo ٦hȗ.ʲa4~.QAҊ`oDj9h>FN G*qVuʳ;(y{5PȖDGU\-5^΍L=1R`~a8ձ #G'@!AgHo'~,W<<ջ-גK]d6(`{eʧ}\ν +:kv SO871rܫCĚ.grOq\=ƼޏJdQ#Kw_ATZBǑ889-jw|N_ JqNM'^el4ǑKcq2Xج` +3n`(- 닰S WO5j0ږs0!!hF]fC ؜,t2a@>bocRNHISyGa(tSVLPq+r)iS طܿG=kɑk0K *lo?Zx$fH<~`#i'TQ={OjI$5"(H  <M{{A68A|˺Ei"_Tw6(U;@[c8GL +/g)N?ft Œ΍;/.zW +̟,磗[c8HL +/gq&cY.GG/!h T3J֕&#0 o<:8IL +/g8VW s?~;rO<"6ʅҀ7Y@- WZ쪏<٠ҩz H=sx,3ݷTV剆S3i#DAbdF}4,;:&1٠өz H=siqz=6  [N?\7q{_ޮO JY>b, +aCҢaB4O6a|)fdkA{;-޳W* +!iSP6pѶgS+W{Lqt!YLWY,g\SP6p@- Qom7Wj?'^by7(|OHO/5ԡ;|8P"WJ]4xY=/yn=KgԲrg`m8zQmyu\7(r*~ t3~= TeVoP V4`Vܚ*u\7(r*&\̌+pbn]| +-G}Vf3c# InW'&] ?O˝ + "m@!OA)M1!O>dɳ}lNǼ+]Wm/D: ;<`zsf7 {.8}[Yi*oI! KSỳ+OUxtxⓑKGM<P'Wj6%W{ƙiĶjtVZˤ,UxtxⓑK;m8#=*o53WXVbs#Q)9ΧՍ>!/4 hC %3 1lqu! ǰ015}=Iou?$(R %h3w(R?s5t4y;q J޼gY Vv|ZBE^b"NCTNMAyN˧Rl/=虋g9`sА|ƠVD,[o +r;jӌ&{&ń ~!0{P81 |:u/O!r!`*28M* yXrqqE%R?s5t4y;qZw8ʖvVM;/BExsg9QGqZL>h`vVN妐2C Y> Ʊ<-ր9WJSL]M}Uv+ዺ۬xs'$f(dfZ[HhC;_>mk"-fշf$-Ԟܛ-KkI$[↾>U}Eϳpp NfźJ,7#W3lp$nEfghP;Wx\eZFz [ "|,x8EeRkJL9~O0uQ%4uԝ`ܑ2 *RA [#(T澥۽ +0C {9`'qV(ԴPCs +Vwh>,3 =2uf _#L 6붇 |ט F֟UlsoԑsߙAyhNթ#MlB1-ŤőTg:-ܔ:Aխxu}Ñͩ"ݔu*5֭0$ŵQ[c*e壁- T^i )-eOѤtJ[na@ 3#S~a(y7 +|)gp|N5(I@*Z?o1|Zϧa汘!Zi9XϜ蕥" uׇ8a:b ҅:!n8@Q"ײU!~)2(xɈf}+`:>ǾJݺf-j?XOkK4Q +OO =f&wh*Vnr vĀ#[ovbݻ ĝa=:+)pP]l5*t)uKwʘZJ=@Ihcid m+M\E^ EvV?Jh$+"2  fԄƫfi}ٗ-Kzq1[27{iEց!+Ы`@};x $mza/2*w0~ASev ΃HBKhQrc#=mV@0[, w(w^uxأ:JɽaG%$ei%=S]̄lXWQ\0U7dxQ MܪooO[TC]%K7*/ Id2jk͞(#τ9"y3 6q[6H@Ƶâ 0HTCɱyykhqQ/MCDaN?s^ ՛ܘ? o7ƣz){TqU_ gՇ9SƈMH,>ԺQME ΀Îq +q}aՂo2WC9?\yϬbK!޽rb*RC~OVkޯ c?<=\HM"I]^O8hpU|ČAJCb!Q`J9qFW;n/} 47-tB/kAsOɦnry%fΛUBC~~i]Z%}rqzڢoQЦZ&iDz5(@&:]]mۇ.IpcfoOc0NYdr+Ш>S7IC%qd {CiR${ 0-ټڻtg@.i`aQVm= R/]/^$Yc9X2ƑO;Q/`H\ᡄz# 1. !2gʕŒ'V|bi2eօ)$Vx*\tQKzՒn\W`w6wt̾ߞ"A~c1M:`lE2@/,Hy:IyK >K&E/loE# :yn|("뀍w)K-Dv?,JBXۤd_ܙ-$*)1 Ad;9T-WWP3 A1aT!P*/W}0rTF`z@~CvNW;2fQfdkbQo;M6WzfAvT֟bm 3 S \(U>é3C3X.A (9'8ICP1 ϗYku1>Y3XMï,(_AKzJWl%TUP{H@-iFky AÎT[[(܍m_ag `z~V;8h?>?UqG?1 KcЧ*ٸ->HU&B.Q P˕wC$MtG6n1$ D< =?dD SQ ]w L폎4MIGF}KoJ$Ti쑡6kO'7-3~>vu֐8Eg(V`jL,΃y.r{_/S:;/k I*L2dkPEvw{Z䉺m8TENj7ڄ +|?L6o}f.- +;yh,cDc\Rs +BW,盀hD<1 0f>[N T? c[k[sWo8֥\95XĚQE ǯ$3c9 +”IH.'dK7DUį "[p 6代nw2 pj ]-{$!? 3e]k.U^)bQ :]pXʹ~*Br&K J}4ҵ|"(6GZ+xI6ʷ9ͬא`+kƾ;~u*s{*e +H J2*WyX aIlⓏܪLe}Hs[\_ ' .GuBmu4ádPZQAeė;W\6^Iv"?iVR Gdz}Nm)pϪ]hKVp bDO[0Yc6lHk?s0^6RgʬLGQ+Q)sytyZdL1T +rj>+Άf@ 7un%PmbRH|Jw*֡$.dgz^BSוRtsRUBlPLFk?3;Bxy4ȫa\g߱'rB4š0ӗ|c2@'ӮzCy( L +\d#rMH\LP +h=4|J6`Uta= !glMIϸ10|8dR %t\!gLJ~D=10bpZQ85s:GGؖ֙œ|iBQzk/I !>rbD>粙h^r%^S[jC| p/;wz&VL)=9[t(TZU/CrJ;QPY@hFuoq*f)e/cTx5$v븴/50 3X]֮,h.OvHSQX (Z-Vɟԓyc죍PF%lG-W_p]\p0'Gوk#nX>O:+>"i\McgtM,klɥv5v8#Yu@OWB?Ꞷ%"ӄOSs9 `Yf1/ޱN +zDnP2zWhjf@5e~rX6LZ'i@[u"ܛ%${#1#,6{yy*+L4 FךhyV]St*Z-ʶ`48mU1t%#k>@Ha*`'7ħܡp3_wƽKS,"[^^bksr  +Wإ[wq9dEӾPG>nL +"AK6#vl7*x (P=*1-4H8gPQt^|Ȗz2Eb 뻉bq8K_rw*7bU̓U?$fE*a4+|z7"fJ6ei&yQKI;C^B!m45xb+REЭO^8k(b# ~&14q΃_YC1˃%_Fr{W/5Uϴ'2(R&q2GaBý>~BP+nX\m48C,KkJȞgrkZ߀`IN]>((6/uPCaoyWyO x +!`>ހ`IN]+(.Spf7U4#5]Hu𻪂e=a?~>Jag@ʤ|oAj5 5 (ؖu$<3`49sq]s]A &w[QYI˙i5(_Qv !>,%90>3b)/̞'4<6w$)?mBo?^ >ɠn+{2P\sa rL j4jd] 0=drtSE6u '5%X=I^|@*,Mqoq;SQv}'f+(}4.Q +kulsؓ}è#~ԑ·XMnt\v] |7V# +(]-*+2>IeUx /fJ@A{VPʯl YA"[bYɎ$wqP4@a%^yhm zp$Ɉ)PXX7+$2s3 /48ph]r%0qAX&;qɀ8:A>d8<)J2|x3}UPZo[ I +<7-/%z-Un?4dz,4DFr}es?s=ieD9dFg+ӕϥ4m}Ej>:D]uKK5ےrb&( rq\xɿ q3sЎ|;Yi@$o))m_Wuccd7#%|Ǘg03T\;@üWte^ u;G#]ROl ~b>P|}?e ?}i(82Eilkt7,&{^l2/9ng]aLe|6l bwvT{YH+3PTDgY瓄Şl37'maygDx9?Rn .f^h4M?gY䙴eo|؈V$fuDkGĈZ^Ly$>l)E *Im4SB7,ZsNWy?{ D|SP'Hl\Cu[ۗDg蕸fśq`݅vdN>#9OY +w.o +4}􏒴#1A=w_!vWH:3/gAya w +9r57/'qᥑk]vd t!.v\F<Op}B/t=;&7M8QBKK?xǓs[+^se# +*pB23td5¼g$SGJVUtiPqJN+~BH܊^di^D[\7KfDr jِj8#dtCf7l*!KH)_ Cw|F$gl~H7h: q͵A߼&NtӬ8f"EG/?֦9I6ڶS}W6x~9y8"ŒlPPkù +BG]G gkˣ"Dž&XUeBxYi IsZW^Kѵ:Xry舭!eG Q+a*:mBGmabfaR 'Y}qudEt9eȍQ.Ca➷ *l(`d i,۰%ZXr@]Gƍ&rp)Vj/ۙÅ1pf,vx0Mk.Hfbq*KƜ+QFqDTvQ@"$-l5 lLI*Z0V>ӎ2 urdZ=\VZ;{ A콝: 'r-U $k%v}S07GJ^h3G?mY)D riMFFI yw9b&V" }\k#!=V+QK(ഋfG-ň\O9f,?;q: $GB֬={=pqkbR_ LZ9NO%${Sb2  +{njxd+6i* zS'L`ϝe.AFo" 7h_F/m&6ޢX|JܷJ8 g6d=UF**AH\ݨ\}ה}c75ckg"kW]H Vj/ۙÅ1pf,vx0Mk.Hfbq@O&C5'T&W2E-% FQ<7pw5Kh@'WeU˱93T rExk+ׇuĠZyꭈ:.50_oh!JaZ3+Glϐ>W8Leq. +H)_ Cw|F$gl~H7h: q͵(o~ymu1xiEdN畛 # D#o@oq!k,!vrkUn(@p.sdT 2%`k yԼN+N^\jYdt_%UF po{n}0%+}җ&=WF52|ꉾ:R%63'(Lѽ,!%p"g24 SQCΧ͞:!>BB; m!#;LՃXZ#kgE3*NbG;deXN"ΨX2Ы;xoylQ5`|S7J,W%X }bUd.T>Y̍S}E8lFȌ Gb+dwkkPqJN+~BH€`Vb((>T>#Q(N˔#ݢ(aTc&Y۽ +0C {9`'qV(ԴPCsJfۜVl.!͙5%Ӳ FR <'^o1,JQMG=x~p}s=~7XTID8|9  tGa Ӏ971Wz|mA ~Cd%uj_"ؼ:JRYx kKg-*JR7x}Wɒ/M4X.ƈyW4*3Rg]1Qw[ /)Լ I)gӚj +}a?I6KB=L&8 1̅sx=3';Eo)M_F9r||0@8.4 ))M鐌wSD{o,=~TRPH`\lI$Ӓr-4<Ʃ9[q|A$sK_w̭nDRP庬v$pTZ5W&I9[q|A$s̺O{, *@r J>!BL&w! JڝBB>cɧxNq79bʛII>b%}.! <OWO{4.DIC O"HZ:?W(6[ +/؎L/h=]I7HC O"HZ:?W'x`yꛙEyl;h7=nOvNBѨ%rpxe4N%IR!ڣGk3&ƋŐ8eksG-%1؃h5LVad!xrjGva۾Z*QL@ <*tg20@v7IWUoHYQ9Q3ڧ Ss,OlX6I.Tz{0P葎q +en.^@O|5<1`$Z \&~dsAR0T m^䳇fr S+O9*Y'F}qVא>`zF4z1-K|Y|:4^wZ}F(]Tm+ zv ^>K?^oʽĠc}^W,d̓tJ70T)d)),NK  +V(C昱(;l46`:*;`Hv ~#%+Oe fIsKQ%'szvT9 19`-bpt7`Ӯ^B@Tj6fr ?`{1PӉ2'lT̺ṋ|i\vBC\ u<%S.on Iqx)#T^=ܯ~A{' 29iΙܧC͢fv,_Lnphc_ + `sM> &a^v7j' h{hMeqo|޹c|_+٢PG@cɁe&nҵ2W7`d+jt4Cqp S>j9,]weK3uC"~ : 4۴S]ޏ6M]ٶ̓hgڦmvLWi$Y/c; 60u|Gx B +>,NW&g7_E,AKf{vQĠޙfBA _2,6JY.> *(z!4n}&Mݑ Fӱ(72{g\ m k1qn zhj\u0!!hF]fC ؜,t2a@>bocRNHISyGa(tSVLPqZqǁ)¡wY:X+*3w!17^,yҠzLDu A)= 0uGEz-oj$p^܁J#̳j'>L|ȳ%o&W/uW>KWR;H:y!d8HgQi8."P;U{Ibdw/Ƀnn{Uh(ZӦT EMJ,: B"EF"f }KL+c4;:<c"7wX8Z5:pDںKQ SPj\Mlc1OnE6R&'+ 2%ď.oLL=wh?t2n[b!0 ZގAc: ޒMd 6q+pV} +;[8J8VDZx,5x,v+[ j×)%}ۡuAw(:=F?Hq!y 2Pxt뇿yw/uZ6l bs{Y{*x|4}ߟVSim.)é1$*4lgC +:) +'/,_95 +,ְ<fmGA] 3鋻?಺J Z t8\K~ %>ݰk"^ojy,= UÀpSYɶCŏ6eV 0wZ Q3zymlO+Mb$M?n j{|r +WS2ߔ>S/Qp\ 1@/춱wDI[߅ŢHJ)C_Nѣ&^; 9eKL0}5ghM4|JSOՉmͣ>u‡_,bzhP MD9x "ڳ -YmGa; Y66l brrP{4p֟`N:o5R@}^f@&X;H$hӓf9߬&٤CKc$:w)D&^@x~eL6i + EDtJ~ B j#12\xf^brK&% y7l/u +6ge n_evLc^Q B=m{s$,67!D 6@ȓpZhl{hHeVg NxOcеR^1)I(ZzJR&yQ2EЄRj3`Xʳ D{$[k*VDzxC"PQ#d"8 6P!fGIhEY:KbjѠ0R2J _5Pe٥FC6l brsQ{ ъl8qP}j rūp3~XؒP{k_q׳yhƁH\fƊ>Wp4K$a xU̵:; pT0(o>0ʐ60ԗyy4$cm@o?=FvO?.$ +tE{d9S/Qp\ 1@/춱wDI[߅ŢHJ)C_Nѣ&^; 9e~Y,(ikyl)BW]_m_&?>a +]3֎S?i"2-'?5zo%^YqR8eJ(DU]=0: Y:gu4]m9gwp8/,3Wݙrs T0R=__Rp5m`f㷱ip IF: <;nzhEٍz>f0De{wY3sik솑 dB}/8sr_o'XmA]A i==+RًL]6GXszr?^k\xg!{5C"Yn[PeW,j.U=̀j[;/lÈ.W[aL +I,g9%f5r0VS~&+HރjR>hY-ۚjܺE0$6~,Ͼ)h$q@`L"7Mmnq r7Zl+JAs +ah\5ֻGn5oZGdǞlŝCh ] +¢:Le6a+oہ|+4!I6O/:/W\s"$z%BI efZ1L) R}Cn"dUu]& y]B-$[{Sb$#H`r`{ԙ_)Ab#=/:&E@r1tehv;n`& Γm)EW[CIh<bocRNHISyGa(tSVLPqTy;BJFCfHf:i6.O#i3ZFohc_rp 6n]=boz,C0E]lү ?ZotڵX߹hAHMEۮ9 G[_,_I\Ή8}cB[=_̢]P]Y벟K7kuhckI] >pS2O>feoJE +SԾrcTMTnD3E)gFtT"|Zǿe?5%Y3k|TbJwxa^H+ïM V(ELXE:|b, [/p03$y~PqJN+~BHݕ&1!̹mª5Jf+DŖ4PgX7 +V=p~(Q.xr@]5T}1pcHݓ#9|JYG WavFZxWfSfU<\glP4x4vr?`w_v(Y QHQ@hHD%1BZ,5B*o |3qWɄ$|$&^nj_g#kI}t(C+E͈88[|'Na *nFFXWhvn:]&j"\㋥c˦$Tf|q@?{u <'iEm?0&|Ayi^Y M>5MQP5"̝,墪'ЃsKI&72͒)8"] v !/GO;k(Ifl4B\<#eB*dkzZd;fc)fj!بGny6hԾ'Y(٪6Bo0+H';`J8|N +fIM%)Kȗmv.x:B9oI|5!g%0͛[o%Ք{KT8>eC#q*"I]Տվ^NyH34Su,9d7q̙SK$!Y%TCG޻),HBHHTGkp) Oѵ9 +F:(S5V&VaI+eq. +H)_ Cw|F$gl~H7h: q͵r +Ku5jӼZ)py@#nJX3?-sg,bVywf'3U=iǾ|ىoR(M"j-, N3l<Ӏd!`i9ZAQZ^ppOF6Ⱦ^NyF=!F-,9PN +qPu$-QC졮A bΚ)PUdesSRAR\.S\Zg;Jk`1Q1ڲ_kˌ>|Onow؂n`"~>eq. +H)_ Cw|F$gl~H7h: q͵ie6`ןYKk1W>R4-L1gcNGgI:$6AXNdSkXcm@+rո-2톖f9OE۬&߸]w ;xPLJ4k/.РP5I@K*?^r=tcv7r;2K?iSEY>&=Cc-|f?9Hb@r0zH9q QdFmk'Q;XN[A+.̸;`7S -7HCkBΡ7i樜 JaJ%^ : -fuMfsiv *h>0ҷ`K7_}y9|@3280rZ/tണhO+ tu}7xG{$Qo&PgɕJpЙ/DGĉdb+|biQ,E@bʻ?B-ʄ(VQA7G:]4FAgrEnHX(̂΂o T?0Pob&9t'?îB;AD^Hry4e*'K,g'w ȕ;z¿Y&&x Nq)Zha3!f,FqӬX@D9e'sDO܋Gܑ . Y/B{?T@B4ɳ ++E8ڐ_Ⅷg_%6B{w%42i1 dl/PЗ@w({1Do)UM7kc0HՌ 5Q43|{l:hiS;ؒR):v6f,) +H֞#Ȧ„ +s;㉜ema~Er_ a3jpGgE +Rþ~V5Z: +0wt:{Pyojhy3ڪf eq.IgϤ\ 'Љ>BI+P֙6l bvvT{/,O +Czc8ֱ}Xae?<.WYa(w0%*Jlr)[ RRSYFI,%e3뻫4[; tC5'm(A2 +o{MS&Ap8Ila+ZpsZж\aD -ERuXx> +ERٟ )٧_U??Q[Ċ6}7߻pQ4QTY*Vkkc||'4Lhcu`-n VϞl} 22\WDHJĸVjX KJ@BxvujJd5>Oߺ)n:7{PVV^1j2(˖Z,r +bdw Gʢy#]˼DKDM*bDRxzd1+ ZN+ n~\[1槂+t&!w5yB[S6]+=zG-U|f%rG鍨U4?'St~Qei,h&P b^d0l'Yku)haRhN u+&,`bW ׉I3:5 :8*Oj(X@zpee]3 !O fxמZ:L#o^̯ͱ̟EAu$b<+~]Τn#>s +J-LjOm-fiVڑ28S8ID%(6.`6u!-{XdXL1kk k97)/RC ЊZZ=% d(@fT5s9_+:;8>fqH={]$7=)>#,/f8&R4T_0(#@x Ǚؒsh0RuJdX~~TK^kan;`xDžHe:emn~?&zE潵yՕaBz>#U W9)]fsS? mOOsfiDL_=Ym uCsқ% $Js9Hi4ƕL= yQ`Cn-tNzmo sKfq-9KωpD՛1o H9q@^KBCBM#Vq&s>4 H +<mF Sjҩ /J-(_@NCۈw&4ϘўgБ-@]歼e`tZۧN`Pao@F<`3è^EWT#=m]sՁy)k1F*Nm/"EId2芆-mQ6bc1r15G0PIb%"B~`=FK@Lɀݧ6`k)&pzmmB-2s&72qn!pghs? N/C׫S/eS&L^ 1 j61V(ň޳NV82ЂtҒ\):e) A0(ǻSq߻nxmt- Ҥ;cW R=G y ;t{_wJ;$5-m+2WDY$o.BkL{4>OD'?u$c7 ~]GD<Љ dz*dm8# aXh'z7K9.G-e +.>O !3*:)|`qH25ԅ}ZaoV2V@!צj}Hz:|_> 43 mrh;I{"7 +TcuR&;`~G,vڲ`N&|xsL)" ZBPnfިpUGo[l/tא5ʅly,(v,nBUJB: 0p>%{OMḎ{~@N<QX%;eE+Aj35,,'w|þ\B|^>{mI̔-b@Mwpg92vo?7K0uYD =He_MR;l{1;p~cxpTLzT_U*°\ڙj-TVGVX`SH C,;W)+[!K fA?erDbf_T͐1^]*b_!/1 \"۽ +0C {9`'qV(ԴPCsJfۜVl.!WҦ)X4 ^T9[Hfwd:]-$6l b{uW{Zyn_,,ȝ αw%*\Jwe=l"_yzא&cV cJXyIj*&аzʯnu_̰YȤOvf3Cxy4ȫa\g߱'rB4š0ӗ|cV*"́% +a&KFݜ6Mjt~Bk[K\gq +Jh5PX4=":&E@rd 9[V +9ZŽ f.`&PG8R΋mH E>$ŵQ[e*EAvV~v\NxQ I:PSЈ:Ks/ 1J!WoM dyȰ ggM*=mV@0[, w(w^uxأ:Jɽ~nJ*l;hq 4Gu7<&PTKZ:U*K03 ]. ʈE62ƨ??O +@Jڸ$+Fn\^ SfkElIU[c9}$9H]F;sE>$ŵQ[f*EAvV~v\NxQ I:PSЈ:Ks/ 1J!WoM dyȰ ggM*=mV@0[, w(w^u- g F<"-ʌ>' mTe;hq 4Gu7<&PTKZ:s + y)Qj<lWC]6;㞫m)XDKqnζJIهSOP?:y\")nT~\}F{wojg0tE/ ^\uKDO7#RjsqB` hʄ/jCs{a +( 'WEE%YF]4iw fMDLrx*.Z ;*j|R=YHsY>>Zw//:ml5UQk6@NEDx)PszTZܻ XhO<4nbW˘$M[aiEȲq,[Ǽy(yæyH[na@ 3#S~a(y7 +|)gp|N5(I@*Z?oHDT`1{oH%)%Ǖ+nvI^ og/۴ٓ£R *NbGYtJ }9YZɥ?MyMaE &rfK4c +~`MPl`נ.Nr~*nzO^̑ vzФ)H')9SoDb^ 0]2:O)^M7ܶPrA= A} G Zr+0˫BJA"~D쏰vD= IB>YePۻZZhHjʒ1\]N,{siD%g'*Je^3tL}NʧY}/w-eTL0,0\K0Zo?ߒZQRX/ #߹.sĔ"kM˔v{ +! + +MemmԖ.TW^ ֛D1v+(\f6sB'.JJz62WdODCZ,MRý0 5.YP*Rwb@]` P5 Z}=ʀ_ ƸO)ɉsJ8aIҳC&C#vMg0z`S)3q!TDF, +ig4 20B,tCb8=0R H[?BJMҿ[2vI cAlS58- Dy:'xwFO͚Uz]U%YX>{GVſH{U`fŦ6H4fXot(b"oZyMřXqꔣٴ\:K ,- +Hqgguy_"j^M]6nt9T|n}vE! \i(ydjWryΙGJEtZ@q褿|ѠxD[na@ 3#S~a(y7 +|)gp|N5(I@*Z?o-͚1\ҝĐu#mg/K+˳26-01~PCӵB9r;Z"f}x;s٫.#51x/*b;j8A;/k44$HLtd2Kus< a@چ,9}7%˘2ߵ2zzOBX058ñORMgEUwu"Է$HP&<+dN]+ +kd>H7#j 檃G|Lekn4a}UI̡q~g 6l brqS{n)WaJ[:V@tlta_]d +pLhL Qt_lOmauCfV^Üu(,Pi- (d9Uy6:VX5r?"YSU.Yc"Sn*g5e4H)_ Cw|F$gl~H7h: q͵F&wzJve >fr/ciKfڙ yNS#Ge|7;l?*s[ܢbz;Rzg jπc6M@#BZCU}FB`ߟf B)U:u?grkCK6wv ~pR}X~ 0WFu=VeRLwX2~w@Ǚ?('!~OAW=Pأ0&><+dN]+ +kd>H7#j 檃G|btQP3*mAF1!nfm*#IBCj@:.84pNKYwg1tl0.׹RGE}Ѝpq zR6pNRϒrYX6Z>6()_1piԖ9X!ӾF.hhNto3O:׵d&~0!!hF]fC ؜,t2a@>bocRNHISyGa(tSVLPqؾ={FQLjWtU4xBJ7>RvBrvy fyHeu}7#]HoAhqT#W )Hvw[ +{nEy0G .XMH;3lY?k#:Q P oe,Qm_"L.ARn$5ӥLu[ۉf.|F)>!@iMBQӘeaZV5kQ~oR^_~Џ ᐏv~t~bk{vs4agi?(j5rU^F)#gtޞ':;eo~\y!]iDx_09hv۴2c^h7L?fYrp&OKiB{@+0V,Sd^ ~%J m(uCDt޵Wz> ؎.zUFGmDbUVP2O ZƯf-@°]=CȆ}e9,aӀ>I*{~jgnʈq'3rSx~S(A b^wE!n2gƟ4cA%0GNs=FFJUD#J +R!*b +xH~P'v`sH<ċ䑡&:x j^gwSm#&3 %4 ]=w033T!}IrM y" My)(ff9%/ܷ g1i$L-#**2WmCWLJ-t^莩ԫ5KVr+ -xG{Y髒3ug7BR:-qtzf{b3{ ,bj#{ =$d;r#'DT짃Q ܴ:3CasoчON_*ʯcA( L4}MgГЉ2h,B.h=zED:&sehKYZx7ɏAfw5y@f>,x{Wtիi-9CF,gsF C܈KFB;-c +S!B7-,tbQza i֎8]m?{hGvkX#Fjꦑ[3vIoܪ Ot~ewt洷q+-z״Fdž<\6ezvKё[/ WIvu;+DE}My0]JO5ja嵘iEv-dڳ޹\䏂6ױvH7YYjgda%؏֧j:B< Ŋ9W#df[WQA,KyyO,/tegJ0="h0zU;VҥN].m=R588fL蝸ɿesuYUpbc +Db^g"`CI?YA[7ģ%n#wt6EXAJ5d~omoו9Xu.ZI5Q/A;]W϶ 4r*7R^\k @fiP~xBmu4ádPZQAeė;W\6^Iv"?iVR Gdz}Nm)pϪ]hKVp bDO[0Yc6lΡ( !k}ʣ + {]QT~MXhޯ!4T +rj>+Άf@ 7unhKwqDzw 8.#alng l7: וRtsRUBlPLFk?3;Bxy4ȫa\g߱'rB4š0ӗ|c2@'ӮzCy( L +8^EAucZ4<\edk Ynq9SmD DW;W> n=p9˙@jȣ@I/G`}LYv+ j;}FNW砭l%.`n 9PPmns dTP* ]%<f~4TD9 KA9ʋLT^rjKva t嚶&u^/+_iO=q{Q㒹ci(#e +<B# nM]7~;Ӊ_ݛB!jN]p6kL#`vDN zyKzu2Gq12V5xΈt~׹iI/d) a>3lj̞cr]}W"{cr h@](GUD?ꊾ穰xF&zW2-F!z"n\+z@?eЗd&6^:Euk_C.ӛjmk|h^YzMEG4q12Q5xΊ+-l{v;+ç52u?!)[hSXR_N Gr높^ףcf0&T||qT~} >1 ?MVuqb]/~\wgٔÌ~F JC e.b܃i@ +{U`5i쵕lrxz{%|71X勥R_dby +ߪ+l#&}گ높^צcf0#T||Y JSj *ZmWXm +Fa6?KQd + b۳2H7" Zg*A뜗Jld?PIQha~%뱝圍4טq% Dǚ_QSCDTf}_]G$C5L}'ΐI0nxvh}jS$;l$.M Y?YW}.5NPLίZf1P?FT keN3^7v_y-6')#ij`D\.];IJ8F>6ϞWWW`&CUe$?Np[ődlUBSeơb纕Qkփ7>R)nCQdNA6gyrb&( rq\xɿ q3s׆N3V.M8_JGG_0ΐI  1ZKD{vZj@2:I=0>,MtTȓBq`==EIY@W.Opqj*.< `L/[&qzŐrkZǺzv`׺? Ce!$^TdьxYEtLF7,7^ #aҝwiuۢ~NrߎMcwہ%/u/ +c/HK G`q7:!Uq(M# ֱ͋*dKʜepmUKI#idFٕ=?vT+U JXzIi*5)z'gџ^F:Bׇ,"D\5RCQdNA6gyrb&( rq\xɿ q3s7$+/= NPL%,H:i4cTâEA.|u$@.X"ɷںr뻉~d1ϑQb$k?`eVM\t&_u4Nel}Yuyb@j홉h +܉ 7iO1/2x6XŸy" QaqqzKܖ`Fe$TpB4wq[_wQLRdI!C]4>9$$ \a19IqieTyQ/Lcn1T=i$8+{ [ͤ.2:zQ~8)-Dq́ ۾&|-2x/R`Fg$TpB"Y.{?/?4'+"V wAh2%txQ<3!,ML'JiLރGu6l buuW{\m2rgB(1Q8nzchGN59AHQ(eZ?pZMo/l*h 4ofB)Θcp-^N|G <2^= )m{5xC\|z]n}lpU:iEO7z韓 8~2,O9l4ٹd])B6AX )Q+)?QX""Nyy4ȫa\g߱'rB4š0ӗ|cvz$YUt lk21MS&}4XTg;PL-euU[3; 6ZW83Q7^A!x+tN߭w< +٤EUV2#|lG9E}/eG@O} +ΔR{쥢B+,gi:y*+"aGt[#([濪۽ +0C {9`'qV(ԴPCsJfۜVl.!#kc=k_=4{.LR3Vc+`kv6ӊ)PE.Gf΢JVj.Ea|n1S YN ?ځ9'pZl2k5-U7aGQS +\wJV]s dMބ9;{uF޺3[uL;!EvlM»߱OTA7tp!&ga nXU ˔}8cҊ_V{3jnvޡ+I0{(gVu{)Ì@ {! DN@ u2&>x*.Z ;*j|rKAkgXU:7vMSX͑} -+4cm5UQk6@NED,P {A>*dB9/}Ki tբX[aiEȲq,[Ǽy(yæyH[na@ 3#S~a(y7 +|)gp|N5(I@*Z?oHDT`1{oH%)%B<ɘ Zmuu:hR_FVnvU!b=Vn),SE sH8QL]Sx#[?ȔPJpg3x跫q!R_zmo uܡP6[&Fg9sLt2f6E;DH}TB*dJHbtlC'ʒQeUyѶoPba``Ժ~ЉTџ \YS1P;GH~TB*di"c ;B(.Mc cnVO)E&]G9E_&aEX_\rB0NA_]s4iϝp*Y0C@y3XJ$*<H~"i!d;At!wdTly$fH y ɸTvs7Hoq#+X+ (9?b=3MzZM|9#}sj_[lxPqJN+~BHՅV,MO^*~4%>! &mE ۊjD׻ 4=qh@>bocRNHISyGa(tSVLPq>Ċc׈f j[p'nGl2jOz5(&49 oCՁ z㱁sKm$rcbݧLՂT `G6OO^]7w!ǿtAo/"6UՑ$1nV.mJs n_]//P_~LK=$I2 $2H)v&w~t0RTF +'"Wp|Q=w{nK^|Kˍ!٩$ϊȽ^2(.{eqF!'d+#niQr [ X^'GY*ݭŤ%ƙ*B"SViIэCG3T`(HOCM +Mh{??@<;, +L(<UR}vX ԀwE+T6(?Wj`d"B\[^|v$iYjfs#MH,QD!}VC?peF-$f>4JŴK\U UDz[kLe^2ޫ-"ShNW6C^rDcS(}jCӄ[P 'NO{i{Aˍ-3`J]9b!hD!3 +Krv?~NPa O(@> ߚMx, L(=UR} ' + G[L LA/,>GWY4l.)eJ<"V,R5\,?8y(],T.{u{DV;XHDu\Ɂ^mZ՞-A + 5sαY2rMLhY׷aJ4FgHTF8@PklU>Z8eK!h)06#=yb)K<+逹h8-0VY;Ua7EE wxv`)jh- LVq&NDь~J~x":9Qȕ}M),O-QZ +AdrXT&ǣ- 7(=_kkgƒ/q52sI(u~!vy;o%K> V9?9SE0 6)qn$>Kso?Mol`-X.X@Y@K%~rb<7f<+逽h<-c!éߵ zѲUDJ9\(ZB\r'uW6N-A + 5s\ \.Z>ҤpOp94OspIwZNgV3{VJ N DU}.Œya6ݔVA_34}Qv1樑Ahχ:Vh/ նr8TB@ӯKpIΛ=-]oCq<%0w/$UTLp'}]`yE@&6n'A2(yKEknSۧb^n~*h%DW{5#~nKokw9޻̘j@QѦquȳ +Y'l0a,!P8./Or%BǯfRXvV<X!oH2r-TMv +{$kg<):Gb YRBkkȅ~V,z#xyt!4}]TΛ=&]fHq<%Kel KcY#g.Ut\&I5`> :p$(yKFkmSۧb^n~*wV dv SK}ǥGzR[# X5 !䔳xLQBV[mXQJqE$^3TONxVr:z,g?mGċe܌WG}.ha;CqQ@ 40kS-e&R}\_ʯ(j@`ۏ@g +ȉQ7'amb-E) jH?4bL!Vnz\=Jl(l6am3r:zކH؄GF<KupoJ+HC;E=wr!C yGQmV2cp]vhUVtJ"5|&G䆧 :! ո(2>Ymڀf ?7jksUC|Uz]F<+扲g3-"|^L -[j|!`VR/F2Hh-L SSFHg﷯}8u ^=hor=stá'ّY1ا%iYZ8n٤X WIl8D} 'di,YG+dQ!3Ilg3H.g,or!RR.Vlb= Y0xD8`K{KZ6e {HJ)]߃^Z) kD=aΛ=%]gKq<%(q!lqԧ|),GEw{#"oڲ9Nu '$1 fM"e \tpak5OŤV+PF4yj:*J}ΫD -]TXo>`vUR +{zݹqa%N?_FײD_|զM31r%ڜNk"*/_^{fv]?$դ:PQ6d2Ao*|}U:H - 'n>5>Y[ h lŋ [?Z tTV}=*Co36a#ꤘ#k_)|A)Ě bm1r9К yQv=d7BaT8{{g]d^W}up(oR0RM|7x啄5DnkMv3ײD_|ЦM31r*`GyLgi̹Xۈ oU\>Z'Jl w +OKN|ƒ^(e5Zj0@Y`H%,=4 Y >- XO}D >Z^mc>?{]?2}3>Q2_)dO#m<åD&9Ca\rk53ƿKf2\llԧ1SidҎe4@Vca7<lꁹ +Ø^3%qɬ6҃4XS8lGɼ縂gsJH`((HI?z$HO[i,l">%AV!^5…XѨg.usuje8nBp"@0h+H2cS Ҵ#1"{͜ kpiΎ}0>Q2_)d;"e2ReO|u7[$cuL? rUMkU29QRLE-=Wg%D%;tjvFz03mwT$;BFd$"WQ{ m'p_Tns[BĽ$adDm+|4 &?nMёOK%suGe4-VK5Ț|l&[x-ȏ=i'L\X<.Y1,q>Rӵh$,G?')[(xmoיt9Pa<7֧ ]2r9egyMF1q;f.O6q?;$5Q_XEuP\{R$hnR3,w+GoQ<*wnr`SEǨ:}eN _ͼ^Ϻ 1*G9w@e*^^ˆvذmʒ^$%&0_Ùd%\|$\N pxI'0m =s=(?\z[&=R-YvȰB͏ ɠH'RmZ%a1o}+HUa:݃]ya9uQ߻|5p^sorƫiQE u<7( +.&mT#aeƄlW< }&5ȵ<F-$ۘ^) rAQg!r#d/TpH}pϤrh\pK4x.;bV1(oJ`aHr{姡( 2Oy2O iq NY *IykʒUˢ2dGPG +uOlJiN$ $w$tΦzf\n6VƟhTVf ]NҽwڮU5Vi몒/V%P%bB7%5xf6‹t/ϷSxk\ ^&;xDpE";B7ECa6|5ZD3ovjȬ +۸n!\ x.h30E<6BG۟qrPD圶ʨ; XJ۝ZL}s4,(oU>n{i$eCO8;ܠ> WJX%)){F8KpiO&2|WyΙBY?n^NZQ ++4v̢h%|+v:рZJNEhlFy$TWxP?t̎#1cQb8 Wlnl41U9K eD +u: +VOhxpt NQґ Uxq]#"F;%_N(|vQ.!m e׋w PcOU;Hk_\!`cr;AmG\Jj264uƣ: 2lcƸ N\d:MF.JmMqתqSSLa"F88>.X7TNti%Y7tHF&JN (yM{UѾXyOay &bi~o3 <B$!(gPr:H N^ͦ|X]L싲d !5M8J;0#dl7})9:oF3 +2x]gś"__+_0BlX 6K}fmj:񋳘Ϳ3.KE/jH;=NɍLqZjkc9R>kxt:xr|q?7yFw3N3 [P*IRI,LS'JkZP;tf6(v hm&G=Niy*L(XJE>k 2OnA4ai!F,2p'wE޶Ki:ȇ`?t"pY!OPC5.k%,,R86E4#O4Dp5ktu@=kJ +i6رHYH(_CAtEn#lG%Q"I$dt= O0H3 W}gy +,QsH`{ݣBK/ k-v?WW 6l bwrP{2cIwf+s Ƕ*; '@끢E}Ձ6Ckӄ/N# TN%|Q.!m e׋&oDhGp!(d^dh%5N`/@5U0Zfq̡#\YAe)ѨbulS@Bzoc`1)AuhRwtr'͎ud$C; [N%|Q.!m e׋&oDhGp!(U_64ݗ_ǻ$N-ۧt22ZruH_W|p'pV3w&-p+TڿG/ E!eĺb0۔hk"`W= +'ZyQ2EЄRj3`Xʳ$1'mk@w[7;L"`!8^fDJ+~iZxV^pYIH10ʝq į,njy {?+xQT:`,b1(-.l04ډFL7b +j#Av5 +X:'0FZ…`+;T-F`Ҭ!EUrhz[4?O7b|e䑚 + Ӭ+bvz5(>c| b&hA~ȀOFzeJ'*{apU#JD"#Jw0lEVTP͕n#CIP[ 9O7 s%} `PZz5=)ܤX !z +f>}I/B)ek1T>>} Ѡs2#(in]|\g %xNQ~j~>C\-t]MLTF3k?e&*ttt1mQ^N~H3~Y5w +Dm9e[SO5K{@UU>|seUK[Cc4+z{xpؼJ䨑}y\=}P` ztYIihw/[ױm[@sO1O/I7y&H-.[b'F0\uk$hHz5ڝz%>ƫ,kdLF`oEBbŎfvŇ'$y:+j)-d2P`:K ʁS +lVJ@>᨞ AAD|RmڵKoA ӽصVo{C65:ܞS|Um`SFUHi 2Mk,OrSyވ&ݰk"^ojy,= UÀpSYɶCŏ6eV 0wZ Q3zymlO+Mb$M?n j{|r +WS2ߔ>S/Qp\ 1@/춱wDI[߅ŢHJ)C_Nѣ&^; 9eKL0}5ghM4|JSOՉmѲ$h2E_MŽyS*sQd ,9^RQ ܜR!&O6l bw{Y{&cf*9OLUjP?)K_nV~)&ކ 6G~29代nw2 pj ]-{fmGA] 3鋻?಺J Z t8\K~ %>ݰk"^ojy,= UÀpSYɶCŏ6eV 0wZ Q3zymlO+Mb$M?n j{|r +WS2ߔ>S/Qp\ 1@/춱wDI[߅ŢHJ)C_Nѣ&^; 9eKL0}5ghM4|JSOՉmͣ>u‡_,bzhjP}8ΚA R=\Lruy+쏐@2b;\T@ѥWS+8v{[7]>! < }+~9JO,y5@p,3|֊Q\eʊ>Wp4K$a xU̵:; pT0(ԼT5G>" 7Y<{B*59r=FvO/'4tE UïSgɶCŏ6eV 0wZyK +?9 aA{9%'{hi<~b홴?n j{|r +WS2ߔ>S/Qp\ 1@/춱wDI[߅ŢHJ)C_Nѣ&^; 9e~Y,(ikyl)BW]_mH bY(8Ht*G4Sh'?߾c#~T+ &@ yί@ +tkO.$blB%@?x ZގOf> З0ؕFkL]:tO[`=?i +mPdӑJkvhc :{7IՑǸ6?WR#OpE"ҢX 3*ixpl}f#kjt{C<țN;NFX.W/B\%jBzqתqSS^Z֜,gІSKKk1kFP@wEk (yM{UѾXyOԥăj?w(uct*{"*g# n"^m4+ N^ͦ|X]LmAmeQlEq#5GodS+fSuA3 UtaتtFjCB\N9FD {]YCGHF/ ԲK=HAHOqJ`-37PUF'=6ž&@6iq{?9lŧNrӚn2nk1M~al/kaTPCLzFp_]@|ي4 i9l<[9)(s=}>mXĎ%1)~n3Qux|pN.MGdK@\E EWCkm%DY|/toicY(Z Dtq};Ҳ*` 1N)2_[  zxTiD!E";k@}N*nK >3ޏf2I +#" u'27 uEC U:.۟qrPD圶8۰ 9,8+{ࣖfR +0"S[ \ؼwBY~8;ܠ> WJX%)){F8Kp@:2c\kT +^Kؕ8lw9W/nBB4&G6|jD9 nb\; >ZغPI1eA3]4?Αs1AV~Wp4K$a xcqTR :#hsx,X\~ѧe pHIOJ9.))Szni\Udl8+ +u#\YAe)ѨbulS@Bz34T 0:~~o*ܑDˠ)t._BݎCSWB} +R yҟ`Q:n7ђ#e&WѸMt@ gRVm1Us~KO^@FLu /(Bϸ%*> +nup=J!ẼFzn;sҴ,HAN.D#2JRohtb%`ZcGhM9>P¾06岖xV$b^OJN o`7C'bw (v5e*HY}!!բyω +)@A:?&m.K1)-Z :CIʂzӆ5kjviguj d:Y5c+AΖ^F#xChJn +i ;#:~х9+5]`$=Ga3qd9hfWjYKH4̘EuFIz85 '?hAo5Tp6t#jh2&F,ꢱz +=.&պIZ!kۊ9Tȳ}ɩݹ#j" +0#qWC nZzjnv)`ޥ\`dƴ\~ خv\LZ^v"P9:]Z؍ O?ګ` !X b"”x8|ퟗ'謊6 e+)x>=eBEC퇸DAF^hh2j[!S{YCwՓ{9m L{=eث6pxG w #]ZU=ֽph+FK$JDxJ hlKrw#C` R䌘 JdRThmFkfiB~(pX wNOąLJQkP$[29>P¾06岖xp0_\7MZDR2vd։Iy j GKr Y}!!q-_A__A3K թ:n -x&{YH+`͂EoBڑw㣊҆†5W Ef.h6Z>j+E78^w"QtMLݽ0DB!Pm9u,|\3SfF"eSџ99TWxP?;卙Hł#No.%]V5 eES4'Gb4(1 ;RkvA3vb,A]#OdZZFE;6 tbuB~fwn%Ru>$Zz~aB< OblA -X9GBᢡ&=_ܰ8+:M=#V̗TliciR Ʌ2eW `#JŬ $_NbUQ9%E!1mo}duBm03a!8Oػ^I]D dO|~l$Vn܅;Yk7+RDl uUP 3qş*[^'mv%c(z]k)(GtigV[H!d΁D2p$07^GֿHwA 9uzafdq)<[F&G1égFxCݟUtShifO }7UKSHGz}SX:1ԐtOH``𲹝/)ٺ P5 #znAIA$Q.Ot}7vFZ5%DHCKƣ&d `?mce98%<[@&G1égFxC֞Ybl7J#.";E:7+勇WǏc\߮jbjͪ+yǮdE^Cbnő64~1DHCi'ݣpĀG+%zu};2׎{1Nl%7+zHϔ٩wm= + 1&=M}ZAYj13o 1n Sh¤t:*Dp{תN˓r`"pPTY,b<} +ݶiCmJ׻f(ujoAf _oCn@{db0}曠8c57E-(yjԭxi5"j(nz?wh(_.7Kn9}cY^z@V}pk7asVVoNi5x '!2~Su}jáuScSu=>1.#0GJQvf_WD\*4y:櫜.c`&<6 A.'yp§$ZniqaF)G}GdY>@1:Wʀ$s$ רZ9̇O]+:-.gH/԰:R i o3 2aws_El'h3T +*t܀QmKuW&fu6sl}4UrNYT)] Al[V1i δzy֥ )EblqD%J q:K~X3H)i﷎Y͙QP[I%؂[z] +'?0Z_o0$KiV1|e樐[ \' H{GJsks=hi.@"F=Xɉ};S6M^zs̰]ԊrkK;MA@{ٖ;3Z4CovD M1qp͡ec9õ&l+x +QIbQG:|Q8x#FSL 1&=M}ZYF &">bcДDZ(`N%#QBt&):?%]JBFvjna6|5ZD=HX )S⣸ǗvmfF!MLÏHk))m̒2R:ڶʨ; XJ۝sѥQzfYoߔYҳRJ͡/tR/dJo-JYm{dE{F8KpVE5T]l12<&ϲYsءN22MR͙(\Wv9HYV緎Qܬ{ꯆ!5a[Ma5L7 +0X1خN ;y#=PtR 2 x"X1ݲl@pp>[ip_T`Âhfrfsfoiȴ?M۷+6Z ;Tb[򫲱5ieL4 "~AO2 >,8%TY4lQ97 K5ɣ.?}$boY2 3\ЅsԠQ"riɰ})8]w=ѽ7 -!߃䘖l@m\RP4)Qd$8$B~fwnes>L: r*. q̔DAd`H|.v_8NQXl 嗭ўԚ\oh}?-6"yfJ}We5r2PzW>S\IuFy _#wKcv +#o;Yx/wlFE_S~ck.ź8>O^0"Dv8aP`X8M5hlrSˈVk\snKjﱛjo6Ț{GنB\T{c|v W|5ۂ i({~DBg&l۾^N}J1XMmQl*M4Xv}"IgiWQ!A}kynB@fvhc :{7IՑ `%kܧjJb@Hn/=uZDe- +S6AI.Z&[lܴoo?GRՁ/OtEϮ68W<9Z(1L9vmLNQCOvmmr/Hxˆ(qtOj]_)A4ai!MftI,hEo\A;[9ƙ@dkb.^]ITB%:3b!gVJ!Jk%,,R86tw -`sP[&5^UUL{C@VaP|C[>,bTg 9Y|N̚%hĩ~h-LlhXuɬ0TbQNܬ{ +k8-t R:J/G #(e(04Rԭ%D$;ڮ94nW7LmvyՔgj#/3,D>{E]^5i5=\~h +Ƕa:,n#`g*-nͦ~jM#Gk7GbḘ{@lBhOOD9Tgmt-<&ܠqptH sa` 8>(A'{u^m&"\֩y_ڸF2ICnᒎIqMRo]R/S*jPA݅ႊqC102vhEv%=@ +~뢠JFTyuV8>>? JG/} bԮhw ތvqՠǾv{(fI 2ʘ0>" +]_CHDy2k8'31OW[$GP s8;e6otg#4В_=4bpn/ 5Bу!ʁS٫1+@zfa!9|\Ƿ!n>3a} M*ifW:!nG#ew!u/j3Ÿjo3'ymXKbOG^E +fůɯ?3w'YPĬ?e{e'T6\f ccMaVA|N+ +Ǫ**bIy@;e,聱A;LvUQgCo>9  1&=M}Z}yct4,L(9u9!d4M({G#ew" &"Ry/%R߸ ()$ 0aAD0/jbXG/7qRL>1:q[b$68ZpnN&}P&ŇklfZUة{a$ 3da"Cdgռ5&A΄ ̣Lwٽ[,Tw&.TN GLs߷`sڎr@&jJGNcz1 ߃8?3ۤF\# +ac/NG::aP+LN)Z%+4/- #9R뺪))1 J!-йDkH5( 17b]uCG߽;Sf^ݬ_,Mq?Y1( 3%)}^pr^ҙ'_iXOS uEC U:.۟qrPD圶[F%SHH}WOS[%%-œwBY~8;ܠ> WJX%)){F8Kp@xE~P>8h[tj\LcL+HJmV,:Mjf~.FeYw!42 t &WHieMVg¡g]x"pjf..D +' +S7y +{u+-Ԉ5UsN%cmb!W/ SFr,Zf]C`NJ00:/zc=Rf2O!P%6~I=d-/l +S_BFm _,؅r# [Yq}/6EюTWIº]rRq)fdӜ怣 j۔Re1O{E6qt)ԝ/첶}!A Al +ֿ՘]R3 bN SZ=)>͋q 9ǬYx/m8%=6eiڑ(l" k,C<eͧ8 F,rMX&=5hlrJ +k.jTnVLz +!k bx!,-NlDq +Ѵb.%#o@bW1by~kӺ8ĻmJ(_cJ F19cޯ/B99TٻwظMAPT9O_6z!g +Hr|a +weNz%=@ +~뢠J_&u3LzbtY|>;'< о*aXZgi'-wՍTIx9w8~~ϴ؇[<>eƾ&6{7B@{zKM F 9\z +bB£ #YMQB[}K$JqnD7e擐sn8Wb}>  I"v<׈GV>tE-TOvM{SژV/jKO|>;'œIS ,|/Ah[Zi#?x缞s.z!R9Tlh QT`2nNS/SbMQXwyȏƕOxʄ׬'F`J L !┓/Hm%g.oڊ3nWԾGᘮl+)b-RvJlv,:zqQ*~>|}\9ieL]G1#UCL3D>N\Vlg}ޙ(x/zS~םYmͼz5 3*'ߒ2X?gXj[ guXLfv u G #VU:ߨ! 'DT6jeU$b@%6(Jsb\_ /۵?kR,ulڍ,,0&e[xRI;JUgvz2lyiiKovhc 2j@Fc!yyk7FAp! kZ}::ў&Wcơ\Ïer~P"eы3Je_ yNT6X"lm]2b3(3 i@xkZK:#}&j a8(tB w4%cAQ/6E#]UmiQ@d R9%B8K~aڢE.@=r,rBFiziǹX*[>䛽UϖrP8Sܗk„A֊/?uˁ1d;lԐ$Kmt'F|X +B&-)@i$n0D 25ܫ2>IrM_a+mZ=2jvʣoI&UcinLx%3R]Oo"/SMovhc 2j@Fcɡ +(o&%踱Ѥ~.?fR4x4)۾TK!,!^j~6ҡÈ39 1&3{X..iJ8.a,z>K&<6 A.'yp§$ZniW}8GÉӞdms!C!Py$ &\Uc@ +~YSu +ʼnqhO[3<%7Jp3~=Ǜ/}lTa5 P?cMeFu݃nQT +`ɯL}m)(L^tA7zaɆ|XnJu̗ǘ ڸCnl!ŘgP:Wkq8Fm?xLg;M&#nЕY2a  1&=M}Z`Gą‹1 ?<_.)^G޵9Ħk7cvƵtrzcE`CwZG偳K +j\e*OT0;F2ݥV2H% L僵Jf/^'rnNƪ0g$ x|P%@N8 i57FeE׸jU}Gb ׮Z?M,t XcѳEwb9G4=^ܕa/V@%3[0Sz^x\(uuMKZ4b2c H9AmAU$+<MxP?$tVaf᨞ AAD|RmڵKo7C?ڎ_PҁwJboyѳtZ:)]WL;ډn9t'gw.![BD= +Nhȉ#˵^6l bzvT{ӄ+>9vCc+rx::II/NOŲpobTp<4]޺eQjCCE%.&:2K$&zxciD'5۾魔uٺIVic9/$vw-#_3셬>Qƿ;*-o}~ќI[ђFUeB(wTƥ ΡT= |3^ͦ|X]LmAmeQlEb!\,>1}Rd]A0!Qi(\(8qU|3) DRgu;tZ폎.r>oyBFN*fDo#;8d8ڟ#l&WѸMt@ gRt(Akwie&7'F%ttN/Ld A(~Gx6|GGR'f#IiZ+ۏbL$gοJj3cҼg\?&[}X̾כA7ⵔnpWyҘzւ\%ς֦vY \:ra3>!< J8] .H~tfRϻ@b߇vrW~h'7n5Av 64V=rIʼFj{3Geڳ0ǻjWP!)+h0+XIiOh*nas9Rn3B<ԊGro4edlq+7OyaO|=UNKVn}qNߍͬ$E16Jգe_ kNm  1&=M}Ztlv.KR38,1fR;HH9e5sB_>O;ToUGmx*:MQCJϴ؇tE0$V`-4ͱG:OmftXWЊ#Hym~GQMbɯ@!\)b1 KY׬BS0BGېK*ޤ!.Z_L*(~*Ӭv*oތ +IZc3a{R3^$tFkvhc 0*P[ELߵVf{0Z>Bn[b ml +ĔjPdL.ɲl^,z)wg@q .MGdK@\K78\h/S" 7h-J.*pGrhkk4jteyNj:י݇A8W<9Z(1˧g //h{_k+}ܑ.Pew;9!_)A4ai!F,2p'wEplnN桑\vJ~gմ}'5#Y!r{EXJk%,,R86E4#O4Dp5ktu=uBcïŝ@Fl=ÞҐ+T nfh8+iһTWWv2|6N{Ǯ/jJ$_0WOijo5fWjYKWPzƠWI6~s%3(q庎TcvUiaoɘXU'h>3 ;l&LsrN[X*; +*q'n7B~20代nw2 pj ]-{PF i ;;r+)ݼx3/)sd.ArJ4g67s]cLe틤u]dΙ_ pbG^ZDG*q=d@5U0Zfq̡#\8'b'8ayȂMI 'Dd9U+Dx +OPkqۛeG B*UdoC*xvfn}wefrgk:> +ji nզN@ԝP9G4={~ 1s"XYSq<\jh4G/VW+!J^?1m^oo)wn2?^{/9I3bj?\+;Ek2dZGu>+ bdh῱K@ +WmpC%D9t^)s]pKCwՓ{9m*S=гBPݎ_h?[7gqB$X*k7+hT_}BG#yd00# W,e?L&gjGbri˳/ݼN\rTz&lh^ +$ KdcOP%@N8 i57FeE׸j,n. o73GDƗI||y@hPH9G4=^ܕa/V$aZ 74ܟ1HVE }s3N<^{C.}XW*w ̀y'߈s4߽E1-Ue$8$B~fwn5G.~$>7QE5pA0ݱ7~G30p/97}\ +ѪGP.0GA}>+/I7y&H(ej9J` +bSjj=|h 9qiQ>,kdLF`oEBbŎf0&5Fb vӛmn"^=' $`4%9)!8lJ@>᨞ AAD|RmڵKowaU%sV?`#R=$i+:mSuYdfȰ^3\ԣnMQA6\ +*e(9N] 8.%hθxykfsPVP;$> ؗ%eR 3RsfF+"oqmf(@ 4qJ9M(*VN$|Q.!m e׋)tccBxYE5("0;oqf917AL\N7sh* !!"Fq A5_#1vI,x '!2~Su}jÌ~T[CxJ]墜N<5ϗŵ +dd|_NW:#W|swlͤ.͊V##&飺f ,o$ >m N9|ߖZeuc=MۗQ,@w +2? <"(l;%o]Z!8/Dv:^gHO?(1ޚ dC={w$ww~ikjd%dER1AtT1`pPƩm<:47:Pln7`d6l brsQ{׵ilc)I ,gWK̒ aB5cd ."Ĥ'ŌbUbW˜$M7mҙF3)pNb1^3܈G+O}%J m(uCDt޵Wz> ؎.zUFGmDbUVP2O  +Z}~6gpnPT VADFR>JLm]j7RhOl$O)?/q+Kr;Aa}WPW| v0 !`^ +1lgF +Uń-!96߁򪭘`6(:Z҉?6`ފ5*LFu V.-Ko;-+k̕hLsjLV92O <3Edg#pV~ܶPͽezn"m xЗBE`nR6n;y)DGN_^T)6?zIE55 =ݺ#89+ +Y%%R&53>ʎkfIVM z +e-n`T-k~Z3V2|f b$~1 3cй'U 3ґ#qNI:Pz`UVi$ +EM˭5P+:MAN#*ᗧTliciR Ʌ2eW `# 4ȟ@3=ַ:M_ +Nz[@<}PduBm03a!8L*U&e y{w$ffja[>&++[$ Ӻ&[CљGRDl uUP 3qş*[^'mv%?wS2de!ڳ[99NٜSV@> N#m-^1M )?U eګ0&-N|Acpp.L@WAG{SPA\n]|~c!F>Stz9 +Gg 6nwwCc8٬&٤CKc$:w)DܘJxFfvmx$5ׂ b x!IB +#RýtqYOo"f8M>G;\; Ϩ6eUB Iu?`&Qq7-9W@R8^qx.٩,m"Y5+yK6H\ųjUqYϱ6rnCC1e[ f?٠]brӺl#qtOj]_)A4ai!,oW-T"ׄ@kc/)3kb."#5*>[D3b!gVJ!Jk%,,R86v$z*X )Njռ0l-IrC<k&G+!1ZG l+ Wxي=ߦYԲF!%9F +K*!yNU;qɬD51Bj99dTWxP?'")z}ܾI)ʽ$:$W*~HqQw-[FPB7QvE둔ye}8ѧC8ЖnԼC,ס);z`jEgM%+x^Ͱ(yjҜLlش~R 9(6"ye2av<3Pƚ)'xPy۰/Jhy҂1:j%_և<r[z)7v.2V8/鏁B_D~Gv޲Qmp7b.V !V[,%X`m׾' dMZ%uLyQm^-u\vrL:[n~S"vS/jbXG/7qRHW^{U2',et8ĺHC5lA"ݧfZUة{a$ 3da]ŵY܌R^Bu jbڀ8;w.TN GLs߷`sڎr@&j`bYwdd]Ni +/Ẋ'IAdY2 nt)ᒨui=lԐ$Km9s/>>.9c(nZhOgY+re`5OO`URHsx O(|xq%^ e\E`Li_jԧe?GɍLqZjV䅣G!s̱|LSqƪ2>/xWPp\T%3b^|v#_)]#k+צ39Wh'Su}jáuScSu=>1&3{X..iVeNj# + l#>f;ZCYZ2Qv&<6 A.'yp§$Zni|zqT};vUsjxYI(wV1yVyzfG~gٌ,~嶛iK?2aKX:KYxu"~{&NC~ؑ}znһ ;L&Q):cПxrdH2nšpL?c tB&qeFnt/Bo.~Fb-^+_fMRL`]bҟ9J?:0۽kȓq0P1.nͪ7%R'^.O/\X &[FLDg2St`9g^3h('k];/*Qk`ρPLbŠ>Wp4K$a xuUka< f@ C͡"\-Jr&i$m~P[+QGR˰v;gWL[I0=pl{K PȔa`6NVƓ؊C"|<\V뮌_Jp_wZqtOj]_F^JxAtX 附W*f"-ʓb5wTS4jk( U"0%D3b!gVJ!Jk%{4c0b;?jl2,50&9Tqa)| 9e!k\"Yx @n~H!wq/3Omzo(P;}wr""ok~EaM٘>VFlNoķl;!be9˱ε +f@d dۅp"/* +hξ^NxI2[h->K]k񖳍^9s_0Ds@]f+wv`@t%=@ +~뢠Jh`n[Su4s^oiƓ5Uurm_G BJuX7`P[ w95ۑ{mh10K-p(/ɖ$Ъ'PP.)FX9Ym{c$+w}>kP$[29>P¾06岖x=z؃k2SP0SFaQW +/fDjKr Y}!!բyω +)@gT]oGl{bXitxwݸ4$TN/ZOR&-aN^]7{ĽͅӲ j7sV}tǺ_k:c}t yAI /@-Iß38RZz`| =^>5W{ Eab` +T- {Iz*[`W&3# \sǾ9<]j6Ә\i2''OJFN%5 ؉{ﴳ ub3DX7sF֒埄@($ldg#?gQFAwPS"hS|SDwՓ{9mp7 +rQ`\,).ˑӧ +yn;k?Afgg#WBe/K,+KzK.lOE?" #-YGkd:xW.5_3U('C".+v}9}?w7d.U凋% #kb.^]p*%k}3b!gVJ!Jk%,,R86C՘oj&Xg8&@ {2eiTk&G+!1ZG l+t\bs{dYxIh=t(i+12B~8J ~e c,G>x%|1e@`N3k72G BP381` m)$hz0e a~ шI 76-*Y,7J[w!Wb~z0򙶌>p#"mX}y[]k:i⋭<#w!2cO^J\4S"n5XDк)+3JgTi_fUMT:s4_][W^v(m?Aljb~#{~=*:6LlJc~xhBr%=@ +~뢠JBudEJ 3!+gChdȅ[rLƫ,kdLF`oEBbŎf,zOJ%fW me f$g .S +lVJ@>᨞ AAD|RmڵKoS,xRf!_u` +X7^43֋ ީ +{/-x:9>@[~k+' pՐ$Km3ZA"N OCY{E%oƼX!ahQ=~iwA Me񈡏ON%7*9rV|hFy %G?)k0!.n<^h2O!P%6~I=d-/l Pл5yTa$l +$K Yc"p42ń[aGћE^lUXaկoe1O{E6"yfJ}Wv{hx q& +фRз_{ +jGs9[ۆC3C͋q 9ǬYx/wlFE_SJ mJ7a|Z2Bov̑wmtJ.MX&=5hlrnMIgO#@f: 6(,*:aUd'zWy`SIcӬ: |H7nR-69ax%DM4/ZV-zES9L|PJTr!U4%B&R 6EHwT!`2Nm->u0'lNj Xe0g}̸S:bt'4 ~ak2uQ~({?\( +6BSg8ado< +PS03dyR;iODèO.QCD˂\%jBz׼k)@ zBS!xt梮*BxV$b^OJN (yM{Ri:ń/yN,’dշT +)@pq :H N^,_ + +h*AQ +\u@V.fqfNsDclI`y, +gM +õ:UAaZhqowo/| 4\^' Hw p^o鬾+1z{(B| EpyS{A5P^սKly6Iޏ\,`Y^p{C?'3`D@7" + 1&=M}Z7*8:]Ȇsp5~kKBT~m姳8x&P8eӀX2@ +!fg^:7NA2K<; sf S n_evLc^Q BjpWW +r+VI5u%_Hҏ| +=iRUI6<2;)>f'vP>/(u a#Kb_*2aP@YatJv,6 ށ`oK irJTh+z ;+xӳT&0faud J[Wj^#i%BthEb Րb[zEJ,]ch۹:B4^KwgoZ~s ޮ% =OU)f67%ðWmO>ͷ?MY]Upi` hnju.W$-E5]nLٸ`nN.Aׂn.@"'\Y xuQ.!m e׋k ~tO:PM!S"ڪ9 &U>HHkq:_ɓ⭪47BF=<)1Wyyf!. ǎt"YI`/@5U0Zfq̡#\UgWx7cӆv k5 +V}d9U+Dx +OP%@N8 i5܁pbI/%E AonզN@ԝP9G4=${<]sS'zk^kVKT8lEMK!C*f5|7T2ukи$7ਫ% w۴53L4/7R_f6SóFPEf`LUz&N\,-EE;i8E1lMkԵզx:/Sg*8$B~fwn㸍p;]3:ڦdMgVjv^}n]D{,f ` + +>I{3531O/I7y&Hr + gFٲw'SCRthGT=@=fBƫ,kdLF`oEBbŎfASԆ .,KPGX`J  3@O\j] +>у!ʁS +lVJ@>᨞ AAD|&ƻWzwEtD P7q ѥ5X@'T}5'Љ!'$5,cGpnUt&VybMQK99k!=w/ }0r7ENQ3\g 9iP}ў!Bx$$[f"9mGX;`ŬUƮ ,$;"-' 2[8-@t A`Rs <5+HF`Za]Z˥5: -w(w*&]![O@ɉt_Xm[DV6Wequ^LM2#m0Tn<^h2O!P%6~I=d-/l "6)*`1W{;ˑocKߊ$eGM5'Xhܼtu%/ + )ߊ3vz@hoaP1"hw^܎gzO/zxp}쑏N!= +Sn??yTjxz+geA :XИ +] zA.mvh5\!kᯚ~e;a5kDI7C'LZK:9Ajԇ-QG ⿘x|A$+O3` ˥] s O浞Hp&Ca]4W@ۡmW{(=$Ćo$iD/<~%cwS/y5K`o.4$;uʎDNU4{-?8Z?pj[=7 g)G}GdY)E2# =^b]ҕ=Gx]ҨTRF>-:췍w,(- i o3 2a2Q(t#,T$32!^f|^B + 1Q7dPG KӦa+d́iP/^DzFLzܮɯq:h\{)?.J*$å +NXLy(k" Hc$[]ZsqfZݜqX7H[' =MY4L`m$״%٤CKc$:w)DYS|VY`Lfp _lM O!Qq2Nﱢ%$"8J ĞpǧԊ $KSM'۪unUG4W,<xz^#Z~8Yaͨ&;*iN զl#<g.]7iO Ђ{,"8,&b άy.7Y&a!R1ȺQ4MIGF}KoJ$Ti쑡6kO'7-3~>׻qL5Ic+.cໄa4$11T 2{1T 좳cm Դ.i%_z,%v#ba3͍]hd*cWsiùB=1DaFmSЄg{cQ1PWĩ+sjaws(Bj' +-,$ $l2 .1L\2/Fd[ P0La: IuCRP;MxdY!jpCVR*Ԏb5;+ +~E@qzA|[6_$%iCGhu#9HE&Ws|-M.OAoElʼNDZFfw:Lኒw4H.(t܌b-UA"5aJ^Qw5.OjUteԫ% p`o9`c/ `o:\ɾ +>t8PGL'4>FWf5/0Eynw"Sy WJX%)){F8KpVE5T]l1º$EQ=WlGiŨ6$tb9F,^PpvhJ2?1apz̮Fj&x)i.,}%VxI:>6l burP{,ks“л\Ib qJ @+J8yE+e̤b&k$״%٤CKc$:w)D6ah-^WHxl#}Q°= g۵b)-BQ3'Nہĕ6eV 0wZqtOj]_;jM^Ǘ z:Œ7ɣ j{|rjk( U"0%D3~o!f0첅/KRʳʄfd1QG=Mj̨&^; 9eF=~(,x@g7O U gNcFit|6TDz XH}G/0lLDY^ưX@:~6l busQ{3iM|B,{SaGTO:dL-̱rԣuriOhG5@ +`<^h2O!P%6~I=d-/l 9]ht8pj4h+77ˑpcA4kOi}rf+=z +^L( +Y,Yϱ68W<9Z(1ZQTRRDSݴoߖVeqmVz)A4ai!F,2p'wEyˠ &Yi@wh{LHY!Ox'Jk%,,R86E4#O4Dp5ktuf)L#`Po-2<>̎uȄ +vޣQBJc8V14#I& eD:Em>.oyf a +w +Zמ?xD|ņp%YƷp@8vŰx&i?K<&H[bCʼngz7b`O~C(؍&)Hb&?%WVp;rG"rCjvhc :{7IՑ:cTX-]=}hmŸ*`ZuVJK$v`- B(sz^6gοJj3cҼg\? o:#4В_=4TJ®,،L( a%ς֦vY \:rG} N#FۨGݽ6a|vrW~h=\cgcne?Z97hHBN;Ф7cnuZ/LeMÃ7=mYis9ΙKo4#e^cnJl^+t +p>J^]vjo+B H5 4;읷vYl}R$o% ia^ +]jw$ym-ZOː fy%42wH} 6I^}1>C4CM7 Ch_Nl" ?5)Վ3Jя_"Ռ`3ОlqtK9BM᫧XUd{W,<J^]^ɋd{L>_%+XTcԆCH$i|9" +FRl{ + 1&=M}Z7*8:]Ȇsp5~kKBT~\CT|| +X?.,՚!y"BՏ]Hfˇ)gɨdmD3~G?'(؏;M^#̂x?湿t\l_|o{cgCi}9dpZR&~H2sxI:QW +K\܂]Tb9[Nrg8,gaZALQgf`UH7|NHx& S`r+߇vrWL0Y2V%kl75>Xcp]УZx[͍tdw#x881ƪrYUnRN1^MQżx$u'E1Pel%Ih_˜~:@' '.6@3⾞j4қE k , :QtwoXs w28u> .MGdK@\i߄ݢ"Nvf`2qĩ-w6 1)/ DaM%8R@4UvTj'f;˄ɾsD(jCsf S n_evLc^Q B j\x@ccONGr(|']iRUAžCd6<2;3} SqL@Fu P\p95QUVws"q>G-^VZkB ]\Cͦ`h#ZM/4 +O`#ߓp~yTD7U퇜cGύ8Pv(̏/֦2E!dE/h=<9ɘt1V*͐!!x ^Px:o_Ŏ)HnX!L_&x3Bpd_MEJOS!@&]>L%ܩvEg.l|t^׸1` wOtam.PۢhL1]?/ C7f [C$V.n&rr=qk{NH*g'Քܧ}кm;9BѲ.!RȝD@/GqFV5W~0hf[OOioȔwW4FEuP7 + "@|:uG}ٵA1fN~x^~u`?`$R[:bSqOt?r: <K>wPȂ^ո9 m%1 euPEL:酧P8g$oS󐚌kiO\Ӭݵ!F"?t{uuYI5QAuz#7opiG8&Tľo軗Q񡸑p&m[ZYn +9ЉN[N6׉Du pZVfG6QR/4cʼ^F>qp ӗF[SPm42̉ܠOa bwOQWz'&6Y$fbW Hr,.r6'/R㧯w˜UU_C yNT6X"lm]2_Cm&Es xeqN*RvOmtB w4%c{?|-(crX/ISeS1a'l8B^B8K~aڢE.@=r D{/w(\9!T;2xJk.2qpџ +z`" _Y{_+E?`x k&̑䈏y߃'d;SnH8\FRSCFc: Gw&C~KCLİ +Pvsy1|e[h]F t_ohY,/ +ETl{ + 1&=M}ZCfk~9d<{۵0Qz=:;P\*œ+{bf4ShG)`5mTйGX٫o̩nlgɶCŏ6eV O|!^V,3*jqB +4ڑ$p#"ȢLy +Mgku홴?n j{|r VVuYbeS=b A.tحй[GJ)C_Nѣ&^; 9e@dw9tJmuYuoh6]nɇ}b\!H_4,ً|H ZJLzܮɯu 4eyrx(."Q!pTp0|\ʣ`Rs3#K8ׇ AJ 儛rxځ7 _%< Qp `BO1" + 1&=M}Z%ų@ Rz5YT9/sr4aϔǭ@`sVaǯzSJX n.3G[X٫o̩nlgɶCŏ6eV O|!^V,3*jqB +4ڑ$p#"ȢLy +Mgku홴?n j{|r VVuYbeS=b A.tحй[GJ)C_Nѣ&^; 9e椵OESxRDd{\~X0-1H X~(!Zr-)#AHYR +fůɯD+,iU! +nNtUG,ǀ27kz,>hMzyٜ cfo: ="x2bTzz_z{*P]{GIwՓ{9mIuĴ/à V2^j"fys +sGk :c˩(Ɏ%UCڲPWNT6X"lm]2㠪ԫ}JJd/FJ>yJ4^$"Rv|`N_ĭ;B w4%c{?|-(-t_Ef\R{%J5gIkHĂbaBiK~aڢE.@=r:e{GQo{7II s Yhoo} +(vq6S+! +|\W-?3@IJ@叜(-/yQQ;5)IP=wU}E³p} Nfź&6 pb=͙`qbE0zVaGH/!fʼT@)v_&5 ܠOa bw𴧞$ fYCrZPjGͺ63ި~x}ҸJ;|+: UÀ/%rCŏ6eV 0wZ"ΪRxtJr]MSH|ع?n j{|rjk( U"0%D3*©$"oZ.n7?;*?%{#qJ)m\}.XG;\p{29_+Md9~ oEKgz A?q C)tvY>@1:Wʀ$sff3P'{+W0 UV3XG.U9n<(pL]H 2aws_Ee7,f6V&`ع} Z)~bʱ3%Θ(2M}.)n2BϹ+@1PeT\}SΤ/3Iup&:yY d *!ߖ /2U0ըhY%|o.]Bcu9"T\7rT^rA]q.0IɍLqZj N&rvΤ%-yn~shO5h'NZ9U0 E&fЛ5nl!-E~NZ1vI,x '!2~Su}jáuScSu=>1.r N (㔧P'<}0~Ά"=ކ.c`&<6 A.'qĜ8\2>y0|ZOFACuc=MۗQ,@w +~YSu +ʼnqŤWj2FX]3؜l@:Kq {I/Sw7bKl-Fi?'vZ4%27eF^1Q.N[_o}b͙ڽ$-Z902Kcgޏ]\SD:I% +Z°Ary㌪ݯm&ԓFUS^m42̉ܠOa bw +1 (r^1U"m0UF(Ә1o +U8 wEp_q`nP/I7y&H(ej9Jɹڊlk!dZZ<C^`=) +R9YuCM7B whBr%=@ +~뢠JT@3@1활_1M5Eyȵ+7Zb_#.5i _u(m!nDcmvm3?6(1l>tFRPg9*|vȼ|^\?DD۲K^ԨicK:٘,2p'wEϕ +#j GjlY9<.?S@ +CT~kGĜ~F3vJ"E4#O4Dp5ktu+`͂EoBڑ]}deBjDG֖G}]c!eoE5fϊùy kcAQzF<s:{77bqV#~ xH඾Q6P^NrI2^xgg"(..(ɷp2$$*%N/%[ZpGEwՓ{9mcUӲ.eT?Kqg}­hܠ!-{J@@$PU#yd00#$5U0Zfq̡#\YAe)ѨbulS@BzݼN\rTz&hIJJ"BGoo ey[M%@N8 i57FeE׸j,n. o73GDƗI||y@hPH9G4=^ܕa/Vp"NAEl;>O +Lxf]*:qQsy1.s$Kms5 ^?sq} -*b0usm Ν`3E +TUuT#+epWTmģ)T@))'"ur׷&hqhCt)b,Lk H㨙ݡ-l,KxD퐉V, 2LeHYؤR zrG''D#nuW=IrJ\ܵ3E +ZUuT#+|T$&%WkJ[dt+}gKߓ*x\ J=jaKS \Y|u|~K_EXWڊb? ^0SFc4+z$}rNbED13g9ҍ^lfPZ(MAEiEErC\4;}k3y?+afa%cwS/y5K`o!Q4I'*owwfBvAG+f/y1+6eg)G}GdY>@1:Wʀ$s!3CL w.RMX$C5e +UHA- i o3 2aws_EzEz/RIo:6A5!t9bDهXZ +'ݳa/XCUWwcl9ûusE=&GYb^`*\N7"V  Yle2_z=K ZގNj> ћ|l@ci͠⪡& ~9%1>ht) \j vD }Cjvhc :{7IՑeޏ\ xLB}sB+A>),PK·̮l / ,tAVDFȈ~!t@AORO/I7y&H(ej9J+)}``\%闓 Zg2!07>ƫ,kdLF`oEBbŎfF)1yQu,OrټT] +Is˂⚭S +lVJ@>᨞ AAD|RmڵKoJ2D!oJQŭ:HW~A*s,å&/fVxv: Lzܮɯb9нO䝑6\/Y,wӏA]_!ɦ+1*YFq,r=hȒCMh]zP` K1A;0=e_&wm`c2,&U4P i$״%٤CKc$:w)D(ԇa?7VUpr,#A_жz#„tWWIYjBzqתqSS^Z֜,g8vlc:Pbz>ΡT= |3^ͦ|X]LmAmeQlEnFa\./8,./ޟ*6~U32iU C=~oLi^ApYI%e$mD=Dx-Ly1dU!KIOS!: dӧId5Kcn"dƩEs dE+:Al`|e8FFTxczTZkeD>]mc\gwSAʝtt&i/)5-CcF1y(ZxyV@x]+ad* R0jOWau9onsD)³~1b"!Fق7k1sQ}BIgQ86ݐÀÏ,&?(z'p1~᧝@-~zHeAP6D5R5ۃ-R +Գ!azN?.껬zmסђy;"i7O7#36^Ǧt+4 Õ7)4W>ES_ f6pp.L@WIH{S PA\YEr6&UlOV*MOm.ɦ -7iħȍCC*&|#_n<^h2O!P%Mz*Z~'uM'fL>&~PN§LAz@=-Ԉ;5)PDUuFDw̲$S#,b )|87vI,x '!2~Su}juղ6!:kZ|/y +iy }GK=ކ.c`&<6 A.'P0Fv9sY5C>PAOshPhf9Fч Řhuc=MۗQ,@w +~YSu +ʼnqv,Y9N/eW8}s\1n4/຅.}uWOӁf PGaVuLGa!qf[''0h-WuRFpYI@5}Bjvs̓^FJ OxN&ca )% oT7b3ł+z=HgmmF֖ >s>pוz%A,)ZY(xuQ.!m e׋Dy@Q7v!h p5tռv|N}.O#LY30e<4"DI7y&H(ej9JɍL;Ŧ'Cf?[,{<6^Q0@kdLF`oEBbŎf0&5Fb m᨞ AAD|RmڵKoF|΍)צl&ai (5ƽf0&\qRx TߗcW;!vLjnAveQ7Tm>6l bz{Y{U~oSnl#AtS}4v}j3M%)3I +_#..Q{w#HɍLqZjV䅣G!s̱|L +1z&,֚yбT`3^^:c/4\"oܾNl2 G?/0'O by Teleport Pro, because it is addressed on a do\ main or path outside the boundaries set for its Starting Address. \\n\\\ nDo you want to open it from the server?'\)\)window.location='http://www\ .math.tau.ac.il/~nachumd/')>> /Border [ 0 0 0 ] /StructParent 220 >> endobj 3000 0 obj << /Subtype /Link /Rect [ 194.992 101.08571 316.672 114.08571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://emr.cs.uiuc.edu/home/reingold/calendar-b\ ook/ \\n\\nThis file was not retrieved by Teleport Pro, because it is a\ ddressed on a domain or path outside the boundaries set for its Starting\ Address. \\n\\nDo you want to open it from the server?'\)\)window.loca\ tion='http://emr.cs.uiuc.edu/home/reingold/calendar-book/')>> /Border [ 0 0 0 ] /StructParent 219 >> endobj 3001 0 obj << /S /Link /P 2792 0 R /Pg 181 0 R /K [ 39 << /Type /OBJR /Obj 3004 0 R >> ] >> endobj 3002 0 obj << /S /Link /P 2792 0 R /Pg 181 0 R /K [ 41 << /Type /OBJR /Obj 3003 0 R >> ] >> endobj 3003 0 obj << /Subtype /Link /Rect [ 325.504 184.28572 491.5 197.28572 ] /A << /S /URI /URI (javascript:if\(confirm\('http://cseng.aw.com/bookdetail.qry?ISBN=0-201-6\ 3398-1&ptype=0 \\n\\nThis file was not retrieved by Teleport Pro, becau\ se it is addressed on a domain or path outside the boundaries set for it\ s Starting Address. \\n\\nDo you want to open it from the server?'\)\)w\ indow.location='http://cseng.aw.com/bookdetail.qry?ISBN=0-201-63398-1&pt\ ype=0')>> /Border [ 0 0 0 ] /StructParent 218 >> endobj 3004 0 obj << /Subtype /Link /Rect [ 175.68401 184.28572 243.34 197.28572 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.cs.rpi.edu/~musser/ \\n\\nThis file\ was not retrieved by Teleport Pro, because it is addressed on a domain \ or path outside the boundaries set for its Starting Address. \\n\\nDo y\ ou want to open it from the server?'\)\)window.location='http://www.cs.r\ pi.edu/~musser/')>> /Border [ 0 0 0 ] /StructParent 217 >> endobj 3005 0 obj << /S /Link /P 2790 0 R /Pg 181 0 R /K [ 35 << /Type /OBJR /Obj 3006 0 R >> ] >> endobj 3006 0 obj << /Subtype /Link /Rect [ 295.28799 281.88571 399.604 294.88571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.spacepen.com/ \\n\\nThis file was n\ ot retrieved by Teleport Pro, because it is addressed on a domain or pat\ h outside the boundaries set for its Starting Address. \\n\\nDo you wan\ t to open it from the server?'\)\)window.location='http://www.spacepen.c\ om/')>> /Border [ 0 0 0 ] /StructParent 216 >> endobj 3007 0 obj << /S /Link /P 2789 0 R /Pg 181 0 R /K [ 30 << /Type /OBJR /Obj 3010 0 R >> ] >> endobj 3008 0 obj << /S /Link /P 2789 0 R /Pg 181 0 R /K [ 32 << /Type /OBJR /Obj 3009 0 R >> ] >> endobj 3009 0 obj << /Subtype /Link /Rect [ 423.62801 331.68571 467.608 344.68571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.cw.com.hk/Features/f980421001.htm \\\ n\\nThis file was not retrieved by Teleport Pro, because it is addressed\ on a domain or path outside the boundaries set for its Starting Address\ . \\n\\nDo you want to open it from the server?'\)\)window.location='ht\ tp://www.cw.com.hk/Features/f980421001.htm')>> /Border [ 0 0 0 ] /StructParent 215 >> endobj 3010 0 obj << /Subtype /Link /Rect [ 296.644 331.68571 372.64 344.68571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.computerworld.com/ \\n\\nThis file \ was not retrieved by Teleport Pro, because it is addressed on a domain o\ r path outside the boundaries set for its Starting Address. \\n\\nDo yo\ u want to open it from the server?'\)\)window.location='http://www.compu\ terworld.com/')>> /Border [ 0 0 0 ] /StructParent 214 >> endobj 3011 0 obj << /S /Link /P 2787 0 R /Pg 181 0 R /K [ 16 << /Type /OBJR /Obj 3022 0 R >> ] >> endobj 3012 0 obj << /S /Link /P 2787 0 R /Pg 181 0 R /K [ 18 << /Type /OBJR /Obj 3021 0 R >> ] >> endobj 3013 0 obj << /S /Link /P 2787 0 R /Pg 181 0 R /K [ 20 << /Type /OBJR /Obj 3020 0 R >> ] >> endobj 3014 0 obj << /S /Link /P 2787 0 R /Pg 181 0 R /K [ 22 << /Type /OBJR /Obj 3019 0 R >> ] >> endobj 3015 0 obj << /S /Link /P 2787 0 R /Pg 181 0 R /K [ 24 << /Type /OBJR /Obj 3018 0 R >> ] >> endobj 3016 0 obj << /S /Link /P 2787 0 R /Pg 181 0 R /K [ 26 << /Type /OBJR /Obj 3017 0 R >> ] >> endobj 3017 0 obj << /Subtype /Link /Rect [ 46 400.48572 131.668 413.48572 ] /A << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/ccads.pps)>> /Border [ 0 0 0 ] /StructParent 213 >> endobj 3018 0 obj << /Subtype /Link /Rect [ 90.34 431.28572 226.32401 444.28572 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.cs.duke.edu/~jsv/Papers/catalog/ \\\ n\\nThis file was not retrieved by Teleport Pro, because it is addressed\ on a domain or path outside the boundaries set for its Starting Address\ . \\n\\nDo you want to open it from the server?'\)\)window.location='ht\ tp://www.cs.duke.edu/~jsv/Papers/catalog/')>> /Border [ 0 0 0 ] /StructParent 212 >> endobj 3019 0 obj << /Subtype /Link /Rect [ 483.64 447.68571 532.62399 460.68571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.cs.duke.edu/~jsv/ \\n\\nThis file w\ as not retrieved by Teleport Pro, because it is addressed on a domain or\ path outside the boundaries set for its Starting Address. \\n\\nDo you\ want to open it from the server?'\)\)window.location='http://www.cs.duk\ e.edu/~jsv/')>> /Border [ 0 0 0 ] /StructParent 211 >> endobj 3020 0 obj << /Subtype /Link /Rect [ 364.98399 447.68571 477.64 460.68571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.lamarca.org/anthony/pubs/thesis.ps \ \\n\\nThis file was not retrieved by Teleport Pro, because it is address\ ed on a domain or path outside the boundaries set for its Starting Addre\ ss. \\n\\nDo you want to open it from the server?'\)\)window.location='\ http://www.lamarca.org/anthony/pubs/thesis.ps')>> /Border [ 0 0 0 ] /StructParent 210 >> endobj 3021 0 obj << /Subtype /Link /Rect [ 460.276 464.08571 522.592 477.08571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.lamarca.org/anthony/caches.html \\n\ \\nThis file was not retrieved by Teleport Pro, because it is addressed \ on a domain or path outside the boundaries set for its Starting Address.\ \\n\\nDo you want to open it from the server?'\)\)window.location='htt\ p://www.lamarca.org/anthony/caches.html')>> /Border [ 0 0 0 ] /StructParent 209 >> endobj 3022 0 obj << /Subtype /Link /Rect [ 259.636 464.08571 347.944 477.08571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.lamarca.org/anthony/ \\n\\nThis fil\ e was not retrieved by Teleport Pro, because it is addressed on a domain\ or path outside the boundaries set for its Starting Address. \\n\\nDo \ you want to open it from the server?'\)\)window.location='http://www.lam\ arca.org/anthony/')>> /Border [ 0 0 0 ] /StructParent 208 >> endobj 3023 0 obj << /S /Link /P 2786 0 R /Pg 181 0 R /K [ 5 << /Type /OBJR /Obj 3033 0 R >> ] >> endobj 3024 0 obj << /S /Link /P 2786 0 R /Pg 181 0 R /K [ 7 << /Type /OBJR /Obj 3032 0 R >> ] >> endobj 3025 0 obj << /S /Link /P 2786 0 R /Pg 181 0 R /K [ 9 << /Type /OBJR /Obj 3031 0 R >> ] >> endobj 3026 0 obj << /S /Link /P 2786 0 R /Pg 181 0 R /K [ 11 << /Type /OBJR /Obj 3030 0 R >> ] >> endobj 3027 0 obj << /S /Link /P 2786 0 R /Pg 181 0 R /K [ 13 << /Type /OBJR /Obj 3029 0 R >> << /Type /OBJR /Obj 3028 0 R >> ] >> endobj 3028 0 obj << /Subtype /Link /Rect [ 46 513.88571 113.332 526.88571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://cm.bell-labs.com/cm/cs/tpop/ \\n\\nThis\ file was not retrieved by Teleport Pro, because it is addressed on a do\ main or path outside the boundaries set for its Starting Address. \\n\\\ nDo you want to open it from the server?'\)\)window.location='http://cm.\ bell-labs.com/cm/cs/tpop/')>> /Border [ 0 0 0 ] /StructParent 207 >> endobj 3029 0 obj << /Subtype /Link /Rect [ 224.14 530.28572 298.132 543.28572 ] /A << /S /URI /URI (javascript:if\(confirm\('http://cm.bell-labs.com/cm/cs/tpop/ \\n\\nThis\ file was not retrieved by Teleport Pro, because it is addressed on a do\ main or path outside the boundaries set for its Starting Address. \\n\\\ nDo you want to open it from the server?'\)\)window.location='http://cm.\ bell-labs.com/cm/cs/tpop/')>> /Border [ 0 0 0 ] /StructParent 206 >> endobj 3030 0 obj << /Subtype /Link /Rect [ 169.972 530.28572 214.312 543.28572 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.cs.bell-labs.com/who/rob/ \\n\\nThi\ s file was not retrieved by Teleport Pro, because it is addressed on a d\ omain or path outside the boundaries set for its Starting Address. \\n\\\ nDo you want to open it from the server?'\)\)window.location='http://www\ .cs.bell-labs.com/who/rob/')>> /Border [ 0 0 0 ] /StructParent 205 >> endobj 3031 0 obj << /Subtype /Link /Rect [ 66.328 530.28572 146.644 543.28572 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.cs.bell-labs.com/who/bwk/ \\n\\nThi\ s file was not retrieved by Teleport Pro, because it is addressed on a d\ omain or path outside the boundaries set for its Starting Address. \\n\\\ nDo you want to open it from the server?'\)\)window.location='http://www\ .cs.bell-labs.com/who/bwk/')>> /Border [ 0 0 0 ] /StructParent 204 >> endobj 3032 0 obj << /Subtype /Link /Rect [ 263.476 546.68571 337.804 559.68571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.construx.com/stevemcc/cc.htm \\n\\n\ This file was not retrieved by Teleport Pro, because it is addressed on \ a domain or path outside the boundaries set for its Starting Address. \\\ n\\nDo you want to open it from the server?'\)\)window.location='http://\ www.construx.com/stevemcc/cc.htm')>> /Border [ 0 0 0 ] /StructParent 203 >> endobj 3033 0 obj << /Subtype /Link /Rect [ 169.98399 546.68571 260.476 559.68571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.construx.com/stevemcc/ \\n\\nThis f\ ile was not retrieved by Teleport Pro, because it is addressed on a doma\ in or path outside the boundaries set for its Starting Address. \\n\\nD\ o you want to open it from the server?'\)\)window.location='http://www.c\ onstrux.com/stevemcc/')>> /Border [ 0 0 0 ] /StructParent 202 >> endobj 3034 0 obj << /S /Link /P 2782 0 R /K [ 3035 0 R << /Type /OBJR /Pg 181 0 R /Obj 3036 0 R >> ] >> endobj 3035 0 obj << /S /I /P 3034 0 R /Pg 181 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 3036 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 201 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 3037 0 obj << /S /P /P 2100 0 R /K 3101 0 R >> endobj 3038 0 obj << /S /H1 /P 2100 0 R /Pg 198 0 R /K 1 >> endobj 3039 0 obj << /S /H3 /P 2100 0 R /Pg 198 0 R /K 2 >> endobj 3040 0 obj << /S /P /P 2100 0 R /Pg 198 0 R /K 3 >> endobj 3041 0 obj << /S /P /P 2100 0 R /Pg 198 0 R /K 4 >> endobj 3042 0 obj << /S /P /P 2100 0 R /Pg 198 0 R /K 5 >> endobj 3043 0 obj << /S /P /P 2100 0 R /Pg 198 0 R /K [ 6 3097 0 R 8 3098 0 R 10 ] >> endobj 3044 0 obj << /S /P /P 2100 0 R /Pg 198 0 R /K [ 11 3093 0 R 13 3094 0 R 15 ] >> endobj 3045 0 obj << /S /P /P 2100 0 R /Pg 198 0 R /K [ 16 3089 0 R 18 3090 0 R 20 ] >> endobj 3046 0 obj << /S /P /P 2100 0 R /Pg 198 0 R /K [ 21 3085 0 R 23 3086 0 R 25 ] >> endobj 3047 0 obj << /S /P /P 2100 0 R /Pg 198 0 R /K [ 26 3081 0 R 28 3082 0 R 30 ] >> endobj 3048 0 obj << /S /P /P 2100 0 R /Pg 198 0 R /K [ 31 3077 0 R 33 3078 0 R 35 ] >> endobj 3049 0 obj << /S /P /P 2100 0 R /Pg 198 0 R /K [ 36 3073 0 R 38 3074 0 R 40 << /Type /MCR /Pg 203 0 R /MCID 0 >> ] >> endobj 3050 0 obj << /S /P /P 2100 0 R /Pg 203 0 R /K [ 1 3069 0 R 3 3070 0 R 5 ] >> endobj 3051 0 obj << /S /P /P 2100 0 R /Pg 203 0 R /K [ 6 3065 0 R 8 3066 0 R 10 ] >> endobj 3052 0 obj << /S /H3 /P 2100 0 R /Pg 203 0 R /K 11 >> endobj 3053 0 obj << /S /P /P 2100 0 R /Pg 203 0 R /K [ 12 3059 0 R 14 3060 0 R 16 3061 0 R 18 ] >> endobj 3054 0 obj << /S /P /P 2100 0 R /Pg 203 0 R /K [ 19 3057 0 R 21 ] >> endobj 3055 0 obj << /S /P /P 2100 0 R /Pg 203 0 R /K 22 >> endobj 3056 0 obj << /S /P /P 2100 0 R /Pg 203 0 R /K 23 >> endobj 3057 0 obj << /S /Link /P 3054 0 R /Pg 203 0 R /K [ 20 << /Type /OBJR /Obj 3058 0 R >> ] >> endobj 3058 0 obj << /Subtype /Link /Rect [ 98.32001 469.88571 196.636 482.88571 ] /StructParent 335 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 468 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/fyi.html)>> >> endobj 3059 0 obj << /S /Link /P 3053 0 R /Pg 203 0 R /K [ 13 << /Type /OBJR /Obj 3064 0 R >> ] >> endobj 3060 0 obj << /S /Link /P 3053 0 R /Pg 203 0 R /K [ 15 << /Type /OBJR /Obj 3063 0 R >> ] >> endobj 3061 0 obj << /S /Link /P 3053 0 R /Pg 203 0 R /K [ 17 << /Type /OBJR /Obj 3062 0 R >> ] >> endobj 3062 0 obj << /Subtype /Link /Rect [ 208.312 534.08571 333.616 547.08571 ] /StructParent 334 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 459 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bote.html)>> >> endobj 3063 0 obj << /Subtype /Link /Rect [ 228.304 550.48572 266.95599 563.48572 ] /StructParent 333 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 454 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/answers.html)>> >> endobj 3064 0 obj << /Subtype /Link /Rect [ 184.312 550.48572 204.976 563.48572 ] /StructParent 332 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 449 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/quiz.html)>> >> endobj 3065 0 obj << /S /Link /P 3051 0 R /Pg 203 0 R /K [ 7 << /Type /OBJR /Obj 3068 0 R >> ] >> endobj 3066 0 obj << /S /Link /P 3051 0 R /Pg 203 0 R /K [ 9 << /Type /OBJR /Obj 3067 0 R >> ] >> endobj 3067 0 obj << /Subtype /Link /Rect [ 173.65601 637.8 221.308 650.8 ] /StructParent 331 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 440 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/tricks.html)>> >> endobj 3068 0 obj << /Subtype /Link /Rect [ 226.32401 654.2 318.62801 667.2 ] /StructParent 330 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 440 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/tricks.html)>> >> endobj 3069 0 obj << /S /Link /P 3050 0 R /Pg 203 0 R /K [ 2 << /Type /OBJR /Obj 3072 0 R >> ] >> endobj 3070 0 obj << /S /Link /P 3050 0 R /Pg 203 0 R /K [ 4 << /Type /OBJR /Obj 3071 0 R >> ] >> endobj 3071 0 obj << /Subtype /Link /Rect [ 272.668 718.39999 311.32001 731.39999 ] /StructParent 329 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 403 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s15.pdf)>> >> endobj 3072 0 obj << /Subtype /Link /Rect [ 219.328 718.39999 266.668 731.39999 ] /A << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s15.ps)>> /Border [ 0 0 0 ] /StructParent 328 >> endobj 3073 0 obj << /S /Link /P 3049 0 R /Pg 198 0 R /K [ 37 << /Type /OBJR /Obj 3076 0 R >> ] >> endobj 3074 0 obj << /S /Link /P 3049 0 R /Pg 198 0 R /K [ 39 << /Type /OBJR /Obj 3075 0 R >> ] >> endobj 3075 0 obj << /Subtype /Link /Rect [ 211.672 61.77142 250.32401 74.77142 ] /StructParent 326 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 363 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s14.pdf)>> >> endobj 3076 0 obj << /Subtype /Link /Rect [ 158.332 61.77142 205.672 74.77142 ] /A << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s14.ps)>> /Border [ 0 0 0 ] /StructParent 325 >> endobj 3077 0 obj << /S /Link /P 3048 0 R /Pg 198 0 R /K [ 32 << /Type /OBJR /Obj 3080 0 R >> ] >> endobj 3078 0 obj << /S /Link /P 3048 0 R /Pg 198 0 R /K [ 34 << /Type /OBJR /Obj 3079 0 R >> ] >> endobj 3079 0 obj << /Subtype /Link /Rect [ 231.004 125.97144 269.65601 138.97144 ] /StructParent 324 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 335 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s13.pdf)>> >> endobj 3080 0 obj << /Subtype /Link /Rect [ 177.664 125.97144 225.004 138.97144 ] /A << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s13.ps)>> /Border [ 0 0 0 ] /StructParent 323 >> endobj 3081 0 obj << /S /Link /P 3047 0 R /Pg 198 0 R /K [ 27 << /Type /OBJR /Obj 3084 0 R >> ] >> endobj 3082 0 obj << /S /Link /P 3047 0 R /Pg 198 0 R /K [ 29 << /Type /OBJR /Obj 3083 0 R >> ] >> endobj 3083 0 obj << /Subtype /Link /Rect [ 326.34399 175.77142 364.996 188.77142 ] /StructParent 322 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 301 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s08.pdf)>> >> endobj 3084 0 obj << /Subtype /Link /Rect [ 273.004 175.77142 320.34399 188.77142 ] /A << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s08.ps)>> /Border [ 0 0 0 ] /StructParent 321 >> endobj 3085 0 obj << /S /Link /P 3046 0 R /Pg 198 0 R /K [ 22 << /Type /OBJR /Obj 3088 0 R >> ] >> endobj 3086 0 obj << /S /Link /P 3046 0 R /Pg 198 0 R /K [ 24 << /Type /OBJR /Obj 3087 0 R >> ] >> endobj 3087 0 obj << /Subtype /Link /Rect [ 305.008 239.97144 343.66 252.97144 ] /StructParent 320 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 279 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s07.pdf)>> >> endobj 3088 0 obj << /Subtype /Link /Rect [ 251.668 239.97144 299.008 252.97144 ] /A << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s07.ps)>> /Border [ 0 0 0 ] /StructParent 319 >> endobj 3089 0 obj << /S /Link /P 3045 0 R /Pg 198 0 R /K [ 17 << /Type /OBJR /Obj 3092 0 R >> ] >> endobj 3090 0 obj << /S /Link /P 3045 0 R /Pg 198 0 R /K [ 19 << /Type /OBJR /Obj 3091 0 R >> ] >> endobj 3091 0 obj << /Subtype /Link /Rect [ 283.972 304.17143 322.62399 317.17143 ] /StructParent 318 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 254 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s04.pdf)>> >> endobj 3092 0 obj << /Subtype /Link /Rect [ 230.632 304.17143 277.972 317.17143 ] /A << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s04.ps)>> /Border [ 0 0 0 ] /StructParent 317 >> endobj 3093 0 obj << /S /Link /P 3044 0 R /Pg 198 0 R /K [ 12 << /Type /OBJR /Obj 3096 0 R >> ] >> endobj 3094 0 obj << /S /Link /P 3044 0 R /Pg 198 0 R /K [ 14 << /Type /OBJR /Obj 3095 0 R >> ] >> endobj 3095 0 obj << /Subtype /Link /Rect [ 226.996 368.37143 265.64799 381.37143 ] /StructParent 316 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 229 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s02.pdf)>> >> endobj 3096 0 obj << /Subtype /Link /Rect [ 173.65601 368.37143 220.996 381.37143 ] /A << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s02.ps)>> /Border [ 0 0 0 ] /StructParent 315 >> endobj 3097 0 obj << /S /Link /P 3043 0 R /Pg 198 0 R /K [ 7 << /Type /OBJR /Obj 3100 0 R >> ] >> endobj 3098 0 obj << /S /Link /P 3043 0 R /Pg 198 0 R /K [ 9 << /Type /OBJR /Obj 3099 0 R >> ] >> endobj 3099 0 obj << /Subtype /Link /Rect [ 255.976 432.57143 294.62801 445.57143 ] /StructParent 314 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 207 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s02b.pdf)>> >> endobj 3100 0 obj << /Subtype /Link /Rect [ 202.636 432.57143 249.976 445.57143 ] /A << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s02b.ps)>> /Border [ 0 0 0 ] /StructParent 313 >> endobj 3101 0 obj << /S /Link /P 3037 0 R /K [ 3102 0 R << /Type /OBJR /Pg 198 0 R /Obj 3103 0 R >> ] >> endobj 3102 0 obj << /S /I /P 3101 0 R /Pg 198 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 3103 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 312 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 3104 0 obj << /S /P /P 2090 0 R /K 3181 0 R >> endobj 3105 0 obj << /S /H1 /P 2090 0 R /Pg 440 0 R /K 1 >> endobj 3106 0 obj << /S /P /P 2090 0 R /Pg 440 0 R /K 2 >> endobj 3107 0 obj << /S /P /P 2090 0 R /Pg 440 0 R /K 3 >> endobj 3108 0 obj << /S /H4 /P 2090 0 R /Pg 440 0 R /K 4 >> endobj 3109 0 obj << /S /P /P 2090 0 R /Pg 440 0 R /K [ 5 3177 0 R 7 3178 0 R 9 ] >> endobj 3110 0 obj << /S /H4 /P 2090 0 R /Pg 440 0 R /K 10 >> endobj 3111 0 obj << /S /P /P 2090 0 R /Pg 440 0 R /K [ 11 3173 0 R 13 3174 0 R 15 ] >> endobj 3112 0 obj << /S /H4 /P 2090 0 R /Pg 440 0 R /K 16 >> endobj 3113 0 obj << /S /P /P 2090 0 R /Pg 440 0 R /K [ 17 3165 0 R 19 3166 0 R 21 3167 0 R 23 3168 0 R 25 ] >> endobj 3114 0 obj << /S /H3 /P 2090 0 R /Pg 440 0 R /K 26 >> endobj 3115 0 obj << /S /P /P 2090 0 R /Pg 440 0 R /K [ 27 3161 0 R 29 3162 0 R 31 ] >> endobj 3116 0 obj << /S /P /P 2090 0 R /Pg 440 0 R /K [ 32 3136 0 R 34 3137 0 R 36 3138 0 R 38 3139 0 R 40 3140 0 R 42 3141 0 R 44 3142 0 R 46 3143 0 R 48 3144 0 R 50 3145 0 R 52 3146 0 R 54 3147 0 R 56 ] >> endobj 3117 0 obj << /S /H3 /P 2090 0 R /Pg 440 0 R /K 57 >> endobj 3118 0 obj << /S /P /P 2090 0 R /Pg 445 0 R /K [ 0 3128 0 R 2 3129 0 R 4 3130 0 R 6 3131 0 R 8 ] >> endobj 3119 0 obj << /S /P /P 2090 0 R /Pg 445 0 R /K [ 9 3121 0 R 11 3122 0 R 13 3123 0 R 15 ] >> endobj 3120 0 obj << /S /P /P 2090 0 R /Pg 445 0 R /K 16 >> endobj 3121 0 obj << /S /Link /P 3119 0 R /Pg 445 0 R /K [ 10 << /Type /OBJR /Obj 3127 0 R >> ] >> endobj 3122 0 obj << /S /Link /P 3119 0 R /Pg 445 0 R /K [ 12 << /Type /OBJR /Obj 3126 0 R >> << /Type /OBJR /Obj 3125 0 R >> ] >> endobj 3123 0 obj << /S /Link /P 3119 0 R /Pg 445 0 R /K [ 14 << /Type /OBJR /Obj 3124 0 R >> ] >> endobj 3124 0 obj << /Subtype /Link /Rect [ 507.23199 626 567.23199 639 ] /StructParent 369 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 744 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec0510.html)>> >> endobj 3125 0 obj << /Subtype /Link /Rect [ 46 626 76.672 639 ] /StructParent 368 /Border [ 0 0 0 ] /A << /S /GoTo /D (a\)g:sG2rulesofthumb)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#ruleso\ fthumb)>> >> endobj 3126 0 obj << /Subtype /Link /Rect [ 564.58 642.39999 600.90401 655.39999 ] /StructParent 367 /Border [ 0 0 0 ] /A << /S /GoTo /D (a\)g:sG2rulesofthumb)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#ruleso\ fthumb)>> >> endobj 3127 0 obj << /Subtype /Link /Rect [ 463.576 642.39999 511.252 655.39999 ] /StructParent 366 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 459 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bote.html)>> >> endobj 3128 0 obj << /S /Link /P 3118 0 R /Pg 445 0 R /K [ 1 << /Type /OBJR /Obj 3135 0 R >> ] >> endobj 3129 0 obj << /S /Link /P 3118 0 R /Pg 445 0 R /K [ 3 << /Type /OBJR /Obj 3134 0 R >> ] >> endobj 3130 0 obj << /S /Link /P 3118 0 R /Pg 445 0 R /K [ 5 << /Type /OBJR /Obj 3133 0 R >> ] >> endobj 3131 0 obj << /S /Link /P 3118 0 R /Pg 445 0 R /K [ 7 << /Type /OBJR /Obj 3132 0 R >> ] >> endobj 3132 0 obj << /Subtype /Link /Rect [ 502.924 735.39999 541.576 748.39999 ] /StructParent 365 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 761 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/tricks.pdf)>> >> endobj 3133 0 obj << /Subtype /Link /Rect [ 432.256 735.39999 479.59599 748.39999 ] /A << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/tricks.ps)>> /Border [ 0 0 0 ] /StructParent 364 >> endobj 3134 0 obj << /Subtype /Link /Rect [ 46 735.39999 131.668 748.39999 ] /A << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/tricks.pps)>> /Border [ 0 0 0 ] /StructParent 363 >> endobj 3135 0 obj << /Subtype /Link /Rect [ 242.95599 751.8 387.56799 764.8 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.gdconf.com/ \\n\\nThis file was not\ retrieved by Teleport Pro, because it is addressed on a domain or path \ outside the boundaries set for its Starting Address. \\n\\nDo you want \ to open it from the server?'\)\)window.location='http://www.gdconf.com/'\ )>> /Border [ 0 0 0 ] /StructParent 362 >> endobj 3136 0 obj << /S /Link /P 3116 0 R /Pg 440 0 R /K [ 33 << /Type /OBJR /Obj 3160 0 R >> ] >> endobj 3137 0 obj << /S /Link /P 3116 0 R /Pg 440 0 R /K [ 35 << /Type /OBJR /Obj 3159 0 R >> ] >> endobj 3138 0 obj << /S /Link /P 3116 0 R /Pg 440 0 R /K [ 37 << /Type /OBJR /Obj 3158 0 R >> ] >> endobj 3139 0 obj << /S /Link /P 3116 0 R /Pg 440 0 R /K [ 39 << /Type /OBJR /Obj 3157 0 R >> << /Type /OBJR /Obj 3156 0 R >> ] >> endobj 3140 0 obj << /S /Link /P 3116 0 R /Pg 440 0 R /K [ 41 << /Type /OBJR /Obj 3155 0 R >> ] >> endobj 3141 0 obj << /S /Link /P 3116 0 R /Pg 440 0 R /K [ 43 << /Type /OBJR /Obj 3154 0 R >> ] >> endobj 3142 0 obj << /S /Link /P 3116 0 R /Pg 440 0 R /K [ 45 << /Type /OBJR /Obj 3153 0 R >> ] >> endobj 3143 0 obj << /S /Link /P 3116 0 R /Pg 440 0 R /K [ 47 << /Type /OBJR /Obj 3152 0 R >> ] >> endobj 3144 0 obj << /S /Link /P 3116 0 R /Pg 440 0 R /K [ 49 << /Type /OBJR /Obj 3151 0 R >> ] >> endobj 3145 0 obj << /S /Link /P 3116 0 R /Pg 440 0 R /K [ 51 << /Type /OBJR /Obj 3150 0 R >> ] >> endobj 3146 0 obj << /S /Link /P 3116 0 R /Pg 440 0 R /K [ 53 << /Type /OBJR /Obj 3149 0 R >> ] >> endobj 3147 0 obj << /S /Link /P 3116 0 R /Pg 440 0 R /K [ 55 << /Type /OBJR /Obj 3148 0 R >> ] >> endobj 3148 0 obj << /Subtype /Link /Rect [ 496.612 102.91429 539.25999 115.91429 ] /StructParent 360 /Border [ 0 0 0 ] /A << /S /GoTo /D (a\)g:sG2tradeoffs)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#tradeo\ ffs)>> >> endobj 3149 0 obj << /Subtype /Link /Rect [ 438.28 102.91429 470.284 115.91429 ] /StructParent 359 /Border [ 0 0 0 ] /A << /S /GoTo /D (a\)g:sG2testing)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#testin\ g)>> >> endobj 3150 0 obj << /Subtype /Link /Rect [ 366.29201 102.91429 432.28 115.91429 ] /StructParent 358 /Border [ 0 0 0 ] /A << /S /GoTo /D (a\)g:sG2specifications)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#specif\ ications)>> >> endobj 3151 0 obj << /Subtype /Link /Rect [ 309.62801 102.91429 360.29201 115.91429 ] /StructParent 357 /Border [ 0 0 0 ] /A << /S /GoTo /D (a\)g:sG2prototypes)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#protot\ ypes)>> >> endobj 3152 0 obj << /Subtype /Link /Rect [ 213.964 102.91429 303.62801 115.91429 ] /StructParent 356 /Border [ 0 0 0 ] /A << /S /GoTo /D (a\)g:sG2probdef)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#probde\ f)>> >> endobj 3153 0 obj << /Subtype /Link /Rect [ 165.98801 102.91429 207.964 115.91429 ] /StructParent 355 /Border [ 0 0 0 ] /A << /S /GoTo /D (a\)g:sG2elegance)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#elegan\ ce)>> >> endobj 3154 0 obj << /Subtype /Link /Rect [ 128.65601 102.91429 159.98801 115.91429 ] /StructParent 354 /Border [ 0 0 0 ] /A << /S /GoTo /D (a\)g:sG2design)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#design\ )>> >> endobj 3155 0 obj << /Subtype /Link /Rect [ 71.992 102.91429 122.65601 115.91429 ] /StructParent 353 /Border [ 0 0 0 ] /A << /S /GoTo /D (a\)g:sG2debugging)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#debugg\ ing)>> >> endobj 3156 0 obj << /Subtype /Link /Rect [ 46 102.91429 65.992 115.91429 ] /StructParent 352 /Border [ 0 0 0 ] /A << /S /GoTo /D (a\)g:sG2background)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#backgr\ ound)>> >> endobj 3157 0 obj << /Subtype /Link /Rect [ 519.90401 119.31429 576.556 132.31429 ] /StructParent 351 /Border [ 0 0 0 ] /A << /S /GoTo /D (a\)g:sG2background)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#backgr\ ound)>> >> endobj 3158 0 obj << /Subtype /Link /Rect [ 414.26801 119.31429 513.90401 132.31429 ] /StructParent 350 /Border [ 0 0 0 ] /A << /S /GoTo /D (a\)g:sG2bote)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#bote)>> >> endobj 3159 0 obj << /Subtype /Link /Rect [ 175.3 119.31429 286.276 132.31429 ] /StructParent 349 /Border [ 0 0 0 ] /A << /S /GoTo /D (a\)g:sG2engtechniques)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#engtec\ hniques)>> >> endobj 3160 0 obj << /Subtype /Link /Rect [ 67.66 119.31429 94.32401 132.31429 ] /StructParent 348 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 700 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html)>> >> endobj 3161 0 obj << /S /Link /P 3115 0 R /Pg 440 0 R /K [ 28 << /Type /OBJR /Obj 3164 0 R >> ] >> endobj 3162 0 obj << /S /Link /P 3115 0 R /Pg 440 0 R /K [ 30 << /Type /OBJR /Obj 3163 0 R >> ] >> endobj 3163 0 obj << /Subtype /Link /Rect [ 295.672 154.71428 353.34399 167.71428 ] /StructParent 347 /Border [ 0 0 0 ] /A << /S /GoTo /D (WDʵfW,]PO^designadvice)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/epilog1.html#designad\ vice)>> >> endobj 3164 0 obj << /Subtype /Link /Rect [ 67.66 154.71428 193.01199 167.71428 ] /StructParent 346 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 752 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/epilog1.html)>> >> endobj 3165 0 obj << /S /Link /P 3113 0 R /Pg 440 0 R /K [ 18 << /Type /OBJR /Obj 3172 0 R >> ] >> endobj 3166 0 obj << /S /Link /P 3113 0 R /Pg 440 0 R /K [ 20 << /Type /OBJR /Obj 3171 0 R >> ] >> endobj 3167 0 obj << /S /Link /P 3113 0 R /Pg 440 0 R /K [ 22 << /Type /OBJR /Obj 3170 0 R >> ] >> endobj 3168 0 obj << /S /Link /P 3113 0 R /Pg 440 0 R /K [ 24 << /Type /OBJR /Obj 3169 0 R >> ] >> endobj 3169 0 obj << /Subtype /Link /Rect [ 184.98399 227.62857 271.312 240.62857 ] /StructParent 345 /Border [ 0 0 0 ] /A << /S /GoTo /D (a\)g:sG2debugging)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#debugg\ ing)>> >> endobj 3170 0 obj << /Subtype /Link /Rect [ 399.65199 244.02856 459.65199 257.02856 ] /StructParent 344 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 744 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec0510.html)>> >> endobj 3171 0 obj << /Subtype /Link /Rect [ 296.32001 244.02856 393.65199 257.02856 ] /StructParent 343 /Border [ 0 0 0 ] /A << /S /GoTo /D (a\)g:sG2testing)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#testin\ g)>> >> endobj 3172 0 obj << /Subtype /Link /Rect [ 46 244.02856 93.67599 257.02856 ] /StructParent 342 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 739 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sketch05.html)>> >> endobj 3173 0 obj << /S /Link /P 3111 0 R /Pg 440 0 R /K [ 12 << /Type /OBJR /Obj 3176 0 R >> ] >> endobj 3174 0 obj << /S /Link /P 3111 0 R /Pg 440 0 R /K [ 14 << /Type /OBJR /Obj 3175 0 R >> ] >> endobj 3175 0 obj << /Subtype /Link /Rect [ 312.616 327.22858 434.944 340.22858 ] /StructParent 341 /Border [ 0 0 0 ] /A << /S /GoTo /D (a\)g:sG2bote)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#bote)>> >> endobj 3176 0 obj << /Subtype /Link /Rect [ 223.96001 327.22858 271.636 340.22858 ] /StructParent 340 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 459 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bote.html)>> >> endobj 3177 0 obj << /S /Link /P 3109 0 R /Pg 440 0 R /K [ 6 << /Type /OBJR /Obj 3180 0 R >> ] >> endobj 3178 0 obj << /S /Link /P 3109 0 R /Pg 440 0 R /K [ 8 << /Type /OBJR /Obj 3179 0 R >> ] >> endobj 3179 0 obj << /Subtype /Link /Rect [ 387.31599 396.02856 552.62801 409.02856 ] /StructParent 339 /Border [ 0 0 0 ] /A << /S /GoTo /D (a\)g:sG2probdef)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#probde\ f)>> >> endobj 3180 0 obj << /Subtype /Link /Rect [ 293.98 396.02856 341.65601 409.02856 ] /StructParent 338 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 691 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/cto.html)>> >> endobj 3181 0 obj << /S /Link /P 3104 0 R /K [ 3182 0 R << /Type /OBJR /Pg 440 0 R /Obj 3183 0 R >> ] >> endobj 3182 0 obj << /S /I /P 3181 0 R /Pg 440 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 3183 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 337 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 3184 0 obj << /S /P /P 2088 0 R /K 3202 0 R >> endobj 3185 0 obj << /S /H1 /P 2088 0 R /Pg 449 0 R /K 1 >> endobj 3186 0 obj << /S /P /P 2088 0 R /Pg 449 0 R /K 2 >> endobj 3187 0 obj << /S /P /P 2088 0 R /Pg 449 0 R /K 3 >> endobj 3188 0 obj << /S /P /P 2088 0 R /Pg 449 0 R /K 4 >> endobj 3189 0 obj << /S /P /P 2088 0 R /Pg 449 0 R /K 5 >> endobj 3190 0 obj << /S /P /P 2088 0 R /Pg 449 0 R /K 6 >> endobj 3191 0 obj << /S /P /P 2088 0 R /Pg 449 0 R /K 7 >> endobj 3192 0 obj << /S /P /P 2088 0 R /Pg 449 0 R /K 8 >> endobj 3193 0 obj << /S /P /P 2088 0 R /Pg 449 0 R /K 9 >> endobj 3194 0 obj << /S /P /P 2088 0 R /Pg 449 0 R /K 10 >> endobj 3195 0 obj << /S /P /P 2088 0 R /Pg 449 0 R /K 11 >> endobj 3196 0 obj << /S /P /P 2088 0 R /Pg 449 0 R /K 12 >> endobj 3197 0 obj << /S /P /P 2088 0 R /Pg 449 0 R /K 13 >> endobj 3198 0 obj << /S /P /P 2088 0 R /Pg 449 0 R /K [ 14 3200 0 R 16 ] >> endobj 3199 0 obj << /S /P /P 2088 0 R /Pg 449 0 R /K 17 >> endobj 3200 0 obj << /S /Link /P 3198 0 R /Pg 449 0 R /K [ 15 << /Type /OBJR /Obj 3201 0 R >> ] >> endobj 3201 0 obj << /Subtype /Link /Rect [ 208.98399 124.22858 253.312 137.22858 ] /StructParent 372 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 454 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/answers.html)>> >> endobj 3202 0 obj << /S /Link /P 3184 0 R /K [ 3203 0 R << /Type /OBJR /Pg 449 0 R /Obj 3204 0 R >> ] >> endobj 3203 0 obj << /S /I /P 3202 0 R /Pg 449 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 3204 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 371 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 3205 0 obj << /S /P /P 2086 0 R /K 3218 0 R >> endobj 3206 0 obj << /S /H1 /P 2086 0 R /Pg 454 0 R /K 1 >> endobj 3207 0 obj << /S /P /P 2086 0 R /Pg 454 0 R /K [ 2 3216 0 R 4 ] >> endobj 3208 0 obj << /S /P /P 2086 0 R /Pg 454 0 R /K 5 >> endobj 3209 0 obj << /S /H3 /P 2086 0 R /Pg 454 0 R /K 6 >> endobj 3210 0 obj << /S /P /P 2086 0 R /Pg 454 0 R /K 7 >> endobj 3211 0 obj << /S /P /P 2086 0 R /Pg 454 0 R /K 8 >> endobj 3212 0 obj << /S /P /P 2086 0 R /Pg 454 0 R /K 9 >> endobj 3213 0 obj << /S /P /P 2086 0 R /Pg 454 0 R /K 10 >> endobj 3214 0 obj << /S /P /P 2086 0 R /Pg 454 0 R /K 11 >> endobj 3215 0 obj << /S /P /P 2086 0 R /Pg 454 0 R /K 12 >> endobj 3216 0 obj << /S /Link /P 3207 0 R /Pg 454 0 R /K [ 3 << /Type /OBJR /Obj 3217 0 R >> ] >> endobj 3217 0 obj << /Subtype /Link /Rect [ 86.65601 625.82857 107.308 638.82857 ] /StructParent 375 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 449 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/quiz.html)>> >> endobj 3218 0 obj << /S /Link /P 3205 0 R /K [ 3219 0 R << /Type /OBJR /Pg 454 0 R /Obj 3220 0 R >> ] >> endobj 3219 0 obj << /S /I /P 3218 0 R /Pg 454 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 3220 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 374 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 3221 0 obj << /S /P /P 2084 0 R /K 3283 0 R >> endobj 3222 0 obj << /S /H1 /P 2084 0 R /Pg 459 0 R /K 1 >> endobj 3223 0 obj << /S /H3 /P 2084 0 R /Pg 459 0 R /K 2 >> endobj 3224 0 obj << /S /P /P 2084 0 R /Pg 459 0 R /K 3 >> endobj 3225 0 obj << /S /P /P 2084 0 R /Pg 459 0 R /K 4 >> endobj 3226 0 obj << /S /P /P 2084 0 R /Pg 459 0 R /K 5 >> endobj 3227 0 obj << /S /P /P 2084 0 R /Pg 459 0 R /K 6 >> endobj 3228 0 obj << /S /H3 /P 2084 0 R /Pg 459 0 R /K 7 >> endobj 3229 0 obj << /S /P /P 2084 0 R /Pg 459 0 R /K [ 8 3267 0 R 10 3268 0 R 12 3269 0 R 14 3270 0 R << /Type /MCR /Pg 464 0 R /MCID 1 >> 3271 0 R << /Type /MCR /Pg 464 0 R /MCID 3 >> 3272 0 R << /Type /MCR /Pg 464 0 R /MCID 5 >> 3273 0 R << /Type /MCR /Pg 464 0 R /MCID 7 >> 3274 0 R << /Type /MCR /Pg 464 0 R /MCID 9 >> ] >> endobj 3230 0 obj << /S /H3 /P 2084 0 R /Pg 464 0 R /K 10 >> endobj 3231 0 obj << /S /P /P 2084 0 R /Pg 464 0 R /K [ 11 3263 0 R 13 3264 0 R 15 ] >> endobj 3232 0 obj << /S /P /P 2084 0 R /Pg 464 0 R /K [ 3259 0 R 17 3260 0 R 19 ] >> endobj 3233 0 obj << /S /P /P 2084 0 R /Pg 464 0 R /K [ 3253 0 R 21 3254 0 R 23 3255 0 R 25 ] >> endobj 3234 0 obj << /S /P /P 2084 0 R /Pg 464 0 R /K [ 26 3249 0 R 28 3250 0 R 30 ] >> endobj 3235 0 obj << /S /P /P 2084 0 R /Pg 464 0 R /K [ 31 3243 0 R 33 3244 0 R 35 3245 0 R 37 ] >> endobj 3236 0 obj << /S /P /P 2084 0 R /Pg 464 0 R /K [ 38 3241 0 R 40 ] >> endobj 3237 0 obj << /S /P /P 2084 0 R /Pg 464 0 R /K [ 41 3239 0 R 43 ] >> endobj 3238 0 obj << /S /P /P 2084 0 R /Pg 464 0 R /K 44 >> endobj 3239 0 obj << /S /Link /P 3237 0 R /Pg 464 0 R /K [ 42 << /Type /OBJR /Obj 3240 0 R >> ] >> endobj 3240 0 obj << /Subtype /Link /Rect [ 420.604 370.08571 492.26801 383.08571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.computer.org/software/ \\n\\nThis f\ ile was not retrieved by Teleport Pro, because it is addressed on a doma\ in or path outside the boundaries set for its Starting Address. \\n\\nD\ o you want to open it from the server?'\)\)window.location='http://www.c\ omputer.org/software/')>> /Border [ 0 0 0 ] /StructParent 400 >> endobj 3241 0 obj << /S /Link /P 3236 0 R /Pg 464 0 R /K [ 39 << /Type /OBJR /Obj 3242 0 R >> ] >> endobj 3242 0 obj << /Subtype /Link /Rect [ 67.66 405.48572 139.948 418.48572 ] /StructParent 399 /Border [ 0 0 0 ] /A << /S /GoTo /D (нIh\(-i!գbote)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/webrefs.html#bote)>> >> endobj 3243 0 obj << /S /Link /P 3235 0 R /Pg 464 0 R /K [ 32 << /Type /OBJR /Obj 3248 0 R >> ] >> endobj 3244 0 obj << /S /Link /P 3235 0 R /Pg 464 0 R /K [ 34 << /Type /OBJR /Obj 3247 0 R >> ] >> endobj 3245 0 obj << /S /Link /P 3235 0 R /Pg 464 0 R /K [ 36 << /Type /OBJR /Obj 3246 0 R >> ] >> endobj 3246 0 obj << /Subtype /Link /Rect [ 153.34 440.88571 191.992 453.88571 ] /StructParent 398 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 279 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s07.pdf)>> >> endobj 3247 0 obj << /Subtype /Link /Rect [ 82.672 440.88571 130.01199 453.88571 ] /A << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s07.ps)>> /Border [ 0 0 0 ] /StructParent 397 >> endobj 3248 0 obj << /Subtype /Link /Rect [ 67.66 457.28572 150.64 470.28572 ] /StructParent 396 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 198 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/teaching.html)>> >> endobj 3249 0 obj << /S /Link /P 3234 0 R /Pg 464 0 R /K [ 27 << /Type /OBJR /Obj 3252 0 R >> ] >> endobj 3250 0 obj << /S /Link /P 3234 0 R /Pg 464 0 R /K [ 29 << /Type /OBJR /Obj 3251 0 R >> ] >> endobj 3251 0 obj << /Subtype /Link /Rect [ 192.964 492.68571 292.60001 505.68571 ] /StructParent 395 /Border [ 0 0 0 ] /A << /S /GoTo /D (a\)g:sG2bote)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#bote)>> >> endobj 3252 0 obj << /Subtype /Link /Rect [ 67.66 492.68571 94.32401 505.68571 ] /StructParent 394 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 700 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html)>> >> endobj 3253 0 obj << /S /Link /P 3233 0 R /Pg 464 0 R /K [ 20 << /Type /OBJR /Obj 3258 0 R >> ] >> endobj 3254 0 obj << /S /Link /P 3233 0 R /Pg 464 0 R /K [ 22 << /Type /OBJR /Obj 3257 0 R >> ] >> endobj 3255 0 obj << /S /Link /P 3233 0 R /Pg 464 0 R /K [ 24 << /Type /OBJR /Obj 3256 0 R >> ] >> endobj 3256 0 obj << /Subtype /Link /Rect [ 518.224 542.48572 569.224 555.48572 ] /StructParent 393 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 662 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/timemod.c)>> >> endobj 3257 0 obj << /Subtype /Link /Rect [ 394.252 542.48572 462.56799 555.48572 ] /StructParent 392 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 655 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/spacemod.cpp)>> >> endobj 3258 0 obj << /Subtype /Link /Rect [ 46 542.48572 102.328 555.48572 ] /StructParent 391 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 943 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/appmodels.html)>> >> endobj 3259 0 obj << /S /Link /P 3232 0 R /Pg 464 0 R /K [ 16 << /Type /OBJR /Obj 3262 0 R >> ] >> endobj 3260 0 obj << /S /Link /P 3232 0 R /Pg 464 0 R /K [ 18 << /Type /OBJR /Obj 3261 0 R >> ] >> endobj 3261 0 obj << /Subtype /Link /Rect [ 130.66 577.88571 204.328 590.88571 ] /StructParent 390 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 449 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/quiz.html)>> >> endobj 3262 0 obj << /Subtype /Link /Rect [ 46 577.88571 102.328 590.88571 ] /StructParent 389 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 449 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/quiz.html)>> >> endobj 3263 0 obj << /S /Link /P 3231 0 R /Pg 464 0 R /K [ 12 << /Type /OBJR /Obj 3266 0 R >> ] >> endobj 3264 0 obj << /S /Link /P 3231 0 R /Pg 464 0 R /K [ 14 << /Type /OBJR /Obj 3265 0 R >> ] >> endobj 3265 0 obj << /Subtype /Link /Rect [ 320.32001 613.28572 365.65601 626.28572 ] /StructParent 388 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 913 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec076.html)>> >> endobj 3266 0 obj << /Subtype /Link /Rect [ 67.66 613.28572 176.02 626.28572 ] /StructParent 387 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 935 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sol07.html)>> >> endobj 3267 0 obj << /S /Link /P 3229 0 R /Pg 459 0 R /K [ 9 << /Type /OBJR /Obj 3282 0 R >> ] >> endobj 3268 0 obj << /S /Link /P 3229 0 R /Pg 459 0 R /K [ 11 << /Type /OBJR /Obj 3281 0 R >> ] >> endobj 3269 0 obj << /S /Link /P 3229 0 R /Pg 459 0 R /K [ 13 << /Type /OBJR /Obj 3280 0 R >> ] >> endobj 3270 0 obj << /S /Link /P 3229 0 R /Pg 464 0 R /K [ 0 << /Type /OBJR /Obj 3279 0 R >> ] >> endobj 3271 0 obj << /S /Link /P 3229 0 R /Pg 464 0 R /K [ 2 << /Type /OBJR /Obj 3278 0 R >> ] >> endobj 3272 0 obj << /S /Link /P 3229 0 R /Pg 464 0 R /K [ 4 << /Type /OBJR /Obj 3277 0 R >> ] >> endobj 3273 0 obj << /S /Link /P 3229 0 R /Pg 464 0 R /K [ 6 << /Type /OBJR /Obj 3276 0 R >> ] >> endobj 3274 0 obj << /S /Link /P 3229 0 R /Pg 464 0 R /K [ 8 << /Type /OBJR /Obj 3275 0 R >> ] >> endobj 3275 0 obj << /Subtype /Link /Rect [ 46 686.2 240.64 699.2 ] /StructParent 386 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 927 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec078.html)>> >> endobj 3276 0 obj << /Subtype /Link /Rect [ 46 702.60001 142.32401 715.60001 ] /StructParent 385 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 922 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec077.html)>> >> endobj 3277 0 obj << /Subtype /Link /Rect [ 46 719 109.336 732 ] /StructParent 384 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 913 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec076.html)>> >> endobj 3278 0 obj << /Subtype /Link /Rect [ 46 735.39999 112 748.39999 ] /StructParent 383 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 908 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec075.html)>> >> endobj 3279 0 obj << /Subtype /Link /Rect [ 46 751.8 121.15601 764.8 ] /StructParent 382 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 903 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec074.html)>> >> endobj 3280 0 obj << /Subtype /Link /Rect [ 46 49.8922 132.98801 62.8922 ] /StructParent 380 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 894 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec073.html)>> >> endobj 3281 0 obj << /Subtype /Link /Rect [ 46 66.29219 174.976 79.29219 ] /StructParent 379 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 885 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec072.html)>> >> endobj 3282 0 obj << /Subtype /Link /Rect [ 46 82.69218 121.01199 95.69218 ] /StructParent 378 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 861 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec071.html)>> >> endobj 3283 0 obj << /S /Link /P 3221 0 R /K [ 3284 0 R << /Type /OBJR /Pg 459 0 R /Obj 3285 0 R >> ] >> endobj 3284 0 obj << /S /I /P 3283 0 R /Pg 459 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 3285 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 377 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 3286 0 obj << /S /P /P 2082 0 R /K 3327 0 R >> endobj 3287 0 obj << /S /H1 /P 2082 0 R /Pg 468 0 R /K 1 >> endobj 3288 0 obj << /S /P /P 2082 0 R /Pg 468 0 R /K [ 3318 0 R 3 3319 0 R 5 3320 0 R 7 3321 0 R 9 ] >> endobj 3289 0 obj << /S /P /P 2082 0 R /Pg 468 0 R /K 10 >> endobj 3290 0 obj << /S /P /P 2082 0 R /Pg 468 0 R /K [ 11 3316 0 R 13 ] >> endobj 3291 0 obj << /S /H4 /P 2082 0 R /Pg 468 0 R /K 14 >> endobj 3292 0 obj << /S /P /P 2082 0 R /Pg 468 0 R /K [ 15 3314 0 R 17 ] >> endobj 3293 0 obj << /S /H4 /P 2082 0 R /Pg 468 0 R /K 18 >> endobj 3294 0 obj << /S /P /P 2082 0 R /Pg 468 0 R /K [ 19 3305 0 R 21 3306 0 R 23 3307 0 R 25 3308 0 R 27 ] >> endobj 3295 0 obj << /S /P /P 2082 0 R /Pg 468 0 R /K [ 28 3303 0 R 30 ] >> endobj 3296 0 obj << /S /H4 /P 2082 0 R /Pg 468 0 R /K 31 >> endobj 3297 0 obj << /S /P /P 2082 0 R /Pg 473 0 R /K 0 >> endobj 3298 0 obj << /S /P /P 2082 0 R /Pg 473 0 R /K 1 >> endobj 3299 0 obj << /S /P /P 2082 0 R /Pg 473 0 R /K 2 >> endobj 3300 0 obj << /S /P /P 2082 0 R /Pg 473 0 R /K 3 >> endobj 3301 0 obj << /S /P /P 2082 0 R /Pg 473 0 R /K 4 >> endobj 3302 0 obj << /S /P /P 2082 0 R /Pg 473 0 R /K 5 >> endobj 3303 0 obj << /S /Link /P 3295 0 R /Pg 468 0 R /K [ 29 << /Type /OBJR /Obj 3304 0 R >> ] >> endobj 3304 0 obj << /Subtype /Link /Rect [ 269.95599 92.08571 326.93201 105.08571 ] /StructParent 415 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 476 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/code.html)>> >> endobj 3305 0 obj << /S /Link /P 3294 0 R /Pg 468 0 R /K [ 20 << /Type /OBJR /Obj 3313 0 R >> ] >> endobj 3306 0 obj << /S /Link /P 3294 0 R /Pg 468 0 R /K [ 22 << /Type /OBJR /Obj 3312 0 R >> << /Type /OBJR /Obj 3311 0 R >> ] >> endobj 3307 0 obj << /S /Link /P 3294 0 R /Pg 468 0 R /K [ 24 << /Type /OBJR /Obj 3310 0 R >> ] >> endobj 3308 0 obj << /S /Link /P 3294 0 R /Pg 468 0 R /K [ 26 << /Type /OBJR /Obj 3309 0 R >> ] >> endobj 3309 0 obj << /Subtype /Link /Rect [ 422.59599 127.48572 466.576 140.48572 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.mirrorworlds.com/press/articles/comp\ uterworld/April201998/980420id.html \\n\\nThis file was not retrieved b\ y Teleport Pro, because it is addressed on a domain or path outside the \ boundaries set for its Starting Address. \\n\\nDo you want to open it f\ rom the server?'\)\)window.location='http://www.mirrorworlds.com/press/a\ rticles/computerworld/April201998/980420id.html')>> /Border [ 0 0 0 ] /StructParent 414 >> endobj 3310 0 obj << /Subtype /Link /Rect [ 295.612 127.48572 371.608 140.48572 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.computerworld.com/ \\n\\nThis file \ was not retrieved by Teleport Pro, because it is addressed on a domain o\ r path outside the boundaries set for its Starting Address. \\n\\nDo yo\ u want to open it from the server?'\)\)window.location='http://www.compu\ terworld.com/')>> /Border [ 0 0 0 ] /StructParent 413 >> endobj 3311 0 obj << /Subtype /Link /Rect [ 46 127.48572 72.664 140.48572 ] /StructParent 412 /Border [ 0 0 0 ] /A << /S /GoTo /D (a\)g:sG2elegance)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#elegan\ ce)>> >> endobj 3312 0 obj << /Subtype /Link /Rect [ 528.616 143.88571 583.276 156.88571 ] /StructParent 411 /Border [ 0 0 0 ] /A << /S /GoTo /D (a\)g:sG2elegance)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#elegan\ ce)>> >> endobj 3313 0 obj << /Subtype /Link /Rect [ 165.64 143.88571 213.31599 156.88571 ] /StructParent 410 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 691 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/cto.html)>> >> endobj 3314 0 obj << /S /Link /P 3292 0 R /Pg 468 0 R /K [ 16 << /Type /OBJR /Obj 3315 0 R >> ] >> endobj 3315 0 obj << /Subtype /Link /Rect [ 116.332 212.68571 199.98399 225.68571 ] /StructParent 409 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 440 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/tricks.html)>> >> endobj 3316 0 obj << /S /Link /P 3290 0 R /Pg 468 0 R /K [ 12 << /Type /OBJR /Obj 3317 0 R >> ] >> endobj 3317 0 obj << /Subtype /Link /Rect [ 167.308 425.48572 252.976 438.48572 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.cs.bell-labs.com/cm/cs/pearls/fyi.pp\ s \\n\\nThis file was not retrieved by Teleport Pro, because it is link\ ed too far away from its Starting Address. If you increase the in-domain\ depth setting for the Starting Address, this file will be queued for re\ trieval. \\n\\nDo you want to open it from the server?'\)\)window.locat\ ion='http://www.cs.bell-labs.com/cm/cs/pearls/fyi.pps')>> /Border [ 0 0 0 ] /StructParent 408 >> endobj 3318 0 obj << /S /Link /P 3288 0 R /Pg 468 0 R /K [ 2 << /Type /OBJR /Obj 3326 0 R >> ] >> endobj 3319 0 obj << /S /Link /P 3288 0 R /Pg 468 0 R /K [ 4 << /Type /OBJR /Obj 3325 0 R >> << /Type /OBJR /Obj 3324 0 R >> ] >> endobj 3320 0 obj << /S /Link /P 3288 0 R /Pg 468 0 R /K [ 6 << /Type /OBJR /Obj 3323 0 R >> ] >> endobj 3321 0 obj << /S /Link /P 3288 0 R /Pg 468 0 R /K [ 8 << /Type /OBJR /Obj 3322 0 R >> ] >> endobj 3322 0 obj << /Subtype /Link /Rect [ 63.664 638.28572 294.29201 651.28572 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.cs.duke.edu/ \\n\\nThis file was no\ t retrieved by Teleport Pro, because it is addressed on a domain or path\ outside the boundaries set for its Starting Address. \\n\\nDo you want\ to open it from the server?'\)\)window.location='http://www.cs.duke.edu\ /')>> /Border [ 0 0 0 ] /StructParent 407 >> endobj 3323 0 obj << /Subtype /Link /Rect [ 185.32001 654.68571 324.64 667.68571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.nsf.gov/ \\n\\nThis file was not re\ trieved by Teleport Pro, because it is addressed on a domain or path out\ side the boundaries set for its Starting Address. \\n\\nDo you want to \ open it from the server?'\)\)window.location='http://www.nsf.gov/')>> /Border [ 0 0 0 ] /StructParent 406 >> endobj 3324 0 obj << /Subtype /Link /Rect [ 46 654.68571 97.996 667.68571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.cs.duke.edu/csed/fyi/ \\n\\nThis fi\ le was not retrieved by Teleport Pro, because it is addressed on a domai\ n or path outside the boundaries set for its Starting Address. \\n\\nDo\ you want to open it from the server?'\)\)window.location='http://www.cs\ .duke.edu/csed/fyi/')>> /Border [ 0 0 0 ] /StructParent 405 >> endobj 3325 0 obj << /Subtype /Link /Rect [ 187.948 671.08571 304.26401 684.08571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.cs.duke.edu/csed/fyi/ \\n\\nThis fi\ le was not retrieved by Teleport Pro, because it is addressed on a domai\ n or path outside the boundaries set for its Starting Address. \\n\\nDo\ you want to open it from the server?'\)\)window.location='http://www.cs\ .duke.edu/csed/fyi/')>> /Border [ 0 0 0 ] /StructParent 404 >> endobj 3326 0 obj << /Subtype /Link /Rect [ 46 671.08571 126.304 684.08571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.cs.duke.edu/~ola/ \\n\\nThis file w\ as not retrieved by Teleport Pro, because it is addressed on a domain or\ path outside the boundaries set for its Starting Address. \\n\\nDo you\ want to open it from the server?'\)\)window.location='http://www.cs.duk\ e.edu/~ola/')>> /Border [ 0 0 0 ] /StructParent 403 >> endobj 3327 0 obj << /S /Link /P 3286 0 R /K [ 3328 0 R << /Type /OBJR /Pg 468 0 R /Obj 3329 0 R >> ] >> endobj 3328 0 obj << /S /I /P 3327 0 R /Pg 468 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 3329 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 402 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 3330 0 obj << /S /P /P 2080 0 R /K 3424 0 R >> endobj 3331 0 obj << /S /H1 /P 2080 0 R /Pg 476 0 R /K 1 >> endobj 3332 0 obj << /S /UL /P 2080 0 R /A 3335 0 R /K [ 3336 0 R 3337 0 R 3338 0 R 3339 0 R 3340 0 R 3341 0 R 3342 0 R 3343 0 R 3344 0 R 3345 0 R 3346 0 R 3347 0 R ] >> endobj 3333 0 obj << /S /P /P 2080 0 R /Pg 481 0 R /K 24 >> endobj 3334 0 obj << /S /P /P 2080 0 R /Pg 481 0 R /K 25 >> endobj 3335 0 obj << /O /List /ListNumbering /Disc >> endobj 3336 0 obj << /S /LI /P 3332 0 R /K [ 3414 0 R 3415 0 R ] >> endobj 3337 0 obj << /S /LI /P 3332 0 R /K [ 3406 0 R 3407 0 R ] >> endobj 3338 0 obj << /S /LI /P 3332 0 R /K [ 3402 0 R 3403 0 R ] >> endobj 3339 0 obj << /S /LI /P 3332 0 R /K [ 3398 0 R 3399 0 R ] >> endobj 3340 0 obj << /S /LI /P 3332 0 R /K [ 3394 0 R 3395 0 R ] >> endobj 3341 0 obj << /S /LI /P 3332 0 R /K [ 3388 0 R 3389 0 R ] >> endobj 3342 0 obj << /S /LI /P 3332 0 R /K [ 3382 0 R 3383 0 R ] >> endobj 3343 0 obj << /S /LI /P 3332 0 R /K [ 3378 0 R 3379 0 R ] >> endobj 3344 0 obj << /S /LI /P 3332 0 R /K [ 3374 0 R 3375 0 R ] >> endobj 3345 0 obj << /S /LI /P 3332 0 R /K [ 3370 0 R 3371 0 R ] >> endobj 3346 0 obj << /S /LI /P 3332 0 R /K [ 3354 0 R 3355 0 R ] >> endobj 3347 0 obj << /S /LI /P 3332 0 R /K [ 3348 0 R 3349 0 R ] >> endobj 3348 0 obj << /S /Lbl /P 3347 0 R /Pg 481 0 R /K 18 >> endobj 3349 0 obj << /S /LBody /P 3347 0 R /Pg 481 0 R /K [ 19 3350 0 R 21 3351 0 R 23 ] >> endobj 3350 0 obj << /S /Link /P 3349 0 R /Pg 481 0 R /K [ 20 << /Type /OBJR /Obj 3353 0 R >> ] >> endobj 3351 0 obj << /S /Link /P 3349 0 R /Pg 481 0 R /K [ 22 << /Type /OBJR /Obj 3352 0 R >> ] >> endobj 3352 0 obj << /Subtype /Link /Rect [ 86 523 137 536 ] /StructParent 445 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 662 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/timemod.c)>> >> endobj 3353 0 obj << /Subtype /Link /Rect [ 86 539.39999 154.31599 552.39999 ] /StructParent 444 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 655 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/spacemod.cpp)>> >> endobj 3354 0 obj << /S /Lbl /P 3346 0 R /Pg 481 0 R /K 2 >> endobj 3355 0 obj << /S /LBody /P 3346 0 R /Pg 481 0 R /K [ 3 3356 0 R 5 3357 0 R 7 3358 0 R 9 3359 0 R 11 3360 0 R 13 3361 0 R 15 3362 0 R 17 ] >> endobj 3356 0 obj << /S /Link /P 3355 0 R /Pg 481 0 R /K [ 4 << /Type /OBJR /Obj 3369 0 R >> ] >> endobj 3357 0 obj << /S /Link /P 3355 0 R /Pg 481 0 R /K [ 6 << /Type /OBJR /Obj 3368 0 R >> ] >> endobj 3358 0 obj << /S /Link /P 3355 0 R /Pg 481 0 R /K [ 8 << /Type /OBJR /Obj 3367 0 R >> ] >> endobj 3359 0 obj << /S /Link /P 3355 0 R /Pg 481 0 R /K [ 10 << /Type /OBJR /Obj 3366 0 R >> ] >> endobj 3360 0 obj << /S /Link /P 3355 0 R /Pg 481 0 R /K [ 12 << /Type /OBJR /Obj 3365 0 R >> ] >> endobj 3361 0 obj << /S /Link /P 3355 0 R /Pg 481 0 R /K [ 14 << /Type /OBJR /Obj 3364 0 R >> ] >> endobj 3362 0 obj << /S /Link /P 3355 0 R /Pg 481 0 R /K [ 16 << /Type /OBJR /Obj 3363 0 R >> ] >> endobj 3363 0 obj << /Subtype /Link /Rect [ 86 589.2 142.98801 602.2 ] /StructParent 443 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 144 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/markovlet.c)>> >> endobj 3364 0 obj << /Subtype /Link /Rect [ 86 605.60001 152.98399 618.60001 ] /StructParent 442 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 155 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/markovhash.c)>> >> endobj 3365 0 obj << /Subtype /Link /Rect [ 86 622 130.98801 635 ] /StructParent 441 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 148 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/markov.c)>> >> endobj 3366 0 obj << /Subtype /Link /Rect [ 86 638.39999 133.664 651.39999 ] /StructParent 440 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 95 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/longdup.c)>> >> endobj 3367 0 obj << /Subtype /Link /Rect [ 86 654.8 138.308 667.8 ] /StructParent 439 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 648 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/wordfreq.c)>> >> endobj 3368 0 obj << /Subtype /Link /Rect [ 86 671.2 150.308 684.2 ] /StructParent 438 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 644 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/wordfreq.cpp)>> >> endobj 3369 0 obj << /Subtype /Link /Rect [ 86 687.60001 145.664 700.60001 ] /StructParent 437 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 640 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/wordlist.cpp)>> >> endobj 3370 0 obj << /S /Lbl /P 3345 0 R /Pg 476 0 R /K 52 >> endobj 3371 0 obj << /S /LBody /P 3345 0 R /Pg 476 0 R /K [ 53 3372 0 R << /Type /MCR /Pg 481 0 R /MCID 1 >> ] >> endobj 3372 0 obj << /S /Link /P 3371 0 R /Pg 481 0 R /K [ 0 << /Type /OBJR /Obj 3373 0 R >> ] >> endobj 3373 0 obj << /Subtype /Link /Rect [ 86 751.8 148.31599 764.8 ] /StructParent 436 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 633 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/priqueue.cpp)>> >> endobj 3374 0 obj << /S /Lbl /P 3344 0 R /Pg 476 0 R /K 48 >> endobj 3375 0 obj << /S /LBody /P 3344 0 R /Pg 476 0 R /K [ 49 3376 0 R 51 ] >> endobj 3376 0 obj << /S /Link /P 3375 0 R /Pg 476 0 R /K [ 50 << /Type /OBJR /Obj 3377 0 R >> ] >> endobj 3377 0 obj << /Subtype /Link /Rect [ 86 99.03505 124.328 112.03505 ] /StructParent 434 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 611 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sets.cpp)>> >> endobj 3378 0 obj << /S /Lbl /P 3343 0 R /Pg 476 0 R /K 44 >> endobj 3379 0 obj << /S /LBody /P 3343 0 R /Pg 476 0 R /K [ 45 3380 0 R 47 ] >> endobj 3380 0 obj << /S /Link /P 3379 0 R /Pg 476 0 R /K [ 46 << /Type /OBJR /Obj 3381 0 R >> ] >> endobj 3381 0 obj << /Subtype /Link /Rect [ 86 148.83505 156.98 161.83505 ] /StructParent 433 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 604 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sortedrand.cpp)>> >> endobj 3382 0 obj << /S /Lbl /P 3342 0 R /Pg 476 0 R /K 38 >> endobj 3383 0 obj << /S /LBody /P 3342 0 R /Pg 476 0 R /K [ 39 3384 0 R 41 3385 0 R 43 ] >> endobj 3384 0 obj << /S /Link /P 3383 0 R /Pg 476 0 R /K [ 40 << /Type /OBJR /Obj 3387 0 R >> ] >> endobj 3385 0 obj << /S /Link /P 3383 0 R /Pg 476 0 R /K [ 42 << /Type /OBJR /Obj 3386 0 R >> ] >> endobj 3386 0 obj << /Subtype /Link /Rect [ 86 198.63504 156.332 211.63504 ] /StructParent 432 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 588 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/SortAnim.java)>> >> endobj 3387 0 obj << /Subtype /Link /Rect [ 86 215.03505 124.328 228.03505 ] /StructParent 431 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 566 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sort.cpp)>> >> endobj 3388 0 obj << /S /Lbl /P 3341 0 R /Pg 476 0 R /K 32 >> endobj 3389 0 obj << /S /LBody /P 3341 0 R /Pg 476 0 R /K [ 33 3390 0 R 35 3391 0 R 37 ] >> endobj 3390 0 obj << /S /Link /P 3389 0 R /Pg 476 0 R /K [ 34 << /Type /OBJR /Obj 3393 0 R >> ] >> endobj 3391 0 obj << /S /Link /P 3389 0 R /Pg 476 0 R /K [ 36 << /Type /OBJR /Obj 3392 0 R >> ] >> endobj 3392 0 obj << /Subtype /Link /Rect [ 86 279.23505 130.31599 292.23505 ] /StructParent 430 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 559 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/macfun.c)>> >> endobj 3393 0 obj << /Subtype /Link /Rect [ 86 295.63504 131.66 308.63504 ] /StructParent 429 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 552 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/genbins.c)>> >> endobj 3394 0 obj << /S /Lbl /P 3340 0 R /Pg 476 0 R /K 28 >> endobj 3395 0 obj << /S /LBody /P 3340 0 R /Pg 476 0 R /K [ 29 3396 0 R 31 ] >> endobj 3396 0 obj << /S /Link /P 3395 0 R /Pg 476 0 R /K [ 30 << /Type /OBJR /Obj 3397 0 R >> ] >> endobj 3397 0 obj << /Subtype /Link /Rect [ 86 345.43504 134.996 358.43504 ] /StructParent 428 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 542 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/maxsum.c)>> >> endobj 3398 0 obj << /S /Lbl /P 3339 0 R /Pg 476 0 R /K 24 >> endobj 3399 0 obj << /S /LBody /P 3339 0 R /Pg 476 0 R /K [ 25 3400 0 R 27 ] >> endobj 3400 0 obj << /S /Link /P 3399 0 R /Pg 476 0 R /K [ 26 << /Type /OBJR /Obj 3401 0 R >> ] >> endobj 3401 0 obj << /Subtype /Link /Rect [ 86 396.48572 143 409.48572 ] /StructParent 427 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 538 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/timemod0.c)>> >> endobj 3402 0 obj << /S /Lbl /P 3338 0 R /Pg 476 0 R /K 20 >> endobj 3403 0 obj << /S /LBody /P 3338 0 R /Pg 476 0 R /K [ 21 3404 0 R 23 ] >> endobj 3404 0 obj << /S /Link /P 3403 0 R /Pg 476 0 R /K [ 22 << /Type /OBJR /Obj 3405 0 R >> ] >> endobj 3405 0 obj << /Subtype /Link /Rect [ 86 446.28572 124.976 459.28572 ] /StructParent 426 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 522 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/search.c)>> >> endobj 3406 0 obj << /S /Lbl /P 3337 0 R /Pg 476 0 R /K 12 >> endobj 3407 0 obj << /S /LBody /P 3337 0 R /Pg 476 0 R /K [ 13 3408 0 R 15 3409 0 R 17 3410 0 R 19 ] >> endobj 3408 0 obj << /S /Link /P 3407 0 R /Pg 476 0 R /K [ 14 << /Type /OBJR /Obj 3413 0 R >> ] >> endobj 3409 0 obj << /S /Link /P 3407 0 R /Pg 476 0 R /K [ 16 << /Type /OBJR /Obj 3412 0 R >> ] >> endobj 3410 0 obj << /S /Link /P 3407 0 R /Pg 476 0 R /K [ 18 << /Type /OBJR /Obj 3411 0 R >> ] >> endobj 3411 0 obj << /Subtype /Link /Rect [ 86 496.08571 126.992 509.08571 ] /StructParent 425 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 518 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/squash.c)>> >> endobj 3412 0 obj << /Subtype /Link /Rect [ 86 512.48572 114.332 525.48572 ] /StructParent 424 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 514 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sign.c)>> >> endobj 3413 0 obj << /Subtype /Link /Rect [ 86 557.68571 121.65199 570.68571 ] /StructParent 423 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 501 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/rotate.c)>> >> endobj 3414 0 obj << /S /Lbl /P 3336 0 R /Pg 476 0 R /K 2 >> endobj 3415 0 obj << /S /LBody /P 3336 0 R /Pg 476 0 R /K [ 3 3416 0 R 5 3417 0 R 7 3418 0 R 9 3419 0 R 11 ] >> endobj 3416 0 obj << /S /Link /P 3415 0 R /Pg 476 0 R /K [ 4 << /Type /OBJR /Obj 3423 0 R >> ] >> endobj 3417 0 obj << /S /Link /P 3415 0 R /Pg 476 0 R /K [ 6 << /Type /OBJR /Obj 3422 0 R >> ] >> endobj 3418 0 obj << /S /Link /P 3415 0 R /Pg 476 0 R /K [ 8 << /Type /OBJR /Obj 3421 0 R >> ] >> endobj 3419 0 obj << /S /Link /P 3415 0 R /Pg 476 0 R /K [ 10 << /Type /OBJR /Obj 3420 0 R >> ] >> endobj 3420 0 obj << /Subtype /Link /Rect [ 86 607.48572 142.328 620.48572 ] /StructParent 422 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 497 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bitsortgen.c)>> >> endobj 3421 0 obj << /Subtype /Link /Rect [ 86 623.88571 135.668 636.88571 ] /StructParent 421 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 493 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/qsortints.c)>> >> endobj 3422 0 obj << /Subtype /Link /Rect [ 86 640.28572 141.668 653.28572 ] /StructParent 420 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 489 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sortints.cpp)>> >> endobj 3423 0 obj << /Subtype /Link /Rect [ 86 656.68571 125 669.68571 ] /StructParent 419 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 485 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bitsort.c)>> >> endobj 3424 0 obj << /S /Link /P 3330 0 R /K [ 3425 0 R << /Type /OBJR /Pg 476 0 R /Obj 3426 0 R >> ] >> endobj 3425 0 obj << /S /I /P 3424 0 R /Pg 476 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 3426 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 418 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 3427 0 obj << /S /P /P 2078 0 R /Pg 485 0 R /K 0 >> endobj 3428 0 obj << /S /P /P 2076 0 R /Pg 489 0 R /K 0 >> endobj 3429 0 obj << /S /P /P 2074 0 R /Pg 493 0 R /K 0 >> endobj 3430 0 obj << /S /P /P 2072 0 R /Pg 497 0 R /K 0 >> endobj 3431 0 obj << /S /P /P 2070 0 R /Pg 501 0 R /K [ 0 << /Type /MCR /Pg 505 0 R /MCID 0 >> << /Type /MCR /Pg 508 0 R /MCID 0 >> << /Type /MCR /Pg 511 0 R /MCID 0 >> ] >> endobj 3432 0 obj << /S /P /P 2068 0 R /Pg 514 0 R /K 0 >> endobj 3433 0 obj << /S /P /P 2066 0 R /Pg 518 0 R /K 0 >> endobj 3434 0 obj << /S /P /P 2064 0 R /Pg 522 0 R /K [ 0 << /Type /MCR /Pg 526 0 R /MCID 0 >> << /Type /MCR /Pg 529 0 R /MCID 0 >> << /Type /MCR /Pg 532 0 R /MCID 0 >> << /Type /MCR /Pg 535 0 R /MCID 0 >> ] >> endobj 3435 0 obj << /S /P /P 2062 0 R /Pg 538 0 R /K 0 >> endobj 3436 0 obj << /S /P /P 2060 0 R /Pg 542 0 R /K [ 0 << /Type /MCR /Pg 546 0 R /MCID 0 >> << /Type /MCR /Pg 549 0 R /MCID 0 >> ] >> endobj 3437 0 obj << /S /P /P 2058 0 R /Pg 552 0 R /K [ 0 << /Type /MCR /Pg 556 0 R /MCID 0 >> ] >> endobj 3438 0 obj << /S /P /P 2056 0 R /Pg 559 0 R /K [ 0 << /Type /MCR /Pg 563 0 R /MCID 0 >> ] >> endobj 3439 0 obj << /S /P /P 2054 0 R /Pg 566 0 R /K [ 0 << /Type /MCR /Pg 570 0 R /MCID 0 >> << /Type /MCR /Pg 573 0 R /MCID 0 >> << /Type /MCR /Pg 576 0 R /MCID 0 >> << /Type /MCR /Pg 579 0 R /MCID 0 >> << /Type /MCR /Pg 582 0 R /MCID 0 >> << /Type /MCR /Pg 585 0 R /MCID 0 >> ] >> endobj 3440 0 obj << /S /P /P 2052 0 R /Pg 588 0 R /K [ 0 << /Type /MCR /Pg 592 0 R /MCID 0 >> << /Type /MCR /Pg 595 0 R /MCID 0 >> << /Type /MCR /Pg 598 0 R /MCID 0 >> << /Type /MCR /Pg 601 0 R /MCID 0 >> ] >> endobj 3441 0 obj << /S /P /P 2050 0 R /Pg 604 0 R /K [ 0 << /Type /MCR /Pg 608 0 R /MCID 0 >> ] >> endobj 3442 0 obj << /S /P /P 2048 0 R /Pg 611 0 R /K [ 0 << /Type /MCR /Pg 615 0 R /MCID 0 >> << /Type /MCR /Pg 618 0 R /MCID 0 >> << /Type /MCR /Pg 621 0 R /MCID 0 >> << /Type /MCR /Pg 624 0 R /MCID 0 >> << /Type /MCR /Pg 627 0 R /MCID 0 >> << /Type /MCR /Pg 630 0 R /MCID 0 >> ] >> endobj 3443 0 obj << /S /P /P 2046 0 R /Pg 633 0 R /K [ 0 << /Type /MCR /Pg 637 0 R /MCID 0 >> ] >> endobj 3444 0 obj << /S /P /P 2044 0 R /Pg 640 0 R /K 0 >> endobj 3445 0 obj << /S /P /P 2042 0 R /Pg 644 0 R /K 0 >> endobj 3446 0 obj << /S /P /P 2040 0 R /Pg 648 0 R /K [ 0 << /Type /MCR /Pg 652 0 R /MCID 0 >> ] >> endobj 3447 0 obj << /S /P /P 2038 0 R /Pg 655 0 R /K [ 0 << /Type /MCR /Pg 659 0 R /MCID 0 >> ] >> endobj 3448 0 obj << /S /P /P 2036 0 R /Pg 662 0 R /K [ 0 << /Type /MCR /Pg 666 0 R /MCID 0 >> ] >> endobj 3449 0 obj << /S /P /P 2034 0 R /K 3577 0 R >> endobj 3450 0 obj << /S /H1 /P 2034 0 R /Pg 669 0 R /K 1 >> endobj 3451 0 obj << /S /P /P 2034 0 R /Pg 669 0 R /K 2 >> endobj 3452 0 obj << /S /H2 /P 2034 0 R /Pg 669 0 R /K 3 >> endobj 3453 0 obj << /S /P /P 2034 0 R /Pg 669 0 R /K 4 >> endobj 3454 0 obj << /S /DL /P 2034 0 R /K 3575 0 R >> endobj 3455 0 obj << /S /P /P 2034 0 R /Pg 669 0 R /K 6 >> endobj 3456 0 obj << /S /DL /P 2034 0 R /K [ 3569 0 R 3570 0 R 3571 0 R ] >> endobj 3457 0 obj << /S /P /P 2034 0 R /Pg 669 0 R /K 10 >> endobj 3458 0 obj << /S /DL /P 2034 0 R /K [ 3563 0 R 3564 0 R 3565 0 R ] >> endobj 3459 0 obj << /S /P /P 2034 0 R /Pg 669 0 R /K 14 >> endobj 3460 0 obj << /S /H2 /P 2034 0 R /Pg 674 0 R /K 0 >> endobj 3461 0 obj << /S /P /P 2034 0 R /Pg 674 0 R /K 1 >> endobj 3462 0 obj << /S /DL /P 2034 0 R /K [ 3555 0 R 3556 0 R 3557 0 R 3558 0 R ] >> endobj 3463 0 obj << /S /P /P 2034 0 R /Pg 674 0 R /K 6 >> endobj 3464 0 obj << /S /DL /P 2034 0 R /K 3553 0 R >> endobj 3465 0 obj << /S /H2 /P 2034 0 R /Pg 674 0 R /K 8 >> endobj 3466 0 obj << /S /P /P 2034 0 R /Pg 674 0 R /K 9 >> endobj 3467 0 obj << /S /DL /P 2034 0 R /K 3551 0 R >> endobj 3468 0 obj << /S /P /P 2034 0 R /Pg 674 0 R /K 11 >> endobj 3469 0 obj << /S /DL /P 2034 0 R /K 3549 0 R >> endobj 3470 0 obj << /S /P /P 2034 0 R /Pg 674 0 R /K 13 >> endobj 3471 0 obj << /S /DL /P 2034 0 R /K 3547 0 R >> endobj 3472 0 obj << /S /P /P 2034 0 R /Pg 674 0 R /K [ 15 << /Type /MCR /Pg 677 0 R /MCID 0 >> ] >> endobj 3473 0 obj << /S /DL /P 2034 0 R /K 3545 0 R >> endobj 3474 0 obj << /S /P /P 2034 0 R /Pg 677 0 R /K 2 >> endobj 3475 0 obj << /S /H2 /P 2034 0 R /Pg 677 0 R /K 3 >> endobj 3476 0 obj << /S /P /P 2034 0 R /Pg 677 0 R /K 4 >> endobj 3477 0 obj << /S /DL /P 2034 0 R /K 3543 0 R >> endobj 3478 0 obj << /S /P /P 2034 0 R /Pg 677 0 R /K 6 >> endobj 3479 0 obj << /S /DL /P 2034 0 R /K 3541 0 R >> endobj 3480 0 obj << /S /P /P 2034 0 R /Pg 677 0 R /K 8 >> endobj 3481 0 obj << /S /DL /P 2034 0 R /K 3539 0 R >> endobj 3482 0 obj << /S /P /P 2034 0 R /Pg 677 0 R /K 10 >> endobj 3483 0 obj << /S /H2 /P 2034 0 R /Pg 677 0 R /K 11 >> endobj 3484 0 obj << /S /P /P 2034 0 R /Pg 677 0 R /K 12 >> endobj 3485 0 obj << /S /DL /P 2034 0 R /K [ 3535 0 R 3536 0 R ] >> endobj 3486 0 obj << /S /P /P 2034 0 R /Pg 680 0 R /K 1 >> endobj 3487 0 obj << /S /DL /P 2034 0 R /K [ 3531 0 R 3532 0 R ] >> endobj 3488 0 obj << /S /P /P 2034 0 R /Pg 680 0 R /K 4 >> endobj 3489 0 obj << /S /DL /P 2034 0 R /K 3529 0 R >> endobj 3490 0 obj << /S /P /P 2034 0 R /Pg 680 0 R /K 6 >> endobj 3491 0 obj << /S /DL /P 2034 0 R /K [ 3521 0 R 3522 0 R 3523 0 R 3524 0 R ] >> endobj 3492 0 obj << /S /P /P 2034 0 R /Pg 680 0 R /K 11 >> endobj 3493 0 obj << /S /H2 /P 2034 0 R /Pg 680 0 R /K 12 >> endobj 3494 0 obj << /S /P /P 2034 0 R /Pg 680 0 R /K 13 >> endobj 3495 0 obj << /S /DL /P 2034 0 R /K [ 3511 0 R 3512 0 R 3513 0 R 3514 0 R 3515 0 R ] >> endobj 3496 0 obj << /S /P /P 2034 0 R /Pg 683 0 R /K 3 >> endobj 3497 0 obj << /S /DL /P 2034 0 R /K 3509 0 R >> endobj 3498 0 obj << /S /P /P 2034 0 R /Pg 683 0 R /K 5 >> endobj 3499 0 obj << /S /DL /P 2034 0 R /K 3507 0 R >> endobj 3500 0 obj << /S /P /P 2034 0 R /Pg 683 0 R /K 7 >> endobj 3501 0 obj << /S /DL /P 2034 0 R /K [ 3503 0 R 3504 0 R ] >> endobj 3502 0 obj << /S /P /P 2034 0 R /Pg 683 0 R /K 10 >> endobj 3503 0 obj << /S /DD /P 3501 0 R /K 3506 0 R >> endobj 3504 0 obj << /S /DD /P 3501 0 R /K 3505 0 R >> endobj 3505 0 obj << /S /LBody /P 3504 0 R /Pg 683 0 R /K 9 >> endobj 3506 0 obj << /S /LBody /P 3503 0 R /Pg 683 0 R /K 8 >> endobj 3507 0 obj << /S /DD /P 3499 0 R /K 3508 0 R >> endobj 3508 0 obj << /S /LBody /P 3507 0 R /Pg 683 0 R /K 6 >> endobj 3509 0 obj << /S /DD /P 3497 0 R /K 3510 0 R >> endobj 3510 0 obj << /S /LBody /P 3509 0 R /Pg 683 0 R /K 4 >> endobj 3511 0 obj << /S /DD /P 3495 0 R /K 3520 0 R >> endobj 3512 0 obj << /S /DD /P 3495 0 R /K 3519 0 R >> endobj 3513 0 obj << /S /DD /P 3495 0 R /K 3518 0 R >> endobj 3514 0 obj << /S /DD /P 3495 0 R /K 3517 0 R >> endobj 3515 0 obj << /S /DD /P 3495 0 R /K 3516 0 R >> endobj 3516 0 obj << /S /LBody /P 3515 0 R /Pg 683 0 R /K 2 >> endobj 3517 0 obj << /S /LBody /P 3514 0 R /Pg 683 0 R /K 1 >> endobj 3518 0 obj << /S /LBody /P 3513 0 R /Pg 683 0 R /K 0 >> endobj 3519 0 obj << /S /LBody /P 3512 0 R /Pg 680 0 R /K 15 >> endobj 3520 0 obj << /S /LBody /P 3511 0 R /Pg 680 0 R /K 14 >> endobj 3521 0 obj << /S /DD /P 3491 0 R /K 3528 0 R >> endobj 3522 0 obj << /S /DD /P 3491 0 R /K 3527 0 R >> endobj 3523 0 obj << /S /DD /P 3491 0 R /K 3526 0 R >> endobj 3524 0 obj << /S /DD /P 3491 0 R /K 3525 0 R >> endobj 3525 0 obj << /S /LBody /P 3524 0 R /Pg 680 0 R /K 10 >> endobj 3526 0 obj << /S /LBody /P 3523 0 R /Pg 680 0 R /K 9 >> endobj 3527 0 obj << /S /LBody /P 3522 0 R /Pg 680 0 R /K 8 >> endobj 3528 0 obj << /S /LBody /P 3521 0 R /Pg 680 0 R /K 7 >> endobj 3529 0 obj << /S /DD /P 3489 0 R /K 3530 0 R >> endobj 3530 0 obj << /S /LBody /P 3529 0 R /Pg 680 0 R /K 5 >> endobj 3531 0 obj << /S /DD /P 3487 0 R /K 3534 0 R >> endobj 3532 0 obj << /S /DD /P 3487 0 R /K 3533 0 R >> endobj 3533 0 obj << /S /LBody /P 3532 0 R /Pg 680 0 R /K 3 >> endobj 3534 0 obj << /S /LBody /P 3531 0 R /Pg 680 0 R /K 2 >> endobj 3535 0 obj << /S /DD /P 3485 0 R /K 3538 0 R >> endobj 3536 0 obj << /S /DD /P 3485 0 R /K 3537 0 R >> endobj 3537 0 obj << /S /LBody /P 3536 0 R /Pg 680 0 R /K 0 >> endobj 3538 0 obj << /S /LBody /P 3535 0 R /Pg 677 0 R /K 13 >> endobj 3539 0 obj << /S /DD /P 3481 0 R /K 3540 0 R >> endobj 3540 0 obj << /S /LBody /P 3539 0 R /Pg 677 0 R /K 9 >> endobj 3541 0 obj << /S /DD /P 3479 0 R /K 3542 0 R >> endobj 3542 0 obj << /S /LBody /P 3541 0 R /Pg 677 0 R /K 7 >> endobj 3543 0 obj << /S /DD /P 3477 0 R /K 3544 0 R >> endobj 3544 0 obj << /S /LBody /P 3543 0 R /Pg 677 0 R /K 5 >> endobj 3545 0 obj << /S /DD /P 3473 0 R /K 3546 0 R >> endobj 3546 0 obj << /S /LBody /P 3545 0 R /Pg 677 0 R /K 1 >> endobj 3547 0 obj << /S /DD /P 3471 0 R /K 3548 0 R >> endobj 3548 0 obj << /S /LBody /P 3547 0 R /Pg 674 0 R /K 14 >> endobj 3549 0 obj << /S /DD /P 3469 0 R /K 3550 0 R >> endobj 3550 0 obj << /S /LBody /P 3549 0 R /Pg 674 0 R /K 12 >> endobj 3551 0 obj << /S /DD /P 3467 0 R /K 3552 0 R >> endobj 3552 0 obj << /S /LBody /P 3551 0 R /Pg 674 0 R /K 10 >> endobj 3553 0 obj << /S /DD /P 3464 0 R /K 3554 0 R >> endobj 3554 0 obj << /S /LBody /P 3553 0 R /Pg 674 0 R /K 7 >> endobj 3555 0 obj << /S /DD /P 3462 0 R /K 3562 0 R >> endobj 3556 0 obj << /S /DD /P 3462 0 R /K 3561 0 R >> endobj 3557 0 obj << /S /DD /P 3462 0 R /K 3560 0 R >> endobj 3558 0 obj << /S /DD /P 3462 0 R /K 3559 0 R >> endobj 3559 0 obj << /S /LBody /P 3558 0 R /Pg 674 0 R /K 5 >> endobj 3560 0 obj << /S /LBody /P 3557 0 R /Pg 674 0 R /K 4 >> endobj 3561 0 obj << /S /LBody /P 3556 0 R /Pg 674 0 R /K 3 >> endobj 3562 0 obj << /S /LBody /P 3555 0 R /Pg 674 0 R /K 2 >> endobj 3563 0 obj << /S /DD /P 3458 0 R /K 3568 0 R >> endobj 3564 0 obj << /S /DD /P 3458 0 R /K 3567 0 R >> endobj 3565 0 obj << /S /DD /P 3458 0 R /K 3566 0 R >> endobj 3566 0 obj << /S /LBody /P 3565 0 R /Pg 669 0 R /K 13 >> endobj 3567 0 obj << /S /LBody /P 3564 0 R /Pg 669 0 R /K 12 >> endobj 3568 0 obj << /S /LBody /P 3563 0 R /Pg 669 0 R /K 11 >> endobj 3569 0 obj << /S /DD /P 3456 0 R /K 3574 0 R >> endobj 3570 0 obj << /S /DD /P 3456 0 R /K 3573 0 R >> endobj 3571 0 obj << /S /DD /P 3456 0 R /K 3572 0 R >> endobj 3572 0 obj << /S /LBody /P 3571 0 R /Pg 669 0 R /K 9 >> endobj 3573 0 obj << /S /LBody /P 3570 0 R /Pg 669 0 R /K 8 >> endobj 3574 0 obj << /S /LBody /P 3569 0 R /Pg 669 0 R /K 7 >> endobj 3575 0 obj << /S /DD /P 3454 0 R /K 3576 0 R >> endobj 3576 0 obj << /S /LBody /P 3575 0 R /Pg 669 0 R /K 5 >> endobj 3577 0 obj << /S /Link /P 3449 0 R /K [ 3578 0 R << /Type /OBJR /Pg 669 0 R /Obj 3579 0 R >> ] >> endobj 3578 0 obj << /S /I /P 3577 0 R /Pg 669 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 3579 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 501 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 3580 0 obj << /S /P /P 2032 0 R /K 3595 0 R >> endobj 3581 0 obj << /S /H1 /P 2032 0 R /Pg 686 0 R /K 1 >> endobj 3582 0 obj << /S /P /P 2032 0 R /Pg 686 0 R /K 2 >> endobj 3583 0 obj << /S /P /P 2032 0 R /Pg 686 0 R /K 3 >> endobj 3584 0 obj << /S /P /P 2032 0 R /Pg 686 0 R /K 4 >> endobj 3585 0 obj << /S /P /P 2032 0 R /Pg 686 0 R /K 5 >> endobj 3586 0 obj << /S /P /P 2032 0 R /Pg 686 0 R /K 6 >> endobj 3587 0 obj << /S /P /P 2032 0 R /Pg 686 0 R /K 7 >> endobj 3588 0 obj << /S /P /P 2032 0 R /Pg 686 0 R /K 8 >> endobj 3589 0 obj << /S /P /P 2032 0 R /Pg 686 0 R /K 9 >> endobj 3590 0 obj << /S /DL /P 2032 0 R /K 3593 0 R >> endobj 3591 0 obj << /S /P /P 2032 0 R /Pg 686 0 R /K 11 >> endobj 3592 0 obj << /S /P /P 2032 0 R /Pg 686 0 R /K 12 >> endobj 3593 0 obj << /S /DD /P 3590 0 R /K 3594 0 R >> endobj 3594 0 obj << /S /LBody /P 3593 0 R /Pg 686 0 R /K 10 >> endobj 3595 0 obj << /S /Link /P 3580 0 R /K [ 3596 0 R << /Type /OBJR /Pg 686 0 R /Obj 3597 0 R >> ] >> endobj 3596 0 obj << /S /I /P 3595 0 R /Pg 686 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 3597 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 507 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 3598 0 obj << /S /P /P 2030 0 R /K 3652 0 R >> endobj 3599 0 obj << /S /H1 /P 2030 0 R /Pg 691 0 R /K 1 >> endobj 3600 0 obj << /S /P /P 2030 0 R /Pg 691 0 R /K 2 >> endobj 3601 0 obj << /S /H3 /P 2030 0 R /Pg 691 0 R /K 3 >> endobj 3602 0 obj << /S /P /P 2030 0 R /Pg 691 0 R /K 4 >> endobj 3603 0 obj << /S /P /P 2030 0 R /Pg 691 0 R /K 5 >> endobj 3604 0 obj << /S /DL /P 2030 0 R /K [ 3636 0 R 3637 0 R 3638 0 R 3639 0 R 3640 0 R 3641 0 R 3642 0 R 3643 0 R ] >> endobj 3605 0 obj << /S /P /P 2030 0 R /Pg 691 0 R /K 14 >> endobj 3606 0 obj << /S /P /P 2030 0 R /Pg 696 0 R /K 0 >> endobj 3607 0 obj << /S /H3 /P 2030 0 R /Pg 696 0 R /K 1 >> endobj 3608 0 obj << /S /P /P 2030 0 R /Pg 696 0 R /K [ 2 3624 0 R 4 3625 0 R 6 3626 0 R 8 3627 0 R 10 3628 0 R 12 3629 0 R 14 ] >> endobj 3609 0 obj << /S /P /P 2030 0 R /Pg 696 0 R /K [ 15 3620 0 R 17 3621 0 R 19 ] >> endobj 3610 0 obj << /S /P /P 2030 0 R /Pg 696 0 R /K [ 20 3618 0 R 22 ] >> endobj 3611 0 obj << /S /P /P 2030 0 R /Pg 696 0 R /K [ 23 3616 0 R 25 ] >> endobj 3612 0 obj << /S /P /P 2030 0 R /Pg 696 0 R /K [ 26 3614 0 R 28 ] >> endobj 3613 0 obj << /S /P /P 2030 0 R /Pg 696 0 R /K 29 >> endobj 3614 0 obj << /S /Link /P 3612 0 R /Pg 696 0 R /K [ 27 << /Type /OBJR /Obj 3615 0 R >> ] >> endobj 3615 0 obj << /Subtype /Link /Rect [ 377.707 355.97054 471.21234 368.96237 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.ddj.com/ \\n\\nThis file was not re\ trieved by Teleport Pro, because it is addressed on a domain or path out\ side the boundaries set for its Starting Address. \\n\\nDo you want to \ open it from the server?'\)\)window.location='http://www.ddj.com/')>> /Border [ 0 0 0 ] /StructParent 521 >> endobj 3616 0 obj << /S /Link /P 3611 0 R /Pg 696 0 R /K [ 24 << /Type /OBJR /Obj 3617 0 R >> ] >> endobj 3617 0 obj << /Subtype /Link /Rect [ 67.61757 391.34833 139.86024 404.34018 ] /StructParent 520 /Border [ 0 0 0 ] /A << /S /GoTo /D (нIh\(-i!գcto)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/webrefs.html#cto)>> >> endobj 3618 0 obj << /S /Link /P 3610 0 R /Pg 696 0 R /K [ 21 << /Type /OBJR /Obj 3619 0 R >> ] >> endobj 3619 0 obj << /Subtype /Link /Rect [ 451.6646 426.72614 508.60487 439.71799 ] /StructParent 519 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 476 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/code.html)>> >> endobj 3620 0 obj << /S /Link /P 3609 0 R /Pg 696 0 R /K [ 16 << /Type /OBJR /Obj 3623 0 R >> ] >> endobj 3621 0 obj << /S /Link /P 3609 0 R /Pg 696 0 R /K [ 18 << /Type /OBJR /Obj 3622 0 R >> ] >> endobj 3622 0 obj << /Subtype /Link /Rect [ 320.11914 462.10393 365.42671 475.09578 ] /StructParent 518 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 847 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec016.html)>> >> endobj 3623 0 obj << /Subtype /Link /Rect [ 67.61757 462.10393 175.90962 475.09578 ] /StructParent 517 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 47 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sol01.html)>> >> endobj 3624 0 obj << /S /Link /P 3608 0 R /Pg 696 0 R /K [ 3 << /Type /OBJR /Obj 3635 0 R >> ] >> endobj 3625 0 obj << /S /Link /P 3608 0 R /Pg 696 0 R /K [ 5 << /Type /OBJR /Obj 3634 0 R >> ] >> endobj 3626 0 obj << /S /Link /P 3608 0 R /Pg 696 0 R /K [ 7 << /Type /OBJR /Obj 3633 0 R >> ] >> endobj 3627 0 obj << /S /Link /P 3608 0 R /Pg 696 0 R /K [ 9 << /Type /OBJR /Obj 3632 0 R >> ] >> endobj 3628 0 obj << /S /Link /P 3608 0 R /Pg 696 0 R /K [ 11 << /Type /OBJR /Obj 3631 0 R >> ] >> endobj 3629 0 obj << /S /Link /P 3608 0 R /Pg 696 0 R /K [ 13 << /Type /OBJR /Obj 3630 0 R >> ] >> endobj 3630 0 obj << /Subtype /Link /Rect [ 45.97116 497.48174 142.23476 510.47359 ] /StructParent 516 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 856 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec017.html)>> >> endobj 3631 0 obj << /Subtype /Link /Rect [ 45.97116 513.87146 109.26744 526.8633 ] /StructParent 515 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 847 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec016.html)>> >> endobj 3632 0 obj << /Subtype /Link /Rect [ 45.97116 530.26117 111.92976 543.25302 ] /StructParent 514 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 838 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec015.html)>> >> endobj 3633 0 obj << /Subtype /Link /Rect [ 45.97116 546.65088 175.54985 559.64273 ] /StructParent 513 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 830 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec014.html)>> >> endobj 3634 0 obj << /Subtype /Link /Rect [ 45.97116 563.0406 142.23476 576.03246 ] /StructParent 512 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 812 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec013.html)>> >> endobj 3635 0 obj << /Subtype /Link /Rect [ 45.97116 579.43031 193.20277 592.42216 ] /StructParent 511 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 807 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec012.html)>> >> endobj 3636 0 obj << /S /DD /P 3604 0 R /K 3651 0 R >> endobj 3637 0 obj << /S /DD /P 3604 0 R /K 3650 0 R >> endobj 3638 0 obj << /S /DD /P 3604 0 R /K 3649 0 R >> endobj 3639 0 obj << /S /DD /P 3604 0 R /K 3648 0 R >> endobj 3640 0 obj << /S /DD /P 3604 0 R /K 3647 0 R >> endobj 3641 0 obj << /S /DD /P 3604 0 R /K 3646 0 R >> endobj 3642 0 obj << /S /DD /P 3604 0 R /K 3645 0 R >> endobj 3643 0 obj << /S /DD /P 3604 0 R /K 3644 0 R >> endobj 3644 0 obj << /S /LBody /P 3643 0 R /Pg 691 0 R /K 13 >> endobj 3645 0 obj << /S /LBody /P 3642 0 R /Pg 691 0 R /K 12 >> endobj 3646 0 obj << /S /LBody /P 3641 0 R /Pg 691 0 R /K 11 >> endobj 3647 0 obj << /S /LBody /P 3640 0 R /Pg 691 0 R /K 10 >> endobj 3648 0 obj << /S /LBody /P 3639 0 R /Pg 691 0 R /K 9 >> endobj 3649 0 obj << /S /LBody /P 3638 0 R /Pg 691 0 R /K 8 >> endobj 3650 0 obj << /S /LBody /P 3637 0 R /Pg 691 0 R /K 7 >> endobj 3651 0 obj << /S /LBody /P 3636 0 R /Pg 691 0 R /K 6 >> endobj 3652 0 obj << /S /Link /P 3598 0 R /K [ 3653 0 R << /Type /OBJR /Pg 691 0 R /Obj 3654 0 R >> ] >> endobj 3653 0 obj << /S /I /P 3652 0 R /Pg 691 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356.16052 508.17809 602.00627 766.0163 ] /Placement /End /Width 245.84575 /BaselineShift -257.83821 >> >> endobj 3654 0 obj << /Subtype /Link /Rect [ 378.14673 510.17683 580.02007 764.01756 ] /StructParent 509 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 3655 0 obj << /S /P /P 2028 0 R /K 3705 0 R >> endobj 3656 0 obj << /S /H1 /P 2028 0 R /Pg 700 0 R /K 1 >> endobj 3657 0 obj << /S /P /P 2028 0 R /Pg 700 0 R /K 2 >> endobj 3658 0 obj << /S /P /P 2028 0 R /Pg 700 0 R /K 3 >> endobj 3659 0 obj << /S /P /P 2028 0 R /Pg 700 0 R /K [ 4 << /Type /MCR /Pg 705 0 R /MCID 0 >> ] >> endobj 3660 0 obj << /S /P /P 2028 0 R /Pg 705 0 R /K [ 1 << /Type /MCR /Pg 708 0 R /MCID 0 >> ] >> endobj 3661 0 obj << /S /P /P 2028 0 R /Pg 708 0 R /K [ 1 << /Type /MCR /Pg 711 0 R /MCID 0 >> ] >> endobj 3662 0 obj << /S /P /P 2028 0 R /Pg 711 0 R /K [ 1 3684 0 R 3 3685 0 R 5 3686 0 R 7 3687 0 R 9 3688 0 R 11 3689 0 R 13 3690 0 R 15 3691 0 R 17 3692 0 R 19 3693 0 R 21 ] >> endobj 3663 0 obj << /S /P /P 2028 0 R /Pg 711 0 R /K 22 >> endobj 3664 0 obj << /S /P /P 2028 0 R /Pg 711 0 R /K 23 >> endobj 3665 0 obj << /S /P /P 2028 0 R /Pg 715 0 R /K 0 >> endobj 3666 0 obj << /S /P /P 2028 0 R /Pg 715 0 R /K 1 >> endobj 3667 0 obj << /S /P /P 2028 0 R /Pg 715 0 R /K 2 >> endobj 3668 0 obj << /S /P /P 2028 0 R /Pg 715 0 R /K [ 3 << /Type /MCR /Pg 718 0 R /MCID 0 >> ] >> endobj 3669 0 obj << /S /P /P 2028 0 R /Pg 718 0 R /K 1 >> endobj 3670 0 obj << /S /P /P 2028 0 R /Pg 718 0 R /K [ 2 << /Type /MCR /Pg 721 0 R /MCID 0 >> ] >> endobj 3671 0 obj << /S /P /P 2028 0 R /Pg 721 0 R /K 1 >> endobj 3672 0 obj << /S /P /P 2028 0 R /Pg 721 0 R /K 2 >> endobj 3673 0 obj << /S /P /P 2028 0 R /Pg 721 0 R /K [ 3 << /Type /MCR /Pg 724 0 R /MCID 0 >> ] >> endobj 3674 0 obj << /S /P /P 2028 0 R /Pg 727 0 R /K 0 >> endobj 3675 0 obj << /S /P /P 2028 0 R /Pg 727 0 R /K 1 >> endobj 3676 0 obj << /S /P /P 2028 0 R /Pg 727 0 R /K [ 2 << /Type /MCR /Pg 730 0 R /MCID 0 >> << /Type /MCR /Pg 733 0 R /MCID 0 >> ] >> endobj 3677 0 obj << /S /P /P 2028 0 R /Pg 733 0 R /K 1 >> endobj 3678 0 obj << /S /P /P 2028 0 R /Pg 733 0 R /K [ 2 << /Type /MCR /Pg 736 0 R /MCID 0 >> ] >> endobj 3679 0 obj << /S /P /P 2028 0 R /Pg 736 0 R /K 1 >> endobj 3680 0 obj << /S /P /P 2028 0 R /Pg 736 0 R /K 2 >> endobj 3681 0 obj << /S /P /P 2028 0 R /Pg 736 0 R /K 3 >> endobj 3682 0 obj << /S /P /P 2028 0 R /Pg 736 0 R /K 4 >> endobj 3683 0 obj << /S /P /P 2028 0 R /Pg 736 0 R /K 5 >> endobj 3684 0 obj << /S /Link /P 3662 0 R /Pg 711 0 R /K [ 2 << /Type /OBJR /Obj 3704 0 R >> ] >> endobj 3685 0 obj << /S /Link /P 3662 0 R /Pg 711 0 R /K [ 4 << /Type /OBJR /Obj 3703 0 R >> ] >> endobj 3686 0 obj << /S /Link /P 3662 0 R /Pg 711 0 R /K [ 6 << /Type /OBJR /Obj 3702 0 R >> ] >> endobj 3687 0 obj << /S /Link /P 3662 0 R /Pg 711 0 R /K [ 8 << /Type /OBJR /Obj 3701 0 R >> ] >> endobj 3688 0 obj << /S /Link /P 3662 0 R /Pg 711 0 R /K [ 10 << /Type /OBJR /Obj 3700 0 R >> ] >> endobj 3689 0 obj << /S /Link /P 3662 0 R /Pg 711 0 R /K [ 12 << /Type /OBJR /Obj 3699 0 R >> << /Type /OBJR /Obj 3698 0 R >> ] >> endobj 3690 0 obj << /S /Link /P 3662 0 R /Pg 711 0 R /K [ 14 << /Type /OBJR /Obj 3697 0 R >> ] >> endobj 3691 0 obj << /S /Link /P 3662 0 R /Pg 711 0 R /K [ 16 << /Type /OBJR /Obj 3696 0 R >> ] >> endobj 3692 0 obj << /S /Link /P 3662 0 R /Pg 711 0 R /K [ 18 << /Type /OBJR /Obj 3695 0 R >> ] >> endobj 3693 0 obj << /S /Link /P 3662 0 R /Pg 711 0 R /K [ 20 << /Type /OBJR /Obj 3694 0 R >> ] >> endobj 3694 0 obj << /Subtype /Link /Rect [ 265.32401 574.8 307.972 587.8 ] /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#tradeo\ ffs)>> /A << /S /GoTo /D (a\)g:sG2tradeoffs)>> /Border [ 0 0 0 ] /StructParent 537 >> endobj 3695 0 obj << /Subtype /Link /Rect [ 227.32001 574.8 259.32401 587.8 ] /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#testin\ g)>> /A << /S /GoTo /D (a\)g:sG2testing)>> /Border [ 0 0 0 ] /StructParent 536 >> endobj 3696 0 obj << /Subtype /Link /Rect [ 155.332 574.8 221.32001 587.8 ] /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#specif\ ications)>> /A << /S /GoTo /D (a\)g:sG2specifications)>> /Border [ 0 0 0 ] /StructParent 535 >> endobj 3697 0 obj << /Subtype /Link /Rect [ 98.668 574.8 149.332 587.8 ] /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#protot\ ypes)>> /A << /S /GoTo /D (a\)g:sG2prototypes)>> /Border [ 0 0 0 ] /StructParent 534 >> endobj 3698 0 obj << /Subtype /Link /Rect [ 46 574.8 92.668 587.8 ] /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#probde\ f)>> /A << /S /GoTo /D (a\)g:sG2probdef)>> /Border [ 0 0 0 ] /StructParent 533 >> endobj 3699 0 obj << /Subtype /Link /Rect [ 520.552 591.2 560.548 604.2 ] /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#probde\ f)>> /A << /S /GoTo /D (a\)g:sG2probdef)>> /Border [ 0 0 0 ] /StructParent 532 >> endobj 3700 0 obj << /Subtype /Link /Rect [ 472.576 591.2 514.552 604.2 ] /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#elegan\ ce)>> /A << /S /GoTo /D (a\)g:sG2elegance)>> /Border [ 0 0 0 ] /StructParent 531 >> endobj 3701 0 obj << /Subtype /Link /Rect [ 435.244 591.2 466.576 604.2 ] /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#design\ )>> /A << /S /GoTo /D (a\)g:sG2design)>> /Border [ 0 0 0 ] /StructParent 530 >> endobj 3702 0 obj << /Subtype /Link /Rect [ 378.58 591.2 429.244 604.2 ] /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#debugg\ ing)>> /A << /S /GoTo /D (a\)g:sG2debugging)>> /Border [ 0 0 0 ] /StructParent 529 >> endobj 3703 0 obj << /Subtype /Link /Rect [ 292.936 591.2 372.58 604.2 ] /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#backgr\ ound)>> /A << /S /GoTo /D (a\)g:sG2background)>> /Border [ 0 0 0 ] /StructParent 528 >> endobj 3704 0 obj << /Subtype /Link /Rect [ 187.3 591.2 286.936 604.2 ] /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html#bote)>> /A << /S /GoTo /D (a\)g:sG2bote)>> /Border [ 0 0 0 ] /StructParent 527 >> endobj 3705 0 obj << /S /Link /P 3655 0 R /K [ 3706 0 R << /Type /OBJR /Pg 700 0 R /Obj 3707 0 R >> ] >> endobj 3706 0 obj << /S /I /P 3705 0 R /Pg 700 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 3707 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 523 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 3708 0 obj << /S /P /P 2026 0 R /K 3721 0 R >> endobj 3709 0 obj << /S /H1 /P 2026 0 R /Pg 739 0 R /K 1 >> endobj 3710 0 obj << /S /P /P 2026 0 R /Pg 739 0 R /K 2 >> endobj 3711 0 obj << /S /P /P 2026 0 R /Pg 739 0 R /K 3 >> endobj 3712 0 obj << /S /P /P 2026 0 R /Pg 739 0 R /K 4 >> endobj 3713 0 obj << /S /H3 /P 2026 0 R /Pg 739 0 R /K 5 >> endobj 3714 0 obj << /S /P /P 2026 0 R /Pg 739 0 R /K [ 6 3719 0 R 8 ] >> endobj 3715 0 obj << /S /P /P 2026 0 R /Pg 739 0 R /K [ 9 3717 0 R 11 ] >> endobj 3716 0 obj << /S /P /P 2026 0 R /Pg 739 0 R /K 12 >> endobj 3717 0 obj << /S /Link /P 3715 0 R /Pg 739 0 R /K [ 10 << /Type /OBJR /Obj 3718 0 R >> ] >> endobj 3718 0 obj << /Subtype /Link /Rect [ 67.66 121.85715 157.98399 134.85715 ] /StructParent 549 /Border [ 0 0 0 ] /A << /S /GoTo /D (/Ymf'col05)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/code.html#col05)>> >> endobj 3719 0 obj << /S /Link /P 3714 0 R /Pg 739 0 R /K [ 7 << /Type /OBJR /Obj 3720 0 R >> ] >> endobj 3720 0 obj << /Subtype /Link /Rect [ 70 157.25714 123.328 170.25714 ] /StructParent 548 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 744 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec0510.html)>> >> endobj 3721 0 obj << /S /Link /P 3708 0 R /K [ 3722 0 R << /Type /OBJR /Pg 739 0 R /Obj 3723 0 R >> ] >> endobj 3722 0 obj << /S /I /P 3721 0 R /Pg 739 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 3723 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 547 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 3724 0 obj << /S /P /P 2024 0 R /K 3736 0 R >> endobj 3725 0 obj << /S /H1 /P 2024 0 R /Pg 744 0 R /K 1 >> endobj 3726 0 obj << /S /P /P 2024 0 R /Pg 744 0 R /K 2 >> endobj 3727 0 obj << /S /P /P 2024 0 R /Pg 744 0 R /K 3 >> endobj 3728 0 obj << /S /P /P 2024 0 R /Pg 744 0 R /K 4 >> endobj 3729 0 obj << /S /P /P 2024 0 R /Pg 744 0 R /K 5 >> endobj 3730 0 obj << /S /P /P 2024 0 R /Pg 744 0 R /K 6 >> endobj 3731 0 obj << /S /P /P 2024 0 R /Pg 744 0 R /K 7 >> endobj 3732 0 obj << /S /P /P 2024 0 R /Pg 744 0 R /K 8 >> endobj 3733 0 obj << /S /P /P 2024 0 R /Pg 749 0 R /K 0 >> endobj 3734 0 obj << /S /P /P 2024 0 R /Pg 749 0 R /K 1 >> endobj 3735 0 obj << /S /P /P 2024 0 R /Pg 749 0 R /K 2 >> endobj 3736 0 obj << /S /Link /P 3724 0 R /K [ 3737 0 R << /Type /OBJR /Pg 744 0 R /Obj 3738 0 R >> ] >> endobj 3737 0 obj << /S /I /P 3736 0 R /Pg 744 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 3738 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 551 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 3739 0 obj << /S /P /P 2022 0 R /K 3776 0 R >> endobj 3740 0 obj << /S /H1 /P 2022 0 R /Pg 752 0 R /K 1 >> endobj 3741 0 obj << /S /P /P 2022 0 R /Pg 752 0 R /K [ 2 3774 0 R 4 ] >> endobj 3742 0 obj << /S /P /P 2022 0 R /Pg 752 0 R /K 5 >> endobj 3743 0 obj << /S /P /P 2022 0 R /Pg 752 0 R /K 6 >> endobj 3744 0 obj << /S /P /P 2022 0 R /Pg 752 0 R /K 7 >> endobj 3745 0 obj << /S /P /P 2022 0 R /Pg 752 0 R /K 8 >> endobj 3746 0 obj << /S /P /P 2022 0 R /Pg 752 0 R /K 9 >> endobj 3747 0 obj << /S /P /P 2022 0 R /Pg 752 0 R /K 10 >> endobj 3748 0 obj << /S /P /P 2022 0 R /Pg 752 0 R /K 11 >> endobj 3749 0 obj << /S /P /P 2022 0 R /Pg 752 0 R /K [ 12 3772 0 R 14 ] >> endobj 3750 0 obj << /S /P /P 2022 0 R /Pg 752 0 R /K 15 >> endobj 3751 0 obj << /S /P /P 2022 0 R /Pg 752 0 R /K 16 >> endobj 3752 0 obj << /S /DL /P 2022 0 R /K 3770 0 R >> endobj 3753 0 obj << /S /P /P 2022 0 R /Pg 757 0 R /K 1 >> endobj 3754 0 obj << /S /P /P 2022 0 R /Pg 757 0 R /K 2 >> endobj 3755 0 obj << /S /P /P 2022 0 R /Pg 757 0 R /K 3 >> endobj 3756 0 obj << /S /P /P 2022 0 R /Pg 757 0 R /K 4 >> endobj 3757 0 obj << /S /P /P 2022 0 R /Pg 757 0 R /K 5 >> endobj 3758 0 obj << /S /P /P 2022 0 R /Pg 757 0 R /K 6 >> endobj 3759 0 obj << /S /P /P 2022 0 R /Pg 757 0 R /K [ 7 3763 0 R 9 3764 0 R 11 3765 0 R 13 ] >> endobj 3760 0 obj << /S /P /P 2022 0 R /Pg 757 0 R /K 14 >> endobj 3761 0 obj << /S /P /P 2022 0 R /Pg 757 0 R /K 15 >> endobj 3762 0 obj << /S /P /P 2022 0 R /Pg 757 0 R /K 16 >> endobj 3763 0 obj << /S /Link /P 3759 0 R /Pg 757 0 R /K [ 8 << /Type /OBJR /Obj 3769 0 R >> ] >> endobj 3764 0 obj << /S /Link /P 3759 0 R /Pg 757 0 R /K [ 10 << /Type /OBJR /Obj 3768 0 R >> ] >> endobj 3765 0 obj << /S /Link /P 3759 0 R /Pg 757 0 R /K [ 12 << /Type /OBJR /Obj 3767 0 R >> << /Type /OBJR /Obj 3766 0 R >> ] >> endobj 3766 0 obj << /Subtype /Link /Rect [ 46 254.8 52 267.8 ] /StructParent 561 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 459 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bote.html)>> >> endobj 3767 0 obj << /Subtype /Link /Rect [ 553.228 271.2 591.90401 284.2 ] /StructParent 560 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 459 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bote.html)>> >> endobj 3768 0 obj << /Subtype /Link /Rect [ 46 271.2 93.67599 284.2 ] /StructParent 559 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 986 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sketch08.html)>> >> endobj 3769 0 obj << /Subtype /Link /Rect [ 418.228 287.60001 465.90401 300.60001 ] /StructParent 558 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 981 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sketch04.html)>> >> endobj 3770 0 obj << /S /DD /P 3752 0 R /K 3771 0 R >> endobj 3771 0 obj << /S /LBody /P 3770 0 R /Pg 752 0 R /K [ 17 << /Type /MCR /Pg 757 0 R /MCID 0 >> ] >> endobj 3772 0 obj << /S /Link /P 3749 0 R /Pg 752 0 R /K [ 13 << /Type /OBJR /Obj 3773 0 R >> ] >> endobj 3773 0 obj << /Subtype /Link /Rect [ 193.3 227.02856 223.62399 240.02856 ] /StructParent 556 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 973 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/part2.html)>> >> endobj 3774 0 obj << /S /Link /P 3741 0 R /Pg 752 0 R /K [ 3 << /Type /OBJR /Obj 3775 0 R >> ] >> endobj 3775 0 obj << /Subtype /Link /Rect [ 117.98801 625.82857 251.65601 638.82857 ] /StructParent 555 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 961 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/firsted.html)>> >> endobj 3776 0 obj << /S /Link /P 3739 0 R /K [ 3777 0 R << /Type /OBJR /Pg 752 0 R /Obj 3778 0 R >> ] >> endobj 3777 0 obj << /S /I /P 3776 0 R /Pg 752 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 3778 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 554 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 3779 0 obj << /S /P /P 2019 0 R /K 3800 0 R >> endobj 3780 0 obj << /S /H1 /P 2019 0 R /Pg 807 0 R /K 1 >> endobj 3781 0 obj << /S /P /P 2019 0 R /Pg 807 0 R /K 2 >> endobj 3782 0 obj << /S /DL /P 2019 0 R /K [ 3788 0 R 3789 0 R 3790 0 R 3791 0 R 3792 0 R 3793 0 R ] >> endobj 3783 0 obj << /S /P /P 2019 0 R /Pg 807 0 R /K 9 >> endobj 3784 0 obj << /S /P /P 2019 0 R /Pg 807 0 R /K [ 3786 0 R 11 ] >> endobj 3785 0 obj << /S /P /P 2019 0 R /Pg 807 0 R /K 12 >> endobj 3786 0 obj << /S /Link /P 3784 0 R /Pg 807 0 R /K [ 10 << /Type /OBJR /Obj 3787 0 R >> ] >> endobj 3787 0 obj << /Subtype /Link /Rect [ 46 313.52077 216.98801 326.52077 ] /StructParent 564 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 812 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec013.html)>> >> endobj 3788 0 obj << /S /DT /P 3782 0 R /K 3799 0 R >> endobj 3789 0 obj << /S /DD /P 3782 0 R /K 3798 0 R >> endobj 3790 0 obj << /S /DT /P 3782 0 R /K 3797 0 R >> endobj 3791 0 obj << /S /DD /P 3782 0 R /K 3796 0 R >> endobj 3792 0 obj << /S /DT /P 3782 0 R /K 3795 0 R >> endobj 3793 0 obj << /S /DD /P 3782 0 R /K 3794 0 R >> endobj 3794 0 obj << /S /LBody /P 3793 0 R /Pg 807 0 R /K 8 >> endobj 3795 0 obj << /S /Lbl /P 3792 0 R /Pg 807 0 R /K 7 >> endobj 3796 0 obj << /S /LBody /P 3791 0 R /Pg 807 0 R /K 6 >> endobj 3797 0 obj << /S /Lbl /P 3790 0 R /Pg 807 0 R /K 5 >> endobj 3798 0 obj << /S /LBody /P 3789 0 R /Pg 807 0 R /K 4 >> endobj 3799 0 obj << /S /Lbl /P 3788 0 R /Pg 807 0 R /K 3 >> endobj 3800 0 obj << /S /Link /P 3779 0 R /K [ 3801 0 R << /Type /OBJR /Pg 807 0 R /Obj 3802 0 R >> ] >> endobj 3801 0 obj << /S /I /P 3800 0 R /Pg 807 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 3802 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 563 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 3803 0 obj << /S /P /P 2017 0 R /K 3815 0 R >> endobj 3804 0 obj << /S /H1 /P 2017 0 R /Pg 812 0 R /K 1 >> endobj 3805 0 obj << /S /P /P 2017 0 R /Pg 812 0 R /K 2 >> endobj 3806 0 obj << /S /P /P 2017 0 R /Pg 812 0 R /K 3 >> endobj 3807 0 obj << /S /P /P 2017 0 R /Pg 812 0 R /K [ 4 3812 0 R 6 3813 0 R 8 << /Type /MCR /Pg 823 0 R /MCID 0 >> 3814 0 R << /Type /MCR /Pg 823 0 R /MCID 2 >> ] >> endobj 3808 0 obj << /S /P /P 2017 0 R /Pg 823 0 R /K [ 3810 0 R 4 ] >> endobj 3809 0 obj << /S /P /P 2017 0 R /Pg 823 0 R /K 5 >> endobj 3810 0 obj << /S /Link /P 3808 0 R /Pg 823 0 R /K [ 3 << /Type /OBJR /Obj 3811 0 R >> ] >> endobj 3811 0 obj << /Subtype /Link /Rect [ 46 628.60001 250.32401 641.60001 ] /StructParent 568 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 830 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec014.html)>> >> endobj 3812 0 obj << /S /I /P 3807 0 R /Pg 812 0 R /K 5 /Alt (Merge Sort) /A << /O /Layout /BBox [ 64 198.57791 379 341.57791 ] /Placement /Inline /Width 315 /BaselineShift -69.09999 >> >> endobj 3813 0 obj << /S /I /P 3807 0 R /Pg 812 0 R /K 7 /Alt (Multipass Sort) /A << /O /Layout /BBox [ 64 120.1779 376 184.1779 ] /Placement /Inline /Width 312 /BaselineShift -29.59999 >> >> endobj 3814 0 obj << /S /I /P 3807 0 R /Pg 823 0 R /K 1 /Alt (Wonder Sort) /A << /O /Layout /BBox [ 64 705 377 766 ] /Placement /Inline /Width 313 /BaselineShift -28.09999 >> >> endobj 3815 0 obj << /S /Link /P 3803 0 R /K [ 3816 0 R << /Type /OBJR /Pg 812 0 R /Obj 3817 0 R >> ] >> endobj 3816 0 obj << /S /I /P 3815 0 R /Pg 812 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 3817 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 566 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 3818 0 obj << /S /P /P 2015 0 R /K 3846 0 R >> endobj 3819 0 obj << /S /H1 /P 2015 0 R /Pg 830 0 R /K 1 >> endobj 3820 0 obj << /S /P /P 2015 0 R /Pg 830 0 R /K 2 >> endobj 3821 0 obj << /S /DL /P 2015 0 R /K 3844 0 R >> endobj 3822 0 obj << /S /P /P 2015 0 R /Pg 830 0 R /K 4 >> endobj 3823 0 obj << /S /P /P 2015 0 R /Pg 830 0 R /K [ 5 3842 0 R 7 ] >> endobj 3824 0 obj << /S /P /P 2015 0 R /Pg 830 0 R /K 8 >> endobj 3825 0 obj << /S /DL /P 2015 0 R /K 3840 0 R >> endobj 3826 0 obj << /S /P /P 2015 0 R /Pg 830 0 R /K [ 10 3838 0 R 12 ] >> endobj 3827 0 obj << /S /P /P 2015 0 R /Pg 830 0 R /K [ 13 3832 0 R 15 3833 0 R 17 3834 0 R 19 ] >> endobj 3828 0 obj << /S /P /P 2015 0 R /Pg 830 0 R /K [ 3830 0 R 21 ] >> endobj 3829 0 obj << /S /P /P 2015 0 R /Pg 835 0 R /K 0 >> endobj 3830 0 obj << /S /Link /P 3828 0 R /Pg 830 0 R /K [ 20 << /Type /OBJR /Obj 3831 0 R >> ] >> endobj 3831 0 obj << /Subtype /Link /Rect [ 45.20232 61.86269 183.42705 74.63725 ] /StructParent 576 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 838 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec015.html)>> >> endobj 3832 0 obj << /S /Link /P 3827 0 R /Pg 830 0 R /K [ 14 << /Type /OBJR /Obj 3837 0 R >> ] >> endobj 3833 0 obj << /S /Link /P 3827 0 R /Pg 830 0 R /K [ 16 << /Type /OBJR /Obj 3836 0 R >> ] >> endobj 3834 0 obj << /S /Link /P 3827 0 R /Pg 830 0 R /K [ 18 << /Type /OBJR /Obj 3835 0 R >> ] >> endobj 3835 0 obj << /Subtype /Link /Rect [ 193.5681 96.6488 199.46405 109.42337 ] /StructParent 575 /Border [ 0 0 0 ] /A << /S /GoTo /D (zWnk'Խp7)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec016.html#p7)>> >> endobj 3836 0 obj << /Subtype /Link /Rect [ 164.74867 96.6488 170.64462 109.42337 ] /StructParent 574 /Border [ 0 0 0 ] /A << /S /GoTo /D (zWnk'Խp5)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec016.html#p5)>> >> endobj 3837 0 obj << /Subtype /Link /Rect [ 152.95676 96.6488 158.85272 109.42337 ] /StructParent 573 /Border [ 0 0 0 ] /A << /S /GoTo /D (zWnk'Խp2)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec016.html#p2)>> >> endobj 3838 0 obj << /S /Link /P 3826 0 R /Pg 830 0 R /K [ 11 << /Type /OBJR /Obj 3839 0 R >> ] >> endobj 3839 0 obj << /Subtype /Link /Rect [ 125.43445 145.58522 160.12624 158.35979 ] /StructParent 572 /Border [ 0 0 0 ] /A << /S /GoTo /D (1YӾu\\\\gWJBpseudocode)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/preface.html#pseudoco\ de)>> >> endobj 3840 0 obj << /S /DD /P 3825 0 R /K 3841 0 R >> endobj 3841 0 obj << /S /LBody /P 3840 0 R /Pg 830 0 R /K 9 >> endobj 3842 0 obj << /S /Link /P 3823 0 R /Pg 830 0 R /K [ 6 << /Type /OBJR /Obj 3843 0 R >> ] >> endobj 3843 0 obj << /Subtype /Link /Rect [ 227.32832 458.2673 233.22427 471.04187 ] /StructParent 571 /Border [ 0 0 0 ] /A << /S /GoTo /D (zWnk'Խp5)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec016.html#p5)>> >> endobj 3844 0 obj << /S /DD /P 3821 0 R /K 3845 0 R >> endobj 3845 0 obj << /S /LBody /P 3844 0 R /Pg 830 0 R /K 3 >> endobj 3846 0 obj << /S /Link /P 3818 0 R /K [ 3847 0 R << /Type /OBJR /Pg 830 0 R /Obj 3848 0 R >> ] >> endobj 3847 0 obj << /S /I /P 3846 0 R /Pg 830 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 360.4393 512.92485 602.17342 766.45087 ] /Placement /End /Width 241.7341 /BaselineShift -253.526 >> >> endobj 3848 0 obj << /Subtype /Link /Rect [ 382.0578 514.89017 580.55492 764.48555 ] /StructParent 570 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 3849 0 obj << /S /P /P 2013 0 R /K 3875 0 R >> endobj 3850 0 obj << /S /H1 /P 2013 0 R /Pg 838 0 R /K 1 >> endobj 3851 0 obj << /S /P /P 2013 0 R /Pg 838 0 R /K 2 >> endobj 3852 0 obj << /S /P /P 2013 0 R /Pg 838 0 R /K 3 >> endobj 3853 0 obj << /S /P /P 2013 0 R /Pg 838 0 R /K [ 4 3869 0 R 6 3870 0 R 8 3871 0 R 10 ] >> endobj 3854 0 obj << /S /P /P 2013 0 R /Pg 838 0 R /K [ 11 3865 0 R 13 3866 0 R 15 ] >> endobj 3855 0 obj << /S /P /P 2013 0 R /Pg 838 0 R /K [ 16 3863 0 R 18 ] >> endobj 3856 0 obj << /S /P /P 2013 0 R /Pg 838 0 R /K [ 19 << /Type /MCR /Pg 843 0 R /MCID 0 >> ] >> endobj 3857 0 obj << /S /P /P 2013 0 R /Pg 843 0 R /K 1 >> endobj 3858 0 obj << /S /P /P 2013 0 R /Pg 843 0 R /K 2 >> endobj 3859 0 obj << /S /P /P 2013 0 R /Pg 843 0 R /K [ 3861 0 R 4 ] >> endobj 3860 0 obj << /S /P /P 2013 0 R /Pg 843 0 R /K 5 >> endobj 3861 0 obj << /S /Link /P 3859 0 R /Pg 843 0 R /K [ 3 << /Type /OBJR /Obj 3862 0 R >> ] >> endobj 3862 0 obj << /Subtype /Link /Rect [ 46 578.62857 184 591.62857 ] /StructParent 587 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 847 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec016.html)>> >> endobj 3863 0 obj << /S /Link /P 3855 0 R /Pg 838 0 R /K [ 17 << /Type /OBJR /Obj 3864 0 R >> ] >> endobj 3864 0 obj << /Subtype /Link /Rect [ 249.62801 185.82857 303.62801 198.82857 ] /StructParent 585 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 812 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec013.html)>> >> endobj 3865 0 obj << /S /Link /P 3854 0 R /Pg 838 0 R /K [ 12 << /Type /OBJR /Obj 3868 0 R >> ] >> endobj 3866 0 obj << /S /Link /P 3854 0 R /Pg 838 0 R /K [ 14 << /Type /OBJR /Obj 3867 0 R >> ] >> endobj 3867 0 obj << /Subtype /Link /Rect [ 320.29601 235.62857 326.29601 248.62857 ] /StructParent 584 /Border [ 0 0 0 ] /A << /S /GoTo /D (zWnk'Խp8)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec016.html#p8)>> >> endobj 3868 0 obj << /Subtype /Link /Rect [ 290.968 235.62857 296.968 248.62857 ] /StructParent 583 /Border [ 0 0 0 ] /A << /S /GoTo /D (zWnk'Խp6)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec016.html#p6)>> >> endobj 3869 0 obj << /S /Link /P 3853 0 R /Pg 838 0 R /K [ 5 << /Type /OBJR /Obj 3874 0 R >> ] >> endobj 3870 0 obj << /S /Link /P 3853 0 R /Pg 838 0 R /K [ 7 << /Type /OBJR /Obj 3873 0 R >> ] >> endobj 3871 0 obj << /S /Link /P 3853 0 R /Pg 838 0 R /K [ 9 << /Type /OBJR /Obj 3872 0 R >> ] >> endobj 3872 0 obj << /Subtype /Link /Rect [ 365.452 328.62857 377.452 341.62857 ] /StructParent 582 /Border [ 0 0 0 ] /A << /S /GoTo /D (zWnk'Խp12)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec016.html#p12)>> >> endobj 3873 0 obj << /Subtype /Link /Rect [ 330.12399 328.62857 342.12399 341.62857 ] /StructParent 581 /Border [ 0 0 0 ] /A << /S /GoTo /D (zWnk'Խp11)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec016.html#p11)>> >> endobj 3874 0 obj << /Subtype /Link /Rect [ 312.12399 328.62857 324.12399 341.62857 ] /StructParent 580 /Border [ 0 0 0 ] /A << /S /GoTo /D (zWnk'Խp10)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec016.html#p10)>> >> endobj 3875 0 obj << /S /Link /P 3849 0 R /K [ 3876 0 R << /Type /OBJR /Pg 838 0 R /Obj 3877 0 R >> ] >> endobj 3876 0 obj << /S /I /P 3875 0 R /Pg 838 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 3877 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 579 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 3878 0 obj << /S /P /P 2011 0 R /K 3899 0 R >> endobj 3879 0 obj << /S /H1 /P 2011 0 R /Pg 847 0 R /K 1 >> endobj 3880 0 obj << /S /P /P 2011 0 R /Pg 847 0 R /K [ 2 3897 0 R 4 ] >> endobj 3881 0 obj << /S /P /P 2011 0 R /Pg 847 0 R /K 5 >> endobj 3882 0 obj << /S /P /P 2011 0 R /Pg 847 0 R /K 6 >> endobj 3883 0 obj << /S /P /P 2011 0 R /Pg 847 0 R /K 7 >> endobj 3884 0 obj << /S /P /P 2011 0 R /Pg 847 0 R /K 8 >> endobj 3885 0 obj << /S /P /P 2011 0 R /Pg 847 0 R /K 9 >> endobj 3886 0 obj << /S /P /P 2011 0 R /Pg 847 0 R /K 10 >> endobj 3887 0 obj << /S /P /P 2011 0 R /Pg 847 0 R /K 11 >> endobj 3888 0 obj << /S /P /P 2011 0 R /Pg 847 0 R /K 12 >> endobj 3889 0 obj << /S /P /P 2011 0 R /Pg 847 0 R /K [ 13 << /Type /MCR /Pg 852 0 R /MCID 0 >> ] >> endobj 3890 0 obj << /S /P /P 2011 0 R /Pg 852 0 R /K 1 >> endobj 3891 0 obj << /S /P /P 2011 0 R /Pg 852 0 R /K 2 >> endobj 3892 0 obj << /S /P /P 2011 0 R /Pg 852 0 R /K 3 >> endobj 3893 0 obj << /S /P /P 2011 0 R /Pg 852 0 R /K [ 3895 0 R 5 ] >> endobj 3894 0 obj << /S /P /P 2011 0 R /Pg 852 0 R /K 6 >> endobj 3895 0 obj << /S /Link /P 3893 0 R /Pg 852 0 R /K [ 4 << /Type /OBJR /Obj 3896 0 R >> ] >> endobj 3896 0 obj << /Subtype /Link /Rect [ 46 444.42857 216.98801 457.42857 ] /StructParent 592 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 856 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec017.html)>> >> endobj 3897 0 obj << /S /Link /P 3880 0 R /Pg 847 0 R /K [ 3 << /Type /OBJR /Obj 3898 0 R >> ] >> endobj 3898 0 obj << /Subtype /Link /Rect [ 67.66 640.22858 176.02 653.22858 ] /StructParent 590 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 47 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sol01.html)>> >> endobj 3899 0 obj << /S /Link /P 3878 0 R /K [ 3900 0 R << /Type /OBJR /Pg 847 0 R /Obj 3901 0 R >> ] >> endobj 3900 0 obj << /S /I /P 3899 0 R /Pg 847 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 3901 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 589 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 3902 0 obj << /S /P /P 2009 0 R /K 3913 0 R >> endobj 3903 0 obj << /S /H1 /P 2009 0 R /Pg 856 0 R /K 1 >> endobj 3904 0 obj << /S /P /P 2009 0 R /Pg 856 0 R /K 2 >> endobj 3905 0 obj << /S /P /P 2009 0 R /Pg 856 0 R /K [ 3 3907 0 R 5 3908 0 R 7 3909 0 R 9 ] >> endobj 3906 0 obj << /S /P /P 2009 0 R /Pg 856 0 R /K 10 >> endobj 3907 0 obj << /S /Link /P 3905 0 R /Pg 856 0 R /K [ 4 << /Type /OBJR /Obj 3912 0 R >> ] >> endobj 3908 0 obj << /S /Link /P 3905 0 R /Pg 856 0 R /K [ 6 << /Type /OBJR /Obj 3911 0 R >> ] >> endobj 3909 0 obj << /S /Link /P 3905 0 R /Pg 856 0 R /K [ 8 << /Type /OBJR /Obj 3910 0 R >> ] >> endobj 3910 0 obj << /Subtype /Link /Rect [ 266.992 419.62857 278.992 432.62857 ] /StructParent 597 /Border [ 0 0 0 ] /A << /S /GoTo /D (zWnk'Խp12)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec016.html#p12)>> >> endobj 3911 0 obj << /Subtype /Link /Rect [ 231.664 419.62857 243.664 432.62857 ] /StructParent 596 /Border [ 0 0 0 ] /A << /S /GoTo /D (zWnk'Խp11)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec016.html#p11)>> >> endobj 3912 0 obj << /Subtype /Link /Rect [ 213.664 419.62857 225.664 432.62857 ] /StructParent 595 /Border [ 0 0 0 ] /A << /S /GoTo /D (zWnk'Խp10)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec016.html#p10)>> >> endobj 3913 0 obj << /S /Link /P 3902 0 R /K [ 3914 0 R << /Type /OBJR /Pg 856 0 R /Obj 3915 0 R >> ] >> endobj 3914 0 obj << /S /I /P 3913 0 R /Pg 856 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 3915 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 594 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 3916 0 obj << /S /P /P 2007 0 R /K 3946 0 R >> endobj 3917 0 obj << /S /H1 /P 2007 0 R /Pg 861 0 R /K 1 >> endobj 3918 0 obj << /S /P /P 2007 0 R /Pg 861 0 R /K 2 >> endobj 3919 0 obj << /S /P /P 2007 0 R /Pg 861 0 R /K 3 >> endobj 3920 0 obj << /S /P /P 2007 0 R /Pg 861 0 R /K 4 >> endobj 3921 0 obj << /S /P /P 2007 0 R /Pg 861 0 R /K 5 >> endobj 3922 0 obj << /S /P /P 2007 0 R /Pg 861 0 R /K [ 6 3942 0 R 8 << /Type /MCR /Pg 869 0 R /MCID 0 >> 3943 0 R << /Type /MCR /Pg 869 0 R /MCID 2 >> 3944 0 R << /Type /MCR /Pg 869 0 R /MCID 4 >> 3945 0 R << /Type /MCR /Pg 869 0 R /MCID 6 >> ] >> endobj 3923 0 obj << /S /P /P 2007 0 R /Pg 869 0 R /K 7 >> endobj 3924 0 obj << /S /DL /P 2007 0 R /K 3940 0 R >> endobj 3925 0 obj << /S /P /P 2007 0 R /Pg 869 0 R /K 9 >> endobj 3926 0 obj << /S /P /P 2007 0 R /Pg 869 0 R /K 10 >> endobj 3927 0 obj << /S /P /P 2007 0 R /Pg 869 0 R /K 11 >> endobj 3928 0 obj << /S /P /P 2007 0 R /Pg 869 0 R /K 12 >> endobj 3929 0 obj << /S /P /P 2007 0 R /Pg 869 0 R /K 13 >> endobj 3930 0 obj << /S /P /P 2007 0 R /Pg 869 0 R /K [ 14 << /Type /MCR /Pg 881 0 R /MCID 0 >> ] >> endobj 3931 0 obj << /S /P /P 2007 0 R /Pg 881 0 R /K [ 1 3936 0 R 3 3937 0 R 5 ] >> endobj 3932 0 obj << /S /P /P 2007 0 R /Pg 881 0 R /K [ 3934 0 R 7 ] >> endobj 3933 0 obj << /S /P /P 2007 0 R /Pg 881 0 R /K 8 >> endobj 3934 0 obj << /S /Link /P 3932 0 R /Pg 881 0 R /K [ 6 << /Type /OBJR /Obj 3935 0 R >> ] >> endobj 3935 0 obj << /Subtype /Link /Rect [ 46 564.54933 249.64 577.54933 ] /StructParent 604 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 885 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec072.html)>> >> endobj 3936 0 obj << /S /Link /P 3931 0 R /Pg 881 0 R /K [ 2 << /Type /OBJR /Obj 3939 0 R >> ] >> endobj 3937 0 obj << /S /Link /P 3931 0 R /Pg 881 0 R /K [ 4 << /Type /OBJR /Obj 3938 0 R >> ] >> endobj 3938 0 obj << /Subtype /Link /Rect [ 240.004 657.54933 294.004 670.54933 ] /StructParent 603 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 927 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec078.html)>> >> endobj 3939 0 obj << /Subtype /Link /Rect [ 286.32401 673.94934 342.65199 686.94934 ] /StructParent 602 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 449 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/quiz.html)>> >> endobj 3940 0 obj << /S /DD /P 3924 0 R /K 3941 0 R >> endobj 3941 0 obj << /S /LBody /P 3940 0 R /Pg 869 0 R /K 8 >> endobj 3942 0 obj << /S /I /P 3922 0 R /Pg 861 0 R /K 7 /Alt (formula 1) /A << /O /Layout /BBox [ 64 61.37257 318 106.37257 ] /Placement /Inline /Width 254 /BaselineShift -20.09999 >> >> endobj 3943 0 obj << /S /I /P 3922 0 R /Pg 869 0 R /K 1 /Alt (formula 2) /A << /O /Layout /BBox [ 64 717 397 766 ] /Placement /Inline /Width 333 /BaselineShift -22.09999 >> >> endobj 3944 0 obj << /S /I /P 3922 0 R /Pg 869 0 R /K 3 /Alt (formula 3) /A << /O /Layout /BBox [ 64 655.60001 477 702.60001 ] /Placement /Inline /Width 413 /BaselineShift -21.09999 >> >> endobj 3945 0 obj << /S /I /P 3922 0 R /Pg 869 0 R /K 5 /Alt (formula 4) /A << /O /Layout /BBox [ 64 595.2 515 641.2 ] /Placement /Inline /Width 451 /BaselineShift -20.59999 >> >> endobj 3946 0 obj << /S /Link /P 3916 0 R /K [ 3947 0 R << /Type /OBJR /Pg 861 0 R /Obj 3948 0 R >> ] >> endobj 3947 0 obj << /S /I /P 3946 0 R /Pg 861 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 3948 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 599 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 3949 0 obj << /S /P /P 2005 0 R /K 3984 0 R >> endobj 3950 0 obj << /S /H1 /P 2005 0 R /Pg 885 0 R /K 1 >> endobj 3951 0 obj << /S /P /P 2005 0 R /Pg 885 0 R /K 2 >> endobj 3952 0 obj << /S /DL /P 2005 0 R /K 3982 0 R >> endobj 3953 0 obj << /S /P /P 2005 0 R /Pg 885 0 R /K 4 >> endobj 3954 0 obj << /S /P /P 2005 0 R /Pg 885 0 R /K 5 >> endobj 3955 0 obj << /S /DL /P 2005 0 R /K 3980 0 R >> endobj 3956 0 obj << /S /P /P 2005 0 R /Pg 885 0 R /K 7 >> endobj 3957 0 obj << /S /P /P 2005 0 R /Pg 885 0 R /K 8 >> endobj 3958 0 obj << /S /P /P 2005 0 R /Pg 885 0 R /K [ 3978 0 R 10 ] >> endobj 3959 0 obj << /S /DL /P 2005 0 R /K 3976 0 R >> endobj 3960 0 obj << /S /P /P 2005 0 R /Pg 885 0 R /K 12 >> endobj 3961 0 obj << /S /P /P 2005 0 R /Pg 890 0 R /K 0 >> endobj 3962 0 obj << /S /P /P 2005 0 R /Pg 890 0 R /K 1 >> endobj 3963 0 obj << /S /DL /P 2005 0 R /K 3974 0 R >> endobj 3964 0 obj << /S /P /P 2005 0 R /Pg 890 0 R /K 3 >> endobj 3965 0 obj << /S /P /P 2005 0 R /Pg 890 0 R /K [ 4 3972 0 R 6 ] >> endobj 3966 0 obj << /S /P /P 2005 0 R /Pg 890 0 R /K 7 >> endobj 3967 0 obj << /S /P /P 2005 0 R /Pg 890 0 R /K 8 >> endobj 3968 0 obj << /S /P /P 2005 0 R /Pg 890 0 R /K [ 3970 0 R 10 ] >> endobj 3969 0 obj << /S /P /P 2005 0 R /Pg 890 0 R /K 11 >> endobj 3970 0 obj << /S /Link /P 3968 0 R /Pg 890 0 R /K [ 9 << /Type /OBJR /Obj 3971 0 R >> ] >> endobj 3971 0 obj << /Subtype /Link /Rect [ 45.20232 145.75864 204.0511 158.5332 ] /StructParent 610 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 894 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec073.html)>> >> endobj 3972 0 obj << /S /Link /P 3965 0 R /Pg 890 0 R /K [ 5 << /Type /OBJR /Obj 3973 0 R >> ] >> endobj 3973 0 obj << /Subtype /Link /Rect [ 75.99098 387.68927 131.34219 400.46384 ] /StructParent 609 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 943 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/appmodels.html)>> >> endobj 3974 0 obj << /S /DD /P 3963 0 R /K 3975 0 R >> endobj 3975 0 obj << /S /LBody /P 3974 0 R /Pg 890 0 R /K 2 >> endobj 3976 0 obj << /S /DD /P 3959 0 R /K 3977 0 R >> endobj 3977 0 obj << /S /LBody /P 3976 0 R /Pg 885 0 R /K 11 >> endobj 3978 0 obj << /S /Link /P 3958 0 R /Pg 885 0 R /K [ 9 << /Type /OBJR /Obj 3979 0 R >> ] >> endobj 3979 0 obj << /Subtype /Link /Rect [ 45.20232 215.01074 100.55353 227.78531 ] /StructParent 607 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 943 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/appmodels.html)>> >> endobj 3980 0 obj << /S /DD /P 3955 0 R /K 3981 0 R >> endobj 3981 0 obj << /S /LBody /P 3980 0 R /Pg 885 0 R /K 6 >> endobj 3982 0 obj << /S /DD /P 3952 0 R /K 3983 0 R >> endobj 3983 0 obj << /S /LBody /P 3982 0 R /Pg 885 0 R /K 3 >> endobj 3984 0 obj << /S /Link /P 3949 0 R /K [ 3985 0 R << /Type /OBJR /Pg 885 0 R /Obj 3986 0 R >> ] >> endobj 3985 0 obj << /S /I /P 3984 0 R /Pg 885 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 360.4393 512.92485 602.17342 766.45087 ] /Placement /End /Width 241.7341 /BaselineShift -253.526 >> >> endobj 3986 0 obj << /Subtype /Link /Rect [ 382.0578 514.89017 580.55492 764.48555 ] /StructParent 606 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 3987 0 obj << /S /P /P 2003 0 R /K 4000 0 R >> endobj 3988 0 obj << /S /H1 /P 2003 0 R /Pg 894 0 R /K 1 >> endobj 3989 0 obj << /S /P /P 2003 0 R /Pg 894 0 R /K 2 >> endobj 3990 0 obj << /S /P /P 2003 0 R /Pg 894 0 R /K 3 >> endobj 3991 0 obj << /S /P /P 2003 0 R /Pg 894 0 R /K 4 >> endobj 3992 0 obj << /S /P /P 2003 0 R /Pg 894 0 R /K 5 >> endobj 3993 0 obj << /S /P /P 2003 0 R /Pg 894 0 R /K 6 >> endobj 3994 0 obj << /S /P /P 2003 0 R /Pg 894 0 R /K [ 7 << /Type /MCR /Pg 899 0 R /MCID 0 >> ] >> endobj 3995 0 obj << /S /P /P 2003 0 R /Pg 899 0 R /K 1 >> endobj 3996 0 obj << /S /P /P 2003 0 R /Pg 899 0 R /K [ 3998 0 R 3 ] >> endobj 3997 0 obj << /S /P /P 2003 0 R /Pg 899 0 R /K 4 >> endobj 3998 0 obj << /S /Link /P 3996 0 R /Pg 899 0 R /K [ 2 << /Type /OBJR /Obj 3999 0 R >> ] >> endobj 3999 0 obj << /Subtype /Link /Rect [ 46 670.60001 195.82001 683.60001 ] /StructParent 614 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 903 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec074.html)>> >> endobj 4000 0 obj << /S /Link /P 3987 0 R /K [ 4001 0 R << /Type /OBJR /Pg 894 0 R /Obj 4002 0 R >> ] >> endobj 4001 0 obj << /S /I /P 4000 0 R /Pg 894 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 4002 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 612 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 4003 0 obj << /S /P /P 2001 0 R /K 4014 0 R >> endobj 4004 0 obj << /S /H1 /P 2001 0 R /Pg 903 0 R /K 1 >> endobj 4005 0 obj << /S /P /P 2001 0 R /Pg 903 0 R /K 2 >> endobj 4006 0 obj << /S /P /P 2001 0 R /Pg 903 0 R /K 3 >> endobj 4007 0 obj << /S /P /P 2001 0 R /Pg 903 0 R /K 4 >> endobj 4008 0 obj << /S /P /P 2001 0 R /Pg 903 0 R /K 5 >> endobj 4009 0 obj << /S /P /P 2001 0 R /Pg 903 0 R /K 6 >> endobj 4010 0 obj << /S /P /P 2001 0 R /Pg 903 0 R /K [ 4012 0 R 8 ] >> endobj 4011 0 obj << /S /P /P 2001 0 R /Pg 903 0 R /K 9 >> endobj 4012 0 obj << /S /Link /P 4010 0 R /Pg 903 0 R /K [ 7 << /Type /OBJR /Obj 4013 0 R >> ] >> endobj 4013 0 obj << /Subtype /Link /Rect [ 46 113.22858 186.664 126.22858 ] /StructParent 617 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 908 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec075.html)>> >> endobj 4014 0 obj << /S /Link /P 4003 0 R /K [ 4015 0 R << /Type /OBJR /Pg 903 0 R /Obj 4016 0 R >> ] >> endobj 4015 0 obj << /S /I /P 4014 0 R /Pg 903 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 4016 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 616 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 4017 0 obj << /S /P /P 1999 0 R /K 4028 0 R >> endobj 4018 0 obj << /S /H1 /P 1999 0 R /Pg 908 0 R /K 1 >> endobj 4019 0 obj << /S /P /P 1999 0 R /Pg 908 0 R /K 2 >> endobj 4020 0 obj << /S /DL /P 1999 0 R /K 4026 0 R >> endobj 4021 0 obj << /S /P /P 1999 0 R /Pg 908 0 R /K 4 >> endobj 4022 0 obj << /S /P /P 1999 0 R /Pg 908 0 R /K [ 4024 0 R 6 ] >> endobj 4023 0 obj << /S /P /P 1999 0 R /Pg 908 0 R /K 7 >> endobj 4024 0 obj << /S /Link /P 4022 0 R /Pg 908 0 R /K [ 5 << /Type /OBJR /Obj 4025 0 R >> ] >> endobj 4025 0 obj << /Subtype /Link /Rect [ 46 482.42857 184 495.42857 ] /StructParent 620 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 913 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec076.html)>> >> endobj 4026 0 obj << /S /DD /P 4020 0 R /K 4027 0 R >> endobj 4027 0 obj << /S /LBody /P 4026 0 R /Pg 908 0 R /K 3 >> endobj 4028 0 obj << /S /Link /P 4017 0 R /K [ 4029 0 R << /Type /OBJR /Pg 908 0 R /Obj 4030 0 R >> ] >> endobj 4029 0 obj << /S /I /P 4028 0 R /Pg 908 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 4030 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 619 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 4031 0 obj << /S /P /P 1997 0 R /K 4063 0 R >> endobj 4032 0 obj << /S /H1 /P 1997 0 R /Pg 913 0 R /K 1 >> endobj 4033 0 obj << /S /P /P 1997 0 R /Pg 913 0 R /K [ 2 4061 0 R 4 ] >> endobj 4034 0 obj << /S /P /P 1997 0 R /Pg 913 0 R /K [ 5 4059 0 R 7 ] >> endobj 4035 0 obj << /S /P /P 1997 0 R /Pg 913 0 R /K 8 >> endobj 4036 0 obj << /S /P /P 1997 0 R /Pg 913 0 R /K 9 >> endobj 4037 0 obj << /S /P /P 1997 0 R /Pg 913 0 R /K 10 >> endobj 4038 0 obj << /S /P /P 1997 0 R /Pg 913 0 R /K 11 >> endobj 4039 0 obj << /S /P /P 1997 0 R /Pg 913 0 R /K 12 >> endobj 4040 0 obj << /S /P /P 1997 0 R /Pg 913 0 R /K 13 >> endobj 4041 0 obj << /S /P /P 1997 0 R /Pg 913 0 R /K [ 14 4057 0 R 16 ] >> endobj 4042 0 obj << /S /P /P 1997 0 R /Pg 913 0 R /K 17 >> endobj 4043 0 obj << /S /DL /P 1997 0 R /K 4055 0 R >> endobj 4044 0 obj << /S /DL /P 1997 0 R /K 4053 0 R >> endobj 4045 0 obj << /S /P /P 1997 0 R /Pg 918 0 R /K 0 >> endobj 4046 0 obj << /S /P /P 1997 0 R /Pg 918 0 R /K 1 >> endobj 4047 0 obj << /S /P /P 1997 0 R /Pg 918 0 R /K 2 >> endobj 4048 0 obj << /S /P /P 1997 0 R /Pg 918 0 R /K 3 >> endobj 4049 0 obj << /S /P /P 1997 0 R /Pg 918 0 R /K [ 4051 0 R 5 ] >> endobj 4050 0 obj << /S /P /P 1997 0 R /Pg 918 0 R /K 6 >> endobj 4051 0 obj << /S /Link /P 4049 0 R /Pg 918 0 R /K [ 4 << /Type /OBJR /Obj 4052 0 R >> ] >> endobj 4052 0 obj << /Subtype /Link /Rect [ 46 570.62857 216.98801 583.62857 ] /StructParent 627 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 922 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec077.html)>> >> endobj 4053 0 obj << /S /DD /P 4044 0 R /K 4054 0 R >> endobj 4054 0 obj << /S /LBody /P 4053 0 R /Pg 913 0 R /K 19 >> endobj 4055 0 obj << /S /DD /P 4043 0 R /K 4056 0 R >> endobj 4056 0 obj << /S /LBody /P 4055 0 R /Pg 913 0 R /K 18 >> endobj 4057 0 obj << /S /Link /P 4041 0 R /Pg 913 0 R /K [ 15 << /Type /OBJR /Obj 4058 0 R >> ] >> endobj 4058 0 obj << /Subtype /Link /Rect [ 58 225.02856 114.328 238.02856 ] /StructParent 625 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 943 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/appmodels.html)>> >> endobj 4059 0 obj << /S /Link /P 4034 0 R /Pg 913 0 R /K [ 6 << /Type /OBJR /Obj 4060 0 R >> ] >> endobj 4060 0 obj << /Subtype /Link /Rect [ 67.66 604.82857 176.02 617.82857 ] /StructParent 624 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 935 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sol07.html)>> >> endobj 4061 0 obj << /S /Link /P 4033 0 R /Pg 913 0 R /K [ 3 << /Type /OBJR /Obj 4062 0 R >> ] >> endobj 4062 0 obj << /Subtype /Link /Rect [ 103.66 640.22858 159.98801 653.22858 ] /StructParent 623 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 449 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/quiz.html)>> >> endobj 4063 0 obj << /S /Link /P 4031 0 R /K [ 4064 0 R << /Type /OBJR /Pg 913 0 R /Obj 4065 0 R >> ] >> endobj 4064 0 obj << /S /I /P 4063 0 R /Pg 913 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 4065 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 622 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 4066 0 obj << /S /P /P 1995 0 R /K 4078 0 R >> endobj 4067 0 obj << /S /H1 /P 1995 0 R /Pg 922 0 R /K 1 >> endobj 4068 0 obj << /S /P /P 1995 0 R /Pg 922 0 R /K 2 >> endobj 4069 0 obj << /S /P /P 1995 0 R /Pg 922 0 R /K 3 >> endobj 4070 0 obj << /S /DL /P 1995 0 R /K 4076 0 R >> endobj 4071 0 obj << /S /P /P 1995 0 R /Pg 922 0 R /K 5 >> endobj 4072 0 obj << /S /P /P 1995 0 R /Pg 922 0 R /K [ 4074 0 R 7 ] >> endobj 4073 0 obj << /S /P /P 1995 0 R /Pg 922 0 R /K 8 >> endobj 4074 0 obj << /S /Link /P 4072 0 R /Pg 922 0 R /K [ 6 << /Type /OBJR /Obj 4075 0 R >> ] >> endobj 4075 0 obj << /Subtype /Link /Rect [ 46 290.62857 315.304 303.62857 ] /StructParent 630 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 927 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec078.html)>> >> endobj 4076 0 obj << /S /DD /P 4070 0 R /K 4077 0 R >> endobj 4077 0 obj << /S /LBody /P 4076 0 R /Pg 922 0 R /K 4 >> endobj 4078 0 obj << /S /Link /P 4066 0 R /K [ 4079 0 R << /Type /OBJR /Pg 922 0 R /Obj 4080 0 R >> ] >> endobj 4079 0 obj << /S /I /P 4078 0 R /Pg 922 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 4080 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 629 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 4081 0 obj << /S /P /P 1993 0 R /K 4099 0 R >> endobj 4082 0 obj << /S /H1 /P 1993 0 R /Pg 927 0 R /K 1 >> endobj 4083 0 obj << /S /P /P 1993 0 R /Pg 927 0 R /K 2 >> endobj 4084 0 obj << /S /P /P 1993 0 R /Pg 927 0 R /K 3 >> endobj 4085 0 obj << /S /P /P 1993 0 R /Pg 927 0 R /K 4 >> endobj 4086 0 obj << /S /DL /P 1993 0 R /K [ 4089 0 R 4090 0 R 4091 0 R 4092 0 R 4093 0 R ] >> endobj 4087 0 obj << /S /P /P 1993 0 R /Pg 927 0 R /K 10 >> endobj 4088 0 obj << /S /P /P 1993 0 R /Pg 932 0 R /K 0 >> endobj 4089 0 obj << /S /DD /P 4086 0 R /K 4098 0 R >> endobj 4090 0 obj << /S /DD /P 4086 0 R /K 4097 0 R >> endobj 4091 0 obj << /S /DD /P 4086 0 R /K 4096 0 R >> endobj 4092 0 obj << /S /DD /P 4086 0 R /K 4095 0 R >> endobj 4093 0 obj << /S /DD /P 4086 0 R /K 4094 0 R >> endobj 4094 0 obj << /S /LBody /P 4093 0 R /Pg 927 0 R /K 9 >> endobj 4095 0 obj << /S /LBody /P 4092 0 R /Pg 927 0 R /K 8 >> endobj 4096 0 obj << /S /LBody /P 4091 0 R /Pg 927 0 R /K 7 >> endobj 4097 0 obj << /S /LBody /P 4090 0 R /Pg 927 0 R /K 6 >> endobj 4098 0 obj << /S /LBody /P 4089 0 R /Pg 927 0 R /K 5 >> endobj 4099 0 obj << /S /Link /P 4081 0 R /K [ 4100 0 R << /Type /OBJR /Pg 927 0 R /Obj 4101 0 R >> ] >> endobj 4100 0 obj << /S /I /P 4099 0 R /Pg 927 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 4101 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 632 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 4102 0 obj << /S /P /P 1991 0 R /K 4117 0 R >> endobj 4103 0 obj << /S /H1 /P 1991 0 R /Pg 935 0 R /K 1 >> endobj 4104 0 obj << /S /P /P 1991 0 R /Pg 935 0 R /K 2 >> endobj 4105 0 obj << /S /P /P 1991 0 R /Pg 935 0 R /K 3 >> endobj 4106 0 obj << /S /P /P 1991 0 R /Pg 935 0 R /K 4 >> endobj 4107 0 obj << /S /P /P 1991 0 R /Pg 935 0 R /K 5 >> endobj 4108 0 obj << /S /P /P 1991 0 R /Pg 935 0 R /K 6 >> endobj 4109 0 obj << /S /P /P 1991 0 R /Pg 935 0 R /K 7 >> endobj 4110 0 obj << /S /P /P 1991 0 R /Pg 935 0 R /K 8 >> endobj 4111 0 obj << /S /P /P 1991 0 R /Pg 935 0 R /K 9 >> endobj 4112 0 obj << /S /P /P 1991 0 R /Pg 935 0 R /K 10 >> endobj 4113 0 obj << /S /P /P 1991 0 R /Pg 940 0 R /K 0 >> endobj 4114 0 obj << /S /P /P 1991 0 R /Pg 940 0 R /K 1 >> endobj 4115 0 obj << /S /P /P 1991 0 R /Pg 940 0 R /K 2 >> endobj 4116 0 obj << /S /P /P 1991 0 R /Pg 940 0 R /K 3 >> endobj 4117 0 obj << /S /Link /P 4102 0 R /K [ 4118 0 R << /Type /OBJR /Pg 935 0 R /Obj 4119 0 R >> ] >> endobj 4118 0 obj << /S /I /P 4117 0 R /Pg 935 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 4119 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 635 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 4120 0 obj << /S /P /P 1989 0 R /K 4300 0 R >> endobj 4121 0 obj << /S /H1 /P 1989 0 R /Pg 943 0 R /K 1 >> endobj 4122 0 obj << /S /P /P 1989 0 R /Pg 943 0 R /K [ 4298 0 R 3 ] >> endobj 4123 0 obj << /S /P /P 1989 0 R /Pg 943 0 R /K [ 4 4296 0 R 6 ] >> endobj 4124 0 obj << /S /DL /P 1989 0 R /K 4294 0 R >> endobj 4125 0 obj << /S /P /P 1989 0 R /Pg 943 0 R /K 8 >> endobj 4126 0 obj << /S /DL /P 1989 0 R /K 4292 0 R >> endobj 4127 0 obj << /S /P /P 1989 0 R /Pg 943 0 R /K 10 >> endobj 4128 0 obj << /S /DL /P 1989 0 R /K 4290 0 R >> endobj 4129 0 obj << /S /P /P 1989 0 R /Pg 943 0 R /K 12 >> endobj 4130 0 obj << /S /DL /P 1989 0 R /K 4288 0 R >> endobj 4131 0 obj << /S /P /P 1989 0 R /Pg 948 0 R /K 0 >> endobj 4132 0 obj << /S /P /P 1989 0 R /Pg 948 0 R /K 1 >> endobj 4133 0 obj << /S /DL /P 1989 0 R /K 4286 0 R >> endobj 4134 0 obj << /S /P /P 1989 0 R /Pg 948 0 R /K 3 >> endobj 4135 0 obj << /S /DL /P 1989 0 R /K 4284 0 R >> endobj 4136 0 obj << /S /P /P 1989 0 R /Pg 948 0 R /K 5 >> endobj 4137 0 obj << /S /P /P 1989 0 R /Pg 948 0 R /K 6 >> endobj 4138 0 obj << /S /Table /P 1989 0 R /K [ 4186 0 R 4187 0 R 4188 0 R 4189 0 R 4190 0 R 4191 0 R 4192 0 R 4193 0 R 4194 0 R 4195 0 R 4196 0 R 4197 0 R 4198 0 R 4199 0 R ] /A << /O /Layout /Placement /Block /BBox [ 245.168 51.57143 402.832 311.17143 ] >> >> endobj 4139 0 obj << /S /P /P 1989 0 R /Pg 948 0 R /K [ 49 << /Type /MCR /Pg 951 0 R /MCID 0 >> ] >> endobj 4140 0 obj << /S /P /P 1989 0 R /Pg 951 0 R /K 1 >> endobj 4141 0 obj << /S /P /P 1989 0 R /Pg 951 0 R /K [ 4182 0 R 3 4183 0 R 5 ] >> endobj 4142 0 obj << /S /DL /P 1989 0 R /K 4180 0 R >> endobj 4143 0 obj << /S /P /P 1989 0 R /Pg 951 0 R /K 7 >> endobj 4144 0 obj << /S /DL /P 1989 0 R /K 4178 0 R >> endobj 4145 0 obj << /S /P /P 1989 0 R /Pg 951 0 R /K 9 >> endobj 4146 0 obj << /S /DL /P 1989 0 R /K 4176 0 R >> endobj 4147 0 obj << /S /P /P 1989 0 R /Pg 951 0 R /K 11 >> endobj 4148 0 obj << /S /P /P 1989 0 R /Pg 951 0 R /K [ 12 << /Type /MCR /Pg 955 0 R /MCID 0 >> ] >> endobj 4149 0 obj << /S /P /P 1989 0 R /Pg 955 0 R /K 1 >> endobj 4150 0 obj << /S /DL /P 1989 0 R /K 4174 0 R >> endobj 4151 0 obj << /S /P /P 1989 0 R /Pg 955 0 R /K 3 >> endobj 4152 0 obj << /S /P /P 1989 0 R /Pg 955 0 R /K 4 >> endobj 4153 0 obj << /S /DL /P 1989 0 R /K 4172 0 R >> endobj 4154 0 obj << /S /P /P 1989 0 R /Pg 955 0 R /K 6 >> endobj 4155 0 obj << /S /P /P 1989 0 R /Pg 955 0 R /K 7 >> endobj 4156 0 obj << /S /DL /P 1989 0 R /K 4170 0 R >> endobj 4157 0 obj << /S /P /P 1989 0 R /Pg 958 0 R /K 1 >> endobj 4158 0 obj << /S /DL /P 1989 0 R /K 4168 0 R >> endobj 4159 0 obj << /S /P /P 1989 0 R /Pg 958 0 R /K 3 >> endobj 4160 0 obj << /S /DL /P 1989 0 R /K 4166 0 R >> endobj 4161 0 obj << /S /P /P 1989 0 R /Pg 958 0 R /K 5 >> endobj 4162 0 obj << /S /DL /P 1989 0 R /K 4164 0 R >> endobj 4163 0 obj << /S /P /P 1989 0 R /Pg 958 0 R /K 7 >> endobj 4164 0 obj << /S /DD /P 4162 0 R /K 4165 0 R >> endobj 4165 0 obj << /S /LBody /P 4164 0 R /Pg 958 0 R /K 6 >> endobj 4166 0 obj << /S /DD /P 4160 0 R /K 4167 0 R >> endobj 4167 0 obj << /S /LBody /P 4166 0 R /Pg 958 0 R /K 4 >> endobj 4168 0 obj << /S /DD /P 4158 0 R /K 4169 0 R >> endobj 4169 0 obj << /S /LBody /P 4168 0 R /Pg 958 0 R /K 2 >> endobj 4170 0 obj << /S /DD /P 4156 0 R /K 4171 0 R >> endobj 4171 0 obj << /S /LBody /P 4170 0 R /Pg 955 0 R /K [ 8 << /Type /MCR /Pg 958 0 R /MCID 0 >> ] >> endobj 4172 0 obj << /S /DD /P 4153 0 R /K 4173 0 R >> endobj 4173 0 obj << /S /LBody /P 4172 0 R /Pg 955 0 R /K 5 >> endobj 4174 0 obj << /S /DD /P 4150 0 R /K 4175 0 R >> endobj 4175 0 obj << /S /LBody /P 4174 0 R /Pg 955 0 R /K 2 >> endobj 4176 0 obj << /S /DD /P 4146 0 R /K 4177 0 R >> endobj 4177 0 obj << /S /LBody /P 4176 0 R /Pg 951 0 R /K 10 >> endobj 4178 0 obj << /S /DD /P 4144 0 R /K 4179 0 R >> endobj 4179 0 obj << /S /LBody /P 4178 0 R /Pg 951 0 R /K 8 >> endobj 4180 0 obj << /S /DD /P 4142 0 R /K 4181 0 R >> endobj 4181 0 obj << /S /LBody /P 4180 0 R /Pg 951 0 R /K 6 >> endobj 4182 0 obj << /S /Link /P 4141 0 R /Pg 951 0 R /K [ 2 << /Type /OBJR /Obj 4185 0 R >> ] >> endobj 4183 0 obj << /S /Link /P 4141 0 R /Pg 951 0 R /K [ 4 << /Type /OBJR /Obj 4184 0 R >> ] >> endobj 4184 0 obj << /Subtype /Link /Rect [ 97 611 148 624 ] /StructParent 644 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 662 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/timemod.c)>> >> endobj 4185 0 obj << /Subtype /Link /Rect [ 46 627.39999 100 640.39999 ] /StructParent 643 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 885 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec072.html)>> >> endobj 4186 0 obj << /S /TR /P 4138 0 R /K [ 4278 0 R 4279 0 R 4280 0 R ] >> endobj 4187 0 obj << /S /TR /P 4138 0 R /K [ 4272 0 R 4273 0 R 4274 0 R ] >> endobj 4188 0 obj << /S /TR /P 4138 0 R /K [ 4266 0 R 4267 0 R 4268 0 R ] >> endobj 4189 0 obj << /S /TR /P 4138 0 R /K [ 4260 0 R 4261 0 R 4262 0 R ] >> endobj 4190 0 obj << /S /TR /P 4138 0 R /K [ 4254 0 R 4255 0 R 4256 0 R ] >> endobj 4191 0 obj << /S /TR /P 4138 0 R /K [ 4248 0 R 4249 0 R 4250 0 R ] >> endobj 4192 0 obj << /S /TR /P 4138 0 R /K [ 4242 0 R 4243 0 R 4244 0 R ] >> endobj 4193 0 obj << /S /TR /P 4138 0 R /K [ 4236 0 R 4237 0 R 4238 0 R ] >> endobj 4194 0 obj << /S /TR /P 4138 0 R /K [ 4230 0 R 4231 0 R 4232 0 R ] >> endobj 4195 0 obj << /S /TR /P 4138 0 R /K [ 4224 0 R 4225 0 R 4226 0 R ] >> endobj 4196 0 obj << /S /TR /P 4138 0 R /K [ 4218 0 R 4219 0 R 4220 0 R ] >> endobj 4197 0 obj << /S /TR /P 4138 0 R /K [ 4212 0 R 4213 0 R 4214 0 R ] >> endobj 4198 0 obj << /S /TR /P 4138 0 R /K [ 4206 0 R 4207 0 R 4208 0 R ] >> endobj 4199 0 obj << /S /TR /P 4138 0 R /K [ 4200 0 R 4201 0 R 4202 0 R ] >> endobj 4200 0 obj << /S /TD /P 4199 0 R /K 4205 0 R >> endobj 4201 0 obj << /S /TD /P 4199 0 R /K 4204 0 R >> endobj 4202 0 obj << /S /TD /P 4199 0 R /K 4203 0 R >> endobj 4203 0 obj << /S /P /P 4202 0 R /Pg 948 0 R /K 48 >> endobj 4204 0 obj << /S /P /P 4201 0 R /Pg 948 0 R /K 47 >> endobj 4205 0 obj << /S /P /P 4200 0 R /Pg 948 0 R /K 46 >> endobj 4206 0 obj << /S /TD /P 4198 0 R /K 4211 0 R >> endobj 4207 0 obj << /S /TD /P 4198 0 R /K 4210 0 R >> endobj 4208 0 obj << /S /TD /P 4198 0 R /K 4209 0 R >> endobj 4209 0 obj << /S /P /P 4208 0 R /Pg 948 0 R /K 45 >> endobj 4210 0 obj << /S /P /P 4207 0 R /Pg 948 0 R /K 44 >> endobj 4211 0 obj << /S /P /P 4206 0 R /Pg 948 0 R /K 43 >> endobj 4212 0 obj << /S /TD /P 4197 0 R /K 4217 0 R >> endobj 4213 0 obj << /S /TD /P 4197 0 R /K 4216 0 R >> endobj 4214 0 obj << /S /TD /P 4197 0 R /K 4215 0 R >> endobj 4215 0 obj << /S /P /P 4214 0 R /Pg 948 0 R /K 42 >> endobj 4216 0 obj << /S /P /P 4213 0 R /Pg 948 0 R /K 41 >> endobj 4217 0 obj << /S /P /P 4212 0 R /Pg 948 0 R /K 40 >> endobj 4218 0 obj << /S /TD /P 4196 0 R /K 4223 0 R >> endobj 4219 0 obj << /S /TD /P 4196 0 R /K 4222 0 R >> endobj 4220 0 obj << /S /TD /P 4196 0 R /K 4221 0 R >> endobj 4221 0 obj << /S /P /P 4220 0 R /Pg 948 0 R /K 39 >> endobj 4222 0 obj << /S /P /P 4219 0 R /Pg 948 0 R /K 38 >> endobj 4223 0 obj << /S /P /P 4218 0 R /Pg 948 0 R /K 37 >> endobj 4224 0 obj << /S /TD /P 4195 0 R /K 4229 0 R >> endobj 4225 0 obj << /S /TD /P 4195 0 R /K 4228 0 R >> endobj 4226 0 obj << /S /TD /P 4195 0 R /K 4227 0 R >> endobj 4227 0 obj << /S /P /P 4226 0 R /Pg 948 0 R /K 36 >> endobj 4228 0 obj << /S /P /P 4225 0 R /Pg 948 0 R /K 35 >> endobj 4229 0 obj << /S /P /P 4224 0 R /Pg 948 0 R /K 34 >> endobj 4230 0 obj << /S /TD /P 4194 0 R /K 4235 0 R >> endobj 4231 0 obj << /S /TD /P 4194 0 R /K 4234 0 R >> endobj 4232 0 obj << /S /TD /P 4194 0 R /K 4233 0 R >> endobj 4233 0 obj << /S /P /P 4232 0 R /Pg 948 0 R /K 33 >> endobj 4234 0 obj << /S /P /P 4231 0 R /Pg 948 0 R /K 32 >> endobj 4235 0 obj << /S /P /P 4230 0 R /Pg 948 0 R /K 31 >> endobj 4236 0 obj << /S /TD /P 4193 0 R /K 4241 0 R >> endobj 4237 0 obj << /S /TD /P 4193 0 R /K 4240 0 R >> endobj 4238 0 obj << /S /TD /P 4193 0 R /K 4239 0 R >> endobj 4239 0 obj << /S /P /P 4238 0 R /Pg 948 0 R /K 30 >> endobj 4240 0 obj << /S /P /P 4237 0 R /Pg 948 0 R /K 29 >> endobj 4241 0 obj << /S /P /P 4236 0 R /Pg 948 0 R /K 28 >> endobj 4242 0 obj << /S /TD /P 4192 0 R /K 4247 0 R >> endobj 4243 0 obj << /S /TD /P 4192 0 R /K 4246 0 R >> endobj 4244 0 obj << /S /TD /P 4192 0 R /K 4245 0 R >> endobj 4245 0 obj << /S /P /P 4244 0 R /Pg 948 0 R /K 27 >> endobj 4246 0 obj << /S /P /P 4243 0 R /Pg 948 0 R /K 26 >> endobj 4247 0 obj << /S /P /P 4242 0 R /Pg 948 0 R /K 25 >> endobj 4248 0 obj << /S /TD /P 4191 0 R /K 4253 0 R >> endobj 4249 0 obj << /S /TD /P 4191 0 R /K 4252 0 R >> endobj 4250 0 obj << /S /TD /P 4191 0 R /K 4251 0 R >> endobj 4251 0 obj << /S /P /P 4250 0 R /Pg 948 0 R /K 24 >> endobj 4252 0 obj << /S /P /P 4249 0 R /Pg 948 0 R /K 23 >> endobj 4253 0 obj << /S /P /P 4248 0 R /Pg 948 0 R /K 22 >> endobj 4254 0 obj << /S /TD /P 4190 0 R /K 4259 0 R >> endobj 4255 0 obj << /S /TD /P 4190 0 R /K 4258 0 R >> endobj 4256 0 obj << /S /TD /P 4190 0 R /K 4257 0 R >> endobj 4257 0 obj << /S /P /P 4256 0 R /Pg 948 0 R /K 21 >> endobj 4258 0 obj << /S /P /P 4255 0 R /Pg 948 0 R /K 20 >> endobj 4259 0 obj << /S /P /P 4254 0 R /Pg 948 0 R /K 19 >> endobj 4260 0 obj << /S /TD /P 4189 0 R /K 4265 0 R >> endobj 4261 0 obj << /S /TD /P 4189 0 R /K 4264 0 R >> endobj 4262 0 obj << /S /TD /P 4189 0 R /K 4263 0 R >> endobj 4263 0 obj << /S /P /P 4262 0 R /Pg 948 0 R /K 18 >> endobj 4264 0 obj << /S /P /P 4261 0 R /Pg 948 0 R /K 17 >> endobj 4265 0 obj << /S /P /P 4260 0 R /Pg 948 0 R /K 16 >> endobj 4266 0 obj << /S /TD /P 4188 0 R /K 4271 0 R >> endobj 4267 0 obj << /S /TD /P 4188 0 R /K 4270 0 R >> endobj 4268 0 obj << /S /TD /P 4188 0 R /K 4269 0 R >> endobj 4269 0 obj << /S /P /P 4268 0 R /Pg 948 0 R /K 15 >> endobj 4270 0 obj << /S /P /P 4267 0 R /Pg 948 0 R /K 14 >> endobj 4271 0 obj << /S /P /P 4266 0 R /Pg 948 0 R /K 13 >> endobj 4272 0 obj << /S /TD /P 4187 0 R /K 4277 0 R >> endobj 4273 0 obj << /S /TD /P 4187 0 R /K 4276 0 R >> endobj 4274 0 obj << /S /TD /P 4187 0 R /K 4275 0 R >> endobj 4275 0 obj << /S /P /P 4274 0 R /Pg 948 0 R /K 12 >> endobj 4276 0 obj << /S /P /P 4273 0 R /Pg 948 0 R /K 11 >> endobj 4277 0 obj << /S /P /P 4272 0 R /Pg 948 0 R /K 10 >> endobj 4278 0 obj << /S /TH /P 4186 0 R /K 4283 0 R >> endobj 4279 0 obj << /S /TH /P 4186 0 R /K 4282 0 R >> endobj 4280 0 obj << /S /TH /P 4186 0 R /K 4281 0 R >> endobj 4281 0 obj << /S /P /P 4280 0 R /Pg 948 0 R /K 9 >> endobj 4282 0 obj << /S /P /P 4279 0 R /Pg 948 0 R /K 8 >> endobj 4283 0 obj << /S /P /P 4278 0 R /Pg 948 0 R /K 7 >> endobj 4284 0 obj << /S /DD /P 4135 0 R /K 4285 0 R >> endobj 4285 0 obj << /S /LBody /P 4284 0 R /Pg 948 0 R /K 4 >> endobj 4286 0 obj << /S /DD /P 4133 0 R /K 4287 0 R >> endobj 4287 0 obj << /S /LBody /P 4286 0 R /Pg 948 0 R /K 2 >> endobj 4288 0 obj << /S /DD /P 4130 0 R /K 4289 0 R >> endobj 4289 0 obj << /S /LBody /P 4288 0 R /Pg 943 0 R /K 13 >> endobj 4290 0 obj << /S /DD /P 4128 0 R /K 4291 0 R >> endobj 4291 0 obj << /S /LBody /P 4290 0 R /Pg 943 0 R /K 11 >> endobj 4292 0 obj << /S /DD /P 4126 0 R /K 4293 0 R >> endobj 4293 0 obj << /S /LBody /P 4292 0 R /Pg 943 0 R /K 9 >> endobj 4294 0 obj << /S /DD /P 4124 0 R /K 4295 0 R >> endobj 4295 0 obj << /S /LBody /P 4294 0 R /Pg 943 0 R /K 7 >> endobj 4296 0 obj << /S /Link /P 4123 0 R /Pg 943 0 R /K [ 5 << /Type /OBJR /Obj 4297 0 R >> ] >> endobj 4297 0 obj << /Subtype /Link /Rect [ 111.31599 501.97144 179.632 514.97144 ] /StructParent 640 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 655 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/spacemod.cpp)>> >> endobj 4298 0 obj << /S /Link /P 4122 0 R /Pg 943 0 R /K [ 2 << /Type /OBJR /Obj 4299 0 R >> ] >> endobj 4299 0 obj << /Subtype /Link /Rect [ 46 609.37143 100 622.37143 ] /StructParent 639 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 885 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec072.html)>> >> endobj 4300 0 obj << /S /Link /P 4120 0 R /K [ 4301 0 R << /Type /OBJR /Pg 943 0 R /Obj 4302 0 R >> ] >> endobj 4301 0 obj << /S /I /P 4300 0 R /Pg 943 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 4302 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 638 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 4303 0 obj << /S /P /P 1987 0 R /K 4395 0 R >> endobj 4304 0 obj << /S /H1 /P 1987 0 R /Pg 961 0 R /K 1 >> endobj 4305 0 obj << /S /P /P 1987 0 R /Pg 961 0 R /K [ 2 4393 0 R 4 ] >> endobj 4306 0 obj << /S /H4 /P 1987 0 R /Pg 961 0 R /K 5 >> endobj 4307 0 obj << /S /UL /P 1987 0 R /A 4377 0 R /K [ 4378 0 R 4379 0 R 4380 0 R 4381 0 R 4382 0 R ] >> endobj 4308 0 obj << /S /H4 /P 1987 0 R /Pg 961 0 R /K 16 >> endobj 4309 0 obj << /S /P /P 1987 0 R /Pg 961 0 R /K [ 17 4375 0 R 19 ] >> endobj 4310 0 obj << /S /P /P 1987 0 R /Pg 961 0 R /K [ 4369 0 R 21 4370 0 R 23 4371 0 R 25 ] >> endobj 4311 0 obj << /S /P /P 1987 0 R /Pg 961 0 R /K [ 26 4365 0 R 28 4366 0 R 30 ] >> endobj 4312 0 obj << /S /P /P 1987 0 R /Pg 961 0 R /K [ 31 4358 0 R 33 4359 0 R 35 4360 0 R 37 ] >> endobj 4313 0 obj << /S /P /P 1987 0 R /Pg 961 0 R /K [ 38 4354 0 R 40 4355 0 R 42 ] >> endobj 4314 0 obj << /S /P /P 1987 0 R /Pg 961 0 R /K [ 4350 0 R 44 4351 0 R 46 ] >> endobj 4315 0 obj << /S /P /P 1987 0 R /Pg 969 0 R /K [ 0 4322 0 R 2 4323 0 R 4 4324 0 R 6 4325 0 R 8 4326 0 R 10 4327 0 R 12 4328 0 R 14 4329 0 R 16 4330 0 R 18 4331 0 R 20 4332 0 R 22 4333 0 R 24 ] >> endobj 4316 0 obj << /S /H4 /P 1987 0 R /Pg 969 0 R /K [ 25 4320 0 R 27 ] >> endobj 4317 0 obj << /S /P /P 1987 0 R /Pg 969 0 R /K 28 >> endobj 4318 0 obj << /S /P /P 1987 0 R /Pg 969 0 R /K 29 >> endobj 4319 0 obj << /S /P /P 1987 0 R /Pg 969 0 R /K 30 >> endobj 4320 0 obj << /S /Link /P 4316 0 R /Pg 969 0 R /K [ 26 << /Type /OBJR /Obj 4321 0 R >> ] >> endobj 4321 0 obj << /Subtype /Link /Rect [ 125.356 647.68571 153.556 660.68571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.microsoft.com/billgates/ \\n\\nThis\ file was not retrieved by Teleport Pro, because it is addressed on a do\ main or path outside the boundaries set for its Starting Address. \\n\\\ nDo you want to open it from the server?'\)\)window.location='http://www\ .microsoft.com/billgates/')>> /Border [ 0 0 0 ] /StructParent 681 >> endobj 4322 0 obj << /S /Link /P 4315 0 R /Pg 969 0 R /K [ 1 << /Type /OBJR /Obj 4349 0 R >> ] >> endobj 4323 0 obj << /S /Link /P 4315 0 R /Pg 969 0 R /K [ 3 << /Type /OBJR /Obj 4348 0 R >> << /Type /OBJR /Obj 4347 0 R >> ] >> endobj 4324 0 obj << /S /Link /P 4315 0 R /Pg 969 0 R /K [ 5 << /Type /OBJR /Obj 4346 0 R >> ] >> endobj 4325 0 obj << /S /Link /P 4315 0 R /Pg 969 0 R /K [ 7 << /Type /OBJR /Obj 4345 0 R >> ] >> endobj 4326 0 obj << /S /Link /P 4315 0 R /Pg 969 0 R /K [ 9 << /Type /OBJR /Obj 4344 0 R >> << /Type /OBJR /Obj 4343 0 R >> ] >> endobj 4327 0 obj << /S /Link /P 4315 0 R /Pg 969 0 R /K [ 11 << /Type /OBJR /Obj 4342 0 R >> ] >> endobj 4328 0 obj << /S /Link /P 4315 0 R /Pg 969 0 R /K [ 13 << /Type /OBJR /Obj 4341 0 R >> << /Type /OBJR /Obj 4340 0 R >> ] >> endobj 4329 0 obj << /S /Link /P 4315 0 R /Pg 969 0 R /K [ 15 << /Type /OBJR /Obj 4339 0 R >> ] >> endobj 4330 0 obj << /S /Link /P 4315 0 R /Pg 969 0 R /K [ 17 << /Type /OBJR /Obj 4338 0 R >> ] >> endobj 4331 0 obj << /S /Link /P 4315 0 R /Pg 969 0 R /K [ 19 << /Type /OBJR /Obj 4337 0 R >> << /Type /OBJR /Obj 4336 0 R >> ] >> endobj 4332 0 obj << /S /Link /P 4315 0 R /Pg 969 0 R /K [ 21 << /Type /OBJR /Obj 4335 0 R >> ] >> endobj 4333 0 obj << /S /Link /P 4315 0 R /Pg 969 0 R /K [ 23 << /Type /OBJR /Obj 4334 0 R >> ] >> endobj 4334 0 obj << /Subtype /Link /Rect [ 225.64 683.08571 477.256 696.08571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.vais.net/~semprebon/Articles/BestBoo\ ks.html \\n\\nThis file was not retrieved by Teleport Pro, because it i\ s addressed on a domain or path outside the boundaries set for its Start\ ing Address. \\n\\nDo you want to open it from the server?'\)\)window.l\ ocation='http://www.vais.net/~semprebon/Articles/BestBooks.html')>> /Border [ 0 0 0 ] /StructParent 680 >> endobj 4335 0 obj << /Subtype /Link /Rect [ 137.308 683.08571 210.64 696.08571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.cs.waikato.ac.nz/~singlis/workshop/b\ ooks.html \\n\\nThis file was not retrieved by Teleport Pro, because it\ is addressed on a domain or path outside the boundaries set for its Sta\ rting Address. \\n\\nDo you want to open it from the server?'\)\)window\ .location='http://www.cs.waikato.ac.nz/~singlis/workshop/books.html')>> /Border [ 0 0 0 ] /StructParent 679 >> endobj 4336 0 obj << /Subtype /Link /Rect [ 46 683.08571 122.308 696.08571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.bettag.com/articles/index.htm \\n\\\ nThis file was not retrieved by Teleport Pro, because it is addressed on\ a domain or path outside the boundaries set for its Starting Address. \ \\n\\nDo you want to open it from the server?'\)\)window.location='http:\ //www.bettag.com/articles/index.htm')>> /Border [ 0 0 0 ] /StructParent 678 >> endobj 4337 0 obj << /Subtype /Link /Rect [ 556.60001 699.48572 592.26401 712.48572 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.bettag.com/articles/index.htm \\n\\\ nThis file was not retrieved by Teleport Pro, because it is addressed on\ a domain or path outside the boundaries set for its Starting Address. \ \\n\\nDo you want to open it from the server?'\)\)window.location='http:\ //www.bettag.com/articles/index.htm')>> /Border [ 0 0 0 ] /StructParent 677 >> endobj 4338 0 obj << /Subtype /Link /Rect [ 422.29601 699.48572 541.60001 712.48572 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www-cse.ucsd.edu/users/wgg/reading.html \ \\n\\nThis file was not retrieved by Teleport Pro, because it is addres\ sed on a domain or path outside the boundaries set for its Starting Addr\ ess. \\n\\nDo you want to open it from the server?'\)\)window.location=\ 'http://www-cse.ucsd.edu/users/wgg/reading.html')>> /Border [ 0 0 0 ] /StructParent 676 >> endobj 4339 0 obj << /Subtype /Link /Rect [ 208.64799 699.48572 407.29601 712.48572 ] /A << /S /URI /URI (javascript:if\(confirm\('http://home1.gte.net/whitefox/docs/prog_books.h\ tm \\n\\nThis file was not retrieved by Teleport Pro, because it is add\ ressed on a domain or path outside the boundaries set for its Starting A\ ddress. \\n\\nDo you want to open it from the server?'\)\)window.locati\ on='http://home1.gte.net/whitefox/docs/prog_books.htm')>> /Border [ 0 0 0 ] /StructParent 675 >> endobj 4340 0 obj << /Subtype /Link /Rect [ 46 699.48572 193.64799 712.48572 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.math.grin.edu/~rebelsky/Courses/223/\ 97F/books.html \\n\\nThis file was not retrieved by Teleport Pro, becau\ se it is addressed on a domain or path outside the boundaries set for it\ s Starting Address. \\n\\nDo you want to open it from the server?'\)\)w\ indow.location='http://www.math.grin.edu/~rebelsky/Courses/223/97F/books\ .html')>> /Border [ 0 0 0 ] /StructParent 674 >> endobj 4341 0 obj << /Subtype /Link /Rect [ 430.3 715.88571 583.948 728.88571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.math.grin.edu/~rebelsky/Courses/223/\ 97F/books.html \\n\\nThis file was not retrieved by Teleport Pro, becau\ se it is addressed on a domain or path outside the boundaries set for it\ s Starting Address. \\n\\nDo you want to open it from the server?'\)\)w\ indow.location='http://www.math.grin.edu/~rebelsky/Courses/223/97F/books\ .html')>> /Border [ 0 0 0 ] /StructParent 673 >> endobj 4342 0 obj << /Subtype /Link /Rect [ 119.992 715.88571 415.3 728.88571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.rspa.com/spi/cdnglang.html \\n\\nTh\ is file was not retrieved by Teleport Pro, because it is addressed on a \ domain or path outside the boundaries set for its Starting Address. \\n\ \\nDo you want to open it from the server?'\)\)window.location='http://w\ ww.rspa.com/spi/cdnglang.html')>> /Border [ 0 0 0 ] /StructParent 672 >> endobj 4343 0 obj << /Subtype /Link /Rect [ 46 715.88571 104.992 728.88571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://it.ncsa.uiuc.edu/~mag/PC/csc220/biblio.h\ tml \\n\\nThis file was not retrieved by Teleport Pro, because it is ad\ dressed on a domain or path outside the boundaries set for its Starting \ Address. \\n\\nDo you want to open it from the server?'\)\)window.locat\ ion='http://it.ncsa.uiuc.edu/~mag/PC/csc220/biblio.html')>> /Border [ 0 0 0 ] /StructParent 671 >> endobj 4344 0 obj << /Subtype /Link /Rect [ 526.588 732.28572 590.584 745.28572 ] /A << /S /URI /URI (javascript:if\(confirm\('http://it.ncsa.uiuc.edu/~mag/PC/csc220/biblio.h\ tml \\n\\nThis file was not retrieved by Teleport Pro, because it is ad\ dressed on a domain or path outside the boundaries set for its Starting \ Address. \\n\\nDo you want to open it from the server?'\)\)window.locat\ ion='http://it.ncsa.uiuc.edu/~mag/PC/csc220/biblio.html')>> /Border [ 0 0 0 ] /StructParent 670 >> endobj 4345 0 obj << /Subtype /Link /Rect [ 356.272 732.28572 511.588 745.28572 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.best.com/~thvv/swe-readings.html \\\ n\\nThis file was not retrieved by Teleport Pro, because it is addressed\ on a domain or path outside the boundaries set for its Starting Address\ . \\n\\nDo you want to open it from the server?'\)\)window.location='ht\ tp://www.best.com/~thvv/swe-readings.html')>> /Border [ 0 0 0 ] /StructParent 669 >> endobj 4346 0 obj << /Subtype /Link /Rect [ 219.304 732.28572 341.272 745.28572 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.verber.com/mark/books/change.html \\\ n\\nThis file was not retrieved by Teleport Pro, because it is addressed\ on a domain or path outside the boundaries set for its Starting Address\ . \\n\\nDo you want to open it from the server?'\)\)window.location='ht\ tp://www.verber.com/mark/books/change.html')>> /Border [ 0 0 0 ] /StructParent 668 >> endobj 4347 0 obj << /Subtype /Link /Rect [ 46 732.28572 204.304 745.28572 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.csd.uwo.ca/~jamie/.Refs/tech-books.h\ tml \\n\\nThis file was not retrieved by Teleport Pro, because it is ad\ dressed on a domain or path outside the boundaries set for its Starting \ Address. \\n\\nDo you want to open it from the server?'\)\)window.locat\ ion='http://www.csd.uwo.ca/~jamie/.Refs/tech-books.html')>> /Border [ 0 0 0 ] /StructParent 667 >> endobj 4348 0 obj << /Subtype /Link /Rect [ 551.608 748.68571 591.92799 761.68571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.csd.uwo.ca/~jamie/.Refs/tech-books.h\ tml \\n\\nThis file was not retrieved by Teleport Pro, because it is ad\ dressed on a domain or path outside the boundaries set for its Starting \ Address. \\n\\nDo you want to open it from the server?'\)\)window.locat\ ion='http://www.csd.uwo.ca/~jamie/.Refs/tech-books.html')>> /Border [ 0 0 0 ] /StructParent 666 >> endobj 4349 0 obj << /Subtype /Link /Rect [ 251.65601 748.68571 536.608 761.68571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.geocities.com/~itmweb/itbooks.htm \\\ n\\nThis file was not retrieved by Teleport Pro, because it is addressed\ on a domain or path outside the boundaries set for its Starting Address\ . \\n\\nDo you want to open it from the server?'\)\)window.location='ht\ tp://www.geocities.com/~itmweb/itbooks.htm')>> /Border [ 0 0 0 ] /StructParent 665 >> endobj 4350 0 obj << /S /Link /P 4314 0 R /Pg 961 0 R /K [ 43 << /Type /OBJR /Obj 4353 0 R >> ] >> endobj 4351 0 obj << /S /Link /P 4314 0 R /Pg 961 0 R /K [ 45 << /Type /OBJR /Obj 4352 0 R >> ] >> endobj 4352 0 obj << /Subtype /Link /Rect [ 288.004 68.48572 387.65199 81.48572 ] /A << /S /URI /URI (javascript:if\(confirm\('http://knking.com/recbooks/general.html \\n\\n\ This file was not retrieved by Teleport Pro, because it is addressed on \ a domain or path outside the boundaries set for its Starting Address. \\\ n\\nDo you want to open it from the server?'\)\)window.location='http://\ knking.com/recbooks/general.html')>> /Border [ 0 0 0 ] /StructParent 663 >> endobj 4353 0 obj << /Subtype /Link /Rect [ 46 68.48572 99.328 81.48572 ] /A << /S /URI /URI (javascript:if\(confirm\('http://knking.com/index.html \\n\\nThis file w\ as not retrieved by Teleport Pro, because it is addressed on a domain or\ path outside the boundaries set for its Starting Address. \\n\\nDo you\ want to open it from the server?'\)\)window.location='http://knking.com\ /index.html')>> /Border [ 0 0 0 ] /StructParent 662 >> endobj 4354 0 obj << /S /Link /P 4313 0 R /Pg 961 0 R /K [ 39 << /Type /OBJR /Obj 4357 0 R >> ] >> endobj 4355 0 obj << /S /Link /P 4313 0 R /Pg 961 0 R /K [ 41 << /Type /OBJR /Obj 4356 0 R >> ] >> endobj 4356 0 obj << /Subtype /Link /Rect [ 429.26801 132.68571 518.40401 145.68571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.amazon.com/exec/obidos/ISBN%3D020110\ 3311 \\n\\nThis file was not retrieved by Teleport Pro, because it is a\ ddressed on a domain or path outside the boundaries set for its Starting\ Address. \\n\\nDo you want to open it from the server?'\)\)window.loca\ tion='http://www.amazon.com/exec/obidos/ISBN%3D0201103311')>> /Border [ 0 0 0 ] /StructParent 661 >> endobj 4357 0 obj << /Subtype /Link /Rect [ 337.28799 132.68571 401.608 145.68571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.amazon.com/ \\n\\nThis file was not\ retrieved by Teleport Pro, because it is addressed on a domain or path \ outside the boundaries set for its Starting Address. \\n\\nDo you want \ to open it from the server?'\)\)window.location='http://www.amazon.com/'\ )>> /Border [ 0 0 0 ] /StructParent 660 >> endobj 4358 0 obj << /S /Link /P 4312 0 R /Pg 961 0 R /K [ 32 << /Type /OBJR /Obj 4364 0 R >> ] >> endobj 4359 0 obj << /S /Link /P 4312 0 R /Pg 961 0 R /K [ 34 << /Type /OBJR /Obj 4363 0 R >> << /Type /OBJR /Obj 4362 0 R >> ] >> endobj 4360 0 obj << /S /Link /P 4312 0 R /Pg 961 0 R /K [ 36 << /Type /OBJR /Obj 4361 0 R >> ] >> endobj 4361 0 obj << /Subtype /Link /Rect [ 399.12399 182.48572 562.43201 195.48572 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.ercb.com/ddj/1991/ddj.9106.html \\n\ \\nThis file was not retrieved by Teleport Pro, because it is addressed \ on a domain or path outside the boundaries set for its Starting Address.\ \\n\\nDo you want to open it from the server?'\)\)window.location='htt\ p://www.ercb.com/ddj/1991/ddj.9106.html')>> /Border [ 0 0 0 ] /StructParent 659 >> endobj 4362 0 obj << /Subtype /Link /Rect [ 46 182.48572 180.328 195.48572 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.ercb.com/index.html \\n\\nThis file\ was not retrieved by Teleport Pro, because it is addressed on a domain \ or path outside the boundaries set for its Starting Address. \\n\\nDo y\ ou want to open it from the server?'\)\)window.location='http://www.ercb\ .com/index.html')>> /Border [ 0 0 0 ] /StructParent 658 >> endobj 4363 0 obj << /Subtype /Link /Rect [ 469.60001 198.88571 574.07201 211.88571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.ercb.com/index.html \\n\\nThis file\ was not retrieved by Teleport Pro, because it is addressed on a domain \ or path outside the boundaries set for its Starting Address. \\n\\nDo y\ ou want to open it from the server?'\)\)window.location='http://www.ercb\ .com/index.html')>> /Border [ 0 0 0 ] /StructParent 657 >> endobj 4364 0 obj << /Subtype /Link /Rect [ 227.992 198.88571 288.31599 211.88571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.ercb.com/feature/feature.0013.html \ \\n\\nThis file was not retrieved by Teleport Pro, because it is address\ ed on a domain or path outside the boundaries set for its Starting Addre\ ss. \\n\\nDo you want to open it from the server?'\)\)window.location='\ http://www.ercb.com/feature/feature.0013.html')>> /Border [ 0 0 0 ] /StructParent 656 >> endobj 4365 0 obj << /S /Link /P 4311 0 R /Pg 961 0 R /K [ 27 << /Type /OBJR /Obj 4368 0 R >> ] >> endobj 4366 0 obj << /S /Link /P 4311 0 R /Pg 961 0 R /K [ 29 << /Type /OBJR /Obj 4367 0 R >> ] >> endobj 4367 0 obj << /Subtype /Link /Rect [ 232.17999 248.68571 297.84399 261.68571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.accu.org/bookreviews/public/reviews/\ p/p001056.htm \\n\\nThis file was not retrieved by Teleport Pro, becaus\ e it is addressed on a domain or path outside the boundaries set for its\ Starting Address. \\n\\nDo you want to open it from the server?'\)\)wi\ ndow.location='http://www.accu.org/bookreviews/public/reviews/p/p001056.\ htm')>> /Border [ 0 0 0 ] /StructParent 655 >> endobj 4368 0 obj << /Subtype /Link /Rect [ 73.32401 248.68571 229.17999 261.68571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.accu.org/index.htm \\n\\nThis file \ was not retrieved by Teleport Pro, because it is addressed on a domain o\ r path outside the boundaries set for its Starting Address. \\n\\nDo yo\ u want to open it from the server?'\)\)window.location='http://www.accu.\ org/index.htm')>> /Border [ 0 0 0 ] /StructParent 654 >> endobj 4369 0 obj << /S /Link /P 4310 0 R /Pg 961 0 R /K [ 20 << /Type /OBJR /Obj 4374 0 R >> ] >> endobj 4370 0 obj << /S /Link /P 4310 0 R /Pg 961 0 R /K [ 22 << /Type /OBJR /Obj 4373 0 R >> ] >> endobj 4371 0 obj << /S /Link /P 4310 0 R /Pg 961 0 R /K [ 24 << /Type /OBJR /Obj 4372 0 R >> ] >> endobj 4372 0 obj << /Subtype /Link /Rect [ 384.328 327.28572 458.65601 340.28572 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.construx.com/stevemcc/cc.htm \\n\\n\ This file was not retrieved by Teleport Pro, because it is addressed on \ a domain or path outside the boundaries set for its Starting Address. \\\ n\\nDo you want to open it from the server?'\)\)window.location='http://\ www.construx.com/stevemcc/cc.htm')>> /Border [ 0 0 0 ] /StructParent 653 >> endobj 4373 0 obj << /Subtype /Link /Rect [ 288.328 327.28572 351.98801 340.28572 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.construx.com/stevemcc/cclib.htm \\n\ \\nThis file was not retrieved by Teleport Pro, because it is addressed \ on a domain or path outside the boundaries set for its Starting Address.\ \\n\\nDo you want to open it from the server?'\)\)window.location='htt\ p://www.construx.com/stevemcc/cclib.htm')>> /Border [ 0 0 0 ] /StructParent 652 >> endobj 4374 0 obj << /Subtype /Link /Rect [ 46 327.28572 129.664 340.28572 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.construx.com/stevemcc/ \\n\\nThis f\ ile was not retrieved by Teleport Pro, because it is addressed on a doma\ in or path outside the boundaries set for its Starting Address. \\n\\nD\ o you want to open it from the server?'\)\)window.location='http://www.c\ onstrux.com/stevemcc/')>> /Border [ 0 0 0 ] /StructParent 651 >> endobj 4375 0 obj << /S /Link /P 4309 0 R /Pg 961 0 R /K [ 18 << /Type /OBJR /Obj 4376 0 R >> ] >> endobj 4376 0 obj << /Subtype /Link /Rect [ 377.608 377.08571 516.58 390.08571 ] /StructParent 650 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1049 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/why2e.html)>> >> endobj 4377 0 obj << /O /List /ListNumbering /Disc >> endobj 4378 0 obj << /S /LI /P 4307 0 R /K [ 4391 0 R 4392 0 R ] >> endobj 4379 0 obj << /S /LI /P 4307 0 R /K [ 4389 0 R 4390 0 R ] >> endobj 4380 0 obj << /S /LI /P 4307 0 R /K [ 4387 0 R 4388 0 R ] >> endobj 4381 0 obj << /S /LI /P 4307 0 R /K [ 4385 0 R 4386 0 R ] >> endobj 4382 0 obj << /S /LI /P 4307 0 R /K [ 4383 0 R 4384 0 R ] >> endobj 4383 0 obj << /S /Lbl /P 4382 0 R /Pg 961 0 R /K 14 >> endobj 4384 0 obj << /S /LBody /P 4382 0 R /Pg 961 0 R /K 15 >> endobj 4385 0 obj << /S /Lbl /P 4381 0 R /Pg 961 0 R /K 12 >> endobj 4386 0 obj << /S /LBody /P 4381 0 R /Pg 961 0 R /K 13 >> endobj 4387 0 obj << /S /Lbl /P 4380 0 R /Pg 961 0 R /K 10 >> endobj 4388 0 obj << /S /LBody /P 4380 0 R /Pg 961 0 R /K 11 >> endobj 4389 0 obj << /S /Lbl /P 4379 0 R /Pg 961 0 R /K 8 >> endobj 4390 0 obj << /S /LBody /P 4379 0 R /Pg 961 0 R /K 9 >> endobj 4391 0 obj << /S /Lbl /P 4378 0 R /Pg 961 0 R /K 6 >> endobj 4392 0 obj << /S /LBody /P 4378 0 R /Pg 961 0 R /K 7 >> endobj 4393 0 obj << /S /Link /P 4305 0 R /Pg 961 0 R /K [ 3 << /Type /OBJR /Obj 4394 0 R >> ] >> endobj 4394 0 obj << /Subtype /Link /Rect [ 46 656.68571 150.976 669.68571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.awl.com/ \\n\\nThis file was not re\ trieved by Teleport Pro, because it is addressed on a domain or path out\ side the boundaries set for its Starting Address. \\n\\nDo you want to \ open it from the server?'\)\)window.location='http://www.awl.com/')>> /Border [ 0 0 0 ] /StructParent 649 >> endobj 4395 0 obj << /S /Link /P 4303 0 R /K [ 4396 0 R << /Type /OBJR /Pg 961 0 R /Obj 4397 0 R >> ] >> endobj 4396 0 obj << /S /I /P 4395 0 R /Pg 961 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 467 602 766 ] /Placement /End /Width 246 /BaselineShift -298.99998 >> >> endobj 4397 0 obj << /Subtype /Link /Rect [ 378 469 580 764 ] /StructParent 648 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 4398 0 obj << /S /P /P 1985 0 R /K 4424 0 R >> endobj 4399 0 obj << /S /H1 /P 1985 0 R /Pg 973 0 R /K 1 >> endobj 4400 0 obj << /S /P /P 1985 0 R /Pg 973 0 R /K 2 >> endobj 4401 0 obj << /S /P /P 1985 0 R /Pg 973 0 R /K 3 >> endobj 4402 0 obj << /S /P /P 1985 0 R /Pg 973 0 R /K 4 >> endobj 4403 0 obj << /S /UL /P 1985 0 R /A 4410 0 R /K [ 4411 0 R 4412 0 R 4413 0 R ] >> endobj 4404 0 obj << /S /P /P 1985 0 R /Pg 973 0 R /K 13 >> endobj 4405 0 obj << /S /P /P 1985 0 R /Pg 973 0 R /K 14 >> endobj 4406 0 obj << /S /P /P 1985 0 R /Pg 973 0 R /K 15 >> endobj 4407 0 obj << /S /P /P 1985 0 R /Pg 973 0 R /K 16 >> endobj 4408 0 obj << /S /P /P 1985 0 R /Pg 978 0 R /K 0 >> endobj 4409 0 obj << /S /P /P 1985 0 R /Pg 978 0 R /K 1 >> endobj 4410 0 obj << /O /List /ListNumbering /Disc >> endobj 4411 0 obj << /S /LI /P 4403 0 R /K [ 4420 0 R 4421 0 R ] >> endobj 4412 0 obj << /S /LI /P 4403 0 R /K [ 4416 0 R 4417 0 R ] >> endobj 4413 0 obj << /S /LI /P 4403 0 R /K [ 4414 0 R 4415 0 R ] >> endobj 4414 0 obj << /S /Lbl /P 4413 0 R /Pg 973 0 R /K 11 >> endobj 4415 0 obj << /S /LBody /P 4413 0 R /Pg 973 0 R /K 12 >> endobj 4416 0 obj << /S /Lbl /P 4412 0 R /Pg 973 0 R /K 8 >> endobj 4417 0 obj << /S /LBody /P 4412 0 R /Pg 973 0 R /K [ 4418 0 R 10 ] >> endobj 4418 0 obj << /S /Link /P 4417 0 R /Pg 973 0 R /K [ 9 << /Type /OBJR /Obj 4419 0 R >> ] >> endobj 4419 0 obj << /Subtype /Link /Rect [ 86 389.42857 133.67599 402.42857 ] /StructParent 685 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 986 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sketch08.html)>> >> endobj 4420 0 obj << /S /Lbl /P 4411 0 R /Pg 973 0 R /K 5 >> endobj 4421 0 obj << /S /LBody /P 4411 0 R /Pg 973 0 R /K [ 4422 0 R 7 ] >> endobj 4422 0 obj << /S /Link /P 4421 0 R /Pg 973 0 R /K [ 6 << /Type /OBJR /Obj 4423 0 R >> ] >> endobj 4423 0 obj << /Subtype /Link /Rect [ 86 439.22858 133.67599 452.22858 ] /StructParent 684 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 459 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bote.html)>> >> endobj 4424 0 obj << /S /Link /P 4398 0 R /K [ 4425 0 R << /Type /OBJR /Pg 973 0 R /Obj 4426 0 R >> ] >> endobj 4425 0 obj << /S /I /P 4424 0 R /Pg 973 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 4426 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 683 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 4427 0 obj << /S /P /P 1983 0 R /K 4441 0 R >> endobj 4428 0 obj << /S /H1 /P 1983 0 R /Pg 981 0 R /K 1 >> endobj 4429 0 obj << /S /P /P 1983 0 R /Pg 981 0 R /K 2 >> endobj 4430 0 obj << /S /P /P 1983 0 R /Pg 981 0 R /K 3 >> endobj 4431 0 obj << /S /H3 /P 1983 0 R /Pg 981 0 R /K 4 >> endobj 4432 0 obj << /S /P /P 1983 0 R /Pg 981 0 R /K 5 >> endobj 4433 0 obj << /S /P /P 1983 0 R /Pg 981 0 R /K [ 6 4435 0 R 8 4436 0 R 10 4437 0 R 12 ] >> endobj 4434 0 obj << /S /P /P 1983 0 R /Pg 981 0 R /K 13 >> endobj 4435 0 obj << /S /Link /P 4433 0 R /Pg 981 0 R /K [ 7 << /Type /OBJR /Obj 4440 0 R >> ] >> endobj 4436 0 obj << /S /Link /P 4433 0 R /Pg 981 0 R /K [ 9 << /Type /OBJR /Obj 4439 0 R >> ] >> endobj 4437 0 obj << /S /Link /P 4433 0 R /Pg 981 0 R /K [ 11 << /Type /OBJR /Obj 4438 0 R >> ] >> endobj 4438 0 obj << /Subtype /Link /Rect [ 116.668 169.65715 155.32001 182.65715 ] /StructParent 691 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 254 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s04.pdf)>> >> endobj 4439 0 obj << /Subtype /Link /Rect [ 46 169.65715 93.34 182.65715 ] /A << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s04.ps)>> /Border [ 0 0 0 ] /StructParent 690 >> endobj 4440 0 obj << /Subtype /Link /Rect [ 67.66 186.05714 150.64 199.05714 ] /StructParent 689 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 198 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/teaching.html)>> >> endobj 4441 0 obj << /S /Link /P 4427 0 R /K [ 4442 0 R << /Type /OBJR /Pg 981 0 R /Obj 4443 0 R >> ] >> endobj 4442 0 obj << /S /I /P 4441 0 R /Pg 981 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 4443 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 688 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 4444 0 obj << /S /P /P 1981 0 R /K 4463 0 R >> endobj 4445 0 obj << /S /H1 /P 1981 0 R /Pg 986 0 R /K 1 >> endobj 4446 0 obj << /S /P /P 1981 0 R /Pg 986 0 R /K [ 4461 0 R 3 ] >> endobj 4447 0 obj << /S /P /P 1981 0 R /Pg 986 0 R /K 4 >> endobj 4448 0 obj << /S /H3 /P 1981 0 R /Pg 986 0 R /K 5 >> endobj 4449 0 obj << /S /P /P 1981 0 R /Pg 986 0 R /K 6 >> endobj 4450 0 obj << /S /P /P 1981 0 R /Pg 986 0 R /K [ 7 4455 0 R 9 4456 0 R 11 4457 0 R 13 ] >> endobj 4451 0 obj << /S /P /P 1981 0 R /Pg 986 0 R /K [ 14 4453 0 R 16 ] >> endobj 4452 0 obj << /S /P /P 1981 0 R /Pg 986 0 R /K 17 >> endobj 4453 0 obj << /S /Link /P 4451 0 R /Pg 986 0 R /K [ 15 << /Type /OBJR /Obj 4454 0 R >> ] >> endobj 4454 0 obj << /Subtype /Link /Rect [ 67.66 189.85715 157.98399 202.85715 ] /StructParent 698 /Border [ 0 0 0 ] /A << /S /GoTo /D (/Ymf'col08)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/code.html#col08)>> >> endobj 4455 0 obj << /S /Link /P 4450 0 R /Pg 986 0 R /K [ 8 << /Type /OBJR /Obj 4460 0 R >> ] >> endobj 4456 0 obj << /S /Link /P 4450 0 R /Pg 986 0 R /K [ 10 << /Type /OBJR /Obj 4459 0 R >> ] >> endobj 4457 0 obj << /S /Link /P 4450 0 R /Pg 986 0 R /K [ 12 << /Type /OBJR /Obj 4458 0 R >> ] >> endobj 4458 0 obj << /Subtype /Link /Rect [ 116.668 225.25714 155.32001 238.25714 ] /StructParent 697 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 301 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s08.pdf)>> >> endobj 4459 0 obj << /Subtype /Link /Rect [ 46 225.25714 93.34 238.25714 ] /A << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s08.ps)>> /Border [ 0 0 0 ] /StructParent 696 >> endobj 4460 0 obj << /Subtype /Link /Rect [ 67.66 241.65715 150.64 254.65715 ] /StructParent 695 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 198 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/teaching.html)>> >> endobj 4461 0 obj << /S /Link /P 4446 0 R /Pg 986 0 R /K [ 2 << /Type /OBJR /Obj 4462 0 R >> ] >> endobj 4462 0 obj << /Subtype /Link /Rect [ 46 609.37143 93.67599 622.37143 ] /StructParent 694 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1021 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sketch02.html)>> >> endobj 4463 0 obj << /S /Link /P 4444 0 R /K [ 4464 0 R << /Type /OBJR /Pg 986 0 R /Obj 4465 0 R >> ] >> endobj 4464 0 obj << /S /I /P 4463 0 R /Pg 986 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 4465 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 693 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 4466 0 obj << /S /P /P 1979 0 R /K 4648 0 R >> endobj 4467 0 obj << /S /H1 /P 1979 0 R /Pg 991 0 R /K 1 >> endobj 4468 0 obj << /S /UL /P 1979 0 R /A 4469 0 R /K [ 4470 0 R 4471 0 R 4472 0 R 4473 0 R 4474 0 R 4475 0 R 4476 0 R 4477 0 R 4478 0 R 4479 0 R 4480 0 R 4481 0 R 4482 0 R 4483 0 R 4484 0 R 4485 0 R 4486 0 R 4487 0 R 4488 0 R 4489 0 R 4490 0 R 4491 0 R 4492 0 R 4493 0 R 4494 0 R 4495 0 R 4496 0 R 4497 0 R 4498 0 R ] >> endobj 4469 0 obj << /O /List /ListNumbering /Disc >> endobj 4470 0 obj << /S /LI /P 4468 0 R /K [ 4644 0 R 4645 0 R ] >> endobj 4471 0 obj << /S /LI /P 4468 0 R /K [ 4640 0 R 4641 0 R ] >> endobj 4472 0 obj << /S /LI /P 4468 0 R /K [ 4622 0 R 4623 0 R ] >> endobj 4473 0 obj << /S /LI /P 4468 0 R /K [ 4618 0 R 4619 0 R ] >> endobj 4474 0 obj << /S /LI /P 4468 0 R /K [ 4616 0 R 4617 0 R ] >> endobj 4475 0 obj << /S /LI /P 4468 0 R /K [ 4612 0 R 4613 0 R ] >> endobj 4476 0 obj << /S /LI /P 4468 0 R /K [ 4606 0 R 4607 0 R ] >> endobj 4477 0 obj << /S /LI /P 4468 0 R /K [ 4602 0 R 4603 0 R ] >> endobj 4478 0 obj << /S /LI /P 4468 0 R /K [ 4600 0 R 4601 0 R ] >> endobj 4479 0 obj << /S /LI /P 4468 0 R /K [ 4579 0 R 4580 0 R ] >> endobj 4480 0 obj << /S /LI /P 4468 0 R /K [ 4575 0 R 4576 0 R ] >> endobj 4481 0 obj << /S /LI /P 4468 0 R /K [ 4573 0 R 4574 0 R ] >> endobj 4482 0 obj << /S /LI /P 4468 0 R /K [ 4571 0 R 4572 0 R ] >> endobj 4483 0 obj << /S /LI /P 4468 0 R /K [ 4567 0 R 4568 0 R ] >> endobj 4484 0 obj << /S /LI /P 4468 0 R /K [ 4565 0 R 4566 0 R ] >> endobj 4485 0 obj << /S /LI /P 4468 0 R /K [ 4563 0 R 4564 0 R ] >> endobj 4486 0 obj << /S /LI /P 4468 0 R /K [ 4561 0 R 4562 0 R ] >> endobj 4487 0 obj << /S /LI /P 4468 0 R /K [ 4557 0 R 4558 0 R ] >> endobj 4488 0 obj << /S /LI /P 4468 0 R /K [ 4541 0 R 4542 0 R ] >> endobj 4489 0 obj << /S /LI /P 4468 0 R /K [ 4537 0 R 4538 0 R ] >> endobj 4490 0 obj << /S /LI /P 4468 0 R /K [ 4533 0 R 4534 0 R ] >> endobj 4491 0 obj << /S /LI /P 4468 0 R /K [ 4531 0 R 4532 0 R ] >> endobj 4492 0 obj << /S /LI /P 4468 0 R /K [ 4527 0 R 4528 0 R ] >> endobj 4493 0 obj << /S /LI /P 4468 0 R /K [ 4523 0 R 4524 0 R ] >> endobj 4494 0 obj << /S /LI /P 4468 0 R /K [ 4519 0 R 4520 0 R ] >> endobj 4495 0 obj << /S /LI /P 4468 0 R /K [ 4515 0 R 4516 0 R ] >> endobj 4496 0 obj << /S /LI /P 4468 0 R /K [ 4513 0 R 4514 0 R ] >> endobj 4497 0 obj << /S /LI /P 4468 0 R /K [ 4503 0 R 4504 0 R ] >> endobj 4498 0 obj << /S /LI /P 4468 0 R /K [ 4499 0 R 4500 0 R ] >> endobj 4499 0 obj << /S /Lbl /P 4498 0 R /Pg 1000 0 R /K 8 >> endobj 4500 0 obj << /S /LBody /P 4498 0 R /Pg 1000 0 R /K [ 4501 0 R 10 ] >> endobj 4501 0 obj << /S /Link /P 4500 0 R /Pg 1000 0 R /K [ 9 << /Type /OBJR /Obj 4502 0 R >> ] >> endobj 4502 0 obj << /Subtype /Link /Rect [ 86 716.39999 113.32401 729.39999 ] /StructParent 748 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 700 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html)>> >> endobj 4503 0 obj << /S /Lbl /P 4497 0 R /Pg 996 0 R /K 54 >> endobj 4504 0 obj << /S /LBody /P 4497 0 R /Pg 996 0 R /K [ 55 4505 0 R << /Type /MCR /Pg 1000 0 R /MCID 1 >> 4506 0 R << /Type /MCR /Pg 1000 0 R /MCID 3 >> 4507 0 R << /Type /MCR /Pg 1000 0 R /MCID 5 >> 4508 0 R << /Type /MCR /Pg 1000 0 R /MCID 7 >> ] >> endobj 4505 0 obj << /S /Link /P 4504 0 R /Pg 1000 0 R /K [ 0 << /Type /OBJR /Obj 4512 0 R >> ] >> endobj 4506 0 obj << /S /Link /P 4504 0 R /Pg 1000 0 R /K [ 2 << /Type /OBJR /Obj 4511 0 R >> ] >> endobj 4507 0 obj << /S /Link /P 4504 0 R /Pg 1000 0 R /K [ 4 << /Type /OBJR /Obj 4510 0 R >> ] >> endobj 4508 0 obj << /S /Link /P 4504 0 R /Pg 1000 0 R /K [ 6 << /Type /OBJR /Obj 4509 0 R >> ] >> endobj 4509 0 obj << /Subtype /Link /Rect [ 315.032 751.8 388.37601 764.8 ] /StructParent 747 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 167 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sol15.html)>> >> endobj 4510 0 obj << /Subtype /Link /Rect [ 238.688 751.8 306.032 764.8 ] /StructParent 746 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 935 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sol07.html)>> >> endobj 4511 0 obj << /Subtype /Link /Rect [ 162.34399 751.8 229.688 764.8 ] /StructParent 745 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1036 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sol05.html)>> >> endobj 4512 0 obj << /Subtype /Link /Rect [ 86 751.8 153.34399 764.8 ] /StructParent 744 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 47 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sol01.html)>> >> endobj 4513 0 obj << /S /Lbl /P 4496 0 R /Pg 996 0 R /K 52 >> endobj 4514 0 obj << /S /LBody /P 4496 0 R /Pg 996 0 R /K 53 >> endobj 4515 0 obj << /S /Lbl /P 4495 0 R /Pg 996 0 R /K 49 >> endobj 4516 0 obj << /S /LBody /P 4495 0 R /Pg 996 0 R /K [ 4517 0 R 51 ] >> endobj 4517 0 obj << /S /Link /P 4516 0 R /Pg 996 0 R /K [ 50 << /Type /OBJR /Obj 4518 0 R >> ] >> endobj 4518 0 obj << /Subtype /Link /Rect [ 86 107.8 277.18401 120.8 ] /StructParent 742 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 611 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sets.cpp)>> >> endobj 4519 0 obj << /S /Lbl /P 4494 0 R /Pg 996 0 R /K 46 >> endobj 4520 0 obj << /S /LBody /P 4494 0 R /Pg 996 0 R /K [ 4521 0 R 48 ] >> endobj 4521 0 obj << /S /Link /P 4520 0 R /Pg 996 0 R /K [ 47 << /Type /OBJR /Obj 4522 0 R >> ] >> endobj 4522 0 obj << /Subtype /Link /Rect [ 86 143.2 258.992 156.2 ] /StructParent 741 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 669 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/apprules.html)>> >> endobj 4523 0 obj << /S /Lbl /P 4493 0 R /Pg 996 0 R /K 43 >> endobj 4524 0 obj << /S /LBody /P 4493 0 R /Pg 996 0 R /K [ 4525 0 R 45 ] >> endobj 4525 0 obj << /S /Link /P 4524 0 R /Pg 996 0 R /K [ 44 << /Type /OBJR /Obj 4526 0 R >> ] >> endobj 4526 0 obj << /Subtype /Link /Rect [ 86 178.60001 306.98 191.60001 ] /StructParent 740 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 943 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/appmodels.html)>> >> endobj 4527 0 obj << /S /Lbl /P 4492 0 R /Pg 996 0 R /K 40 >> endobj 4528 0 obj << /S /LBody /P 4492 0 R /Pg 996 0 R /K [ 4529 0 R 42 ] >> endobj 4529 0 obj << /S /Link /P 4528 0 R /Pg 996 0 R /K [ 41 << /Type /OBJR /Obj 4530 0 R >> ] >> endobj 4530 0 obj << /Subtype /Link /Rect [ 86 214 244.664 227 ] /StructParent 739 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 449 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/quiz.html)>> >> endobj 4531 0 obj << /S /Lbl /P 4491 0 R /Pg 996 0 R /K 38 >> endobj 4532 0 obj << /S /LBody /P 4491 0 R /Pg 996 0 R /K 39 >> endobj 4533 0 obj << /S /Lbl /P 4490 0 R /Pg 996 0 R /K 35 >> endobj 4534 0 obj << /S /LBody /P 4490 0 R /Pg 996 0 R /K [ 4535 0 R 37 ] >> endobj 4535 0 obj << /S /Link /P 4534 0 R /Pg 996 0 R /K [ 36 << /Type /OBJR /Obj 4536 0 R >> ] >> endobj 4536 0 obj << /Subtype /Link /Rect [ 86 282.8 224.672 295.8 ] /StructParent 738 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1058 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/epilog2.html)>> >> endobj 4537 0 obj << /S /Lbl /P 4489 0 R /Pg 996 0 R /K 32 >> endobj 4538 0 obj << /S /LBody /P 4489 0 R /Pg 996 0 R /K [ 4539 0 R 34 ] >> endobj 4539 0 obj << /S /Link /P 4538 0 R /Pg 996 0 R /K [ 33 << /Type /OBJR /Obj 4540 0 R >> ] >> endobj 4540 0 obj << /Subtype /Link /Rect [ 86 318.2 211.35201 331.2 ] /StructParent 737 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 752 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/epilog1.html)>> >> endobj 4541 0 obj << /S /Lbl /P 4488 0 R /Pg 996 0 R /K 17 >> endobj 4542 0 obj << /S /LBody /P 4488 0 R /Pg 996 0 R /K [ 4543 0 R 19 4544 0 R 21 4545 0 R 23 4546 0 R 25 4547 0 R 27 4548 0 R 29 4549 0 R 31 ] >> endobj 4543 0 obj << /S /Link /P 4542 0 R /Pg 996 0 R /K [ 18 << /Type /OBJR /Obj 4556 0 R >> ] >> endobj 4544 0 obj << /S /Link /P 4542 0 R /Pg 996 0 R /K [ 20 << /Type /OBJR /Obj 4555 0 R >> ] >> endobj 4545 0 obj << /S /Link /P 4542 0 R /Pg 996 0 R /K [ 22 << /Type /OBJR /Obj 4554 0 R >> ] >> endobj 4546 0 obj << /S /Link /P 4542 0 R /Pg 996 0 R /K [ 24 << /Type /OBJR /Obj 4553 0 R >> ] >> endobj 4547 0 obj << /S /Link /P 4542 0 R /Pg 996 0 R /K [ 26 << /Type /OBJR /Obj 4552 0 R >> ] >> endobj 4548 0 obj << /S /Link /P 4542 0 R /Pg 996 0 R /K [ 28 << /Type /OBJR /Obj 4551 0 R >> ] >> endobj 4549 0 obj << /S /Link /P 4542 0 R /Pg 996 0 R /K [ 30 << /Type /OBJR /Obj 4550 0 R >> ] >> endobj 4550 0 obj << /Subtype /Link /Rect [ 371.3 353.60001 449.62399 366.60001 ] /StructParent 736 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 176 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec156.html)>> >> endobj 4551 0 obj << /Subtype /Link /Rect [ 316.964 353.60001 362.3 366.60001 ] /StructParent 735 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 38 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec155.html)>> >> endobj 4552 0 obj << /Subtype /Link /Rect [ 259.964 353.60001 307.964 366.60001 ] /StructParent 734 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 162 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec154.html)>> >> endobj 4553 0 obj << /Subtype /Link /Rect [ 172.65199 353.60001 250.964 366.60001 ] /StructParent 733 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 99 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec153.html)>> >> endobj 4554 0 obj << /Subtype /Link /Rect [ 126.992 353.60001 163.65199 366.60001 ] /StructParent 732 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 74 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec152.html)>> >> endobj 4555 0 obj << /Subtype /Link /Rect [ 86 353.60001 117.992 366.60001 ] /StructParent 731 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 19 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec151.html)>> >> endobj 4556 0 obj << /Subtype /Link /Rect [ 86 370 225.34399 383 ] /StructParent 730 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 10 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/strings.html)>> >> endobj 4557 0 obj << /S /Lbl /P 4487 0 R /Pg 996 0 R /K 13 >> endobj 4558 0 obj << /S /LBody /P 4487 0 R /Pg 996 0 R /K [ 14 4559 0 R 16 ] >> endobj 4559 0 obj << /S /Link /P 4558 0 R /Pg 996 0 R /K [ 15 << /Type /OBJR /Obj 4560 0 R >> ] >> endobj 4560 0 obj << /Subtype /Link /Rect [ 179 434.2 219.65601 447.2 ] /StructParent 729 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1031 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sketch14.html)>> >> endobj 4561 0 obj << /S /Lbl /P 4486 0 R /Pg 996 0 R /K 11 >> endobj 4562 0 obj << /S /LBody /P 4486 0 R /Pg 996 0 R /K 12 >> endobj 4563 0 obj << /S /Lbl /P 4485 0 R /Pg 996 0 R /K 9 >> endobj 4564 0 obj << /S /LBody /P 4485 0 R /Pg 996 0 R /K 10 >> endobj 4565 0 obj << /S /Lbl /P 4484 0 R /Pg 996 0 R /K 7 >> endobj 4566 0 obj << /S /LBody /P 4484 0 R /Pg 996 0 R /K 8 >> endobj 4567 0 obj << /S /Lbl /P 4483 0 R /Pg 996 0 R /K 4 >> endobj 4568 0 obj << /S /LBody /P 4483 0 R /Pg 996 0 R /K [ 4569 0 R 6 ] >> endobj 4569 0 obj << /S /Link /P 4568 0 R /Pg 996 0 R /K [ 5 << /Type /OBJR /Obj 4570 0 R >> ] >> endobj 4570 0 obj << /Subtype /Link /Rect [ 86 627.39999 220.328 640.39999 ] /StructParent 728 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1026 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/part3.html)>> >> endobj 4571 0 obj << /S /Lbl /P 4482 0 R /Pg 996 0 R /K 2 >> endobj 4572 0 obj << /S /LBody /P 4482 0 R /Pg 996 0 R /K 3 >> endobj 4573 0 obj << /S /Lbl /P 4481 0 R /Pg 996 0 R /K 0 >> endobj 4574 0 obj << /S /LBody /P 4481 0 R /Pg 996 0 R /K 1 >> endobj 4575 0 obj << /S /Lbl /P 4480 0 R /Pg 991 0 R /K 65 >> endobj 4576 0 obj << /S /LBody /P 4480 0 R /Pg 991 0 R /K [ 66 4577 0 R 68 ] >> endobj 4577 0 obj << /S /Link /P 4576 0 R /Pg 991 0 R /K [ 67 << /Type /OBJR /Obj 4578 0 R >> ] >> endobj 4578 0 obj << /Subtype /Link /Rect [ 288.332 93.08571 328.98801 106.08571 ] /StructParent 726 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 986 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sketch08.html)>> >> endobj 4579 0 obj << /S /Lbl /P 4479 0 R /Pg 991 0 R /K 46 >> endobj 4580 0 obj << /S /LBody /P 4479 0 R /Pg 991 0 R /K [ 4581 0 R 48 4582 0 R 50 4583 0 R 52 4584 0 R 54 4585 0 R 56 4586 0 R 58 4587 0 R 60 4588 0 R 62 4589 0 R 64 ] >> endobj 4581 0 obj << /S /Link /P 4580 0 R /Pg 991 0 R /K [ 47 << /Type /OBJR /Obj 4599 0 R >> ] >> endobj 4582 0 obj << /S /Link /P 4580 0 R /Pg 991 0 R /K [ 49 << /Type /OBJR /Obj 4598 0 R >> ] >> endobj 4583 0 obj << /S /Link /P 4580 0 R /Pg 991 0 R /K [ 51 << /Type /OBJR /Obj 4597 0 R >> ] >> endobj 4584 0 obj << /S /Link /P 4580 0 R /Pg 991 0 R /K [ 53 << /Type /OBJR /Obj 4596 0 R >> ] >> endobj 4585 0 obj << /S /Link /P 4580 0 R /Pg 991 0 R /K [ 55 << /Type /OBJR /Obj 4595 0 R >> ] >> endobj 4586 0 obj << /S /Link /P 4580 0 R /Pg 991 0 R /K [ 57 << /Type /OBJR /Obj 4594 0 R >> ] >> endobj 4587 0 obj << /S /Link /P 4580 0 R /Pg 991 0 R /K [ 59 << /Type /OBJR /Obj 4593 0 R >> ] >> endobj 4588 0 obj << /S /Link /P 4580 0 R /Pg 991 0 R /K [ 61 << /Type /OBJR /Obj 4592 0 R >> << /Type /OBJR /Obj 4591 0 R >> ] >> endobj 4589 0 obj << /S /Link /P 4580 0 R /Pg 991 0 R /K [ 63 << /Type /OBJR /Obj 4590 0 R >> ] >> endobj 4590 0 obj << /Subtype /Link /Rect [ 134.996 128.48572 311.636 141.48572 ] /StructParent 725 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 927 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec078.html)>> >> endobj 4591 0 obj << /Subtype /Link /Rect [ 86 128.48572 125.996 141.48572 ] /StructParent 724 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 922 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec077.html)>> >> endobj 4592 0 obj << /Subtype /Link /Rect [ 527.468 144.88571 562.79601 157.88571 ] /StructParent 723 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 922 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec077.html)>> >> endobj 4593 0 obj << /Subtype /Link /Rect [ 473.132 144.88571 518.468 157.88571 ] /StructParent 722 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 913 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec076.html)>> >> endobj 4594 0 obj << /Subtype /Link /Rect [ 416.132 144.88571 464.132 157.88571 ] /StructParent 721 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 908 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec075.html)>> >> endobj 4595 0 obj << /Subtype /Link /Rect [ 349.976 144.88571 407.132 157.88571 ] /StructParent 720 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 903 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec074.html)>> >> endobj 4596 0 obj << /Subtype /Link /Rect [ 271.98801 144.88571 340.976 157.88571 ] /StructParent 719 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 894 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec073.html)>> >> endobj 4597 0 obj << /Subtype /Link /Rect [ 152.01199 144.88571 262.98801 157.88571 ] /StructParent 718 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 885 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec072.html)>> >> endobj 4598 0 obj << /Subtype /Link /Rect [ 86 144.88571 143.01199 157.88571 ] /StructParent 717 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 861 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec071.html)>> >> endobj 4599 0 obj << /Subtype /Link /Rect [ 86 161.28572 265.31599 174.28572 ] /StructParent 716 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 459 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bote.html)>> >> endobj 4600 0 obj << /S /Lbl /P 4478 0 R /Pg 991 0 R /K 44 >> endobj 4601 0 obj << /S /LBody /P 4478 0 R /Pg 991 0 R /K 45 >> endobj 4602 0 obj << /S /Lbl /P 4477 0 R /Pg 991 0 R /K 41 >> endobj 4603 0 obj << /S /LBody /P 4477 0 R /Pg 991 0 R /K [ 4604 0 R 43 ] >> endobj 4604 0 obj << /S /Link /P 4603 0 R /Pg 991 0 R /K [ 42 << /Type /OBJR /Obj 4605 0 R >> ] >> endobj 4605 0 obj << /Subtype /Link /Rect [ 86 244.48572 222.67999 257.48572 ] /StructParent 715 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 973 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/part2.html)>> >> endobj 4606 0 obj << /S /Lbl /P 4476 0 R /Pg 991 0 R /K 35 >> endobj 4607 0 obj << /S /LBody /P 4476 0 R /Pg 991 0 R /K [ 36 4608 0 R 38 4609 0 R 40 ] >> endobj 4608 0 obj << /S /Link /P 4607 0 R /Pg 991 0 R /K [ 37 << /Type /OBJR /Obj 4611 0 R >> ] >> endobj 4609 0 obj << /S /Link /P 4607 0 R /Pg 991 0 R /K [ 39 << /Type /OBJR /Obj 4610 0 R >> ] >> endobj 4610 0 obj << /Subtype /Link /Rect [ 384.65601 279.88571 437.98399 292.88571 ] /StructParent 714 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 744 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec0510.html)>> >> endobj 4611 0 obj << /Subtype /Link /Rect [ 299.672 310.68571 340.328 323.68571 ] /StructParent 713 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 739 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sketch05.html)>> >> endobj 4612 0 obj << /S /Lbl /P 4475 0 R /Pg 991 0 R /K 31 >> endobj 4613 0 obj << /S /LBody /P 4475 0 R /Pg 991 0 R /K [ 32 4614 0 R 34 ] >> endobj 4614 0 obj << /S /Link /P 4613 0 R /Pg 991 0 R /K [ 33 << /Type /OBJR /Obj 4615 0 R >> ] >> endobj 4615 0 obj << /Subtype /Link /Rect [ 268.328 374.88571 308.98399 387.88571 ] /StructParent 712 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 981 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sketch04.html)>> >> endobj 4616 0 obj << /S /Lbl /P 4474 0 R /Pg 991 0 R /K 29 >> endobj 4617 0 obj << /S /LBody /P 4474 0 R /Pg 991 0 R /K 30 >> endobj 4618 0 obj << /S /Lbl /P 4473 0 R /Pg 991 0 R /K 25 >> endobj 4619 0 obj << /S /LBody /P 4473 0 R /Pg 991 0 R /K [ 26 4620 0 R 28 ] >> endobj 4620 0 obj << /S /Link /P 4619 0 R /Pg 991 0 R /K [ 27 << /Type /OBJR /Obj 4621 0 R >> ] >> endobj 4621 0 obj << /Subtype /Link /Rect [ 224.672 515.68571 265.328 528.68571 ] /StructParent 711 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1021 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sketch02.html)>> >> endobj 4622 0 obj << /S /Lbl /P 4472 0 R /Pg 991 0 R /K 8 >> endobj 4623 0 obj << /S /LBody /P 4472 0 R /Pg 991 0 R /K [ 4624 0 R 10 4625 0 R 12 4626 0 R 14 4627 0 R 16 4628 0 R 18 4629 0 R 20 4630 0 R 22 4631 0 R 24 ] >> endobj 4624 0 obj << /S /Link /P 4623 0 R /Pg 991 0 R /K [ 9 << /Type /OBJR /Obj 4639 0 R >> ] >> endobj 4625 0 obj << /S /Link /P 4623 0 R /Pg 991 0 R /K [ 11 << /Type /OBJR /Obj 4638 0 R >> ] >> endobj 4626 0 obj << /S /Link /P 4623 0 R /Pg 991 0 R /K [ 13 << /Type /OBJR /Obj 4637 0 R >> ] >> endobj 4627 0 obj << /S /Link /P 4623 0 R /Pg 991 0 R /K [ 15 << /Type /OBJR /Obj 4636 0 R >> ] >> endobj 4628 0 obj << /S /Link /P 4623 0 R /Pg 991 0 R /K [ 17 << /Type /OBJR /Obj 4635 0 R >> ] >> endobj 4629 0 obj << /S /Link /P 4623 0 R /Pg 991 0 R /K [ 19 << /Type /OBJR /Obj 4634 0 R >> ] >> endobj 4630 0 obj << /S /Link /P 4623 0 R /Pg 991 0 R /K [ 21 << /Type /OBJR /Obj 4633 0 R >> ] >> endobj 4631 0 obj << /S /Link /P 4623 0 R /Pg 991 0 R /K [ 23 << /Type /OBJR /Obj 4632 0 R >> ] >> endobj 4632 0 obj << /Subtype /Link /Rect [ 140.336 551.08571 218.66 564.08571 ] /StructParent 710 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 856 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec017.html)>> >> endobj 4633 0 obj << /Subtype /Link /Rect [ 86 551.08571 131.336 564.08571 ] /StructParent 709 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 847 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec016.html)>> >> endobj 4634 0 obj << /Subtype /Link /Rect [ 293.98399 567.48572 341.98399 580.48572 ] /StructParent 708 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 838 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec015.html)>> >> endobj 4635 0 obj << /Subtype /Link /Rect [ 173.32401 567.48572 284.98399 580.48572 ] /StructParent 707 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 830 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec014.html)>> >> endobj 4636 0 obj << /Subtype /Link /Rect [ 86 567.48572 164.32401 580.48572 ] /StructParent 706 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 812 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec013.html)>> >> endobj 4637 0 obj << /Subtype /Link /Rect [ 214.328 583.88571 343.65199 596.88571 ] /StructParent 705 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 807 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec012.html)>> >> endobj 4638 0 obj << /Subtype /Link /Rect [ 86 583.88571 205.328 596.88571 ] /StructParent 704 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 691 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/cto.html)>> >> endobj 4639 0 obj << /Subtype /Link /Rect [ 86 600.28572 240.65601 613.28572 ] /StructParent 703 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 691 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/cto.html)>> >> endobj 4640 0 obj << /S /Lbl /P 4471 0 R /Pg 991 0 R /K 5 >> endobj 4641 0 obj << /S /LBody /P 4471 0 R /Pg 991 0 R /K [ 4642 0 R 7 ] >> endobj 4642 0 obj << /S /Link /P 4641 0 R /Pg 991 0 R /K [ 6 << /Type /OBJR /Obj 4643 0 R >> ] >> endobj 4643 0 obj << /Subtype /Link /Rect [ 86 635.68571 221.336 648.68571 ] /StructParent 702 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1016 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/part1.html)>> >> endobj 4644 0 obj << /S /Lbl /P 4470 0 R /Pg 991 0 R /K 2 >> endobj 4645 0 obj << /S /LBody /P 4470 0 R /Pg 991 0 R /K [ 4646 0 R 4 ] >> endobj 4646 0 obj << /S /Link /P 4645 0 R /Pg 991 0 R /K [ 3 << /Type /OBJR /Obj 4647 0 R >> ] >> endobj 4647 0 obj << /Subtype /Link /Rect [ 86 671.08571 121.976 684.08571 ] /StructParent 701 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1004 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/preface.html)>> >> endobj 4648 0 obj << /S /Link /P 4466 0 R /K [ 4649 0 R << /Type /OBJR /Pg 991 0 R /Obj 4650 0 R >> ] >> endobj 4649 0 obj << /S /I /P 4648 0 R /Pg 991 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 4650 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 700 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 4651 0 obj << /S /P /P 1977 0 R /K 4691 0 R >> endobj 4652 0 obj << /S /H1 /P 1977 0 R /Pg 1004 0 R /K 1 >> endobj 4653 0 obj << /S /P /P 1977 0 R /Pg 1004 0 R /K 2 >> endobj 4654 0 obj << /S /H3 /P 1977 0 R /Pg 1004 0 R /K 3 >> endobj 4655 0 obj << /S /P /P 1977 0 R /Pg 1004 0 R /K 4 >> endobj 4656 0 obj << /S /P /P 1977 0 R /Pg 1004 0 R /K 5 >> endobj 4657 0 obj << /S /P /P 1977 0 R /Pg 1004 0 R /K 6 >> endobj 4658 0 obj << /S /P /P 1977 0 R /Pg 1004 0 R /K [ 7 4685 0 R 9 4686 0 R 11 4687 0 R 13 ] >> endobj 4659 0 obj << /S /P /P 1977 0 R /Pg 1004 0 R /K 14 >> endobj 4660 0 obj << /S /P /P 1977 0 R /Pg 1004 0 R /K [ 15 << /Type /MCR /Pg 1009 0 R /MCID 0 >> ] >> endobj 4661 0 obj << /S /H3 /P 1977 0 R /Pg 1009 0 R /K 1 >> endobj 4662 0 obj << /S /P /P 1977 0 R /Pg 1009 0 R /K [ 2 4683 0 R 4 ] >> endobj 4663 0 obj << /S /P /P 1977 0 R /Pg 1009 0 R /K [ 5 4681 0 R 7 ] >> endobj 4664 0 obj << /S /P /P 1977 0 R /Pg 1009 0 R /K 8 >> endobj 4665 0 obj << /S /P /P 1977 0 R /Pg 1009 0 R /K 9 >> endobj 4666 0 obj << /S /H3 /P 1977 0 R /Pg 1009 0 R /K 10 >> endobj 4667 0 obj << /S /P /P 1977 0 R /Pg 1009 0 R /K 11 >> endobj 4668 0 obj << /S /P /P 1977 0 R /Pg 1009 0 R /K 12 >> endobj 4669 0 obj << /S /P /P 1977 0 R /Pg 1009 0 R /K [ 13 4677 0 R 15 4678 0 R 17 ] >> endobj 4670 0 obj << /S /P /P 1977 0 R /Pg 1009 0 R /K [ 18 << /Type /MCR /Pg 1013 0 R /MCID 0 >> ] >> endobj 4671 0 obj << /S /H3 /P 1977 0 R /Pg 1013 0 R /K 1 >> endobj 4672 0 obj << /S /P /P 1977 0 R /Pg 1013 0 R /K 2 >> endobj 4673 0 obj << /S /P /P 1977 0 R /Pg 1013 0 R /K 3 >> endobj 4674 0 obj << /S /H3 /P 1977 0 R /Pg 1013 0 R /K 4 >> endobj 4675 0 obj << /S /P /P 1977 0 R /Pg 1013 0 R /K 5 >> endobj 4676 0 obj << /S /P /P 1977 0 R /Pg 1013 0 R /K 6 >> endobj 4677 0 obj << /S /Link /P 4669 0 R /Pg 1009 0 R /K [ 14 << /Type /OBJR /Obj 4680 0 R >> ] >> endobj 4678 0 obj << /S /Link /P 4669 0 R /Pg 1009 0 R /K [ 16 << /Type /OBJR /Obj 4679 0 R >> ] >> endobj 4679 0 obj << /Subtype /Link /Rect [ 290.98 105.77142 344.65601 118.77142 ] /StructParent 758 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 167 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sol15.html)>> >> endobj 4680 0 obj << /Subtype /Link /Rect [ 424.96001 150.97144 472.636 163.97144 ] /StructParent 757 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 739 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sketch05.html)>> >> endobj 4681 0 obj << /S /Link /P 4663 0 R /Pg 1009 0 R /K [ 6 << /Type /OBJR /Obj 4682 0 R >> ] >> endobj 4682 0 obj << /Subtype /Link /Rect [ 497.93201 544.68571 556.612 557.68571 ] /StructParent 756 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1036 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sol05.html)>> >> endobj 4683 0 obj << /S /Link /P 4662 0 R /Pg 1009 0 R /K [ 3 << /Type /OBJR /Obj 4684 0 R >> ] >> endobj 4684 0 obj << /Subtype /Link /Rect [ 179.95599 623.28572 285.448 636.28572 ] /StructParent 755 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 476 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/code.html)>> >> endobj 4685 0 obj << /S /Link /P 4658 0 R /Pg 1004 0 R /K [ 8 << /Type /OBJR /Obj 4690 0 R >> ] >> endobj 4686 0 obj << /S /Link /P 4658 0 R /Pg 1004 0 R /K [ 10 << /Type /OBJR /Obj 4689 0 R >> ] >> endobj 4687 0 obj << /S /Link /P 4658 0 R /Pg 1004 0 R /K [ 12 << /Type /OBJR /Obj 4688 0 R >> ] >> endobj 4688 0 obj << /Subtype /Link /Rect [ 437.632 207.97144 471.952 220.97144 ] /StructParent 753 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1026 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/part3.html)>> >> endobj 4689 0 obj << /Subtype /Link /Rect [ 226.636 224.37143 256.96001 237.37143 ] /StructParent 752 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 973 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/part2.html)>> >> endobj 4690 0 obj << /Subtype /Link /Rect [ 72.328 240.77142 98.65601 253.77142 ] /StructParent 751 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1016 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/part1.html)>> >> endobj 4691 0 obj << /S /Link /P 4651 0 R /K [ 4692 0 R << /Type /OBJR /Pg 1004 0 R /Obj 4693 0 R >> ] >> endobj 4692 0 obj << /S /I /P 4691 0 R /Pg 1004 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 4693 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 750 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 4694 0 obj << /S /P /P 1975 0 R /K 4709 0 R >> endobj 4695 0 obj << /S /H1 /P 1975 0 R /Pg 1016 0 R /K 1 >> endobj 4696 0 obj << /S /P /P 1975 0 R /Pg 1016 0 R /K [ 2 4706 0 R 4 ] >> endobj 4697 0 obj << /S /P /P 1975 0 R /Pg 1016 0 R /K [ 4704 0 R 6 ] >> endobj 4698 0 obj << /S /P /P 1975 0 R /Pg 1016 0 R /K [ 4700 0 R 8 4701 0 R 10 ] >> endobj 4699 0 obj << /S /P /P 1975 0 R /Pg 1016 0 R /K 11 >> endobj 4700 0 obj << /S /Link /P 4698 0 R /Pg 1016 0 R /K [ 7 << /Type /OBJR /Obj 4703 0 R >> ] >> endobj 4701 0 obj << /S /Link /P 4698 0 R /Pg 1016 0 R /K [ 9 << /Type /OBJR /Obj 4702 0 R >> ] >> endobj 4702 0 obj << /Subtype /Link /Rect [ 418.62399 435.82857 466.3 448.82857 ] /StructParent 766 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 739 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sketch05.html)>> >> endobj 4703 0 obj << /Subtype /Link /Rect [ 46 452.22858 93.67599 465.22858 ] /StructParent 765 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 981 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sketch04.html)>> >> endobj 4704 0 obj << /S /Link /P 4697 0 R /Pg 1016 0 R /K [ 5 << /Type /OBJR /Obj 4705 0 R >> ] >> endobj 4705 0 obj << /Subtype /Link /Rect [ 46 530.82857 93.67599 543.82857 ] /StructParent 764 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1021 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sketch02.html)>> >> endobj 4706 0 obj << /S /Link /P 4696 0 R /Pg 1016 0 R /K [ 3 << /Type /OBJR /Obj 4708 0 R >> << /Type /OBJR /Obj 4707 0 R >> ] >> endobj 4707 0 obj << /Subtype /Link /Rect [ 46 623.82857 52 636.82857 ] /StructParent 763 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 691 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/cto.html)>> >> endobj 4708 0 obj << /Subtype /Link /Rect [ 312.952 640.22858 351.62801 653.22858 ] /StructParent 762 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 691 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/cto.html)>> >> endobj 4709 0 obj << /S /Link /P 4694 0 R /K [ 4710 0 R << /Type /OBJR /Pg 1016 0 R /Obj 4711 0 R >> ] >> endobj 4710 0 obj << /S /I /P 4709 0 R /Pg 1016 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 4711 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 761 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 4712 0 obj << /S /P /P 1973 0 R /K 4733 0 R >> endobj 4713 0 obj << /S /H1 /P 1973 0 R /Pg 1021 0 R /K 1 >> endobj 4714 0 obj << /S /P /P 1973 0 R /Pg 1021 0 R /K 2 >> endobj 4715 0 obj << /S /P /P 1973 0 R /Pg 1021 0 R /K 3 >> endobj 4716 0 obj << /S /H3 /P 1973 0 R /Pg 1021 0 R /K 4 >> endobj 4717 0 obj << /S /P /P 1973 0 R /Pg 1021 0 R /K 5 >> endobj 4718 0 obj << /S /P /P 1973 0 R /Pg 1021 0 R /K [ 6 4723 0 R 8 4724 0 R 10 4725 0 R 12 4726 0 R 14 4727 0 R 16 ] >> endobj 4719 0 obj << /S /P /P 1973 0 R /Pg 1021 0 R /K [ 17 4721 0 R 19 ] >> endobj 4720 0 obj << /S /P /P 1973 0 R /Pg 1021 0 R /K 20 >> endobj 4721 0 obj << /S /Link /P 4719 0 R /Pg 1021 0 R /K [ 18 << /Type /OBJR /Obj 4722 0 R >> ] >> endobj 4722 0 obj << /Subtype /Link /Rect [ 67.66 163.11429 157.98399 176.11429 ] /StructParent 774 /Border [ 0 0 0 ] /A << /S /GoTo /D (/Ymf'col02)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/code.html#col02)>> >> endobj 4723 0 obj << /S /Link /P 4718 0 R /Pg 1021 0 R /K [ 7 << /Type /OBJR /Obj 4732 0 R >> ] >> endobj 4724 0 obj << /S /Link /P 4718 0 R /Pg 1021 0 R /K [ 9 << /Type /OBJR /Obj 4731 0 R >> ] >> endobj 4725 0 obj << /S /Link /P 4718 0 R /Pg 1021 0 R /K [ 11 << /Type /OBJR /Obj 4730 0 R >> ] >> endobj 4726 0 obj << /S /Link /P 4718 0 R /Pg 1021 0 R /K [ 13 << /Type /OBJR /Obj 4729 0 R >> ] >> endobj 4727 0 obj << /S /Link /P 4718 0 R /Pg 1021 0 R /K [ 15 << /Type /OBJR /Obj 4728 0 R >> ] >> endobj 4728 0 obj << /Subtype /Link /Rect [ 324.976 198.51428 363.62801 211.51428 ] /StructParent 773 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 229 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s02.pdf)>> >> endobj 4729 0 obj << /Subtype /Link /Rect [ 254.308 198.51428 301.64799 211.51428 ] /A << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s02.ps)>> /Border [ 0 0 0 ] /StructParent 772 >> endobj 4730 0 obj << /Subtype /Link /Rect [ 247.64799 214.91429 286.3 227.91429 ] /StructParent 771 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 207 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s02b.pdf)>> >> endobj 4731 0 obj << /Subtype /Link /Rect [ 176.98 214.91429 224.32001 227.91429 ] /A << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s02b.ps)>> /Border [ 0 0 0 ] /StructParent 770 >> endobj 4732 0 obj << /Subtype /Link /Rect [ 67.66 231.31429 150.64 244.31429 ] /StructParent 769 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 198 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/teaching.html)>> >> endobj 4733 0 obj << /S /Link /P 4712 0 R /K [ 4734 0 R << /Type /OBJR /Pg 1021 0 R /Obj 4735 0 R >> ] >> endobj 4734 0 obj << /S /I /P 4733 0 R /Pg 1021 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 4735 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 768 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 4736 0 obj << /S /P /P 1971 0 R /K 4749 0 R >> endobj 4737 0 obj << /S /H1 /P 1971 0 R /Pg 1026 0 R /K 1 >> endobj 4738 0 obj << /S /P /P 1971 0 R /Pg 1026 0 R /K [ 2 4745 0 R 4 4746 0 R 6 ] >> endobj 4739 0 obj << /S /P /P 1971 0 R /Pg 1026 0 R /K [ 7 4741 0 R 9 4742 0 R 11 ] >> endobj 4740 0 obj << /S /P /P 1971 0 R /Pg 1026 0 R /K 12 >> endobj 4741 0 obj << /S /Link /P 4739 0 R /Pg 1026 0 R /K [ 8 << /Type /OBJR /Obj 4744 0 R >> ] >> endobj 4742 0 obj << /S /Link /P 4739 0 R /Pg 1026 0 R /K [ 10 << /Type /OBJR /Obj 4743 0 R >> ] >> endobj 4743 0 obj << /Subtype /Link /Rect [ 544.924 473.22858 598.60001 486.22858 ] /StructParent 780 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 10 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/strings.html)>> >> endobj 4744 0 obj << /Subtype /Link /Rect [ 489.952 489.62857 543.62801 502.62857 ] /StructParent 779 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1031 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sketch14.html)>> >> endobj 4745 0 obj << /S /Link /P 4738 0 R /Pg 1026 0 R /K [ 3 << /Type /OBJR /Obj 4748 0 R >> ] >> endobj 4746 0 obj << /S /Link /P 4738 0 R /Pg 1026 0 R /K [ 5 << /Type /OBJR /Obj 4747 0 R >> ] >> endobj 4747 0 obj << /Subtype /Link /Rect [ 199.972 640.22858 207.964 653.22858 ] /StructParent 778 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 973 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/part2.html)>> >> endobj 4748 0 obj << /Subtype /Link /Rect [ 172.64799 640.22858 176.644 653.22858 ] /StructParent 777 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1016 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/part1.html)>> >> endobj 4749 0 obj << /S /Link /P 4736 0 R /K [ 4750 0 R << /Type /OBJR /Pg 1026 0 R /Obj 4751 0 R >> ] >> endobj 4750 0 obj << /S /I /P 4749 0 R /Pg 1026 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 4751 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 776 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 4752 0 obj << /S /P /P 1969 0 R /K 4780 0 R >> endobj 4753 0 obj << /S /H1 /P 1969 0 R /Pg 1031 0 R /K 1 >> endobj 4754 0 obj << /S /P /P 1969 0 R /Pg 1031 0 R /K 2 >> endobj 4755 0 obj << /S /DL /P 1969 0 R /K [ 4776 0 R 4777 0 R ] >> endobj 4756 0 obj << /S /P /P 1969 0 R /Pg 1031 0 R /K 5 >> endobj 4757 0 obj << /S /P /P 1969 0 R /Pg 1031 0 R /K 6 >> endobj 4758 0 obj << /S /H3 /P 1969 0 R /Pg 1031 0 R /K 7 >> endobj 4759 0 obj << /S /P /P 1969 0 R /Pg 1031 0 R /K 8 >> endobj 4760 0 obj << /S /P /P 1969 0 R /Pg 1031 0 R /K [ 9 4770 0 R 11 4771 0 R 13 4772 0 R 15 ] >> endobj 4761 0 obj << /S /P /P 1969 0 R /Pg 1031 0 R /K [ 16 4766 0 R 18 4767 0 R 20 ] >> endobj 4762 0 obj << /S /P /P 1969 0 R /Pg 1031 0 R /K [ 21 4764 0 R 23 ] >> endobj 4763 0 obj << /S /P /P 1969 0 R /Pg 1031 0 R /K 24 >> endobj 4764 0 obj << /S /Link /P 4762 0 R /Pg 1031 0 R /K [ 22 << /Type /OBJR /Obj 4765 0 R >> ] >> endobj 4765 0 obj << /Subtype /Link /Rect [ 67.66 106.11429 223.996 119.11429 ] /StructParent 788 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1044 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sortanim.html)>> >> endobj 4766 0 obj << /S /Link /P 4761 0 R /Pg 1031 0 R /K [ 17 << /Type /OBJR /Obj 4769 0 R >> ] >> endobj 4767 0 obj << /S /Link /P 4761 0 R /Pg 1031 0 R /K [ 19 << /Type /OBJR /Obj 4768 0 R >> ] >> endobj 4768 0 obj << /Subtype /Link /Rect [ 386.608 155.91429 482.93201 168.91429 ] /StructParent 787 /Border [ 0 0 0 ] /A << /S /GoTo /D (/Ymf'col11)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/code.html#col11)>> >> endobj 4769 0 obj << /Subtype /Link /Rect [ 67.66 155.91429 163.98399 168.91429 ] /StructParent 786 /Border [ 0 0 0 ] /A << /S /GoTo /D (/Ymf'col14)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/code.html#col14)>> >> endobj 4770 0 obj << /S /Link /P 4760 0 R /Pg 1031 0 R /K [ 10 << /Type /OBJR /Obj 4775 0 R >> ] >> endobj 4771 0 obj << /S /Link /P 4760 0 R /Pg 1031 0 R /K [ 12 << /Type /OBJR /Obj 4774 0 R >> ] >> endobj 4772 0 obj << /S /Link /P 4760 0 R /Pg 1031 0 R /K [ 14 << /Type /OBJR /Obj 4773 0 R >> ] >> endobj 4773 0 obj << /Subtype /Link /Rect [ 116.668 191.31429 155.32001 204.31429 ] /StructParent 785 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 363 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s14.pdf)>> >> endobj 4774 0 obj << /Subtype /Link /Rect [ 46 191.31429 93.34 204.31429 ] /A << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s14.ps)>> /Border [ 0 0 0 ] /StructParent 784 >> endobj 4775 0 obj << /Subtype /Link /Rect [ 67.66 207.71428 150.64 220.71428 ] /StructParent 783 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 198 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/teaching.html)>> >> endobj 4776 0 obj << /S /DD /P 4755 0 R /K 4779 0 R >> endobj 4777 0 obj << /S /DD /P 4755 0 R /K 4778 0 R >> endobj 4778 0 obj << /S /LBody /P 4777 0 R /Pg 1031 0 R /K 4 >> endobj 4779 0 obj << /S /LBody /P 4776 0 R /Pg 1031 0 R /K 3 >> endobj 4780 0 obj << /S /Link /P 4752 0 R /K [ 4781 0 R << /Type /OBJR /Pg 1031 0 R /Obj 4782 0 R >> ] >> endobj 4781 0 obj << /S /I /P 4780 0 R /Pg 1031 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 4782 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 782 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 4783 0 obj << /S /P /P 1967 0 R /K 4802 0 R >> endobj 4784 0 obj << /S /H1 /P 1967 0 R /Pg 1036 0 R /K 1 >> endobj 4785 0 obj << /S /P /P 1967 0 R /Pg 1036 0 R /K 2 >> endobj 4786 0 obj << /S /P /P 1967 0 R /Pg 1036 0 R /K [ 3 4800 0 R 5 ] >> endobj 4787 0 obj << /S /P /P 1967 0 R /Pg 1036 0 R /K 6 >> endobj 4788 0 obj << /S /DL /P 1967 0 R /K 4798 0 R >> endobj 4789 0 obj << /S /P /P 1967 0 R /Pg 1036 0 R /K [ 8 4796 0 R 10 ] >> endobj 4790 0 obj << /S /P /P 1967 0 R /Pg 1036 0 R /K 11 >> endobj 4791 0 obj << /S /P /P 1967 0 R /Pg 1036 0 R /K [ 12 4794 0 R 14 << /Type /MCR /Pg 1041 0 R /MCID 0 >> ] >> endobj 4792 0 obj << /S /P /P 1967 0 R /Pg 1041 0 R /K 1 >> endobj 4793 0 obj << /S /P /P 1967 0 R /Pg 1041 0 R /K 2 >> endobj 4794 0 obj << /S /Link /P 4791 0 R /Pg 1036 0 R /K [ 13 << /Type /OBJR /Obj 4795 0 R >> ] >> endobj 4795 0 obj << /Subtype /Link /Rect [ 396.604 58.92723 540.92799 71.92723 ] /A << /S /URI /URI (javascript:if\(confirm\('http://cm.bell-labs.com/cm/cs/tpop/ \\n\\nThis\ file was not retrieved by Teleport Pro, because it is addressed on a do\ main or path outside the boundaries set for its Starting Address. \\n\\\ nDo you want to open it from the server?'\)\)window.location='http://cm.\ bell-labs.com/cm/cs/tpop/')>> /Border [ 0 0 0 ] /StructParent 793 >> endobj 4796 0 obj << /S /Link /P 4789 0 R /Pg 1036 0 R /K [ 9 << /Type /OBJR /Obj 4797 0 R >> ] >> endobj 4797 0 obj << /Subtype /Link /Rect [ 245.48801 185.32724 319.81599 198.32724 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.construx.com/stevemcc/cc.htm \\n\\n\ This file was not retrieved by Teleport Pro, because it is addressed on \ a domain or path outside the boundaries set for its Starting Address. \\\ n\\nDo you want to open it from the server?'\)\)window.location='http://\ www.construx.com/stevemcc/cc.htm')>> /Border [ 0 0 0 ] /StructParent 792 >> endobj 4798 0 obj << /S /DD /P 4788 0 R /K 4799 0 R >> endobj 4799 0 obj << /S /LBody /P 4798 0 R /Pg 1036 0 R /K 7 >> endobj 4800 0 obj << /S /Link /P 4786 0 R /Pg 1036 0 R /K [ 4 << /Type /OBJR /Obj 4801 0 R >> ] >> endobj 4801 0 obj << /Subtype /Link /Rect [ 169.48 460.32724 295.96001 473.32724 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.cs.bell-labs.com/cm/cs/cbook/index.h\ tml \\n\\nThis file was not retrieved by Teleport Pro, because it is ad\ dressed on a domain or path outside the boundaries set for its Starting \ Address. \\n\\nDo you want to open it from the server?'\)\)window.locat\ ion='http://www.cs.bell-labs.com/cm/cs/cbook/index.html')>> /Border [ 0 0 0 ] /StructParent 791 >> endobj 4802 0 obj << /S /Link /P 4783 0 R /K [ 4803 0 R << /Type /OBJR /Pg 1036 0 R /Obj 4804 0 R >> ] >> endobj 4803 0 obj << /S /I /P 4802 0 R /Pg 1036 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 4804 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 790 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 4805 0 obj << /S /P /P 1965 0 R /K 4819 0 R >> endobj 4806 0 obj << /S /H1 /P 1965 0 R /Pg 1044 0 R /K 1 >> endobj 4807 0 obj << /S /P /P 1965 0 R /Pg 1044 0 R /K 2 >> endobj 4808 0 obj << /S /P /P 1965 0 R /Pg 1044 0 R /K 3 >> endobj 4809 0 obj << /S /P /P 1965 0 R /Pg 1044 0 R /K 4 >> endobj 4810 0 obj << /S /HR /P 1965 0 R /Pg 1044 0 R /K 5 /A << /O /Layout /BBox [ 46 372.42857 602 374.42857 ] /Placement /Block /Height 2 >> >> endobj 4811 0 obj << /S /HR /P 1965 0 R /Pg 1044 0 R /K 6 /A << /O /Layout /BBox [ 46 356.42857 602 358.42857 ] /Placement /Block /Height 2 >> >> endobj 4812 0 obj << /S /P /P 1965 0 R /Pg 1044 0 R /K 7 >> endobj 4813 0 obj << /S /P /P 1965 0 R /Pg 1044 0 R /K [ 8 4815 0 R 10 4816 0 R 12 ] >> endobj 4814 0 obj << /S /P /P 1965 0 R /Pg 1044 0 R /K 13 >> endobj 4815 0 obj << /S /Link /P 4813 0 R /Pg 1044 0 R /K [ 9 << /Type /OBJR /Obj 4818 0 R >> ] >> endobj 4816 0 obj << /S /Link /P 4813 0 R /Pg 1044 0 R /K [ 11 << /Type /OBJR /Obj 4817 0 R >> ] >> endobj 4817 0 obj << /Subtype /Link /Rect [ 408.29201 254.02856 465.26801 267.02856 ] /StructParent 798 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 476 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/code.html)>> >> endobj 4818 0 obj << /Subtype /Link /Rect [ 192.65199 254.02856 262.98399 267.02856 ] /StructParent 797 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 588 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/SortAnim.java)>> >> endobj 4819 0 obj << /S /Link /P 4805 0 R /K [ 4820 0 R << /Type /OBJR /Pg 1044 0 R /Obj 4821 0 R >> ] >> endobj 4820 0 obj << /S /I /P 4819 0 R /Pg 1044 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 4821 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 796 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 4822 0 obj << /S /P /P 1963 0 R /K 4884 0 R >> endobj 4823 0 obj << /S /H1 /P 1963 0 R /Pg 1049 0 R /K 1 >> endobj 4824 0 obj << /S /P /P 1963 0 R /Pg 1049 0 R /K [ 2 4879 0 R 4 4880 0 R 6 ] >> endobj 4825 0 obj << /S /P /P 1963 0 R /Pg 1049 0 R /K 7 >> endobj 4826 0 obj << /S /P /P 1963 0 R /Pg 1049 0 R /K 8 >> endobj 4827 0 obj << /S /P /P 1963 0 R /Pg 1049 0 R /K 9 >> endobj 4828 0 obj << /S /P /P 1963 0 R /Pg 1049 0 R /K 10 >> endobj 4829 0 obj << /S /P /P 1963 0 R /Pg 1049 0 R /K 11 >> endobj 4830 0 obj << /S /P /P 1963 0 R /Pg 1049 0 R /K 12 >> endobj 4831 0 obj << /S /P /P 1963 0 R /Pg 1049 0 R /K [ 13 4877 0 R 15 ] >> endobj 4832 0 obj << /S /P /P 1963 0 R /Pg 1054 0 R /K 0 >> endobj 4833 0 obj << /S /Table /P 1963 0 R /K [ 4844 0 R 4845 0 R 4846 0 R ] /A << /O /Layout /Placement /Block /BBox [ 215.96201 655.69905 432.03799 717.88571 ] >> >> endobj 4834 0 obj << /S /P /P 1963 0 R /Pg 1054 0 R /K 16 >> endobj 4835 0 obj << /S /P /P 1963 0 R /Pg 1054 0 R /K [ 17 4842 0 R 19 ] >> endobj 4836 0 obj << /S /P /P 1963 0 R /Pg 1054 0 R /K [ 20 4838 0 R 22 4839 0 R 24 ] >> endobj 4837 0 obj << /S /P /P 1963 0 R /Pg 1054 0 R /K 25 >> endobj 4838 0 obj << /S /Link /P 4836 0 R /Pg 1054 0 R /K [ 21 << /Type /OBJR /Obj 4841 0 R >> ] >> endobj 4839 0 obj << /S /Link /P 4836 0 R /Pg 1054 0 R /K [ 23 << /Type /OBJR /Obj 4840 0 R >> ] >> endobj 4840 0 obj << /Subtype /Link /Rect [ 90.664 455.49905 138.34 468.49905 ] /StructParent 808 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 981 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sketch04.html)>> >> endobj 4841 0 obj << /Subtype /Link /Rect [ 441.244 515.09904 488.92 528.09904 ] /StructParent 807 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 691 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/cto.html)>> >> endobj 4842 0 obj << /S /Link /P 4835 0 R /Pg 1054 0 R /K [ 18 << /Type /OBJR /Obj 4843 0 R >> ] >> endobj 4843 0 obj << /Subtype /Link /Rect [ 119.332 579.29904 167.008 592.29904 ] /StructParent 806 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1021 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sketch02.html)>> >> endobj 4844 0 obj << /S /TR /P 4833 0 R /K [ 4867 0 R 4868 0 R 4869 0 R 4870 0 R 4871 0 R ] >> endobj 4845 0 obj << /S /TR /P 4833 0 R /K [ 4857 0 R 4858 0 R 4859 0 R 4860 0 R 4861 0 R ] >> endobj 4846 0 obj << /S /TR /P 4833 0 R /K [ 4847 0 R 4848 0 R 4849 0 R 4850 0 R 4851 0 R ] >> endobj 4847 0 obj << /S /TD /P 4846 0 R /K 4856 0 R >> endobj 4848 0 obj << /S /TD /P 4846 0 R /K 4855 0 R >> endobj 4849 0 obj << /S /TD /P 4846 0 R /K 4854 0 R >> endobj 4850 0 obj << /S /TD /P 4846 0 R /K 4853 0 R >> endobj 4851 0 obj << /S /TD /P 4846 0 R /K 4852 0 R >> endobj 4852 0 obj << /S /P /P 4851 0 R /Pg 1054 0 R /K 15 >> endobj 4853 0 obj << /S /P /P 4850 0 R /Pg 1054 0 R /K 14 >> endobj 4854 0 obj << /S /P /P 4849 0 R /Pg 1054 0 R /K 13 >> endobj 4855 0 obj << /S /P /P 4848 0 R /Pg 1054 0 R /K 12 >> endobj 4856 0 obj << /S /P /P 4847 0 R /Pg 1054 0 R /K 11 >> endobj 4857 0 obj << /S /TD /P 4845 0 R /K 4866 0 R >> endobj 4858 0 obj << /S /TD /P 4845 0 R /K 4865 0 R >> endobj 4859 0 obj << /S /TD /P 4845 0 R /K 4864 0 R >> endobj 4860 0 obj << /S /TD /P 4845 0 R /K 4863 0 R >> endobj 4861 0 obj << /S /TD /P 4845 0 R /K 4862 0 R >> endobj 4862 0 obj << /S /P /P 4861 0 R /Pg 1054 0 R /K 10 >> endobj 4863 0 obj << /S /P /P 4860 0 R /Pg 1054 0 R /K 9 >> endobj 4864 0 obj << /S /P /P 4859 0 R /Pg 1054 0 R /K 8 >> endobj 4865 0 obj << /S /P /P 4858 0 R /Pg 1054 0 R /K 7 >> endobj 4866 0 obj << /S /P /P 4857 0 R /Pg 1054 0 R /K 6 >> endobj 4867 0 obj << /S /TH /P 4844 0 R /K 4876 0 R >> endobj 4868 0 obj << /S /TH /P 4844 0 R /K 4875 0 R >> endobj 4869 0 obj << /S /TH /P 4844 0 R /K 4874 0 R >> endobj 4870 0 obj << /S /TH /P 4844 0 R /K 4873 0 R >> endobj 4871 0 obj << /S /TH /P 4844 0 R /K 4872 0 R >> endobj 4872 0 obj << /S /P /P 4871 0 R /Pg 1054 0 R /K 5 >> endobj 4873 0 obj << /S /P /P 4870 0 R /Pg 1054 0 R /K 4 >> endobj 4874 0 obj << /S /P /P 4869 0 R /Pg 1054 0 R /K 3 >> endobj 4875 0 obj << /S /P /P 4868 0 R /Pg 1054 0 R /K 2 >> endobj 4876 0 obj << /S /P /P 4867 0 R /Pg 1054 0 R /K 1 >> endobj 4877 0 obj << /S /Link /P 4831 0 R /Pg 1049 0 R /K [ 14 << /Type /OBJR /Obj 4878 0 R >> ] >> endobj 4878 0 obj << /Subtype /Link /Rect [ 542.584 143.28572 590.25999 156.28572 ] /StructParent 804 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 986 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sketch08.html)>> >> endobj 4879 0 obj << /S /Link /P 4824 0 R /Pg 1049 0 R /K [ 3 << /Type /OBJR /Obj 4883 0 R >> ] >> endobj 4880 0 obj << /S /Link /P 4824 0 R /Pg 1049 0 R /K [ 5 << /Type /OBJR /Obj 4882 0 R >> << /Type /OBJR /Obj 4881 0 R >> ] >> endobj 4881 0 obj << /Subtype /Link /Rect [ 46 580.68571 248.62 593.68571 ] /StructParent 803 /Border [ 0 0 0 ] /A << /S /GoTo /D (1YӾu\\\\gWJBfirstedition)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/preface.html#firstedi\ tion)>> >> endobj 4882 0 obj << /Subtype /Link /Rect [ 308.62 597.08571 313.948 610.08571 ] /StructParent 802 /Border [ 0 0 0 ] /A << /S /GoTo /D (1YӾu\\\\gWJBfirstedition)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/preface.html#firstedi\ tion)>> >> endobj 4883 0 obj << /Subtype /Link /Rect [ 92.98 671.08571 128.95599 684.08571 ] /StructParent 801 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1004 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/preface.html)>> >> endobj 4884 0 obj << /S /Link /P 4822 0 R /K [ 4885 0 R << /Type /OBJR /Pg 1049 0 R /Obj 4886 0 R >> ] >> endobj 4885 0 obj << /S /I /P 4884 0 R /Pg 1049 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 4886 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 800 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 4887 0 obj << /S /P /P 1961 0 R /K 4938 0 R >> endobj 4888 0 obj << /S /H1 /P 1961 0 R /Pg 1058 0 R /K 1 >> endobj 4889 0 obj << /S /P /P 1961 0 R /Pg 1058 0 R /K [ 2 4936 0 R 4 ] >> endobj 4890 0 obj << /S /P /P 1961 0 R /Pg 1058 0 R /K 5 >> endobj 4891 0 obj << /S /P /P 1961 0 R /Pg 1058 0 R /K 6 >> endobj 4892 0 obj << /S /P /P 1961 0 R /Pg 1058 0 R /K 7 >> endobj 4893 0 obj << /S /P /P 1961 0 R /Pg 1058 0 R /K [ 8 4932 0 R 10 4933 0 R 12 ] >> endobj 4894 0 obj << /S /P /P 1961 0 R /Pg 1058 0 R /K 13 >> endobj 4895 0 obj << /S /P /P 1961 0 R /Pg 1058 0 R /K [ 14 4930 0 R 16 ] >> endobj 4896 0 obj << /S /P /P 1961 0 R /Pg 1058 0 R /K 17 >> endobj 4897 0 obj << /S /P /P 1961 0 R /Pg 1058 0 R /K 18 >> endobj 4898 0 obj << /S /P /P 1961 0 R /Pg 1058 0 R /K 19 >> endobj 4899 0 obj << /S /P /P 1961 0 R /Pg 1058 0 R /K [ 20 4928 0 R 22 ] >> endobj 4900 0 obj << /S /P /P 1961 0 R /Pg 1058 0 R /K [ 23 4926 0 R 25 ] >> endobj 4901 0 obj << /S /P /P 1961 0 R /Pg 1058 0 R /K [ 26 << /Type /MCR /Pg 1063 0 R /MCID 0 >> ] >> endobj 4902 0 obj << /S /P /P 1961 0 R /Pg 1063 0 R /K 1 >> endobj 4903 0 obj << /S /P /P 1961 0 R /Pg 1063 0 R /K [ 2 4920 0 R 4 4921 0 R 6 4922 0 R 8 ] >> endobj 4904 0 obj << /S /P /P 1961 0 R /Pg 1063 0 R /K 9 >> endobj 4905 0 obj << /S /P /P 1961 0 R /Pg 1063 0 R /K [ 10 4916 0 R 12 4917 0 R 14 ] >> endobj 4906 0 obj << /S /P /P 1961 0 R /Pg 1063 0 R /K [ 15 4910 0 R 17 4911 0 R 19 4912 0 R 21 ] >> endobj 4907 0 obj << /S /P /P 1961 0 R /Pg 1063 0 R /K 22 >> endobj 4908 0 obj << /S /P /P 1961 0 R /Pg 1063 0 R /K 23 >> endobj 4909 0 obj << /S /P /P 1961 0 R /Pg 1063 0 R /K 24 >> endobj 4910 0 obj << /S /Link /P 4906 0 R /Pg 1063 0 R /K [ 16 << /Type /OBJR /Obj 4915 0 R >> ] >> endobj 4911 0 obj << /S /Link /P 4906 0 R /Pg 1063 0 R /K [ 18 << /Type /OBJR /Obj 4914 0 R >> ] >> endobj 4912 0 obj << /S /Link /P 4906 0 R /Pg 1063 0 R /K [ 20 << /Type /OBJR /Obj 4913 0 R >> ] >> endobj 4913 0 obj << /Subtype /Link /Rect [ 330.94 328 388.60001 341 ] /A << /S /URI /URI (javascript:if\(confirm\('http://cm.bell-labs.com/cm/ms/departments/sia/i\ nfo/site.html \\n\\nThis file was not retrieved by Teleport Pro, becaus\ e it is addressed on a domain or path outside the boundaries set for its\ Starting Address. \\n\\nDo you want to open it from the server?'\)\)wi\ ndow.location='http://cm.bell-labs.com/cm/ms/departments/sia/info/site.h\ tml')>> /Border [ 0 0 0 ] /StructParent 825 >> endobj 4914 0 obj << /Subtype /Link /Rect [ 269.272 328 315.604 341 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.bell-labs.com/ \\n\\nThis file was \ not retrieved by Teleport Pro, because it is addressed on a domain or pa\ th outside the boundaries set for its Starting Address. \\n\\nDo you wa\ nt to open it from the server?'\)\)window.location='http://www.bell-labs\ .com/')>> /Border [ 0 0 0 ] /StructParent 824 >> endobj 4915 0 obj << /Subtype /Link /Rect [ 252.304 344.39999 279.62801 357.39999 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.ercb.com/ddj/1991/ddj.9106.html \\n\ \\nThis file was not retrieved by Teleport Pro, because it is addressed \ on a domain or path outside the boundaries set for its Starting Address.\ \\n\\nDo you want to open it from the server?'\)\)window.location='htt\ p://www.ercb.com/ddj/1991/ddj.9106.html')>> /Border [ 0 0 0 ] /StructParent 823 >> endobj 4916 0 obj << /S /Link /P 4905 0 R /Pg 1063 0 R /K [ 11 << /Type /OBJR /Obj 4919 0 R >> ] >> endobj 4917 0 obj << /S /Link /P 4905 0 R /Pg 1063 0 R /K [ 13 << /Type /OBJR /Obj 4918 0 R >> ] >> endobj 4918 0 obj << /Subtype /Link /Rect [ 308.59599 437.39999 409.576 450.39999 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.lucent.com/ \\n\\nThis file was not\ retrieved by Teleport Pro, because it is addressed on a domain or path \ outside the boundaries set for its Starting Address. \\n\\nDo you want \ to open it from the server?'\)\)window.location='http://www.lucent.com/'\ )>> /Border [ 0 0 0 ] /StructParent 822 >> endobj 4919 0 obj << /Subtype /Link /Rect [ 272.968 453.8 319.3 466.8 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.bell-labs.com/ \\n\\nThis file was \ not retrieved by Teleport Pro, because it is addressed on a domain or pa\ th outside the boundaries set for its Starting Address. \\n\\nDo you wa\ nt to open it from the server?'\)\)window.location='http://www.bell-labs\ .com/')>> /Border [ 0 0 0 ] /StructParent 821 >> endobj 4920 0 obj << /S /Link /P 4903 0 R /Pg 1063 0 R /K [ 3 << /Type /OBJR /Obj 4925 0 R >> ] >> endobj 4921 0 obj << /S /Link /P 4903 0 R /Pg 1063 0 R /K [ 5 << /Type /OBJR /Obj 4924 0 R >> ] >> endobj 4922 0 obj << /S /Link /P 4903 0 R /Pg 1063 0 R /K [ 7 << /Type /OBJR /Obj 4923 0 R >> ] >> endobj 4923 0 obj << /Subtype /Link /Rect [ 108.004 565.8 168.004 578.8 ] /StructParent 820 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 99 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec153.html)>> >> endobj 4924 0 obj << /Subtype /Link /Rect [ 427.588 582.2 483.916 595.2 ] /StructParent 819 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 943 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/appmodels.html)>> >> endobj 4925 0 obj << /Subtype /Link /Rect [ 336.304 598.60001 389.98 611.60001 ] /StructParent 818 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 10 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/strings.html)>> >> endobj 4926 0 obj << /S /Link /P 4900 0 R /Pg 1058 0 R /K [ 24 << /Type /OBJR /Obj 4927 0 R >> ] >> endobj 4927 0 obj << /Subtype /Link /Rect [ 200.308 120.82857 239.308 133.82857 ] /StructParent 816 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 566 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sort.cpp)>> >> endobj 4928 0 obj << /S /Link /P 4899 0 R /Pg 1058 0 R /K [ 21 << /Type /OBJR /Obj 4929 0 R >> ] >> endobj 4929 0 obj << /Subtype /Link /Rect [ 211.79201 170.62857 270.472 183.62857 ] /StructParent 815 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1036 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sol05.html)>> >> endobj 4930 0 obj << /S /Link /P 4895 0 R /Pg 1058 0 R /K [ 15 << /Type /OBJR /Obj 4931 0 R >> ] >> endobj 4931 0 obj << /Subtype /Link /Rect [ 121.66 378.22858 292.60001 391.22858 ] /StructParent 814 /Border [ 0 0 0 ] /A << /S /GoTo /D (1YӾu\\\\gWJBfirstedition)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/preface.html#firstedi\ tion)>> >> endobj 4932 0 obj << /S /Link /P 4893 0 R /Pg 1058 0 R /K [ 9 << /Type /OBJR /Obj 4935 0 R >> ] >> endobj 4933 0 obj << /S /Link /P 4893 0 R /Pg 1058 0 R /K [ 11 << /Type /OBJR /Obj 4934 0 R >> ] >> endobj 4934 0 obj << /Subtype /Link /Rect [ 434.29601 461.42857 531.28 474.42857 ] /StructParent 813 /Border [ 0 0 0 ] /A << /S /GoTo /D (#n\r] vaxtimes)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/why2e.html#vaxtimes)>> >> endobj 4935 0 obj << /Subtype /Link /Rect [ 349.312 461.42857 404.98 474.42857 ] /StructParent 812 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 961 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/firsted.html)>> >> endobj 4936 0 obj << /S /Link /P 4889 0 R /Pg 1058 0 R /K [ 3 << /Type /OBJR /Obj 4937 0 R >> ] >> endobj 4937 0 obj << /Subtype /Link /Rect [ 76.336 640.22858 121.672 653.22858 ] /StructParent 811 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 752 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/epilog1.html)>> >> endobj 4938 0 obj << /S /Link /P 4887 0 R /K [ 4939 0 R << /Type /OBJR /Pg 1058 0 R /Obj 4940 0 R >> ] >> endobj 4939 0 obj << /S /I /P 4938 0 R /Pg 1058 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 4940 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 810 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1954 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html)>> >> endobj 4941 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K [ 4942 0 R 4943 0 R 4944 0 R 4945 0 R 4946 0 R 4947 0 R 4948 0 R 4949 0 R 4950 0 R 4951 0 R 4952 0 R 4953 0 R 4954 0 R 4955 0 R ] >> endobj 4942 0 obj << /S /P /P 4941 0 R /K 5051 0 R >> endobj 4943 0 obj << /S /H1 /P 4941 0 R /Pg 1954 0 R /K 1 >> endobj 4944 0 obj << /S /P /P 4941 0 R /Pg 1954 0 R /K [ 2 5049 0 R 4 ] >> endobj 4945 0 obj << /S /P /P 4941 0 R /Pg 1954 0 R /K [ 5047 0 R 6 ] >> endobj 4946 0 obj << /S /P /P 4941 0 R /Pg 1954 0 R /K 7 >> endobj 4947 0 obj << /S /P /P 4941 0 R /Pg 1954 0 R /K 8 >> endobj 4948 0 obj << /S /P /P 4941 0 R /Pg 1954 0 R /K 9 >> endobj 4949 0 obj << /S /P /P 4941 0 R /Pg 1954 0 R /K [ 5044 0 R 11 5045 0 R 13 ] >> endobj 4950 0 obj << /S /P /P 4941 0 R /Pg 1954 0 R /K [ 14 4998 0 R 16 4999 0 R 18 5000 0 R 20 5001 0 R 22 5002 0 R 24 5003 0 R 26 5004 0 R 28 5005 0 R 30 5006 0 R 32 5007 0 R 34 5008 0 R 36 5009 0 R 38 5010 0 R 40 5011 0 R 42 5012 0 R 44 5013 0 R 46 5014 0 R 48 5015 0 R << /Type /MCR /Pg 1 0 R /MCID 1 >> 5016 0 R << /Type /MCR /Pg 1 0 R /MCID 3 >> 5017 0 R << /Type /MCR /Pg 1 0 R /MCID 5 >> 5018 0 R << /Type /MCR /Pg 1 0 R /MCID 7 >> 5019 0 R << /Type /MCR /Pg 1 0 R /MCID 9 >> 5020 0 R << /Type /MCR /Pg 1 0 R /MCID 11 >> ] >> endobj 4951 0 obj << /S /P /P 4941 0 R /Pg 1 0 R /K [ 12 4990 0 R 14 4991 0 R 16 4992 0 R 18 4993 0 R 20 ] >> endobj 4952 0 obj << /S /P /P 4941 0 R /Pg 1 0 R /K [ 21 4980 0 R 23 4981 0 R 25 4982 0 R 27 4983 0 R 29 4984 0 R 31 ] >> endobj 4953 0 obj << /S /P /P 4941 0 R /Pg 1 0 R /K 32 >> endobj 4954 0 obj << /S /UL /P 4941 0 R /A 4956 0 R /K [ 4957 0 R 4958 0 R 4959 0 R ] >> endobj 4955 0 obj << /S /P /P 4941 0 R /Pg 1 0 R /K 51 >> endobj 4956 0 obj << /O /List /ListNumbering /Disc >> endobj 4957 0 obj << /S /LI /P 4954 0 R /K [ 4976 0 R 4977 0 R ] >> endobj 4958 0 obj << /S /LI /P 4954 0 R /K [ 4972 0 R 4973 0 R ] >> endobj 4959 0 obj << /S /LI /P 4954 0 R /K [ 4960 0 R 4961 0 R ] >> endobj 4960 0 obj << /S /Lbl /P 4959 0 R /Pg 1 0 R /K 39 >> endobj 4961 0 obj << /S /LBody /P 4959 0 R /Pg 1 0 R /K [ 40 4962 0 R 42 4963 0 R 44 4964 0 R 46 4965 0 R 48 4966 0 R 50 ] >> endobj 4962 0 obj << /S /Link /P 4961 0 R /Pg 1 0 R /K [ 41 << /Type /OBJR /Obj 4971 0 R >> ] >> endobj 4963 0 obj << /S /Link /P 4961 0 R /Pg 1 0 R /K [ 43 << /Type /OBJR /Obj 4970 0 R >> ] >> endobj 4964 0 obj << /S /Link /P 4961 0 R /Pg 1 0 R /K [ 45 << /Type /OBJR /Obj 4969 0 R >> ] >> endobj 4965 0 obj << /S /Link /P 4961 0 R /Pg 1 0 R /K [ 47 << /Type /OBJR /Obj 4968 0 R >> ] >> endobj 4966 0 obj << /S /Link /P 4961 0 R /Pg 1 0 R /K [ 49 << /Type /OBJR /Obj 4967 0 R >> ] >> endobj 4967 0 obj << /Subtype /Link /Rect [ 437.96001 403 516.29601 416 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.quantumbooks.com/ \\n\\nThis file w\ as not retrieved by Teleport Pro, because it is addressed on a domain or\ path outside the boundaries set for its Starting Address. \\n\\nDo you\ want to open it from the server?'\)\)window.location='http://www.quantu\ mbooks.com/')>> /Border [ 0 0 0 ] /StructParent 44 >> endobj 4968 0 obj << /Subtype /Link /Rect [ 368.3 403 431.96001 416 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www1.fatbrain.com/asp/bookinfo/bookinfo.\ asp?theisbn=0201657880 \\n\\nThis file was not retrieved by Teleport Pr\ o, because it is addressed on a domain or path outside the boundaries se\ t for its Starting Address. \\n\\nDo you want to open it from the serve\ r?'\)\)window.location='http://www1.fatbrain.com/asp/bookinfo/bookinfo.a\ sp?theisbn=0201657880')>> /Border [ 0 0 0 ] /StructParent 43 >> endobj 4969 0 obj << /Subtype /Link /Rect [ 300.644 403 362.3 416 ] /A << /S /URI /URI (javascript:if\(confirm\('http://search.borders.com/fcgi-bin/db2www/searc\ h/search.d2w/Details?&mediaType=Book&prodID=51483757 \\n\\nThis file wa\ s not retrieved by Teleport Pro, because it is addressed on a domain or \ path outside the boundaries set for its Starting Address. \\n\\nDo you \ want to open it from the server?'\)\)window.location='http://search.bord\ ers.com/fcgi-bin/db2www/search/search.d2w/Details?&mediaType=Book&prodID\ =51483757')>> /Border [ 0 0 0 ] /StructParent 42 >> endobj 4970 0 obj << /Subtype /Link /Rect [ 216.65601 403 294.644 416 ] /A << /S /URI /URI (javascript:if\(confirm\('http://shop.barnesandnoble.com/booksearch/isbnI\ nquiry.asp?isbn=0201657880 \\n\\nThis file was not retrieved by Telepor\ t Pro, because it is addressed on a domain or path outside the boundarie\ s set for its Starting Address. \\n\\nDo you want to open it from the s\ erver?'\)\)window.location='http://shop.barnesandnoble.com/booksearch/is\ bnInquiry.asp?isbn=0201657880')>> /Border [ 0 0 0 ] /StructParent 41 >> endobj 4971 0 obj << /Subtype /Link /Rect [ 146.336 403 210.65601 416 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.amazon.com/exec/obidos/ISBN%3D020165\ 7880 \\n\\nThis file was not retrieved by Teleport Pro, because it is a\ ddressed on a domain or path outside the boundaries set for its Starting\ Address. \\n\\nDo you want to open it from the server?'\)\)window.loca\ tion='http://www.amazon.com/exec/obidos/ISBN%3D0201657880')>> /Border [ 0 0 0 ] /StructParent 40 >> endobj 4972 0 obj << /S /Lbl /P 4958 0 R /Pg 1 0 R /K 36 >> endobj 4973 0 obj << /S /LBody /P 4958 0 R /Pg 1 0 R /K [ 4974 0 R 38 ] >> endobj 4974 0 obj << /S /Link /P 4973 0 R /Pg 1 0 R /K [ 37 << /Type /OBJR /Obj 4975 0 R >> ] >> endobj 4975 0 obj << /Subtype /Link /Rect [ 86 419.39999 282.98 432.39999 ] /A << /S /URI /URI (javascript:if\(confirm\('http://cseng.aw.com/bookpage.taf?ISBN=0-201-657\ 88-0&ptype=0 \\n\\nThis file was not retrieved by Teleport Pro, because\ it is addressed on a domain or path outside the boundaries set for its \ Starting Address. \\n\\nDo you want to open it from the server?'\)\)win\ dow.location='http://cseng.aw.com/bookpage.taf?ISBN=0-201-65788-0&ptype=\ 0')>> /Border [ 0 0 0 ] /StructParent 39 >> endobj 4976 0 obj << /S /Lbl /P 4957 0 R /Pg 1 0 R /K 33 >> endobj 4977 0 obj << /S /LBody /P 4957 0 R /Pg 1 0 R /K [ 4978 0 R 35 ] >> endobj 4978 0 obj << /S /Link /P 4977 0 R /Pg 1 0 R /K [ 34 << /Type /OBJR /Obj 4979 0 R >> ] >> endobj 4979 0 obj << /Subtype /Link /Rect [ 86 435.8 379.65199 448.8 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.awl.com/cseng \\n\\nThis file was n\ ot retrieved by Teleport Pro, because it is addressed on a domain or pat\ h outside the boundaries set for its Starting Address. \\n\\nDo you wan\ t to open it from the server?'\)\)window.location='http://www.awl.com/cs\ eng')>> /Border [ 0 0 0 ] /StructParent 38 >> endobj 4980 0 obj << /S /Link /P 4952 0 R /Pg 1 0 R /K [ 22 << /Type /OBJR /Obj 4989 0 R >> ] >> endobj 4981 0 obj << /S /Link /P 4952 0 R /Pg 1 0 R /K [ 24 << /Type /OBJR /Obj 4988 0 R >> ] >> endobj 4982 0 obj << /S /Link /P 4952 0 R /Pg 1 0 R /K [ 26 << /Type /OBJR /Obj 4987 0 R >> ] >> endobj 4983 0 obj << /S /Link /P 4952 0 R /Pg 1 0 R /K [ 28 << /Type /OBJR /Obj 4986 0 R >> ] >> endobj 4984 0 obj << /S /Link /P 4952 0 R /Pg 1 0 R /K [ 30 << /Type /OBJR /Obj 4985 0 R >> ] >> endobj 4985 0 obj << /Subtype /Link /Rect [ 46 504.60001 134.308 517.60001 ] /StructParent 37 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 198 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/teaching.html)>> >> endobj 4986 0 obj << /Subtype /Link /Rect [ 46 521 138.304 534 ] /StructParent 36 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 440 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/tricks.html)>> >> endobj 4987 0 obj << /Subtype /Link /Rect [ 46 537.39999 206.34399 550.39999 ] /StructParent 35 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1044 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sortanim.html)>> >> endobj 4988 0 obj << /Subtype /Link /Rect [ 46 553.8 199.66 566.8 ] /StructParent 34 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 181 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/webrefs.html)>> >> endobj 4989 0 obj << /Subtype /Link /Rect [ 46 570.2 107.65601 583.2 ] /StructParent 33 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 476 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/code.html)>> >> endobj 4990 0 obj << /S /Link /P 4951 0 R /Pg 1 0 R /K [ 13 << /Type /OBJR /Obj 4997 0 R >> ] >> endobj 4991 0 obj << /S /Link /P 4951 0 R /Pg 1 0 R /K [ 15 << /Type /OBJR /Obj 4996 0 R >> ] >> endobj 4992 0 obj << /S /Link /P 4951 0 R /Pg 1 0 R /K [ 17 << /Type /OBJR /Obj 4995 0 R >> ] >> endobj 4993 0 obj << /S /Link /P 4951 0 R /Pg 1 0 R /K [ 19 << /Type /OBJR /Obj 4994 0 R >> ] >> endobj 4994 0 obj << /Subtype /Link /Rect [ 46 620 75.31599 633 ] /StructParent 32 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 686 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/errata.html)>> >> endobj 4995 0 obj << /Subtype /Link /Rect [ 46 636.39999 157.01199 649.39999 ] /StructParent 31 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 961 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/firsted.html)>> >> endobj 4996 0 obj << /Subtype /Link /Rect [ 46 652.8 194.992 665.8 ] /StructParent 30 /Border [ 0 0 0 ] /A << /S /GoTo /D (1YӾu\\\\gWJBfirstedition)>> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/preface.html#firstedi\ tion)>> >> endobj 4997 0 obj << /Subtype /Link /Rect [ 46 669.2 159.65199 682.2 ] /StructParent 29 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1049 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/why2e.html)>> >> endobj 4998 0 obj << /S /Link /P 4950 0 R /Pg 1954 0 R /K [ 15 << /Type /OBJR /Obj 5043 0 R >> ] >> endobj 4999 0 obj << /S /Link /P 4950 0 R /Pg 1954 0 R /K [ 17 << /Type /OBJR /Obj 5042 0 R >> ] >> endobj 5000 0 obj << /S /Link /P 4950 0 R /Pg 1954 0 R /K [ 19 << /Type /OBJR /Obj 5041 0 R >> ] >> endobj 5001 0 obj << /S /Link /P 4950 0 R /Pg 1954 0 R /K [ 21 << /Type /OBJR /Obj 5040 0 R >> ] >> endobj 5002 0 obj << /S /Link /P 4950 0 R /Pg 1954 0 R /K [ 23 << /Type /OBJR /Obj 5039 0 R >> ] >> endobj 5003 0 obj << /S /Link /P 4950 0 R /Pg 1954 0 R /K [ 25 << /Type /OBJR /Obj 5038 0 R >> ] >> endobj 5004 0 obj << /S /Link /P 4950 0 R /Pg 1954 0 R /K [ 27 << /Type /OBJR /Obj 5037 0 R >> ] >> endobj 5005 0 obj << /S /Link /P 4950 0 R /Pg 1954 0 R /K [ 29 << /Type /OBJR /Obj 5036 0 R >> ] >> endobj 5006 0 obj << /S /Link /P 4950 0 R /Pg 1954 0 R /K [ 31 << /Type /OBJR /Obj 5035 0 R >> ] >> endobj 5007 0 obj << /S /Link /P 4950 0 R /Pg 1954 0 R /K [ 33 << /Type /OBJR /Obj 5034 0 R >> ] >> endobj 5008 0 obj << /S /Link /P 4950 0 R /Pg 1954 0 R /K [ 35 << /Type /OBJR /Obj 5033 0 R >> ] >> endobj 5009 0 obj << /S /Link /P 4950 0 R /Pg 1954 0 R /K [ 37 << /Type /OBJR /Obj 5032 0 R >> ] >> endobj 5010 0 obj << /S /Link /P 4950 0 R /Pg 1954 0 R /K [ 39 << /Type /OBJR /Obj 5031 0 R >> ] >> endobj 5011 0 obj << /S /Link /P 4950 0 R /Pg 1954 0 R /K [ 41 << /Type /OBJR /Obj 5030 0 R >> ] >> endobj 5012 0 obj << /S /Link /P 4950 0 R /Pg 1954 0 R /K [ 43 << /Type /OBJR /Obj 5029 0 R >> ] >> endobj 5013 0 obj << /S /Link /P 4950 0 R /Pg 1954 0 R /K [ 45 << /Type /OBJR /Obj 5028 0 R >> ] >> endobj 5014 0 obj << /S /Link /P 4950 0 R /Pg 1954 0 R /K [ 47 << /Type /OBJR /Obj 5027 0 R >> ] >> endobj 5015 0 obj << /S /Link /P 4950 0 R /Pg 1 0 R /K [ 0 << /Type /OBJR /Obj 5026 0 R >> ] >> endobj 5016 0 obj << /S /Link /P 4950 0 R /Pg 1 0 R /K [ 2 << /Type /OBJR /Obj 5025 0 R >> ] >> endobj 5017 0 obj << /S /Link /P 4950 0 R /Pg 1 0 R /K [ 4 << /Type /OBJR /Obj 5024 0 R >> ] >> endobj 5018 0 obj << /S /Link /P 4950 0 R /Pg 1 0 R /K [ 6 << /Type /OBJR /Obj 5023 0 R >> ] >> endobj 5019 0 obj << /S /Link /P 4950 0 R /Pg 1 0 R /K [ 8 << /Type /OBJR /Obj 5022 0 R >> ] >> endobj 5020 0 obj << /S /Link /P 4950 0 R /Pg 1 0 R /K [ 10 << /Type /OBJR /Obj 5021 0 R >> ] >> endobj 5021 0 obj << /Subtype /Link /Rect [ 46 719 73.32401 732 ] /StructParent 28 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 700 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html)>> >> endobj 5022 0 obj << /Subtype /Link /Rect [ 281.368 735.39999 335.04401 748.39999 ] /StructParent 27 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 167 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sol15.html)>> >> endobj 5023 0 obj << /Subtype /Link /Rect [ 224.692 735.39999 272.368 748.39999 ] /StructParent 26 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 935 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sol07.html)>> >> endobj 5024 0 obj << /Subtype /Link /Rect [ 168.01601 735.39999 215.692 748.39999 ] /StructParent 25 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1036 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sol05.html)>> >> endobj 5025 0 obj << /Subtype /Link /Rect [ 111.34 735.39999 159.01601 748.39999 ] /StructParent 24 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 47 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sol01.html)>> >> endobj 5026 0 obj << /Subtype /Link /Rect [ 46 751.8 218.992 764.8 ] /StructParent 23 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 669 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/apprules.html)>> >> endobj 5027 0 obj << /Subtype /Link /Rect [ 46 42.19238 266.98 55.19238 ] /StructParent 21 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 943 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/appmodels.html)>> >> endobj 5028 0 obj << /Subtype /Link /Rect [ 46 58.59238 204.664 71.59238 ] /StructParent 20 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 449 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/quiz.html)>> >> endobj 5029 0 obj << /Subtype /Link /Rect [ 46 74.99239 184.672 87.99239 ] /StructParent 19 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1058 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/epilog2.html)>> >> endobj 5030 0 obj << /Subtype /Link /Rect [ 46 91.39238 171.35201 104.39238 ] /StructParent 18 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 752 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/epilog1.html)>> >> endobj 5031 0 obj << /Subtype /Link /Rect [ 52 107.79237 191.34399 120.79237 ] /StructParent 17 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 10 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/strings.html)>> >> endobj 5032 0 obj << /Subtype /Link /Rect [ 52 124.19238 185.65601 137.19238 ] /StructParent 16 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1031 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sketch14.html)>> >> endobj 5033 0 obj << /Subtype /Link /Rect [ 46 140.59238 145.64799 153.59238 ] /StructParent 15 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1026 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/part3.html)>> >> endobj 5034 0 obj << /Subtype /Link /Rect [ 52 156.99239 294.98801 169.99239 ] /StructParent 14 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 986 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sketch08.html)>> >> endobj 5035 0 obj << /Subtype /Link /Rect [ 52 173.39238 231.31599 186.39238 ] /StructParent 13 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 459 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bote.html)>> >> endobj 5036 0 obj << /Subtype /Link /Rect [ 46 189.79237 143.968 202.79237 ] /StructParent 12 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 973 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/part2.html)>> >> endobj 5037 0 obj << /Subtype /Link /Rect [ 52 206.19238 306.328 219.19238 ] /StructParent 11 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 739 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sketch05.html)>> >> endobj 5038 0 obj << /Subtype /Link /Rect [ 52 222.59238 274.98399 235.59238 ] /StructParent 10 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 981 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sketch04.html)>> >> endobj 5039 0 obj << /Subtype /Link /Rect [ 52 238.99239 231.328 251.99239 ] /StructParent 9 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1021 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sketch02.html)>> >> endobj 5040 0 obj << /Subtype /Link /Rect [ 52 255.39238 202.66 268.39238 ] /StructParent 8 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 691 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/cto.html)>> >> endobj 5041 0 obj << /Subtype /Link /Rect [ 46 271.79237 142.66 284.79237 ] /StructParent 7 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1016 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/part1.html)>> >> endobj 5042 0 obj << /Subtype /Link /Rect [ 46 288.19238 81.976 301.19238 ] /StructParent 6 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 1004 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/preface.html)>> >> endobj 5043 0 obj << /Subtype /Link /Rect [ 46 304.59238 131.992 317.59238 ] /StructParent 5 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 991 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/toc.html)>> >> endobj 5044 0 obj << /S /I /P 4949 0 R /Pg 1954 0 R /K 10 /Alt ([new]) /A << /O /Layout /BBox [ 46 358.28572 77 370.28572 ] /Placement /Inline /Width 31 >> >> endobj 5045 0 obj << /S /Link /P 4949 0 R /Pg 1954 0 R /K [ 12 << /Type /OBJR /Obj 5046 0 R >> ] >> endobj 5046 0 obj << /Subtype /Link /Rect [ 80 354.39238 219.14 367.39238 ] /StructParent 4 /Border [ 0 0 0 ] /A << /S /GoTo /D [ 5 0 R /XYZ 0 792 null ] >> /PA << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/whatsnew.html)>> >> endobj 5047 0 obj << /S /Link /P 4945 0 R /Pg 1954 0 R /K [ 5 << /Type /OBJR /Obj 5048 0 R >> ] >> endobj 5048 0 obj << /Subtype /Link /Rect [ 46 635.68571 150.976 648.68571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.awl.com/ \\n\\nThis file was not re\ trieved by Teleport Pro, because it is addressed on a domain or path out\ side the boundaries set for its Starting Address. \\n\\nDo you want to \ open it from the server?'\)\)window.location='http://www.awl.com/')>> /Border [ 0 0 0 ] /StructParent 3 >> endobj 5049 0 obj << /S /Link /P 4944 0 R /Pg 1954 0 R /K [ 3 << /Type /OBJR /Obj 5050 0 R >> ] >> endobj 5050 0 obj << /Subtype /Link /Rect [ 61 671.08571 118 684.08571 ] /A << /S /URI /URI (javascript:if\(confirm\('http://www.cs.bell-labs.com/~jlb \\n\\nThis fi\ le was not retrieved by Teleport Pro, because it is addressed on a domai\ n or path outside the boundaries set for its Starting Address. \\n\\nDo\ you want to open it from the server?'\)\)window.location='http://www.cs\ .bell-labs.com/~jlb')>> /Border [ 0 0 0 ] /StructParent 2 >> endobj 5051 0 obj << /S /Link /P 4942 0 R /K [ 5052 0 R << /Type /OBJR /Pg 1954 0 R /Obj 5053 0 R >> ] >> endobj 5052 0 obj << /S /I /P 5051 0 R /Pg 1954 0 R /K 0 /Alt (book cover) /A << /O /Layout /BBox [ 356 508 602 766 ] /Placement /End /Width 246 /BaselineShift -257.99998 >> >> endobj 5053 0 obj << /Subtype /Link /Rect [ 378 510 580 764 ] /StructParent 1 /Border [ 0 0 0 ] /A << /S /URI /URI (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bigcover.jpg)>> >> endobj 5054 0 obj [ 5053 0 R 5050 0 R 5048 0 R 5046 0 R 5043 0 R 5042 0 R 5041 0 R 5040 0 R 5039 0 R 5038 0 R 5037 0 R 5036 0 R 5035 0 R 5034 0 R 5033 0 R 5032 0 R 5031 0 R 5030 0 R 5029 0 R 5028 0 R 5027 0 R ] endobj 5055 0 obj [ /Indexed /DeviceRGB 3 5064 0 R ] endobj 5056 0 obj << /Type /Font /Subtype /Type1 /BaseFont /Times-Roman /Encoding /WinAnsiEncoding >> endobj 5057 0 obj /DeviceRGB endobj 5058 0 obj << /Type /Font /Subtype /Type1 /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding >> endobj 5059 0 obj << /Filter /FlateDecode /Length 5060 0 R >> stream +HWn6}^YQ/im] MZz$n)m;ԍE6</NO!?>= $5}F $PTy>tG@ ??Xw/V|'JTU%0I +2%b;8"F2` :$jS/h'Őgq^Wr\|S.Oau꽂ߒ^ZBUxAz.'ϒ[yi[ _}77e^I%iv~dȫ&Wv־unျt#J=R+|D J/oakFqC`L>5t6{+v M_c6]eKk;W#뭼V,GupL0;-ϋ-*~нVrXP^h_2MVqMV?W`!JEm~Y.ʼiD(ɞ9$t_3D5G) +%.t;V$o௿p_|GC -|zJ`Z-i#l/$vҩWwy7$0J}Fpt'!ϨH0d<_}M'DFxw)2qW5#8Qyq%m63fvK?Ԅ`u +#xͿ7'v[5oZv!c:D8vEl2rցH|DNRz> -R,Hb 8XN1,  D澋]-*}Fg3P n!ɈqԄ\d};~zU^ϙ}?pD>C;вC,7t +$?Li-qp.nNwSp&\QA謃-vtLoԄuC~^b[9CrlCx5ugxβԄ[1CC}/w޷ {GRL&\s>0ſ3,!udw&`I4ҧ+IHu"Q/䚗 @+Qqȱw(s6l`6 endstream endobj 5060 0 obj 1861 endobj 5061 0 obj << /Type /Font /Subtype /Type1 /BaseFont /Times-Bold /Encoding /WinAnsiEncoding >> endobj 5062 0 obj << /Type /XObject /Subtype /Image /Filter /DCTDecode /Width 202 /Height 254 /BitsPerComponent 8 /ColorSpace /DeviceRGB /Length 5066 0 R /ID 5065 0 R >> stream +JFIF,,CC" + }!1AQa"q2#BR$3br +%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz + w!1AQaq"2B #3Rbr +$4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ??jV?j|v':}QE`HQEQEQEQEQEQEQEQEQEQE+"VE>5ZUZ[b?W_g~EVQ@Q@Q@Q@Q@Q@Q@Q@Q@Q@b+\QdS_c_Ꮻz!9ӝ`2N@9E|;AZ=A 㟇ڻ dڼ27Rb]G04W*&f2hO|3;[_T3tFo[,XD4B_5c9I+o/]_KjkUn˥ٽ4G~xׁ4o6ޭeqOwQs.t֚n:,s2r'[e%O_>oIkz-Ԗ$1ȩI3qV"3#뵋ٓz^<%]*UGGxX҄vżPC)eȗkk@ 8oF[;{=#Tg -?R-*hm. H$B|Fu&%:|Z7+[fKuצKr)A;֓z쬗G{'Q_C?-ys{؟ir^%Kk[Ŧ-3B9ty= fof~ |M_-4KB<9itGmx4ѬM܌- +-ED4N-+ٷ%ݼ]ݔv/E~CEv"{ xឩ-R-4ZֲeTib/FmrE:E7мeῆ*ZYYæ^.#G}P/^5kztI->Ox1GGͥQŦ4Mg9ٮ'AyILtzK=?𭿈dkjÚq%ӓN K:k iĊK=敚Zi5pVI5馻xuw?|ugu;I 4hu"Zm_F=^U4 ,-^χOʹo-֝ڍ%:ͼͼL)\Uh}i9sI;$=5oTWК/w^$S ojHK]JLK.{qK2Cqs$q? go~7&."~ֿNmTK׵OxZ×irycskzݚoh&-,4+'4=AuMhr[W6VZ8Hf"&A+J2d᫲iom.m]_KY6gIIrket~9ȭsGUz¿W"ږN㝣n/h-u[+5bbh.m?GωZv]jxz5Y >'m2K8#.dC$m%?7g ;]6 eHl,F,O$E8Pұbf%eSM4.-eRMM#׮Qp/2w#'r@eʬyܓnSN'vNݖDIKW%ewJMza5oxUԙ֐%teΙw \zr[6.ȅ>Ro?neXZ+JgĚZiZyy[+EUaP xž[}NL\Ϥꖓibf^DhE4}>,i_7m--2JWKMޗ[﷟ڿ|qigë-k_ 5Mo+[˥h}ķ0=W$hp9la SR״_ +5oo/HҤ:ƉoMCȗnh- CW6'|]_6֬=.OMgľ% ޟqm+ ˾DM]>9y-#uIӸ?? y,{q>"q+h渹P! @&D07'ʜZwjͧM;_D[ʣk9I[Mֳ]wy?t]Kҧo^m:K]k$3Y5Ve ]&ڵ]Zikh=x74o cǎ5㹼kV]q^_IPE[-Dc X\3j3P)-Wk6gO)_ɗms(GuMOaT'¾0|l5 +h'ڰ?et"yM:8'+)Ь|c7]ׅt_Yf'"ԡU%m[絶$ +ӻ B`%SM8Ӵe&z${oKZ +wj2wmljk۷Ԛ^yþlewxzBymSЬ.Ԯ`mo|e RuZf.Yk[_gFn᳋]_جix +gLFYY:gq1I"MgG>O ,|I<څ6w1iwka<uk%<ʭs%դvism[ < ǡYxt_bOxv%-Y~s3rdU !@'f^&M]N'wVzzX% M&ݞI+蕷zپ툾~i\ڿ0@u($./Y%r$~,QkzPmj62#k_}GW{=3K.O@c&$qZc_77xz_z.tK(E> &JӥItf7Va$/+j.&b5f|#{mAiڮaxvzm޼Kek"ȒY[]Am!J%3i"Cm^^v%‰,yqg&HЛS Ծ~~"kVkzߋ|[(,4K x|Q<-LAZEQCg io+[>g ComcYYmh_L&+eApQg/>+:tjk!ͿgI%[DneMۚ5wN\9.e{5M=k{>N_{{=v{[gcٔ?%$S>R;9΅|<,+ u&$Ub2i./l+-3U`zKRmԶi&t$^(v +@\dOZf}+Y|>lj<%?'5]V]n, x3B%Sy`ӈGE~$ AlyPU88cHNs!U;&w잶I=u]B6Һi;;6i|??1Y} k1.#2 +vx‚I# $@>e<& ᲎MFux.5ۭ5[[lu +6<.4ި· g ~ }9O؃OCy+Ʒ7>"·j ;z2jfTZjqF1Fri;}/w7.Xv[':7\/1xC(͆u:VxGutY|-cUefi"I[iIuG^ WԭmDg[+]-c{R=E!zF'oKC 8>5;£MXȊ9-Ri"Q](jL$ԗK[WM]BEV6KJ~."-~~~_vW^~{=g|I# G;ozHX"UO|1Xo|cux{S~'՗O5˯/>oScL;i#2N],RJOF譾]BےIO{Z-bխcO2u$x&7q)9'O<0'\G [In=8$9&֫滠ߧtwwuu4W(3% Hn+y%uvKv>W5gZ~1R8#= z~[T¾ K +kZ톽F?h^a'H8&ݷF'*qŒF030@ iIE٧kvuBz;4?󽝟J/:F4s^XGqqzu׈;bCYle:}ƣ5ڴ{{裹NiPPTUuT  I<trUƣnQJ `H ?]uq+Wvp0I䵺eB@ݣܡ$C2@iV=+ٴ{%oy+Y˶ȭlPqqcd_sc$^$"ke'#%\o66|4k33ϬCs.n1,jș6GUKCRv*_YRM ui$/,H春0" +??iφ<%uOl4B]ƚ}isZX×1ʱAr$5v(fjr\͵&ncjoZ&Ugu־+?ox>#uGYkZԆ7B]^HlnLf/!hh\ZIBzG K|8ݍƩ=KtA{m+Iݝs\kXCcdM;^*^tcj?nΧsz$f5;F DFbX|yO/YAYjV FV$F+YFZO`v1{n%psI)ZMI]nDzANu4IB46DoR}|AXxw{ֆu]^OtdKmGHUi6Jqs?J^xZ:g=Cm2}I54Q\h <>y򼇋UFk~]t/@ZCi&oEYFJEٵ{G \5cF 7MrMCπu}7RQ{xT񖩪hx~XAaeigeh5xq">w%֤Mۯg5)i-diܖl# E)4j?;6=wԣl!H]TM_:,^XhҼ%uunI ] /T/xnUφF.u`x\Wݵ֝4RAf0DjU5Þw@|)kU&S\\3qq>ōxQᾛkx:Lznwkh廽NӒ ŃgS +"WͲFP[*:e%e!*}gmk⧌o_FS\6U˧eV^io-}$eiBd?H Dd*DmK2%[vԡZQjKDݽm71nIǖ3.% =-٥g֣Y/kgio$R, m)&HyLRi 3d,SdnHb#F&vl 'k;irڶ42jmkxd2MoV sSSN;8#;ZV6ĕ-ۭx,e81p&23d[ rx*6-Fm.)`WXBv9L)mkQ@4:ytf6eYbDe27k5JorA3\XYb9f"9f<'=8 0R՜bS Ռ]YQRN'K HBmŶ8Wn)RR\ kZW[(Rx.cG_2<5 KP:I+Q`cۧ~ݪ?ָ֬l~d P֓bm N@<+ 1 ؼII'XhNpS +1QIqZ4U8o0gϝ#y>]Eyi(Fy xp":"9Gr Lɾ( "Gjϲb42Aq,&KRd]!Yk8fK fm:KMLy{q h;#ܴDxJ6V=J)h8N ƫjh + + +6`BTҒIYFNmQr\;Y;;K4Zhm[Zu.m8a0\׃|r:⛔7֗}ydi%WȌ Dn?oKK?S55Xj, u]]^H>%k1}% 5ߘ"%hV;UdI]r<X'd?m eVok*yu;/K/?fA?f~f> +($(((?k>1N$r4._s M)J@vrz㺉o{[["ܬI\5[%FRY⍝/,cUs,4+OוKF긶ΕfJ + 9T(x/~@[KXyH5 bu":[]E7)VH&pUYVYN3XxFQ\ܥfݓ%%kɚNx^b1MBԣy)9M$ܚRm7>"|)_ jP!wa|o*Ȣ>G0Q2ylk]BAI]{fnA㌄2\L^U fE_]5km-VҬr񗹵`QGH$O#𮳣$@"i˱^+{Kx4Ӽ");ŸbNNaխڄcfԚ)E*2 +SX>vW58)B14t!%ܢfZ%Ŗm_%ӒeZ)!KT9Y@p<3H7}smNӥ"Th ^F{]bI7K">,s[:[BnͬOltuhdD|<=o{-gqli>$ŖgBu űRYn-G&iG7j;#Źq~iV2Qn<ײ_c_0}8)bA9Wc.1-S/7tmEṼ̳U+"bKY 3,=r;b_!&aLw'4T)(IQ; 45y+}.-F$[{LV> 1ZX$ԬQ ^x?M+L?BoG̼^2C#/i1yn>8I֥(I[iRRq_*YŤRu14$vZ+ISqiJь77C a?m eWK\NR YYq?ƟټϢB( +( +( +( +?Sᯍ|_U\FR0#s}$`3L,ҡxvKH +cxa#2T VM'gmm9QRv[&-~x$4mlV+A`$Pݣc"xmnKofwv'^\fHLDL^2H$w-f0w;8!7P$;as:o_;{MA,-K"򼟴urynUn!PW,*tePpM'5dh7uK ^ZXw9TR$JQg&x6fv(ah7ω,Q|*Su_{o"r2 $ F 4-;âx7YZGt%p5¼Q:"91*l"6~>|$4?Ū[}W\* qq%e F#DHU+薾SzʹRdmBy KKfCQ@6+bbX8֔^s8qn1e>I)Ji4xxL],:e +M(9; +JJKĽS, 4Hn.B dQ$2y9lR $G(Ktַ{׻EٜNEb@?%q/t'[[d滹V͛*Q3HiZ\wgc-JOu^\7<$ZGw+ma##.)5Y9ԍ4%R^5Iҋ\j* 2.NbnI.I6└WIE#WEU;osfeI-AB +,ƪ,84|Mo=BM;ibo# c[xԒ2IWx [ԥP^ u5đ1WiYfM#Kn˹ZMFy[hYg[ȉx%yc"P\(I%jRHFԔe(K$՚MrԬܛZx74[vR&mkrDiSԕ|M [is]hO+RM>⺚Gy@o*nR1AxLd֖rXInmBN[GVv.)TiHWQ "Wދanm-$kmcbn!IaC\iT[8wG4o^%H+tҤ7nVe6;!QV鼗/h{ZB8I9E4sj $bTҋ\SrrQ3J3)<Lu vOvSs2]fмO577ΒC)i.ЫϷ3 t#+o.[%v?#U'\$2cϭkŽk{QC{%@(]cFƍ~ǯ$ ;'𑰷ȕ]-ƞD!r\-ʰ*`Ā̲PΦi (E9N 씧zu+kIF5kSRNnYrɫr-%>Vԑok*GOYUK ;/K/?fA?f~f> +($( 3'ˍ60/$I$c0  GB b9om5QhOdM!py_(qw2UrrHT T +X߇R9ˏz)9&~+ܖ) sLRZEs1mܘKǏqd}̦9<ubku+Z%hf?g!y'"BPʍ$;ﭧOH47k:SBb1yp~<#n$F3 RF(Xշ<,*MqjKvid*NI_3¥ZU5Rj +nVfܓm6zz)?j:jw)4ڔ?-$G!h jNX1٭mFy/xN󕳷[˴FKKKh&IwoFP{$m9{bxE!ǬiDI<\g$~m£F@ +m>^Oq>T`1W2Ko{xfXM8d+~O֧R&up%98\Ri診wܒJ*ЎD/%FFri{DӦӂiEI&Oo eƍjjpO TW)w$W77٘mS$1BTBC||%=Kc隑&x +3αP"{46,=ռ/0`dF#s(Q dTբV?6cgͼol(dʼbI-챬e<.aS$W=ڼʢ +&R@QcxُeaqհxZqi)MIB]U()Ԓ\־gؼ E)8VVIO6Ҵm/i&4M494V=ZLx(#]Kn%qda8KM3ΫQbrQ)*R~Tڂ(%tf(Ke8)W7+O<2qp,iXC(I>ca + SgTI]5($E{iq= pQ)gfDɫy\ K!pVgO ̤Ywf  Y4Wf"ב }{U71F;eX2{8wFX 4RVqOފKEe)J#ʓpG|qٸu#J5N.1JRiTrQwN-$ [EiEأ;sC2iDse6c:7ocXK '$ӣf9[XmІ*C"Ls&Tw ^^^[N!#YbHУ1i)y-iir‰)QJ!m*%(ݙ⍌J6;9S,z8ܺ +u&ٹFJQ^N'(-9k*_\m6>FҔͭ9eeXok*GOYU.6/п՚՚i͛/*I6Sw]ATN[ +1[  A89沍{m}|>߀|U ^Ҭ/ox"kh.tW]åAi? ,I//!}j?n4Pi;o]/iC;? c۝KK%OiZit4z ϏѴ/V@׼7cGNk}J uyc֮d, 6) G*:K"|cQ/ yZq~> ww}Z9uY.ܣE$Riv[-c0H%:qz{>$[M$OVk2!-|5K'Ն"..iɨ\x5 Rխ-u]+S<֚C2J`aspT$|'ӕ5k{ɗ:n[+j޾^o~!9MǍ Nj{% R$Z\iqpR9H9 |j .}JuηkGU 7sgswe2\\[^6$/{>/x⏈Io++?Úui Ť]YjVQ}\=̑Alp$|Mx?L5ς|{:V]OMk݇7Ok QSlȪyauN5}u~V۴tRٽUvޚ~MޫxGNu iV^[;Kk/>TH$lڊHi;78^{|EԼS{4K[<;Mqs}k'D>-WRg/ɸKk;3g-l;&fq|B^ZxԖh Oeh-5>/ W^/Ӽ[&ɋpkv{[j @ s%뗸s:NJ7VI];-[6MeiY]h]wwKvnOO xG~G{Mѣ|xWc_ZmYZK@jQj o +ķe{=+Q4C⏇,mG㯃E%7~x'~8NQӍѮu*kZX.d׵;x1ޛ2ka3J\"h䠤i2oTVr!i8ŶԔ.kKSo O]F(no[bQUjK$1["*_ldEhb b+sV"^ RĎ'8唬n[Hh<mwKwK%"dEqQy-_LIs-1[~ ;YAbh. .e\@5̏rprYOp5B5% +'\e)&ڲ\j)&-G8{nZ1$(rPN4IGEѬCwuSu2X˩2wpMvo!o(ῃ[t A<<9m/ekq!Q+|4qĤEz.2JI-w]dUl=>kBMtbT}}ijnYsb:UhCO*ċ 7K mPąP;*{owuսpNlP'woIB*+|?, ?ܾe#n0ln.AQUUh|5';)-{wqlkYYyWo-Dl+ +̠aPmʝx?þ[֏eE{;^^C۴1]]gedZV̌+1@評z#tɵMosdejW%ehP=| Z+"{|sb>ZUZ[b?W_g~EVQ@Q@Q@Q@Q@Q@Q@Q@Q@Q@b+\QdS_c_Ꮻ~p55Zp55':%}QE`HQEQEQEQEQQzqy8'wxƫzGC sVx-J95`|jro5X;;=:s;+kVcgQ$؀F1FW~аHt9l ('zYzݭ4==Ihwk V6Α\_Kŏ\0M4lG RHgsd_iPo!xBC4˩U-\H* rM'7nkFm=ꉔ=GʹUkJ|;~hzޗ;#Y/'G "1e ,K :( |G|qjW+go[?ϱ%! u }xZRMMCY$r# +.uoUe+}᫝L6 u͔M-&F1KDa)Eͭj۲Wz_wkJ連/C(:v ?ĺal!ȭsGO>E?֬h?֬؟Ol_QE!EPEPEPEPOW~1S~iPISmw+ϊvܼhmiќ,IQ +Mt=GQn=:TՍ^'MT6Ȓ_-7u,=-τ>^|xY7u4 xxiqi)5[n&HΧQM1M_~4ӻm+;kV&qri&㢳uoM->V/:~me΁kTkڞOsn[x!٠n>~xg_]xef7G}.yu-\-r[ + +:l57H7G$|K~w-WQ_vϊCT|.絳p[\$җil +v*V?|~O1O|9r=92[] ֤ǤxJX,ekbә >]+Ox;liFO^x^]T>/ ,goR ۋf9vϏ#N}xO<xĚ]K)ZL{fK;[&@g +Z6|mgJխ+:vi:n[i/{5m&!СKWW&ѣ[VKebNWey쬒VKk[ՏJ-6Nݒgᯃt[~>8tMOXд|Ijm-u-zVf{4i[~ ֺՍzXɫ\}⦷{=Ԃ9Hг(m3Wu*!{Vwς 6:\sƵ4ڜ7Ir$GhHXd$Ǟ- hPaYʩ$ D6yTnxuFAxrZ6. NQӓKۛk94{PLɩ^w^/-|&4l|FۍSZv~$԰-mУ6h'{P\$p:?\u+}.ECBH2 @ N{(/D3: y|>ߋ5-WBOGbG]Lm*4}:XnGܥGOjT$vVM]_KwKR勔Fij}m±7!1F(aq,M<Iu2Mksz['>p3W&׵ݯK_*j)_?jV?ji4_e}QE`HQEQEQEQEҊ2GNO st8?S<'4P;(QEQEQE^AyRPT}? {<9crI8''v??1Yt^1H endstream endobj 5063 0 obj 12 endobj 5064 0 obj << /Length 5063 0 R >> stream + endstream endobj 5065 0 obj (蝵K\r) endobj 5066 0 obj 24808 endobj 5067 0 obj << /Type /ExtGState /SA false /OP false /op false /OPM 0 /BG2 /Default /UCR2 /Default /TR2 /Default /HT /Default /CA 1 /ca 1 /SMask /None /AIS false /BM /Normal /TK true >> endobj 5068 0 obj 90 endobj 5069 0 obj ("l[U) endobj 5070 0 obj << /Mask [ 1 1 ] /Type /XObject /Subtype /Image /Width 31 /Height 12 /BitsPerComponent 8 /ColorSpace 5055 0 R /Filter /FlateDecode /Length 5068 0 R /ID 5069 0 R >> stream +HP[!" 5ُ QK26DfTR ;IۯMC:2 SfKme~m`c endstream endobj 5071 0 obj (4.8D;o-) endobj 1 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1406 0 R /StructParents 22 /Annots 2 0 R /Contents 3 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 5061 0 R /T1_2 1067 0 R /T1_3 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 5071 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 2 0 obj [ 5026 0 R 5025 0 R 5024 0 R 5023 0 R 5022 0 R 5021 0 R 4997 0 R 4996 0 R 4995 0 R 4994 0 R 4989 0 R 4988 0 R 4987 0 R 4986 0 R 4985 0 R 4979 0 R 4975 0 R 4971 0 R 4970 0 R 4969 0 R 4968 0 R 4967 0 R ] endobj 3 0 obj << /Filter /FlateDecode /Length 4 0 R >> stream +Hmo6SܫVF|%E$MbfmzdmwMj$ދٹٻ/^]_}>|y ˜A۟mn |"}7>\o_>;Qyd_eWuVΖPgDaC1 [k"w䓇0}DƜCRxOϷ[U M|jV +Og*/+=#LVP>*%\tQmU> ;R[!1`r*'&Lo4?w7 YلfјxWCv*!]0MwWgH'c D:!]8M: 9E.c<  &NLbW<7 Gu(`!' cqV!H-W8K͐fj9 ;5]6l\T՗Ω±qS4RŒLɀk$B:=P˪\*`q`S" ,@ˉƢ HsO$ܨtT]YgP3ꐤnF -T+'D}e*|3wwbl!řq3Wu64\rF ̐/\z:mT3fJš'q,kP[TmTZ6꾐 fnoT Lq[u7^5-q~N:&Cp3iqⅨ_f(TPkˬHqdlq8bfSfHjd~q_3*`,&V2uR'yO1qkO 2R 3oIDGx8/-&-+ʌqE{A ]uvDž.7A8ct0UUm\KJ:|Ԡއj٭ض)xW:+6 ˳]7unG^T{ޘ9,ʌo |วW\pH_DݏFđLuOuPW:-*g3m`#q^H퉝ڃZОQ_ endstream endobj 4 0 obj 1407 endobj 5 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1406 0 R /StructParents 46 /Annots 6 0 R /Contents 7 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R /T1_3 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 9 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 6 0 obj [ 2179 0 R 2176 0 R 2175 0 R 2174 0 R 2173 0 R 2172 0 R 2171 0 R 2170 0 R 2169 0 R 2168 0 R 2161 0 R 2160 0 R 2157 0 R 2155 0 R 2153 0 R ] endobj 7 0 obj << /Filter /FlateDecode /Length 8 0 R >> stream +HWn8}WfI]@)lbȴD]RJߡn+(4s̙~=>|x9s~8.>A3PJȓ*{3KRY +*sx\]zI6H8w?xtOBfzxA¼pN7 7d Z4xF srJ%E+u~+.ӼCtC cQЀT$vu#Dq/Fﺶ/Y8}$p v#aN NrdMʖ)ځjsZ/ K]Ԇq;`F2Ʋ RkRYlrQ xΪ5wYkĊ>Cvd[CJ,M[4QDx1z7c[ u'uTg`*&)$墉IL r'9;!8"אA=Ky );^]JmrfJEfB2L2:N[n i#:Aڶ,DERb#J,@pH;5-PMՌK{fF wcGkuHlr*{4$!682ȭ! i3PI΢ɡNCm'm,ö\?f4B_i%A k|^/19&,$02ZQl(h;p8ތ_Ft$IB@Uض#M JP#R>65p]ek>-dYAvݬγR g62wg%W7\xpN/ 'D%ZdL.պM8I]괪`tm!mFiċЇyQj]#a|EpcЬ^u 'Gt](ydكCӣm*q3>%ҧQq!X;J޸?h孴"ml_#7W]}%wkݓaJrĎp'zo\ I.B!EXM|oЩQ.iYKH%7Y1] tW1MJ?la(=:IDk%eNj'>x`泶zp7ʇqlmEST])Y mL*[  xQPS7<M4,s G0y-ܢ쯚jTm44aS2֌gasDd{5wɤ&7/*[+U|S3"]2+(WqxB=E#ib@5N/_#&i+8 0#9de endstream endobj 8 0 obj 1481 endobj 9 0 obj (Z8f9B-) endobj 10 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1406 0 R /StructParents 62 /Annots 11 0 R /Contents 12 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 14 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 11 0 obj [ 2237 0 R 2234 0 R 2233 0 R 2232 0 R 2231 0 R 2230 0 R 2229 0 R 2222 0 R 2221 0 R 2220 0 R 2216 0 R 2214 0 R 2213 0 R 2210 0 R 2209 0 R 2208 0 R 2207 0 R 2206 0 R 2205 0 R 2204 0 R 2203 0 R 2202 0 R ] endobj 12 0 obj << /Filter /FlateDecode /Length 13 0 R >> stream +HWoF~G0ou+òRJMNC`}{]wvaaO6g!ef=o͍'$w> zBB +A@{ڃ7Sw/|\{~#*!˚w@Nz)H9p\OȽƹ(Ǜ;n`94piİOٷ 3Y_4w l8K zI=\JvBIF#8RD?Ր>s`CK)&9p`ޕ] 5¡l:ĻJ`h_9F+~(D'Wj;LSBh^3fwp`{>3.y7 Z5V~$y?^ yˑSWpx+xl&;*e{ʶkulZ>/eεW&Tq#9˕<p݅ ^΀P700&W .!o*lL{T~> h0_bB7˦|V Qg :] QԄ8hI#Duɪ0V,gYTFndȹ^ 0 n:ɚ+rպ?fX*{ԍ^T8CG{VV DEUDA(;;'bk4)ty v1>*VEwa~+pdyXHr4Li<(*IGԍs)Ά,3*DpLM,K0V2Á$n:gaZ%5A̕Vk)3+B]Q]`~ު +GK&|rFd€qx!z3,O/1M4urIs Lv,l`̈,k(]*q9U-35ġ0쨵jFϊG G P/w$l,2F1['.*{ekw%.[+i.DN^ۋbЇ>zsmʶ"U%-;>"Jc$q7+x(ʬxnr_(hc@Xٞ~ZH r|c3,RcW_HhmN#1ޚZP퉆Q ˾Ș& +ĊL.yXZkkш%ζL'Éx$Zi1, _w `I fډ# +H*OHPƌJ(<=ꭦ>dVAV 995ּ?Te%鵽8`4n%j<'RI%P )1&>9y!hu\sGA]H0J'q"m>(#~B3f,V }E+zp/~L-5Tt;ֱMD&8[eúӃ 5xM# 54ENdUG+ԛŊwB|a;Èɶz_FIz=kyG36aɶ~T&`ר endstream endobj 13 0 obj 2064 endobj 14 0 obj ('`笫10Y>_Z+) endobj 15 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1405 0 R /StructParents 85 /Annots 16 0 R /Contents 17 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 14 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 16 0 obj [ 2194 0 R ] endobj 17 0 obj << /Filter /FlateDecode /Length 18 0 R >> stream +H|_O0)cǃc'K B *XmB^ZC0;+ 4W|]a?gP888:./tp$І[ra!95P5kꝭ8DT^o y2ITk1V/Ճ8ɬхmH@b~*Դ3Œ"eUO ЉZ6h1_eFt'GmM~K-FX#xڐm'G!8P>K| ( +z("3FI{zqv#N51&8lE_ի|iיhæALmhv!i&Sx>rƩds.RjW?  endstream endobj 18 0 obj 381 endobj 19 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1405 0 R /StructParents 87 /Annots 20 0 R /Contents 21 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R /T1_3 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 23 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 20 0 obj [ 2295 0 R 2292 0 R 2290 0 R ] endobj 21 0 obj << /Filter /FlateDecode /Length 22 0 R >> stream +HWmS7~3m>q/  mH) ɇ^ϲ-J4xIճϾp| ''//ӳsszHj}y W=q@^ZǗd7|`P#{/f`Q쎞BHVR%YY~C9^鋯ϭwnm1:\Xgcx/-/c7[sAv%1KkEYTk{0F nh F`]I,_%vܠy-`rDznjQK3Y)XI1-h %۬)(n"6sa΀qPD^+ѯw:_AOseg7BVG@ 6,ɝtRD* c.n̅3"rc+j% +o$WŦ׆4g/t(1~H371t4@E֔/DTVh 7x%SrErzSĠxaI Gj8k:ȂVfo`21NGn),UY穘mٸ4ȧ Wm=v 情|}0S'ĕtk@7y4z5wdrws2x"avLRVkC-ȇ;Zz'!~>>ʇÞHF_xQEUvK}q|XMk< +kl*GMUq@)flrW谢ܓlZoAq'dXyV +;]n gӠsOm0/zv&8z0ieuʫW(,=7{&,k`8=5\fRe#:[6QfJ#J`AP>kokxy_d[RUKN8O/ 2ޑ+AfM21BĻqlS0Jt~ts6zmm+69Y* 8t .Qe6#>CS4a,Ԧ%SmAi:*2Ra[WI}'>.W=I.T<=&wakk+p.RUZwwQ@ܟIVi Bl*IahIxOQXQt+8&Pq4b<'djIpHc2Jm JR~O`ъz)b;c:] I_°0 cZ\^|'Q:[30  b?@}M\(0 z A]/^8 a } Omf1@% +AOp9Sr8 o +Gjz\Zv$=ةt~igD-=\6"W+Q! xuAk,+г US#Ҧ'7LٞZ#$ Ğ endstream endobj 22 0 obj 1508 endobj 23 0 obj (Xsvr\r#j) endobj 24 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1405 0 R /StructParents 91 /Annots 25 0 R /Contents 26 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 1068 0 R /T1_2 1069 0 R >> /XObject << /Im0 30 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 23 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 25 0 obj [ 2284 0 R ] endobj 26 0 obj << /Filter /FlateDecode /Length 27 0 R >> stream +HVr6}a>Xev2M:V$! II@(J]@ne%r]q/_@^]\{_;a~yO@XY Z=C9 ,O ʮe./Q<ŽV m(f(>,w5·6{](ð꟮s>X*(b%,gRe0VKDThzk*p}`-= 7iRsф L0gLɬLY)@\ι)NTR4`>JӮ$"K0!C<TSr&tԋd-v[gƫ'Z˔DMrœ)k̴\lqw%EHsh^:uZ-Ap׿JǤyx|˕|xZs"l9UO@ o|>=:D\ s%/$a"s裏1`٫1W>iJYY[V3T\0(aa#6aFL!Cmmj0{1rҶ}ًGRe :RWk Or9o") Y/cg">1υmeKLr2^QdTc )!Lq}"`f|\`q@-;+ґڇj7;bK&#>jL|Rcc֥°5VZq (ؑ +ā p$c_Sf2Ct(g>QD~?tD$C[ hMUtԑ] \777RZn4?ìsf>b .un~9ȹiQ FN+qM D7$0mB3-1@s<7s1LT,% 0b( Ff5BЊO>q])}dLW无/Qu=W=GG Eё-" IþR5Hi^ffVVrI pδ j#"9inn7o=4Uw(;N>^np%#b9p؆]sӴxFAXNS) N{fj́N'D9EےpK4b鵞`V|XpB[$S.%ޣ}'_rUc!.7f&nf.e:Ez,TʴjEYXӅH9*ж9+s]᳸s> stream +JFIF,,CCj" + }!1AQa"q2#BR$3br +%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz + w!1AQaq"2B #3Rbr +$4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?(4o+zٱY_5zƫvIY~#/|dt- z ,t*z$N@mwMԟ^t1jz~㫯z^ j+7VVqO%֬h'b$ٟ +.>$jjxTK_?gmO}ݟ O{o i\^Gm~iz埋}Fœ }1*ί拥k:}gg _?M/ iĿ`Nqi-5 +xj9/5j|۩vGd]UMi&չl>((((((((((((((uwieyuoi ZZ$SGopXZ{xa@KK4wU?_Gû_?W>?_ᖡ u | hٗ/?uk?O +j)o6՝%גn'ux)g.?#?P?M2#PxF<lœ6'dk} !^G| j0&|eiڮ6m߶텥&t-RԵ /5x[|=i|jouxĞ*-=|L3Tӵ][EmEյ[ KMZ}}j_3 k~0{ _)*ucM=í~q~ğk|t;A~+DG/|0>|gfx__w>kx'X|mi5&գҼCy_F~`?Rh$}@Q@Q@x;ǣIԾx:O:@<]M{~ +{]ߊ_'??ᾫ-g63𞗭&5|X!i9-a˛ݕ_VZ|o*/o;⦑Ox i"־,3|EE߈e4֖7>u>9x#$5i#о=/i vod$Ms)>JuVYiqiϧ|&eZUo֑-w}M +C:]oxoi +KNQ:. v_'6kF/#_ďRj˧~p&u|ZϤkZAaRmBӠԵ8\egk6ߕ]g&|e|xZj/o.Z^xm'B+KP=xc[5x7 Soho?Z{yY +xǞ;l|1hM]D5oj"->̹"w`+[࿏R/أ:־/ZNH+W:o?|ix~ይGTg=|35+\ \Ҭ.>Vx֑}$Z><N~^27iľ/F|3iVGe6ײ mu^ҫ}Kz6;oh<5 DI]Nax#eyM=?t}&ڿ*?E-~_O3v~'o}߈px\R4|B|l,~֦lLW?[u%?kڂ3?hA{57r*%s]qGCHËԝnۦ_TWVMo Ǿgi|Xᘴ&/Ø#_:gO(i>/ɤxR>%֑mg/1/M74H-l.>0~^06Lk|֍ajz^"3@4 ++Bq[s +_~ןO{ĉx B\,o=Ō]`WpHؔWS>-|E< ?>kûhWH?e٫oFhOڇC$`ӿ3mm}lJ?V|e?|!⫟Ohg޹?׃tJ_:eԟڞ#$~$Xdjl+3?(xď ?I׼YO<~;xg¾,#25+TN `,qdWAc*egiPl~ē\*XH!XH5wwP?B+ +⏉zƣğ uxy9.O٣-bƑä|#~K^4Q}\1?SZ=ڎkZfKmt{ng8`WDF`)E~[&o> O +'[GJſ?<]hMeijzxQỵdh7GſTτdO> ?'Jg(=&_;>va+*gGl¹~?O'@Q_'arM> ,|y3|pl+''Wc?|G/|:ޡm_'Ŗ 𗄼ghφWeÿ xAew@G4{Za +xZe֓?xǚͧD?e?-ޏ7Vodmli^YTWRـJ|RـJ|  +Foh}E~ǿR&~wC࠶ׅO ]|xegYLn/Xj~L е+mZz֭ˢoћ?'?GoJgqf+֊O,o*g+SO?$Yۖ~Pou|2xfs7/$Mo㯊>-@bo |" ,/ltχx?/5= :t?&q'?Td/ 5 g(E$w3'|?K /'w s߃/_SMk?1 Bwd[mgx?o'kQ]_QM' +t"y_/ogu/߶n}݅_kZ9dx{zWO_9 xG׋%/6 mA~~K~M?࠿i;Ggx!5 "uw?t+_x/DiZmyC4+*gA)Z+ ?_]|[ᯌ}_ Z7;?UeMVMg wP--KXh!kl0տo٧VseA>xĿ/)_>; χZ4B>FV/_Z{Ew8VƏxv?ޟx/xG1k>⸾"O;״υ^W;9STzঞ𷀿_P_^_|'xOFӼ9o [ß'txk^м?aZYZPAqF?G +l0~~|Q7K|.uuE> x~п|E$ZiOAijGuq $y@C=O><|cckB׵h=Y L5ivlIEq2DdXf%gߵw~ < Q_'a{?K='OFxEעn[QR 6?hC5xÿlZBucM=æ,੟>"sh_⇂eχe+uD3$g?(5+(<oJgqf+֊OQEW :ϟw_ /'σg"cc<]qRK'5 7Q>᳦i xsQK1=?|Me_k>5~S<-~uo6Z]*, 6koxW[)uk >-'>$<'¾Gm-/]_υz<OG<'XҡY(D7_Tx{[6XkvV~!u +2L><-5mmVl-/5fRWMs8ߪvk'G5 +>+xW:o(U ᕭ \{㷂SA_O>-{-N_ +E y-62h5 FH!&t='*cN05{+IjޗmA{QV ((((/\D-%/ y,tҵ[級'55lΛHR wjaAs_5? :&/z_1eWn?Ϳ;>|J.>:j6mEC_x? Kgsuk r=FNU#(ɴdַv}4{7muvwY2ʬcrА F1)`x%Y ]Eb +( +( +( +(8OYM_>!&0o> /Font << /T1_0 1069 0 R /T1_1 5056 0 R /T1_2 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 23 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 32 0 obj << /Filter /FlateDecode /Length 33 0 R >> stream +HVmo6. V,ۊ4'C $^CU DG\dR%ޯ%M^CBǻ{xLW-xp}}s;u:>(y +yp9/l*sPܹ p]oxq(q?e7۹ sՠFU;;cw:T*bR".4Ġx#q\H =paS3dBA*Pǂk&a..CL;i(O":I+8-.E!u:߮9\GFi: +\K(zEJmyx=6P̔J[X.xI)ɣ&m綩&timZ[\uq]8 ?#w3֊NZ֊9V$sR^K\nHR R *v1aDX}9'Y0a*6)ɔ,2rF0 +|Deʰ4hچk*Wxl;H:/$rg_ɮZj 45ˌcN:V`Uc65wKuk[ E%NXlYl?E-UG~4V0řH|RbARy +nNҲhc(abuۀY9(YD#׭{qAyƅXf@D +$-muōq=:_^P|fh&E=Qқ .SFgb`67+"- hsQׅE34V%> ƚWu=, endstream endobj 33 0 obj 1155 endobj 34 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1405 0 R /StructParents 94 /Annots 35 0 R /Contents 36 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 1068 0 R /T1_2 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 23 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 35 0 obj [ 2269 0 R ] endobj 36 0 obj << /Filter /FlateDecode /Length 37 0 R >> stream +H|UMs6sFao")Lfj9Ӧc7LeK6 (G H\{-4oߎo!wﮮ?QLylkP!YӃh[Fv`dtUD";:}Lse ]4, +* ҏ +j;Wac@kZ#begGpހe+.{~hE:.LbhB ey1m*4>񵒮:5bמ\77p:7mH"2X`.IK36? +W4į}FHK-k&Q;(i#\\+rh+tiZ|Wf'UpN= …і>`%_ ߀-]0_V=84Xiʨd).'y'~VGǍZx=t䖭n^`t#F + _~b9fUH:f9]ڏ> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 42 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 39 0 obj [ 2334 0 R 2331 0 R 2329 0 R 2327 0 R ] endobj 40 0 obj << /Filter /FlateDecode /Length 41 0 R >> stream +HWێ6}0oٶV7߀Ai[d4"u2mDE{do6@3g挮no_R@?kyF4GHݷTa5 +"78x:qPZzWe@/=Wx)aW]0Gy +4MR{tJ`NQĄ {?]{W7cXO»ZƋ4LMLh~2MiQzo*dyGx]./ejrUQ8Ǥ6v[{bۈ̫-)s_׹:B$I0 +֙E&:}$HfӛL q0S酳GZ4yDˑh9vMF2Ӗ ×cLN#CEITz'MՐVdM&yq<ē ..k O?'~n35.읤LV5;E:/BZn*a2ah&`E# rZҧ;QAhQZm)+G-M3@>S fq/#xUE@U +c*KQ;,j[iZx +Cdd$"j8{RxE";|$c qȧ+T4+|c-ea=򒮿K-MK JQ?އ`*>Jy;{~K1%|F~|ya8q\F@]z[4jL6M>mOFښRQYn@ϼJUS+Еó2En J?njko4G3+DhC=GC OE>{:x~Īħwd^A2#u!-3U}i+g_)Dj-@//bD(6"#rϻܽTUas#w$Ann7$s[aCo#ֹpc +n#.|=/69Zu s%JQdo3J4tA#TVyx J ȟ:IϖΒE? _B9 (7 C]IAkcq$('@q*rgzdo7?<Eh(? דm=RKWӇXFJnKF0 :.td\7"'QApqGLkCu;d-C+t7 UO~4Q4㎤gK瑴Ag4> Xd*4Q6]kTI<: Z44tT|_[ޱ֜7, $󁓻uw} ja^\(V[ AR0yQ<9ħWUfWSRdrilf0؈=IU[֮ kD ?SخO^yHAQZN|Pf +N1͠l#Ԃ nrժFhc7}!̮[>= ĺ܂xͰC+<]hha:TnOQZ^5wJ8Rn +9=9og ae:I˔E7Lێ*Mۆ[C#t`dgs|/ +S]I0ye) + +wRUΘo{DCR:zTmrWlzwAb"cTW̲(Bi(jB +nImrP[[RUbL4{#y 0oC endstream endobj 41 0 obj 1765 endobj 42 0 obj (Ys=I_jR2) endobj 43 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1415 0 R /StructParents 101 /Annots 44 0 R /Contents 45 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 1068 0 R /T1_2 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 42 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 44 0 obj [ 2325 0 R 2323 0 R 2321 0 R 2319 0 R ] endobj 45 0 obj << /Filter /FlateDecode /Length 46 0 R >> stream +HV]o6}p #ZXn#ЇihHCRqw)6D 4u?9PWǏ//{u%>H|{m,q9a5]ZH0-y;S}!l6aahGؔ@ 〄Y$h2w*a;%$B}hwE[GajT)~υAAqWaFjudpiFΤygOMTtA74LT~0QU u-) Iv AXq$CpE$ڨ"#6ǰV @B;[Fq:Yji儂\9ړA%}a0ErmK=f'zdpmbG;FP rRz [ 9gGwB'#p^R\S3YUks|ƨpTN ' c#D B+ى\▙[+&|m`D2E b (\k^=uRX3MuvU!E+&&gM]b TlNI~zRۼ㸢fڠW,;C 2v ۴σ*M"ɮ 03 ,Ԣz5/*,\כ& 9n 9&g iK2,3Ӳ\<BPpT+rQo QA5EdJ៯ȱio3cq: B?%~ K'͘ CFȘiC(^8&A Maie]ZҐ$ɎTkWI1'Oy@FV~Xa}uAo/?}um0}(o endstream endobj 46 0 obj 1156 endobj 47 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1415 0 R /StructParents 106 /Annots 48 0 R /Contents 49 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R /T1_3 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 51 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 48 0 obj [ 2428 0 R 2425 0 R 2421 0 R ] endobj 49 0 obj << /Filter /FlateDecode /Length 50 0 R >> stream +HUmsF;N`cnh1qt"'M߻wx[ݻg{vكNy] gg]fG,}>V˴@z,oKLKLHOj?\m?n`-G9t +\lle:“uWk#+h*&bZ3 X\'],|6Chz?/s j aAp Gt߈t"$a|74,)ePYJ~%-R"Ed<1Eڊ 13eeW鴰ݖa Flhi+`]= +cA0etaQxVU_SڈˌfO)"1l("r@VRW]<ilNզ#߰m[yx#Mc<*U. ٻ)Gj! EwlVm'+[n jpmkmzUHiMP?۠$c(*`,d{,pU#+(0Km5M?%L$TRݲcSrcƑ} 3* e7t" +kH >GeÙ=\ 'mk= G{Ă +L'xL3LiĝYMWw)0^Q*>-Cq4o@<{Po,WR A@9nSaÇF8ԺD1Q{N3dt:r UDšݦ`>dZ endstream endobj 50 0 obj 1013 endobj 51 0 obj (!ݾCp3?) endobj 52 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1415 0 R /StructParents 110 /Annots 53 0 R /Contents 54 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R /T1_1 5056 0 R /T1_2 5061 0 R /T1_3 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 51 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 53 0 obj [ 2415 0 R 2369 0 R ] endobj 54 0 obj << /Filter /FlateDecode /Length 55 0 R >> stream +HWnF}' @e1(N6nHE̠4 Qf(J~{ Q M$r.nlWWk0Y3gZ0-Dj{B,f&$4NWSm051\C y F ]Wl׃i0:(AC/o /WWxoyp=~DQ.M݂kM@FDV~Gѳxߎw3n]mIjC}۶R֡ j,RWϚ{35G + ӍȇD3MW}ok]&hH7]Rc،Wnh<4Y$!i& [g4]@/#2C.ܜiQ +9M h + X +֞%wۼ;$%]p.ϴ䜢jEp8H~9 +~ǯ>͍(LAɏ'}x* ! !B9+//V,  ^l;Սqttd $%<0cs`)Ʊ<3BR+&L:gdA %DHƅ)f*J9Y!) zFLd򱊦yZw#2?bIp2F}?\p*RZCN4K•y]Z\[w|p6&86}ݔkzqQ]cqYw :}¢%u\5G2- ɲ0 @ +B&o:j4Q ݅VyfZׂtz8Cu(Q>,YqwC6 OuHjsTN ?h{:18lֽ +,‡ ccSo1ujl Scc։}j+Nֶr,^$5KZW1Y!aYgjC* Yi!7}B9岂q:R4sX7_fK/ZTXʪc? 5@b'$a|Sw)$rzTHDØ~#}L-9dψBڟ$PP¥ WlR rA"lue#w9 ll,lTJ +^e}ؼPe#uO>*ϵK'5NCPԉ`+RB!a4wn{ z1EڀMPdIUV+| Ge7~o!COG:\aއZw^jpˠ֕iKMIa^e#vԋ2D5FM5C{TUd#6Q.D1HX 8QcũUYkK]ޓfԫUc5CTG'8gcAXuQ`ipAT_z1YlSNuRc*.0Rzu] <|#'<*)T6D,ӜJ)w_i(GxBzr/feRVQjB;fKR}ߗLR9o FRÚq,-rD RiF}kpDX1)/iS +Hɹozz@ɔXZ Z1zv#~xT. +gh 5p;:Ŵ +-ķf#uoX61I(ʃ3I*;g9QRR<<` wOY endstream endobj 55 0 obj 1745 endobj 56 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1415 0 R /StructParents 113 /Contents 57 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 1068 0 R /T1_2 1069 0 R >> /XObject << /Im0 61 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 51 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 57 0 obj << /Filter /FlateDecode /Length 58 0 R >> stream +HW]oF|oq&eI±S4@$J$u1W-UL:$Lّtc 046u6V5 X\t{ ;ۍ!;n8`&јIF%m?ѯ~wۤT=Pt u"1;Cl<p 5l "S8~y^’/n6p f3u2i0JלYU JJ y^F=%GW.Dl/%߭:G{XW ]?sLc͊jҗH9ZMˣ嚥'9SEF"oc^^Ve=ܧ}_,Y{uXO8 +7pcnG2ID)o[{qAv}?3\VJQҨwR)ftzjtdXL@FGG'J`QqCPs(HT|v"Z MBPŹF1Kx'ɔm %فVZ1̛{{yip{od*VbDWܐPs- ӔO^ )2qWvmϵ~tN.h<(DǍLǝX5W`rU^{(|k%n ymfvNX^DԵeQ#iir>a|n + +Sl9S(piv61rvUfbZ1bu/ ? UNFEL'lUK))\xĕ> stream +JFIF,,CC" + }!1AQa"q2#BR$3br +%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz + w!1AQaq"2B #3Rbr +$4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?(~ωO |&w6j[h V}piA7 +TA4WĚ~x(0xúO>|>2\ikkis- iEڎe_/,eH"ndD|ƋTew' D'o8K?]O"ÍP?O"Í("?.o[ i (g˰_zφ Zj53Zڴn/Ip|X?d~?7WG6GH,eux~P߉04? +Ai~ӥv5/WI"m-{˨o p47Qi-Ow 5?Z|CxGҼ} ^C`.,-6k]F+k+L43Xӵ>KOŏ( >%j/0xDŽk3FO6e6 :[#Oq2>S?l0&WxG@'~VWo"<76k#Kkge5B{!2|] D'o8K?]O"ÍgOWh߈ٟ߳? |2>;|>ӵ/-{-K Q^\߉:y40kZUW%6(? >|j]Q<G׉3extxG]jP~[O-_/㛘n[6^IcL&<>Ҿ_o%LF~'@ŏ G wj N]F?&]";վ|4է_jPAy 0|:էKwf}K-/-OkN+ +g]gԤ D'o8K?]O"ÍPŏ( >%j/~~8+džcZ_a?⶟O@ܾh~Ϭ4 `m"EXmӷ=/_c|b@xW7?$ >&jb߀&s5PZ%|}nWĞE=GX5+M;4?>_ W(|w +_|SDs_ksWG !tCxCG6~/mqmcb m<vD>&|Oƃ&SΝ Fw$ Rwjo4[hOSEo7;mV]w7,%KR9'?ŏxG +i> NF&]%;~|4+e :>˧EifKv.OhhK gԣ~n-JgĿਟ>|`|E!L/|@?h_>rjO?jjGkq? _Q@? G1I`,Z9'?eO~~ xx&\?/,ucOm>;~(} ˿J<,;c'Y+(c'Y(7,%KR?09'Y*'_߅5g/Zw;xO:ψzO:}گ.>\O;+wO%sjWP?O%sjW/'7"OQ?o[ j_~_˰_zωu wg53gu/nݯ1I`,Z? _Q@? \Nj<#D|q|Qg.? >|߲NY|_ieӢG~%jww_P?O%sjQ oDX?o7?K?}E~a|Xs|O__?TO 0x_ "k&^ > xwR🋴/9m5 '~յ X][͵tUhK gԯhK gԣ~n-Jz|Sߴco|]x㞟8W7:oٿz{ǻ[FREQA_QEQEQEQ^Aӟeūs /]S_xONBо|{^xV]3v~݇+y_DOS? NoT3ހ>NoT3޹ +&xQf~/[xOZ^ꚏSyo x^,$Þ >4vCs&3QHҀ~Q_go'?* +oGɞ=𷆼u_~4O4MK㫿 xN@_//:̶Vi5zW=ESD=E|+*gAW??Ud>,={]ռ o KѿSSQ_o<-ZxkŖ6_s'ƞbHndҼYj)P+y_DOS? NoT3ހ>8|YW<o^Yg|c%Þ🅼9\!/|C~h^lonY8wYh#үx;H}#K4^mTWMO[VVK{+{ˈm--!X෶6{`‘+3Yag>36.~_S__}zǗx_n[E֯ᆿ[ ; +xr]ޚ&a Msk4woE~".x;Q%)mǂa-.o4iߵ? hFu oFźԿhh?ّxR#L}n<3<5_e-O +P.+O0h&OҚWh4K{=o[Վ_>zvݏ?R2>l?8 Y Z|FO^?as׆EՄ/mmBQկϧ?l8$ouVO(|X?|X?O> Dw!χUu-k>>xC^ޥ>/״m3KKNk[yeT*xڅxo}3 |?/t=v:G=D}'𾷦\[ Jyn%CҼM-2xR?w- &kᏃ|Bri!|Hm帵M?ͪnk)'{63* mIiix̑q\O;-ip-*;ɴ*o_`YJlgo|`YJlgoHQ@9~`?MOh+}Ox{׼]{E+$?IX~燴;=k^׵Nx}M8-ිiHј|7Rdـ5? /FZ-xw~3_ i:w0ϟ$ |DѼյ:zZXUˏ٧L~7>|z ]7¯? %;ǟ7;@Ox?SL7u퍤(˫_x=6e'MO0Y}_'MO0Y}H?R?ROU˪w~kDoKT:' O]xH3źF_Я[]}j2~,?e}?/?_ W?7?WlJ8|9Y5+8|9Y5)Q@X?R0#Y5}_X?R0#Y5}@Q@9~`?MOh+}_9~`?MOh+}@<~џ$kKx~)}U/ +ׄ-#=|[:Z-m%Ι zeūKῇ^mt~g㻼3FMD/VvOhL3ui#FvtSa|I$|^Ot$_g4/\kCt^ɉF}NsʯwE$ ?5O_mQH?o +NƐ :R<8w-FőL^,([XTveP?GW7 +W_W?OoPc|u'go|/'6#[;'T+W?T<D(sLZOM>c8+ßuRW?T<D+>~R/~4+X?R0#Y5}__'"p W:,|S[⧂W.:ܖRXGsO=J¹~?O'@Q_¹~?O'G+*gGl|9~`?MOh+}׭h7:Fh&Q ]SK-ٕ}RCu eRRDe%A# W宋'H/hO_!>|+. -go^4E?׷o-@?s S ˍGO_5 $n / +JN-64waѴXa4e +zm~A~_Y_0?ߊ><}_??j +,ލj,?Pe*/חQR-R\S??`V` ?(jـkd)__!| O d Gk{X| A^ {q/I&?x2?M𾆞4N.,$J؋粒HҢx7LFRDxO_ ~Bu%?lO'>u5OxrF?;&'ãWFtx_vNIgGG 7|M~¥J~?tK3ƾ<x?Oe it†LNP?_q_V???&੟y+SW|4_ +iBx߶Cy~_^:.4+:?KcO/]K-ZvZ~_¹~?O'G+*gGlX?R0#Y5}__'"p W:,|S[⧂W.:ܖRXGsO=J¹~?O'@Q_¹~?O'G+*gGl|9~`?MOh+}__||E|_]/K+:x{-=xՍi~'~ZrmkmDKIiQEQEQEQEW?P? +O߳>2 ?Z| O~"3h&t: NJ x7P>"_ 5m/ư|@ׯ~+}~|owg<9:/AkZ>*;OobO# 7?w?hOj;ٗu[GOk(olnm ]Qxޣø>x+GSuj?1O?d߇?9qAL'k/+Y9Kq >xB]Wᧀ>2#_x7ÿ cP 鶚~jڭEqu.Fğ~?__?j=[߱wKzʸ״3γo[> aG+(oߴW;Z .|#>;|u_~|UwğaѼGx_Mݫ|AocKx?:Wğ~ßokɦ}5[O}|m%w |.+x_O_ ߇ֱxYM?I_5mVS|#wP|>|ǯ? | 7i/]w1!IC?ik xOO,|7ip]G7EQEQEQEQEQEQEQEQ__Q >8O].>x$(7ÿ< /_&_oZ7|Y~/3?:?8?<|XLCi>O,!ì_?O'ؿᐿf?o+7_iߛ>M۸ ~~>)?SdL<%|Oí/ZPkNy<'?ڏ<PH{O,!!?Mxh!}~:/{^.M;~n>uw +H9|mO2Y6j,M(~Q~ןWكm{#xC^мW/Í;M5%4}/[_[/rh^Y>W?|5螥,Z6N?'VWZj_ciu]^| s>$a&w4tF; F e{ ۝Mo::E-gNJ%_x> ~,6<%'.+/|rׯ{3\,g>M>(" Ǿw]O)?:_?xceOmi#!A [k/[鿜?SO$_/0x/?~k +<5 xN|)x_ t{H|)|_M^9"񕭵Ztzlih?GK?Fo;?~'?S|,c+H>-]cړ=\J|-/~K]_^׾&-GQgxW%-'K'm8|k ahPx6:q_<1qy4xyOO~:.O^Ę<3㯄ß?;3?>K4߇?)>)֣ +4Xx;=F3Ȫ=?j~?;=~{z6 xkNj^,e[BO><M4F6_5m'^`;o0]K,ZmC: gH gow4: gH gow4çOvs@Q_L&_wǿM'׎u|io~?x/ןM'׎5;I W!oTw_ WmK7?z=o=]i:k-쐵̖5+Em +'QE~p$x?ًg +zSCſĭo!:7{RӴd|A=|}o~̶H0@oAZ|BↃBկK,q}7JtH,aMLi#^Tk?ilx [Ÿ?gm7ž;w_/|\ _߄>_\i=&qkZ\ekd'#u;>|G[s',|[m|v? |DÏ.:[Jij|Hw+Zҵ8oGM; [8toYZi?l8$ou 俯vq5iqsjVv_W~?4^Y{x^fi`R:v*G_:ВE.AUJ#[?EռZ|/wRɨ&,k- )kN+ +g]gԯN+ +g]gԤ~_j_ǟ|'BfxKO:7|exYWOAsZM-J9 7!??qrkKc w/ ?>7i!+/Ï6 5;<K-vm}ҚuE~ cn += Ǻ$ X&'n,-FQеV8.zrc1 :-^?id"syk^!n,t]^/uش]'FӭcihZ~kv;oy>(,`?Gj,`?GjYV|w>hS#Ms{:դn|mNex3Ú揣˫xnZ[}3Zu=_NմѧVǗ,^}MN$[k* x60/>!/Ű|R/>3|_7𝥕K[ii˭i= :֣}TZ_+yßJgf֊WßJgf֊WԀ( ?(jـk ?(jـk+#N+ ?g]g+#N+ ?g]g++N+ +g]gԯN+ +g]gԠ +(ـ +(ـ(3jEX+3jEX+((+۟@ g'k/?3?./O xO߶(u +oO>6x n[^ww6?f:#Oq2??hD g+?hD g+>|]V o|QYlVNiw5Ս6GH,etd~?7W_Q@_?kJ{Jك_j,ı⟊ +|Y__G_~[][[ۘഹR#Oq2#Oq2??hD g+/ ]/?wOOكD+.Sg⟀_mxY +,i?ǦK:VVQAg5O"ÍO?f?[o Ïk߀A?|f-> 'M|9gejxN/S..?8g,Vx/' ߲m&⟆_<1z>>_NjtXujڴ>}.O"ÍGg0_fG$V_~ [~?~3Ϣ}X?lK&7Sk^.%C_,/K{E?I{-vZ\ʩ ? D'o8K?]}E| D'o8K?]O"ÍP/+^2x'ƟSW:_Ư^#O<'oSMc>x +=/xTtm;T|$W~%s'ƞ1ѥxndҼY)_|-Ɵ'= [jվu\iWt/gKK e[KcO/]K-ZvZzQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQE~-Qxsſ<)|Fw?S\6ZG6x :|'uj> ςCtm (߻k|BÏx?RϏ_Px[LC??C+g5|5OV]ItZoHk?QZ_/O-~>x㷎>*_xqzëG|U/XhŽEjV֖Զ #O߄_3|&n'<s k>)iZZ}nZ|Nr߅+ NkeCUEs ?nmj>8cgf7&"F{kOm?;q~eO):a-'Aq࿄ < jI<;?-s^ .Qݭ붿~Pz(((((((((((((((((((((((((( endstream endobj 62 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1427 0 R /StructParents 114 /Annots 63 0 R /Contents 64 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 51 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 63 0 obj [ 2362 0 R ] endobj 64 0 obj << /Filter /FlateDecode /Length 65 0 R >> stream +H|O0-84_B>XicĴfI a)CdǺ>wgg8/'DHXž86l> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 70 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 67 0 obj [ 2444 0 R 2441 0 R 2440 0 R 2439 0 R ] endobj 68 0 obj << /Filter /FlateDecode /Length 69 0 R >> stream +HWnF}'Nହ7^"@|iAG@ꢠT$.~H sfΜP>Y/|<[C +oߞ%ߒ?gA^2U5h$njs"R))s3RdU,λ䓉D7P% M#>ϿRXCrrXWgݶF}NtHrJJ-r"d)$LpCsr,9yO]5t&5tt,ߚ.ak)T,ay!!9,Kׯ^}۩vU^-b70X'G7Gv7=oZuBwg﫦>W+bi_?<;'RJXrIA94I8er-RT;}3B׺֐|/bOҧV}}bwU{eqāe92hiAhQ)JӭZPVV=QM> WPNIezx(k4zL|cWS&~ȈLy/ υD2s?*c̦wXf7$Hv(/ Ϙ=c_lj {2^ޛƀd!Տ6l`[7W8]կT;V + jנ->֏NbsRb^?2+H50".N//~r<0\]Mcr A-B5DE Rw}92`(n P!L6vJF9!:'T45#) aK>8*&fR̼ :=aænb(.ćq6É9Nz܀^+e))vQ(8zy]ף5xv&''#%Yi64e>{#Bav\͉Btڦ*=e].,R ѳ+]G492L6kǭl錢AfW lb˙WFvZy LOhvgj$d 7 =: Y6lae6Mww<5V7ʌNlvD4"Y2x׾6^Z> /Font << /T1_0 5056 0 R /T1_1 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 70 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 72 0 obj << /Filter /FlateDecode /Length 73 0 R >> stream +HdJ0E+HM0 8YVTn:4ւou=봮wlމϬ.%K(}at|;1Pj3y!VZs\2yL(`ΔT34I,K\$#mN:;̲{aqǂ2+. +[$يO=n9{C{ЗjS endstream endobj 73 0 obj 235 endobj 74 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1427 0 R /StructParents 122 /Annots 75 0 R /Contents 76 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R /T1_3 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 78 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 75 0 obj [ 2513 0 R 2510 0 R 2509 0 R 2507 0 R ] endobj 76 0 obj << /Filter /FlateDecode /Length 77 0 R >> stream +HWmo6n >i)kmV[ C,LJ$%{,')sWw.PL^~sЉ1%))%)̦qJOhĔ27?П?cSJ;†wǿ_6%u.pGy mR:gdN=QڦnE<܆߸sPHxϤw!gVJ-QZC]ن.,'p#6v)j '&A*s>3Pp ϸB=[(@+l=β9!{c]ZQ\ +'jݻF;H +UaZ?P;?SӇ*}D+镣ٷ=RH=;i, $B7aĶ'7r"WKf@ A;%G`KPCSHLmgI4= Fdh%(Ǔv46kHBkct}fEr\;uLDhl|mGf&EAcy1B0x">@0 ;m x x*f(be5v%QDˊ;h aN# +&8 3F0shp1t-9mZ("Zj߰jdP}5gG;żt +SPLdD[z.,Id;Lp:L۩/21[\"W% !uſ?7S_Z)(N?:sj$Kn) J$4|&v̱eNAO>0ц34@TH}6k5sOqBo ޿7Vƿ\TY̭@%CMGymqO#8Aq`)>=^ 9fnf{,MWM~#|_@^Q<j;'0C?A/0LՂwp٦U¯#Y#nX}IE hm`ir#XCV3o џFxuGa!u`=Q endstream endobj 77 0 obj 1635 endobj 78 0 obj (On\rpuFjv) endobj 79 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1427 0 R /StructParents 127 /Contents 80 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R /T1_1 5056 0 R /T1_2 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 78 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 80 0 obj << /Filter /FlateDecode /Length 81 0 R >> stream +HWoHR9Ԑ@m̫m**=rR]m`]profvӾkL{}v[˻OUzp0^a02<9$i̊Z-KnA 0;s{j%Y +5d 3 Ti8q3aԀ&hf8?ɢ3 +~ i,gӜ`B$_KSXpbX,U94`ĹfKX *V17y? /TP*b|*Ӛ^Q܎LwssugBr O}B ==zh%+^'5۳vo6IlTZze;-Ы:'jEdG"2JU7VNð|CGuQWxTr=D1=KPEoIdfjM\HIZ~#fÑiU%]\]}$~[hj >2n~ivNVP`>Lv-iks}}xAqz7{ᨰ +{0PmwUuhEAZjJd;?5B +J18hnDF4'͸&T2N|p<`xڮ

> /Font << /T1_0 5056 0 R /T1_1 1068 0 R /T1_2 1069 0 R /T1_3 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 78 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 83 0 obj [ 2489 0 R 2485 0 R 2483 0 R 2481 0 R ] endobj 84 0 obj << /Filter /FlateDecode /Length 85 0 R >> stream +HWaoH0ts `vSVV͵!am] q|f0v۱e̛7x;p͛wO { Ys@ufdBdB u>&0YhCax0InQ 2T}'E5O)bD2> 1%ЌxUP +1@t& |NU` JJ*{}X,NLY( +;6OWY˾Мug(!Kj6cMH VfUZ.6.z0x\2_m@t. + { o@ <)>>(Dit҇SEtt2 ]i1y"VMf fX̄IZ?E$rhָ ͊GNN^]JQdnFN\,*^WJ?eI6IBt^Yɣ#|퇇k~&$vp`@lu@Hv{Ci[U{Ol׮Y^`Hا*~cQЛowq?Alo/C+LWO@1Քռe&HlJ7`iNn>Dnp񻕹1gކcp pnnH +]{]Ɛ[.JG0V21`JJsI0ZCs¶g5zP9aw'$hw^x:v1& yWz +")|{2FǬC4 fqC{Ƃ'fe"FܪaҠ q'ˋTS ;lA1ZYCH L\odRGGT(bSQz15RWbccaM1-us.(cJH.ơJYtT*5¯(9}4@nDIJDΈ8 }@Xqs|ɄK q* g;J RRz EY5lӓP|5̲NoQB8uR*)!Uk`-țS9E~j?Ry0dDhP. BFb=>hI63a +nzs;l&0qCRQ>lMi^-lhd}[zk}tsٌs5} y$NcQ;=W:k0v3Nk^8NkgUdc72i0?l(:Xff3i'>5XtoE)~v{$ \yVWfƝR;?+$kF1(/llAeTK=m/ڪ:Q6_#e%dh_%@`1 = E^ ,- +f n!ˇmB.K +Hr~E~i] +5ldl?D6j-/3.DfPD 1W1hSe> &4N@d([-+l U8hb6 6o85/7Ca8#y endstream endobj 85 0 obj 1583 endobj 86 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1443 0 R /StructParents 133 /Annots 87 0 R /Contents 88 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 90 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 87 0 obj [ 2557 0 R 2554 0 R 2553 0 R 2552 0 R 2551 0 R 2550 0 R 2546 0 R ] endobj 88 0 obj << /Filter /FlateDecode /Length 89 0 R >> stream +HWYs6~þ0d&q]^x۲q:.D ~*\umh |džN.K^+978P}[O2N78Se)ZPKˋ"\G!?Y'hOjn̝<܀Envc?KUoDWhZjx:Ju eQUi#UN$::V8\e˒d? ^ݠbp=nFwozm]ד 7ղ225 n Uu+&#h8v\>OoyӰE_侚9.#'Gm Jm"JCaH.&j٦8<5"j{'YR'qXأ aNShp= bܧ>B>wTGđ@ H:,<zHȑ{pS1T>){`*M>\8`дHN㪣n؉ǯ\T cH|qja|+~]e*+Z}tjb`oڏV#yГʇS_Wx endstream endobj 89 0 obj 1516 endobj 90 0 obj (̵Ʃ#LxEe) endobj 91 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1443 0 R /StructParents 141 /Annots 92 0 R /Contents 93 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R /T1_3 1070 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 90 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 92 0 obj [ 2544 0 R 2542 0 R 2541 0 R ] endobj 93 0 obj << /Filter /FlateDecode /Length 94 0 R >> stream +HVr6}aߤtdobI'q<3qMCթ!=n:y @ݳx˗7o)W޼z)8in- KE'YVjd{{9; F܃ { +SP>楤\>v//U]\z PvL( Lh<<9kS6ipb'=^!Z89K1,04vs:g> < 111I}5!륮,S4Z̥0HUCRtavAU~O"&g>Y`_{$9}38P 0;sB4V>. }ۙ`Cz{ə~ .|cIxε5gu_⸳glآ1j24SW#Z?UGl"Q/Tj&zEp_u/j8'g]GȊ)l$O'?O8Nd8/CX"L :0೜9~Aѷ:h@O43]MQ*lw2<%gIR^xut5t]S7uK44zڇRovacDloV{A¸mk6բNʥﴔwqf撩K;ݧM +S*T)b8h[kÍӶU{/il^?ѝ4ؼ"B&؅R-WY=1jOeN ?3 +ur+ݳQ4uMNQmSӰ0 +p#oʄ~QO.rt endstream endobj 94 0 obj 1238 endobj 95 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1443 0 R /StructParents 145 /Contents 96 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 98 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 96 0 obj << /Filter /FlateDecode /Length 97 0 R >> stream +HlSko@_1Ml6i!ԪJqT9ap6mi=cr33{ ړ;nʰ)::PnBfg6T@C?8c%"*qmiÁ;7-w]\ߴWp#61%E +6pz>)\m:ܻ Sʏ"!L|%n&= feT P$EB:`~g %yEi΅dz1HY([Q/Encҫ`hՏzhFZI(]+x=A(QfK@cqmg`ıGz"Wm?K r ڨ6AE%+h)T靿//вt-JlP*U|jD񼘾Wo[NJlN@6'}=TŜ*W? +4rNki|ŅdɊ_г-3> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 103 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 100 0 obj [ 2654 0 R ] endobj 101 0 obj << /Filter /FlateDecode /Length 102 0 R >> stream +HVmoF.@a/v +YjEqk}FEVuI.ɕ\jw)쒔ˋ -<3<3s}O[?ܽ}3&x^SZNIQo)7ŜfZ}>j_  hJ5{|?'g.FIEέi1Vt2siOcax$:ܭ:LU0u0VxY:\ Hi,\oa*Oivp#+TAb<#J5swgZKݺs->i9ip1jXA(mqҬUN A)V,H$GR)fR\;bpmJ^ka}ÜBΌuz;|_1)b/ +|jnFn S{Kee)ifqYMՓN1gwr5^e1xGďMsH҇0n;BC&l6O}+)V̪mIylL#%2dxb44vv9;PT ٞn֥+\?ϕd|ǺvOQ"RA+"d3[ ܂$ +k +)e97i;^ܩ4|r l@6 eEԑ4'X$ ᡨY?sz`ZǴ>1sfD iF1>轻]Y~wjƅ7,vŮ݉6CL`ՠk^0?ΘiC<2C7^ :-c9;=ot4Ql endstream endobj 102 0 obj 1743 endobj 103 0 obj (9w7`5kJ$) endobj 104 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1449 0 R /StructParents 148 /Annots 105 0 R /Contents 106 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1068 0 R /T1_1 5056 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 103 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 105 0 obj [ 2639 0 R 2637 0 R 2629 0 R ] endobj 106 0 obj << /Filter /FlateDecode /Length 107 0 R >> stream +HWas۸}s#3%vzqtI/QD"! I(iE} EډL۷o~W/hHq7I|LtïTȳ!%~=}3U[}i3LKgrw1=RLE{*lB''|4i;|RϞL?˂8,8kiK_藫*)Эv;Zf*j"fm +TI$[Tbve)5ItQ:98:&WN)3k/2kS*rUbUEW՛צXak$Qz7&m)N2F LNqM*FQrFT+*-eXjG^ttS +%YSRR. 7믜֌ڭA-h.Bb%4mK]r}I %m 5>!(-,BYm])̍xp6=,f9xK 0V[`\|d|>;zyp9=$Spa:9ip"éE͹ͪ,y8lV>iHkN--sSpe{} *)6KL6 1\2z?Ytt;֔++Dd^Vh+,tHslLfVjJV-PXb& fp}1_]i**LmA%-J"L)LBThCMpP`PTdK?9S{ +2DP_NZ8HfCQU>/A`@#U`7z˲um$M~<ŝ3.2N- `j<髢dX|ƾL؟ދOs5FzF0<[w#&d|؏XOqGFmǼA=(>N;ۨ:Sã +O"_ms4L?3M&4M{k͞PM)e14PiPre%9m.k2D +γjk"䮥>k@m~H 6Z0 ߑ^@`IK6hrvZ_d`mɯ6n!&-8%-ҋ/A0PW[ƆG!F72ڧ=FQ#e M(۰c>1a`Qy\ + ѮJd>6'ʠENSבp,Q?i<78sR͍(ǀj=~PG  a\};n<~jDu&Öu0,kpnW,5[QPv(_fr$p4$;1ײ8CeĽD e-9nB1+gBk< HQ +aoWے%u /ڄ]jAx|ұ$oppu_*N+p\lyE]YywUk#7)VeKfOL9O`]0+֙vY1-tgy 5Ob/Uڭ1Eе/T,P&;0㟛c>kXDL|;Klngc[Z?"LGf$2Kt~O +H @3 n˳j-œETnc}H؀cHta@\ xXu8V%rTä,U9nޠ:i8ZLtpwr\IsrE=\teH@ŧ4Cvl.~*ʽTIa[A-Bw*Ugtrsꫜ endstream endobj 107 0 obj 2388 endobj 108 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1449 0 R /StructParents 152 /Annots 109 0 R /Contents 110 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 1068 0 R /T1_2 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 103 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 109 0 obj [ 2625 0 R ] endobj 110 0 obj << /Filter /FlateDecode /Length 111 0 R >> stream +HWko6.'vI~KS MÂn~A(D$lI +h}s.{7{wq#x0 恚  "ßح̤93Ǡa\=a:hNnv:0ʝ&O!-2|3ўbYd mTa\ݐEc'=16X,s rYhʍ=&0NGߝsw\l3 +:ܠ +0҉r#Qa$e`0Ppo$L`K6gp|xqL|ɳ #QƆ04S,8lWS)ʒ qTG(Lż0Ajef󷝪A&MeCu^l00kiK:yyp*yȜ%4]leg +xn^|w'<(6prĵAJ^5)WErǡ{*^﵋ͩߦU$tʐOJqj%;h\m endstream endobj 111 0 obj 1461 endobj 112 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1449 0 R /StructParents 154 /Contents 113 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 1068 0 R /T1_2 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 103 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 113 0 obj << /Filter /FlateDecode /Length 114 0 R >> stream +HVs8~LmI4I{3(3}(0 V%*ɡd ثv]?>~x?{ =oP|~"P z2hOAa0tEFp=`"Y*+bsrQejJ R) BBf`,9.R] +`, bŎ}β6Ttz +M&kzbb A/ :\l|:̺=?Skrc+ex??|- @\%|IUd\v?>?l%5HxIy!^Ax3/6u=x2d +h[}-h kMkiDK $[k׭6H;äB3ͦՙ\k"ϹP`6Y:Frat&- 06<1t_ +\ +j<4d97y.׮֔7ͺ~)M/Vkyq&]RDJ'̸N mt)DH3S$>?WYWm%)pinaTTY@Ō1B#]sULj,g23i&~]Wjx|[ z%qՀƫBe4傩 q v ߿a(C/~j`=[~#)^]I)iPMQ%Zօ:Ey9qh;9,{!}UhQ,h!cJGQ +N9.i %.,?dYj4ߓ&v S,5wQZL& ߴk>f!#O39N.B-Ҳn=)'bQp`ejcLR)f<6~R6I3{0tW(͆A7n4uiNΨLLR_Km\֕ +Ǝ2jh7 +-^n8H>ɼtqƑM!xVnjO0; J% x4\)FTi.hiicFt$I뀱SKA3dјܚl*ϳ +SSNDttE)WREYLJ{}s;zJj^u&5혳q|~o`gk7h⦥$/ڸΨ5!᷷PL:9\B9>$%bR> /Font << /T1_0 1069 0 R /T1_1 5056 0 R /T1_2 1068 0 R /T1_3 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 103 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 116 0 obj [ 2611 0 R 2610 0 R 2609 0 R 2605 0 R 2604 0 R 2601 0 R ] endobj 117 0 obj << /Filter /FlateDecode /Length 118 0 R >> stream +HWnF}'r,ѼK pn" aPo]U3+)P!3̜]_}.[xnr{ys}3|\c$>?ܬ9 SņO"Z 1+o0 #fV($=y IVƽr%}_ xmb 9 \ۃ~b󸇻[GLwүĠ-~w.8UkA\B602yܫty$Lr~F\njXWmiܺ4uvDGc7ٝXt!?|ݢz5Z9us\gdG# p4rñTOqte.+w:?oumq< A <{=9;[_ p/Ti{6su\Y a0{FCC;!\ZF-NR,ᩲ%{s)f|"O#9;P(M.@8,y%KM*EhӹE y?. \,*7"jB W +Fs܇R!ZO%>?I]!+M+t!DMg{ZK zLl>gևe> =}֣p̗v餮5aӝ,OL5jsaCOQ-N8*e0`BYGW&-&B#J9'ǰYQaEZ"tءxȗkFe!8saJODxq[7 FRc*+J_,D"TcԖ [ح9~A"/+r9/l4x,n +SGٌ[r>niJ5k()KT} +#Í%IV}2E}M>1ZRU0*t@XBWXv!ۂ*3nq%JWM6`>a3{HCX}b+@2T!M;VLG)67K/ + aӭǥIͺ[P"ڱ{Ԑ섣m/7h̀\0E] <OB*n]n::⋟A +ܡo^ڥS_mQ;:E{x#a# =֒Ą#GG\[I 1l0&>T 5'YZܓ6M)))78NhSǐadH)GQo+H4?O\ endstream endobj 118 0 obj 1436 endobj 119 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1449 0 R /StructParents 162 /Annots 120 0 R /Contents 121 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 123 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 120 0 obj [ 2693 0 R 2690 0 R 2689 0 R 2688 0 R 2687 0 R 2686 0 R ] endobj 121 0 obj << /Filter /FlateDecode /Length 122 0 R >> stream +HWrF}gVI1^DJVrbˑ6Z?!$0 lk<L_N>8<~Ic˗Wc\ÈΖY +܍ɓh6قf|pz.4ET^Ž{C98S~+s.f%E)\۫밋1lcHnpv͂p:ils:N|qF|pre~n7%}?ADuUǥ6`_]}?815;\}fnF]1`>.a0ΐ~>ǽh}L8l?~Ds4x0yL7lS.zÎͬf)h"a0 Z,Of 1x4 Vіc@i2 &8?Ζ`q4U}ٷbۅ3kL +L߈v\0H[rDd2 fi_EP/́T>g`Yqջ5lchkxҗ=Vh-֚jUt+ zҹZ :j-捛Z2b5"J.'(;Wц7*o{BTlxLv4 M`T%`3,KفE hya%93TtlЦCL1_rWKH獩yVb+;;X73;V\"%ڰB{͂\Ħ*z3 KF$*XCEcL GשJΨT%  $3`9c@eOk S1%_(>K9_4r@LpMAq7R`s.G=2SyerP +ҡJ}ɛ7!apDA(j"uj0dJv,ňJ970ReaC>…_B3"E_{kp z>41wkBkU>!zh S6O6%ޞCvt "pP=pDJF؁޻sS@JoD= ,w~ie: ѻBbXYLreIȥrDɌ 6}syF!ŋӆ}zzMxL /zTm2D +ZJ +'onZv2[<W fH ,-;)}-`&_4 ݀$xBHCii^n:b]g~HZO_OV0a7a ;r;'Hs6TjW&'ur "]X PT͓!ZaH,;tr +~̤[T‰B +Ҩ2e\ 5ȽH!,Ť`ʍz|O,;,>N6aR E | C%%m[H"kEs> 6X 9' \o4p%_ o9<l`ߴ +跺$E@72$ѠNhlIoyol“Y%47^J(39mVy))kܣ)8(i;L5muS"϶\CeW?4:҂XJpAGw_d~z([Vޗ <5btMn/N}3s&f9󾝌hƬrk/e8meZdX@iM07~PvTk/aoB}]z HE CSFZ +k'fXlC@mxF4U $ʱA^v ̝ XnG)d"ɺq[gͬ{|qEQ@K~Cۃ]~2Q4 }{'#+WF8cw-eM endstream endobj 122 0 obj 2136 endobj 123 0 obj (n. o8p-c\\) endobj 124 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1455 0 R /StructParents 169 /Contents 125 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1068 0 R /T1_1 5056 0 R /T1_2 5058 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 123 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 125 0 obj << /Filter /FlateDecode /Length 126 0 R >> stream +HWo.@|kS,Gp&u3PQ,!1ewVy}R#MÖEΛ7o>H?/vq>OVkzjMgN; _ქOܘh5ۖ9y;ffZM9C Y?G'`jzE7ٵ/:.X"۹ik_XM͝騢m3!3֛n3/)0"\VLk]WXlz@?k= 5.ޕA +]WX#0u=Kwgpk"dFjfn*鎋vur1my3v Ќ䲔> 5K/O3)CF%NN8oVryH%p%X6 +K}fv||ύčQޓ򮟖Ph6yMz?TZO&-3"B|(PkjS8D?4}o]l@^[4`@ZDEYw@]Q=^q˛kn-ȨΈU + mqDW.ΠU@ʳov[[s ]A3#) $h A8h- s51|iVZ2d$50Pn&")<Z1ֶ#SH俙W\, Mn ΄𻖒&*k%6L,(RMjnnͱ G~Iykj> +G Zא[nyޣgim+NddkRxvXM!If7Ԃ&R=EřTMN rC0`;H%m[aG$+&VZDй3zSMGQ)Aր@F֯Ŗ3c@(K~NQx?#@ +Eq<1Che1G6$e7s=WnI ko-+[ :MaTEXIzLBF"q3Vu˦gz>Q:67V0GO2`&ڮ6@KD gI~)CH$iPELM9~.# +TSJ!$ 5)LKEĆ3\1'G%mz{}tz $fR>B3Q:;:^rGqi;M-L"K,M$Z + 9Ejo7 Bf;&3~Džq3)0«!!{7"/BIKvw?C!.K8֥"Q3*'#8][Cish* DϹ5 r! \;/ptlamzt5 BKx* hBH]{YҰµabOuX5h69O2M_m,c$|ҨBAAo)mvo{pyo`DetuEloi2Ha&VGN(^uX-IwrA&? )-1ν|L556aqQ7K 5D3\TQ|j +NE"I!ށq0 %L)NMmO>q0teJ(=)_=OͻMs]~Y}\E㆝ $yS/m0~wیRÉ{ CwT(qk2q∛"0;,uSC'N bQD? TWN3ZoJxW0ED)x?0hs[7c^ƎzIҲ3m3:xR5C@e;\NTAo7dZ\j-^`yuN +0KpB endstream endobj 126 0 obj 2490 endobj 127 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1455 0 R /StructParents 170 /Contents 128 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 1068 0 R /T1_2 5058 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 123 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 128 0 obj << /Filter /FlateDecode /Length 129 0 R >> stream +HW]o8}7pߚvl'H6)&h xC˔F"Usd$-s\ѯx~yACwo!>Fc:ޗ_wC9>KZySMJ܌3d=o24͏^SZ5bIU׿FCjUM$Jh ]f _T*,^):Z:al`kRdB{^|EdL7WdV|4΢M-K18UV:,^ǧڻM1P" w_&9w&mM^H jK)m9VOƦWF\T IMu}WJ^z2BD~J"]_q^$8QLam8M& +E2EB׋^XxDv{UU0F/cv6֤Yd* +GKbxJZȿJWn3'Tc=z ay4]-m,dE{fOM"ŬKmFm0 &Yvcd_n4$G8ӓ8b 8S0)ơY&d?Vq`I٬kLX*jS.d@]ºE +;l`=L'a:`:M&Y3v8NNN^UW+ KDpZ/q4;I1z>BY1\-n22aStMQq pKW;vn}Oi&yߥ +(orLbY?#߁PcI %a0NI{#Y{ +Xj(uN=6,c duH7 e0Nc5y}N2?2%G2~ޖ+T&-:yv#p(~KvdWڲai{͑P{ M-3|v e|ה2Y-Y}/}վEF檥2s l5NcWC2AOޭ#}'h/AWX1||bFctQubGSx>]q:Pcs'd?/XxfP5H^bw h4hR'SӀ3"]*_ ȕtEJP N@Y/)4KMBdvhqt|q$ 1ykc16sx}t[uQ3lkvUӣ cd5:JF3ǣEؚ*&~hR5V ܾjmS]9^ +Kok.(X P,CƜ{85:R;Yu*s~y0x+7Z`LAD͝BdDI(Jx[9+ 8p֚˥i= + ;i]2\ Wt:?=, +(3QXEAh9pe{(`7v|#ql~4 t-Al_V 0bi6:r]E<'?xO_> /Font << /T1_0 1068 0 R /T1_1 5056 0 R /T1_2 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 123 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 131 0 obj << /Filter /FlateDecode /Length 132 0 R >> stream +HlT[o6~p"vlE\,hXiL +IYGYf/-|75%U%X͗Yߐ%dXH`%QʚY]YPJ& +9'x6_R^G/d;}OW WL=Iy=RZǤ FCdD4,iJ7FhrK-c +$f_G +n+zt0\=L$L-$I=Y(x&8 {E=K88 +2RƀЏtN-(*b5k"5ATY 3-(<+Le< mW-ۖIֵ^(G_4pQ-v W:^q`5@-@ör&Or5S%lم{wt:@IɈO1}i/%]V; +o"a:N!$oa'ANK) Х +GmCJ;tNjk+JF,/'9΁7֬abg"k3* =T7Yc/px} E%5DϏdXwJE"iտޯ-T?bU"l?" X4;4w[+W"BSu \dZ CkybwXмbѠ&1}૥;}/gYE.,ol6cYYeVUy˶8)ol'}zD>WCf!>]EgOc4=$<)KH8-1gY1"D2miP\.s5;(Jcn%A1wl\'R6;g@%llN_ ++$?k<> endstream endobj 132 0 obj 961 endobj 133 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1455 0 R /StructParents 172 /Annots 134 0 R /Contents 135 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 137 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 134 0 obj [ 2718 0 R 2715 0 R 2714 0 R 2713 0 R 2712 0 R 2711 0 R ] endobj 135 0 obj << /Filter /FlateDecode /Length 136 0 R >> stream +HWrF}g Eʖebz}*?, 03tR{}P }9}trM?t&ϷwF&^Ncx?s]h1PZ.7ymJ~Ņp п=Ftj_:Sڙͮh1x2%;tq8H~t]naǛ(^DW 3\ϗt5E6go.r6~|(ٺ(_;Z^MLn~={ʒ~~N:W>s˴s$:UƥGO|=\:WO4W঻ h܋'U nMRhzNO_hr-2OoYh늼25UmIb29{zc>|ub4LWvd]_7 "N UbnJT'^GU%sv̇"GXN{bGGS9A6ozdJUTXʿVD8XSpk.[o)шZNDÓ#ほmWl8ڻ}]h#B9r[dם絶S ctuj!O=% uɖ/d)o*j2+9`^?j a)TAEz߉sqP+'zbw,Unxԇp661 +`YP@cnR>`&k_GtsoM5JL]ԸBΊS7>-jd0źhQv^9>Qy+C@ H+JMėd%ZbhiK& +rܶ[GkSy'Is`t{Rq;.+Ͻ Ckz ].n~8 >s/4pm잃' qjH2)pd40wP؂eP@x ɮGl۱8NG +=X'S (SG\ݣgfRΔUz,sŔ &HzǨ7z|DTIA $baz81M2k): +!Ѥ Nbh=l0<֩jtbuX +9}ްlR{Ї|cL'ߟ:mөu!aC!PĶEgj~)ѳa$|B.ZX$T~=3U qJ:eLp7Q_[:: z4D.#k,o!~}c~vmQFЌ1WlJ(N'-f!Sfw4ӉU#A ɿr$S=i ļ \d"eIB*e:4(4F9":4C + SiC2X2|(>w&;iٰ ɰC}a {V%mal+&e;_!萌+f5i2'Y v7us|hꀅ搗YtcZ[Fp݋Ha5Ɏ8%75Z|P ){aY[tÐ,j'KiMsY`^fVZ.- +_b" +- Chi/hO >p!V>~:Z=f&)LSZȪ@16.8D[=>OAc&l* ]ǽZK[v,hL1 Oz?#xvLЭ:iO085*yeD{U/J>+0 endstream endobj 136 0 obj 2337 endobj 137 0 obj (9Ct) endobj 138 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1455 0 R /StructParents 179 /Contents 139 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 1068 0 R /T1_2 5058 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 137 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 139 0 obj << /Filter /FlateDecode /Length 140 0 R >> stream +HW]sH}wCLc烐djHL,Eˋ6mJqK,̯soK 8R~{/|}w_n'MjyΏU%a'6;vySRM\=L^>,PKM`'z('[]3TΙTnuZQ'~t? +Tjlɋz)mҙTU;UD/#p3y +U5h#TSNw=`-G]MzVQj d*w?Og}2FI}F~Gr|F.c:wU2ZMiJ[r[Kk֞jJ"ݡF Zj8X9OuW-õD\ݒ*_#X{=69zLǿțR[ژt3nҹ6UFuu'.WS9sPkLjNb. +դ3rA&֛FL]krmLKdg⍿LWSG Kmd +IJ8=2X c޹P4Z^W[<"@(ut%'H " .c&@S5a8Xg~EZ}=WaBNׅgx7aaѱ]vh5C +"Y|">?K:}r10%gđ+u@Gx%N?A+5j]C*$\}}=yyКe5\, '^.> 6җ@f B1YMdpGY%P %Hd2;Qv_XMAx5!/ {NMH 6vjwKd8x҈T92eYcpƕ{l'LW/mIm'%u֑#t#y5-%PFCxx}cyyٓ3p'H Ay/|w:''PwؒgBBN6I^M?(v| *#p 6a8Av74j{ٻw_1 t1KY+%(j?zCKg+>x>UoSd?xq:?;;_kxqQD,\`]3QhkƒnhdjZ0c1a! ѹЫy(d]TuZe05q3t'KŒQku"Ij'r>/|Y/KM5/`OgNSe8-Ex ;M" +O NcEL 5HPPX౦PG+G\3?&g7> _wƎÒIDYۜE Hb돠6$k8Þ{%iܢ`GaMP4ZQip#:G#S>Ax'dݭEJ "?|QX\W1- Zvcv`MЄd j =ncEr(8qhZ[2swҳ/Z*+Bޑj7TFiTa*/~D|= g /3Zte#k-/pfK0`o y_׹zy}'t1>Qўwm٣-]FGN5VI.Uli_ d$i#)pgwװlӁk!?):QqᇠNNO0D#/8n X" 3&mv"K'݆7\0"ΕWQ]/q vk5@?M ֱ6ndbT5G#Ǐ|yv>rFq*$nGcq-}KkM0]ޒӿmUU)J: lbPuBTIԫ (> /Font << /T1_0 5056 0 R /T1_1 1068 0 R /T1_2 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 137 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 142 0 obj << /Filter /FlateDecode /Length 143 0 R >> stream +HWko6n/I;yN.):@.z%Dj=R8bI}{/o/><+.w}ayr7 &] +-&ZUN7*8 '/'/L, l.b!䴉umA)~(bg~jDN-4+JX<8QQcKiml JA[3iv,ɩ2mrlҭ|Lk!]%>{K#JdIgʭzcD5ױPl)&FI\%G_ONm)rÙм)Ȁm/X*޴2~ fjCtjTS= t*4[=^ptX)?"Yld{d3X6[Ui#Q>mQNlZ湍&PZeQ]eߍ~u:TbGBVYR +\*#*IQ:̠HC!jT\Yl`[5::kl] T/(-yR`$?h׶D4zSk&H#8l\tDW#8UI#*y֗$}e@ܥk@;Vӡ#}Nn6xթ"NF|U}=l$Ψm)jzv>wfߋʶTqǧ6O&MT+AIHiWB d5Ň+t56N6 Pڄ} FT q&:4ҩ2)?!2ZR +ۈN֟2n9yar'YO=^vrG7 f!>o ?T (R%M=Oljy u5" ~Ba͘H9rƢYd +%ܑi74a;$Oo' a)L +4 XJkQ2hߗ9nwf㥳2[:>T3s#6D}+4rT{KEG4 +yXbPX xpCĚi< S%9sY"x,ē4n{2a NMw_n\zuH(DG Q\O=q<&6>6 "EI_#bbZJN +dt&[I@H]ҡ3"'pxInpꡉ~5e`5=ݣL"7]5m23e[`TDR/;-!.0KTk'|f 3bN5޾p?pMiA1>+݈-dakCEsPb<G U=43n+P0FC% 51 HTYZWx,l֒^IF|F1;1SH[ERn6gT鑣t,>_{R=_̀V-53}P䔅F*d#7܄ +qw{=-ֶ!A.S&d[`Z>N ,l"J^o~-nCx}$l<KʡJbIF l#baP|]e֠$5ІzK%ZUbvȭJɭ&R3qC%#Ñ^ᆤWݝX\β-6t2Ś]vw5Ok΢t~_ED2u2-&kgY&~7$"X%T[#5 Iȷt_^KL7$β}R>rG: N +-P1C54a_-ͪAKSa7'amZQ|el6zbjD!1mt$|e/;M2(t䳥Q`U:Y{$S4Z|8۫)[@H낮D B'  r1Ewd!^>Sh`9V8 8ku"'<;J?<{^z*A-!9Ol ޗaG&0㛒ix>:_')'2 t|~~0Y/q'vU?F%Hí&(cL6/Suџp]ήP+5SՃmw4Xͯ=hps޻Si-*FN!b)Uίok8>2Ģح(SXSrX*p4%m endstream endobj 143 0 obj 2589 endobj 144 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1471 0 R /StructParents 181 /Contents 145 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 147 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 145 0 obj << /Filter /FlateDecode /Length 146 0 R >> stream +HTaO0iM m6)VMCci&^u] +@8Uk{:y 8؆:dAŴZ<<͕ȸVA 8Z˃`h%p;CYv~>^('kh{o3ƥFY"9|zl#8)@ ` YF]AH^Ӧ,K"1Rd}YO3M9uYb\ư@S睐, 8:S=y3mnjWѪ"!C~)ߤD|2͇jbހD^#zmzPԫK<'?H9ڌ8b q|'lZ: X́W9;5S~Xmj82rẤ~W +Y0As8dK:iq^*N#Ru|g;ݮYO̚ e*}bXbp1j:bLS08gf`M3{[ţV*x^g)UJ7뙒O&8 ?ʅ endstream endobj 146 0 obj 682 endobj 147 0 obj (2%CjKwQxk) endobj 148 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1471 0 R /StructParents 182 /Contents 149 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 151 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 149 0 obj << /Filter /FlateDecode /Length 150 0 R >> stream +HUMO@[R!;PhVE2&^;kJk;vl΅;ۙI0^^bE(?791} 8I̩ *Ҷ_`3E៳sx:=?W&"1Ov5q "!7V+ w> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 151 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 153 0 obj << /Filter /FlateDecode /Length 154 0 R >> stream +HtAk@W HbvcM$<,xY(]I|I{Rҹaf^> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 158 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 156 0 obj << /Filter /FlateDecode /Length 157 0 R >> stream +HUn8|0mqk]4lEB)D)$ݮ[{HINЗM̙ҽ+.oعw4? q8B2S®!cp8, 4yK1-yɝ3y} EΠ̢~;؃9^㼘K'~k`0n20sxT32J W,z9&eep.*t3dd څ*_N`tkDr s ,xș$*Ayƿ1I b F7w܆D:a+exV,#aD G$)9m.5_s94q4XZc\iwhJ\du #bY}g\lp䴡y- 7UA[ݒt$i3S{}3&G"SqpO?6.daVqQBM2;Z5(pc:2y Vaٽ%y4J΄ⱰmBKQ;ʱ ͐ +q#*X-A9wG8%|t7CaXXmR EɈ !]*Ul h.HgRP,2~l9`"̊Ѯ.Y7;#(ƭ_q/^Ѓ&~эJqW1$ӯrWi:eTB;" /W;JSYYz1k}Q)4> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 158 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 160 0 obj << /Filter /FlateDecode /Length 161 0 R >> stream +HQo0-;* +n&HkR{购H{Dan}1YRJ_wp?t^//b ߉c:(N Ako!*ج6JyD J !Ԝ1LLύif;l(+ vVg CI=A<`g!(`=+B/f~V^懫w7W=;! ϡV-wqnW iT<:UFVfpPBV ɣS^**!*N#Uv ~)W<`S^vO^qlD1+y]ی "ux]l3*'-Z9o}3)s}R|s)6wRnQdVVzPrˀ\^/' R@ endstream endobj 161 0 obj 473 endobj 162 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1492 0 R /StructParents 186 /Annots 163 0 R /Contents 164 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 1068 0 R /T1_2 5056 0 R /T1_3 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 166 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 163 0 obj [ 2741 0 R 2732 0 R ] endobj 164 0 obj << /Filter /FlateDecode /Length 165 0 R >> stream +HWn8}mKQh"^bX Z-6TRe%V<$9s9O.ۓ̻\$O &JH;8W-op {@+| -fwt&J!YEdH1 #x5Ncb ,N<(a0:8d4üH3VTtϼ54O@#֒TkB,}q ~F-X者.upFIQ8p*ŲW1r\C.F42QլJ!n-'ƁijS-E 䫠eJ +nݔ·BY  gg>_Aoj +"IU/g6mC O.Aq#P(D=/M4D uAAӬ )y㞾.YU+Zlv0eSqƿkOgD6n$Z 5nQ*J9*vdp vC΄kT77&#H?:'@&"/+ЅK81sPH45@8Jt𔔄gt ׮z[7ؽ\Sl!rDV`-ϐ2_7Z!Ar$Al:(u5HDJшh +l)ܼP8o D\cÊ{J ]g_7 $^p)ژ"2k0RTcq 2̯)M#uMުr1P`oh(/|{8Rn%E.P C/`VUYN:IAzJ1 (F< +w>?1HT$ϙy^"nmO9`lqiYoH)|+ZMv'kNF-YHgBg`;۷OOVx\36a2}vT2 k]1b-p)2Tجkq޹|e61i#q\7b(n+w?'<؝ؓe];o#VrU{s5֌>\w;[Rҍ gr-Va5^@ÙC5Pۋ7̽z2~ t{!GA2;cũ*/%h%yws(O7лd`^/Zb6Sc[gҠ"?a27 (zLӮ> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R /T1_3 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 171 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 168 0 obj [ 2772 0 R 2769 0 R 2768 0 R 2767 0 R 2761 0 R ] endobj 169 0 obj << /Filter /FlateDecode /Length 170 0 R >> stream +HWao8. a%ݺ$˒}X,pIwPWZflm$Q%_oHIHHpfޛ7;ۻ/ܼy'aD,"-?~ +O "~MbSew}W^ym!}'іoK@+?B4wy +R6:H8Mi( +b_oac`=kf]/i;784q2Mi^zWT6 CB?{jq5WڲpB.]}jEY՚>H xc_:w~:;BW2xıFzt/T֖jL#KCV$A[FAjRmC(.EӰg*KQ [R#4Hf}slFFn(ԸϺzi'iIN49Fa:I`gQ]\6o6ϧ:>ÅCr>Ig7LJo8 3nE9djG#N^È;F?tڙ?';P_?gdf#AM_ c6n@3h(oP8KC1T&g:b/MIIXyW`KwuU%W>#ZgKK2i5$аl# }o7QJC7#[^IcKV +гƧhzCP+{-pr%WHTRjzЪlHm+hKs@jbEVtys  "2-aMA4#nr$|r+K@[;!/&n_t.^8ا5 R39  HK+#53~䨷()$7HVE%>RhrR])]+-,S,Żsm6-Wm]\42)n>ػ~0xtK3YCmFڑEUo݈0bǫd-xs؄+ ҃3eGBop@ \u68۷eM64*mFsrf7Ffq +5*zl(V j۽:*PAj>hծ7V%nq\Zlae# _k fqlsKY ($#!x x?]Scq!!faJ`V=JYs\c+rӸp~ʧQh*%—)1^B!oK( 5fJ + M~hP[jxLBh- sRokP|fP-yD>}3} 7B}6sOVGǫV Bn昂Gm? yb2I߈ +#$ 4 bwRI%jf~bAC;OJQI> /Font << /T1_0 1069 0 R /T1_1 5056 0 R /T1_2 1068 0 R /T1_3 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 171 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 173 0 obj [ 2757 0 R ] endobj 174 0 obj << /Filter /FlateDecode /Length 175 0 R >> stream +HTko0ni|Fi N <ԇjfe1Gpc`]hFB8{<^>}ub-CA X*c:ߋ,2r!zyk9FdWQ{:-m)U!%bHeFEVFiQGGORs5p[PP]ڠs79)f[}l~*-sS T}T̵loqw{pknv3z_Nnw#w)3x%\#}-;s-CB{$ mf>ApagpMT]Fs#^Q Qٱc* | ++yW6i,O_TxC uGтZH^(剐X=(2FVFUDì$1V엹F /m(Cë H.vB&ku|:%̒RjlUoY%oNۮzleOucïO"TŕHQ8=\fDz!glD)!O~qG8Z|#aLul endstream endobj 175 0 obj 706 endobj 176 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1492 0 R /StructParents 197 /Annots 177 0 R /Contents 178 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 180 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 177 0 obj [ 2781 0 R 2778 0 R ] endobj 178 0 obj << /Filter /FlateDecode /Length 179 0 R >> stream +Htn0EY*Bhu# (Rt},3sGt nnn'c0C. JE.]!$gd4LZ_f7AdPUfUkt9M(,@ ?٘#YObJrQ9tEs!DO0 ykZXM 3T@:!{Tm\U^ondu.Ufnyޥ;S pA0(Ӑ1pPZ,Pm'q|ܪp;czs,te?A*@7KLMxNxy u* +P ]&I=,V+kXȪ_]dMEf3vkTC`87tc\u+t?Y?c*] !*cFErma)$r}8WDx5|/Qj} P>d2!j9L$?<şY</-f endstream endobj 179 0 obj 564 endobj 180 0 obj (pA\)c!MS) endobj 181 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1498 0 R /StructParents 200 /Annots 182 0 R /Contents 183 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 185 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 182 0 obj [ 3036 0 R 3033 0 R 3032 0 R 3031 0 R 3030 0 R 3029 0 R 3028 0 R 3022 0 R 3021 0 R 3020 0 R 3019 0 R 3018 0 R 3017 0 R 3010 0 R 3009 0 R 3006 0 R 3004 0 R 3003 0 R 3000 0 R 2999 0 R 2998 0 R 2997 0 R ] endobj 183 0 obj << /Filter /FlateDecode /Length 184 0 R >> stream +HW]s8|W^ݲ궶ʱI=o<. IX$x5Hbf\ rg0ח.K~υϡ(?0BKbC }#$>ТLEEVJnSՕVk͋Bkr%+͕ۛ1xs1'񕨅&TyB"2Y;YJE,jz' 6lxFJq[fjg8Vwݣ*k.4UZ&;ݛYEU98L2QdIxwp%+ <̚ή)K@{,ؖ,x*!KM&'ٴôO=Eޖ7}3\'CJ?QI eyg}:b4 ' XD! ?tQ>ZkGجUB.sU"Ϗ'8G>,`#l"ȉ]6=}ULUfO Ԣ6S9ԋ U0dh}O<эC}'aEȁB'dl8us=7ZCR7|: ;7 y6Zq(}Ϥ(COjI%{rtGW4n.3zGh^Av$4Okûj2pѶQo6}5/&/D*R8F |d6xgY*g zU( &3>*MrqjnJ3Sh#ۣ.)O7f 2_ [?J˗~@5 #1*̬ Zj _aoa鄏x'uOY$h8{4ECgeQ/N=D\@Td)L&{0noe:=2?:<-XkQ +s\Vq's`6eIK(}cb3< P uov޴_%Iy5 +j\eY)|Ls8%|`QNfe amYT7Ŕ可ln癶{.gsA_C{*V+oYCNGgKid~hNfGԉm4<yJP +Bo&F|E%ڦ.<=d- m!NЦz/d55ݔRLz-􁬰? N'8p1rz{Ϫ8dyo5o{˗OTt[MZ7;Z=[iKӕҋ62rcv; -VڏzNL +LzvW6Lȅ_hعʛ$em@QJ}{+/D' Z=`h"ڳt—tC#=7`ͶS:Ϟͦ`iA-C\(R3B7PCXsDiu@4 +\UZLLfԒZZF'ZiJK,VG*PWh2h{XnhV f^jX*xIab6@C愀;]K2TVՆ lQ$:N@ +yo/56ɕX9i8-`GW)C+\Mz OVz'`䭤7"mM,ݜ9;!QR}Tջ}|'d՗KxR1# ,[֪ V` + ^j"2n_Ll|CM/Ƕea|ǃv(窛SNš3ibOfU`gveF.u̝-azPNMN1p3kl,G}ۅЈM 553E1 ?ˆw&xs + 'WխDx48hE^je[Cchլ7rδ$tXe83Ueu\F4Zd0rxԄx4t"{3-|4a33;HIz.*+ AkDY%4cNi', *V3s(Qz{BJG^khV  xY5q܏Y`űb61mz. $ ɄFٞ{p2{3U=Ldc6;Z<鞲r1h,跂 MWv`g>d^D endstream endobj 184 0 obj 2465 endobj 185 0 obj (нIh\(-i!գ) endobj 186 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1498 0 R /StructParents 223 /Annots 187 0 R /Contents 188 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 5058 0 R /T1_2 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 185 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 187 0 obj [ 2992 0 R 2991 0 R 2990 0 R 2986 0 R 2985 0 R 2984 0 R 2983 0 R 2982 0 R 2981 0 R 2980 0 R 2979 0 R 2978 0 R 2977 0 R 2967 0 R 2966 0 R 2963 0 R 2962 0 R 2961 0 R 2960 0 R 2959 0 R 2953 0 R 2952 0 R 2951 0 R 2950 0 R 2945 0 R 2943 0 R 2942 0 R 2939 0 R 2938 0 R 2935 0 R 2934 0 R 2931 0 R 2930 0 R ] endobj 188 0 obj << /Filter /FlateDecode /Length 189 0 R >> stream +HWis*|Fs`.gk]3㵸vT"A\;da. m]EC6_w~}Ad_O/]쯙qI䳯=s7xĶF86ċo'Mdv'wUɾH,ۧ;%Veeֆ; E` ;a`eL=E'h@FeG,ELr!s[򚗩 wl01&W尺}r}H $4:1Fƣ!c(%YpP,sUO5Ƽ9zb1%0ā-"їHs;t{<\?0v%LhD@kuBvB,0lmI_Qzpc4@:1M֕E.15S葲*&mB,~!x}u#Pۼ9*- lK^@tClsq|z:2+΄?b~-Y /5P3prutO(lp`G?Gn˥$B~S*~8O +Tݾ% ^C?lm2X -@^<0 +#z &ʐZarT^kAg?_.!Hd@b:P^"2U"Ǐy8O{sq׳@s#<@Ӻsg__aW\2=+&9G"nbl,%-@@Rր&XgE=юrm~O.w*/{oUd.ym|dB1+zBѾ`i͝T`mRp~K06r2fttG'LVω( >&хr߆$._̎:SYB%[xa[bA4z\=J `բ7q\!Ky) $'KY Y +]?iϾ.bV5[lIز6)ftyf +Wb/ ߅<%jKP4("٠4 ޖgٷ{C B/IicXJQb#F5xy-k_j>1=kd8jOւD|/9ǚ&iIdv%i텝#d{EW5Vu#AzTC!)WLT%,iLg^µx1b0B{dGbzQ endstream endobj 189 0 obj 2866 endobj 190 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1498 0 R /StructParents 257 /Annots 191 0 R /Contents 192 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 1068 0 R /T1_2 5058 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 185 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 191 0 obj [ 2927 0 R 2926 0 R 2925 0 R 2922 0 R 2921 0 R 2920 0 R 2919 0 R 2918 0 R 2917 0 R 2911 0 R 2910 0 R 2909 0 R 2908 0 R 2907 0 R 2906 0 R 2901 0 R 2900 0 R 2899 0 R 2898 0 R 2894 0 R 2893 0 R 2892 0 R 2891 0 R 2890 0 R 2885 0 R 2884 0 R 2883 0 R 2882 0 R 2881 0 R 2875 0 R 2874 0 R 2871 0 R 2870 0 R ] endobj 192 0 obj << /Filter /FlateDecode /Length 193 0 R >> stream +HWon)*0JmYm*qՕ^^0bpH{f00nLL?T'r{9'WWdӟ8}zly),3YrzWr%x&P^( s. hG,3/:Y|wTTJJ¢2/~H<\ Mghr1:yxiʓ -omul[.nޏlkl{!=c_4Eز0Ո1r(n@V w!-ȧ+qf m^ˆy6b0]%h_γd@K~[<+Eқ<{nO\۶#])8#+ӌ5e_rȱ&󋳛Co06VZ#J8qծ20S@g4y@Ry.)UI~Z/ + 0TVj,8lt[;k N:ZB߫AG:LBx8.>ۣAcܖJ,iz\쿶puY/8nԖ5{9 dtqD`h2+- p.i.-EAQ(1oO{`-c#*3;TBPLKC߶^}/{.b6\vGCۇ_՘3|MgtI V?XEmLp`ZRŸU[h6\TW6ǯ-kcV0neI\b-yϐUKʬqWA/ + "-F.dkMV6PC7+S`jR2W"|\J5SK-8إ# Ļktl@6,\-y.7/P <~;zHo"ViO`=lS2T^Ü̋vkAOD6 +7U]ĕ ZHГv]wz_.`z*s#7E56' :j3n46 #8+^T`[X zWx;1G0LL'\@EaDiV]mjiC_hX5&cÈuG} Jj.2JUǝR_9|%=B]`7ec]A\(c1^LaB?{,Qn,X rg;=7mRlu|贻S#s^~.čHY{T61)D -?)Vb]#{/y\5y1DͥbXɶ#Yg`h2( +HESG%U*FNh:4@sm>(mӄ;&'ߴTVaD` +cpc$؋p R&TxN`EH60hIɥ6t0K%'te_k>:PPk\!>+Q(RtU.Jr*u\lȼ"nɫO@Aw+8ϕA;74zHoWe|u5ME/prqKy& Q|w֥ +I*$ԡԉ!I*&E;c;jTw_w?s"0/BbOk+:h;o!j"{[axäΣiAv.> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R /T1_3 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 185 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 195 0 obj [ 2867 0 R 2866 0 R 2865 0 R 2861 0 R 2860 0 R 2857 0 R 2856 0 R 2853 0 R 2851 0 R 2850 0 R 2849 0 R 2848 0 R 2847 0 R 2842 0 R 2841 0 R 2840 0 R 2839 0 R 2838 0 R 2837 0 R ] endobj 196 0 obj << /Filter /FlateDecode /Length 197 0 R >> stream +HWn}'7{v6X,mF V n-k4)kn^5#:!)V:uŁ~Yw`?5LY6 B w%gJ_ +漒i25>,Xm ߵr +;,~e/Ttp61LNGLX+&`(OL?!7,jQf<5Ѓu TcUR7ʖLFli`Y1 &b ml[Oc,EdE?+Đ%/BTt%F)p'qBG) J-w'Sڣ.*F2C30%GP5k-Y4 3q `TI*+1i bY<<*D<ɔ\}ZtB!&[C ئ+X#v8o$W> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 5061 0 R /T1_3 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 202 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 199 0 obj [ 3103 0 R 3100 0 R 3099 0 R 3096 0 R 3095 0 R 3092 0 R 3091 0 R 3088 0 R 3087 0 R 3084 0 R 3083 0 R 3080 0 R 3079 0 R 3076 0 R 3075 0 R ] endobj 200 0 obj << /Filter /FlateDecode /Length 201 0 R >> stream +HWko6.`~LH=@5,XۇȢFRw)[ĉ !ҹ{txy^zBx 4\! Mb`YIB .>oBTc|(pk*.[Te Z, a!R[]p)=ǰgWEpqˀ&$bSbF4` k٬[%a4X/#Baq}jf"bOyBtOh#JHL1\#4HihޘkєRLпxp66?2L-wka,e- \6BN]s aͷ:#۵h`%.uZujei!ZR7d]KA6Cm҃)XLVcJ4֜CTBcȰoTjH |Іfg,8q.RkW[i"*F|78=tx>C78 c|uc7Vh]@-_!0]c;񺾃p]Z)03 [(ZZ`l/Q[K~UzJpRӂC>*UAݕ78EVy [vGl&n%)JfUYzD\Qgl7%f54D[pIR$M6 RdMn3{PЈe)luȏXCti~G-4I`z^<ЈRk~$(g4% q(r}RΨS)_Z6-W%2܄Zm>rJqDQTYF }LoϜhخa|H}E1ZջЈsҌyR#' &Mi:L NK4b8yF#AQN|DKC{N.eATd뗒2g( sSf씹L\t'+ ͔Q obW58?IRМM=Ј*-h-0^b߷88v?-Sk!\KP08^KbMU)GJ3R7,cޣV8zTJ^41z‚hi^8x?T:O=J0fJE4=1ΈBm4&yLtgqժv5nuսHW +NN6sDE8zRTj?ʝ1Z;^6Â#Z<`Q @6Clʃro4nX9@|e' b2?IJhb~>-P1u Cxh8Ħ,9XiTXFXТŏ8g׈1^㢜an~z$x{y<GvTgkۥaeds@)ȅQ4IKЃq@8)9txkz>Cӌ2&7S%`}CF￑K۵Tحm<̹ 4|B +;YYY:D8v dܤ? _! endstream endobj 201 0 obj 1740 endobj 202 0 obj ({&ḵeoH:) endobj 203 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1506 0 R /StructParents 327 /Annots 204 0 R /Contents 205 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 5061 0 R /T1_2 5058 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 202 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 204 0 obj [ 3072 0 R 3071 0 R 3068 0 R 3067 0 R 3064 0 R 3063 0 R 3062 0 R 3058 0 R ] endobj 205 0 obj << /Filter /FlateDecode /Length 206 0 R >> stream +HW[o6~p"Rt`E4m ֵ.Zm6T%ZLw.zϟ_ܾ^x!dE:=ά zO J +s^UCAz~)dIEA:TW >Ey]:nW`qY1a{{ .|@`5TVz sXO}˺mN:qp;|C N^,/u4t85rĭwH۪4Ew&/aЗ։wוK2ZrkŅqŵ _H nVy'eZAgvzC+T[@A뤫C4P"Mrh-w֭ޯ7z +Sd!F˩{)*jX:-R 3AQۃs6@$lQ m+1%,Iu\=Іo,(Lb-QT^tٯȮ7OeaY!gF۔ѴK'Q9`K3)4z$GMqIwdKPtrK*?W\E{,t XS\ŷ:dhtZyo1?x;`a(q~%IEYal†3Ȓ;wR/HQX#,t \ +Bvܖ׶0}zIgypVlD$kYCĎVYkUCԥc(aҔ$00 +m,{:*/f,7& '0wTT Pn(t#4Xt/Հg#նK xu[=X^Bk^š+XRHP,(5I&qxBŅ77?\1,+;5N~Qz +I7 +t\:Ip{3+&r(uRLC] S6›5i_qjzH`P3S׈ +=jTv+8O ?b=Т{Eqkm{ڵΞ/8N^l^8o(y@= O1v22^VL]I(E g]{ICcѥ(˽/ǰE#ٻޤWIM5 ޣ!FI/M*N 8`NgG^CJpT|C#RKƟ/ endstream endobj 206 0 obj 1378 endobj 207 0 obj << /Type /Page /Parent 1506 0 R /Resources 208 0 R /Contents 209 0 R /MediaBox [ 0 0 612 792 ] /ID 210 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 208 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1071 0 R >> >> endobj 209 0 obj << /Length 292 /Filter /FlateDecode >> stream +H\KO M%iM)ZcR&߹\y?r X?mp 0 MО&;c_yVn..G +W% 9@Si+896*HbK唂Q[7,*/}TM,D.f@ٖ8:-r ιgW;O]k0i8֍sRlpY%3vpcnp7Tԛ ү])&l!;x UOvzP3JIXĈ!wcYpy +endstream endobj 210 0 obj (-=A2) endobj 211 0 obj << /Type /Page /Parent 1506 0 R /Resources 212 0 R /Contents 213 0 R /MediaBox [ 0 0 612 792 ] /ID 210 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 212 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1071 0 R >> >> endobj 213 0 obj << /Length 735 /Filter /FlateDecode >> stream +HVMo0 bU[ V=8xKvߏv4?>T>Fq@EbB ! +(Z+qAO.^pۃ>_˅X/!x*R#ScAii~]inzhb>- X A^X|\lJQcT5 f<+pЏl_#gnˮY26N] M"salVcȪK 0@oZz"kYUhNrBe|_!6Ш>dD: FAs G]U~p$ |;Dž97F{."IS3]QL&un#PusԻcK6Tێ~K ւmfZ)"4Β{Jtds;B$bSSK?`1]W.k(M0A1#4lݢ!5E~a~F8h͐as٤TS"3Fj2F^aB m4Ȯ6tuPJIX#?+x,nt!Ș`3Qk^w\ pbF!gr*ssϹ:HuC]!Yjl>?B 0z +endstream endobj 214 0 obj << /Type /Page /Parent 1506 0 R /Resources 215 0 R /Contents 216 0 R /MediaBox [ 0 0 612 792 ] /ID 210 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 215 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1071 0 R >> >> endobj 216 0 obj << /Length 1129 /Filter /FlateDecode >> stream +HWn#7 }7࣓ƊD]!vfE ,!k;gx/R+e@!C]8Vi:A ApAN$gh RY(L'wz]mvkxW(_a PM@?G%4hU^9-8=>E:"|!8bvvIቭLDf +N 3He,t#a/ E$ whl[$,`*fubϩMT =f-Pd,# F.XQ04*GG)NG5h;'c]w*;:L1Yr1mq[.Q0q lrɎ']Cc"V0ȱ6KŬ-!C #U:|-d[AQJڍipHbn(:O0Ca"b-M$iB\5G(?E41pth4r#9ys8Mf{6psi444GU4rECv%PC]NR6S*1ӭX@mD!-BmE1 eHC+nTeBӤ)1*V ];0 u܉p + ᅖ*QԺ[qS;eTJDޤpᄀ%tZfj^vͬJo~ԁby?[^m`ژ%l+z T .SPyn0y71^~yWvg4ϱy _Ӂ?^R Y > Ehvz:^n? $'FOzn֧zk#}}xUD]~~>d5M]@}QgYir>t'__yWWzC !eCt_B 9·p +endstream endobj 217 0 obj << /Type /Page /Parent 1506 0 R /Resources 218 0 R /Contents 219 0 R /MediaBox [ 0 0 612 792 ] /ID 210 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 218 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1071 0 R >> >> endobj 219 0 obj << /Length 739 /Filter /FlateDecode >> stream +HVMo@#7~yD&mH=D8F4YY7oxތJƣ S/<0TU# +9"3ȷ,'LB2MeWE5ܿ^UmvEDqGyuүpL@n<> endobj 221 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1071 0 R >> >> endobj 222 0 obj << /Length 1931 /Filter /FlateDecode >> stream +HWMo7Jzhh"ѭAײjΐgZ')P1bkkt3_BJ[Ȫ4jTtAfnTW/a\ +Vsxy7`[-/i?a˫i#]jXh3n18YR߼P/Ƶ{~7~_FAgz<}܏wv\m:)l߾aWO_Ǎz3>cw+ {()d6^}TU~o2[uy2V7+Hv'<%l*'2Uyc +1 ?ba|x}gxA +(]yX'<\;c{kZ< F^٥L``W9xBgKjtB$uǦ-N0h}ߑI!(W6DwF+%D +;P3"Ԓfl. h1)h bN& wN gb,m B4E8)0 +2%yojscΧey^-| + *M|*Y8U1fD tHL;s=m?A饪 "1h1kGJX2T8ᄒ7=mI$c| LyMś(9'8T|`ׇțxg t1+G,;~T7ݫz^afx^_ǩ 4:NK#C1[-3G[75q89&xb5oΕ STTm˴!AbS |JiQ?SZkFrpQh?ajRmTvP6>HdۃoQjh#*~`M8I'0&AxĮt s NXw5WDwdc}qp_`aBy G'&8+\.' p9sL|`sNl59Y~V@j#&fUbO xytFbO(l X"\[qE!WԠʛNŔO\>#.@`ޕRJe%HlC2i<jN;qx>k 3鰋Ȟc +L /p<bθG{-m5߱ipx M\y=cI>08[o1Ae<[y\Oʱvr_*&dcL^Xù>wKWC16/6c cSCzonQ-M !vNy] klU oP\kڶ}~v|> endobj 224 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1071 0 R >> >> endobj 225 0 obj << /Length 1928 /Filter /FlateDecode >> stream +HW]oT7} }C(T[ۇ(]]wόU'c{.V'^鉷+%O65ʙ= ;Yn{?޼7+@OV5N>9d.䠈+^yau+u4r~1#V::S}?-aּz5+{ @XX l¼1fO@v ;ǝMCWhw9OE_\-mٸ&4i|F( Kte!^%}d@>)Us鼷3'Ys"\%A\qy +jqu4WP\KR7<餝E [p58W"5UVl^wu@= U\C?o6~C űVvPD]vW_?On-A[,Gk<&=5G}Fm|qǷjoyP׸gS24=qZqk0CĎkx'OgLq%?n|Ng_8rP\a-型#VgP+m|븈C5j.ί1Q5guGu +P+QqR~Q{ƶ"uzZ[Ot=0ƓwgS̀1u<\x:kq]u݇2uX2 num~.SZI4rs[z\/8_ ;ngP'm|{D?׻5x]!1,CO0ơVtOC{բ +Ap`!=XznZ)ѽ3¬1Y0AjJJّ^ o=aփlRzOz +փTX/&=цW]Up9$)$I ̒*IH%-]c9=U$$$h3IIaJ'KIBʑ՚$fIH̔$ NJRI@<$n#K!ET@%A8)IHV$Ar$AJ@ +n, kJxt=(I|]2P'% ~T@%!y^qT<ϯ@$Kp7IHޛ$fI %An, A$H] $YIb- j$ J$`MJì $-Ƣ--[2쎰Xgf EY["8n"8i8i +EܓEEs,B, naI%%%Ca-Y$ Z"4$~I'zq&xVZz,ov f dblX, dl3 EX-Y-N5V # zj [cJ\I\s=]S X\ěKP +$=KxyzKK+~%&O^]!q 6^\_ 5`\\k,.AC\o.AK8$ ?xW0ɳ=<)`9fƾ;looyLO3)&\pv၆;'ѿCF/!%qҌ +endstream endobj 226 0 obj << /Type /Page /Parent 1510 0 R /Resources 227 0 R /Contents 228 0 R /MediaBox [ 0 0 612 792 ] /ID 210 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 227 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1071 0 R >> >> endobj 228 0 obj << /Length 205 /Filter /FlateDecode >> stream +H\= ᝄpcM,R].XCk^a"ZS%pWJ? +2\0TJo'n$ʝmf>$`{$FB~qZ.H%ipIacoW[r-ʾ`Rȿ>\M@9Eښ`*JU`4m8_w> nE +endstream endobj 229 0 obj << /Type /Page /Parent 1510 0 R /Resources 230 0 R /Contents 231 0 R /MediaBox [ 0 0 612 792 ] /ID 232 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 230 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1078 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1077 0 R >> >> endobj 231 0 obj << /Length 463 /Filter /LZWDecode >> stream +P3 DC4d0D"h2BÑ`6`<X 8Q "$pPA7L# )*b5 FqYlD2&Io7O31h\2͈&9U4O Tb]ACn4C@S6 t֭AT9_,B1tY,փmn׬Ju<3/6#pm8 )aV3uEr "ڬ(PT4oIg<zr9D3~±:b=0b3"eFw ${0) +#/Rg+ZA j3#(9 hh4b2.P=x<8:7h2EA\!o+V @g D+F ,&I-lp&7 4{vKDZ+؊H +endstream endobj 232 0 obj (vM[? oQs) endobj 233 0 obj << /Type /Page /Parent 1510 0 R /Resources 234 0 R /Contents 235 0 R /MediaBox [ 0 0 612 792 ] /ID 232 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 234 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1078 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1077 0 R >> >> endobj 235 0 obj << /Length 667 /Filter /LZWDecode >> stream +P3 DC4d0D"l0BÑ`6`<X 8Q "$pPA7L# )*!\2¢ql33b!i7Ny]@HƘ.SRD + iP6sy/0 w=L + Dž kF4xYGmpP}6LȀe9Nq@t4`͆Sa7m8¿AFbnzazI8ZeML&xm+68f\|d9cy/8yϸ> ~,J")Hة>m(1;.:±(&9iiks? .nl$ 7cV<7f#`N.rHD2> endobj 237 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1078 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1077 0 R >> >> endobj 238 0 obj << /Length 1345 /Filter /LZWDecode >> stream +P3 DC4d0D"b2 Da\0BͰHB,r(sKHYI ƐPT;3a h6%CT:$  CXTPn2 `1')m4a@P2Si7bTcv6G%I(P`0ay9 Cn7ŸX ..5ըY0BأDm<A`2 +a\pB). PH4* GЩD7yc k{Yԃapr9]owh"/Ђ} ° DHhƧa;̰s 9Pj1*Ĵs2a`@@3 !jJP23 ȀZ7Pzp! :x)1[(3CAAr]%p@5LUJaY P1[5NPHJ:N }8kR( 3Zz:Zk> +S1=O!5v]υT-dH,nlP*+lH-4F ԇ{LI43( N+*ںK2ahN椮€4I> +eX`q4l\WRu89vaXt0Ueޒ9Unc$$߸\.0 a/9 c -=9pKM@U" `ud頢55x簦~h9ϞЄH5No8#qz)97"Ԫ~2V ajx>n!h+|!~Ř+Zw +EA8N.jjT"GB>}G*†~J3# +-'J^ Q;Y9c, +iDXz +!*Q HD%J* tZ1I*x״~8T垃~(GD$z&0?x DqPPf؄N)BQI2߆.N2F2`rC +3"\pg.6IX!}l)OpC <LA%dޟYh^tEr>cZV1SH`uc|*j +*iM UO0E `( +endstream endobj 239 0 obj << /Type /Page /Parent 1511 0 R /Resources 240 0 R /Contents 241 0 R /MediaBox [ 0 0 612 792 ] /ID 232 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 240 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1078 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1077 0 R >> >> endobj 241 0 obj << /Length 833 /Filter /LZWDecode >> stream +P3 DC4d0D"f1Da\0BͰHB,r(sKHYIFPA'3l3F)*!\2¢qlb2J0P>2FPh2 &C)]PHl8׬ `1Ns♤nFI hyiSn'3 x jÈP1]*0y>0&s@c6P i4ܜvu9E ɓ1p7jEAVd1b3ye1LSޣSjB,IJ,f ڷ,k/(-0 + a@(8: `;C@2,\!hd,ܸF]lpZl0- A/P>a3 ҘKK7 +$p4LI:;AADʲ-K:L*´+p+h-@K@3ΡlB&Gԍ&,rxn1nj:#!r2c`-S+jedR(O:h94RUHHrݮV"p dHl_DXB4Cx:=ӌnYH]K 3A9 2 Lи(}8ո19 +07 HbP[J(gmJ6C` LkbhΝ68*X4k#Va膓S"fnZ#6Y^b:c.@= ;A<Ij5NЊH +endstream endobj 242 0 obj << /Type /Page /Parent 1511 0 R /Resources 243 0 R /Contents 244 0 R /MediaBox [ 0 0 612 792 ] /ID 232 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 243 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1078 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1077 0 R >> >> endobj 244 0 obj << /Length 1195 /Filter /LZWDecode >> stream +P3 DC4d0D"Hp.Ñ`6`<X 8Q "$p<1 +x m8 )a:Mt4 +)*Ѩp4$`1 sQlPA*Sae +x8ss"ѐb. +5:J Auj5 (8Mzb4,X R˯8ΛJ+H2wp:V8 s әpm^zs:s {8q X@GΈ Q")J &غ 3Rʺ$ pbP& hsB! +A РAAaPnDlMEQd/ ̄k\C+M!,8 "Ųc!'4L&e(3ĵV +i3,(Rγ< TN-ZB#8d E1nE3711i9ABBs6QSGбġ2H!R(F QN2<I6O>Us˶at{иUH伮k:/.4pdݻNbXVIj`XK]Cڽs_cZs>U?ERRѴ5DM]2wD/9 bc-ԅ*f='̏`4"d-9t}dQ<S +#M(]G7{5@7N|YUp勠aBhEj}QֹKUON}6TAb5VVʶf[\/_av}:v_m^we𗓝]S=>>o`QV۬FƮk uNݟ]3= gz1Q{oX_Їg3>yMu&:Ӭ罵8:##x (ջX!a&8 `K&m/] +@۔T-& +B#$lrs`W\2JB`aY/ hhecOYQj"g2Z:C`! 3 ClW$$.X"ɿJEX!> endobj 246 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1078 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1077 0 R >> >> endobj 247 0 obj << /Length 662 /Filter /LZWDecode >> stream +P5 DC4d0D"l1 a\0BͰHB,r(sKHY(9LIP 0h(d."0$>0BsI@Cz2-0h\2 +PaOB0Ptm8Tx^og,1),፦7=FSnanAQ Ck:n#2LS(O) HgF2ex6j#dꊂ!lQ! ;FB,q3?GbP#-6 kdٮKP;HްC03DĽ/[!b'(&26˨:/'P/|;mF!@9C#DžR̐p#C( > endobj 249 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1078 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1077 0 R >> >> endobj 250 0 obj << /Length 661 /Filter /LZWDecode >> stream +P5 DC4d0D"h9 a\0BͰHB,r(sKHY(9NRT5A 8L. +,$Pn, F#!p-£RUAW. +I),B፬O E3A ;FB4X.3I;Ј &M%ҡ*`= +*UABW2#A +íDgCy]EW:}^(; &(s1MkȈJ?D4L6 "4K"40C3>ø1@KAH )MbBL8a|[ EQcy 87G%B[FhV`TH20/GmĜHᏲ+#ID(=ɸ2, m==桫:B#anhB*$n9 l #NlܩM(U80j3 ^#T2#(DWa`OaCD!3VH$P!o\[ .agg+5ݪ :nJ* Ս82j85vU9aho +endstream endobj 251 0 obj << /Type /Page /Parent 1511 0 R /Resources 252 0 R /Contents 253 0 R /MediaBox [ 0 0 612 792 ] /ID 232 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 252 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1078 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1077 0 R >> >> endobj 253 0 obj << /Length 862 /Filter /LZWDecode >> stream +P3 DC4d0D"SASUz7 m̼*OM:RPUJMOT P5H /ݒMd0֭p2PNӹ;H¶n۲2ܖ3tẐÆPkje6!"6X4}:Kow:!q^(),o)qQ +MW ;{pűÖJT#.2Ls 9z4Z4<6lbԲ$~HBb/ l^д/ @e,Z039 #jrhq1.N @!Qxh!KiHaFlnE`Z¢4 4AtmFUnpZ7B* +endstream endobj 254 0 obj << /Type /Page /Parent 1515 0 R /Resources 255 0 R /Contents 256 0 R /MediaBox [ 0 0 612 792 ] /ID 257 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 255 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1080 0 R >> >> endobj 256 0 obj << /Length 381 /Filter /LZWDecode >> stream +P3 DC4d0D"Hn.Ñ`6`<X 8Q "$p<2AA@o3&Xr4&3 o7 +J h.H1t D '3Pi7NGLj1*U@P\5 F1]0 dPeO#asV+ e!̘%v5Z0Ox&7Xʸxؠ #*^sl=J +endstream endobj 257 0 obj (;4gj/{2) endobj 258 0 obj << /Type /Page /Parent 1515 0 R /Resources 259 0 R /Contents 260 0 R /MediaBox [ 0 0 612 792 ] /ID 257 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 259 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1080 0 R >> >> endobj 260 0 obj << /Length 2751 /Filter /LZWDecode >> stream +P3 DC4d0D"iFmD B`@/#FsXrw +Fqy̳RT5CBd5Ea7rT4Dl2EzH*)K Futj8G#I*0BPn8N  s)J)Lj4]597ehV +nchzK* M* +"q@a,:|r0uV>].jnOv1 _&J +#P-"|!([^ˈ/tp3= '/Z ++nCk?o!PFյAOD9-/ @dI dA0X܅6Hf[?Ol̍!H0˪'!t<`N|+^I@Kk'Kq ʡhQ +-7CRASJŭDAD6 +4\rjhb/~1,Zs$2ѽ MnɪUH LĨ440²C`9+t=m\@pR(rmMONx0Hǧmk4_rZ/Ww.7=$*C!嗭Ys=_XoĻ aEn!hh0#yo3Kjx`!zgs"RMخJ:,9L&\^ڊRU_aJZ7 㥛ChSc84[W=.FDL-6=K.GAGlo>9y(oH$˸fn:s[|H\Z`;Uհhʬ#,AG8E /Pydwq5\CzZ֛"`h)V pPs#SH,\,Aw:7:bPBcRlr18S6/X6."L__, tKx-Pd' C `1@1`7@@ܠw17ޡS͝ aa Ũߗp9< +qϨ4P\813!͍!0ZCt KChA7GvS? i.qIɑ8x 2B)h gG|'+Ŭ +b4OHS‹=2eːR( 0WHIWΰt0̡"Ihf:fIb2^+ICأU"ACF>h`d%EsTH 2 $@ ǓR[`ՅPI \gX /l()D?`V=Z뚋FⱣEA[ +S$BKɠtޛc+{ʶb,tՆTHL-ii+]*6Zk[axjƀWseFZyiQݲ6Z_ZkYSw^]]1Zs&>ػRjAvG{YDͣw->7~ֻ0`edw&%{%7FᐗJ'z*&8;=௸`-x +^^V0_ % ,.!y2uyGR ^..ybbݗ/Ayg(cLsmmÙ+#+8ɥ?2d2y宧[#g|B0n; {{nDå=,fsyE;0EMCr +?S9tNCfƨVsPsy7U WQ 7`l=QuV՛$}V76Vtq>OlěVٸ6mK5.Pn0㭥u^k= ۻ`pMA@l.T}G^[X<'+)(Wu7Gp +A1W9M< X}ȶi(pr,mʃ8H}+/ukON^szKYsSQDޱ:KOdQ-%}ݿrr݅wy۔vڜxX 6Ηk3_v9C湣xy߃-haVf]'[OD]s=_;<vCK_dAs?)WI|.=޶}*!6BL=Ew.T)g56T-_b#kTéPE oƒ̘ T>L*ROo/>|.C`pBxo6.MT覰fO7hP~ZNPRPN.z*BlNw ` <긅a+hY@r'|( +8( "Z1"rB9LBx,+f'$bw" 0 BRS@ Ɵ\05 >#K@ ~5B<)b<6@,@kGM^{J$n'" ;ڜi +,j:]d +$t'})`@ ǖN6CD:O@ 觫Dqh&CD!昀Ɲ, +8 (` *@in>bEfiEɢ +endstream endobj 261 0 obj << /Type /Page /Parent 1515 0 R /Resources 262 0 R /Contents 263 0 R /MediaBox [ 0 0 612 792 ] /ID 257 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 262 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1080 0 R >> >> endobj 263 0 obj << /Length 563 /Filter /LZWDecode >> stream +P3 DC4d0D"d6 a``6`<X 8Q "$p\0 +x e9Nn +gC))*a&  F(Z4N9n4L&I 9M{y эB + FBR + .0XH^P{Ytt 6NgC(‘ +* +k陗MYrx\e0#%šo9CE٥J4['+_`vuh)=Kyd2-j; >Z^079 +?J2 ʶnp x79 +zBֳL1ߪ(#8C9Ã|9*0נB $4hBX&̌0ag30&3#k칄9 + p* 'Zx)"<#8:LTƂ,r4;E'g7O괠)΄P8[6' !`h7:B131@׆sd5j{=> endobj 265 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1080 0 R >> >> endobj 266 0 obj << /Length 687 /Filter /LZWDecode >> stream +P3 DC4d0D"d6 a``6`<X 8Q "$p\0 +x e9Nn +gC)*)*Ѹo + +I- *is2 9Ms-B +D*) zu"htJ#81o縺7{_rQS-N:'mH+8'#Ȁj2G=eAEcA1 'э~1b:4QF;]C XL.roZĄ" X\+i7ニ7'|7(j +:A:c2@ؤR`'H }pLMAaB@0ij #[YIԠs$p||-@0@8C|n 4(#p$sܻROR2%0: @2!Hڷsߌ1YL7rƒzx7cJH; c 5#NmsUvDd,!@:62#=5 hh:[of*H*4frwt \vpb(Eiղ&"ԅ7 4XYkrhi5* +endstream endobj 267 0 obj << /Type /Page /Parent 1515 0 R /Resources 268 0 R /Contents 269 0 R /MediaBox [ 0 0 612 792 ] /ID 257 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 268 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1080 0 R >> >> endobj 269 0 obj << /Length 496 /Filter /LZWDecode >> stream +P3 DC4d0D"b6 a``6`<X 8Q "$p\0AAn0"c4f!RT5A XL. +0h] *&eI(Plb# 7 F4* - o8]!᠂zجDZs:8\ QPU<49yxArTc^s~R+E\zxc0 |ٴ "Ѱ`(:]m˥BTzWFݎڽok:Ͼ4> endobj 271 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1080 0 R >> >> endobj 272 0 obj << /Length 706 /Filter /LZWDecode >> stream +P3 DC4d0D"d3 a\0BͰHB,r(sKHYIgx e9LǓI : e PH0 qpt-BȓB(= Se. +Z1. +DڍLEK Gb"w +mMCdy  h[-FoTYK=Ac4+= mnoڝ^ŕ 3q7R)B a#EDa7n sdz"TDE634Cp(C#j7M1$-3SrRCA2\K #?+HC#.2) +$HB*$k89 m##V"h`z(Z;6*(>9ZʬQW`B覎ʂ3[@Ph!u~0.hꫡ*?o! q'~Nj:c,82 j95,yt +endstream endobj 273 0 obj << /Type /Page /Parent 1519 0 R /Resources 274 0 R /Contents 275 0 R /MediaBox [ 0 0 612 792 ] /ID 257 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 274 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1080 0 R >> >> endobj 275 0 obj << /Length 643 /Filter /LZWDecode >> stream +P3 DC4d0D",.Ñ`6`<X 8Q "$p<0BAAn0"c4'jA\4-!f. eB$̩; +'AA<*ApPD0 %C :4(eE.i#)r7.q 8fnCV2Ǐr:Ll`.R +* +ViÆRn +qh]9bH!lP{ +u񅫰 6 _v). Zχ\'`@/9)c0J;HؿyZl [υ!9KH.5q_hW GH6.Nk4F {0,GD0>,T-fG2\6z<<$K3> endobj 277 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1080 0 R >> >> endobj 278 0 obj << /Length 957 /Filter /LZWDecode >> stream +P3 DC4d0D"l2 a\0 HB,r(sKHY((&l2%CTZ9 aAP$Fܨo7&0eCQt4:((b.Tű:nA9U +* +(U +vʲ )N3A/Gh0-)i7h'KQl cQ(Lhf6A3!I&YBi=k[Q +"TD@j& M˱'L 웡|6p}Q=#Qd݆\/<>\@A@ +i;!L26n#v#À0b DJnnK*,jv-kmB3t+h-d/0A"ː\  T: M(Ck!nPP- BdKp;Q{=1(fKvO!P); )Ү!7TŴP>t Ikwp;!ͼ( _KhugϽtVVrt]([{'"\J=5ɰD58a75_PT6NsIUSAuBħ* +R/Jڊ6;uP$I:zG몞*+ +Jʂ+4K"͌+_HU&t ;4:C cx2 uiHЍah41è4mX9;G[PΝKn#ḧ0mN3209ɼ7kTJ#AP#1ll#*qͲSd3C#j!2ԪWѡq; "J 8):uqOU~nn.Wkr?غjɺ ɳԈ1rK;9B x@Z +endstream endobj 279 0 obj << /Type /Page /Parent 1519 0 R /Resources 280 0 R /Contents 281 0 R /MediaBox [ 0 0 612 792 ] /ID 282 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 280 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1078 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1081 0 R >> >> endobj 281 0 obj << /Length 483 /Filter /LZWDecode >> stream +P3 DC4d0D"Hd.Ñ`6`<X 8Q "$p<1 gx h2F@o3 e6QIP!AYB +Ib7NLm8(%t4Z* -v@Pr4fW+b0'\Ѽ@A7SrCh0uR* +1g7>0 @C7C sǂ3ґۉ2i:pP/s)I9㻝Džr?G~ #VC0!4Ͳ"H@!(>0(2҅!ld3I7뾁2c8A\L LR…:<8:C"2\!tHR~.7!qDDDlHBH:c(:!c(4 z3+@膨sD3\UQZH +endstream endobj 282 0 obj (&spZzjqk) endobj 283 0 obj << /Type /Page /Parent 1519 0 R /Resources 284 0 R /Contents 285 0 R /MediaBox [ 0 0 612 792 ] /ID 282 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 284 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1078 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1081 0 R >> >> endobj 285 0 obj << /Length 824 /Filter /LZWDecode >> stream +P3 DC4d0D"n5Da\0BͰHB,r(sKHYI#ECPANФj F#pr5 aB$`0砡A wN3@a:NB107Ny@t4DI}HvQ(\2q[-B!?CBB6+!HRlxnĬcp mJop43P1 J{[Fhx\ʍ+aA!=0 +#F2҆h!$N{2Hd;J`c3E!)6 4L2rC0$t'&K$D N1FP?9Lj4 DUGN kR4QO1u(Pih0mGaC!F9T> endobj 287 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1078 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1081 0 R >> >> endobj 288 0 obj << /Length 1191 /Filter /LZWDecode >> stream +P3 DC4d0D"H`.Ñ`6`<X 8Q "$p<1 gx w7&rNFQt:Qf @O7E%CTZ3FB +,6NgpBؠo; S@w0NB1/7NZ2} 0.J1fBҡM4zYi9lb!6܍&)Y[шT(QU2lu0#f3_FoÖ3x|Z 7oy0 TІh˪ #(9 9=p3K9p9۠!hnp 2!Pj@D@X!lĈ>D1sK9r1iΌ:{(2"@c"hR(ǡ-5 +zm7j9IIDUhhEds"Xh_rk9ſ춦yȺFN mWv{\ӕ2L`(b2{3Tmɹ(A8"Qwڟ8,ADeYi'Y +t|jxQn7tk]%;"曺t;ŝlo}c9r :2;9 #gZdF~ƃvj6x(p :^NѦ_sÜɺG/;pNK!.- +R4Ɂa|!1)O0d8qrN<Xd1HL|,/m@! zjQ#) NPgѲGA$XgBPll8ҼY`,Xopc V`\`Fr!,B ]r9Y;Cq +4bI0pZFd֍.5nW`E `( +endstream endobj 289 0 obj << /Type /Page /Parent 1524 0 R /Resources 290 0 R /Contents 291 0 R /MediaBox [ 0 0 612 792 ] /ID 282 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 290 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1078 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1081 0 R >> >> endobj 291 0 obj << /Length 1731 /Filter /LZWDecode >> stream +P3 DC4d0D"b2BÑ`6`<X 8Q "$p<3 gx a1Mo6C o7 +J oDAP6GI(PH7ө ;LS1/4 eU@Pia#j99(`.#)caM&)"<J"ի> & e؁\ 4!h@6 iTej0@lڬTJ:8NCZz]8+S"#~yΟV@N5;n`\L$&k#M#L R,k!hpcBN,}&;p+1AeCг*2Dнs h Rдt,, 6 ÔNNU6ʢ=2P5dEP\mYq\BE-gG,5S{S4MVͅ8iW?Vt#Es:Sr]Jc9'p^@18̎9#fr9NM4D8H]hsӬb)À<GJ({8σ 66<)\LFԱ'P7 s7g0al$P|"<;NJ%49 A%?s9c;⬠ +\I b 4HF÷w,$xN7}n9?VX! f/RJQ|T[{y0& @C8a/.p=3ȩԍX:U +'29$aA"2K8v'1I: Te`ŊZIJl~ 8Ky'̄RC8$bqH4Ա!}QڬPSe;_i ZQQ3^;A_-ܫ730~(کi yPܲ=1:=e4_{HDr[706n>= jȨ#QiU(N(fQVRmRSuPS]9\fٲF-`OTͦ1 ;āI8Y0r)&CRyˠD!^ Ҿ +h3 Mn (-c1!D0KµyKop`r !4KUUž\V>]xBưN[ 0(L-7BKpn 3JiAgMYQ/V +endstream endobj 292 0 obj << /Type /Page /Parent 1524 0 R /Resources 293 0 R /Contents 294 0 R /MediaBox [ 0 0 612 792 ] /ID 282 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 293 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1078 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1081 0 R >> >> endobj 294 0 obj << /Length 697 /Filter /LZWDecode >> stream +P3 DC4d0D"Hd.Ñ`6`<X 8Q "$p<1agx e6MC)^A1ΧADi13 u6Ny)*!\2¢qhgf@Tyo0CE]`H`8Gy(a7Fo^;e@b2QџWL{ Z1ȗ;~j(*LU o6)u{i* +cC7z"MZ7NLkӪ#y:Yi=! ϸ<`Sf'i褬 x35@6P ˆ C +cԏ!0cޣ>,Rȳ- R ,{&@z +7/   j2 |0:an߈#3V9 p> endobj 296 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1078 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1081 0 R >> >> endobj 297 0 obj << /Length 769 /Filter /LZWDecode >> stream +P3 DC4d0D"n7 #apm 6"x! p9@E,Hf8 x2f)*ш\2EPԮh2@c<͓ài:#)v0Qd4׌r kFQtp1NP 1[ֆ$يc7ގNm : ƣ{ ɎbBP6tKPi7-:73Aaʜ c7C(R.R DZ=<:q@ʌ +XRUHfDaأ6Qt?1aBz2K^5 +P,8 +ӔH@q;$- ȡHbPZJD +p ( P؟ˆ5Pp)(1: kc{92@Vb#sۋd>;h2BDeP1p܌Ms:gdCZ"`R +endstream endobj 298 0 obj << /Type /Page /Parent 1524 0 R /Resources 299 0 R /Contents 300 0 R /MediaBox [ 0 0 612 792 ] /ID 282 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 299 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1078 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1081 0 R >> >> endobj 300 0 obj << /Length 1061 /Filter /LZWDecode >> stream +P3 DC4d0D"f0 a\0BͰHB,r(sKHYI0PE<NF3Is +@I$J n.…n0@n2g „ 0فaD0o  vLZPc0>>0W'ؠi3D0. p +2MBa*;=AN +xxg %1PjGO:fBVUa +endstream endobj 301 0 obj << /Type /Page /Parent 1525 0 R /Resources 302 0 R /Contents 303 0 R /MediaBox [ 0 0 612 792 ] /ID 304 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 302 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1078 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1082 0 R >> >> endobj 303 0 obj << /Length 603 /Filter /LZWDecode >> stream +P3 DC4d0D"Hn FmD B`@/#FsXrr8 o9Nhe9LYh7N'Z@j FB@-B$`1N +TE<MaXVшe Q(* bnBgsE3cMjS-+ּBZ"d9N}N& +ن#L6;\x@i~¢!<5OD;n.xP7?OR(.9\1H4Z#R<኷@3Nh4N!t9)#͌pl3X6L("o]Hm 0|]W 2â|&3*@@ㆨst(STZ/8H +endstream endobj 304 0 obj (ƗMך6~'QT+) endobj 305 0 obj << /Type /Page /Parent 1525 0 R /Resources 306 0 R /Contents 307 0 R /MediaBox [ 0 0 612 792 ] /ID 304 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 306 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1078 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1082 0 R >> >> endobj 307 0 obj << /Length 1314 /Filter /LZWDecode >> stream +P3 DC4d0D"h8 a\0 HB,r(sKHYIGPT4Dl2E%CT:$  CXTPn2\("LƓqi7Ժh*)O jf! 'R{_#NSpA`c:VtFREbJM/ROڵϋzk~^U͎+ƾnj3BYH룯Ep:(Xs.[ nP]Ax4N 3Φ  #p-+8:I11䵩 ( +" B kjԡ!o CMCa\'H1 #:1+ ?ÛL"q@#P HH@;( b 2IA&Hh(4/j0@6LT7M5͡58Nl9ALs->Oʄ:N4U =O$n.јPHMBѓ PM?3<sDVE[AUC4uKQuU$ P,jOcP׵%4Vy>5MpkUW mRܫr\]ַtaح;-!=7N@jڗ`Mm +Ta=\b7 W("MY}08'm8Rr NUfc}kInwݟ~gvwykofaYWkօ7LX%^˃6S6eЫ֡eUkؕ_;gF(ID]qT~9 ] м[lumv&?{ˤZ|:|"IF+7;t,׿u~^exi=fH픪)iM)h\][=Jt?;jG&+2A.LTC%FX k]\۲q ܓt"5lT +>F LLCe_7B&j3hdP[(z@y)=aN 3$LbC(t7}o !C2E*v8V_Awi !Q8t0FN H&LFyBQJS FA2h6 (2`Y9C1a6$iDĥ aʳ΍ 090r !4CLATtdW1> B2eroI\N<,"@ +4%i ?\_u|(Kz A- +endstream endobj 308 0 obj << /Type /Page /Parent 1525 0 R /Resources 309 0 R /Contents 310 0 R /MediaBox [ 0 0 612 792 ] /ID 304 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 309 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1078 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1082 0 R >> >> endobj 310 0 obj << /Length 1019 /Filter /LZWDecode >> stream +P3 DC4d0D"d5a\0BͰHB,r(sKHYI0PAΦ#I@A6#Im P萀h.¢qlgHē!.QJPb2 RF +NIKMi9L at2̸MR#V kQn.ܬ[@= + 9[]V'g7; |a75f+G;M$ջo8fjNff![?Ӕ,nn+RH(P@R>7<B2z)܏rX c@1a/)̘A26 \D,ۖ憱K-H7hT$"8Ab!T-ky'Ԋ330 QSnL?tso,5@Ʀ82+V'/]b7< 4\icx@3 #533NtczmӬ=nIhT؁YūlAzζXa-Ro!F~X`4(4.'Th'A05 Ac%^iw-yZ&M!xUi͎68@f_^ c|v|F2UEӏ!o + bU +C܅(\:`n!@vDapoBENHzo|IJjTZ*|3RȢ-"G= 7BB61qÐިn2um:>">`V6AC`+zNKw(<8:AUD+ CaJ`)`lىUl&PLy K78i / \We A-@("0@@ +endstream endobj 311 0 obj << /Type /Page /Parent 1525 0 R /Resources 312 0 R /Contents 313 0 R /MediaBox [ 0 0 612 792 ] /ID 304 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 312 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1078 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1082 0 R >> >> endobj 313 0 obj << /Length 906 /Filter /LZWDecode >> stream +P3 DC4d0D"1;@[$JnȊHPC!j/8P!L؃sJ`pruLpDTD*ICIU 4UYUaNLS"EC!Dt-Bo\axTVeű֨@ eQ!OmHt.^4u 3RUDUD. +΂ a@:X6p@:xR.TL*+[MiEhzeP74T<τEzfpdHFC\ 43!Rj +J9@$ÐީÈ2uHgLӓ@ (6#p + P6?ȌOP`^D8*x4ė-q(:Ř'BX:avW^Y}T 2â2c@782 +Pׂ4(hh +endstream endobj 314 0 obj << /Type /Page /Parent 1525 0 R /Resources 315 0 R /Contents 316 0 R /MediaBox [ 0 0 612 792 ] /ID 304 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 315 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1078 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1082 0 R >> >> endobj 316 0 obj << /Length 1646 /Filter /LZWDecode >> stream +P3 DC4d0D"Hr.Ñ`6`<X 8Q "$p<2!gx n7 Su0F 󑦄m P萀h. aQA433IaVk`v(1Nֈ" #<Om:)@a9R"q>\l7<|o3y[r FBдc`& -S 8iƳa\ !fJF`"/&5x'atv-j߾+#;f0@>/&+! @ à4xAkNc,9#`9j/  p*7L +<)zCx37#D+ j@CAjӺ"anJ*݆,$ą2a%46k012$$Frڶ4{ ! +c(⍭R2;)85#̞J/ Ik=/n) "5FL ?(<@H3W԰HGU/vc2!pz2h!9\ar3ul!W;ZU4tp$RYc01XU7Z{Jk*—68DJlwd$!` f*sr&ʲMaUĤgXL1k09`(GXQ6/,P`ܫ 1= m3^z9u潛i½VW.ehgvCjiP/> endobj 318 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1078 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1082 0 R >> >> endobj 319 0 obj << /Length 1690 /Filter /LZWDecode >> stream +P3 DC4d0D"Hj.Ña*`<X 8Q "$pPA7 +JtH@4 ʄ.F*QFv? + #?Z^ͧ35f&7۫o3j +催Y11s Bg7'CA!qhb2ӆΓQ Qv4 -! )f_g|oo÷ 8!nZẒ  h/( 34C+0R(]p)cD̋„ +3lt(S2c9(L&6Ģ: K8Ԅ .%_xdmpͽ#q]lmt Mvx{'e)ʤ]ת8% +i5ӕpdpXh/7 f`Xn }7Hiae)ٍɓeyse. R)8ρ@Vgla1G!9< #hOvL*^ӏq}]Axj),3L& SuC̺"lͪdz( +A9FAp  b + +] +)'hFRkUc&hܱԦBHʫ#Z05tT&*uXV,F%d.FI +cT5E!d4B +I+ngA6 e !63AM tX Fj8h\#R +@1 x3d,=o¸K+QL2Bh K"ɧkt-N0@@ +endstream endobj 320 0 obj << /Type /Page /Parent 1526 0 R /Resources 321 0 R /Contents 322 0 R /MediaBox [ 0 0 612 792 ] /ID 304 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 321 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1078 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1082 0 R >> >> endobj 322 0 obj << /Length 863 /Filter /LZWDecode >> stream +P3 DC4d0D"Hr.Ñ`6`<X 8Q "$p<1Jx o2Dcy@t4E%CT:$  CXTPd6~C3Ih*)OBj9$@ApQdDj*9W.:f1Dennbaχu\\ZِܧjeыgU(a G0и)Mz)m\4-ֶbѝHo* xí S @m0gShl|`A y𾖻i- &a@=M@P@=  `6p藅AxR.R>`;!@27",8Z1 @ q@ rp p?/o:Eql^+`.+=nR6rR0mrO-7  pp9:C4 MBUcE/ =424ΣhvU6UHZ+,? M6EE> endobj 324 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1078 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1082 0 R >> >> endobj 325 0 obj << /Length 1230 /Filter /LZWDecode >> stream +P3 DC4d0D"d3 Da\0BͰHB,r(sKHYIPA &) h6JtH@4 eǤ)$ETZ)9X,R0 !EI(PH73 @w2 dD3yt4jekqXd9NOeZ'Bw; ([xkn#kU(ufAEsc޷{U%\oz7aAi^]ޮ8s+ރ([4#~8.!BhAl,+pz: &ʲ6κJ9f;˼6{g/t+(lN'0`FA ǯ,L'۰InJG7Sz4s,a@X<HdA@ #6 t#P P h@-NHAN!jB')jB6VxWq)VV`Q]׵;dVuiiYmeY[UlY6tZ%e׍w\eoey\~ZPNL!r2/h<22S7k_7z_WnwLa]K]XXC}VfqrdU__!yVbvpYke`R3o*0bb4 pnVp,b;00;|!<̂3򯔅 {Xʌ> endobj 327 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1078 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F6 1083 0 R >> /ExtGState << /GS1 1082 0 R >> >> endobj 328 0 obj << /Length 2522 /Filter /LZWDecode >> stream +P3 DC4d0D"Hj. #apm 6"x! p9@E,Hf9tb0BAALm6NG :  o9i&ӘjAPdcBcQh  RB +j*1"0$`pX<& Am C[W/QhtZ \CACpl8uS;2*N(a19O ryHT$w |A{m.2mED*r) "-c1@R]*$j/TMhbɲ ,۳3l>DҠCRAY(a-x)r4X74T 7c(7"5m`fa"8<ȯĞ5faNjAs spdxprKSHh|"f+<.N o("i*NY!OkcLKȽΨ@f⽓`s7O@e@:hE.oNPT%<=kEKe9:/DU"x6 ;{2DKLs)tq)!U3FӤsM]>QoqTY5Rc0ZA]A-,23ˌ%}ߌ ]TǶAt8k +B: [4K(`*H!5>GZγŒM#O$}/Qis,*| 6hp)Ti `62^k`쥌87]~́E7y*xYN>#]﹈q #=z`(Amȷ0#+5Λ`TOs9 2N/1hL-5`exr JEc#^i2 sOMC^2oaEpaGQuMY`<PQiE,:\kj=31YC}yE)Pc Z'pOS$*K1zu0(Һ@HFEؗfLz/F//O!hapl Y6bIE0PȄPh`X %n<֞P\\yi^>hj:D573.VHnO nYzS0U׌ճ"^ %DBWL+ƴפ)]t-2= d4'|ӈU6W6YTuZ&OŸ˻wMk+p6'Ƅ `ՑE.Q=C6sE= ρ:}7HZƒ+X*F-tv*hGGu15+xP祔w?BI8>1h9؎4](ؔJ&d K3/9V^x3@QV^|)R "ҴW[hT0FOnOYtklŦLW=5qkMHk]FpIRK[8tŬU+mUgr^T`K:ݳ˶FG0bˤl.PL̅{I +Ef"_1jS3Oy_{=?y?swy'i=OxpU7}~_|ω>|oDrO GϮOp0Ow\ "r@lw]"Ξ$"J +p "E` v.`$2&މX : J+E#L&Ȃ~ ` !dl fWJ5d+0fn ` +endstream endobj 329 0 obj << /Type /Page /Parent 1526 0 R /Resources 330 0 R /Contents 331 0 R /MediaBox [ 0 0 612 792 ] /ID 304 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 330 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1078 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1082 0 R >> >> endobj 331 0 obj << /Length 2985 /Filter /LZWDecode >> stream +P3 DC4d0D"Hl.apm 6"x! p9@E,Hf9tb3AA/<FSi@C7No7 +J .2j0 ư(=6ӡ NfM$舸@)Fᨠj8JtH@4 iY u<GM v>T:PeF .g7؊ qe1 1v֪11h# am6MY4S‡2\nc({`o˜~@r1,[2 (/83+6r'8 4b +Ӭ; +L9CX\FqGA  +&"Ç s:;B7 4E2KN#FkDTbA>NAsEjAn,!H MEєmGlMA2P[Qke?”P#Qԕ- + Dނ:!:u3PagL 0bΊʰ+>`$W\:#p4ؾj׬8dA! 3.p +SG`4.-d6B_Nm:>3.Am_5r>wIk-hJ +ɰwĪ5$!}x"iҞ'|'!^_PЖ5:UfvPSi;⍐!fyShl~YU`-f`'BH$ a& ;M)ձ!@'idY:߽zq.ϴ{lփM\gڇp4Pt-4To]Ish:4}@hhjPۡ@bS>1S8Ɨ0P}πAQ1wT"&Ό7oxR3={`谰rz9Ĵ*wJiZr^F  n(}#l ֚zB@c  +|hics֟ #|7=n:!Nnܒg0#WEP( <E\H3!2; ĵ4V1PGB*ʭ9EYx}P#s8 PO:"îo<*K .`nK귅rSJb+BPc)\Ҷ\Se-圾^˹mԿ"aL 29:١Q*dƗRT a2ɔSq6$ɜhN:t̜v֚)KтiQ}4܄]"~@h!,Lb`hv^T!FKŢϡZ5H$"b)]Z~`W3t~QJhA%JF8 ȹcXda>"R* #Ź;wVzQ2٫Ǝ3FR|JLi/B\m?U*HJzE.7wS)MѕfY}QpaesuPq^~N--FNJ9Blbgq2;)[L`^Kr(56VM`gX'l#1>Ճknh9Dtm-?Ak +䑝y. mY6*sVc^& )R6V趠%~[^T GVwUZt҇nmIi_]w9Oݎcde6 JιavS!uXVOU\WJ#$Bn<r2sPWv00vcjp-j gcrQ`'k6ڼܻ]wsmܟ_rZk 1-/rEXݑc%b8XFq"j[$ï/Bxʎ-Cd +`TPV<@ B">p yU> endobj 333 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1078 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1082 0 R >> >> endobj 334 0 obj << /Length 607 /Filter /LZWDecode >> stream +P3 DC4d0D". #apm 6"x! p9@E,Hf9tf0AAs4г)n4NIPA@-Qq +*NBeΆoY E7N[Yo7 PƦ4p(acg7'CA\2L:bO!ABp9sqf̛m 2[ 6c:n=.Qb+UusyةEepf6-0腦<(9./ 43; +l[2,l1 Sd po +5lBO4` A c\c:GQsqLnn,R<'3r6H3!Stj#&,D-3C682#9Т4!¦" ;MXcx> endobj 336 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1084 0 R >> >> endobj 337 0 obj << /Length 315 /Filter /FlateDecode >> stream +H\Oo &~9fePo&{d9b-uiU/ +iC!{7d{1 +rC$č TlBȧBO7YP8JvS`jG9 p3G{k^$ [(Vl࠾F l=9]A?H+Mn-/ OO;,N -M&[k|6[fBܱȽ_۲muW5AɂrC<νjt>ǀgdX~sEBYF(+؍HU;ӘZf\8" 'N8G`| +endstream endobj 338 0 obj (dIY ) endobj 339 0 obj << /Type /Page /Parent 1530 0 R /Resources 340 0 R /Contents 341 0 R /MediaBox [ 0 0 612 792 ] /ID 338 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 340 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1084 0 R >> >> endobj 341 0 obj << /Length 425 /Filter /FlateDecode >> stream +HlMk0&V:^C`}܋,kԦȒ [B̫O]Y0e)޴D|JLYPPm`qO(KYTݨ٧I,ꖴjݗcI\PaiN:p|uA\MB͉nR֔Q:~T$`2H02Qt ue8%Is;Tx3f ѳW.DExm\C+2-*M΃=cxKu'V'b-W& r"i&6lxTV3x&[l2 N|W1d9r +$ApOVFu= ;Ol';haɰXl2Xk&j;+x +endstream endobj 342 0 obj << /Type /Page /Parent 1530 0 R /Resources 343 0 R /Contents 344 0 R /MediaBox [ 0 0 612 792 ] /ID 338 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 343 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1084 0 R >> >> endobj 344 0 obj << /Length 530 /Filter /FlateDecode >> stream +HQo0#N&&6,C-S=TJ]lw-6iB"lmdn60K{pq=F,BJkD!C凐Av_QoB5on2ۺnd5rdANkAre]W*QBV̌ +#|֓=I}F^4(zX?$c[T + G!)J5RţOJ2a7;v_ +endstream endobj 345 0 obj << /Type /Page /Parent 1530 0 R /Resources 346 0 R /Contents 347 0 R /MediaBox [ 0 0 612 792 ] /ID 338 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 346 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1084 0 R >> >> endobj 347 0 obj << /Length 474 /Filter /FlateDecode >> stream +HtS[o0~pI𰹤 :C%V@Kqq%mLD@H_|* y>#># 1z>T)-@Jo*VF撷K<^(/@df\FLj,r6"(<{&?F~41wJv/΋f:jȫ̅=.D#=2 ɝP_'3!҈R4sv,}=&o-\DzpD.[> endobj 349 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1084 0 R >> >> endobj 350 0 obj << /Length 545 /Filter /FlateDecode >> stream +HT]o0}G?@g;$eLWM{Dހ(qhZ8)s9>H_~ݍMG1G-ԟ"Ð*9ԻxE|3/d,eXV7E>O M\gIYOQYep4T Ab䇤bLE +udu}/P,!ɖC9#cq nK\EU߃Yȩx~5't?MɟQ Aj/Njy)_%UTe[E/BB& PE]WMKc4o͞O5 t(luȑZ>̀:%:Pm<α +}3WrlW,W7S=4.Ykqpٙk94„;7-p܎= +}WX㩩~3He\pcM-sƁˠak{<,Xꄄ`oWK?$l*R<5Sl}/H9+(-i{S $*Y +endstream endobj 351 0 obj << /Type /Page /Parent 1534 0 R /Resources 352 0 R /Contents 353 0 R /MediaBox [ 0 0 612 792 ] /ID 338 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 352 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1084 0 R >> >> endobj 353 0 obj << /Length 869 /Filter /FlateDecode >> stream +HV]O0}pi@CLBj(UkJXVIMMl!5ܜsc_% +C?|0*@Nd@$ěn +yWS +\GBC_ެ7fZpyng +ר$+PR# o DcVk/x4 c=^l# v;X+!Td==Z ;q\NsF9r]t'jDfiRKZ&{]g(.nb>*9q[-Ϫ 릉[6*yx.Bwt=‰OpkyNjZjjƮbe81"2{8pxxTcozYGZ+}^}Iu` ^gy*\} ^7xdu]AH +M#=l%[OK"^2bJL2Ǝ@7:b:W`rnF9dS ++W;996NCTG2Vԍi.bl1D@rΑeFx-cjlMVͳun2"4y6We v/KVSCG穌 Ti@zp\\V26jnUr(BHa{U#Gͽx 4 +endstream endobj 354 0 obj << /Type /Page /Parent 1534 0 R /Resources 355 0 R /Contents 356 0 R /MediaBox [ 0 0 612 792 ] /ID 338 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 355 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1084 0 R >> >> endobj 356 0 obj << /Length 491 /Filter /FlateDecode >> stream +HtSMo@#^obv=#U"[ȁ Z[Xjd kffgçu_ }tNGYX BP(AљS'lx7ewsܨވFV4X *7#FQdoD3T=jy?νw?`R/ ̷Y[<%@5[yhǃ`gXԢvq6{aٕQ2Z@ +sl-F褶z_;Y'9 ~ .9m3ώߑPr.b`|?62Mwɴf<$mQ緒WWxpoF(.MC?,90>UӻMmDaX`Qy86V7T\WerĪDg=L_,v3 $L,'ˆB^2B01b96QHf)J #荎a?? sM +endstream endobj 357 0 obj << /Type /Page /Parent 1534 0 R /Resources 358 0 R /Contents 359 0 R /MediaBox [ 0 0 612 792 ] /ID 338 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 358 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1084 0 R >> >> endobj 359 0 obj << /Length 639 /Filter /FlateDecode >> stream +HUMo0 QjUԷ;t[S`H|k"0Cv$;.:l##tr=Hu:.B[f t-@֝ 3wL't~ؒ.ɿM'iƄ#$`"Zܕ-ZmY` <,d3 3x(X&=v( +}.xqFxDWD e2J',irPeb@+G>S(0ЃvF ,_埅S I: W\\gv)/jPm2}>vXTX^#IQ&q+,!GzӶ +qc) ɗt,z)}$'FP[NEQ˺^yYڮj$8Is igl|wkÎl6M!%hGcj;e,Lň'u  .[f)8(#(&L!V{YԽ9f=XC۬U]W5y(W=Eμc?+ٽy?;8 , 9Ge> +> endobj 361 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1084 0 R >> >> endobj 362 0 obj << /Length 757 /Filter /FlateDecode >> stream +HVKo@Gأ]۝٧(P$TJPT$AMlT~=~nzTDy|߼trv!t/];frÅaf:lIg+υt3$ooϷ͚jhUY֢[Ȍɠ gs7hWp dDx +6pn\>ą)<r"uۑul5j^%L$aB nX<e]uk iō,FYٰoɮP ɕ0G?M \ gg> endobj 364 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1085 0 R >> >> endobj 365 0 obj << /Length 383 /Filter /LZWDecode >> stream +P3 DC4d0D"j9 #apm 6"x! p9@E,Hf8 e0b-cQd.!dItc*CA@D0 "u1#,| + F".0 u PoFa6Suo7NB1Tf پt< +'S.sg+ ϖ h$~% o HK؂-aA)ꇮИ p腌7 c4tlC0Ú-PH +endstream endobj 366 0 obj (Ւ]Q%&Uft) endobj 367 0 obj << /Type /Page /Parent 1534 0 R /Resources 368 0 R /Contents 369 0 R /MediaBox [ 0 0 612 792 ] /ID 366 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 368 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1085 0 R >> >> endobj 369 0 obj << /Length 1136 /Filter /LZWDecode >> stream +P3 DC4d0D"d1 a\0BͰHB,r(sKHYIJx h2@S:3e PAh\4FBD1 $L' ;Mj $t2̧#F +pXp.ru# +,w4h`, #!D".1h]5BHb 3#<,Bll J! 1waF=,icp8,5cWHHzzh*2@dn?2!o0!l+4!TCC2…τ(|0pC#$TEllZ;0c +ư 8 @p*-"T%BPh2|iJq4!ή1A{"HBA2*5@0+?6!˔'!u)@qs4D)QjKOm"(P+<6U3|v )XHRhT\n;OEʎj_;A ,Δ2Ǵ3kQQ:ȠnIr4@E/N.;z(ø4+I +endstream endobj 370 0 obj << /Type /Page /Parent 1534 0 R /Resources 371 0 R /Contents 372 0 R /MediaBox [ 0 0 612 792 ] /ID 366 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 371 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1085 0 R >> >> endobj 372 0 obj << /Length 1875 /Filter /LZWDecode >> stream +P3 DC4d0D"Hr.Ñ`6`<X 8Q "$p<1AA$p6MSqt4yr2esI ) '(j Fj a,6 c32h4:,akT" Lf0ED +]B cqVDsl#ps pw=D18V׍F[^Zgm}( q`PYO6c-܋+j& M˱' ^.ԲbĬ <[v0r8n+T Ϸ.b@Ųl*Z׹ C`S \̢AN| AT0{z' b? -h "̑%:3 lXE,*Ȇ̜HˆAp@cHH1P@Ic$ΤCL$2@Ib/-Esf$32E1Mӄ:Nă\V Z.t_Leb~D-ԺM4c-InׁǞ׈LnZ8mB1ΛzAz6KK<b|N0X9lM +&iPěor(4ʪ7% @07۠:!S*-Ry@-!5ܞ:P4OҺB*'3@Hl ? Pi6 4P1 AX1p͇T +,n6BH(!y:..SX&4#Atv']1SQQ5ɚC9aPT^H8r+(loMN+pJ'b5vU"+9v&;e,=LX;P]6]Iyf+)Qg֚JHBP49{&ۓmHY-O^VLr4uVZ ]ǶzLamwjҪT*s972KY$dtv߫k~iYiave֪R^p<5ӁUta#.wiX,Ww*޷yaZE#R-sܗv/3 [!ej BCzH6׈he9ZA$,0=t C <(-"))E3 Z D~F'SX\IN!fCD|P2pc %Hubym(e4B +endstream endobj 373 0 obj << /Type /Page /Parent 1537 0 R /Resources 374 0 R /Contents 375 0 R /MediaBox [ 0 0 612 792 ] /ID 366 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 374 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1085 0 R >> >> endobj 375 0 obj << /Length 2252 /Filter /LZWDecode >> stream +P3 DC4d0D".Ña*`<X 8Q "$p<1BAAPe&c #M3n PAh\4 FQ,6 FG7M*) CXTPb0 #ali I(PxCQ@b1F|R1b'nnw\p#|epY@?o]w7+64ܲZRAPf+ "F) shG2 #\aRseD(S L N:26 h7@J.S7 @ +f'C9hm37jɳQST8k` R]K4, X)p蟄 0\:C(!JH&= X$Ø9)p΄lbs~D=?4s0j`P*Ո"%1R"* .%,NC >0// +26 MI2`5r3Uj<4X\De[5->1p٪A͒̈́!šK#.*}pW@Rmij! +ܓGIR46]xǮ+zŵێ# `2sb1 ݋CHF'g}2I?qȶH'fSwV Se}W6]Xᝑaܨ89ph虖/^ۨsjqhd(ZFǕf:^icLzmm8iea@o{.E "Vo!;lgWHj\pn! Mnj\|o7vt<</.iuvHO@ǧjnuI_Aw:n [:PG_#c8 )`rT% zO5`Vg@A<5 +ډ:j-FuC.)oiV]:x>Aib<6[X@ +`ܸCU_ FVYݴ~Ƌbd sC kCa%4Vfr +N([*3-O`ͨ$^zmGnb9Sf3VYXN5f~]-`e;Ziּ%UkU0Xa?0t#| E%3CIYB z5Q-K'\^dڝ?5e%쑫.=95zs}DV]{z!Ycj@42"ʼw/P6%0(#iAooX(T I{=;\} RsN*BQZ  +>};X'/,zi7_ ,)If!B9"z-մɗ.5YÎD$¶Ϋ#vFhi@CM7*sU.2Bc|0''6O/Ce\TIj4K_eE&Y IФgXumX?TF]Y`6ՋXAq`2;}r*樱u`MrB^f< ;snzO[bS"U %-%]FzכPT1]dqG; :H`ݚm)aȞO, |+Br)Om×Kj̺͘@މfP<%v/K7 S;dxVEcPdQ +)y۬*V]L7~5# qf3Qv[,U``@xd l#CMftբ xi (`)3݅W! Z_8`L~)%TAJB@(*xxs@8k=j(CzuiA=J^xp5/OhP Q 0 P`:}2c :mѷu A:tFa:R @CCUi7Ž I06n(Kh+5A-6, !w ޱ+{ +w݁Z[v*'BwqA(@xmЏ1 A<0 +X 0ڃP!6=f8 +kg$Ytp;3Q 뷠'tipY > endobj 377 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1085 0 R >> >> endobj 378 0 obj << /Length 1852 /Filter /LZWDecode >> stream +P3 DC4d0D"eN +D¸4$@Rv +-F+o-VlAn+cnw[@g_ <h.83q3c#A)O*[:'Za L N ]81Agr7X\>' >&۲- RBC)b;C7 4@R.Rhb + D: (9@1H243VhKZ$ѠHp)(a@+R{ j#*: LpԈ .$|H b2rI؂ +i4*Jib3N4rt-QS\%JR|J5<=ồ35*4jUz?W/DR`U* U*2OzWu}QA-;W+œr+YZܕ!MAnWk#}!֜=E^VzbЖ.ASkdQ,dNavijR#w8igR9RӶڮaËePAhN"9&aJOp]h86qM2J쯥lATnD։zk׺{. TzʎeVjЛ$`*=AOw7r/,A8ё=N(F8EkA.krKzsu,uzv_MTKb5rGczEԆ]~g?h2k&=, O1̱PPkm}`9\zJɭ6PtK5P?d[ٰ +`ܹ@e Q1 ˫@_` K]`Ȭ&J3uedT+V.Ouc2HoY2Oa[lY0WMq %&4`$ڔ0`짜u-aF(s6=5&\Pc̆Ucoѝ,V hQѣ>o]*6MŐJؠ[LAP &@EܔoͷɕȻ+xo4UJ[Ŗ Pp#x%Wu͒7!JLF%srYUL”T% oJ> endobj 380 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1085 0 R >> >> endobj 381 0 obj << /Length 702 /Filter /LZWDecode >> stream +P3 DC4b8 "0j0 a\0BͰHB,r(sKHYIŠx i3 @c7 apP%WUqlf7J0TJw=;&ACঙN h\1JH!lPp9DX`(4L' X +Da6`@>E%ҡ*TMSVo9cΏKA,` Ќn}H(Pl7:~`Bx@i7[> endobj 383 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1085 0 R >> >> endobj 384 0 obj << /Length 1691 /Filter /LZWDecode >> stream +P3 DC4d0D"f6Da``6`<X 8Q "$p\0Ɗx r4CȀu2b- CAZ2 $qJ(b9F@D0 0L"n7+a + kY҂nn4&em8Q tCBHk + °4$XH\SԂo|ؠ]UpPb5!kޫ /92O2^lPp9YE"ݨP> +c@h<cH +Rz8 H@17-˜@ +3@)" :h bb:3fO=!t~+螲p<-K`6F*O\`S?O`@|0lB0*DQ C1 Oő]H,QvETHA@c" ;")K-72J6DRM +ԙ%040 1̒WuF-XcJ˘¸HPo qܗ-#[0Mvs_o(DZjr;n4$RAh+Tm$֛*uYalcͤXddEpd8, "h/6-QMW0pW?,p@8gK*b)NH] A]Ԉ`!dcn[NF10n;~q;;ُFz+zoM{)ʫmN >Q ++σ 0@2E^ %~-ᡯ7Mn_;/!0m728-* 1]W.dNC!)+T Mhli4̟!8itIe.&dTUjKlʼ\yF#PUV ˋ.A7ZDEjh- +^SzqJV+y;xƻԍuXka+bY+]Ѕ$jʳW6YK k, NZ?a{Vl5 BJn9ڎJ+xm'NPw6FdT*%RC F` a8AX@yڋ|ԋ#¬x9첗fC= 1Ch SK /}vR +endstream endobj 385 0 obj << /Type /Page /Parent 1537 0 R /Resources 386 0 R /Contents 387 0 R /MediaBox [ 0 0 612 792 ] /ID 366 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 386 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1085 0 R >> >> endobj 387 0 obj << /Length 597 /Filter /LZWDecode >> stream +P3 DC4d0D"Hn.Ñ`6`<X 8Q "$p<1AA a8 &Ӂm2nʝV:Ds PH4f FB3jF1g: n9NGB)VZ1 mл(Pix9OF\L8]rwYT 9NrB(*dQAV+ޕSl]g^[\ 4OQ@nǗ; ʞhLCokusny7uf᧋0cڿŴsոþKzBMT5fڶvÍK'8"F^le0=C7Hϔ~"> endobj 389 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1085 0 R >> >> endobj 390 0 obj << /Length 888 /Filter /LZWDecode >> stream +P3 DC4d0D"Hf.Ña*`<X 8Q "$p<0AAPeӁtb s9J$s +A#Hv Cak I(QHS: Tb.$OFˎPBy44Le_,$n: x9OFQ{+<*GO) w0 >Ӭ ENۀ[4+(P1x#k ô.P6 񍭫G +B7 - f/D@ Ϡ`ޯo m*ȃEƉ 82Cά&BrtD?HtL"xcsC~ xC438H^=S1/oNscOPZPB䠽P'<(:C: ;tL$M65SЕa L -koPm Baod .@> endobj 392 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1085 0 R >> >> endobj 393 0 obj << /Length 798 /Filter /LZWDecode >> stream +P3 DC4d0D"b7Da\0BͰHB,r(sKHYIAA@S7n3 S )*r5 FBDPh2 &JeB +~T($fZt7 "A4"˖pe6֚8l9[wf0ocbHbXojj +`m߅Ma }s>D>xv7LÉ΂t. + +lÈ O d蠂P=s*ˌ!aHv.N`\n?#L6x3(!4"xGKx8J9* ;>/.Z޺qEgv7G9 +<.˒@<1j.Z\K C3)7 #`)"(Oj"i>=Q$I H*!MTiQUS4VHX%f սSN3P5*6 =W4XeYVEKU(Xug44-jtW!\ۖ%q!(޷/"ȴ 3|ŎcwL R$a@9 m#+<yMU@ǃ@3Cl9 ރcH[.J!@kx̷ @鑡Y4!o8y@(RhZVN&3"`1r* 7 4ʾQ'ÞohH +endstream endobj 394 0 obj << /Type /Page /Parent 1536 0 R /Resources 395 0 R /Contents 396 0 R /MediaBox [ 0 0 612 792 ] /ID 366 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 395 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1085 0 R >> >> endobj 396 0 obj << /Length 787 /Filter /LZWDecode >> stream +P3 DC4d0D"n5 a\0BͰHB,r(sKHYI!gx e03y)*ш\1FBDP(* IH"Z+p`9J;Ab擡@m0po8 B, #!D Bbl2f8gVF [ FY ]0Au7/ 8 ϡ6\-4Tiףյux\~pB,"H&@/D&˅ A񭊺h)j*5 ++㚊: $ ":.n`z  |!<p +!+thf(˴*tʡR:نRt<-MD 2!t; P2B!\X18B԰a5ˋczH=(u@+V(dp%C bԡ@4à8 @.4uԏ^AX#pw_es!h[lY ufScڡk4'}2 qI4()n/|Ð6 +f۪EM.ajϢ43C6#p + +6u(ҲMSV4BXm*ه +o2Hy֜#-CT뵈&7X1p6 82xj!mٹÛj`hS* +endstream endobj 397 0 obj << /Type /Page /Parent 1536 0 R /Resources 398 0 R /Contents 399 0 R /MediaBox [ 0 0 612 792 ] /ID 366 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 398 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1085 0 R >> >> endobj 399 0 obj << /Length 632 /Filter /LZWDecode >> stream +P3 DC4d0D"b2Da\0BͰHB,r(sKHYIFx e0f@V2%lc0 &pjA\4-ƕl`r1IDDld,j*04 F"k +p. +7N) +!PU=9LC@QKY/9|npܮ@> Qn_UQoPv9M +ae2pE{#w8T%A!,&x \4x?KjO$5-Vϱ-s.,?O08+?/#2bA3PFN4C7kOMdB6LJ-<\CL,> endobj 401 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1085 0 R >> >> endobj 402 0 obj << /Length 711 /Filter /LZWDecode >> stream +P3 DC4d0D"l2 a\0 HB,r(sKHY((&l2%CTZ9 ai "MȦbj6g hTPb0 `i!3AeâQ@b6넒>0s9A qm2 {Y/p.-i3 X=d.(0]kep;V}7L󹻉|G+_7{"1w!vxZ1nyR +#\TܐeAǦ0l<{9 򝲃C8 &;&x: Pha89 7(*HSJB`7‰0N9jGv&H##t0 :Cd: : 4R֮k6dΓ,Pи޴k;ЁC82 H;!j0Tu .BS&\Qڡo'#| +2M#2@D|W> endobj 404 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1086 0 R >> >> endobj 405 0 obj << /Length 356 /Filter /LZWDecode >> stream +P3 DC4d0D"b1 a\0BͰHB,r(sKHYIƊx t9Mqg7NiRT5AQpp5 FbAP7 sPh2 taa:L OŊ`lsik7fSģbb2J;)o6a& h=F_ Fv((i# B e:gAiXaS]X ! іPdh. FѮ㳿. #h>v>NP&7.1p6 8ҷ Pj:[S9 +endstream endobj 406 0 obj (1 X"\\o\\ܵ) endobj 407 0 obj << /Type /Page /Parent 1541 0 R /Resources 408 0 R /Contents 409 0 R /MediaBox [ 0 0 612 792 ] /ID 406 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 408 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1086 0 R >> >> endobj 409 0 obj << /Length 772 /Filter /LZWDecode >> stream +P3 DC4d0D"H6,"^G)Œ1 w + qs:Sc0 ALr4E%CTZ5fAP3 cI(PT4Dl2juPP\4+. +F0$n8NA9}h&@c 2c~{6u\۰`YE,P/t^5h#N'l`f~+Ƙ8ZV] ǘ9˂yz n HڢB3H4 PP̮ +#2JJH2l!R 000 NΒ 1Kn<F`2p⨇/t AL7HˣTH @6OXL1cH"L.r,-!A#(vO6:BTϑh44\]IJa;/wOMr L֎2#9c4?M$O[.L2O[0P"XH9DRJ-Ptr#H,ҸP@urh7%@r\4ܔ,2OHH-3 $#l> endobj 411 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1086 0 R >> >> endobj 412 0 obj << /Length 683 /Filter /LZWDecode >> stream +P3 DC4d0D"f1Da\0BͰHB,r(sKHYIFx #NgAg7'CART5Axj  +Ic!IfSȀa:D3c:NFS>#UPpp8Fznia +fC)n2 8@5fsWi01B똓ry z71;<4z/@@*PXABg=P*ĶA3 @T; a@ K>n ~0P`Jz* (ȵ.> GcE ϴ1-"s13D1LC6@<';6Qt: 3uGQ +`78H 87: 6 4|#jUCD. H\$(6C #RjtR߆lv"P(Rc;6x ++N6.XaP쫿Oym58*U,:FSv^,=.havJHai!+{k̵b2 2pOJ7YsWC<-H +endstream endobj 413 0 obj << /Type /Page /Parent 1541 0 R /Resources 414 0 R /Contents 415 0 R /MediaBox [ 0 0 612 792 ] /ID 406 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 414 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1086 0 R >> >> endobj 415 0 obj << /Length 984 /Filter /LZWDecode >> stream +P3 DC4d0D"AnzYء `6՛Ceל /~0爱'̂V3 װ#!]JGbZ^.^164,djU-i0gfg CMc Ah44 +endstream endobj 416 0 obj << /Type /Page /Parent 1541 0 R /Resources 417 0 R /Contents 418 0 R /MediaBox [ 0 0 612 792 ] /ID 406 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 417 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1086 0 R >> >> endobj 418 0 obj << /Length 1324 /Filter /LZWDecode >> stream +P3 DC4d0D"> endobj 420 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1086 0 R >> >> endobj 421 0 obj << /Length 1258 /Filter /LZWDecode >> stream +P3 DC4d0D"z ly&ITf`"h;z(2j!!o} s nXvt(R!QQԗ\2aO_ _؋eY67Aaǫu0P4p5jlcR^R4oCV _ww -K>xi-I(Kl03Psc EDM?Ib^^IH&OᙛL6$]Q|Aŭ:2mX aX jb" /QizC`ucWsh:b (@-@jI+c6]0FTl C_׃"B!6@Il* D rP |>drxp(83zB3!ndՃb 4<.9 d TH.T_%>`Bb ЅCb4dޖp](AKɘDp  +endstream endobj 422 0 obj << /Type /Page /Parent 1541 0 R /Resources 423 0 R /Contents 424 0 R /MediaBox [ 0 0 612 792 ] /ID 406 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 423 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R >> /ExtGState << /GS1 1086 0 R >> >> endobj 424 0 obj << /Length 1021 /Filter /LZWDecode >> stream +P3 DC4d0D"Hd.Ñ`6`<X 8Q "$p<1BAAg7'CA^a7r0х%CT[ l D #yhdTh8 @c·# -LSl2An e6T꠨\22z(Ş 2*' EeSu@b7b I7w*sLlPsolF+ R AD &s(@)APiG,%ҡ+3k p0C(=r=C`7ANdAN <, +;Na#"^:à6C>T"2)9Ú1P7 v$*+/@71DLA#`BLK %9 p>Ӌ%n,A *J>2-H!Anr#loCյxঅ ҡD9[NLb,+1-+Ȫ$NsB:-e¢¡ChnRf #u&Ni̞\èإ M Sd,34L0KL ]2:> endobj 426 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1086 0 R >> >> endobj 427 0 obj << /Length 738 /Filter /LZWDecode >> stream +P3 DC4d0D"Hp.Ñ`6`<X 8Q "$p<1AALf. cr9O2@t4D#)u2J :3l0 asPo9E(@fV@h.B@6cxkA Щ60pu$VF pcjYl: +0 j}D@p2(@b> endobj 429 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1086 0 R >> >> endobj 430 0 obj << /Length 716 /Filter /LZWDecode >> stream +P3 DC4d0D"b6BØm 6"x! p9@E,Hf9`1BAA d2 +f)h +)*Ѹ5 aB$e0ut7%CnFieTj*2EAb2*NB[Du);1븳wvC1pP"Tinڙ HC"PYpLqoqrYM;s"3ъgCݮ۽讟Q7d~or4xA. a:`@: \0*A{*I̴@)#[x?C9 ." /kpn&`'I9-p4äXH.f >*$ R ħ\͒o01$ 3 qZ0QQ+)PS8`ܧ:t3 8&s$bҧ +B KhMϋP%o41cU r#= {Z9ybcTz#>NX9 m6+ݓcԒ:X3hڸK> endobj 432 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1086 0 R >> >> endobj 433 0 obj << /Length 593 /Filter /LZWDecode >> stream +P3 DC4d0D"b6BØm 6"x! p9@E,Hf9`1BAA d2 +f)h +*)*Ѹ5 aB$`2Ns)r0(%C)PAHՈT2d-zrdTEA ƓΝPM&LuS-1B#ap΂WC~,cy 0 Y:aAQ[Q@Ç7οF(ɈS!l`.g#%໩?hr \/.2N_D:fʞ0`1z)@2 hXms؍27BrÄ K 6P;c;ԊRx4C|sIt7 #n!-Z<'0(2s4!pl!@;@6*T9 ʃN/J P˭À-BKU5oAT .ag<4!S +"P&ʧ-878 Hjk?֎xIҫj HH +endstream endobj 434 0 obj << /Type /Page /Parent 1542 0 R /Resources 435 0 R /Contents 436 0 R /MediaBox [ 0 0 612 792 ] /ID 406 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 435 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1086 0 R >> >> endobj 436 0 obj << /Length 753 /Filter /LZWDecode >> stream +P3 DC4d0D"H`.Ñ`6`<X 8Q "$p<2AA@e: 3y 3P) #MSi7%CT 5ᠡh\41po`*&sUIu:η]Dp YpPl2<03#ѝڱG/zkEAT7FMxw4s!\(C{:[^7qwc`V :e"{4#c62!l].׃/xNf6Ak bj7B,dB(2Kp=nŸ/:cHַA$q@q6,'H@#, Q!/H\y&2CqF$Q/+5/-t=P:LMZ+5ml “L C0pL%C侩 6P:H2!.z.)c{ #z<H0M 2;-R}W5Bv +cH08 (_oU ʗ3t"H@HK)9V( x*#Gzp3m7 I϶k^ +,!iֲx֣M@!X$5nFxh: `a9jVXj?"`1Jx2Cp6 8f jk`{BLXjņ-ЊH +endstream endobj 437 0 obj << /Type /Page /Parent 1542 0 R /Resources 438 0 R /Contents 439 0 R /MediaBox [ 0 0 612 792 ] /ID 406 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 438 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1072 0 R /F5 1076 0 R >> /ExtGState << /GS1 1086 0 R >> >> endobj 439 0 obj << /Length 1334 /Filter /LZWDecode >> stream +P3 DC4d0D"f0 a\0 HB,r(sKHYINAAPeӁtPQIP a0h(qU#\l6 * T3Il:Ùi7m> EޤT"O-v6LW:Tbr٠d.xQa9-]9Ƒzp;_8<.X(EGsy[ow +1<g8@=/{Wd@k|Z]>7vKu$T"R1 aRa9<@96\X94,osd l2NLO9cM/SEoe= zELqB`DQBFa\s CTN1) lP?1G7l/6mRRՉo]Puqh¶u[U]B>c3;O޿c69d5BŃ@0c+K Pam9>4 *49c3>J9X给ػ "6=V*طXc2da\:J5c{矅!)]U]I>K.6K 1b6ΙlbӪ<3w*8셻I 6[bZ`>9Qaus.8>C9#7Evs;J8b€d88_ҙ2`8n'cA@(eϸ٩h/G㍯Oݳ SeAh6[ t͙S E `( +endstream endobj 440 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1561 0 R /StructParents 336 /Annots 441 0 R /Contents 442 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 444 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 441 0 obj [ 3183 0 R 3180 0 R 3179 0 R 3176 0 R 3175 0 R 3172 0 R 3171 0 R 3170 0 R 3169 0 R 3164 0 R 3163 0 R 3160 0 R 3159 0 R 3158 0 R 3157 0 R 3156 0 R 3155 0 R 3154 0 R 3153 0 R 3152 0 R 3151 0 R 3150 0 R 3149 0 R 3148 0 R ] endobj 442 0 obj << /Filter /FlateDecode /Length 443 0 R >> stream +HWn8}8,Rw`d1&aa݊%QK)އ ⩪wOW_~PS + wTxJ= +/4 ҹzWzp#g~'~ȁg/<˿עM^wz)P/+"y'k-1SLsq6yfЍI4AqAİ) w߂CwiX3BH\ +M#JЈC25E{Jn ?:i!(\BIȼ {MYcJr}}{E( LT-l !29~C!-*γC^)/4L7-}޴C›rQ~E8vo[P-|f[uQ2-/2uDD1y;S +e@[G c.Ϸi'j,fªY݅Zg?GC{b٘l ((KQ6DprʅQjSݱjRIE APLd]pֲC^wʌ792_e^2N#7]Vj u*)[!!ɷ?7Xm^ku Rf~k ϰ2배*:Tw]pPalʶˠ.`Eg|%E֏ٱW\ލ w)%.JtT`Zep,iؑtD&oG_zRm2'ԍhr b/#jU]e >?]jݺX{(@A+o+t +QI}25`ԅ| v~F{:YDb}!6M]H!,|h]86DZNDF6S)yYv"`Ldng4@6X2V\$\P/[.Gy÷@3~iD] G.Jv؉L6ݱHMCY-YQܽ@Uo= /_jK~ލ6(I27Fu* +"{Å6Cɖ%qtEc/ڧhazҐ޼"2%7&{ +_wB'#v]!D}le]rlǥeW[H Gt &r )~ńḇr"fIޒO+#VIm͊ [m}7VO VMsM=$U6D< +^$IL/]Ѯn$qt> O[JB nC7]gG>>'V-ƫyԎ(L@/ +Ctƹ޷ -[8R..tEdEWU+b\ߜS@y RխOq9U7QEoY o8:S +FUWϗ*%Zbu;L?+F>h H(Ľss=YܶO/~z2.OHt Ʃ{Fgi/6\N'So֋ĸ a a3['h9̈́Fs)غN]; ̵<$9S4'Ăn7Z)؛̹ 1 +g,Vs uQiM@ۂ}^p5[)TsU(4\<NtR{ +W[DjP{ $s5=;E.;&sq^+%j ĝ01ZɹOXwM4\366u'i ȍ,Dp>c lX~^c(Y[`FKR 6_]к#8 0=lW endstream endobj 443 0 obj 2149 endobj 444 0 obj (o{a%-?~6) endobj 445 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1561 0 R /StructParents 361 /Annots 446 0 R /Contents 447 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 1068 0 R /T1_2 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 444 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 446 0 obj [ 3135 0 R 3134 0 R 3133 0 R 3132 0 R 3127 0 R 3126 0 R 3125 0 R 3124 0 R ] endobj 447 0 obj << /Filter /FlateDecode /Length 448 0 R >> stream +HV]o8|n3%R(:ECPZ-֒d:AdZ.ys-܂ ]8:.>sBS0-T f +o:ȅ.QlJ(c$?.xİ1c߇tf_`#Js7Јb b Xm r oΧtpnj;:m q wsߟ 84$fO0t($GRw2hwK#V>GQezG Q:Of3-B jQ +9jr ;*J[`ENm +12ePoɃ`h3tq> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R /T1_3 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 453 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 450 0 obj [ 3204 0 R 3201 0 R ] endobj 451 0 obj << /Filter /FlateDecode /Length 452 0 R >> stream +HVnF}'*LEh4u`N"Qȡ KŊ%eʭZ 3g5zu^I,@%ڍܓhd6i@V{guWоǷ Nr>b KYIk4g7`1A$fq=Ǡe6;[? ɞf?N3X\mxM$ /Џ`yVA,˗VɍbunJ^,;=hsO/腝H%qQ.XTSX!cUfVU SܔfdLn8jg,F^t-IeRZV0h\WXo3^Sf56+4r5 +!uՋ1ItGjNn&ϫ5MfAe5Tܘ +IJ }Qv޳\ll봂EQTbc(8OY2F +VrKsNU dfn8.ˆ :>6T-_ +5LdÐ*; `EpAށ Pʋ?D0(H9p']J[(f(c +G)ahj +ٯ%`#esŢ 9 ~q˷g HpL $f_;V NO.5V'!Z#hEs6HkI;j{ ++S&σNҩ?A!a/i[+8{ro?;I k[&E[8ܦ+B,buלGpL9}L:hl,\`u_([(w$%=XbY<69:Un0TE6+ؽ +aetiۖJJ 0#<eY# +D7lVV9=xZԅZ|~4no+*r-rt]*lBJְelRtqa ;~- #kHYʢkOpMwhv1 ?X-3 HsO1A$$M9mOߪhLG\&'#{R +D֊ Fi=0(['%I[O'~TR6;U44lj~^hĬ4Coߙi^i4TsOӗpJ߂=eMӧ]P pn7{!>&h endstream endobj 452 0 obj 1290 endobj 453 0 obj ([XrVJ@) endobj 454 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1561 0 R /StructParents 373 /Annots 455 0 R /Contents 456 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 458 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 455 0 obj [ 3220 0 R 3217 0 R ] endobj 456 0 obj << /Filter /FlateDecode /Length 457 0 R >> stream +HWmo6. -EbEtdK[0-2TI*wdٞbXNw=ϽЗSxfz ys}{|u<4I?~w/$B'|ʹV +}͇OAk@{?௿=DKZ $sIB"6?;oo~0z,s91gK':! nOU[Y+T*x5/|7٭s>?E +=c*bimf?;RT$NrbR毮مFZ6Cǣ0"6L'Ϭj*䑊֔+m pEy@,5IRyZ4fstK3l+7~s|#7 &q5vx L'ZRmaOi1NbV0k@ÈXƼ)f%Xn̈́4. iF5?v4ʬ HPCXKfKDH9hʼ@Кnc?nw!pa~6LHw%߁;52  LxѲ49v23 X^\'cpT3tYK rn\VCrA@ +sNfpjAeUV0m짰dRi#vm׆}s +JfK-IYfkOn{K=QtFO.BFQ'|u`F%+ 9e&#]|i@8oOi/gGdIhҶ,ެmYfcTѧإDV-+8l09oTެ$h5@JJpF +gExčHn. G撚YnDVy[i +5يoR;ZW8<##[O4F;y7!C61<6GRjЎ+L endstream endobj 457 0 obj 1424 endobj 458 0 obj (HkX\)ij) endobj 459 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1561 0 R /StructParents 376 /Annots 460 0 R /Contents 461 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 463 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 460 0 obj [ 3285 0 R 3282 0 R 3281 0 R 3280 0 R ] endobj 461 0 obj << /Filter /FlateDecode /Length 462 0 R >> stream +HWQo~0oq6MR(;qQX=TE"W$%7$'vNP3|~k +駟n^|ȂjyI>{NmtߍSO*z^F(_JR'#o +*ܺMgoPUQ!e[`̪]mFZ]Nhvj[1u`muPN%# u#voq_Tw|xԍ*A@Y6.V +ɹ}=to67 ,"j9\PN集!f'Slۀ&Pm%i,GN#-s$p) ِA +Qa_O3Ql +tasb\WȚ+ܾڪm̓-_2t#k#2bM>Ƭtx@ZsDP\;9[DtW8/Gq?]ixO?k?u잱eՂEH( ͢ό7 gDA\#24d@z(1Byɔ*t`#y})WL Ρ6YŮQ]_Ȁnz&ϗһjmΒeҝk O]G!jnmd]^ v66;ѨL*^U~tC :O;QK{z+w%0XYf=]rsQ}J/G@D\ ٣[܀R@+`]0tȟzTáj l.rWX%=Z* pF`p1NgˮO!îqJB$E,W5޲}Q!Gm{RZ;v>=N ١Y@#SrP؝l$ ֭ryحb亯PQmW4HPkXOYA-l+7D9,jІ7Ȉ=Wx1W[|Φ;<~< +zVy99_=dZ3{NFqbw.U{ҩnR8{]pEyX1vY!F}>"]O42/>p +N_ Sϼ7}eF,W{ :NEyz3L;ܹ`p{LgAv +pFb+Ak\dwG6:rٯ4SYV endstream endobj 462 0 obj 1848 endobj 463 0 obj (Ui{N&:[k~) endobj 464 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1578 0 R /StructParents 381 /Annots 465 0 R /Contents 466 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 5058 0 R /T1_2 1068 0 R /T1_3 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 463 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 465 0 obj [ 3279 0 R 3278 0 R 3277 0 R 3276 0 R 3275 0 R 3266 0 R 3265 0 R 3262 0 R 3261 0 R 3258 0 R 3257 0 R 3256 0 R 3252 0 R 3251 0 R 3248 0 R 3247 0 R 3246 0 R 3242 0 R 3240 0 R ] endobj 466 0 obj << /Filter /FlateDecode /Length 467 0 R >> stream +HWێ6}n+ $ӦE>tBi,);ԍ4rJ=sΐsF›7ϜρG!)Tg5\ b`sBF6M&~&y|v\y=5 s&e3QhWbgJ7Zb1*D}1Oqc˜d͉RiNr*M0ӬIг05+7 \ +þj/"Y|s\hMne&irAڑ[[nAWs^`d^5u s?Jzkqolwjf>}a Rb;Cݖ4 bj1`y`bI^?uQA]khԄQOYhhųV H&g1|PBZ7KmG k-KdcY^6(\u ~r~CkD5dvDb+̨*E]LCMfY}fk2wd< ?\&ܩeuZɥMP#I +u+V":Zur]& bNOͪUс4B#iYNZ4*9Սg(əD)%$t;];G$K|-Orv\Y.if\:] 1fq>]nQi& +eFX:2ޫNcC#%C%02%uSTۧ[+g'OK|6vb3^<&?y,"xUDGu<(@uDgEyf=nU +uAn)XtY@mAVE V헌tFlOqRO|e@;{k38 0" endstream endobj 467 0 obj 1555 endobj 468 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1578 0 R /StructParents 401 /Annots 469 0 R /Contents 470 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 472 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 469 0 obj [ 3329 0 R 3326 0 R 3325 0 R 3324 0 R 3323 0 R 3322 0 R 3317 0 R 3315 0 R 3313 0 R 3312 0 R 3311 0 R 3310 0 R 3309 0 R 3304 0 R ] endobj 470 0 obj << /Filter /FlateDecode /Length 471 0 R >> stream +HWkoFN ~[8crENIZS#1Qӵe)>=;W/.ɥ~xuyyℓΧoSr2ox(\J pR9<'ȈӖp=}ߟsiA2uv//TtVZg)B7!p[obtm$z弚;sxtxb/0ADq 4/7BUYպIL3sQE+yeQʻ!."7!ung^Hlx#1 MkaF8ʒ~D"]r!@lH(\΅7Yd'inxiP>)}WՆP[12[ >O&O g,L4xAƩڨRp^F!49 :MD;3c0 +:dJzr!g$sQ.l/87mGo>ìs,261pI8hxtμ.NҿK(zG40r#t]Ȳ~X`ƐGawg<{w]ѧ5zHe}V@Z +Q["]jyFŎ=ΩuQQŽ,OjEZ%N QRK7&j?QK6~4*gtudYg-;#H +hD-+R( TgՌwz?},.SVmʨ^5j6\_jST\.Y&Zm0z;"ަZ +VM*9baU˥IwDUSR"Y&3N*Z5B4b'V6v;+- l?纩gJ޵h.WY)F8߁B' zo5ݼx{K`dt;9MsyU 4BlzԇU4n^@6Jw4__S4*k /-l_ſuZf-HI+$FB˛+[*++:h) }7;O5pTŽraRzE1 cvZr h|t }T[7 +Ic lt誶XhA E5u +~׊T$ &4Nݟ9;[/S9DD>:z@LCv|XDkn ph,Jٿm۬~HG._m:U'06:whNzn{oPC^O c01{(f:僡1F[谼$xF4F68C +̓2e[؎_Ry3ԕؓO3dj_@ H dI[)ёzٙKcS=%w=|,DCD&_n[-2u'~pzES( +'E_hhR0ޕ> /Font << /T1_0 5056 0 R /T1_1 1068 0 R /T1_2 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 472 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 474 0 obj << /Filter /FlateDecode /Length 475 0 R >> stream +HVMoF [@EZ"P; V@.7&~X}쒒M/Eμyff?˗o޽1zufu0elϩ d6xP48KV©{y+mT-Q95^ ?cJif,-JI+HYjeJ# *WR$:xEEyJHU'ɩ尖xWڄStgtp__ċ4hzpt{kz)T!ۊ\>{8 ƱupRmC8G~ ,o> Ώ|A|g[ڀKzeo4Ӫlo !AVFoi 7L2fK˸g*(O_, qЀI#[#l\Y-w{Q "w\m+s4;Djn_Uc#r'VE(Jntrrf#(׫Ȗɺe|:}\ZaA!܁\jzeBlVPZp?"|KVf rZjdH!*8i\+cU^2hA!NUmMl WK|ʣ\pa5}MH=Ayվ*($EZ+[ɍXAOPVEr#G>+uKâ+Arp`DBQQR+>6XaL'~G77.~ G@}SY"DcQgb_v8,l]Bb!@y5+\Y-Hz|44Sll#dzێӈm}Tt̓x&l_Q}$m9h{C.~!4;<}|;prxlK@dB +T( + cPl YIIuUI zKozۄ>zX +%׍r3N5v~"NiMȜ]wIm8S?K]7ZL;D,c8džG.۸dC}t}4,ensVzN7a5ෝ<8z/1= L^0Y7K.O9l_8KmAL<"ܔ|Idv-QAp( 6ʕ2s>euwÌė.tAFSm7}WtNBGhb6IYF{hț)e0ܲnyQ&?̺p ,U/C(lzL[!ڏ8`O+Vt endstream endobj 475 0 obj 1335 endobj 476 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1578 0 R /StructParents 417 /Annots 477 0 R /Contents 478 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 1067 0 R /T1_2 5056 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 480 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 477 0 obj [ 3426 0 R 3423 0 R 3422 0 R 3421 0 R 3420 0 R 3413 0 R 3412 0 R 3411 0 R 3405 0 R 3401 0 R 3397 0 R 3393 0 R 3392 0 R 3387 0 R 3386 0 R 3381 0 R 3377 0 R ] endobj 478 0 obj << /Filter /FlateDecode /Length 479 0 R >> stream +HWNH}P/(faYgpˤ[KMSUTxj {у$R$Zf[gP0iUlw-_9GIc֓nVoɪRu[ uI˼6Mdڝ`D׈"Iࡒ+}^EӨN$FB !<\2`Ƹ0#,8֍Q%lUT;4Wyk4iXu +<ٯ'Գp] %~'\z]+586/깗Xnѯwe[3RC4@eY3{z14eL fmkVb|0&@On"+A +uo(U s<Ű= +?9<* +V,lzlb]1nl8#BAjڝ!2!3ƿѴ]FjϬgzw[;QI#e2318ڍAĖYc|[ ]#ou!]j'S_@b#Iq̧.VFE^Sa4}%Ԫ%Ē\WKW(a1ƃCYlbUn+]ߔf%הے8z#% +ސv98d]V,WէP9PqoE%v'UVJb> C7ig (2X'#b.+< {ʤ2pFTY@_;(Jm5 7їaqS$7tR2~4rS.=,{M [qC) ]U.;XWfWnv?dn!@UQS -I]M3čepbGƿF,'39_(Wt*/ +* ^>K[m$6>v9J^{QJ(쮂yĂ + uYOXc|8+o +^6 4fO7)&k\-k0j(b+Ew+!0 ns]Y %#ydÉ5d'?X&&ëRo.mv6H$1DŒ,9[Lfn<1uV^. h__"N: 8 0 endstream endobj 479 0 obj 1823 endobj 480 0 obj (/Ymf') endobj 481 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1578 0 R /StructParents 435 /Annots 482 0 R /Contents 483 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 1067 0 R /T1_2 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 480 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 482 0 obj [ 3373 0 R 3369 0 R 3368 0 R 3367 0 R 3366 0 R 3365 0 R 3364 0 R 3363 0 R 3353 0 R 3352 0 R ] endobj 483 0 obj << /Filter /FlateDecode /Length 484 0 R >> stream +HWێH}Gj@sH'%H1jZahdf}1\b2nsNW*VYy],| ޿4 =bP3ߡl|Xg<o|W? R0<ف-y`3#AAt.J3#*"o@,=酎Qa\Tuv߰IU"ҸZ]8P#5fb RT9+X)!.SLHHO LP$ b:CўA(!F0LbyC,ڛpFgdLǁ8x-D>ureρ5vYv{^^ Ks 8x晐@'CJa1@ |Y.d;u 2|PxRڍT V(#%9F{Ӧ3?^_|Dډ?"l endstream endobj 484 0 obj 1100 endobj 485 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1599 0 R /StructParents 446 /Contents 486 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 488 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 486 0 obj << /Filter /FlateDecode /Length 487 0 R >> stream +HS]o0}ϯ8k ҺA=4h + 9>'!ev_{9Amo}a]uIÔ 0y>`B҈(I}Hjtl8KXzy}Z'2Jf}~4\)[l6aŵrHIYvUV3H#)"OEOG=-\ߓTBj55,U]& IQ0KP劄Dz" Zm\ ߩ$ĢSfڪcOw&駻zI9,rofc݇,]{)筂AD)f=a=vS's|@n5g[Q > /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 492 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 490 0 obj << /Filter /FlateDecode /Length 491 0 R >> stream +Ht_@Sׇ-@[V!,5&(t˥LTC)1硽L8xN?,"I˔}c'X K3չ)UҢ!E-؂G_CD[.z3tt?oHEȼ4 fxj tR x|y4תJRM#d6x9࣒X8LMy|6֌!.ںRIڠ5{͟} !XMy\,yV8gr<7dyA0v3XF yq'N9UdxxtnFu%5(tD?_GB6芳u̫^d + +MUP(wq 7Y&oh6~u#g)[>] endstream endobj 491 0 obj 419 endobj 492 0 obj (HiWErp ) endobj 493 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1599 0 R /StructParents 448 /Contents 494 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 496 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 494 0 obj << /Filter /FlateDecode /Length 495 0 R >> stream +Hlя@<זB[N! +hJLl˚vnU4倀/37_g1z)|ǓiO^EЅ|.̋Ĉ> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 500 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 498 0 obj << /Filter /FlateDecode /Length 499 0 R >> stream +HR]o@|biA ZV(2a39(@}ήѰzh6[W՚ ɴ_D~gCph=v2K$3%yɵYhÁ7ќM+~o*7nh'T~NVCw2p*9,a?Զ]xL$|E ,x@hfl/vcDrR ASEb1)&Ym^$pC`eHUēy0-V>&"6Ⴁwm#EX ̨~4O 00 G^1R +(oG": Z|w)"ИN 󀋭&i a2'„2xo ї"`ʖn7SO"P 3:fHҮӻo@Q,njGgz2ׂ_K)9'$Lz5\7xٺ$_\E/.̼D;ĝOhm endstream endobj 499 0 obj 544 endobj 500 0 obj (odrf\)) endobj 501 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1599 0 R /StructParents 450 /Contents 502 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 504 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 502 0 obj << /Filter /FlateDecode /Length 503 0 R >> stream +HUN@}8UhBB.P ATYjUq֬w&4B{gGTJ$gY7׃s4qrrv>p~;M}j ͜U]:N (4܇Ι4֯&Zp'NkE_8t7r>6R`j08V:>>ƗϤ$䀳F )m׆{*΍V7"h+%qF0-v QPD@Micn1=,o.Gz.ln dqǺܖgXlbH>P:ɂyy7<'"5̔i''@-):3X3t0bfkaj.*RQ/ќ|͸r J"K" j.cM0ŜDڛAQarY=f鏯%sZ??[HiMjuҼH($NN߳ak_RZM81AgcXƵA:w3y>gz}x*L&kf7|=D K~R[Zg~͢GKʫl)횈ٔSUE]N6?16JBW96xWJ%1+ϔ+"ޥB}]&ReLU2ɅU5/}*""k]P kr6^"NvlcT-Ĝ FB luۇ ׹8`D endstream endobj 503 0 obj 776 endobj 504 0 obj (h`iylh\r) endobj 505 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1615 0 R /StructParents 451 /Contents 506 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 504 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 506 0 obj << /Filter /FlateDecode /Length 507 0 R >> stream +HTMo@[x=T"H! 5$"bT J;kCcz꥖ޙ7o 9, g#fsRh?ڈoͼJ($3G3LK/~},z8{M AU9JG78S- YIE@uVCߑ˶<+O'ZHuƠ]1؋&l0I O#S1-qҬrF*r[FBpeN{_܅]\0z( endstream endobj 507 0 obj 664 endobj 508 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1615 0 R /StructParents 452 /Contents 509 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 504 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 509 0 obj << /Filter /FlateDecode /Length 510 0 R >> stream +HT]o@|?a6iA-*!,*>9ƦKw3;3g80\ͦq`o-3o+M4OsVTpg#p/&FeiBb1MH xq=ffqyo;̂%C Z :cH=M k?ȃ0<ƃ?UUeX/XJTF?p*xV#*K*eJKRѺ}Gu!ZUE h!Ʀr})UY7gE Ѳs)*8:k53D|$HHxiE-,U)E +Sa[^,\~^WBJ]%n_nu\u  +%|dxۆU6Yg港,cbslg_JreKN$Wﶫ;2EէMs!"YА@PyAϬ2 )Wtd>ݗHKℓ{d~=%_`? endstream endobj 510 0 obj 574 endobj 511 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1615 0 R /StructParents 453 /Contents 512 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 504 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 512 0 obj << /Filter /FlateDecode /Length 513 0 R >> stream +HUn@}?L#%16)(CEIK}+dً۵"+ߐ=3̱4W?OwwSU-z +0U,nAz"-Q]tM|NMTI=A[ +r7~^}Bt9M +0XE=jiؕЦ{d%?bMBC¹gHe)ŎcV5ԕ8K-u`xR# #`0Y8)z"6t]tTRqQ tW,I< 2C|3 Q-,,6]!J-42_7 +͉m1ӠcڦoNQ5/Q4xIlFu^> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 517 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 515 0 obj << /Filter /FlateDecode /Length 516 0 R >> stream +HlRao0_qcn T46 U:i48NmӎUJɗww|h΃/Sx'Ӏ}Im Af` -bh +!YId $#ۃ0%e^|t/K-ZKDMV !Mrn3FZn3cvn&_IQ|!E&d<ÂƲP[ޞXƻ :"EKnQG.`0`Z L. +JR5*-#{Ɠb)dnj#i4no?̅xGI=c[MG6%+ ||B*G!?~캝19*y93hd)1q$ڰX<+!bu5TPlJerc8SQaNn}>lYzSd6w u endstream endobj 516 0 obj 496 endobj 517 0 obj (\(|:sڋlZ';) endobj 518 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1615 0 R /StructParents 455 /Contents 519 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 521 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 519 0 obj << /Filter /FlateDecode /Length 520 0 R >> stream +H|Rmo0_,S@$tQiI4$;V%0t?$g=/wxl/O38L3x4nQḿ)0;bL+1 w:p w߻̰6A1gm"ٮß%3\,Ue\XP|SI uҋ"WBVDPk$hS vb, S@. mjׅMY%'&Wradr}T]ELQ[q3bkۻ7DCrXADڍPYŏ (ndj|H"$ pr57w`A9t P<8f-ߩ-ys /Md- lA&p7ժI%ݿZ_Ud./_eԚ(VJ4F\#1_xW endstream endobj 520 0 obj 511 endobj 521 0 obj (iWfҍ) endobj 522 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1621 0 R /StructParents 456 /Contents 523 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 525 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 523 0 obj << /Filter /FlateDecode /Length 524 0 R >> stream +HT]oH}8bHKҤh +BZb%*ǾNfә1mqIO{9cΤss9~{.Fwu߃&!TBOE|"Yƹ̵jC <:Ӆ %/qIA5:әE>1)b AmF_|,j+41Y]p2kroM6 g,H%&BEzQ !"o$")L!.DXWW 6 TÒ9-LH [[R/5Q v]DR>M ުya!"s +LUAH>ۡ!"f"͜ ) S橹';Hs]nCX ahl"luD)&+S[rRn-Wŵ9g6Edc:تɑ`דqLe:58C_m6l|gHF-7ggcY( OrјS> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 525 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 527 0 obj << /Filter /FlateDecode /Length 528 0 R >> stream +HUn@}W& 5J}D+K}V&ʷ.v;vm/^{33gxSf~ r!}Tz7DpO=MpCR>:Ggz ~+SRLY//zF5R3v\ 'ND@`Nr[Dcꃸ`R bulq0XwvlAVR?S/avȩ0'djsx2ÛuUL|@HLVV,!ӭoaZ;d\XuNEH#V s^^tXi-WINWğQRV^VTU=YTQ?=KC,eg4-0dx64<폃6.il( 8v(cY 1zV@Vu"p!{8S1U⺻>6ٌŊΥf& +c Eܯ;Sx&TK5,׫[-̩ \fVsRxJ䟿z[#M$A'Ym_ V.ʚg$^BR[ endstream endobj 528 0 obj 597 endobj 529 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1621 0 R /StructParents 458 /Contents 530 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 525 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 530 0 obj << /Filter /FlateDecode /Length 531 0 R >> stream +HT]o0}*hp +JRMYk7ǡN2]CX0 )sϱmкB<Ԇ+# 7N8A¿I$"C(~+X +ޜ- +?> z #? 60"q^M1SMB$oдt$F|l vL Ke23۟˳-8DȼK7!Эb"f{ScB.h+v>KR%4T\((.6sXLӿm]9Ab6<\ +1{LLx p=^<z}1 d{p!y>t\ C1j3y+.} o8a, K&ıA-JRZrXgVbVtMe5}ٓ|E_#(~H琑"J Nsʷ(ֿW"ڤ;9`)nܭ~ܯjp)̷#7/T endstream endobj 531 0 obj 571 endobj 532 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1621 0 R /StructParents 459 /Contents 533 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 525 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 533 0 obj << /Filter /FlateDecode /Length 534 0 R >> stream +HUmO0_qco4iWj-HDru8vwN$Njc7~sk}92 NOGCްp}dw?,\004"=a%T `ƹk]аs>>qw=&,F:mهpGW sn0_ЮaO@%dL!H44z{,` gz,WB9"SJAm3eϔ>g5Gy5ϸx^&0p#h4xne[͔ K^I'iyƌ$)31G`MJdPcc@CG$HzQ }!~Lպ9'CRWN78( 00)Wæ\WX)oո)(HI2/=S@6A+)AC z-R_w|Kwk*Q(*h.^i, ],6Tgw{.r9l#JVhNW͉z*ԝ#> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 525 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 536 0 obj << /Filter /FlateDecode /Length 537 0 R >> stream +HU]o@|"2M@C %M,W9}&Iwm&vP[:ΎYs~A NNNGv0X6t{6H}5@lZ p+P27 +"C$ArLϚoYiw^鐭%=W hܛPXŤ08@9֑ 4_H"5!(z_y|1ˀ̼]F9JQ"E7Ҥumzvoi/;w\KdIoR}3>8fR}bFt64L2*mMa]YSYvIvez%z՝u^!fI?z:zީqP Sj-P_^>zss7jfZZgP +e/jz=v aF4 +Lrגl$1 P.0s/y0i-,FT.H챧' t endstream endobj 537 0 obj 559 endobj 538 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1632 0 R /StructParents 461 /Contents 539 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 541 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 539 0 obj << /Filter /FlateDecode /Length 540 0 R >> stream +H]o0+^i(qAMĶH4OMS U;IBPs>{~t:֝|0 +zцy9M8,,TBi^0y +ͭYdӃ(GN|ma܂lS& "%e9+v[/ڶ;=DUVN hQ^`g%14po~oXuiJBoeDJӸږTlW Ҭr#///"1=ڸt"2Q5mC]ڲu) endobj 542 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1632 0 R /StructParents 462 /Contents 543 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 545 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 543 0 obj << /Filter /FlateDecode /Length 544 0 R >> stream +HTN@}W$ǡ UZj%!$kص!EMW;s\xStqh&zA߸2tqZm ÄߚSp_~%,<Ɓkخsфwb8>wa 76*~ry't«*v/YD +3ASL4Zp9Lbld*8bSHmatωDn n-^GJÏ +Dj NflUDJaH\fGhb Bfnqa uäEтXVk;cy>dVqD٘1O^)5=4Ҥ;.lұ8%zN$J1>\#UHv-&"!nx:#Lp@ XStlU8Шv)5Zͫ:s{·堎UN9I_ur +rI(G#^BhagTzB@&_9oTK# ,C>z˱֩=})*[m9'DzJ_'[A=>HfR, okzC' ˛fE,fAjΰ),?$R_N@=9Ԝ8i?Rv0Oe6+95tׄ|l:Ho ̡ko0~ 0. endstream endobj 544 0 obj 691 endobj 545 0 obj (AN2i6) endobj 546 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1632 0 R /StructParents 463 /Contents 547 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 545 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 547 0 obj << /Filter /FlateDecode /Length 548 0 R >> stream +HTKo@)@;Q)v=X`U^F DQ.1ԇb}0|2?banן6`juY%?F՝" b~GX@0rӱZ`;f +wtNDP{,%aFg4icp6ME;+$=3j +ʧ@S2o/ALJ|)<#~kM'5?Bz>Ff w#RUk(GbR RO;#9X^*Q ;/{~FhC}gj~VNcDO!A.Y/C39F:n'_Q#*&1АFI-A*X[Ж +.FڿSKpȲGZ&0¸Ua% 1oM> +h}ZBa.%DWgZUZnyqٙ} Nm"ޚ-/0jd..b..`^/)-N.ܡ^u2e_g &8Qz@ E @g64䁜=iTRw ԕUͦIwY45:AK i}琻|W,< endstream endobj 548 0 obj 662 endobj 549 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1632 0 R /StructParents 464 /Contents 550 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 545 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 550 0 obj << /Filter /FlateDecode /Length 551 0 R >> stream +HTQo0~p*P@Ї&M[ծeB&8#q:Ǭ*TD@ؗ +'rz') +}K,/gIiJp.ܩ.1ru|u{?:֍DkgcmD8?Yr NUz8ɰwg6 gDuL #plu"lNpLТ]v=&_f؀窛Z@<}_sڲвJTa20F9oU쥘WȕUjC.06D y bAsJ fqhx~dI}$oG0PnRSL*v)V2ZtEپ&\  O endstream endobj 551 0 obj 597 endobj 552 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1632 0 R /StructParents 465 /Contents 553 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 555 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 553 0 obj << /Filter /FlateDecode /Length 554 0 R >> stream +HU[o0~ϯ8ZnmQ):uZWe1M!OӕU;^4?M{ +Avt3 W㑱2:~Y&^Ē^{mp`J̸ف.X,ys +goZ''`qۄQm[zfǣY ~>,t"Mۗ +*AmDr5 *&%g^ Y1 }$/ 9q r endstream endobj 554 0 obj 764 endobj 555 0 obj (\\i\(a-tB) endobj 556 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1644 0 R /StructParents 466 /Contents 557 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 555 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 557 0 obj << /Filter /FlateDecode /Length 558 0 R >> stream +HR]O@|?a8@U$ ၇Tj%.BƹC=)wm@'/fvg&0]L7(_h~PU΃^R DF8K2-Sa%w| ,?> L Qp 0k9*6ܒ!/Oy+f,0p-]*J{;A7S*|CE8xV@es;ߺ^dˊJ JEn#v 9>QeI;D~4RFN眫$R,M}%͈t,|L:[Ȅlwߥr#5I+ܜM wh!3˘t>D6ūGNd[؟-%&.hIS:P-?244ˮx7pZ~oaN{v^r:f`u endstream endobj 558 0 obj 478 endobj 559 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1644 0 R /StructParents 467 /Contents 560 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 562 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 560 0 obj << /Filter /FlateDecode /Length 561 0 R >> stream +H̕[o0):.-0 Jm6&c8v6j}1%zޚ??C:ppv i5ɜeٻ A%LKNAr;ul.oA?vJ2 ٭䓩4k1Lh +I 2H\L]‡D@D6n1a*jUШݼ 1|O5x"cb +!P31K!P&e2H4.lFT5뗳TgQa":͔v\\GqQ`/Pl54J :JyR +J">Zxla.sY̞B0Jq:ZrDJ޸W2dQ#F0(k-vh9+dQ.(qJžpC v[a[x$ө[6"Ş:既]0ˌc\cl& 5FXh$uL mHZPB6he·A{TF +L@o3Ԋ1l\عc.qͬ?,C^*Y9`^k endstream endobj 561 0 obj 720 endobj 562 0 obj ( TӸ6-) endobj 563 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1644 0 R /StructParents 468 /Contents 564 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 562 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 564 0 obj << /Filter /FlateDecode /Length 565 0 R >> stream +H]k0aJM;ڋɜv,٦[n8dE"9$yΗ;~#`0Boc:>h꠶oeH@T$wfIe*DC\` 1»jCjH,cf%srMȨ?+KH _RJY.w0S݃g-غ/_S*%81+=!>כ> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 569 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 567 0 obj << /Filter /FlateDecode /Length 568 0 R >> stream +HTmo6_Ďd$rxh^:RJQ}Gʲ=yI/#l=:8=\E>qvvя!.O0<Ԁw0S!̊'iH5"Et!IVy_!NNΖFLgh+'3Eht9m.7ooBMq˙[<.V 7/7ݍqm'YV La) /qΘRVvX + )SWE +TAhvKu[ɗ)$ȸy[.A<eCD7>C+-rL5[\F*XiǂYN\go-T"1k~Ns;=;)WFxޘA̘rL\q) < Ft@m'N$LYS&sy;jԺkE(> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 569 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 571 0 obj << /Filter /FlateDecode /Length 572 0 R >> stream +HĔMo@sJMr!CԠ6UUnX8k/Y/(wmcC-Yvfvfgg:3\ p`<]?8dƏDZ~-5.$LIƅgtO)Na!y,Ic!6[vChm[tf ㇸ(؆n1^o5ڵDu3 -˅9eW4˪R*0>raDX|p$tr8 veP9V׭iΆk]0M i\ʢ@s4<ݥg\ Ӹ endstream endobj 572 0 obj 619 endobj 573 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1650 0 R /StructParents 471 /Contents 574 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 569 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 574 0 obj << /Filter /FlateDecode /Length 575 0 R >> stream +HSn0+)Yc44MbS-eZr(*K{GIJ(/$g3oY FCvtnMt>48VAP? K.]-0KA v0˱7`m^js9>iY\v|XpF[{t&%Y?)wuF']_ v N\3+gUXT`./j+ .+%U}Ȟ@8*~hbz8ml +߅bnJ&iaO6y'fA9+]U+> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 569 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 577 0 obj << /Filter /FlateDecode /Length 578 0 R >> stream +HTMo@xUC +U6z 8ZZreyov쏘La>f˾>Y+m),3 ]JlLJk1^E˻!FWpo:yV*\>7o^ N0%6CgT#DK1b'n]h\TLN҃+|}9e9eY;)({O1;"ΰ!ZG *z*0|S9"%c:Y#?WdrLqqA7-< +L-ElmRxՊ~T!\KkB +CFt wh E?.7cVTn_$[V֗ti5t/?,z鬖YoS'#GGZIzOܬ:ƶS[EmzM$Idm:ZȓrTxf[ ; endstream endobj 578 0 obj 492 endobj 579 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1650 0 R /StructParents 473 /Contents 580 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 569 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 580 0 obj << /Filter /FlateDecode /Length 581 0 R >> stream +H=o0ww +dيLٱQcC 2 +UJL YZYvtk_=<ө}xDr~>G$`MD^--$)=-EƉ:>.0^i8b|> xB1d!{{PF?w @(_8kL&nOڪIǔ/1ǽi$PrLg}I~۪<{Hn=JoXBM*LjJ+8+H RsYNY]'zEe>S48͖՞}*7&E TKMl?N뽧6,UAb&ra/HI Ga'46t +>vNRh)U,[_9טl^rJ&hX+#O endstream endobj 581 0 obj 474 endobj 582 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1650 0 R /StructParents 474 /Contents 583 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 569 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 583 0 obj << /Filter /FlateDecode /Length 584 0 R >> stream +HU]o0}pViUIAjVZNu[#,6I ZuPX}9׎yվy<)=8HG,$Yg(Ne pUL׾`+vǟG #E}EѸ5w@}(j9aS <t)l ëZY/C^mk锜xdjk,-# {Mtu`Rσ6RSu7q0 t', xRdH%)/1!eQJ@OnXĂrxY䓎,\ vvAx n`xpa&n;b+7O +h.1tzȫ2,6'5u)W05j0Iԕ՗ &u7a2tcXXX2tYN1A.d]#,mMz6òU^tf{Ƿ]>⡜yetg@6Gyctd:.!I{ާϞ;/qOѽdTn E|T&v(6kضqSO=S\ WE -Ť :r̳ 7I)KOU2,t{XAjO bfȋD%j4xHn9#E* LbGC;gqJ;QB;C3iD^;v]{V~A/M endstream endobj 584 0 obj 753 endobj 585 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1650 0 R /StructParents 475 /Contents 586 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 569 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 586 0 obj << /Filter /FlateDecode /Length 587 0 R >> stream +HĕQk@‚Fm2ITڪư,[iY)&&dWE]l Csνcܠ2Lt:ݞ=i&B܂Oj̈́D@3<4Ns%Rh]_3|62O54Ь7 7aaxRdVXP/5vf❜wy+j] 1+Q"* ~Xcխ#vwUwr)4?b gL\,Q6MqB +:%Ja> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 591 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 589 0 obj << /Filter /FlateDecode /Length 590 0 R >> stream +HV]SLgpVIoVLLҌ*3#B6e18= $*$rN<9KeEc6(-8>i=&Fr<,J2$3.أ&L @#8plf8K +\}rrWO@3Ej͑_dkD\S"y9 @Kd yK,?DQH6Dx0i=dQ@,$*k BVN+%1{>'itE8vN +N(//)4/4tZ()O;a| +c&]FՋL),Z+QQuXqPl::_oam aW۪T@K f nUs_cDAg{)R۹I1~o88͞@o;g -M@ ,BuYYb60"%[>qM, ޿ǝXz35KG$p>a.kGBK1#duj yf8sw]ndYWuM,st~K)TfIRmMŋ0tF~6*̄NHm|etT묮mB-?k +`p9?||.@p-nϓ7!RoByq)0#B}bd_-/LqvB_$d~ +YjT-3YWo P/+`-*R5N \0ҚP !fk,ɯl#Pn=_Ei+y/7'ަ endstream endobj 590 0 obj 924 endobj 591 0 obj (zSH {T) endobj 592 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1656 0 R /StructParents 477 /Contents 593 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 591 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 593 0 obj << /Filter /FlateDecode /Length 594 0 R >> stream +HUmo@ίO Fsz-~w#ibQ"z/MYŶ̠NGnPn?H*Z Z_j[}].(H咐n]ti>5R_T]{\8 +] FRoA_J2Ķ閄lWt3 z!2D4 +3R}xDO65X56 * +L^Qh*G>WP/#%aF܎D4 +7P91Õ/R<,#(IC"y3E%¨,l +}K\C^xffr[;)n`Gia%1B%-뮉ԗaJ̗g3J2;4D,tZlqyZBwie]k[@]X=:+ރNvL8-<96'\LGK3<^HF*T*('i |"ӅhIa[+XxLi\Y6/ +{mZ~9m&A#s6"]S"/xNwN!r@AITl#g"̩%}h9s7´fLT; 0c.'H_G endstream endobj 594 0 obj 689 endobj 595 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1656 0 R /StructParents 478 /Contents 596 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 591 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 596 0 obj << /Filter /FlateDecode /Length 597 0 R >> stream +HV]o@}W\_"V-֤~dmbAaP7iH_39A ͦy V^ +T-\Nr쬎x>Y[OLIW2(/MnjQ}-s-VmL'*Un:(iTFN&pfjOvFh# XY&pZ@{~ +m&J,eCo177mDjxi,ÅwJH$C,²܃7n"fRr + +d5_^PY +Sw{*˃%nߡup뻩i5*ԦӸ2S^. 0Ƅ̠ ęup\^g{uCA4*(n]FK351SnL7i[1qM +X+iiYm4\dcbpz\fic_^]O Iv?G;jh61[88t,6S14iI\a0>X5򧔙qo?[6P5j`v:G2wtER,;;$^|tsfI'9$j`{G4;a +c XY{~Bb0Gs_=NB# A+b endstream endobj 597 0 obj 660 endobj 598 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1656 0 R /StructParents 479 /Contents 599 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 591 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 599 0 obj << /Filter /FlateDecode /Length 600 0 R >> stream +HV]S0}ﯸ|ꬢ3|ˌ*uvaBJ6$u7- KBܓ۔@^:mY2 +58VA;g.;Ŧ廾`UY 4YT +ȨF(QipLڰиnڱ~(}j|ex/PPpR0#bT>իyu&M0 "3b?g:T&DH?y>P*9T84Hxb ( &> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 591 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 602 0 obj << /Filter /FlateDecode /Length 603 0 R >> stream +Hn@WFQ imU#9bKSެ0MYTUwBLB00..7ă\^^y.y$=mH>s=y9%PId*$Ўz`CxGg~:Cg 4̱us8Q,P(n(eJ;m w@aw@Zh)@!X>g  #<}) >1/y*NhGS(3µ?GC"/pwT$(VLhjTQ3pЩQ%R +Păw7?j2 ȥz +ڴj4&"|m3FmQ=r~3j؟2cCm%ys% +{!~4vpRDR)T};,&ʎ$,w Iԁ%s  endstream endobj 603 0 obj 463 endobj 604 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1662 0 R /StructParents 481 /Contents 605 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 607 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 605 0 obj << /Filter /FlateDecode /Length 606 0 R >> stream +HUQs@~WlEDL8h:NI#vF2Gw$SAvo+!??J Gf;mDYkqCA1IzOqs *bXm L<̽?7ը -8lu`t:5u `w0OIuf6X#xc;QDWa%fpaBX9WIpMlq*fhy( q0B8)gp}mx{y^Ŷ[>mAFCؐ4@ -k;5C|> R1Uy1ܔ)Ç>6ĕ9eltMM7!nNv =ʻX.vL\"]y&['hC>Jp ;i%) 22j&/AGp/9eՎ ،bJ\/݁)˚#ߐef)oiyֺ JȋSgAdoΟ Z+E xmh[4TZf-򘏃ȃحs-ڂUY.mtV ?&f:V:}l5^UףG NbO0 LBi|Iqˁ N+G endstream endobj 606 0 obj 751 endobj 607 0 obj (pIEv) endobj 608 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1662 0 R /StructParents 482 /Contents 609 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 607 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 609 0 obj << /Filter /FlateDecode /Length 610 0 R >> stream +HlKO0CONZ8F&=pPnjha9 ;N݃=^} 1*C|DNOX"އzL o6j'z[UIkTȂ |M害 $Ok]pYJ *K8i;Rá_]) bwwuc.U{Ѓik>7J[Ty֪ܔ&7=< C:mnk%h3GWJAшWYr\Kn endstream endobj 610 0 obj 275 endobj 611 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1662 0 R /StructParents 483 /Contents 612 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 614 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 612 0 obj << /Filter /FlateDecode /Length 613 0 R >> stream +HTn@}R +&"HTD<2fkwwi(@}Y{vΙ{Plu7DFNeG}0ЊڊM`*LkYZ2^3b]P9ib~(hi`TU8X91J=4 +e:B $lc|=+>ZD\^%*Ypg(&1=BRh>@YXgB콮Vʢ:lDǤ[U[ ok; +endstream endobj 613 0 obj 745 endobj 614 0 obj (?q"0Wi) endobj 615 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1662 0 R /StructParents 484 /Contents 616 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 614 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 616 0 obj << /Filter /FlateDecode /Length 617 0 R >> stream +HUM0WqI`I!RWGU)(8c(Z8vKj[_b3ogLa0h?px7Y,=wj\?pCj&q$薌8tMsԺ v}spiy ?ozۿk;@x:ڑ o+n;}77 nQCۆ 1)#1Do vP=@V'262'b0nM3FijJ2_&>r3:Nt9XbW]8d|X0V2nr-{Hwy׵Ǒ ? $. endstream endobj 617 0 obj 643 endobj 618 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1662 0 R /StructParents 485 /Contents 619 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 614 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 619 0 obj << /Filter /FlateDecode /Length 620 0 R >> stream +HUKo@#?LlV8,%R[K^ȲQ , 0qav}`|ĸ 0a6/l^3yس`N:f + tGkT;~z a4u>8;uf<#6D[l1s׵YTYqDz! ( }A\>tPV-?6",6c|#ٙ%^c܆K${URڜԇxiD9GekN Iso ٲ'i^O!&LPFQ18I֍@&=*Y ;yˈ!d6O .*JEZ ;͆AlMVׁǰdbE%qx|(W)|C!gMHIrViPTSsBҽCuK{ a זJZ%byzmX + e3yR򕫔onaˌ}qo$yT?­̿F/!pb$~>lr)Lijc E҆/ G/= 0 endstream endobj 620 0 obj 613 endobj 621 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1668 0 R /StructParents 486 /Contents 622 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 614 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 622 0 obj << /Filter /FlateDecode /Length 623 0 R >> stream +HV0+,lhAmXRۍòRXWI㢮ڱC؄U/U\73O8`8t'wSpa4O';qպua lR +Q(IŜQp:N8 N}q`Ih@aV;DZ5gM-fK5Qʏ: شn%WWgvQ&CH:#EqtF{mv z8=ƼV9NǁE4ϔ4ժ[ņ3H*61]D\& +Z+ T4_ |u/CwL<?f#\# a+zIRSEd.ڰ#'bagw6]S1sX mJ.wuyi!I״m%P`EEMNw0S;Dx^jҒ# LU)*[d|SAqPQ}TtE~q_-wrZIs j=7iVج-> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 614 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 625 0 obj << /Filter /FlateDecode /Length 626 0 R >> stream +HUn0 ?L.#+1Z//@"@=A8t@TQ9,[[,7 t`8Mo @0 >뀸 μ1^ I 1r u~uwe8䅟==8wm`o0N}'J0w m} j;[/6ckFu"[cx-ߡyĄt-'%$׼~[Y}ag0^x@ɠRfFUJ1R[f8?GK/B7 }ȹ6{Klc+O7"KQ 2U/iSεۍqk྽vU5w+pAJRs6=I "f"b=OtQWOP +/$\&O]g,TI񴔤6`elZG>K@>$pt(w܅%-MY`Vahľ> &ur,[rDTZ;f̍n0LwV ӭǗniK=0ԃHY E]3Xy} +TtAgT{[;hS :5T6'sʅv @9dxm۴@ 6@;iJU lƗ8iNʥs؍X +[5Y +(L_="6 Sט^o``ai endstream endobj 626 0 obj 723 endobj 627 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1668 0 R /StructParents 488 /Contents 628 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 614 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 628 0 obj << /Filter /FlateDecode /Length 629 0 R >> stream +HV]o0}pR66Ї>TH{ D9&C8H/19ܯ>d>,Ѓl\'C}`}fg=`?ĆrpIQ1ǜ 0>r}{?z`S6 endstream endobj 629 0 obj 655 endobj 630 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1668 0 R /StructParents 489 /Contents 631 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 614 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 631 0 obj << /Filter /FlateDecode /Length 632 0 R >> stream +HU]o0}4);iJPL[i`(q6ǤcU(`ks':?'iiZhdk D[ 7HTC?<`Jr$';SLpL\7uݪ]5 Q@`JPsS0BSKɢKgtUf3  +b\߾@$C_Oa[i2lmꔈàAhW@)65Ul!C>Xx)[@/ԐR ]YFc {lxv y|sav-Y||YvcI#- + Yzi+j =r0\U,/\*8#>uɡLp5?SSC)]Y$'ᥨly_&B[M:l堎fnXRP@}d ]szjHTy,TFXPS_1B ̛S1c@P̠'e :Xm,|3 :$fY'cٗxܿ{hp6ʙWCP}<mKYQrH8GW) o4Uvk\\=6MsݰO#* endstream endobj 632 0 obj 641 endobj 633 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1668 0 R /StructParents 490 /Contents 634 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 636 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 634 0 obj << /Filter /FlateDecode /Length 635 0 R >> stream +HUo0_qҤH!nnڴJiM0K` +wN0 <9/Є^o-&oܶ[ <;k₁Q؊(,J0Yw&O,7p۸?*N Il:STAv ߖr>%3SF%Ԝ?Gu>$.D2a3>'H^h_wAuN[,6HB@v*ўԐ3-1Uy8c +K4{GiP@*ÛcƗ=.lɾfmz:ݛE,6*r];5.nh>?q#sp=%*b7mǥe,Q`/..P025}l͐-9<)1V"$ +{.:a?ח˹p; V =o.ܽhY<&#hvdmi?q> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 636 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 638 0 obj << /Filter /FlateDecode /Length 639 0 R >> stream +HQMo0 WXZ4 4qpMvX U<&Mw~3DQ0Gȅ6 +f_`gӉ5YYZ%W"PᧄT6t:Vj!<(aY.PiW_<6#dS˼Ȭ/]$[9 +NJ֦r2f ?02Zd]og' 9ȋB,+\a^(E9Ț2|aRhz=\ֿ:dfx Mψߖ >a1Tb8 _4 endstream endobj 639 0 obj 329 endobj 640 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1690 0 R /StructParents 492 /Contents 641 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 643 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 641 0 obj << /Filter /FlateDecode /Length 642 0 R >> stream +HtRn@xMD6ശSQ#5R/H1^IJ{ʨ{`yޛb<_WpU~3ol E \AE O8[ _.<;u,s}`i:#,x׈ fV'$4BJ(g* ̍Z%KܮT\\dXStQ%ClҔIAZ2MmI{ !Nȴv D:f.N .+(./i3,3PWH".Eܬhpe1VgalgmÃ]Z*:fVbV]VfEEJG)zdl궔u#͑}!vwwYka&MGmǐ=>;ثlп endstream endobj 642 0 obj 435 endobj 643 0 obj (+ҺKu>Y~) endobj 644 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1690 0 R /StructParents 493 /Contents 645 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 647 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 645 0 obj << /Filter /FlateDecode /Length 646 0 R >> stream +HtRQo0~=$MtK&!V)0!F`S,94SP%ww_6pyOc;|191f/J!YEd $#ءˁ0#n23?'[!|Q$wGMBFH7sF ,Lٱ;"ܴRTJ˸ϱ,5xk3yz&L3I'I]c<#SqYͮ{wHDIJ8${ƓI)VL(-i\y*ψ*>ϰ@]𸢪 +tf&SŌGV4(2%1MhTo@2B; t/ߙᘛK̴<S?ⴂhKzUͻ(<ΣQvjs+<_c/cR:i"~S n$x9!|K endstream endobj 646 0 obj 443 endobj 647 0 obj (~2> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 651 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 649 0 obj << /Filter /FlateDecode /Length 650 0 R >> stream +HTao0ί$!ڡVҭ5aTSJL65]V6qZ>߻{| Fޅe}O'v3l9G.) az6xf,ywG%ZgK5(:؎t K20z$b4K6OL0Csgp)uI!Cw, b@C7L 1:Gɕ:{j` LѸ ƷD˸䒬-P|@(lXK R 9CT6oan,I-7aMW oq>8u?6 +rbKoW$KRh4"STz-Fs +@Q[Ho70CHMUEGh/M#WݷEWm.]N>_]^@"fJ0]y[:y%8i5J^kfmr5*# p {]](igZ*hEˉDbUw͔9_62ЗKuT^-lNdڭYLL)#kI uj)/.l'Ŵ#膏<]x= Xr<4~Iʿ ezx~k,/Z_4j0&< W@ endstream endobj 650 0 obj 720 endobj 651 0 obj (tQu) endobj 652 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1690 0 R /StructParents 495 /Contents 653 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 651 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 653 0 obj << /Filter /FlateDecode /Length 654 0 R >> stream +HRkO0_q%! bx$0f@n߽ +6=瞞{+wjUƽ>t=Nt<׍*4. y΃tx@*̵BzIb6HN&Ƌ1*иhk+Z>A,l\3g%\:!c'[ .\Pmj}Foι.gqUEOoQeJzKK|L ]?xєF`2zPH < +2y$7K2 lK8TdL12@spֆia.lR䫶YLYI®>Is&b;rGlK@{]d0{  e) endstream endobj 654 0 obj 395 endobj 655 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1701 0 R /StructParents 496 /Contents 656 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 658 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 656 0 obj << /Filter /FlateDecode /Length 657 0 R >> stream +HVmo0pK?4/ $M%iiF5QpO }gB)btysw5LKL~dp26aj_ wC|'d|i@bN]TeB32/\#89>9`ZÌE.W1ݙx<ωK,Bd^R"@YpC2uYל-4\5q/v>.'Y8qI#7 "Z arwK׺;4t#0LĜ8yEV" H+boR|# fnwɟ.ۮpYc)S:vl;LZ3T%l"Q^KM2Gp6zo69ed+)P^#NxE$NukYbV_T;'}lҨK4uyE} eS= +ҧPU"bHLLq81%IX$aN(Ga`b>XՙrϨqD‰uW=B9]^g}-č![\lT;IE3$дi'shT@=ڊ$ǒ;ދW\xmE!]APIfg0op4O ypX&q x 4J@tPՑݬJgxn_l Src{ﬓJqm%5VI#oQP\E" +d3NDno#"gގg.U0Y$% +e:.or_O͚+:۩QF Ad~M 8m +|sK_ʹ/`, endstream endobj 657 0 obj 863 endobj 658 0 obj (4|NdlIdr) endobj 659 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1701 0 R /StructParents 497 /Contents 660 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 658 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 660 0 obj << /Filter /FlateDecode /Length 661 0 R >> stream +HAO0{N@c DHG,1T:m;9-8bDK_%-L2Y|w8>&>z{ wELy)XA`C ~CKh8$@-*N;R :iꂗC8ȦadsdI|bb!cб A +Vb`ǭVbbVbh#Bg%!1\~ W3sۤ~+)/h&+AAM +*R^d+vusn~]֜EA';T RȸQ!Y]}ʸG/f쓬}f͌gWPU ^s %- endstream endobj 661 0 obj 370 endobj 662 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1701 0 R /StructParents 498 /Contents 663 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 665 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 663 0 obj << /Filter /FlateDecode /Length 664 0 R >> stream +HmO0G;@h Bvm&&<}g'iOƎ}?}>SBYjkPSM^T^V2CPPJ=%!}5rzvS|JIܕT"+||AqJy٧f@^ĴYm3$@pBXT܃O]}y k >~p'qԸVфBakw@0y&y%EN,AhQ^?Qqҥ<ާDe;>}efV{*!C6zX#땳_W~޹ށ ;ؐGΌp3Ҁ9 +GLd$x?ۆlD#QB#8fFbQYM=Sz,=혷<#U|aMA#w6]2й: {\Atc;^= jj㔎P;ܶP6UT`Nc6e!c_ cv `PiK0p ,2A&,>z~PlƎ]y6&Ey.70g+CVi`obNRƔ%0Fq9 ўΗKEF[]I6X]J2a%NJ3H#.⓵+%צc":RK2[|iޛD2IIt.wV҄/Ųeg%{o> nF¬+P endstream endobj 664 0 obj 870 endobj 665 0 obj ( DPʄD4x) endobj 666 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1701 0 R /StructParents 499 /Contents 667 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 665 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 667 0 obj << /Filter /FlateDecode /Length 668 0 R >> stream +HmO0WB_HRhP@, mFI6nE}Q`|{|o>]A ‹3Y<:>λA?w@RG㄁]ӌ("TIdΗ· pNwq}F^nET;q&IV("AdƣƊKeb8f-n-ҒQBBm'IU!D endstream endobj 668 0 obj 704 endobj 669 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1701 0 R /StructParents 500 /Annots 670 0 R /Contents 671 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R /T1_3 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 673 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 670 0 obj [ 3579 0 R ] endobj 671 0 obj << /Filter /FlateDecode /Length 672 0 R >> stream +HW]o8|i* $wĸ>Zm6T,%N&}("Kpwf=Doߞ^}:޽p~}<ӌF&Y}4HʫSйm)]Em .EPA,Ww̔ƪJzr*F4H&%}r,:0-$ 4:q"(ZsH~/#Vu]JG cVzIMg4=gk uO}2y::fiEU+)lfNjij5kakiN-qFscnCHޕ5Z9br%Vi#kUzԺlowg>=J&r͆Lk?!gȯ$5P\KeA+_+2ܒܐDYRz)Qf)RXمZsl\!;V " b|Zv=,vG$ g}07 eY\7S;nha dxf!ns_0eƁFǏ6E={,tʬ Q*MυFټ4Eck1gw]: 0rU!0!)vu{?.nC! @y.2v^ +.~`ȃT3R?ȟ4<` A(˕4Z(H@Cy׹d"e)!`QN+ɆE.@C҄ZtkhK miPEuBW()R]lip؃ʽ⚖6rkS;N:T;yd U?ʍpz7!EE:?0sLu!Ŀ*썒x3lt-]]zs,@%iQn-4T:nKF +; 4f[LtSm͎vJZMz/m;~ um.s,^2]CnX\jD1; 4CJ~ +ȭԢ1;R1BΨ0P1sx뼬 j-Ba$-閧k8qlA^rAz=q;+Pvဍq\Fuxv + #V{ (o)oJ7 +NusbR-+[*ES;%nv p~8S;Q\01F@%yǖf(f E|s@@6CpZH1ݡ8|t) endstream endobj 672 0 obj 1527 endobj 673 0 obj (|6C/3-r}) endobj 674 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1714 0 R /StructParents 502 /Contents 675 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5061 0 R /T1_2 5056 0 R /T1_3 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 673 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 675 0 obj << /Filter /FlateDecode /Length 676 0 R >> stream +HWn7}[^E$v4Q KIw ɕ~}po~er8̙3ˏ1{7׃'Q̦1w!3k|lpEɭֹ6Ȕ9x?\ΣBjxh¦I̢9N_ג}ra_|>].?w FMQ}ȓ4ñRF +f6|-4 +H+RX&R#KβI .[ F0{%Ș`\e.El~383Ē +q{:!1+A# [r|1|wI*UE!Y齬J{arWvh)/3i*3U*\| +[l,HZlwmneٱ6sJ,݈^IpJeb!ֹMF8\/w4Ɠ`]._HVVw(vŐUM109߁#\S`\>D*(!KtjE;,Sjyʎ] - +QhG=`.w]7ۘY "- ȼtBWN(sي[QKi4iC>g4sI=eC貆QRtQ^Bn:l. +.NRsݍxOt|AGIܻTqW7,.r蛆w X =fO(s%mC\{C9L'$#5{^?( &Q=u&؝Q9]-*HgJJRp +8@լQ@@ŧS刼k&5QǥZ ӕYRQSj`DJskZ"H.r#2?vFwDiSC9OJ2!z^glj4}"V2S*ZT- 1Tܲx`9`ܷJiCB^ g|סA+_< -yt,2Yb> /Font << /T1_0 5056 0 R /T1_1 1068 0 R /T1_2 5061 0 R /T1_3 5058 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 673 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 678 0 obj << /Filter /FlateDecode /Length 679 0 R >> stream +HWێH}7d\'43  $v&DZ:v'nݦ=վLX dwuթsNU.?ѫWo߿>~}I0l@Fv>F'E{6V'ڨT:B2s3\΃|A >FǽdtEs!U,Ɍz##Z1$[%:$Xd[XӴFe"mr +E^ULz>_t.xS/N_U=/XZS>AGQ"J:&h+A?PgrJg"#0{.X$˯i%kuNY$SgN2M^ŀ^g_-嗇GKh(7g$(\t*R;ymÍv ǏQjBɤ78%K#B-;Lr:w*U0B*gЪh&a+\v_jʤ0HQ3糒"?12^QT-T@y,'t[(C\tbt?ݠ)~_c#P 7F*0>"LpWS v|73 ˏ 0@4^{hxհH mtHWy+ ۅQL NkCVE׻0.Ts\Ͽ.F* Y<,<Ĕ-RA6H^Te,%f;Z)F**gx̴&5{,8Km"i#s>Taz` +7_##[RT!36|/W|JUQGtBVW{nj0+ϵb<;AoV],&dI@)Ujryyڂ g G?Х@kPucbKڔ(DtʊmFw6?=aʙ߱NR:4W99)gqLn{ҡQK뭿DtKF x+/`^+l]:ʂ ÆA7Z'U%,}ζY9OnڈژѸz7E'|XG+(r2mcʤ +ZT&b4C^ ne F#xi%Y 5,O,8/lAן >*B"r?kw +SÓfTS}F> /Font << /T1_0 5056 0 R /T1_1 1068 0 R /T1_2 5061 0 R /T1_3 5058 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 673 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 681 0 obj << /Filter /FlateDecode /Length 682 0 R >> stream +HWn8}7b"Q,oblnjl_ ,hRBRIܯ3J' -2̙3>t޾=2ݻ罛]̆̊Lgf7 YZ(存ē2aV>,zb .b2ш-w+淂ZrӉy:脭 xi4ZI-}8b᷂qr!"gf/kxcgͲ`h{'(\ywHvZ>}ο6d_Ç|"t+#=,ÍsE"15JJ0c7\_"eް-שOJ`(Ԏ| /tuD2BcYOW@.CNѠt28SiI8 < k + +"S*|R^A4{YέI"a<N <y+bAтC؝[iهY^`ˈ Y"?mme UWXpV:[<#)%3Vt, +~J;qXS= +eYQ?\m)~Ƚ$d_X HR#xJa٧-]@I{呔NOdtيvFŚ=+Ft?bbDq)+sB`CfJjNcO_`ܺrftx-5f8#"ͦu0Xx]8`ڑ֊$ 2n7?Ԍ'#YX(lꔸF(%o%5;d[-XVd1\ ` +*CQ%@/A0}#4y3b˓e*4)&F{.CfF6uIp > M=-h; 5d +e?Mmn%e(WGؙ=r֪Vx t`"T(ZeR"W> /Font << /T1_0 5056 0 R /T1_1 5061 0 R /T1_2 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 673 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 684 0 obj << /Filter /FlateDecode /Length 685 0 R >> stream +Hn82ۃ"˶lc@n荁-w)R%)OJuzDr73t{wuz&%R-R2ruasݞCp} ϵ*/C/Xsb;hrV۰~A o#u@zf[4dw[c0t<;{]p0Tc&¶Z"V;waaU5`1lՒ؟2}|{PƝa"PLC}rvrdt*wYP(9Jw"_ּ"KD^m2AŐ@Ս@-o +CUgg>/iw-K1Jq'K{mX{k +zj^Ԗ=i~լk1a򋶂Ѣߋ|3i8+h̍83*MÀgNG뻑2 5C{Q+F++@L^b2muDS>1W!xœ2pq{K ?)wLM Ok6:`m·>>}p^ +ppn Fu5Z3b?u%?46$~t>qv>W:ZSpX,0襟͸n}_ ' 7;^ExiOsS?tL$I6ql endstream endobj 685 0 obj 1243 endobj 686 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1714 0 R /StructParents 506 /Annots 687 0 R /Contents 688 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R /T1_3 1069 0 R /T1_4 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 690 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 687 0 obj [ 3597 0 R ] endobj 688 0 obj << /Filter /FlateDecode /Length 689 0 R >> stream +HV]S6}L}#Pp,َ -Bf4$ږ@}d'2s7pqѽ\A>}z^ ((8oi@>qa҇^&JzkA'@[?௿׽3bŇ2J(^$A!z6w};-F` >cDa>G=HЏzF׹Vsx=)P,E;TO#ajc>YPtlCIa2QpPJsN +3N~ +xU6ųM>I!N8сp79wXL5h(@h,W~s 6ې؀Ta2yKH̡:-#.'FJR<56"URQKe8ط\lzk^F3բlaE۴*Y*l'V|VE7)ҟoٜRbM%3-ZHeATO\d}uC9? ?Ƒc:Bb^%!:#RH{$}ɢA)pzC7P-yexh8E&LEsu#E@M { s`pyYNps, Ӳ>LwhnDM2H<}9aJ3E_aY/4x $| @0 c*rKq7mϕbjez,\ÆϫmiKPgkHuͮ$J3nn0|P_0r%fz k)2NR;r:v~MC%wߏQmnDrbi`Lc|k0l++j +ktOX.~4/3:cT*?Fhm417Z|?60 endstream endobj 689 0 obj 1087 endobj 690 0 obj (VRq伦Ĕ) endobj 691 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1722 0 R /PZ 1.00063 /StructParents 508 /Annots 692 0 R /Contents 693 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 695 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 692 0 obj [ 3654 0 R ] endobj 693 0 obj << /Filter /FlateDecode /Length 694 0 R >> stream +HWkoF.@~S4IzEI7^iE>TufhEQq@qs}~-OoL~ĸ')-V)9I\fď|-xA2J$|IE3mbz'P 7\(Jj%1g~wL%M~pQZHgTAFMfNXd+)q"M"U(?NL'cBIP>#N~+s[0i#8uTm-_~‡ nNg_K}5r)2?ٗYS.-e*NU6`oT*%1J. :"p76X/TVt FZ6pi/]L?!sUa}y]GϹJ% 火OՑtd|@HcHھ_]_jG?\OA>:;}1x-F)NX s)XOCk}Il3Mfnr2VeYS?Þo-HE D\GUG] bF`ApV:W4=G%xVua +yFIb-xNZ+kwXOj d"?/7@cZ' Ga}cN?07k7Wo#'S"z\-ꮔl>uT[;2>=h RE1(> 2Q]֘6҆X}~n, q pCfQ%`Yk endstream endobj 694 0 obj 1778 endobj 695 0 obj (7HВ$f) endobj 696 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1722 0 R /PZ 1.00063 /StructParents 510 /Annots 697 0 R /Contents 698 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 5058 0 R /T1_2 1068 0 R /T1_3 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 695 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 697 0 obj [ 3635 0 R 3634 0 R 3633 0 R 3632 0 R 3631 0 R 3630 0 R 3623 0 R 3622 0 R 3619 0 R 3617 0 R 3615 0 R ] endobj 698 0 obj << /Filter /FlateDecode /Length 699 0 R >> stream +HW]o6}pߚ)#Rmm-ڡK aYm6R]RdQ[!p-{ι ^]~z >~9 @ P9zQdWPZ2- rAbQJ8gF'y(SXb'`Vge)42FkYm!SfE6Ԣ\c4,VUkѹj@`% yI ŵwnB |(^n'QNU\վa# pfPHS[Xw kF B-Q1U c;(eݺ@hY GdZjjD< 9t~ف@io CBs}Qh#+aǽЎN do#gHJT5*t6iAN1r gk r~#PGBf+Pjjb ˳ +EAEzpR>͌@"U=CSv'zPHqRVM-P"Er<֦}r,覂 nt]F^څvm.qr#ڪt ښ= v ePxV!95j6jW,Ceu:."$@}/ۇ5x=O8a>K[vp./ HhώZY~ +WmծV41.(XQGҔYBFXm qLx@Nҷ><$aid'B\>_1aS;Q继%HgHǝ? `$J`}2!2yS(4qJ39CN-s'`˜|Y1}?ś=`o,E<7|o.OXNFFdvӚ?g-? OG;N {XqBb)bvpl' +;Ń=qkf̓y= + +[q-2~ڵب9βx`K 0@E<[4?]Q2Qn?&M:+vGkP0}1Nc Y a ⤊C;KI,P|<NG nعe +Q$WeOɄ'',~<Xh>a1p>M30%zLf(ZbٸF-]tW'O>@аek.Vec"}R{4qk:qą*xZ?A)a̷w0bȾ3[z#Zjzf6KXGG'ğLPJpצoا$eq\7-,6?69nŰRJa.9) +plyڽA$p%>xyks'\, endstream endobj 699 0 obj 1513 endobj 700 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1722 0 R /StructParents 522 /Annots 701 0 R /Contents 702 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 704 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 701 0 obj [ 3707 0 R ] endobj 702 0 obj << /Filter /FlateDecode /Length 703 0 R >> stream +HUێ6}m "u4tH%Dl3l+vi̜3Woŋ Du5q`u9&RA&.x8<>AAj0;}՝5) Ҩ%Hu01rJ*ZHg'(ӟ dϒ,h۶agL&ʪ1 +u^A5Ss@,BO/+Bb1$ r$K֪C1yp`U9@F5 G3Z +Ӕeܿ=Y 9yljKŸ{#USoK( <>Xw!\A92Al2Z>9'GLN T7ֻGgdrZdDVpz2. p)z yJ Tbe~j딡/Y۱?7z0Z]P Ct5hR5y.΂,57b +-: Kն#=ӵ.ӵS">o>SqsW"I A)E8b"g]PPgOPw"XV5ng!=P+TI[EUSN5&7z[և@,HMǺ]n6vCg3S;Uv|2\u5X| +$0qoƠ=1(bVw?G)x nt*\8Bőp7ua}xQ;9mYJMvDnO7UP K◙d F,LvnijYg$i߾8;:H:(ÕTntm~g}z\zd2sBJ7g?Qrݶ5B{4M \ã +QW*3xwru\~`L[`q} endstream endobj 703 0 obj 1021 endobj 704 0 obj (a\)g:sG2) endobj 705 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1722 0 R /StructParents 524 /Contents 706 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 704 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 706 0 obj << /Filter /FlateDecode /Length 707 0 R >> stream +HUmo6. >n$ %(8Y.YFhbF_;J0e^޽޿? >8X|}{]჆`YrOjnZcF V7`up^z` ¯gq%*7OM_t-!p2<'b1O aULgߐZ "1q٪p<CB]w+ 7wGi?WYd;CGDAm#zCfQyW0| ^Q&bPXuDzG9L7nQwIe QS"МW^^J+7 .My|;cJXѧIE)G8YN S|40tzD?WԦ%cZ%;"8+p eЦsCdQ?lKSDiYq[]YW,*I +Lx;eCÝқc+sk̷v~d2Bup%8iX-|bMSVLnc`*bsv~.Hl9/'/<>`0ݟP7ƕ#,ژq3o1k"I44'`X*h endstream endobj 707 0 obj 1044 endobj 708 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1722 0 R /StructParents 525 /Contents 709 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 704 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 709 0 obj << /Filter /FlateDecode /Length 710 0 R >> stream +H|Vn8}v uPY6`A˴Fwf$nj6b 9={nq𜊐eEȌe-}0SfgUAԲ;5]2kz- `x +~)˒dQ֍v2I0,؟믐E+mpEgI%He"bY,N)ԪA8tZS=堻je)ZY^KWJ($b-fAhȱm;3DR <ƍzKu[IRW{]+'4vk9!l+9 ‰jK٦'j Py“;vhvApN+4Y>MW48͑vvlFqi5n3jEnG?'ceN(` б,YY}""v<"/Zjo$TenA3[z\.7 +YNhkC7g>G!38Icq+paE߬w}AO +Fl#˧ +6ngRT!*l bTv"qaOyGAv0c9Fls Rq5 RvEokx>-f:ΒOU1x g}ͧ1O4]@{ Eb {@:F.-3N.ji*D1R"_ Wz]Vg7 P|;j % 4u8m_.-VUNʈ +5U\[ݜ=!<h<.E-=߿WIV3>t ^x Z>LB%/`z! endstream endobj 710 0 obj 1176 endobj 711 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1723 0 R /StructParents 526 /Annots 712 0 R /Contents 713 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 704 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 712 0 obj [ 3704 0 R 3703 0 R 3702 0 R 3701 0 R 3700 0 R 3699 0 R 3698 0 R 3697 0 R 3696 0 R 3695 0 R 3694 0 R ] endobj 713 0 obj << /Filter /FlateDecode /Length 714 0 R >> stream +HWmo6.RD Ph]a%Za+.%gͿߑD)SـmAwzuqs +W7/di}z}"]@-NKU+-iQ -b F:.1J ,Ц~Ҫ+tuCp~|>\a[]NIjE6/͚,rigR(򎗨=l[pLV+T+Y1q  u`PҊJ\oK  ޘ8F)Gץh@Rp B ү't\5rYp: B 4@ < JS CKc  <)10gSVBrnB:^I[A,Ru 9ݮ0C ^~BT"I!EI 5I b>uA=ᐄm^|Ej;M<|Y=*&cj(!KDE6GZiHlw}D3JE>i_ G`4JFO3xJiYEtBm݃eğD$g&;݈d$2!z(3' JbGH{8jP!S0{#}BNռIdNje$ :0) ~lJi8Eǩ 84Qf(!X; +:)Mda䫔Tǡ>>Uϋ̇{3J`t68*T]i$ֹ.|ӣ`3N/,A'1lۭ"?mdApڄeUJ'RtĬw6HAHڗ|J\{RKqSl#Asbei!&k VjT +hoko.DZ-a?":O/*{ endstream endobj 714 0 obj 1422 endobj 715 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1723 0 R /StructParents 538 /Contents 716 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 704 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 716 0 obj << /Filter /FlateDecode /Length 717 0 R >> stream +HUn@}^w}J6$R_*U6fM׆~}g/FA33{fr!y3Mo^S!+8}zھ o|+kѩ6ucFvFU`7)qɾ\zX#N! .ʍb-+?}p(g2Z:v{Hb\'T,RGGΞߋIJ9Rl@ϒrGJ$A,KLb6Lx p7t; aiD6/S2Ͳ< Ss@7זSm\`f3Fh'/Dz}A|g{tю& +7h|Qz7SoĊլ=΅C0> sv+cL{eЪ-;n~FfHwE>g?u=N]xHJa5+jEr$=4e(L}Liw_][mx!f-/'ZYDq󳧊 2ҌN3w)> endstream endobj 717 0 obj 857 endobj 718 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1723 0 R /StructParents 539 /Contents 719 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 704 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 719 0 obj << /Filter /FlateDecode /Length 720 0 R >> stream +HUێ6}Y)[ n&v5-se֔RwHYI[uf8s8h~_7_n 7ooVA)4>ƽAW sɌ8J-J"-=cUx[-HJ֪RZBx; (#U0 NYŴ`]gr)I\"2^u۩&|rNi|5U*1fi-~jUiVע_9}:b +։2vJNi"c]!> /Font << /T1_0 5056 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 704 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 722 0 obj << /Filter /FlateDecode /Length 723 0 R >> stream +HUێ8 }WmN, ;4;` %$ʖ+__RJjOm\ <" +޾/w7ûwn %P Zwツ` Q,F67r F|>` EOV@糢NSX7%7lCx3Q?uE U% ^5n\YB8b1=T_!g acŗA[%-˨*~8/ ݶB}!% 3AJXF_/ŒC .;e)$ͥȣ;@5K + dIJY2> /Font << /T1_0 5056 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 704 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 725 0 obj << /Filter /FlateDecode /Length 726 0 R >> stream +HtUn8}n+%"u@{pSR`Aɴ %:]wcRòeqÇ/߯ /]}8T5+`;Q_K-KUtV`Utb~%TEqVY>z)̠bLb/0`8+1Bg?\OG1KUެ &m83op:ɡUG"%sTdbh%4S+âf1Pjkݤ*+r b۹+"Nn~O nP ӑIVp}ZPP&iӡ }x'i-:duF 00QCTN8FE zĔ5d7iaaPݍwf$lN4J+1ѵfبG.WVMNŸSO_'nΩ^=xIQo]bYw$G~a'IHQd4f!){ e;JaۛqJBV6rTɰA8Ne1~/+-OyMU@JIn>J.;+zզccq,,!^5OjjpyR +9sH QR,8?<\g ,Wԩu/Tzb&JQ>p)Fբ=)1:8uV 8~غo >Mq!W=4;YBd/D7I2$U$064o ١&gx>YMӠØy~hh^'wws% ˤx4f8]65Y%WFG΋t.:e}! endstream endobj 726 0 obj 994 endobj 727 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1735 0 R /StructParents 542 /Contents 728 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 704 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 728 0 obj << /Filter /FlateDecode /Length 729 0 R >> stream +HUkH.0E+Bㄣ9ZGp_ +Z^{d273uwȒf7O~bv<1gBB^J:.|I/栝55XT AgALoO:?Qo /yLzdF2}7LBucՇe`U R4ER!b_1XVD~Pd*s[EU&UT>J{\Gӡ*_ bd?ʒb&'Vjcab)|IhU|!>bTfBO*wMT@d1f$ejǴ;P͎z? p꺳lIY֍ܞƩVF%亖Xt7s3X͸Šf gSA2ƳIx!hI5g"U·BPc9 +2[ii˔^iȃX5P~C.]*1<ՋtHn;{Pc$^ϰRx[n4V5 K',]5&]IEF+mCbI=cFsG_X +kxYqݭf:¦wA_xuz !|geل:b+娤Rx(پN{urŋiC!o mƒuG6n-/mFV-(_LˮQun>8@BVFdxN٨km߂Cl!7{m$XWUf6#2b"ʂ].}6$'f 'VN.!)$%J["O/yT[fUԋ~? )`c^0Z+#|PϚE4HݵnUhviRVm!{ץ'kFA-9B!{&%1v!M- ;$\U)~&b_/,c|G-KR|~_)/}ߞGH1 /+: endstream endobj 729 0 obj 1000 endobj 730 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1735 0 R /StructParents 543 /Contents 731 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 704 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 731 0 obj << /Filter /FlateDecode /Length 732 0 R >> stream +HUnF}'4 e&AZvZXcik^ʮYJI^j@;3;{Ëzus1|py +1=BBQJ0:҃e7EktFb#A!E?iE-2I`oTڅ0vVO24 RONZ1Y$RZY‘q X/H,$l` ½yq9+YR +\2ws7}-5z蒴uԋ9pkT;vBFk[|c"$ AJm@5[ ԲdLc活 (^y, M +FHYx9_o恍۝Ay:ð4Do9jk Csi$]4ඥΡþQ/҉N=^kcXru}j%z!4!\-prߡCu*Rz{2 }۾CxG~rv7+ xJ4O3ޏ9vHǣ Ҽ[jGs|94Y'q؀K]ñ.a¥sJ8Hy3d$MOB,"c98]Ӑn@3"ꉂ.ҳ5-]g_{jgSk]8j*[hR/n\> +F'#,ȅbg Iy3 (c& ;#ayLCu俋l{~Q 5 +l-$ 7Q=" YCobog{RNowN_9,#OKoyI #W98^yM:)ѽYM25|ޥm"UNjLlϳ,B]1?[f~f'FOqDn,d&^/'7 endstream endobj 732 0 obj 1011 endobj 733 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1735 0 R /StructParents 544 /Contents 734 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 704 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 734 0 obj << /Filter /FlateDecode /Length 735 0 R >> stream +HU[o6~pBrH}H]d%شE]RCɲ[sw9 ],o KV?c`wx!W5Qk:ɀC 0E% OEV1TMXZwju?CB@ 8,@;,a_,^DPx+bI'!^p%bx(PN1}fAiViaVAZ`#;3q̶mw8?6N6kI|۞w7ESҮtwV̷v}Kk^#vI1~ {$ G. YVVm6g5, NIұ!OeV鋄D1OJ R|㇫"1SRy]>f=qvuM(JrA5+Lٺ'BN +>g4}*;龓H +<J:[Pn|MB%*QbVIOH՛\Rֵ IrT{ӎi'Pd%n%>.&ehXN,mB{i: -*(# 2dQd@mỼ̋~2dl N'<:f`ɥ=*g~[0I8ÓeG`3daT9J!IDOīdhf }mʣCS"ç9<ȏD~=%Z8EI<%48p*/eMbve#=s~(zfɾyӞ3ZVhiGcjw^Ưvݨ{Xqnz^&Zh4x4HL'YL}n$Ɔc 9CxkBwJ<)fP1 3ðɵA? ,o:[Ө[5N~]r1[d~hLWѹlU6FS&[^5Y֯հj4}:g2"')w_)g C? endstream endobj 735 0 obj 1089 endobj 736 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1735 0 R /StructParents 545 /Contents 737 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 704 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 737 0 obj << /Filter /FlateDecode /Length 738 0 R >> stream +HTmo0_q CޤRi.*4ir ^C~gŠH0sr8;\?_B˱ qPi@ or +{p!܊r-ƪVZ.De Zzwv H8H(bᝬ V/!Pi˒׀c4LwUxWco3;+JÀ&ZJ/I K 扟X 6_F3G! Kd͵kTu* Je&Viu2E |DUUc2{ekMi?H>!}F|kZ F`ڳ#Eʙ4) d{wҬlk,&wW`M;F>bgԤGZ%p9k)hD̩S~, }lZ69oX`d+:JO'BNQ6C5~;); 6BWB7ibsܶ!iF+ԫz7PiDղ}b"^߰b(ժiVMOpzg3=r&JFm)>e5o \#'zF^6F#F[5?w;5Geq|-IOGM,S|-niKac:)< 9*@!y]kp@N޵t,NI<'ઽZ5Ų'x +endstream endobj 738 0 obj 759 endobj 739 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1735 0 R /StructParents 546 /Annots 740 0 R /Contents 741 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R /T1_3 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 743 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 740 0 obj [ 3723 0 R 3720 0 R 3718 0 R ] endobj 741 0 obj << /Filter /FlateDecode /Length 742 0 R >> stream +HWnF}'8J"RRp8N- (X+rc.;l$̜9{Ox;-P +*\ h'$sB:_5n?⇀vq; A +-/|) Dɍ (ᄳDo.br||^:gW0zʜ+lCW['ܙ? ;44t|9=\3ch7 `u()Vsk$9]@MYA_[7B_6! ]AıA<[wLM`/RYq\MNޔrŸ #w+ўZMƆJxjpG#/ye4Ɂ )@'FȊ`EiRRHaTbuѝޒI^ dn JlE¬iav1ւgB7Ld:23cyQpc+ T +Ap%wQj-3#0DfK> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 748 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 745 0 obj [ 3738 0 R ] endobj 746 0 obj << /Filter /FlateDecode /Length 747 0 R >> stream +HWio7.@aNȺ|E@TQTEKRZFZ!P rHK̛7oFϧ74_~||2)Y9xzKNSٜft6SN1ݚڄ|ES.{~t' q@b7t1/փb2509]g-\U*6fMFSZǿ+S:\X?Z"G)v7n>v $?9G*{q -m s3)*G>ZW ; d'rx Y6fKN奖#U[޵CX$#ة%,(Ʉc3 QGP`->$/jM;dx +3d@Y8<_HLsA?'{3a;U~9K fUZ 3u]#VZ2;QsbeFǍ|:gѬar cZd{D2*F>z`5`9tA5-s=4H̦CrD }4&JLn $:wiC7]e }vVGN>~-iJUlH-?a%;\A3 +'$=?t]5ty%LA|F'iĀbSI6-[A1R@پ#ۋ"%MrK)8sjb?R9O{v6 P1h+zyS:>A]I2L.Žd&NK TAeMt4ܢYkZլ ]~KlIloptUEt*ϲPPReŞDF:n'ʲ f/{DVBFwR2M/+$xZ\UJ{MoLp L*jM3rɬ +-Aep[ƘǖDk3ƑTV!<Gh2;ǽYJNdR^!31ɗXH^1Y>C0ְu<:lXWDs 6v9s I6Uk@F/Qj +sV9А H^D;%H & <6òY+A4H9YU9WRa-?Y9=֡ҷx9N]lU^NUOkl¢@[0?OHaCC%My2d3Q8s6Y2R>4Uk-vaA5{eo +dʕ!AJ +F=D:cܟdخұ!>4.q%Q/,1{Oe@]EMR, -i{\􌥚 wC}ϗDֈSa|,#NzNp\~!mC^u]]仏N8vpbepS(1FDͿrTMSexZa~Lqiɺm^ȏ@agX:?#XL7|ux8Uw7ױ1/**C_^),`wlt.iWA endstream endobj 747 0 obj 1882 endobj 748 0 obj (XUHnKl\n) endobj 749 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1746 0 R /StructParents 552 /Contents 750 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 1068 0 R /T1_2 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 748 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 750 0 obj << /Filter /FlateDecode /Length 751 0 R >> stream +H|T]o8|ol)E +4@JZ[)Rǥ~RvAܝٝY;wGde*ɟogs;^hHfhT\;n1x]C̊9dPl!Qw"]nnhg]35FA($rxШ~vGE UVAvLwLస׊c8ߊoL|9uvZЂn;GK 5-([m]ϛFf . suh>Žɽcb U:QY@fW$a6&qOXJxĀLo`}lϮǪp/ ]ϞϹMj.;nŎH +*'4-{+FuZmj3fB2]:Q w4bQp۩8L2,7&A'呧sgrL|T64r($SՋ/-I.E/ԡ1%)1ہ}UK:ߧ6j}ZދfG׮56"|>hTW2VecO~0b"D:^X-_,@DgX'߱0=+$ +0KA endstream endobj 751 0 obj 797 endobj 752 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1746 0 R /StructParents 553 /Annots 753 0 R /Contents 754 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 756 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 753 0 obj [ 3778 0 R 3775 0 R 3773 0 R ] endobj 754 0 obj << /Filter /FlateDecode /Length 755 0 R >> stream +HW]oF|'oq)+ R8vڨ 'Q(N<)wGʯܑIJ`X|F___ήOo޼z}|!!)}yIp`dLT>=r}Z=Oi+{A'4Yu]X8BThnjcFπm?CKJeK:;rX +V}9|`Oܤˍmˢ.+MP%[b@,JK7tqycS[JDb𘲕F{zi.9~v$ӹG~؆ 5WBSp^v~"&ATgNy]-z n ]9*XK؅8pR-qZhn=\m< EJzLj+aEsn:ΐUs) +A/\9cDRdmR/⻶I,Wbqhxci9,zA%̸E;a) +f|t]v\1e1EMf`|[(vEX0|?lJ {22qf +$\X&h2-S#-zi]8u#P;ox]o%w'׼+KJ,_kYOq><;HJm,h(n] YRQd%p5 c,Hug@E%| o8ZЮc"rd uڕp:X 0<έV&0a4sۈƊ`kI(g@<7\I,n$ on @!6]j? +-51Poa͎$sxvk؍pβ,Z]J ~.v +JAJ ,7&Xel7v^`V`ɰ-7gEe^GJ )nv:3αyaߚUOdUf5;Y-[iX Z:g,XA4x`O6rre}a֒vk,1",Ï7ߺޟ~5JlUOZhz0oƚaKYnE~w*໖Nrak;GvxY;!|UoKKr]_: endstream endobj 755 0 obj 1569 endobj 756 0 obj (WDʵfW,]PO^) endobj 757 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1746 0 R /StructParents 557 /Annots 758 0 R /Contents 759 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 1068 0 R /T1_2 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 756 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 758 0 obj [ 3769 0 R 3768 0 R 3767 0 R 3766 0 R ] endobj 759 0 obj << /Filter /FlateDecode /Length 760 0 R >> stream +HWo6n|sp[-ZlmhE]\hH,%>)r83͛ͥWi@?x3tlOQdxPԹC©'ySmT&Qչ\v.hHM6ͧ4Lb4e9(S.Hgel@|9,USan_z٭x䌈l,^'v?,H9*+RٮelhC2[G˟o:233s*q2Thh'$dhr{JkeL*'}ΝHo8̭Ym֥U;$'&I0%&j!!T6*vcj'$WKj#ef)Yq;aO'};|?vR,\u|#vMks3bZmm0s]N+Mu*}n%MNb!W+n*`Y+ɦLfkiCš/Y%W +a|^oWx6>'ߢ:EȨ5;$r_t)ӔnZ#sVݜÆ +8%͎(Q"=U“78?>J\um]=2Pp S,VT1J%  NC18o̟yfol/\*n\LēJTBQ'm͐4szw}*Ŷd5j  橢~dXohuY"wup0hG3bj.UI.X߫z܎)2.ӶkyK#aԭ?J杮խV&’RW! Ǔ̫.^oo4{vn$ 8h4sI@BɈ%ɔ\] q1%֋ʣ}ÝR,?1vOWm4oS<:uOtXm%0AOJ: 6UmeƤ bAæt5ţ'sP((\)P TG ]y"=F7˩U1.7*<@3Hvt0ӎA=:<9E0uIۥsW[}rm -hssAI8tƣc۾DEp뒌 / 3wJ-\>0iW?|kglhJ*Vao(s9w  )KVT7Yk $#ܦnW_k =O`w2 5aox ɼ 4FoE_|d owpIw_> endobj 762 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1076 0 R /F5 1072 0 R >> /ExtGState << /GS1 1087 0 R >> >> endobj 763 0 obj << /Length 379 /Filter /FlateDecode >> stream +HlKk@.myh6I,1vbl5hAιc"\gc@@\b/ A!5G\CɧWy7D5u<٥u,ЪMsm.ćĈrclϪD})oDgDȲ}z l/2Ql䩨P&iv;֟T԰Fy'Y^c[ִ0 ov%A8cQhz0{1L۲CVO7Qp(:ZUY0CC1ٱ?.-XR8jVI2FAhuJ&<8xb£Y0o?z>ck!sJ,C> c[~ 0e +endstream endobj 764 0 obj (<Ys^Pv) endobj 765 0 obj << /Type /Page /Parent 1746 0 R /Resources 766 0 R /Contents 767 0 R /MediaBox [ 0 0 612 792 ] /ID 764 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 766 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F5 1072 0 R >> /ExtGState << /GS1 1087 0 R >> >> endobj 767 0 obj << /Length 483 /Filter /FlateDecode >> stream +HtOo0skv\l${M[mC-31nl_HB7fxy2@ BW+ V% TPm)( g%C2!½6{c- +ddE!́;4D;T() +H)R؏JFxte\9g|`;QՈ[ߢ۷alXk ~@nqkm[Yh> ?a^=/ƢҺ_Hxp%*':N?ΚVYV=;O `F^6Xa‹<PUd@)_M כGRy<R GM)4pcGUOr:ɋjy2꧜t$SXe &C ÂdcbtC 88hJ _k +endstream endobj 768 0 obj << /Type /Page /Parent 1746 0 R /Resources 769 0 R /Contents 770 0 R /MediaBox [ 0 0 612 792 ] /ID 764 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 769 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F5 1072 0 R >> /ExtGState << /GS1 1087 0 R >> >> endobj 770 0 obj << /Length 437 /Filter /FlateDecode >> stream +HtSK0#H+ln}Jc/qbpdF;*$5kf2 vEKӃ1!,5"rt*+|SƑx ɌʦuPJݽ+9Ї$@!Fj78MS saRYD +c7 +tuGpQ7ڡmAg©x՚3xjЁyV=;{@#ƪs|-A~ZU;jH{>URh֘n| ܺjt5R֪SeORcBwáŚk'Eژn.Ȟ˻"ۮ͓$A$A0H8OV'%]!V恦>mWxJ> endobj 772 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F5 1072 0 R >> /ExtGState << /GS1 1087 0 R >> >> endobj 773 0 obj << /Length 916 /Filter /FlateDecode >> stream +HVKF[[%}dVUB8D<, D嗨W_Woսz)/"$ +V!+ +w%I(GǧTqI.{C"_@ޖEc4#F=`4샽!K(OiTfYZ]GSCS¾ QPA}CccyǸ'ywYZ7P>©2~(H%ehT~ozpZ$)8LYD\1 4'S[νc1I"% E#;QߖN#f}0NU76F.l|C=>j@$yg dl]Gk;K)Z)%@|JyK,{5YqL&-zuaĢl_'eRzbƀ\hinx(/0Cɢ /?9%mwv䬘b6I1Fn71fPޕvӴSo7b\h~lfVB Eq`Qnȅ#]AGMThe՘:J/7imNq9AfDGہatuMcՐkwO/w>w_V`tǻ_ozn'qm\[FA/3m[ 7J / 7]Snz <PK4zl %RnK+kM½>."5HA +p8+'WYm= t{m-Z&$d:zb:pP D&9eVR9tJ^o|eNx +endstream endobj 774 0 obj << /Type /Page /Parent 1746 0 R /Resources 775 0 R /Contents 776 0 R /MediaBox [ 0 0 612 792 ] /ID 764 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 775 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F4 1076 0 R /F5 1072 0 R >> /ExtGState << /GS1 1087 0 R >> >> endobj 776 0 obj << /Length 766 /Filter /FlateDecode >> stream +HtTMo@#H*m=$m(p[5z(=؀##(6$dyξ}pp; y8EDLBH3<2V%k|9$n_;]~Ste&y&)L$-t/)a‰YQ߶1Ib9`9[ͽ(E.c6[$d ++r8TȊm^eP^Pڭf'8r6) `oЩ+k EAgz_벂刍A,oKBUlkF*bI<Mzǰ(^7Ēh*~ڬ^;ɷ*F/E}*GwTb<6o3|ʈ/PS$A?0۟3!\n^E!վ";Q,!1 ~+ +0 +1Cac");©$Qq*DYacm|Wz(p]UD:Ṇ7{׫8ܣN8zSIPiHB=VOt2bdiD㦁1.;jԪA&6 X{+\ hg1)x'A>*AoҮׯyBE<O<~Wx1oyh=nkwUg7Ecl;Xw!x*3gFDvԱ8J4¥%X6~ڪ~?pJ)q~ +^֬u:TAC'4QY/[ɁK +endstream endobj 777 0 obj << /Type /Page /Parent 1748 0 R /Resources 778 0 R /Contents 779 0 R /MediaBox [ 0 0 612 792 ] /ID 764 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 778 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F5 1072 0 R >> /ExtGState << /GS1 1087 0 R >> >> endobj 779 0 obj << /Length 613 /Filter /FlateDecode >> stream +HK@&~VöIږ @q] ۤшysr +` N{$TB/bA\u? >rzMUk%>sI7QmXԠP' +UսO~O+Rc5fZ!3$%#?[s&bg;գ 3sZEIXƸn$;.fF=83;2~-unLuBh>Ǝ]2a2L&7Ad:;kxO2Ŭ*#g|pJ4tT:qq䘸.ɒ}|? 0@ +endstream endobj 780 0 obj << /Type /Page /Parent 1748 0 R /Resources 781 0 R /Contents 782 0 R /MediaBox [ 0 0 612 792 ] /ID 764 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 781 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F5 1072 0 R >> /ExtGState << /GS1 1087 0 R >> >> endobj 782 0 obj << /Length 828 /Filter /FlateDecode >> stream +HV]6}G?[+G섾TlU^y} ҂PB]@33Ǽͧ' t)^$T* -F+m? exNfVg+XyoM]N[Śd!ȒB@C̥i}ޝp*vp!#;WNwi6[UM%G-hgg粪x,EW(riroyXK4`ڮF@mIl`.FWhg lI`oF!Xo g,T6]YŸ'GD|bx Hr3E$K"T&Xfט('"dnMV1FORz>`Gu."~O1YMʋ4 ^DG;q+^On" |().V9XrlvB=,K ah)a|^ WyR_RŰ7,e/=JדPLz$cVb()V=Npի֪u' T}*Q_*g$4i]A3.j_&};^'bmu+e]o7Rު—M*vGy0R1#?)]{l-!MB01ؽUdw%h-Cy;g^;n߻ŗ]=i"U#Tt[>L@ө0;n[bACu"$-`# +endstream endobj 783 0 obj << /Type /Page /Parent 1748 0 R /Resources 784 0 R /Contents 785 0 R /MediaBox [ 0 0 612 792 ] /ID 764 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 784 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F5 1072 0 R >> /ExtGState << /GS1 1087 0 R >> >> endobj 785 0 obj << /Length 1081 /Filter /FlateDecode >> stream +HWMo7 Q"~(NQ4@ad}gH+k b<~Ǚz:d F?b\XVӉ`+\dEsɬn6͞}ڵϧcs\q! Bp1ݙ;7=q󁭷˲ +H(53>QXM +!X,!(~l'&`;vfR/5 [Ybcśt.I h+ERUY˫Ҷb86<~R'gPYbĦa&*zjuqp#{Ut!rl a~=:E ^7:UG*Ŧ +ͩf+*P([MDU$hǩjAV-JzD qSpݡ`w*uE]e`!34B:Mt$=!V[ϸ=e\C^VqTsWW\{GN5Bis\?o.OQ%gLs9YiwkOT)g3DtG4ʢM.WMxU4Ē"jǩ*,a +;ј)ЉTӜT55E)xLƣg +> endobj 787 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F5 1072 0 R >> /ExtGState << /GS1 1087 0 R >> >> endobj 788 0 obj << /Length 522 /Filter /FlateDecode >> stream +H|T;o0 ?|[X I=,]C4% -SF$ _R;H wwP,wrA1>HBmpX.0@ݪ(abw/ꉋVx?|ʡcUR*~ )qC6m8}S( 2|#LzGn 4L aP'j TvN{(8[ⳟ}+vʆ@!*hoBTex+f<*VbC\ 0mKj'Z.+e׆&ZqP̯^xBӬl,GЫߓm&:r Y76)k*"t:JLwt"PDZ:_k?ثgB8L9JsyqcCiT[{&4v#G`8 +endstream endobj 789 0 obj << /Type /Page /Parent 1748 0 R /Resources 790 0 R /Contents 791 0 R /MediaBox [ 0 0 612 792 ] /ID 764 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 790 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F5 1072 0 R >> /ExtGState << /GS1 1087 0 R >> >> endobj 791 0 obj << /Length 729 /Filter /FlateDecode >> stream +H|Tn@}&,8y\zQD-RJY`MI\+q̙3>n#`Q._~CRG ;oI:y7QB>M~GS$`? +AhRh0(䖯J +3!ڠSx@zBn3ȸP>gE=jlu"Z2&1φ+m-*#]1^)rC''>NE}"#r-k[W?KJQfC^VXCH+L3@H6s,&A@%(eZNk([x#kmoP6:Вd{"܉J#gƞyw9.uZSH3hI!– +oDFߊ%aԺT·Q +kūN=YUjs6wqOJ6;EK88sУFatؐlR{LZr-v 1@W> endobj 793 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F5 1072 0 R >> /ExtGState << /GS1 1087 0 R >> >> endobj 794 0 obj << /Length 680 /Filter /FlateDecode >> stream +HlTo0~Ga"@ +{u&Fڦƒ xKvZ$Rwm + Q?c0ȖxDሖ_8Z  i<~mۤw/HAB~6ChJ)vYYQh -pP\B(ך 8bFfϸ3:5 vݮsOt% +86тƌn&aT\Ƈ (t6 mKuM覭ZMa'{1*pgGV36/_w!R@Q +ͭpZˆJfu.E^Ra-ld=rAfPSҽ3HYoRΙ`(SX~^)J+}8,:ƱI,>`/8Y7 +endstream endobj 795 0 obj << /Type /Page /Parent 1747 0 R /Resources 796 0 R /Contents 797 0 R /MediaBox [ 0 0 612 792 ] /ID 764 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 796 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F5 1072 0 R >> /ExtGState << /GS1 1087 0 R >> >> endobj 797 0 obj << /Length 389 /Filter /FlateDecode >> stream +HMO0$|L*9/VOT +t)̾5!>{qtb@@lb!yrGCaDg-w;eYzWUW= $ 33FWFvL/mt?!)$3Cg??B ֝ ŘD9ނPUq/Amo9ml/&,BD j +Tz> endobj 799 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F5 1072 0 R >> /ExtGState << /GS1 1087 0 R >> >> endobj 800 0 obj << /Length 710 /Filter /FlateDecode >> stream +HtT]o0}pߚLM eٷV- xHĿGU"Ϲ{|M';DSp?`+07!!DtB!O ʭCtNf[<4i*U +56T'縀txl3wFK7g4$lͭ +(aa#>pUuN9/I,XZ"@WY%yݡJt4fn-|+F%#S{E~}JV[8Y۬bluf3`aڎ/3o gut݃YTP,@&LgmݲQխCZ (4z9:CX s -|~OTMnAX-C,ZXhfCTJԶнoE(݌p 8c]]Od{emvRJ•ܶn:gho߳JRO^Xg.TpΤOhڃNZ[O1&cG]|S5m޺ރ;BXq`Ϋ.o JpwFFS|Ӻ.xχlLz$kFx#pETR {,.{ۑ6ʍ6"K ‘8{>G{S`AR +endstream endobj 801 0 obj << /Type /Page /Parent 1747 0 R /Resources 802 0 R /Contents 803 0 R /MediaBox [ 0 0 612 792 ] /ID 764 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 802 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F5 1072 0 R >> /ExtGState << /GS1 1087 0 R >> >> endobj 803 0 obj << /Length 480 /Filter /FlateDecode >> stream +Ht͎0H%oBwm馕".!bӈy:M + d|s/4 v 01L}m996 0TV@ӊp{8V PV@}r)=` +endstream endobj 804 0 obj << /Type /Page /Parent 1747 0 R /Resources 805 0 R /Contents 806 0 R /MediaBox [ 0 0 612 792 ] /ID 764 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 805 0 obj << /ProcSet [ /PDF /Text ] /Font << /F1 1075 0 R /F2 1074 0 R /F3 1073 0 R /F5 1072 0 R >> /ExtGState << /GS1 1087 0 R >> >> endobj 806 0 obj << /Length 521 /Filter /FlateDecode >> stream +HlM0Hͦm]^8p&ivK!wg" ̃Ylay=PKrfA.!?g^.9;*%B.?3֨x7heT p?BA46EbWaXY؋{̉hE{WIaoQ\4%?;)8NI5B~+zGq<56'DSvuk2e9s]u+41qCǫ}-Euz4.YA4]Jz2q1 F#u[hMa `q5ퟝԝMvMxĽ_;C}xkX7m`+)ӜG_I@m(;@Du6R&?86l_7Io($[R ewE x,l1 +*kd=36 :frde#*QpT`3IJQ9~/`߼ +endstream endobj 807 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1779 0 R /StructParents 562 /Annots 808 0 R /Contents 809 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R /T1_3 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 811 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 808 0 obj [ 3802 0 R 3787 0 R ] endobj 809 0 obj << /Filter /FlateDecode /Length 810 0 R >> stream +HVMoFY[d& QNLhVHܘ*K(ʲe9آ̛7otoޜ^O.o.ΝKױ8AKh`Q8s!I…tvy#]at?\(97e%(N0C!mks0z=FCYf޿6q6w0ana8CV;+WJ*E½م36`d/tt{F·ax]fWU/ zކP 0?d&>*@+ + h` |I0i p(1\*774S\x!ΪƾqPP +l5 +(~h<"}"DD-fmdO0P f6echl+ZM`5aRjaL\'.MXD _R~ ~Jk%% ؏4M qvg >Yᆵ*i-Iia >.C~8-! + ; endstream endobj 810 0 obj 1077 endobj 811 0 obj (t}%[) endobj 812 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1779 0 R /StructParents 565 /Annots 813 0 R /Contents 814 0 R /Resources << /XObject << /Im0 5062 0 R /Im1 818 0 R /Im2 821 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 822 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 813 0 obj [ 3817 0 R ] endobj 814 0 obj << /Filter /FlateDecode /Length 815 0 R >> stream +HVo6. }[Z8~+ŠmRl,m < Dl%%){_;R3]$ݻwWn ׯ_8J@K6/IAZ@G} +޻m1|$p\>7Z?Y緪SZjрAZG$Q) +J1xp\cMv\/(r$yXY:YeYqS².h7b#3Fw#oP0vߗ/mxLwf}|(gr{lg!"8+hP݈n0 \Za\pFK&2m N i,  +߻N#&[9N0pmBX*ۡA<l;ķHRZѬaҪd 3 +z;PzXCЋւ`h 5H?G|?<= (kT78-x| +PلcG7C4Hf8!v 5n,EقkSh)arjEu/(O؞a9@7bN5in8iz47bPfo$y=8\S\z"bwRg2jH3{Faka}ƺ NPUsQR`uQs{?rIjQUk{uI8hSi$ރCOؐ_8㍢ n¼, 3 ?)ʰ@nݨ$eXK?,K7WJXk>p"̨ȠV`<Q~((>Sm9'T +&b*T]ne + .r} ;oXS4|2Fwf{&-sAdhn wDي畨w7v= +0Il endstream endobj 815 0 obj 1375 endobj 816 0 obj 18742 endobj 817 0 obj ( $dlr\n0) endobj 818 0 obj << /Type /XObject /Subtype /Image /Filter /DCTDecode /Width 315 /Height 143 /BitsPerComponent 8 /ColorSpace /DeviceRGB /Length 816 0 R /ID 817 0 R >> stream +JFIF,,CC;" + }!1AQa"q2#BR$3br +%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz + w!1AQaq"2B #3Rbr +$4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?(((((((|SOuwcE?_-_?* ?~k_|UJ4-/xsŞ,𷀼-_xľ_|gŞ15;Þ🅼9\!/|C\ix~I+k[kYgX|CE5$!aoA<*}TڞV 7O#ڿ7_y~_|5+w|AR|c4oxcuO&i'O%]xSL3T?xx\wC,t rIz>ϨL/>L𿋿`ov']|s<)oL{kO[^*Ҿ6oy[O"ÍP?O"Íu|Xo?`ڛIҿ~_ >(|2Y|ugie?ٞ t}?(>~A G3O+_Q>|Z?_G?(z#a_Kϳfg׀|sg[{<]o@cj.kL'o|;?GVu;Q𾗩X\a~8( s^'/>:Fso^}3⧂i_5OIJ[k.x[FŐn-S%J//g>?|.?Nώg _t7O~|APUmn/`;ۏ((((((((((((((n"n"vo^B.I~i;ϊ:Ė_0|@[}.<NXkT?D@P|@L/5W*vĿf_g%-Mz-FUMu:'oπ<{Þhτ??h?4t?|1 x[_}v&wQ5=73ŕ?)?cS?`Y_ҟ̟?M/(77 'ůGk\|[2V=C?O7Ë m-5]gOUӴ;o Wq2{?Dx_xⷎ5O_>? //H<_)odzEfu ]MZt[ML7eOJ~*go ,}%Z~?Ǔ ./[_#hgV#ڟ_lc>am< οߋ7>~c_idMo/i?>#MKwipZ3\EMŚ[| 5|tO(o퉤o?x'U׋5O|i࿅~ԼS}iZ=o=]i:k-쐵̖5+Em +'R?MO7oVzg_W?MO7oVzg_PEPEPEPEPEPEPEPEPEPEPEPEPEPEP_5?ݾ#X?韶E}_5?ݾ#X?韶E}\7'zD> Ox῎t}[4 C&'#ɹuK_ Jky{d%<_éX66w׺JiiMYmĶTLі_ٖ~}xW S;_N? KV?^-_1MiگoQxU]|AY=V_| w%Մ}/q׵Ox ƽSZ_ +OCM񶋡Z.3i>-BEem\i5_GI~?yMF'$/QZ3# >tZ5]wDkhW;FWNx[g/wO/G'''|585,>'|1u~!YM~_(uH]#R%n&{6ѭ<{ş>i_ï3E.'ĿskW/M5趖5N4wGI^my#L/ӽ݌z(n"n"((((((((((((((( x'-|Ho`㏅:?d{iZOGڗ^e>/j?,=_K?ӭӼIsH8hOu:|pA:W.'xĿT;J/|5W~ It;lncm'x+]jw?{m!n<4MIuN]; ^Ԭmnn("$ZCʞ)*?hX|B9| m wK%φv߇~{me?5WWuo kNkWhKa/x[%?ooOL|# cgc)?qw?XQo|mek¶o-u}K\uQi`>wG6)xo?]+mO#v}e1 3Sv6&jo T'Y[eǯ}x?|?yGqmwq=*8-> izk+*gGlh~w_/_coVOu7/<w?9)mulO}FwHxk[ᄋZk>bً߀t/ |8k?e|u +?l>x?᷅13 ah~'мC hޱwg_E >?gO߳f[i?,77O>6_-2 9C!4 ɡiz_D x(֚5ލG+*gGl4~^6)? }~:<_6G =ޡt]:J𵖡kj-_~>6A i~^XM|#ך ]MjÞ4z]:J]?NT ׎>2x{fE½s#57𾭪~ omIU$U̒Ek{[Imx|KBω|Cc|a/ڟ࿏|cn_/exN0CZ|O]{CAM>SғRծt15|r'ӫ_9~(^K|MKOW>VdO\jWz{uv#o&:gxoq/Dnq~z'o>e5GSծ|Q|y=Z6]߷y}_,RَϋږK 3eRu{w獴k~o hQ<1ysowkch&~eLQViu|s>h?}[w >0!L 76ڇ,a$h yRKA<ߘ,u~ܿ<)C/ ~zo[ c>io=K|KwcGm_ǷIgkx^LL'~K?l??ŸOCϊvދNŞ&ֵ>4+?0, ed4;qb#U_o~'^|*4׈l1|>C]q|3.+G/uJtݤw:SK _Kn w[~۟ u/, _߱dz??\IejJ:Pt -WTAuGEZG~xo]Y|F׀d\litOؓ׀l?V߉o^O<^ӭEybx_k|% ~85BX!/< xc_K}x*}r-_^|j]Q<G׉5/|@"5 '~մZ[ʺt%O/gO|Qu +o<|EK vwڗy"m CLװ;=K3ƣEPEPEPEPEPEPEPEPEPGρ~(j / /_>2xwkX;nŚakyžy⍾@ON?EO_j=_/&zׇ +U [ǿg xƞ |NYoNd >/i57vWPmumu,$R:?S߷ 3/ۯ۟g{kC79lj764 JӵWC-€(ۯM,~_ο>~?~;7/W_~amo MMg5Ҵ +QC㷄¯ڏk^*{a [_|}M,-3o@t?[~˫4?O+NXڿ>|hhj蟳_#hf&l4??~"|@|>7~ӟ[Xo[G@b|7ϟ >SN4|4z?|@oV ~մ{Dl=#Q-mb?ၿi߳@_qy?%/'f?#vG<þ)?5S;.G  +-e[:דiؚ_oUsHuGJ?c~^) ~g//ڋ4Y? k=`Q=?OwoF🃾Rx/~#Ě5'=gK #%¯xw>>OŠ4T"|Q|;A|?w⏋.i|Sm~4χ_g|$ßPY96>_.~!`_~?g_>/{ |{> }G:w_*/9x_/iOtKV{zis{k^!?w((#<mD@^+ԵC:|E_/trŧEH;tm`a,Mn6׷ j:?ٴڷP +(?؛ |qaƯA77_fg[Ų"PKRtgN5{ -WIlSKԭ`ӵ-: -ol/쮣x,XDhFGVV Y5?`C~Fk? ? ) K~|ogmq:jҿa:Uoxڇoz~ExZ5楡I-qc=JW KKHb8-b$0J*P-/࢟J|${|<>/l{`<~? j/to\ϧx4Qj2xTQ|5E/z|#`)3|WO:į[cX|Q;ំ~9|4 axS?/jz&+ϸ ?Rkڷoc&t9oe7?z>hz/ x? +4,Ե׈t"OZtZrT4.XN6?e!L_6)GPּU~~$k+>{ G›jov6/}u;b9mVII >E~d|2v3>w/>ӼSx[Io sa e;dDxDO,!Q_?J [_g| _ x~ _G🃼=N煼'oNkׇ{hm4/i6vVVmkmkEQ(ࢿc7! v4=浧hJ#Dr7RHOyDq:}TyZ[+>9?_qp|.O6 Kq׾"Օ<#ZK4:P-= mosWm|}7&~z|XNx?wÏڋ 7_? Aw 6gYj"SӞBᠿldTշۛ6? _߲x:b\jڏդxrFC?Oe?h(' )E8 |6x|ڞߋ}X] yɥO[_ N>>;|%ao7~$_ jož6۴Ǹ53R}HŖ~~?[Lu.j~Xh^ѿh?>mjdBN7?nGk?ڿ9s,uݿ'/cÿ-, no`_N +®}/[~n$:G?t%$PY5?`C?'_?bO |SմvDŽu_޿o~ծ4G@ҵ;:mCHm{Wd~95?>;xo*<}?|UoK>_ehF_e4`{5~;+/8Y|Ŀ~ؚ>.x+-Y>/x6 ]xW{/(?cPV׿eKT:x7߳O-/~ u4u?k/|X-t j o/س?lr@Kw,?Y+o??s(Ox؟SķVe7T~:Xxߴ-ž ۵7ҵ? ׎G.Z h?g*{_xB~w5|-6||힣h|S E¾2~75M"/sxf}j VMVbs!?૿0%o +h%xK%ԩom]GB亲GKYXؗLռ-/E>A>~Ы?gh4Y__|*[Yך.,Z~RxZUKX;+N/7]A9_ ¿7W9|YU DӛW j۲/S鵯G~Z$>>%eM <ggDKn4ByH 1C} :͙g#[oo Ss8R} $ Q=aUR卛WL|O7i0?h#>+p4X? ryS> o/ |)> |7?wς)%.ᧅ4 -.m1֗퀹uΡ_:T ^o_}~?R7o?Izgq_W^7g< Þ6<5gx{Y/h~,֓閺smjl2+*gGl¹~?O'@>|Y_)_ _ZY|  n^=8xջxt}ut˭Fsiک-AoH\S??`V`?l~wT؇Sx~Y?"#R> k\_T-J/xOZrk)oJm"uOFҴ^ŷ{y+;_5?ݾ#X?韶E~O*֣)|aAl|AxO0Qo^%OhO ~V g| 4>@xN=ǃ4IĿG^ RE_)Wm/ ~]??~ 5? dk#lP|֧~)~ڭlx~x Tc_zgOI(j85 M;þ4״ULjt];[ Vkh[1O?<+mi>|*n?h?WƷ𞹬|N|o˯mq[k孝rcS| >*-7/~?bψtMMfxZŴOc}T-lp?BhA? +sCW>x?%寍/ h nFF /"MmTm-1AZv~9Ogύ~>jɻ|F?lbo~:z_[A5?;|)oPi"G#n~m/w{Yu\S??`V`RS?`#wo_ ֋ixsÑ,>.k(mkiw݅g8XӮ~nӬ/nHԤӥt YttI/`)Z٤DRF;3#j~?6 +?\S??`V`֗3738E'}tj>2|E~,<{S~_#񧏵Wo~מmRߴUj _ + +oJӿ?i$>k?>Evچ  [oyyW)@>_?_o/GP|M))|{?'tRIߍu^t]ZY,m?^4k_ ૟ o_ ǿ|]+5I~!x m{FK^QXnil%.Sb_/ѼoYsᯁ:?X+Z_Et_ ij2C\f[|\~,?gƏ۫<[|!!g_x@_~?+;MCzG~"jqKp!O ?uv.wx>1|ol<>ѾeH"|;gm-ʚũh"Go!|}mvҰg/|ƯZ?2/_|O xkQx\6}jm}~ ѴI'Oյt˿*DN񯄭n|%/n|GqmHƷKx $fZ`A 6#ZC{-|w~~:> h֟ |D3Můi? > jΉ;.co${z#*Zzvqg6EOꖭ[m738E'738E'@|+vsgצ~~pUYo~ɞ׎K'Ş15;Þ🅼9;5ľ!.aм?a^M,qF?GKǾ9//u S[Z&mGWKl..ᷰiVWXwUXe^o7W_?d|^$o7vwly֭.?9|N_ßx?oK?_,gXΗTֽhZuVWzV{}I1y/I~_G➅D>"G$xW?o?-t eRO%m?Zx}UM)7qĉ_F? ]3c*./8a+_]̾?$A EKW}#? +A_3_^w৾]M{EJ,R=CHWG-ROvko?+G9oCYl=G< :x?,~4xL> 'c ޓ/6K'O@>qi-[Ka_Jݾ'韱}__Tϋ "+ZZ~!i,Ye|5 Kÿ<_i:okXCY]Rm7~07u*?j g ki/}J"cO߃)Ael?k_|rVQA&nno-t;;/y_DOS? NoT3ޫmzmX?wizA_^>7<)^~-gJ;oxYաF9+qap% Žw7h/F/zh ~g[m-;{KE?L7W;9STzM_W?+*gA &o?+3ȯ&t2>N?k(ï% ?7wtxK_|5Zeye()L?_I8~>x _玾#xOfۋ{ߌ|m~>|e>|CjW1u &|='쮢u(?hOSA½Y𶁭oxĚfxZo|.^u +F1%ޫm$+)>x3Frkύ>*\iW-a c?|+{MSMϋ|Ako=ΑGs4nm :F%wjo{Oo߱k8dݷ6 mOtgXkU_P~~RO;|AoX7MkwῊ>_|Wi/|ExSH [GN_ +jU冡w\4ݷo'.#gj:O쿬Ge<;?<7y\ [&>!|0pSk6MlZ-~_|c7_ǯ[Cu߃F?W7ZQ ƝK|J*738E'<-yu< i_xßN(/(@Լ0E>^NқOl xZD? +i%^d? YO>)[GѴO_~|.eq<_AҵH~oS_ U%Kx2+)%Nџ,WRioo_i:uo#ck#~Q@c/g/:m!vxkVzqK#ak)&$c1"W` +8_~N [.Ÿ#OڝD(ogRM*-GW\o3x[SA{h; hB~E |ip}~)*Y6oW qWwNm3R&+]7jF/|Fң_ntfw$ ++CߵnW*bcԿ&/n?#^3G +W! ᷟ0UG|Wo}LK}#DNUڵhڽo >~?^|'7w|} /⯌3xN4M"}{ZwRx?O:_cK~ޟSk_:4~O k?o*Au?~з?:;kq'U}Ey_kΟ|N j+ +-xNҴ{{-&t-[!k-kHVO_ endstream endobj 819 0 obj 14725 endobj 820 0 obj (I_ha) endobj 821 0 obj << /Type /XObject /Subtype /Image /Filter /DCTDecode /Width 312 /Height 64 /BitsPerComponent 8 /ColorSpace /DeviceRGB /Length 819 0 R /ID 820 0 R >> stream +JFIF,,CC@8" + }!1AQa"q2#BR$3br +%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz + w!1AQaq"2B #3Rbr +$4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?+>5~Пf Xxu_ZOKƯ~ WmK7vYxj>:֬-/&ƞ Awڞ +㯍]'J:V4_ A7%@b1/ R[/mgDJ??XT3WD(W?T<D(sLZOM> +ģX?ON )wSjy_ng`/ba Jo=;~?>"u/[_z<+m ~WԴ=;UOKQm+?>#$|k|S3x^=??f -|Keyi:.j>4CN4k/'OJ|>7|?v~|AOWß W.|dltC?VRt/|g㟄if u?c@~:g__doϋ1A~ٷ?<%/~xJ ߵ2< 6zh zo*Ɵ% (8w~$wgxFAm_/kdu]VA-"QuSLkFn&6z+,~ҟ>j6O`xc[xj{[oIo-:kĚi ơ)Ogu-;YӬ5}"Uu[+]KK4ۨ/KN;+ Y+)H9#] h?mύ^)?c-_|>>jv]Fڗ~)g=a[-UڶiVW2[I*Awm+$ǿ/ z]x?LڈcM5BI,gOOo} ]^Ekne# tWw~¿np1OLW|Q-4M{M.K"I$ϪjCorM*#u ҿ%;u EE`2i} VKm?*+)xK ?Ih}Ws~?> |?n%_p4x'1C:NO5+hUKf˵˿(<[%`/f6vKOڷXX׼5?|K֭WEYRx/7 {\XYOqooq.agr}E| + +G?h੟y+SPW?੟y+SW~-~+KO>8x!_'_¥u?/ ='PC}d_>s.EPEyg>8|!_4Nn IJF}N +(?!hO<9|_!-T|6~2j_|P⧇U|f~;oڃtSO]A[@ߍ_>ߋ_xWy=w煮WL>%m/"߈_?o'Qq}{xkRӴzn6|/ů|>\ĵ?~.xM:k7CTץӴsu6~?O??a|La?f| O⯎g +>9=}ۗN7z_u =gQn > +M?i_'KnaٟT/Gus3#j~?6 +3#j~?6 +?kM4$u0toP(h_:_Lj \YGk~xk/_? +x[]y×Ӽ7shC>|q&GĿ|`e?F".~ x_غơg Ԯ[ u[ I{2],kx[^/u_/> ŚΝ xOӮuľ!.aм?a^M,qF?(OWzoٟVY|l_d,?'ƱC +77FS?4}OI~x Fm{Is}xP]|A0? + U_?KooHuoll<%9xZGO+'<z  /}6P4_~->2NJto4ռqTBkGPƿ٧ſٳUgs_cksAi>).gݭmDv+/sLZOMW?T<D+ߊcL< ?x;z6 xOӭxk^м?aZYZPAqF>!)L?_I(k "<-5Hno :|4Vx}mkVӡҠ{`@~ό_߆g5|z'ßK?|uhEf"| }|Jק|m_Ces:4cEӢoCNS]O'9S/ *MyƟY##ECP~vagfOgպ`YJlgoՓ>)_?n~|O{?=q[ v5xf-gȆTH%_1PӭzbM*bo~?~b!q?5 +~0;ρ u⨴a%@ҍ[K۵L#|G|8i/Zx–gV ,V>%&.E2{l"euIT1E٦?>]ho#(~3/%Gڋ?gFԬ<9w/$dh^%/5_CV ۶XPmNs?"xEC'QyiO|M{úoM/UN&~f)n-u{_3/|JK~"ũ|A|_gZ.5h:qi{$O"h֖ hcO?/{&xPg?>ٶ^-oJ:Sg[}h,`:r"r|;x~A~Ξ8ϋ?@_ej/j_ccj#_,uxE"׮ńuK%'/ h~>|SPΕ^2~*o{>;xW\"J×6FZ[Ck).gOSᦹu<wX¯hoW[_MCJaTAuOigp p9 ǿg>g ¯k~4].{ |[3z5|> na/aMkYM0 oݿGលVi_8ewe7[J1+6]Qoú<J_i nrt sLLͅc?D~к_wR t?~9y AW?>]Me׺V_'mn^×ڿ?'50|[W:*d"Fњ$.Mt/&Gu;ׯcTdwI--zhjY +X#}xEa;dy>|v_~ɿ杢#|]v6ziG猴-?NxsBm4"+;Q{|k:skZ{}u){BYn'WM~P?G?L7W;9STz<ŋ?Q#V|^y~osN'wo7}m~]x|qD[I.~x?F)7fx,>/i57vWPmumu,$R:~ğ$n|1G/14 +|9K6,~ˮ|4aoFa SOM Rox_:ss?^-OW( +|p|e5ig_/|0f=.7 ,-ⵉQkZ^_Җ߲3kooUkŬb'Wk1i@S#Ğ(swrɫk/t ѼUm{I\S??`V`ȯ٧;w3>m]ѡ<?Y?[}?I- NMGJ],/_qk>?ڳΣ2 v iƥcZ}o:g[/o;[H ?~ҶI֤ 2.j~ԠuI56oW!k?S÷ZG^>$kMm-Բm{y|?q_V???&}_q_V???&}H~#S?c0)_W~~#S?c0)_W~j~|5l><;IO'uXƞEgn_[=fπ⟁ ㋯o> Sϋ>kj&kx_>,:3@RfhZ6Wu}07quys¿ |-z +/U6ohO=^O )㿇?捯-?w' |I|U״}Z֧>R}o?Gox[U.xc2o:;: uk{ֶ^[τ5OP🎵D_Izߍ^!uC~|I3q߈<+tgJ5NjIciViiZuk%m:YR_zGnny KE͵żfh٣n_o? >"|+ΧeozDYѼgj.t+ ԧ{w$T ??'=~d(¯ B}Ə ˯G<'{]şq!k6o-OKŨe%O?W֖C|Ow/(ZC߇Uo x4~]]HŦ'uiMώbUnL> Ο+|k[?x\?-Y\x>\B^M7%x<}ֵ;,m45oKu￞]-ß Q_/_KSGσf~?Ɵaq_M?~^Wqhh!.{qmhwZ9k_&ý7!+|L_h=K^%~5x?yJO5-E^;Ҽ> kM-&0Pi]k}8|9Y5+8|9Y5(T^|Q?ƝGּ C6ω.k>n<9ċo +j1t61c뷐I-N}7D y`>L90xoG w^ _< d5⟆Cm[ߋW"u{W֫⛏ {a5Y/y 'g·<[J'o^VmۿIu >߭q\jZ_)__R%/Ѻ_>3|4~'g|,է=SŷgN7k6kI Nß|aҼEO ~?7_^_>5/?/SǏЍc; 5;;H5{mfK2~gv}/jv-,oK|i9DžOW{O~߳ x泸owmk'﫛X,=M'W|YG|t&?|_xsx'[1 ,IB>#iMjQiqq-m|.~?C'oYֿ>Ywm2N-|+|Ix[AH!K1޵YYkڿ4C߲)ঁ¾񟁬mgmtX|Ak^^RH1zO|3}>kZF}kZjW ڪR׶m_=kt|1h~-0g|mwFOGkW A<[q_//:{|)3\{mTq'`sjWq'`sjW 3⟈)%xgς~_Oj >),/>.G^W;ſo«Mǩam;ºv߆^6aӼ3/rQ4~_E+6Z[jzߋ/ºvCF__/U?kgC (ό- /#=CG_%ϳM?n_ϋ?'_W,ƽo&@z7k?[n|:)xDЮ}?.iĺ\/Cui[Eis57jX^| |yO|y-kU;~?dW^ga ;Αm{ igV.};~n-J?hK gԢ^>4->]Kgt-o'-$m~$GZ>HM-ƧcVo8ֵmB|<-a/^ |Ak=/?%/_/iڮeZN]Ees%w:D[L;ƣ|icxW|6W_G +gOڛbx;x{@Ѵ{=: +~Ο' گ'x/? +SxZQҵ _ڶKe$m%΍i;B螠y7,?mR"͗|AE7yֶ]_>6y4}Og6^'>|||EQ|AA>*&Uxs |-A?S=Z~ +4M{kk_jZ#_t +}EQEQEy Wߴ?Ax'|cxNNNo ּ  ^U!u۹,8{K?hK gԯhK gԣ~n-J~n-J?hK gԯhK gԣ~n-J~n-J>,9'qY/*'⏆_</|5g/E<;xOχڅڬ.o-A:G*@Q@Q@|7ϋ~2ʞ(ᯌ_gD]cğ ?f'kW7 o_~G> |Au-{G׬ψt?}ǃ~>xgI__|X|QYĿ;~(") )munO<5Y43GÞ#5?^Ӯt=GO즀7~oſN0?h?Zy[{?iox#ž*_Ӈ< c-ᮥ_Ѿ?~;!-E|e$eK/[u''|Ck!< ]/M?[,lTGW swL<wl?~?<[ O7"_?+OxZw/O:[zNqk ~:|;- wԼG7çmJx`[:MoT¾m,}bt{,|w WQ?৿|%g~ )5 Sv6~OU}m^Q?.'o M!o_k?U :YZgށ~Wl/m_j>i~x ⶻ_;č;Tu] ~hW>2 cĚ&h:O4=[U6t[+Ty5[aׇ&gůWW__-tzßs m,O 7+=<-_^ |AuS~x/_/iV{[xEN{$-s%i[Bc⟂|hOį>Ư&?G?3v ka?) Exw7![m7P4袀? endstream endobj 822 0 obj (3 u_gL^) endobj 823 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1779 0 R /StructParents 567 /Annots 824 0 R /Contents 825 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 1068 0 R /T1_2 5061 0 R >> /XObject << /Im0 829 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 822 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 824 0 obj [ 3811 0 R ] endobj 825 0 obj << /Filter /FlateDecode /Length 826 0 R >> stream +H|N@Wef+TTQAUg/^$wb%Rx738=_O/g8;;M&(0?Fl|ꍚԺP)jc6%#~rl)~d1 B:.$@;Zz:>^(Nnj]A(^6.^3J^V c/NAzݡa; 5@w[NG&C4@{z5 endstream endobj 826 0 obj 601 endobj 827 0 obj 13950 endobj 828 0 obj (vI ) endobj 829 0 obj << /Type /XObject /Subtype /Image /Filter /DCTDecode /Width 313 /Height 61 /BitsPerComponent 8 /ColorSpace /DeviceRGB /Length 827 0 R /ID 828 0 R >> stream +JFIF,,CC=9" + }!1AQa"q2#BR$3br +%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz + w!1AQaq"2B #3Rbr +$4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?+_>ߋ_xWy=w煮WL>%m/"߈_?o'Qq}{xkRӴznC &߲W Wi*7YG{i}_a _9Mx~"'_> aNҴ/?/z>ic5ZZj^SX:_>#~}@'W?o[g '˦j[]W-ך~*ω jgo37>W?hcI-ٯ}? }OK/|XYᗊ?^Obu/xORoxIl.q'4ˋYvO@¹~?O'G+*gGl#T A ?5~?%kB +i[o/iEÏ~?OP]|gmT,g#u=C__|aNZ>PӟJ·^&>q3Y x %׎K'~|YYӼ9o [Úuα:64;۩y(? oO?׎/7oA>6xN~ߴ$w4}G5GixK8zfV#tI|փCc~a|Qeڳ¯*g/f^xA]W?^汧z-U7`|E|?euxcULA$5LJ`>~+Fe>~CƳ폧~̿?g_?&?۷)|a4?~$x[UfaZ$ZT776VZZC-̱omom,!"Vgv!UT45~9,xXQJ߇|soCD7φ|}6zE:\X^Kl[E}cufg761ETQ_ B>(w p|j]/7K|Qu_Zw xŞE<jEDl<=Þ?IMmj}n\tl|?K]< hͿdأIgc/*b+c5 ֓`)cI#l +hK gԠ >#~s +#|>y[#2>jvυLK j^)WŞ:l'Mմ+HbIR iY&@( ++<_B| |Y쯋,WOS75x'n6}~eygɶ$'z(kۧ~*Կe?ٯo,gڧQ$J~OO R?Mк#Ro'xZ??GY5@~65 Pwk⟃)е_=!|6Ki!.uK i]ˡk cC~;Ou!no폷+w1VJI_?iU'}~<-ᯆ?g߀~ +Ӵm:_ >~u/>44xVhFmsi~>}?x[Ǿ׎ _>4xzΝ? x#ӭx^!f|?Z]Y^-յS,H@>!+ +[u/WOƏA>o./xGlea_o}S?}sLZOM>sLZOMg0[' ?(?ojGo)>:6-𶙢\ռh +97w~|ۋJ=[ck7ǝ*o?jW|GH>(DbgXz~9%Ϳ|@[Þ.t]{N|/ikiƯk~>|N _ ~1/ +-xNu/ XxZՅ&t-r+(k-k&gO~/Ev/|9u@&>۟k>dj ?Ï^ 2#᫏>BL Wngڷ?h~?> x;^,@t_zKyßPV<=|k{_4_j>.@F~`?Rh$}_F~`?Rh$}@ Q~O<5Y43GÞ#5?^Ӯt=GO즃"r~?R{IǂKK3O~7Ҽez}e֛~Wuſ7C➃xWķ~|@vCGx#z&g3i_~k^߆.,>)jw*61W*- {x%Xa)/.Vnn5G[;xaY`]QEf"805o?  +W࿀_R/أ>:~/NH<5oiW{I=FTOkzWFIuk:* ,罎 '5`Y=h:G_xԿj?<{{/kMu'$w֡!]=ů,^/ /%Q|F%-zWߋmuMB jk |Ev6W +7Y=ާc'{cyRqxPğ ~)xY =U-o~%@<Ǟm,Um#xB8mR9k{+xnbYV;5RE O K9aIU kkvk!颌ow%VNW|p-HBZD 쿮>~ƟK +{㏎?W}St}OKwOُg٫PRϠx⎳|Ga~+<<5[㜾^o$~ʺ'_xCxߎ<{C7$x6^6~!?ռ[Y:/td.4˛dtSU/AVះ+uK#to %Ƴg-{h:ݴZ.5E4oGrtP)kVs >jsxKԼs6/ +=GCr\L"4={Yo [ͣ #n߃Z~6_W➛wV⟉x]~8{NC$?wgto_uXu,^& ״<o?>?uc_W9|4 eG|1>~ZΝ ߅:N7jMrm}.o걙-֞`YJlgoO>/|/mOoĒx[Ú?:Iڟ /\%HU+ +Wfd;|FnMW;9STz??L7~ز +/~Ǚ7ЗF3|~o?m>s}o,|'PMMgEx?mw^K Y=L?xbXnmW%΋3[]m,Lu*VG?_<-[OK獮?x;>,<W|im 31x{Y/ُ@gufLt[h%Ve/!}~W?W __~P~@ï +|gd(xXԵxO(_ <moNҿhzϣO}< _| t5z7|w T4m|5Z:|ٽ_Zjר/ө_e%׆~#kߊ|7hmo_%ا O[|c⏊_?e/^.YxNum}C\^[ͦ,awiq_H[TO,f2hǨ_<3=;PK/ +4oeR\q?dW6Vm_8Jxw63hZV/EnO? |Gekgߍl Zo-+Y]iVEi:/l%>aږ_O%sjW??ߴ~x?f +º:OWGgq ^^jZ&cBZjwRml~'6ϥ_:uZm/ݟ쭥&q> i_;Zx/R,/RKas#v3jNX?1I`,Zþ|;|s?o-Nw6?;;ñß7y:ƯuxZW?`7CӴ_߇T7[:lˍ3/> ) 1| пfKg Fe5] ~#zIKuXi;:{/0_ _Wu35' 'a^g_?[kiՑoTk5_b#uU/߳|V|?um|^||jǽb_|AxDҵ}{V>jfֵ{o<}yxw|kg(DŽ|'b/CZ/؋!&zO"Ofȷfnm_Z5=B`>?MJ?MJ>)L?_I)L?_I +~(?? /orx<į> 75ͪ|;Uüs~ngiZO7 # fOƞ ůj~9S? +QΝxxG/gxh=זLҴ6Tq읮~_O)߄| eǏطo?RODuKO"UմW?ANKc4w +,s(O/| o|eo跟-k/xľ5Լ2x_Z/k~ ռA)G_RX[,>x'1?ࡰh=oᗏmO +tPx~"h_<|n xO_ _n􋓥xPƹhtOh+g<߈_wk.S/|FS ºyg gŞ*h-:  㱞ˊ.c=ޞ~h_?5y5riW>_źEX k<>xwF{O<-}໿m / t-frkw^Ko)-/$Wׇ8j ;Ѵx[~ׇ{hm4/i6vVVmkmkEQ +(ـ+qƺ-Mޯ/v3ơZAx&բOeF[fVn! Hmqϊ.>)XºtCM.giq}ax"6k?u汬| ⧈=g/k]xy<)-"ρYŪ_eC4w sg/o‹/~׎[x-_}{Ud}W@t?5}kH𕮯ok*B:-uz.?~Sx|Ag?B/>6~ݟsGA3ﵟm4s6?j~Xx.[R<# [-ۭvķS[io5Ds;BdHVB ?_S_0'ߊϊ|:~$:]gFWcD:ԴESNl,lt ;w`v?ڵ߲kؿifdڻvm8zv,`?Gj,`?Gj@}EP\<5x%vs ='Ş|5]OŞ)mtwNn|5:nGmu+j6a+{kw 3Q@0|dW ~_<[]׆cM>yFj:V_[|]MJ[歪՚Z^8|9Y5+8|9Y5(/ο|e^sSu2DǟmG:6~4:o|[ kEl?t -ӴӝZ)_O? +>׀>1|:ZG1<|g>&^3M]}}_yMgu-ż>=z)~MƧ#l_KFv|~" jmR7?E>[UҼ1ur6up"ꗗu${g +g~'>2i>>2~غ?1[Fď|~|?;Rl<'/t? > u+m Setm:];|o +>"⿎~ g~:wz_" [Qi3Eм=eiH\o2]BM?MK[>:S:o29wH/>,Vm5V ,_ si}iucgs4kmBߥ-s;|HO㟍ZL'|I='^l^)$_S^ ӵ-[Om5^D:i"`>?MJ?MJ>AfG'ǯ>-?O^3'|] 5 x^=O_z|y:lSj??> ?lJW?aI<;ᯓ~(?'mxkT?ᯈ^&x~QխοJ4hWMp~hO!OaC|×>!~?4hg1k_?='0x iKž1m[|B׾|il5h֚YOPEPEPcw>8,W⎅ G/4_H ú]lwP4V-awkyo6 9WvEŰS?2+(vEŰS?2(j~Qo[3">j~Qo[3"vEŰS?2+(vEŰS?2(j~Qo[3">j~Qo[3"*?d[ľ׈mx'ƞ|'x +;Yo:?|5_k֚˻[+e )QEQEW>82xgğ?7Ok?| =ؼMex>|7wM?Ş+z3/rQ4~_E+6Z[jzߋ/ºvCF__/Um_#U߂ߴoVм?u_|qY|oizxMb_A[Ҵ{I>x.ea_>5~i? XxtZKwƯ m76:vx:o,A떱^ +mW3#|8aߵ%~z x_)54 xQŖS4K^iEs^_ Oηծf%b$x=d9x^=KoQxLMoşY05ѺCj|? @|>UHӟ[Xox_Kb7wMƽwhVuͧ]~*gFE;Ө_x3O/~ҳx/LJm?߶go HhM/?ƞ ++[xlt5s6RյOY~Aj~Qo[3"uVI/~ǟ'):::ů_ω; {5 OXj 꺝7cm :H?bo xĿt~[ |5߂_qb||{kQ=f x'B_'>6&_ <Ozk>.4֬!uYnu{袀? endstream endobj 830 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1779 0 R /PZ 1.01765 /StructParents 569 /Annots 831 0 R /Contents 832 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R /T1_3 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 834 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 831 0 obj [ 3848 0 R 3843 0 R 3839 0 R 3837 0 R 3836 0 R 3835 0 R 3831 0 R ] endobj 832 0 obj << /Filter /FlateDecode /Length 833 0 R >> stream +HWrF}G"w(A |jSJ=kj]Z_Ks:Vy.E@<_v?mUoڲ[2_Z?L{)S;hgD"J"kOZݫtMԷwkeԱDJ<}mA3j'jӪn ͨSu*:j= (vx(j^M%ޏyM!@F]Sf|ɺs1@}2 l6Z i0`@5[)4݆Q><ו0 *A^pD.sGn3 EJ}0#}9;gϪ5NuJ]٨2~7-!mt/3LL6H3bG| e +7[Șe!C5n{Em?͛^!aMkax`ۦq_;to*f6oAc,2Qݔ:g-Vg߮krt-A?+'(cdTnd$[Dfy.<⌡Mj(%xLOBGoubTDFveȣ)¶uV$[հGUI +RjQkCܫ3ݜhluYd(ضࣣ {:Ifj$fpfufbfgH5FFȰmx|c+9F4s!jC'm3|λvLa +*gߤp]zu0OKgGME7<4ғ ){\n!bYEOOI=$.ZcuQ\І!`Gj U">%Ā;}΄CY~s&:3s'8[^=ݯ^y2vRHыOϻ &v{}vֹ +cg vM+Ԭ n*:30-:t;rXD|p7 {zDH(4Q*cF^4m +Qt]Adz̍)X<8(qsocWDdQ1GT1u2pOi+s1AQ _(rϞ  S {덌=e #v6E;': %.IBc՟%]؃"7]ډa 0>=_SN endstream endobj 833 0 obj 1834 endobj 834 0 obj (z;y`si.!) endobj 835 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1779 0 R /PZ 1.01765 /StructParents 577 /Contents 836 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 834 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 836 0 obj << /Filter /FlateDecode /Length 837 0 R >> stream +Hd]K0_q.i v!8# Rcڙv%n!tSެ X,W%}8S0KtM"xP\ٷ}[7_!xZZJzPTsqKB3iSn))Wu3♵2~&Ӕ+׍jinq-u" ŐR"7DfdUmZHmtˣ:-7%݃ZT endstream endobj 837 0 obj 235 endobj 838 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1808 0 R /StructParents 578 /Annots 839 0 R /Contents 840 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 842 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 839 0 obj [ 3877 0 R 3874 0 R 3873 0 R 3872 0 R 3868 0 R 3867 0 R 3864 0 R ] endobj 840 0 obj << /Filter /FlateDecode /Length 841 0 R >> stream +HWn8}7bɷ{0@wg0,֋mZ,N$CRx~OQ˝mC&^Nӏ?<|ӧσ?#|9*q"o[#}1;=? /(~QB/2N:FQ|Nт*fiưq-1f/A4 dܘYh>휖Ѩ2V\Zz ju$ctIa0%?1(TG)LnW?/k ;Ʈ+#?f6a.5LҶ/ 9'THk]9ʔ/׹,H$hRR,)~6R:)KNF:HwBE:~upc\!du^q0А)XW'ӕUBHNVmy*w`VJNv3 K0{[mQڴVgUwG |c's?g^ -|FeB8 ڇ¡c&s%KOuDEЃ4IO%Dg$Oƈgΐ(mP۫ϕsBF鍩Ҝ:Un}M;( >e`.:4FTK'TiYH[iP>LM>':cΘfJ7vHоFuba9UFUX|ʗ [ ] ^ɼ9g&(e)S.۸.fuaO iqRXǤAGWv.ˍˆG9  |Ϊ%VWuV+ +&ޗ+ʼ +e1вlsQKK-Gv(~岺_oR^]Ha@8uCBj>CPy>a49`٭_0L@) ]!kv_D{RȎ4L[$ŧH;L|E(DnuB!àa`Z*+/w & qaւG|4R1G<.> +`3 ZjgKOF0[qw+|ۭ۳ݚ,['=[ͦdy6Y'Ygl:c.s舖8Ȍ%uE[3.oV̓Y2f l̓#b㱫zp-Sf9gZ E\"SXҧ '詅׸dHRɘn[K࢚Q0dh`P`$>(:kB[W].5iz_`68LnP5!cGթh̷ՕGhnQQ!4ǽCeONջ!|Lc`LU~r473z¨=,0֘< 6%DVaDQR4-fGgA8>,h}ߵq4;>:E:A=#nO6=gl-;ꭔM^?c¾ձ,;s&/-Je r5h3LFv[֭h暨b{5>m9mg^4Y6o)&y ZpI$|" OΪmg2֕Q~8<[79YE8քD"4":M}C~T_2I}9~̤U:=]IT%׻,2>t7wu\V|[\;Vah'}&r ou{3Z /vP]%yxS!GuɆ5ͽem|L * []?la[]7/Nà-Q! * V  6Dg>M r!fUDcLfi7 (ΤxYKv(Un)[{L6r}C€)Z4/)~XpxאqkUq~#6(Z(0JWW@kym{[ +vDTm`Dmթ V|jFXDS t 551v6t<8( edעരq5QX]hߋu,9I#"~_wk~{ endstream endobj 841 0 obj 2358 endobj 842 0 obj (y Rs"|2) endobj 843 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1808 0 R /StructParents 586 /Annots 844 0 R /Contents 845 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 1068 0 R /T1_2 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 842 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 844 0 obj [ 3862 0 R ] endobj 845 0 obj << /Filter /FlateDecode /Length 846 0 R >> stream +HTKo8 ["%U( +NvfMP--$%8r`E|/r޽]޿p1b& F_^ +s15JεFt(C{ uD5.036I]tZqiX]!W:*wI3ંZV8f  + +*aWﴨ`%Bq;4- +t=,-}/ >PX< \vlV,K[ [HF(T +}UtZs5䒅/Ety5F3A =dz{= JГGF¹rZ($LpC¹חvlac#\ $МZxɑ?>J́#k27BPK'IokZ5ֵbrW -v|7|^+M[ȷCcU6ڬ`7]Aa[ +KIX^E)|lB4wMKKY.߸8V k-tGsYI#+If8ޠlh +\ )2ܝ!33͡ipI٬PQ^$ecZ=Py3P (f8h򖞿*X>$E4;f(BW/.|zt{W,{ZoV;pG2PgIZC&,8\tiN f3ؗ>kh'Po T|r@i>{bq!BSM endstream endobj 846 0 obj 841 endobj 847 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1808 0 R /StructParents 588 /Annots 848 0 R /Contents 849 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 851 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 848 0 obj [ 3901 0 R 3898 0 R ] endobj 849 0 obj << /Filter /FlateDecode /Length 850 0 R >> stream +HW]oF|o lZԷqA:upl:*8ȑ819ZTCb?Hqy}O~{;2<fLV>}GWǣ1lJŒf鈲jp}_ ~ hL>6e)zoMi*#łf1޿\K;iqz,YI3~i1$rAjpM)+GoV㜫4npxWFSlwၝU>HaK~n>t UQ7t&`Ycwؤ5K9/90N&ŌA'Jwe +=5@x0eͩ;P L鰝ġ +OBƒ3d}!]*%Ɍ 3Q|poj}2ﳛi2iq oGIxr`2IU{ړZ;](+лZ$/T+17+Yi:g'=LɬMeл3x74mu80x.NeR1{iEYA1KBy~ˠ7dт$WOrU:C%BTD d;rNΈ&x>vk8=ړԦzG?:*粬?H輬Bڕ:wdk݅e : 3Sᓛ3^2Z)9W_(.p)텆 Rz9ſxzd8JkO[UJ^(6m]/whsݴ|E5㾫X{^<67Vڕpʒ";Y![3R:WiꞦޗ/A۰ }P= @ Hʺɞx*P.o!:ʅhV*QV腓sO9Rּ Ҁ*+`Z p=>ZDYD78j jᙪF +aEX۠9\[z*:@vsP83}[Lg΢`j + ذxjmn`P3W"39yTYGb{ $NFC3M̚Zbr@Ş{0k<~DcGrl땏Lt., O줰28d.[OaEun.+1^NK%E!dGj 3VFcݞؗ/7*䁕BZ iwL@ 'oq(at38\hg-/5B]- }G.Ⅸ! yCl=.S6+])n=l2-L+d:z͵G* )ҝ(*沝XM=ǓòιxI U%_6v(m32p9yu$}[Ur +-xOW,O% @ "*ၦtcx앯.Ha.Uw_$P%^sr.oUl5І~EhA[q7> /Font << /T1_0 5056 0 R /T1_1 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 851 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 853 0 obj [ 3896 0 R ] endobj 854 0 obj << /Filter /FlateDecode /Length 855 0 R >> stream +HVo6.}[Ptpnv]aa%bB*)sd'n"yݻG]~//-^Ӏ^z}>ELSZKpno/:t/EHIַ@"[+$|aS%eZQ5 0a @aA8ah^58ϣv|%2Vq4\6TLe&8F6d GL Ip{]Z'\}W䦭Q}CS-Fd%HhL.py4ӽYGo-%Ҿ"t''$.|ː9M.y"KgԮHCNI|GF5ioJ<3lD!@]K-rbP(GTv@M[yh`$qo@FKTLrcLSnY )YKK!@] w禐` 2m}&N,q~ r;実*-wE(F/]B9qv200J$$&'my1grb{uRh}`h:9՗1YC@B 8Dє^[[r2\ *^5ݡ-Zw'nVnYG8oȈSeQ6Ny`W60j{] \]VY۫Ut0|j:zvD.OHSI8f=?R[7_ W ZmPHa䙛?WT[Es\ٽ(/h/2Q|7ܝ=Kd0с[D9"~4 I<^h7W3⫓~ޣ +ӘoJpQ +& ~ZG_Q/gxBH\q.=X|2p ҿ)|;iOy FQ9c s8?y]~PLD endstream endobj 855 0 obj 1380 endobj 856 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1808 0 R /StructParents 593 /Annots 857 0 R /Contents 858 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R /T1_3 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 860 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 857 0 obj [ 3915 0 R 3912 0 R 3911 0 R 3910 0 R ] endobj 858 0 obj << /Filter /FlateDecode /Length 859 0 R >> stream +HVO8~0OǶd]UT$ZVt:'Nmn;?X +{팿ofrroޜ\Ao߾?; =qEPj%v,lY*3|wz=ЁKZF?_|AɬS%Z-8hLg3Ȣ$QJWipGeL>ږ B[xF0Y0YM[j_&WZm5*2-`^(e.ŝ| iI𐖥0 AͅA(U[QUX 3\Ԥ!GQ--ѥ\\09`DNDd([C9JIGir6i$5Bc5C9Ev/v-)zB57h$%ċE’jeGݸNR@4 h,M++)H8Q -[KFc΄/$z߉Φp6$ضFõXdOƥDɶ>^{btv+'`T-'e5-l~=jeQZm 15r:l3w! F7M2t~ug p\ܵFv룕Z86%k8.|A::OU=y[G9$BB &I Bx8y`k:OիՁOդDx.ʒ6 #*iESB1Rh +U;K1Rr_*%∲[AE))T]0mo%u1лR@6\RX}3ׯ=&]B{hhU_(D PCǼ~|eQe7>O$X0AiȀں?5Ì@<o{3^-Y dDڋ endstream endobj 859 0 obj 1227 endobj 860 0 obj (r?X\\y) endobj 861 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1823 0 R /StructParents 598 /Annots 862 0 R /Contents 863 0 R /Resources << /XObject << /Im0 5062 0 R /Im1 867 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 868 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 862 0 obj [ 3948 0 R ] endobj 863 0 obj << /Filter /FlateDecode /Length 864 0 R >> stream +HW]o8}7pߒvZfm^lh4DWe~RGl't`E~__>ݒGsũFSdWD'rj4<գo3N  Z ݟw $I5( ~,лɟuÙjz]emk'p^6zI_lJ3} ‌x~' +OIn{Ci(WjѕTTGw&isu꟪+2,6dsd 0C6kCj[$Ԋ([\tG<9h[|gYUTuYNki-^]kKaZ:p1kJ5=<|0/iGE./鳲jR-*TlO̐53{GM[2$3Nd]wbAFWȢ^Ȳ mT׊Z4]( %Bwf pxd%PV>}/}b_,ri`c<a|rFT#8&},kw#X@Jla6΢TDr  /lpC$fZ4(XCpʢmKEnlBrYc̺ڍNݵHjVH$Ms酢,W#9>*+!Jqb nNFyI 0ЁЪWBJ[ٽv ar^,Ǒ\,ϻٳPuƵmjvy5x]'Y!~ If Ɲ Z_6c B%ь󡊘Ľ +y0QJXs6aN(bq*`# j',N;=CNT{x2C?'${,u6,Iyc\qYsy?d3zx*X,q6`wo;ON >= ƃQ"N$ыCG bgsA1t1' #v)W /d9p?3$:aq{c  !ypY#u㗪"xAam]9zmޛm@x (;|vjS#?=_:TVWM$p_Ԝ}XOp.,1!i觢*Vpй[h4L +ɋe^lgft7 -Փn#ʪQe/m. sTF\ny\󢟫q>CcuSA8Y|K\m S./iP uL3İx7֪,ok,Ţ +5T)i#RhtĞYcq@"٪tJcDvׇ-L{G"U:-Y-ٴ]Sݧ酳77ѝW3^*7vx+,^ ׀}+ߕ}<ﲶ7R?>{~Ow3 l5^ϣ< C(87ĮY(L'q8Ww. >y廒Md!j~Q!Go+d.l| SZojcUr +YZQ i|LY=f6?*縝ܫf-uSH[\kPT(Zݘۺh3v<O?FP VU8ѷc78!p; bq4{įpwVOݪ;bq[tdrE5ָzWYꥻvչJz6%I|v ^b,)Tb(7g F 0@ endstream endobj 864 0 obj 2032 endobj 865 0 obj 6945 endobj 866 0 obj (jޛj#ߞB!) endobj 867 0 obj << /Type /XObject /Subtype /Image /Filter /DCTDecode /Width 254 /Height 45 /BitsPerComponent 8 /ColorSpace /DeviceRGB /Length 865 0 R /ID 866 0 R >> stream +JFIF,,CC-" + }!1AQa"q2#BR$3br +%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz + w!1AQaq"2B #3Rbr +$4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?+^$-W-״_ kBRE-RDдm:w_꺾3kϊ4)%Y5$7ly[K +Z? ~YL~ëxzOh2xb/x^|qkHKGΉd5ֱu.{6_LLN>_W>|e%YE߄ j=?L.5 \WS K_._ +mL3迴W/S_#SԾ&pxS &o/>f*Úu֠d=,-ro]ZaIaOa~J-9氵3EV}NE{q}ڭ八_YVMocy$_A|ψտ{?xk"cxHxΟm[{q)^,Zܺvcy0ҒkX$'{.״_ +Oº.OĚx{CSֵ{ZGl[c y&DOxkyMkƟO|rxZ?Mx_ǟzg#Ds&/tu`s oᵞvufW^ 4j_R_~'ֵ+/Z'/ػ?|'ŞҦXփTtdOKԍFYco ??Oxs'uE-OEn/xYdЬu .Z cȶHwU'/$gP%3k٬u;¿ |s^B>)8.| {f5+hSKijkeHo3gyٽ-ͅo 6gƙ15χW7468eŔ^ =k֑ۼ{&kcM74]"mZ'? }Kֿ|=@gKxQŷ ~z~\jIc-Χ4]G.gh%?_G>|M!7?(L'o_|!DU4˭@gzX[;޺絮3[_sakgV6& NGӵ[ WEo"H= it%A?׫X?a_h~(8|E umÝ?j67MS.XtJa%o}|IOx;]ht]SĞ'?5Kc>k鶷7WWM43?m4!/?ǎ" ž*d?GgM^<#9tk=woaw#}ைA\i,~5.िOjV_ҴO_w~O᷋&+_(ǥ/ݮ@H(SM>xÚߊ4O5 < _f-ޛj=#Um&hRQ]20R_Njkkc?k|Go%⇋.5/ kv [?|rL5ƍ>t֝Yuh/ona7eM;k?mſ#ѵ(ňH,usoEq{mDӼϞU{_޴o?M(@W]wqTW𯍡q⯆/W70B'5{ú>Fo!Mf<9SIm_ῇ?koW?/ ]sH,>f^ƯVnSO2<#ͥwq5KS.K6ҋjv@~ҟޝuycekχ#F@$ׇO_šF}Q[XIkS@/?+O__'ßY/Ï__`_6hlq+iue`յvAs? ҿig?+Y|wӴ j>@i--u^G>Zy!V}qiY]>`~E p~%w5߈,~ jg )qV_ +7'FNK"Vqj7g.W;9STz?.g6|*uM>EJ[\Ǝ(w) 2' +E6%1&v_$"I-.ͮ-cb`]D]c̑J(_k\x oh. 5H70m-ռS|p-HBZD W;9STzW;9STz??L7?L7C +32 +o;;O`M56Aim KdR?B?(/?> KoZL/R/ͧx/ +G(xXNoT3ޏy_DOS? (y_DOS? ̫gm/¯t/%?ਢ.X'~l?cM}k[gb{Yк( + π~ַ6/IJ_&_zsi 1- IЯatgUY- +R-;N{W;9STz?nG7'|0~&k~ G/]Og+yHyhO[AkMm;OM]~[COoryw~ʺÝw#EÞ!gŻHmf]n*Z[AY^K=ψ~(? _"k_/31<5|1 jz>.IX:r߮份NoT3ޏy_DOS? = x*HokZ9_Q Ïk2~ j3NֆZyZ䰇Xպ_go'?* +oGxcAa 3?k%oo>e˟yCL^+Hes ]Qҡo`;y_DOS? _l\o'["MR#m6yťAܖG;@C~$6/>4u_< \Loe.7~!/0~roψxJ-4 =*G$e$>kƯ_mO| +Xx|c_ƃ3h :A]*RP5M{ioU9]m=P|'Ok?m=[Ş Ѽ5 "uwQ|K~nsuΣai-{ki R((((()_ß?$38/-M:G񏆼?&e]Nt_ Z7 [kRXox{YoQΛVZ4}QEQEQEQE|+vsgצ~Ŀ0|J¬VT(+_ R,<'oxGº|Shdž?yMemq-V7rD|e{׈g//]3>!?O'O^|:MO4Pr"KH.o|>#^:ux +j;|w{| < 6KJZM[㺸QIu+˯ָX(@ endstream endobj 868 0 obj (A[.8닁n) endobj 869 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1823 0 R /StructParents 600 /Contents 870 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 1069 0 R /T1_2 1068 0 R >> /XObject << /Im0 874 0 R /Im1 877 0 R /Im2 880 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 868 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 870 0 obj << /Filter /FlateDecode /Length 871 0 R >> stream +HWkoN@~Tddum֪z +jEޙ9s}{rY-בQxH뷯2j6PdݾhճQlRKv!U"Һ!zݝu0p'ABQ@SZ²t辶~{úI|Kl/o<;vuzG;IeWj[i62Yf'bN(kݮ^h٤$8ebW3ʆR49c$ hye( hHAp FqdGQ"7 wJ%[WWȴaau:*0(JU(Q)# J5簟1㘂0^\ 4ҾI-H IPiO:`'0t!`atJjJs8uSc׃<fJ2{VT#nTq>cS | 9JM8%Uer++$FZۮN!E ب0+?m +6\IC#K$Igو>v|JK֍2O:Od.Nt\D,>CGx0y\-#̎\+ߨd10}?[aj!,.#$8_r=r`tO#]OSP,u_sr]ρ2yUnIw%J]ӣѓrLk\l 2j5T~Mu+ӼR;əC +ceݵ*UIzڳE_p7ɠ\Qn 5` jB,+jJ˹y1,4aQ<-Y7Luj4 9?Ϩ\컙z Mޓݺ=6'UÊUMn[ϫ+a6ɳA6m 8M_ys>M[,-xeB' y$/ +ڨsy;̞#ߡ5`hZR1+<)<')Fxm"r>T>GѴy#0riS0/J4<\ rD؀ lӈi +DƑhl(B.+NFL &d&?=.;v~u6;P#xxFYkn& |@UFU1 0yhqGLyiZ/ȿ"կvˍɤ&88x@.;`nѤ;!%F9ob{yB ֹTiα߼fQz7'l GQKA+֨r raEXd w1cXE o0I^Sea7$M>t ͘}ӃO@ Y +V/ S.mF+;6`! ~ +ŁY#Z&LsF5 hvΦ1Uv"./Ӎ&ɞF{r0^^'9+z{<"|7/K.sT^ǨPj^3m2epJ<.x;vE7Ў~Pt 4ۑ￐?=e) endstream endobj 871 0 obj 1963 endobj 872 0 obj 10630 endobj 873 0 obj (^U+ݫ|5) endobj 874 0 obj << /Type /XObject /Subtype /Image /Filter /DCTDecode /Width 333 /Height 49 /BitsPerComponent 8 /ColorSpace /DeviceRGB /Length 872 0 R /ID 873 0 R >> stream +JFIF,,CC1M" + }!1AQa"q2#BR$3br +%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz + w!1AQaq"2B #3Rbr +$4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?(,~8~^7 +|1SX>6>o> x>↨K7xoDm[%^#յVKE t# K?i/g_O8doĶ?>&þ> +;MtηI4/?76u iv1i_kΟ|N j+ +-xNҴ{{-&t-[!k-kHVDտO3诎?io>|\|1_|AwN|FS^;?gZGo#L>)l5mImY6sSo|Rko?ß :j ~_|#xrOſ |f^᎕m3W.El-{|>PI8gOU`~_˞Zyi|F~ |L-<]vx_~7>;v>42xMn%xgV_Ad6Z5u;/ +*|LG*x2h<9x_Vcg|qA?$U>#xN.:guu_]~W _֟Wx/E׌l,<Wᧂ[RM"|K Iд;Yoddѭ yZ+hQ>/%uxyu ꚦ 5 z ?)D%kp=&N%+z_???kڿĽr |=~|?w⯈u;HF>0|dDl-5[]/:mMCG| ?iW[N Tx+)ᖽ࿋qx.xNo7_coQگjo[ڮ +:g4Wiؿg۫jχ?(/#OfoC=xKÿaGG_ /7xH}gZB:LJuOAZ7gW{6xZŚ +4_¿ j^)Ӵķ.aiy CHZKm5o +Od |)]n_g?j^+]Z{Cfo)qe=qtmg,K5֧~ijRψgU>>oao |kwNo~|>_ŗ{H݋WTӴQOn{Zo z>~ _שE2sW$Oğ~6~"?n//? <|q< s3HAx?v +ψkMmWG ?h_(NaG=~3Y~qh4T|'xsᵍ_h>2/Ax_7߂„iuiTW]?w8|j/:񍇈5-']=ծyOO0ꚭIO|T֭*L0iVw_ϯ)+~?Gci?BFZ?ۚŇ%5p^/zd.ξi}QE~ ~?^ܚ쟤|MA۟^CZ_ > q^B7>>vMnZSB6~ ~_><%uu::oW|Q1|(t:D[W1-g+~?'ci?`OaxY> ]xԼG: w:Wm[rhCŗuo_>+|bZ%gmsƇBUѼ?}=Wo&*p;O)ovO^;xw?||wj>/ )mgkx|<~{>}葭j(ooCE-?m|So4X?/aGxSf "~]+ῃ֓K'8|j/:񍇈5-']=ծyOO0ꚭIO|T֭*L0iVw_ϯ=dxtu_(Ś +4_¿ j^)Z=o=]i:k-쐵̖5+Em +'HŠ?ğ/c#f;Mj|AQ~#_/+>" _xQxGlcDt  nN;ڿɭfkf '%]D:wjowX<{붻tE~xɾ&tڿ + ECLj>%O~- ҼC᷂cX,Z?S>ouj/.flm/O:aVe71e][Wϊ!꺖gy~\Цtov_jExUɷʫ?(?Px뻿~-kw3Qn)(֏'|o|.x[PgěVkz:%rw͗xP|<]m< ivnncU:ƣsagz.T_@ +l_ڗM?o5 s_틭O|+j:5xH/QoUw4a~,MwwƯٟ:@'u?Z7|YxD>}cI_ixw7KƗ>):_ڿź#-]7~o<5kOOdg,z}I޿K?Fo;?j~?;.{nxgfkG%k-{^ᗇtu<=wĺhz_iZ}cAwmk4= uUsx_ž"LJWoό?_ΏxLnA C> r|[kN_47x?!O,!tixHf߆6vvZZ~Ik[[h*GmD!"ETEUT*~7j]7/߁|55ύ.zx#>+<}Bמ? #FWRxך%ƿ AM'C=ZeNTBn-)_xjKRk>#Y;mKJotȦ>O,!K#g|㇊h]]g?Og~<+ W?f<=-EKxbvض@􏯼I+𮗫|'`#ß3K~C^֬ϊ t.>EZůçZ~7Y5?`C%#S7ӻ>g׎c>|K';BuxK_4h|?O+yeG@4[XkyE/#>: gH gow4çOvsH/"l/xGT/%u?Zj^߉|mď?‹~:6auk||QZ;?g"읨>i ~տ3 6+>%{xſ>>z<_ ^ B߇^:.}Y5?`C%#S7=G_Xxd>%{Kgž<Ӯ~|-uo|6t>o|9 ޥ"c&̚0\GvO|*9-5}/~XAoçOvsG: gH gow4V_o;;xm--?o$յQomo#6 {x"P‘""@xOo߳? [ |~ߵ׌5m ^O_ 2+oPVÿ< G'?5?xĽoXnֲ߰u'u[wtωyѥ$xPLJ5-7꿆~| |;/ſIkkOj$h|CǥO.֋[ZCk[CoG7cz:G⿈9?$ǀ~FQ_|'J>$Ŀ 5{oqsZMf6h#kfe'+ Q3| ?{gPo1j>{N&7g'> ijV6-hugnu?6[2~ٞok ow9 σc\xėo_4ڗGC?}ρ4ox;]OwGÏk/~?|@񷌮|]6d_g|CI?.uj~+[{x~*/$ԼMqŖ'=⮭T^3߳?ï׋u?>'u?xG);84 ߅⫟!rCzo/nf'|L&Z/_K|MC}G/W5͏¯7}?ƿh <=o7;牺o3>3ִ!nJoYux?C +|,ֵzZƍKjw\]K7 ׁ?߫a؋Q{SGv<~Ƴa?XidwTi72Koe ǟE_|f/8?dGg]f@՘fhVΧx".+/ -+IZ{K˧}2yuHGuR7o?Izgq_W _k}~>կ?m&_O ~-F=׆oE,ּ?ڵԴvNkKtj@~ï'>S<~(ǾY^7ՏKԼ>5=GOYy%xS'mJKM84] ƞᅖx>Ş!վxuc2 fsZf6m Wn+K?Fo;?j~?;w}L:x'Dźk:|a?:g 隷sWP|]x_oq_KmiG=|Y5?`C%#S7_ |ώ|LaWß ]]V^&˝ĞgҮ?/{[R#)_f(m>'|!kCf O-ZP~ n*.%ztuUthO,!vgߪ/W~~'|X;?ϧ^x ;i!.@]OݵM;^6 k>}oZЇoÍ+ž:e|uO#n)Z5j6.}^-ssyu,Y5?`C%#S7w}E| |ޅG? ?F".~ |?߇}Cú'MCI_mVS|}}H(((((n W|7 t WZu'fϏ ?h\ͪiW?mֺI +\ϥ^^gwaw$޿@Q@Q@Q@Q@Jݾ'韱ovĞ[ƾGj~_*>;E; +ǩh~ ' ;ZFRZNo_@|p+o | iN{iq᫭:Q?g߆_l.f4؟~6W]Z$.gү/` n? |)wO|6>";~1%km O W;OoѨ}\Gggpj`? >>1xgO??B'Ϗ? ,VZ3'}y<-_ǟR{Ix?˻'/~tzm=XY͡j_S}@ߵy,wo xnۅxBMthm>Y|9xc(nxh--? ύmg5<)Z{?\6v4* em싨oNjѼ /)/ȳO^"~waKe1gK_M^W> +[_n|_5Z\xjNdO[ M*'ߍzV!K,.QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQE endstream endobj 875 0 obj 13069 endobj 876 0 obj (?%_̔c) endobj 877 0 obj << /Type /XObject /Subtype /Image /Filter /DCTDecode /Width 413 /Height 47 /BitsPerComponent 8 /ColorSpace /DeviceRGB /Length 875 0 R /ID 876 0 R >> stream +JFIF,,CC/" + }!1AQa"q2#BR$3br +%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz + w!1AQaq"2B #3Rbr +$4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?(xǟW?8oï z xQLt \u#-pHYvhekVvt}Q_u_jڋ#_ <7+Io?!%}αďڏIM~/1C4WDoj 跖7pEO,_įo]b#ho_ F߄Yx/u[:E#/k4|ZF|i[߅~]x~W.-wv[ hž 7x?2hGS_?˟Ǎ>:~ϲxoNJOo\>$oᾗ2Wм=-?jvE~||-|?-']׌cw=~$|B4+K?^:'._-M)QռM٭浪ݗVn_~Կ߁-|?!ω+X麿~0x᭤~>.!xk ~Ϟ1y/o 6ůKU6RzW) ON~^_?|#,xK=3~)zdLJ]G^cIҿP7j%>|7/~ σ K?x@ƭo\4(&Z| -ޞU_=4M ?ڏa9⏏t/]S᧌{//_x05MsN >6k㖙_^xKN9_em-|Q'|'🋵|q|.]a_Q'gĿZ3O e.F[K7wQ6waiu?eρ_O%ï^3(||]CS7~ x7?L)~㏉~(I?5+ւ;g:=2NK[ਾ,`Oƿcx]KA'KĶwiVQ7VҴޭeo-üI &KVv=Ͼ_#ڛv>(|@O ')|s_6E֣,^4uX-msIt=!4k I`<;'/q~<|9?>Ϫ~Zi3௎~+Yhsߊ_h]͟ _i^ ҼAG< ⧊u/T⟊!:s&=Pվx']igcC㶩.f.犼fOw =ůX-źIgwkkfM׿8Xß"=6?~w7}'^4KWv>K_$׋t||U.?wX|Q5^R;6ux5O*>nOOVx/3୏ x!!xC>_>|>8j^~5kz灤@4w>վnin_2X4sߴs_㯄|`~ᖇ{|L}ݧ<-fM"gI.on~x⏁>?]d Kwb? >%j4/i|h_/u?j2Y#b K((g6x  +:W{dq*xROO'SO'o~"5~6N{{귷2\2*ıƟ# +*ghe;ekI$.mhZx؇A,RY@7L3{AE[QN7R{_7)8⦋x;7Y[Wg{Gah|}/yZ[*+gڛ7.e x?C~(7o#՗?9,|& |W𝟈_ڇ7\ߚNa*6gyߴ<_*!kG'z_A6i;Ø|#y9.f~xޞ8Tesg¯?e|e }ρ5?hxSU!_Og_3Ul4D' m_(ԋ;_ۅ]?>2O"O?k> R]3XzOω Zf</]OZoأmB뿯/_ ^%.Ͽ+9PΚv' +e}wssw{%/?j_G~\N[gᏅ:uÿ+64a.|~ +>t/|G?5|TMG&>{V/.Dž._M?C  kpw&N∴OA&|꼼~(ǐ~ z?C^$0T־~)x>{8$:&KԥԮGLږ>o/i5f` ++12i>L~j_ K/!G &mi=nj-ȾK=&3oo_X~|pkě {GۗIן_kX\<-˧6Dkm5/_)? ʺ!o⯊O,$-u3⟇4bMki5(^~x[> Bt˽ e>xV2 alAq}߼įSeW}O~M3V//;_o ɬ3khJѠԵ Ե4dcRQEQEW7/~Ͽ~'|mgόڏ xT{k:W1\k:͇ ԯҭ4CU:q!Ԯ--gǿ}|HZk;R'-[Ixk~1xƑ%mkL<%E5=YzI4m~x]s_<[c? A;  i_|z#ZK\C׾IkֽZYtԵoICSH[Zվc߀>f'L֢ž*/8?-T6ox2G.|87u_:gĭc[e){S:M-MGTރ}o5^ƂvǞ,.?oÐiΧ<-शŌ7־4fOM,/thO,!7("-3^4^Ŀ%߇>5O 1b^lgo//Ǩ_KwqL4}5Ww>K?Fo;?j~?;@|EmId{?a-ƒ>f<OjWǃj- o|mKkZou^gBog|zٺߏbnj'j+Y.umö7YçOvsG: gH gow4 $xO<|9|u[_z5?^9Y|!+|V0X/AKZZ=:i:%5 GNյ{k$Em[/ Zu7)ׇ#獵WMo5/][խ,U;-#Vغ.?j~?;?K?Fo;k~@GW7 +W\ioӮdf~>  f  GWӼ1gBYw^6'5h⏈j6 Jڿ Ǐ&^'Ci>={?iz7KӼik?&Ve~ vMm=3QH݅P?L_ྋ2 {k}[6>w'mĿ |9IkSgOZo|;xr-V M;M{aOmg6x%w`>x|0oq~:Wue=㧅<)_ +~Fu?xǟ,= k|Q1KAj& {J6|]rIjc__]M<ɪ12 +G??/5 Xxgk7>HusߋAXim~=oy^gcE!>>9xn) }xOOWc٣߂<(_o~ +"~)? +Ux?h ٧1=];:qǟx_ꖾ> >9jb>xQ6.a/X׍?m GKփH=-&uy7;/⏋>%Yi.u_ȼEi'?o|^}?ρ4)[_mDUuu4+=0HQXcWe?Fj^$u/'gӬi?W|+Þ]^ŭkz$=֑۔_Oٗ焾᷄|'Oٟgc/ xͷ /p奌vw V] +x_J"xGM'A]+?f/7}? &u h;ލ O%[|'g`Oy'g[k ze}yygi4w4_~#F_u-B| [UX6ž?;֮4xAӾѫu"x>+j?K6>ohZZit4ZAie5ms>.p|o?j~?;?K?Fo;w$ x;o;)Mwž1^qwG14I5=C: x:[iZ=i}?%#S7Y5?`C >KVOCN<^ 妝^hXw H7$oxKBhhKV$Y#?b<_I Ǭ?aƷi? |teLï +V6n ?j~?;?K?Fo;󹦛[W:bwecgkβu:/~պ S4JH}b| ?|85xÚFEmyhnڋX\$e|OأQa.g h Wo%[~?fj>}O>?i[4]+ķpxSc\$yz[0?J+W?Ny'_ >+SௌCz Vœj^3O-@IJb3|ס;hZ)~k%=4M[Dۭ#s_mrUt_e _N$']\Ҭ kIޓQ'Z5kKgh>Pq)v*ib&?~ |01j +[x4?G[? d|P{P<JuMcO$H֧!ͺ?P^;t~?!>}*[t?>&MG?mKOZ}usxV?5$ WGi^3>ω~1xU#  k_ <=#A>j>>3 l_`II#x$ukǞ'?<)Mk+x{Z^!CFz /_'JK-OKӮ+;!==wotW? 7_~ +k/٧wkG<;ax~ +4Vl.q,;Yw< QEQEQEQEQE|d'#uxO">e# $+4/{oFhy:oC>@Q@Q@Q@Q@q_I??)]eVѾ |WHv漴"=KT? +Z­jo|6w- xQ5 X>2| HGhVgPO'[_dQ2sg#^O4?ۼC?7ilgO>x'U׋5O|i࿅~ԼS}iZ=o=]i:k-쐵̖5+Em + 7P? x_ f>|l~~nu_o/QмZO |Lㆣ |nޥƓ࿈Ԭ{/o!W>0k~>:PWi7]3xk׎~5~ΚF{i:/IJh^ C_R3~}],/_k߆?D~_~+|VFԯ^v?Lm:n^x_t7/?P(~#-ᯀMOe# $+4/{oFhy:oC>REPEPEPEP?GW7 +W_kzg|W՞O kծ7 =*G|KxwZW 9;i4u?m|E} G#G'WH?eWi_y?nu3߱}?!<]е_F=?_ +,[xdhO,մ[_ iuOqi7qjzNifi=xƿoZ=?xcDg _/j??f_5{ 6zLwEW3?;/ez>_g>]jL>!~G|Rm +?~/կ?KAFcw}/@y V_xfMY4[{}J*@Ko!?b1AsӾPO7m^ ό-5]YIM"tہ k׾|]II? +g>ƽik|F/ ir|V>Xm.-.kISx,--iŸ N=_ +|0<5'Ÿ|2\|:$i~?|]߉$5]ksFn4m?dO~1]|#?_>#6Zx>(9>FmmozXi~&KkP)m4{o);[ӰQR endstream endobj 878 0 obj 15192 endobj 879 0 obj (W&,ݒ¦-9T) endobj 880 0 obj << /Type /XObject /Subtype /Image /Filter /DCTDecode /Width 451 /Height 46 /BitsPerComponent 8 /ColorSpace /DeviceRGB /Length 878 0 R /ID 879 0 R >> stream +JFIF,,CC." + }!1AQa"q2#BR$3br +%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz + w!1AQaq"2B #3Rbr +$4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?*i6ZVY]jZ]Aciu]^HYCmK,lʪH_?X-: a~GZ][Z_h`t? k:FjWv"K[(b$Z]~k>$?!״]{ZއX>"<JthW>DE;.6؆žAxKP7|Unt k:u5{f4iVR {k&xbu wrG/oC?lϊocZOx7VZxn^,o_> xfMf G_<)B4&~׺%Ws- < +3oOOڊS,~~!iZ?\_MG;?ǭO\>(?a+wG j;kN?O+_3>oo,[ ?_ڿ_w> |'֞Ot-Ov=/t=ᖕ(ռxO¾ΓsZ<+ʓV ?KQԴ"mGV/ڍVpyy72"EicEsȪ2?hǍ;GO ?/M_GHJuAݟo [ }Un;_mOس T3Ɵ_uW~*9ox?AᏁ6>$ڜ6KZ֮^C-FmҜuy}[_\j_ٿ`[;m\~[Dm k߳^!rtox[;ΧS7ûM6."Ŧ}ۛ_9o?n_c>_>$~<]њ<#|p|/j> ^x__>44\z߲Wm5}v_1C:#;+o|G+~>_GH?jԼ +ŦtY/4ۛ{o[ejZv_VWZjWPXncWR$VvPE,#q;?;i [_?>/?/o w<-? xs E"= x{GBgikeek VֱֶAQ ӯzյoV_ ]GC泤jqح햭aewmr/d+IbKե݌ |IeChcgT|Ey֮ٚ|Xw7\m |+Ho>tokvs}qh\Υ L@Uo;$| wO[o9k&7/FTWj?29>'JׄO࿊|SciZC]j:u--vͤs 1Q<__5)oC_.f]>ſ\=| e/A>d?$_VoaRu-;HQկ촽>Eul^üoXw0*0?myNQ<'S_z>#4Q<kl,|3wg0}amU[@?4W;⾱ſ3x,v? #&]GoG㵟x[,xxcM<16<ֵQm[j]^_iWo+.NlF{?[G!{O:gUK&g;*|8ǃ4g? |v[( C߆2|lҼM|9O"MCxI u_ ]X\Ϥ˦]}_q_I??)]}R0V%֗e[E{iX]AyziʗD U%|7S8?|u z3kȏPτa? {/ YYs:Nj:43OӮ N / ?E?e?~ |_3ǿV>"hCo/'6x2O%~-"_1fxs4c>%/um4/i6wwWSEmkmk,Q>|q&GĿ|`e?F".~ x_غơg Ԯ[ u[ I{2],ka |A%_~! 7xgx[^mF[_>-? |5C>*?7 +oj:*xu4{OQ_~߿#ϟwϋ f<3.ФFDϋfև]Cw{3>!ۙdm<^[[ +>~^-tσW~~???O!g'ŤZύiׂ?'̗_\+xv[H-5{oMT[G7:,-#r} i-&+uŞKx O?>1fxs4c>%/um4/i6wwWSEmkmk,Qѫ~ſ +_ #)ஒx?|o-wEg3kZ_쯠>$tGyogzWU[o>3?_ϊ~.@>/f_g¿fGN_:#^ Y vվ{wk.s}jO H,u);(7WAbI֗I4ζڭ1;|HyZ|?0Nuk/GsA|֖\"ɾeΡH߱/_Nx/T +x^ ?kxsVN|-o7h_ahi>)ՏPu֋xz~0zE]';ž&>kWo~"տf?m<37Z|,gei%KOOR:׏ |EO h  _]xGҼ JM[בw? g /u$7wŏ| |Q+/>xO e߈.xwYw+?V'4V}LdK<;cx>$C 5 _4`_]z" 4BV7ֹy~h} |]~7gFy3oJņ}+ X=G^"ye$-U`ޥeooaY66vC'(EPE|T⶷-gXxeC.{Ś}g^ fַYjNw=vZgyx$h᷉%ῂg}_I/ |:7->xRO O_xž 7$Џm=Xi~0?ng<-/ x^:/Yg|cgN煼'oi:Lj|K_0h^lonY8wޫ[|<+~^~*~+e~~#|93֝N#|5[>ֻ>.ge/?.C2ei^?k:χM?l>~ԿR;35o<3RįxQ߇#K~Wm_~j__Z2 +~m3_|M 8uhZ4y> u_ ]X\Ϥ˦]}_q_I??)]}HXjZvZ]mqau:6ujKo#*^j71$X%T7E_IKMNiJҴ-"kYmL7iz4X" dǦI閏3(EP|j>͞/ _ڗoWXՇ|uXZ^xm'B.fF"ht +We~_S%+zƿ9a7x14!Ӽ4/4}6E['Fߋto_w;W߇lMuOZn=ɽ{ ė~8{23Lbx2!R~Eβ4jtۻ D׬M<}eOV4ִ-VL8[Fɭ|'hSN5RV.?UmZn<F7K[m?ǺGk/$ߋ6ϊg;#Úl_M4m>MӣR H KxX N߶VxoEɑ·?E~k} _&4<;?R?ڿ +iǏ&^(/C>{j7_TӼk&%edÞ4vm&3NIM2ό?lO >M?cY<<#g +!h|=?]dukVcyMɖx^谱,Ĭn$1qE~gYFg5o:w"kM>eOkZsax-d־F)x~Щ[+ag`YJ`L5}E8~#f/]_y b j Şb>x.>j&MgHѬy47ž*zh7oY;o7CvyxGmx >?>9_ +i|$ׄu >#{j7_TӼk&%edÞ4vm&3NIM2 j_ xkRN3:kCxWRӭO(n|/g|9ѽԏ| O^Ўv%|?{ʐ@$BP>Vӿk|u=Oo> Iٟ Woį 3g>;Yឱu}G]Hx]ۮ?1]w?cK?I_;ƣ?kf! +>/~g߂>s X[& |#~?WT('.5cu/xo?eᧇ~Bu=KiPckkuGWAlcge}>Ն~ + +%=~WO(OW?kɢiod"ukV{__m +LmOgGhz~&4 :6m[K7#ω5_ojx~ M|gn&>;<=ٷJ|jg4=SB4mn*TkV-J>(~ |F/k?W~[xBƒx[]ֵ GJόt:U򤺜 ̡<¯ ݵExC]ED&HAmW>03ge\^kMef=6:é &o|evۏ ^i߶G>-WueC~ߎR5x_@n&Zo5nZi_ox/O~6H'>-ψźnׇ zO5]/ľ#t&-o?~SO&<2AbwIxTѿj ^7࠾//{$^6񧃴hoi5_irJna|9"9X7A6a&Ζ;e(_㧈@'?G]~fD|?h +|!g#X~>ܿxw$ï _5ow Cŏ|wq_ۿ~5x'FN;_=^Vq_g--`=jZEּ7o~?>+G5j/(.ΰ[ഴO >~ Z~KK_~&ԼGo/L~ o-o Ecugi,A$Ik3F~EO^=O(gh~fG]_c4{ss4#]I#eݘ?#v_Q@6>&x~oo& +Oksw~ԟ?uqc2\\h-I"vnЫG%{q+CPl%==3>}{@ȷW=+4oj3vꚚZ꒳_[pN4V(~V~ݟDm6wO|U]Y~߲EDŽ|wԥ|1</W<[ɬVE[c<G$'EAy|.Nqsw_<_h5Ou{y,׷bkdVi_0?j)w?zLJ࠿ ,%&G{Wd~xnaeO&ާ0x l!H_f CFZetٯmuMg\oڳ +- \4'~M?~ʚ…}SR%~+xkl]CTokx%umk/;c@混k?WZ~Kk5}{}{;}7Η-ti~%|}⟌+o;\sjTkN ~Gm9mS_;ƚ4/>6#yx>0]>|c 1k_gto+.}B¿j>|WOK/xG4}SH[]ڣ6H_4n/X!t~=gMi w + [ODzEox;FᶓUf$~,%&G#N+ ?g]g+= gI+2?goxx' +Exg 8+g=ͧ|R~˾s{qoh^:y ;rI?1ӼIoQҼ'E5GvQx;+ BA[մ;M^O>&u +55$QVbX:W|[<->`"D?~^Bޯ|.捥xo {M|Eŭ}]fFg03K?I_;Ư_+n~o :~i^f~TNkGJ|Kk-쐭w:ͤ*s +?R((((((#N+ ?g]g+|@xBzŇ";վ|K+ke5 ּφ_>"ebOHvQEQEQEQE|d'#u7_?kk>3o~:/WĿ~ ?3Li~3ޣN/ xÏ|74-KZI|e$QӴ[mWZѬ4|E|1jڍ?Vioo4^mQE-?-8l~࡚5s7*ƞ~$Ɩ#2 'V?:!t5ŷf̿j?kor/Nx;௃?ex]3QvO~ů5᷈|/<#xG_ <>м%E;_?O[$w-a;_VxMN+/~ ,<5G@Tj>%mNi]mk;xovixO#$^i+.>h`KFz\4jwZo]O|FYJ|@Ծ(.,?ޭ_]C].A|2L.ݚEP? ~.j|uVώ|?`?x-+?~*|:o~1j~/]Gm_ R$SGT?|OOGtK¿ơMx^xkĿu cy`U;Ӫ)pt moKֵ6}J]V[ٟ]k?|o?XYSwo OxB_~|aW“j e/ x{Ŷ6R:Et2RKJ_(/x+֤5 :Ǐ x7[Dӛw#7GxOT)u}@Y,׬RQvq_I??)]}\x>|@Ծ(.,?ޭ_]C].A|2L.ݚEP?|Te:Oψi?ω PQ ίWƞt#iWRͧy>s9ֿg^wW3|z6^<3 _D<#|>,nlto x7_Ѵh㻓|hkh((( endstream endobj 881 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1823 0 R /StructParents 601 /Annots 882 0 R /Contents 883 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 1068 0 R /T1_2 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 868 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 882 0 obj [ 3939 0 R 3938 0 R 3935 0 R ] endobj 883 0 obj << /Filter /FlateDecode /Length 884 0 R >> stream +HVn6}8 [eI.rCŦH}.-l)RKJvԯ/-bı@gΙ3|x~{5 90H^PXi; `ܣv}D O ++ +f:O е@P9TXVRՊK90(Q(雳w3!̮ؗ]-nhdRݵn]lwH8 +6%6HPTr&jY[a`wNk?hOc:a4vUmԁ0cCDaCۇ-YZd@:K1sl0^[\ +%ws{tvv _&~pYZ_saP0ـ #!m, +4/)BH%Ec-Prw +tإ Ҩz.#_fmcu!@- +s8Gjc.rvtW/ D[ZN '? +#HƉ( +$K{貑=2!؟쨾(K*?Bt#ϲ0eyL(",@BQDHLg< dF8:$ %˼ ^5]1$ouQMZFit}%C?CD4Ni^JC&|A'B5HkX0pX۷TUz] +Ҧ]8b] &Ei_Y*]ҹ,a@j +U_ֹr~B4}+iKL֕9=%$:AC}z Mh8(9;giƏMMj4@eBiiR}LWJU*U%Gm|GH2E;F(c=X6?l~Q7$j+!F&Db-=ϡNC&Y\Ȗ5[nIbIkTW鶤!lqQCi.IHDވ+ﲈK19D/pHjz&;^ف=:ivRM.M{Fh.ݕ*͗+b;It:Zۋf$NY򮲧cP??&O^ i ~% c endstream endobj 884 0 obj 1150 endobj 885 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1823 0 R /PZ 1.01765 /StructParents 605 /Annots 886 0 R /Contents 887 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1069 0 R /T1_3 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 889 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 886 0 obj [ 3986 0 R 3979 0 R ] endobj 887 0 obj << /Filter /FlateDecode /Length 888 0 R >> stream +HW]oF}pQ4EMjlF@bDD$G!0{fԐ{yzszI.ٟ3ױbߟQSo8rᑾK'ZF!" dճUK1՘跿$YQ@\zO.4W-,k2#Y΂sEC,qE:aGBGnޔ7$䚈nv]ۙ9~6:hN[.B֬8RmY+:_KirvY[8[s oKfGo9JWk)`xӳqzXzKx='5oSvFϮ(cU"LE@KgsZF]kҳ-m8VessS- Z8r+Dk&cec i/oikOFTӂ$ M%LAl IT^5fOnFc}߰Rl/ۂ_Wbu7>@=tKT& E[T[SjBWQ\|6}ˇvrXEOčb@w I5O(QlUWuSc5ˊzbѵD4>2Hn={.m sc}ӓFtx;*Et(-q^;V.bM +`!ugtYwJNj/7h{&euq}DK6H[\S~V,QoE/tz_9܊ a"c(LMy߰ +BX 6a~q<pFۮ+S"3fhL|F~dPܙ_Ad7Ju Y}YxHcSӹ [vvX5ZVM]+xGke텅Uh]LF0Ұ}bdLS'Ɓknatbn`2@ ͬ'- +}}MH'| ^5qe9nسC4FN+wXg6( +YE.Dž/' 7yi칏l_qt'n2YnPG)[_ [CCfzKvUURI= 2te ε0gfʸ{r͊t'O;< +Z?8a +h3Dሾx[ fn٧hvEg#x&1NDO0ƲRqL+F>;#[' E 3<Ú݂|Lv;iږ$QxyӛZv|{!F j+`7CJo:DZʪ^GfRbm PE>b2W䈲+t^ؘԞeYLj/&u44j8ɄUD,vӹ~87ѱ~;^, +m0 dW+<& W_ endstream endobj 888 0 obj 1889 endobj 889 0 obj (AjZZRr) endobj 890 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1823 0 R /PZ 1.01765 /StructParents 608 /Annots 891 0 R /Contents 892 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 1068 0 R /T1_2 1069 0 R /T1_3 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 889 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 891 0 obj [ 3973 0 R 3971 0 R ] endobj 892 0 obj << /Filter /FlateDecode /Length 893 0 R >> stream +HWmo.@a~8ΦIJK qrWq_.**6&ҊR%[nb333<3{gz=O_B<&{*zW\8u/u*3*%z潫y"zQLfoGI&Ix1/z}gəRR/J(EU;U[rKKr@@zEE_׆ʺ#rܦ e)Ӆ*-wmԠ 2 +(ޠ쾶̀vxW$ + A8Fޓ!o;w($xR jv+iS] e#@0D6މ3ۥm\#v[TF(ȉ;IN.>|r3"KƩ`üwu QԒ`s|s`BnFV4,tr.PY% +vm{LI:(SkP[;nNʊJձEpi^@;YҒa-Q)ܱX+x rQ{Br/ H2 a .3ەm$L ]דbo64RN{ xkj]Kk5kgO蟫j=14qn! 0Y>Q+\R N7AˆO6Ќ)݈݅kU)+%"Fo +m̦+=-^p"e@!bԋ~ ~K0' _r~duh"kؚo@\p`*#`)?{o9 J@-]ΰ[OOSW27K^7{H .j?ߊ/ߤ{\\H'ʻ=C-/0Hf!mo?Cʨ7I,tLqDE/i.}jOø9$J"̷U%L}y⏏@!ʤMZBXQkŒ;H;R~rY ~p'@`/)lL6po63:aGxbm}'Ϯ~$i32Qy4+k u3t +ܮ@*D=>Q#;wCьY:EUa//#-껕OkkĎ]KE:~&ec`_KC'%^MO,Έ{i,'"k|2ą7ЭP^~`oV +[ת P]h%<#*kۢN{YȵXB>p> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 898 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 895 0 obj [ 4002 0 R ] endobj 896 0 obj << /Filter /FlateDecode /Length 897 0 R >> stream +HW]s۶}׌þȲ$q}iI$7M<՝k\@@@3ʯgRf'?9kᇳϮӔ~g)ty5'ϣwߒtNd~b6]7SzFf.4ͩ#wT ?syp G痗t1tO//~c1NS$~=zz3:OTr8׋'t8,|wI7䭪8WUD}sNg9<,Ort99'W7ߎN^{i]kVބ7/79 }}l,ѓb2ϮRD75k㶍P8t g͎Ts#,ޟ;}yS𡡀v lEUd8 X7 +L[UlԚ9Ҷ̮toiX@-l=\jG@5HEF\pwLeT/*[ +9UVz^ 9t:#U7[K:Q+Sړ*3ar4<vlcD@*Y\33hŵT(`G&} +tZf2G+D =:aW"[Aе\3neF +]}|͸aq!9{#1[7Z,Pup>[)5 +عVLouf·V EC;xir@NRPmyy e ߎϘ{N9 sPE5pOK;ڣuŽBWHYR/Z^ 8Sĺb@F(p%-(};?G_\ *+1̆TKaR!pW*dA=V=no_:Xj-R+3Z-zn_j.T_lrE`nMYY@nQal%iTY =2 6mp$ԩʢNI9}#yO4El-EF⃳N΂[X}:=}Wʋ,Sˢ 8CXǏO_`ܿ +endstream endobj 897 0 obj 2132 endobj 898 0 obj (!\rpɡ> /Font << /T1_0 5056 0 R /T1_1 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 898 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 900 0 obj [ 3999 0 R ] endobj 901 0 obj << /Filter /FlateDecode /Length 902 0 R >> stream +H|Sn@}_pޠU\EDU"ZpՇj<15Y/}.D"DYSw Xk ۿ: >P<)(B`&0 endstream endobj 902 0 obj 513 endobj 903 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1839 0 R /StructParents 615 /Annots 904 0 R /Contents 905 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R /T1_3 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 907 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 904 0 obj [ 4016 0 R 4013 0 R ] endobj 905 0 obj << /Filter /FlateDecode /Length 906 0 R >> stream +HWrF}GD{Ix]lْVJJ[jɱ 23E}N.D>X&ӧO7O.N//O?<#(i<[m܏h)ɂˬO:_⃢6 Lo.SԽ<ש6*Ψ +Nc'p1bǷSbj}ĬdOA< ആY}h<8 1MsK履+7/Ջ˜AgֹS:q8 o΍+#L+¤vƿ80޴b,EwxFA\$_{zskٓLu!)iR2Y:TZIz~tiɔi'bvʑp`R^fsi8~cC _uɭuZwI粵K$(F- TnjB`Dg6F; :Mi+1ץ%[( F9O_'q8ÆĻ)p܁5/VcwF/|A-]$2Me4s_8KƄ0N%R)^:)}=--"?vl8e|v);áhGy5jh-%ӴдQn]EL̎.3Ra2D}}} Ynm +4{$g˜TPH:YpkGXI6qjKd4*|i}^ܞ#=bt=IΎpoB'cu5*nߕ uIEX<+M0|Gޡ-VWߣE ^oAtNvm{IN)uP &cm/3v$k/*ȕ I&u4rr_bABD! ԥ̊ꛬʀ5ҖSvjrF6.8;V6E*93C_goB: Mque3aEk"\=+X4\0#Ce[h;nRƏT+fwn5a(2w+ j6UmmBZԦuWޅ0>s=jCOt.:r+"HZ<0k'ݺgТmABsYi.r](z#Ry6js ;F은Ke_Fp@V}ػ4m8P @poJ% M;|idHnf2IT8bmb݁V_lLxFSwW) +H?5!mx> +fGGP%3s|vhDf(A8MHm>5wQ;>7;Y͢nTc5Ѭѭ{o4~+|嬏Bxa}-* ʚH=IuΡeO3rJ%.xp夙"r['}g 2o;v<0"&ώp8^aJڹ./xKɤLxNyש^:Gzܪ`,Ch(#!x89<{ '\`%ތѣZ{) endobj 908 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1839 0 R /StructParents 618 /Annots 909 0 R /Contents 910 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R /T1_3 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 912 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 909 0 obj [ 4030 0 R 4025 0 R ] endobj 910 0 obj << /Filter /FlateDecode /Length 911 0 R >> stream +H]o0+h5BAR hT&F:M&%wՖjQ \\tFpyy=?̥q'>hd PaݸBVM@z_i {;Xsn*WZh@ ֍c|7 ~`Quy{Fo$zήSIߕp:c~^b6 8:Aԋ!-Xk*Gg3ej{逵ZY$NjVϧ5׼(Y=9LnkDAx4 Q%a³e[vmk +!yVV)i>=F +a(('3^E+k5ii$r;.*B)0 WJ#&9niRmCy CXJvN.'Kfa*^N= ݐmUTfX4"̔Uj(|IFH@cEAG9VNZ\Nb.2,QMaR.(Me\w܉ܠGhA/pB7`^/8|(MwA﨔?90ns:N;rS}o\aRFDV- O~H$$&IPZH1[Hhm ڦNd18[ 5@#7r~Zqpz endstream endobj 911 0 obj 708 endobj 912 0 obj (69I?9x-\).LC) endobj 913 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1839 0 R /StructParents 621 /Annots 914 0 R /Contents 915 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 917 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 914 0 obj [ 4065 0 R 4062 0 R 4060 0 R 4058 0 R ] endobj 915 0 obj << /Filter /FlateDecode /Length 916 0 R >> stream +HWmoDnaKl'DNpmB$Kmٵ gv+V\zgy;ꫛ߽k//sF#2K6 +"(R( +]> [<(hGoRQ֥6Q9YFI0(Eʎキ^{7߅1pHƻ]x7wvX{Qg4`ӔiOYFʻh/uGx]-e*]S槤|`cDUzC0]~.z|ހ*Q=oXp,ߤ,WhG`7M#B}C X\׭P%Q%5CF3&/`5)gLciBR>P>~x"G+'uq`ZMyWAQXb.Gl'~h""Q۝4ڐՕd[i{ ٶC}PQ!,Hr Dg;QG\w%} +4;d|fJC0ʻ{xlٰ$'Kl( y4!٫udvVH3 ]u+ ddQёdŞK-6 v8kx%tFA05G5kEWOr0\`ރҪuk_y LOF D0ҎC(mE~9{F_V*N[J? +H*CI AFhT vW¥JŅh/y.0xAdAr,اJtWZjŃ +.u9Z7Y( |D1kfa Nw0DjG`$by1n°iE$s<eU{ۚ΍W e[rDO-ȍP]cp${g#5G-&>a` +v= +*GpqqPD`ԣ ҶQSź;刿FE9})lL1E/VF~p&U1H>5+bğX @/뢮>ic􎋑-.D|PM6. +s<䤯4k4֚(HY*/":6~㢐Q`(W/Ɖ^$}0?91OQ+<] Yqpw F*ƙ-=:5>#EOց^n$;ȨsIkebp::[^*/u0WZ?\ڃvrE&d:zbr"$w=sL=0mO֭ +=;s~Bwl-TqV#6q>s?d L)T)F", ^PߕOjs GtG%yLax6g(p}S*MN6>mTVf7;Hy }z\cU$ʍvX-z=:U[J'4_OK1[Bϼ2C>ֵONp4Ohe k +τ#y0NS endstream endobj 916 0 obj 1687 endobj 917 0 obj (D;]g*&Ҵ#) endobj 918 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1855 0 R /StructParents 626 /Annots 919 0 R /Contents 920 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 917 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 919 0 obj [ 4052 0 R ] endobj 920 0 obj << /Filter /FlateDecode /Length 921 0 R >> stream +HTmO0np(q4̈́e/&F3MEJiۡ%UԨ|ssNWo}c̣uGF>d>c - fҩ'YaTΨbg1k1)kw o"8gà +R@]X9rH)$Ak) +z\g2qi6dҢ`,hqb~$q5v >;>:K`f W8|%91֋TcE]%` !zz.sK9 dߌ9.JXKiJʑ,G2Yx,iѨ2i`t<KYM!ScZ0_M|u;9I)ɤw-Tznln0wvt)\`p<rM(ce!omDG`=!>;u- -W,hyh˪VҪ*+f &QU\qYcjMZY54ˠ.T}),'I[]5< z!ജl.و endstream endobj 921 0 obj 715 endobj 922 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1855 0 R /StructParents 628 /Annots 923 0 R /Contents 924 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R /T1_3 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 926 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 923 0 obj [ 4080 0 R 4075 0 R ] endobj 924 0 obj << /Filter /FlateDecode /Length 925 0 R >> stream +HVMo8 =9)ŒnQ uEMS=J,֔GɖM!1!3oޛ޼9MWԥo]M0i4Is+5vAz ]3|uJy_k}BPH[}'.-;Y%ZĤhS9]&Ǡ0vk$z彛{oxxfiňw68[|E'0w!ͯW[r#RI?j,ܝ[δ4zzmQ;;pA.h }?q iV̂ JXNRkXe~ 'SDlHӚKX&IP0Hdƀ\wՖno¦šq'w'ai^4Ɣ|IQEHxir,+$74~J&r_ AM)%J ZsbMUQ8:K*u\* ˗TR2mmqrJQiaSEk'歭K)yNt3y^f\zMr&i*%qL큝F%cJsLuV [EFd$2¤ !/ӧJԞ?ʼnB~7۴B ڶ\Jb[~ +t Kd8EdE A+.t9Sr@?늶ZYC7Բj"̋!" 6l\D37\w:RjpBh({3Ѩ(\sJl!o=Mt¦u*PT[;;qm0 ѝΜZխkr\` M;EgS{$0B+pH*l]`(^DhXoG"g2J"q*pZ},Im-y\Ţ#(VXG]+QsAbBc֋ 60Pzp{RnR"Y:u +C:41.C j˦AhRH TX'JgP +X{?Y(EïuU ` 5Jp,ړ*BPVb ~#6B EF_j_^?{ڹDbdO 0- +6FFF.25H8uH\:P¯G|Wvx8o-]{t~ F6~8q菺e^/=7]?ILr$~A8=}M!§/ufL 4 ՒUxh\ 3OOUj{l0d**-VE8[5nxoלoDs9iڐkkd}<?=> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 931 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 928 0 obj [ 4101 0 R ] endobj 929 0 obj << /Filter /FlateDecode /Length 930 0 R >> stream +HWko.@a';^=l9ENqov)TH=C^4C+-9s̙ooo(|us=2|9| ~7MWt1ΩUN7v!^ǟhB ~?oͩGEPjT%S95t?I>KvizpvcmxL.x6ma%glvy5E58PbGB5Ɠ2l; -n;@ZƗO+4ϮȮ8QUlN"`F'D->r<&wWZ,{ [婰LMMk[UitA`󴇿wdI0 I8-c$2"J(X]-3D ނ&"H8yb؊J 0B8GySpp}< n{f^$`*AhUp((PUFo݉fD-g$V& .y"Z^;O24,k*ق&6olD\gGmER+ +P 8UH*-Vj $b~bc ~m/'*cVAߨ|gQ}i=",OFmҥ PvPLMa: |9L)-wFo)Sl*9@Й[v!I.G2Y=:-hv{| QoA} cF {n+*j +^cxc]uo FA1nbY~2%EJ3>CϤyrxuR6FrdPlHH%=⮍Bz5NKYENM&ٯW!bk+(?.%̾AM.@kM @ElkKPkIkg-)0 zd%r**MQ<*C|+L→5Ƿ eXY2V~Eɝ*K;DVױycQ9)cvy2]ȆrxN1$ cb[G%sqZC J((z𝔘O @&$t8HS0dw a@i6 +:9(@(ϘuQ P% Ș +B2~li,,찼I58vE2`.*% !3Ž7p|Q'<I:֠j$XXcɉBKY NWs~m_a8CcmuRˎ%3c +uT,LQ,E *2iY*f{dނfbnܣ;m6Ғxԃq \q3`&^0yN%6G\!8}9T|eO9i6"ϫΗ將m=̦@M)uk f=G&1/`rhX8کwxjT| Hi endstream endobj 930 0 obj 1784 endobj 931 0 obj (Frͣ̀$ D) endobj 932 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1855 0 R /StructParents 633 /Contents 933 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 931 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 933 0 obj << /Filter /FlateDecode /Length 934 0 R >> stream +HlAK0+ޱzhд */Hniwo+"zok,Ec/7X.Ko$Bm9]Tr8#۱|ipA@=EkY˓,+Ժ̕+=ev|}͸WZBcp^R +ɮ-3!us*ʰ{)"OL8r!~J8`u~@ЇQC endstream endobj 934 0 obj 226 endobj 935 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1855 0 R /StructParents 634 /Annots 936 0 R /Contents 937 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 939 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 936 0 obj [ 4119 0 R ] endobj 937 0 obj << /Filter /FlateDecode /Length 938 0 R >> stream +HWQoF~0-2MRdEm.\wuE.(.Rs}0,3|{5slJ6[H؅>![u_jcm)EYrv͡t~ܧzJ\ܠg`PX )ƩU) Ʀt)TYG]S ,?Ugy FCC5#QljI{8K b}xPWIΈ8$IWWWh%:H/6!(~L8B:=H=m'w}R%% '(Ugza;xU7JH8@ɤuL# +9Pޓ9W*})7pT%74ab8ZM?2<"+G2 Vq:V!ϝPsHhDkBL*&v2hU+v7#YHB׵\J>D+f#`V9y8R j yA뫖JiPr3rw tУ`]u]p\ȟoY>vGXNhb90;(ƭH< ,UAQ+sEH\fz,^v祍oY_hosUÄwhnB;QW/}a)\CNoTT^kljvFz.E?>2YyZD3{Gf`CyM`47 z!r` +H >9zK9kIKHңC H/JswPY>6Eapb}Fk]D@{ĞDk1#Z>!gs?Ṏ+ Uq +Xd5%U)eJ}#//T5Y\<`ECA/] n)wVQ:т`/?5Q܍(8b[I4ymkgY3}h0v~vu BuC#4CaX՗E;F9? +J/;r`!HmaRs?;Iz~_ ZμbA[_B]Q0ҁxs7am={~OJ#-qDYP3h^Jl'>M"<Ƭ!EP# S8Xp6@oXU> /Font << /T1_0 5056 0 R /T1_1 1068 0 R /T1_2 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 939 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 941 0 obj << /Filter /FlateDecode /Length 942 0 R >> stream +HWkoF.@aIeIQpq>+!_#)٦X=vvvfׯ..i@o޼h}m z:l>[/mBSñr/ll3tHn]br +N4L|-t $: b_A;Đl >Y8}a6$io RQt^P`pá OlP1!LQ.G~Q4c>Zh2fpBiO endstream endobj 942 0 obj 1471 endobj 943 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1861 0 R /StructParents 637 /Annots 944 0 R /Contents 945 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1069 0 R /T1_3 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 947 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 944 0 obj [ 4302 0 R 4299 0 R 4297 0 R ] endobj 945 0 obj << /Filter /FlateDecode /Length 946 0 R >> stream +HUmo6./sF)YR[HP,6ITI*i:W+qt;Nݻ xln} +1ɬ@+u('t0#$5=8ڍ  +w.v/`M?,E&$ϙ<-7`u!7ês83J:IS'i:kSÙX( 6"7XBCT")w2uƠlhdJd Q{3î؄!X'PURXm,97Q2 цڈ;xqk?yTl fEE> /Font << /T1_0 5056 0 R /T1_1 1068 0 R /T1_2 1069 0 R /T1_3 5061 0 R /T1_4 1070 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 947 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 949 0 obj << /Filter /FlateDecode /Length 950 0 R >> stream +HWnF}'/%4l7@#@ ((jioË\FQ{IKkne(93gw,oo`WϞi?%5 ~<,YYhN8 0}TC& +|= ̵YJ P0 ^-\(f2?LwW{5 +8;VIKV4M #EB*X!x[U'B:X4:+x-#fY%Tq6:XCYu͛jvM8*˴˴O0f֔Hʢ&ϯaYs_eeAmHKmF$(P{|Zh7E5E}c] Нú`yAʂ@F__A'j1e2"iOϏ,ƵΣ ^QSݼG?;u{ +ِg4vF Y\5)hL͚HEQ+aT +!m8iLq)wQ)1*\,BKn$f^{hQØu)pckq@D7>CPvLY`9^|B ]䤺 +8b!K1\OzsLWww[]r n\wZ;tcJ4{&bqʡWWس'3  :(iL-rWx-G`*,owFݬk8MmH"* xB[2Ŭ> /Font << /T1_0 5056 0 R /T1_1 1068 0 R /T1_2 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 947 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 952 0 obj [ 4185 0 R 4184 0 R ] endobj 953 0 obj << /Filter /FlateDecode /Length 954 0 R >> stream +HWio6n aPV$Ymn(6@5%f"*E%#(y3=7_x!!i>7x4g̈;~2E΍ i1x\,?} +h@݅єf7]ǴCe"cBd^Zi:_85AfX]%FQ?#* TĒDU8V%F\x5[Um$LI %!/r2*>wV}^HaN<4ġd3%1;YjGbx,) &mn9rp1hT7oLZl&*APKJB\\HeN-g)AU53J{tHg `rG+^)W@FD1TG xYBC`Q4oК(kCESv_.|V˺R+S 3<^nɺW^G02Y3n1 +oj)FѬ8>[w`z +@n -J!7GκyM4c.WW֑Dz>/tF˴Mz= +Ԝo1CQ{~,}}nԧ>szðN^ dOq;UfmagbF%wa;-\K#&4͏p"g7ueV@t)\A!)X,/>,tRs֕ tlҸc]–˄} ^4WJDfwDC9+mY=m{]-|>U`<ַH-^CсFۑ:W'CTo܂X +koSY_H؞@РK,n+^Z*Cn@&킢t [lkޠu֣m0U1º\"莡M+5ѩ])QE߸CTiD*Ydyc(9lPpca_hya endstream endobj 954 0 obj 1681 endobj 955 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1861 0 R /StructParents 645 /Contents 956 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 1068 0 R /T1_2 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 947 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 956 0 obj << /Filter /FlateDecode /Length 957 0 R >> stream +HV]o8}p} +4$3#vNT  (!4]m$>9siEv0_n흷0J}Iǵ5sf  +87>m7BxH%RMʂ(nLR0K|ٟnkFH EEw3rnnN<+"f \W~=Kb\x6DjDa`1o_~{o5HW*,}H^E5յzhAXumif绛7ü~;1ISmnw̱;#4$*.m*2#X~0 +bቦ$ڝW<?.֠2>D [mjR)f$l #`Q j4M\ O2E-em FQ4f&f ;4؇9̬P> /Font << /T1_0 1069 0 R /T1_1 5056 0 R /T1_2 1068 0 R /T1_3 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 947 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 959 0 obj << /Filter /FlateDecode /Length 960 0 R >> stream +HV]o8}pa fYiAڏHi&%6(~ey'>\sn; |2~<3pL$uܾ@.qEWD Z$s2gzCp09?&q&a@V;P[I!>?̞1ϯ@؁ Nb93gǡ#7qiZBYELpPWX@!5/2YJ +$ p;Z^*+2 `fA!Z7mXq*sбhIlMm6;!OlU +)%(DI?CN^ߵ~&QswG07ymm|ƞ=xmo z!Kȅ8,۲0 8huG0iͱaۚrOXDp > /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R /T1_3 1067 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 968 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 962 0 obj [ 4397 0 R 4394 0 R 4376 0 R 4374 0 R 4373 0 R 4372 0 R 4368 0 R 4367 0 R 4364 0 R 4363 0 R 4362 0 R 4361 0 R 4357 0 R 4356 0 R 4353 0 R 4352 0 R ] endobj 963 0 obj << /Filter /FlateDecode /Length 964 0 R >> stream +HWmo. aIEs[q8s//h]+r%mDrU.%A%%6H̬yygί_?]^_ rߑ>q (Oc;DAԏ Fי Wrgw >7;6$0:)+Ŗ_T"e!b( 4cSthǷ.GbHtt>%юYnPBL닙ܔP.9& +UDB 7AH1Hu,犟|'L` .RfhcX(CMp"DAٞ D c=xK$v,rl;9xzBmo +/}R?<[YK-0U)l T7,'v4V0A0 +NnSeGٔMs>Ntc{b{Ml#SBۖo(\?Fnh~| %KW8Y%Nr&^5/Ѱ[_H 1Wz?i*J,T!"Rs2h;v=F+dɁ̓&: ΂?\S^7[Wb+fRΠi:'B+4}GC3GnK)yӴGHSeqb\R' - ظ0|!6P'\c#vtܡ蘨B=Gܐ=90E{~{XI@N@2e@Kޓ74cVǁ9(Wx4U=; +XBnЪuH=V"ޠ媲]pLߡ9DuJo+Ы͈e*qqbD \" ΄l+ɫ-K% uk| .!܌Th0sl"lQ*zP KY1\4pxZ1,v$C;G &Y>~BDMw#lK;HxcQ9Fym j2+ 󹈅uZV= uAht℺vb ^zC $od9 .jbvXOa3g\7>1$ jj1Gjs؃-ޏcE6ziӥ)`?J#Em[CmZ=Hk͖!7{:& 2N78 ZMWx|hk*] +|;[L Ka'%,YΣ֢{%ʿw켿Zb39N\`MRyc s,|="]F! tjnc-{n&N&j#Z`0y2LBk&/fw&03juy ;Ry s6:,TjՇQܳY5Mi:Wn֦-n-F``> endstream endobj 964 0 obj 2255 endobj 965 0 obj 50502 endobj 966 0 obj (:=#[gK"A) endobj 967 0 obj << /Type /XObject /Subtype /Image /Filter /DCTDecode /Width 202 /Height 295 /BitsPerComponent 8 /ColorSpace /DeviceRGB /Length 965 0 R /ID 966 0 R >> stream +JFIF,,CC'" + }!1AQa"q2#BR$3br +%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz + w!1AQaq"2B #3Rbr +$4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?Bt?^D3j"Y;\*\CFeb1.H +J"a!A` m_$c +mB"9'`HbOFwpq;ʮrRC+ej[^K[K3wz-ww.9BXǀU|v'M.zvITEA?1$aobpL d9'h-Ei3g8.X'PvTd.pA=.II?6XrI'4$KӺD~Juee_rJISȡIl{ݕVӦ>}/o$U + F߆9={rp~rG9<짓8YmV=9ʒB8`@*1szPv}'%T܌Ld}z뎜jkVeuSm[Mﳲ&EE,o(qrA%q^cm1h0@a匪PR}a=1 gӁ{CϦsM'MM6k\|]};ۡ)b?ON[<zb:q>99<g>j|Ͼ]ӿ<玼@ssǽDX<0W=?N- S9i<91١+Vzy~Kz0FCFx|˲zVׯȇř䔢FX1PA$I%W$6%pH]'qAacrKrI!'''U׭K{zrS 1\dy=@3]zh+j@ѭk#PĒD +lw#%^\zu':0 *Ti|.Um2ݒw3#cSῥtl_~>y^;x*#<Ўsn^8QS 翰1c ik[}}t'f^@>~9~l-x~.~j<_?u⏋*:~4kf{iZ`JO ~Ӟ?#X|Dqo'ğ|"փx"mkÚw IKL:m%TJ&"qŠr|<JcMԔ949SMƜMG +))7%~n[g]wc,v6O02FsQ$q=:u޿_g1-ic_|gxž8(|?S?,;\(]P[2Z]^I֏rjL5hb\tO*ZQɹE s#NsR|;kk̔n~'9<H`iڹ{6$vEy|t>&|.CsO i, h:5[=;SjI`{U{I>cfOu/;׎+~6;~Ԟ;n |;iw-ޟs ոivK#{);lXq DI74SQIԥ(EkyYʤI78%&o4V&ޮfO8\>c{~99?SS93yQٟcK<-E|~~.0A~ x7wh=kEҖO񭾧^ݼrI#.ŭ~ȟI>|)ڿh|֣Ҿ^tG7.ּ=ow]xRg I^=W62ruQ(ReS&'*BI3QsY>xrIJQVM%}8 HIfp +ye%a\A $ <{'g_ڟL-xk,tƿOo:ׯ-~x?_Uͫt4q>F+=>'{h>|1cSGl~>K|`_RFÚ*/ s]_iW-젂a8*JU SԯV3RtqrQI4ߺܐuW2ru?yZ-Z$N3ױ$׌_C^@k_ +x)h+iZ\O]:."2HrR7';#h +h h"k'+o>/n;8hz.Xx#%}Ȋ,~^ 1?>jI)|k7WwZ χ0l|G 34j#eP}FwkX)9ӅJwrJRSRM-ҴSNN-;NeN2Iev[hޫEtÍ62Ă2 $u"C7gr2 k/c#W/^)kƝvuσٟ |-.ESR˝k*zW5X; ĺL2@qIsu [*|n4&e?d +)tWמO?c;ռ"~^01EmS6s4WO)ӨWPMT&\jr=jqJɦvU7(9B\vk$dWiσoi*~Q,ܐ>bIc |Cx_~,{\{:sꚜ5ֱ֠͝awjAuDm|k{W׿k f߄u-WMkdU.[{ xF}:Nim{&E⯈G3k^&oIxO%m}x>xwBy&{_ۍZ{HfҮubhS:)F3hrJ2RrTRIX{U IJ5Ӌjh5f{C &9%x]dž|30%,tOQѥKyhVWmz"SWƵGw0ΏWzt|_Us#߈52m֕ug:'yaŅZY(}U9MM=a("8>9%hhJi+[tSYEX& RX(( `yݐA4q@XcdhK"x#ž)񯊾_[]?nsvvn/)쥻/n;_w~~ˉu;>x X ^x V𞘦'x^G}nJKxI3M:'clVt*TTRq'EsI(k8Tr抓vrWR\N馬ݓ{r_O^+%.?k~m<]u|CYYHURC¿ػa/ߵ?hG4ŏ 7=:#/:~$m_KivG~;<W\ͺś~4xÿl4Sŵ| c%fIݍBL1HqcN~œS7:.PqӴ%fnM|QTWOx.Dh6b-ٚT|bUe|Be/✑u#sӶ@,dGM²39×[Y>vZ-JIX87vNQw{roW?x>=յ4 no5 -|esuuq<p$ʪr$G_\oS%/_>^UӼO_x3 ,Σtۧ6%hl*]A׏A +;-H8nr:3'9d֔h5JM6%N.)z+=֕D Tkkn@|O<;_~ҿ>[gm/&ߍ<)+zG2?.|Mtk RX[K H1৿g?>|+ +މŏ~K^k4{Egtb#iiښ4mj5_.g8%yp<yjQ +FUp @|bQ>hiOW|k>|J5YuOEg^nv6(%ZRQjMR2M"5-e$|#hO xKfTԾ k*|Eqkqo](uk'Omo`1 Wc6d}ofoKo{WԼ1gXWZo$Ky^73iRE%Ԃ"_Z~l |vO?3IS=XW^t aMpg:6O??ࡿiw~˝vVҬ~|$)j]j^+<ekuI"]O(2K#K',n6YY H ` +K^rx晥D3; GoƾψZ<++_3V0%5=B^# ҼI}:<'XCIA<;c4a*s0s#d,Ju(^\1qz7{qO),GIW{&yr|Hv\=|Cj%KR״3[մf5\-&Xa51<|HUxz+]𦹦xGZdwVzEIB]FTN I g>5'▁7|3x{Oj?c}j5S,qwkahz_4b2WC^Jr*5v;hQRReR|ƕ_ ]4h4; Qti.yl|uowĚKlOZ^4j.O+g41"ʂ62B D_lGſg8CE_V&o?Xj9֬xox3A|!n]O] ]R;Fߔ3)m*YXJ*H# V6X*2+BQr#'RjMA^bʔ6VҳT"Փm]RK7m+]IꚜI^I2+6@pA1t|S?gd|n|y?/ x[B𷅼? 4Bvq!7|mkusi=YI㪎zFy #8sZ7u^ kZ΅zP4mFL +VD(n,GQRAzUK1I '(ԣZFtۏ2ie$ӵʅgA˗*jNVNZ=_LJ>'k~-f?Roc_xX|~|~: !S\o(Aif /$ҭk5~|;sKc&&5־2Ľn d?w_7P/q[Ccqzok..$iM\=NeybK4Obžbrruu{PT5VPK8-.o5 ˫HVhXbj6NZrQPOR^\ӗ>1q.uQoS).)ZWRonIZmWJ)?ۋú'G&,!|7?lo xöΏxs\|rY_{q.h$%x剚9AW*o~ +>iwFǪzH>~)4pi__ZBLm_#qeoma5*w3HhflI$} HčIz& r[S[J H*ahHpct;`sO}LU)B?[5x(ʜ$ZmjM5r#qi4ҧRVi'}֏/;O~ +e}~$sOmdU^2>.t[1fkkk2]VXޖYGd>"|F֊c5MGSd̞TM}q),J,  2~Ds-znPJGQB5J4Ӧ>Tyi4)4YWEH)j++{-4Ij:m~6ʏ06"%`ʥH|ndFs8nTL~GO'x/̱HJK$RW=rNN9r^11p@9>{讴餽:k??uA9?#x4.wrG^E +0 w;x=0}Ozi?^ۢK|] /͑?'.rp$ +'$gc8`H999X1F!D]Xu&Xi2*ʜ*dBw(8xǃONZ֥|@u<<1%^]WWi4"i0ri[]%okٷ۫i&K0AqA'#piRu#F0;!~x_:o_(~zc-> >km| /onow>"ԾNl-b6|k}{}Zڷ {^;=VkM1|{' τzf⯊g +O|TץV |ce*(,K)%:NE55>TrIĤ彛OOݫ;6&$BD] ʉB"G,A))mՈ=x<<^,4x5΅7u-|%-sii>?__|8g|!?$R?M#¾k ik?lu]6)d:< Zsp]$M7֭wm{I7k;-9NIvysJ9r*8wgۯdžu5k3ōi>r*:۴y G;A9vBjEJ7鮶٤}SM̶O?38`J(8I +=@${cwl*@9}Zd>߂n"FrqV9H irp8 ӷVRoI-+Im٥tzyz:˖%(A"?)#qPNy.x50$g=:9!}pI k;R U c&SPx8rPs@r p{j׶-՝_uk_ni4oڸ9bs'[rI$|l el"} @"2$PHu9=I’7qI^#'zVZ_]]w~n>Tk+ NDhɗ$  IPU|o!ZvAؑk#_|@ _xJï |[E`⏇3ԼA5iڍo[($BE+D1-4# psF#NSR.3iSѮUfii4צ{|}.ԭ/ +iYn5>g_蟴S~_.3jwC>2_ž#74i:*x=𾳮iߵo |xms?75M:h-%S7y2$|Hz2Z2scPX`f\b r=@aTGFr4wKivIhmjF_tKn1w~dmᏃ|9"O/|.𿁴xQo៉zŽW ~7k>x?$|\t=.;|Dc7VwdZOqYNQ8^=w4g+pA =N3Rw)򻫦wɤi4|O]^G^O +Z$OgPmy 'C^%QƟ xZi$>,:zMgQnk&(tC~{O/~;|_/_2M|[uo\iW O}w[$x/V#W7Qnox> Dh-"z j\> $ T 8'W}0r +Sʄan(%pI$9ܜù:m{=V_ۧAYjmקSRS kVl#=(oi ӿ<Xdny>)$9"fQH'>IsF9'zwzҎ@}1c$qdg"B`$ I$(:bY ;~|`߻o9S7663d@,A1 #:\s_qցZHp t=3㚱vIL a)#8<rI 9`'ۃLus3F]=p[$>tk_KT/َ^q pLpp8p,i w' =D>1xb>̱".feKsq/)Iw#d +XlIV ѹYT{+%+9^7Wv־_39t}^yM~_2΢g&~rm-LG4*oN7C8t=CTiL( +݀5Ha9##C1 "ܑ X2̀,ĞO7'>ߑWim殺kCg-zS?瞘8'~.xHdIQѲȬFpˀA rsTv#$B hOk-{"HXƓg'Ƿqۥ8G_S۶zmž& g[ԵK4W7R\\[(V&0l1ѱA2H= 5jWƩ\+M1TM"HlUQU#EUUg0O\Izs>fõH*r6tB8-HA[*$yf1{c!.n.}_́X\ ʆdB#Wy$`gӧ\sRlb@\(, $F)Xv0px=O>M}^.0epNT;}#1\Fx<FNSۧsߚv708$㏐=zq˾!3O|'/x\𷈴χz|3?ĚR ?]h] ~F#זUI 6Bkjׅ$sb&)O[ '-}\"tWSI" }|#qՙDU|"H˔J~1^'…1|}փ/k~7,GGuYh^=YxCՌg߇=nETa;o5xka.~xᎫZ6YKLg&ľg[?jT4Nfb9FTjrɴ~[6դnk-.ktꮶǃq=:d?0N?\s8<~_ْWwA9?.sѶJ l< ;WvSW#'*4$j7'篯S}O#9sݸ&*TsP HQY=-NRODz"%0y +3  #{B pɒ9eT2ͅ*1K'cayq=&Q d F둓'{ߥ_Ln7~veb6,w+ PA't!lH hffA$ Q8UKjɸ)|2)93rŀ~#ȡ +\@*m$k;|E I[YC ąw)' @UCkr<1#D9hd'o.T!K_N"x62@(ܨ +F.TT†=BM s%n̶WqCkpy-˫V%c'e&]~N9JWoK_vtmci譚g<)s%Id 0w.w)2WQ^РC]* ,2.BIpr #ߝs&Or2Oq#:EݱKYH4,c8pHyM;-׮4VL}:~Xe"MEfxWjKy w˰>\ *I%AsU0;X`*~R#9>rci.c}p@b*^˦׷VKo}}~In8BcfVQRI!@YT9$~^88Cு})#=CCoxuF׼Qc^ ڥmfEӮN|Guuo/?o<+!o"Ӵ>=쪪B-%vX@HꡘGC}ko +>>Cⷌ-^Ǿ _Z?5ïX5=!_Ksth5%,xzgFҪK.T4\m^1O6m4WQm$n[W3Ot7[zH𽎤:}VeU2?C iqc4IjIMNF7 >]៊?|ំwk#ž#Wu:/\^Hd0ЮuX5 p7:Zڼ>pWZӗMdjUU&Օi4Vm(Y'y?ft|wsxZi~*5~ouGеm_ZAf\[7䟉Q}Hoi.< Wv/7V|ڔ``{"Y$e=cßً±> 2|k5-BB/-/oWX_iRU%x/gQ/]bY.t>GO߂2ǾᏏj7~ЭA4CWߎ5{ĵҚ\Mӕ8R\Qn䝢ԫЭBK{ϕ]ve%d_}|jS×~SttM ѴŸiUk$G)oLJ5R|_w'/xu|{|,"[_^8oYotw+jfe]ƟڿV־9}xHeX%Cc]F< i>/ͺxCW5IB{=ZhsfVi2ƅEව<1A;lj|Sj &𗈼WS7:~/#1#|=?_+ =҄#9^[iFi9FMp(sVi6I;M^[d$/ŴqﻹXmDJ88-P1_T~ںh5a| о5i?YK<5A%փ)e>$JI[[[i>no,7a$WPu_eb_x7ڗ,GZ{ ڏz&Ў{m&;.bԬ>yhO~?>CBOO<;>7ӦQg-|G_krq}koa ީcCޕ`[7Z=1ׄRڜҜ&҇4]:~rqNRj1nIŸ{(J3vZY&jͤuk5s(x'|Eɭ\7 :ς[ZF +y{X4DCv(%iܤdc$8=⿿Oxc[-~WUnd{mx_| My _kWa  1Z6̺><N9+LBqTT*P5M1mmi)4RaR4;lդo[$LӒ2_|r:qS?9 \st +x8q%(''H $fݫoú&tRfcQt8fDMYeTr꡸B`cċjV\F\]jKs9S BϖFN f +~bw䌞p9:D2±!+F *,Km\0,ݫ +\f< l29$scgp˘ewbrI#RtOwmW]dC_Fu۾=J/ ŘrI0~/?>$#eҼ|@u k.gckx> ;Qx{PKSqEa}(9o>X,?lMύ;+5φ<9OIm;@݈[ԆChݰ-{n4W'iOڃU + Ok)^=<;am6MGxZyk=ġ-Y.t1?> 9<5Z\ +?|- Ox-'O֠{u`%a9Ou}%?Ӯt_ +[zVhi 6зVC4R^,%>-$F~ѿg׉t߇ֶ~ +j,Wf9m\U|*tcRNZm6>Q +0cǤRv]SZ5mGQ?tQt+Ot?z]xsN' Xak@Gxn`R<>̭үv +o<'j/.{_EciW4M.wѵwP]MT[skd -EI<_c|Go5VzԺφuj>#]? h]cX-ζWº"V'k9҅G+E)̩&Rm7H]NI5k+[{Hm;9 3Zijuf;eFH]G[N𿈮SJ-?5WPA`o$~oumIR"]41O"W:y鳬v$^س@\l6ω Hv=Al]-#z|L,M-(Ve+ Ow *Xڑsw'nݖ庤TrQiI֗M~!Ě.5χzc'<+Նy&Vm6,>%, Wwj6 hE~[gGWu _û_x>'-7ៈO^蚲EEGet 9hdIaXHE FHte AH5xºw<={S B;Y[9nV%WUHFT4l@ t'RUzo.Iv(+dyiޖ&()(.JJ7NJhM`q;!xI+\kn|OPZnxRԼa;^·:ήm!MCJ` z{~j-|kwVυæx^17ҧмyudQpugʳ?Dυ?'c׆0ZGh?@,u+ۭQ%J`H(^8h>+lw^o4 I_Rw_Vl4LS:qxi69jqkɮiTq⒄`|S\jݔB;k55i+5+Jovߴ??dd t4]+gVO[t{o'1EgE5yq4{k%6|[Q| ៉_<7x:煵t ~ٍ[^x^Kecq6Nh +Gq 7g?tSO|%u%zu{?0Cײj~vS=3>k o.tvE6Л;=Pf NK؊!itBMͤ+ÒRoH%R0RLATd<rmIZ:6mI$q F6I*q`ƚ-H6nq#x%`-kº |=W񧘊5Nʮ61 p] +R0@Wv2H'fMji4NGZ[o&s'dO} u!0Rۗ!o3iLR90B*0>G=;s47^~-}ym5$ӖM271_CmYH$> g?ciǎ| ڪxOB|7G/9mC{{y 𧀴W¿ cCo߉][]Lh-n_!5}"|YX\CkE/Z53+k1g6Sn5\ضH:ޤE}|C⯇6@!:^xrxmmNbYs{s'+E`<D|l~;C : wjFn2r_ҋRiVmIԕ4뤚M'M7vܒ|rev럵[~ =xI5 9},P)Jѵ[V[yq% ,B)oZυ|[ x K}SE&WK} }kxmOpVS+Cimmf[BO ~-`m/mVaqRv_oNj +Oi *Ufү |Qi>#tZ敨?dא=͸Vc qge*cz鰴V]J5NJ¼B:tiJ.rrQ]Tlyo9TNrniYs'KI.VsW?eo;hm7:Olԅx7>(דJDZҤ:MΧdwv`k~?5пkh~zz׿ +<cza__K⇊"xƙ.tag:=p*,_oVtM3MҴ"-,pLZ?d>!?CTԴ_R|WqM[ZX˥v~1{ ck=Ao:m%>FO~!NiQQhӃO-2Rn\ܮ)ΫcT:ӊmF\nV{YYE4/].m[X[g.yV+Fĥcu)#H쑫|ipu.bCRHG+)drT#{oi]{9g^gPg"y-e_&,ycλr6w _1_|3>}rbmj3׹>uΕcpHv;嵖`񼶥n<_AҢy(;y4mj3\L?sƏqmEopbXnvTwoE% m}?WBIk-K[UЮ%;3#.#ehx֋Ztk4M4M]4j>pNJ|T -Ut]w+=oSY]早z-[k-^ r縝ӭy#;G-٧[IH敫BbڧMSGoW::k[+I|eft8 ]x"t[{M)E[z4&ixTݯt:PCZξz[ܣ9;F5YLm'm 5}q |?~"_5凉AbXTY%KͮW{D6Oqs؊rƜ`q<]](sNJh6Q> FUn.WN^~b7$ӊWo | T cYo;?x[§ŷ-nHot˹5iwtc|:m~+ZWl,W|Ꮔ%5͍|cqໟRx@7W:=uylvYO]c_WJ4_UԹRNO=Y4䛄I{IbI%m68OtqNvOFI]}oI޵厷. >𾝨PjZcxgQ7.-5[-Y{)}G?j>cO|eS|O`u-kDZM+G,M:>h6CgsRUT mY~_ǽR~,Ŀ_Ԛ-WNJmY[Mx:$g~*ܶ͝ڝն յk`/寍|Y:V<T|⿏7XZxGѦ1m&M8ƠD=Ae[y$(?f/'OZi|5Ahӵ/4#^]xv a]\@$C~:ŸG%y๓[x.|7BFo|At- QhɨIr2#l^#mS|҃sT[wWNew9Я9)M%vM4y{&v?m?f>"Ot +Bakz}o嬫{?iESJ4ےrt)5zS~6(Ft8Eeh=mڔMWMwXGËwi?OϬuZdړ1Xn^ú*՟NQ'O.v42܋}B^ [Y} +a_m>/x[t cW^"|%g|,O,mbMRQ/.m4F$f9Z`ׯܩܔZM)J.m^JWJ1)^I8RNM]ҽz# +9}/g4?IϦ/ /!1H[yCi(Xh?mm/Mwl4<ۮf.r0ȼ|WTIl#=o75 |l/t;= +U֋k%ZUƙ{idm.48[=t \lh~.u{k? 9Կ?<1g/ +Eԣ< ~$՟L(`4Y x\?>(Hk#W~ٴUmПR7Aծr[ٽ܋ugWXn"K |i?tFxbW=FUյCo;,{q=GfK]h/ hO~'/< ꚏt_4[\Țo]Ew[v6XyVO"ZGƯ:j5w`C|Jb:tI[>uy`8ll'j?c2u_|Qaw>0i|5>7l5]ͮjph6ы] R "y%}W|]3 YKG꺧ܯ59hO죶˛}6MRӠ"=*[/ataJr^e +Q}jԜm>]%UeNJin/^Gk4Mߺ&?j?7Gkşƭ? [7.FP*6pxJ|=gFHF_ M6I]+-gVSRyJM+6wMvZ3y ?b?:|[K|"ޯY};AwGAm{\K Ӽ\Ֆ٢g2O +)k~4Kmf<hv֚։~1^ƮGΐ E7Й -?b\ʗߴgdHck.T^|YUn&PQı$[Ko_%4Smin{FտkRjˬVn #) (!OqUNThqiFrkqT˼CKy>:Y/k:.u-VQ뺮4~!j.>_ٍ[đBZCZBx.ӭ.ڏu_GnKc+_Y_Ijچ#4H5&Iula4;f;[Ꟍ'6O~>.GxWHskOk|n4/ Čo-x .JxjqpRuqwN鴴Pi4kI7{{M>%զucQk[ۭRK͘{# yN9|*w/c@WH%'66* KI 7@r#?78=xR?"G#6I&KFZ-W{mrmy/6.?l6S`nDR#` I57>68en/$ƪ@.VHMo |%.ꟴdkcG_ xھ/ hE^'B,5^+H[_[=߳о x{{m_ֵOмUjRi<#/>;j:j<9mgOR>kžt]?x|GƳ_|9Gɦxx~k  [}>j߲G/?~_~-^8~x>)/i8['w^ĞujZ|>zuK}pGѭoZRe)sE:T*T\=jl89FoVR8ӓN)IJN+%>e(%şڋ m''nύ_|e>(x!5_$W&rxcuz]'~e˭oE^jUv࿌9O!ơ∾!?h;oP.|E _~,|`ڝֱK[Y- +@pWǿ|ƞ& σt[MFcǚ߇ux<"lRh>o3Eu K#97VyZj.u??g Wqxİ4i9n%Q.sRn4\߳ZRO&M^iьSWvrIݴw[7um?:l=i>#\@|7o H׃ iGLR.VݮVks7_/b=#E>+|Muهᬾ;eu x(e\htKKau=눵kkowWh@?Z#oi{ |@Mi-–Xjl \lfu>O~^$tx#s5{M[Ƚ|L=ԶZ\GP닧ݬW"xvMmnH-UƎJMӭVVEr):6~Uݩ&CXW<[sHE5-\Sֿ2ZuQ/'qxw Z_fռ6-ekk]6uPml|#akG$ʆIVH:m \\Ӯ< K昖~l\',UpBfwzb)U׺u6~?h߃m^9iz/5E>uo5-j|Okes ㈲<"kz#Q!-_/Dhnl,g[U0]Cys|='g~V @W:_>5spC=r[e|Bڟ :+ G|)ᆼ|:m|֠sik%쨗r}Vߎ׿h 'ZoZf#Ҽiemy{u}i~7𩴾B5 xxA Ԭ.t""Gyַ2ݕ6FmfxV% ::Լk_ZN>u[kQ&9`PbLb_FW!Z*8EsJ-vvZq$Wjɵ%MfwKꮓ|ђj$GM~?Mo:'ĻO>_z}ԗ h?M/Ƒ܋?G4&HmRAb {>P7vt]ޙtΝuqcpAuOi+̱]Z$W1#`E#Ge!WmmR#{p!-I#9>\h +k*kiey'YIi.]ش3KI$Mz)US*}5mKݷZ$ӓ^UYEyۻ{ +wDZ! 2T,r0B#'{ _]Tm +o>i.1ܝH4'O%keKm#hI9DhvDxQ L 7c0Tگſ~ 7dw1xFώ|1Of^+|G?xw\~:hڮoî$1 P-KY`Nnv&J-F2l)%+Y+Y&WN/6ԞZϦ=,qqI>$s'G^%5¾<]8E xSR hmZoe[2A{mKׂ~'[cN<'i3^>և=OYqhZwZp[A6u33mHRK=~'>0HЯxO/Oe[~.g.u-r]f(ח+T|,3M6$P[eO6 w5kw|/Y{k +ľ!PD"0Ih`L._Q;4"ppWiAQ(wFZiME%OG.Wi+Y#&M]R?zօ_x ᯊ/@|!z/4 }.O]]KAwpK?гK>B7J<[]wDֵ?¾mtV= FR+%w^sÚ¯|~~%3_񭄾h'w'[no'b4JPfnO̻xT;Dl`/ +ɐN ,p[?/,,TAJ+ 椒qNI9_YYjo|K5NIꚶ&NdzuXg?;c[^0/$B +[紊Ts#~TgilGk^";?wOt1ͺo詋=14q2ynnwXq; c_ 0pC>8^q,1G+wxX&xA6y.!#k꽋KFFk-ln.[[󛷮M5߮?bWh\-=ύmHmIdyƉ%Fd1*!!^ B[g^+5 Eռ3әV? +ih?na<3ih3hk&ŶzͶ%a^vKpd\7Elu} WZZjr<-Z=Na6y 3KϳK)^uԧuI>gmVf&VQmotIᄊ_'×ig9\{⿇Hn!%3nuq "0ʐī%h#WtEeɟ'-R_2S5짙I|g&IegFL+Ǐ|w%3گ SColVkBJ\h#i ̞?G獬x[| wMi?.nt/gż:zN^7q mGT;`-Vf׻̤۳i4ݭ:jN-wt9P <B+(cgeb] akR!|j_Qc,_WPl<q4q=sI#(C53._8-ֵkWĞ4X솵iIiW ]dVBHn3e"/0X]|2^Ks~ٲ;8V:UCiavg`Uy^|X]E.~ZE4v׵"z])u[Yu>QeRl^RW+BYguͥʷi$!Y2(\M V9˙#IW1M S> nM|q|%x;Ú奷-_ڭ9էKUf[ys߷ƟWë(*wϩϗ'q`(3q$=(ҭRz+ݷ4zݫktgrQSmM>i{~?wM+@>75OxO? lO歬XxcDHCRx`c"oY>🋮 +JGO.noECi7 VI%EVHuc~ʟ #Y &&:_R[æGe]s[Ne2$w Ao}؈ S)Ŭt70=cvWHl? Fq:nS^i$qkikNYONQm6oMiY?jZE^j0^e#K4kt ]VPLc_Z>w9j:ߏ JB_X\/G%׃3^;OĿ_EtZ[ [ ~4]:ٯ.F:0ORJU0JnpfcsWNRqJIIQM*ڔtwdNɥ~cᯋ~i}T펑 &MD|ݔzt1𥅶miiƉ#/Ww+$%6J\V0O1gg(G  L!^Ee 6 ہi6@zAC9%TUH v_WNa)M6VmeMKWV+ݭ[jNXP\FP1'8P$ +7ZP{g'}J%#̙f/n`0b ejʊ< :OZwW~ZhY]5ծuwױvPw.@Kv0ɰ#2:b~ȿ<13>0~ .3N_ïx[ z$y+3!ė[ + +WvDBohn%@ 8oُcJ mᏌ/x~$h_ºݿt^'gb +^iww?e(ӒqWqVvMwdwj+%dmtkW_.~?jx#O 5]B ~\cOյOUե 6tD,_7L=_U9U> wQ]k?-#GA>,S{߉Z;xvV-aw\:î~?5?4 ^JOsZΉ[{uO_ǯ?hZxQҧE:oO,c;HY(cxG[Ry\-Y,7l7rINAr&9)RxKPbM86SI٦MٴNnN'n4h?_moĞ';Ē^ gtmKFѿ| {:՝V2R8Kmw>ƍ6 [~'Q6sM2QVK,ODm''WwV>{ikᅾW$Zom'\𩴸K5 I4r7~۾ý .kI|_Z/xsRy=\Km -sgg%rxF:L+,+ҩ99s9Q2qTI5$Sѹ<ڪ8AuIAEeiZtoy;%l?MQ-fma{VM;;+ԭv)mʹB+@>nceWliixWmN\/VMҴ/彷cw-T& {Eԥ{P]]J|'XlUZT+1uTR)(9ITfܥ9EYA5wfےRg +JxjU4WrrܛpQj1wrkTi? x~*|2S>񯂾xº+q.M ԖzԷP$iYV٤x 5OxC\gso"> M|uwsGcqS\=7O{d;o?:]zojh[E濣xW\ү=gOdҧ18i`~ lt2_ë[ H~igON~Ωb + ݓ;Xl~.J4T++ifVIeZI*qu!$IjM=n?şNoeU#|xĖW:~U͕ݟ.8 VlRX":<p *#<)ះz/ÍVR|ao;]my[V^ڵݴ5BgI~|0.k>u[ie[I"i$fDKFz#qWz%>lϵeE-3a&FIY(ϙ{M=cegtշXu㥠zeVi=nVߧ1>W]O߳ݶ፯Yy!mķW^*EZ]ޡɠXXX߆L?_<_aW(4{ +x~"|eҮlωjz>d,u^ym.+-IJ{goZet(b#{v2Ah̶#`6ՙf/m- +ƾZ-&-RBGuX<.Nl䴊]cu*l&Brj\B-pViVrRqjp92EKTiGuZy\VRIIX>nKiڍż1B &y-徐EͺI=Dr0.qA?n7h|F{3P{"%rA2Ds@V(jmrU}nj{Y[_iŨjz,`2*)HIY7'Ŀ/'~>)[>S𦫭<񞛢Zfh{|[jZ卵}i>W'GRuy#)Aάk+Mj+di;(jO1RpiB +VM.m5wiv_Lg]վ9@GGG/ڶqkWZ6qpZB4..$h+ cyӣ goufK1e޳k3kVnk+_Ioy`K;ψR_ǿڿo_" 6sx$Eu ~ i=Dž5_9uO;S-aOsm +~տ?x㎭;/x{ƾ$u\Wk][j>qo$Z\ QvVi&YiVT1TMJ3ruH(TIӼj7mRJѦt4N-YEB*Qjz9$TK ^!7>:~ӟ~\RxNվ^[ \W'< &vy ńxR{xg9 +m4_-e0j:]I}#XX۱xww 5nXF@ j /Z]WM4ۭ/Xm5=#RӧOl.#e+H]U`iʔk)OX'&.M/k-j=ܜviYY&zCZuKQREZ.Uhn٘I\0IY zp?N:/R8QUynlJf8nD^k(9,W`#;98<3I$Y%Td bBrFA9K;}T(XH|$;tOGV/4 ^4t˻ nnkso2HUVJc1 BI rZHQRB\feHi9;y$g*n2JQij4MZ׹\7vwz=S{=,n[+mKF:Vg%6chVBejcRW Ge}[㯃p|%Oä紒4A'lo"_y5 /֣i^+ikVthOX_\>4K"+(gkf[u3B,jF&ƺ4վh(|qx]+Sj6? j:gvs%v+qrx8үS ;BJ1iRVw~ZNNV{ggwNs e?wluo[ItM ^$tkU[]b$n"M-oϿڷ +9gྐྵ|*<,E5凋oxİMk]H|+e as%¯NfaNO;0Kydre`$*Aګr1vNeVۥԿtjC;]I*x )*Keb@S1lnV +NVnUe`9;#ZfԧYJ-6J6kI5NQ&i=lѦ^Tid:~iG_#\kIqx#FCK^2?Nԯt4ZMii?vOow +~7jЯZ?`x;^Y-^?֩-i$39kOVe +26$)Tx;p$ +M1\3ʡ1u +]\c5(FХZ8B*1Ink8'f5$Iqtrծmn5Vd+Oߋ?~z|/|krǚt ]R6ZRDN!*~h?I%#χ=S?'|[]vZ} OOee&"G<3|9g~05|>Xk MS 6=֠/3D>2'&O)1 @8\%eVr\iΜQsSmF2\Z+JIYw{}Um4ziEw_~x~x]πY7R.mZ5*Ik ?XSC ֲC3]@tu/ڿ!Wo%x6#?n > +O6Ʒqw-[(n4x Io[]Zor|*|:Ɲ|:Ž2[Ox}vjv7wÚԭa}ym}oܤo5$%ixė"qxoEVwqjtڝg»c om,w:ݖ>gpRPHlVQBEԜTm:E)>m-)6wm;nsPPzvJ.:6[tVO_?h/nwxogZ't=#)ZxY?ZjZztl- pl帚[Gq?/G>vt߈~t߆~<ŗ»m5pZשxBWòGt$Y GI#-C.ŠnOcz-6F-ur;ķ1"xgSO|I {A<-]_WK_Xk~%o#k{.f- JaGI/ji(9WJ*Nv]QI994ڋk$\RV[4J>×߳s3xM/ޱx 5&~ [Mui6(~z-Eɷih%|DN/3E_O \4oxv@񖛥_C4T&K[eEc x,>XdhQWQrRQiJM6)6Si$KkfSi];ߓPّfffb mRR11VҾ&,!1ğ֕ 76;.͵caO`v7uݜmd\[2G$n| s3dlp nxŞ*ƿƾ%c}fTW'u_%Qk/f[kx"VVeH +IŷmiݻՒ՛oIݵۣ_}-uA?5o^{ /L}oVԵy4/ERt2d&o. QjsNz8mzna~ HN&?Օ*Τv d 4s/"(w3  \/e~/Gtg{[薻tۺ@͸!lF񸌗$pN m7|ͭ|e>%:g[Ը𾡢|:>hF:ݷ6dPkx, F⏀|!Ki"SyV!49!{_Wvi(ݫuv5jV{5emݻYY<9f͘ +h'$B{t߅>/^gn~j爾%Gþ?Ѯ.lK$Uլ`F6.\N7S/| =E54}GW ֵZjմB]>MObu/ĚƦѺAbsg76|];;°^uDŽ<;Z~S ÖvXmm.i8̥RN.-4۳Z&iY=.۲kM՚}Rj]/gkm޵xIEou=BHg_XG滒}7IY'Ԛ W&ЙL(ϴrwL+nWqrx*$d1$ѕ~bPl?qF`W8NHʒM)ό`y <ӲVzѶwDz鵣,Hv89Ւyn(>W. TMN<_ ۀ2qY,B +G G9 c G5<<{N@]FA CA pX̖mw}?Zѽ,]ScFx' uOmg_nG]x?Z׉cBMijO]żQrq,4ۯφZV^rX +ʿ Z&[ZzNDO, ;IEyyt]–`>6JH\rFI<]w{ѵxkHBN؏E-Hk5t_x?F /Ş"׵4;=:VX-b2xO9F3bI$IY-|I=x?(wdFzpNs8F zIxS9+Vܽ0$g#4AVzG^ ߵ=>;]? OnOҝ9{ߡ>t<=:;wMĞKrV~~~ouf  4Y (<@FTX(gfjEBs& +ܐCJxa&}P6 *`|73بcf*HpvRӎT# 8#5>mm_m{5k?Eд@UZBf@8!I_/.U9~J);pI2   58exF?L:qJ|Ϛt鯗NZrRmr{剮g*4xH*ı$gs8 +@[1FCFbrI&PJ[Vh9C0(9Spd&n114v +J|3sUPQmUi->[|mewifaDύ +]#9aFH$u%’ʑ_~`q UݕMź`6䜌eu$.Kk6 ́t` 1/*8V222Hee(U&s,CHU~N8r2 ؄+lWh +A &~ AAI謅v m ;As6)vokD맗z"1p+yaYC8ݻ d1fF2N'#r@z0 m`T9 >xR:#;#oi0+Up0Hytӵ7{k]]/>/m(=H<GeVq`\8sn 92qy1z9=XAS8Ue1 ]{tw +Vk_RHiTk9区wP36ZB$tʪUɀ8H-V-]Ic)f@I`'=xЖ8PU w(}n$qIRC[[K^m=: zjky_Fe˰1 Ԑ>c'$ 2H,EU18_(BAmđ `nz^펇8IX{g᥾u}5[&RiッMנ,m$̌#ENpsd{ҙ, S0gѲ;FDyV6e%čg_#qK6XW(!GNO,s:*=~.Z",c=8ԓ8ݟqN9Ld@{u)BH]3r{Ovڻ?AgS)oy%Au9cA# &b9,<3jl{]-7~ݴVrp7ʃq'sӎx6y=z1sɫbRaLho.hN"0r(**I?'nN ]Ÿ+;DrvČ0\/'rHĩ)U;7)*؀pF~jǵF +/C)zie'vkG/_rV`eWosE$9 p9i;@ݐTaqIUG?b;>ZI_ov|UԍcB 30 + ypHz1{+FUPcY y$PrlJd4-^uwR)0r2m$9P ` AQy\:*xܪ;9TG_R~dA[z-}uev!۸0A{0=> O ;C6s +2 3IQgSmG';*m}/ɑX+1$Dy I8@PN Zikӿ"%oԒOuyB %pXHS,`PIdR}8ew'q"aI% !tySvӿMv. +ݽ_Ѯ 3 ڙ(!D1l m̱+_G4lg>aeg0.$?-F_CIj_w"|]/PSp nt'$oib8fn>` +6ぜjJ##ơ/W%ZߟM M&u\F!y[c*ClT>*3|2[Qd&A'u9 n|<Ǽ/je6{o"%'eo endstream endobj 968 0 obj (FMǓ21Lc) endobj 969 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1884 0 R /StructParents 664 /Annots 970 0 R /Contents 971 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 1068 0 R /T1_2 5058 0 R /T1_3 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 968 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 970 0 obj [ 4349 0 R 4348 0 R 4347 0 R 4346 0 R 4345 0 R 4344 0 R 4343 0 R 4342 0 R 4341 0 R 4340 0 R 4339 0 R 4338 0 R 4337 0 R 4336 0 R 4335 0 R 4334 0 R 4321 0 R ] endobj 971 0 obj << /Filter /FlateDecode /Length 972 0 R >> stream +HWoHa>]rUSUKթ^j`]Hb`b$RTμ=˗WސE^]2~ۡ0rH0s*5 +)X=iJI8Zdli +xcaD8L9sVxAξ_ڻ/ODi)E&7ا/oΌWǴXwTJ9}ݰ&lЗ-p| |2Hsw|1KqDH@)+xJh)L(-dJ@kFeJ!rklI%/+99=rcp4 A&C3#穊@—RL7BXxp8{ c;sjvsNK,q z3DҵJ)ɄJ+obKWh36O +>$ױX#ŢҢ0 v Do2iݖ*d|Rb^`b zާ3Jg7~yRIP8;{n_;_hcbs^Z86}S%- b^VqA)u fW{~Q7gE}\n8[!hK~CM9Ԋ.5ZW繪cl +'´7*LY,2hxI"PRPo[0~ BvlwPHd[@IE +ڜ/ yH1܍R R vrr\kML?Ĩyycڸ'w}D +[ǷUzDVnjmSR&EYFu %d&[n4w th˳RToF#mE endstream endobj 972 0 obj 1557 endobj 973 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1884 0 R /StructParents 682 /Annots 974 0 R /Contents 975 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1067 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 977 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 974 0 obj [ 4426 0 R 4423 0 R 4419 0 R ] endobj 975 0 obj << /Filter /FlateDecode /Length 976 0 R >> stream +HW]F| $(c k# 8<9";Qf_twUuu~{ӏ?{4{0y:rBN NO&)eGcs=v[ZJ7&t g14x]j^>Ymep*'bA&)B9.qĕw*^mYHYf~:4KOm%}Fi2Oz~&ygK'Z>I_?jtne%I-lTiNeL'i9= FӮF +UYO +KI ++=N)MtFWT- +#UU{@o/6rF=ɲOy5#4AY,Y#dw`a +[[VDŽMcɋSBEڂ`<Zy/ u1*(W}$%ϝ }8D<״;W8%YSLǖsC"G䑔 H(̝D˿/P>o<_Э-<rsWpwY:D,:T*4ZOqVx{?7I5.p{C~e^N潣$5x4ƋՃ4˒⑆-Nw/(w\$QJ-<7틫 ]O_mD2PI=B {5M +b7cED YU25<dk&(K3E=m`9&\l܀ئL?luL/&[ӣ{Jm~| U2d^-OޢMюh^c9Y4\Ee;mhy4}e(Fk# K*`X))ryABjc|Y:>5;V!uC(<^#E)%o1'w#WLb,NP΀bmMq9p|w³GV=FїGQ [sྯ/|;J*+Z𔉛 +l}!,/@+pz8P50UT[ t +&\LbñK݆2Dt5kj}'BFK7MQ7:xZg.vvJ>GTbՒ/: pq?D)☖B!UMy^ +\vbo~_=f_V86ܚ^Qׂo( |B;Fs8t1/t9Gȉ0eb!e>8җyLMyi}T^s@ 8pou +k5o^?z㘣- ɱ\Cy>6𺶴؆ڢXL{%; onlgCJ Gۅ(sݩ 慿F7:!V[ Vԉ7հdހ4ԇF8\᳀Wlh%b<˓w uf}̨ǭka[{HZ*fh/ +Bf6P~+{Ɩn!gskɦ endstream endobj 976 0 obj 1741 endobj 977 0 obj (y$H!oA) endobj 978 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1884 0 R /StructParents 686 /Contents 979 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 1068 0 R /T1_2 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 977 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 979 0 obj << /Filter /FlateDecode /Length 980 0 R >> stream +HlO0-?|{ $.I EidQK)3;U=|wEpyb\]ݬ +>E.`=B\ @Eߩ +:*a,ɏ dͼ 4Y>Cvl&θ6z6h jtw]CE*ثt4x%uH7c+Sc&2C'gJ~cͤC.YvO?=j6is9O@}8Jv.Xt05L˒> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 985 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 982 0 obj [ 4443 0 R 4440 0 R 4439 0 R 4438 0 R ] endobj 983 0 obj << /Filter /FlateDecode /Length 984 0 R >> stream +HV[o6~pޚb]moE -0+-cH*wu8h`X }F_ëWgW0ׯ/f 4ͽ//@j8 +v$h<$AVz W=7;T("-hAϺ`&ͯ_7J={KL3HC&׵\KPK\ gj{H%եD=F߯89X+Քà?e)}sq*E+NS&;}m +t ˙fu馺d2L#P*ӝ\4ꪩUFoUxjbsC߱8ssXc=\Sk&3Nٛsc@].1Aаk2-jw +$ݐᒯİ6R ;3-kT"أ׋C`fʕRǡ;2WHS$ÙkSG7v%@cl]Ԛ-3\n(4O]QbB +귳A6 ]#6 Y3Cי1$()f VInˉS2Mk9,?쒷Q&6io p6~cDIꏒp7-7]q +i1`q,nI,9prm!V4pT3Q 'OpDmQ|X9O:578i:Vxяƪc3࣢)fr2$Sg"6`O ZB?|+;MxEp"Lt:u.$l@N^xe lZGp2@/|BA>Q8xHy{3LGp8{m,>y` endstream endobj 984 0 obj 1446 endobj 985 0 obj (}aY ) endobj 986 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1900 0 R /StructParents 692 /Annots 987 0 R /Contents 988 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 990 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 987 0 obj [ 4465 0 R 4462 0 R 4460 0 R 4459 0 R 4458 0 R 4454 0 R ] endobj 988 0 obj << /Filter /FlateDecode /Length 989 0 R >> stream +HVn7}_ 0oU{ܫ6 R8vҸQ'(]Jb_ýh׍(p93CN/իysa3'%Ta|_( Q$WoǟL?uQ+Y +dFJ:AP{!B6ܙg;5Hy3ws <_8~&, ::) 7g KgrV,׬JZ.+z> i~L"[UF3a MY̮{kU//KY-ZpUǷ6pc/( c0Bnv +0ђ;dڌY h`c;"q2rMЙȬP9$XX^%ny> 4 ,ACܙ;/s YhxE%"SgLZB(w'e(m⧢ -BhM % ie~c~PEVWE|lj )%z 0FH(`P+K6PZحvi*ah |6\Ȣ(%P6X@tAN QTr HԽ X.݀QT1VxH =|nWƭJ읬q@nrae-B]ۮ`lv$ïs^w~=ִV` +w}RGN詖݄b[CЏ]/NUA6=m'ﯘ$D^0.5^i'FcŇ>n8v٠`]ȭ)E]Q F1B22^V1i9w 4aF=ƒ}977 b"Lp9j^Fэ&&cg(q1 CK+F?|P4 ޟ)P ]=rYpcF$OKAK 6 }?uYuf?Wb߅ؠ9opVuX )gX ~F2T??ۊq]1Е5,z6,enړ,~o\4`;W|<[=Qs j0mbY6{z]z¸#--d3p;4mBX'~da٧Bū|v{. >ȔBmE lՎht-&JLq \J endstream endobj 989 0 obj 1271 endobj 990 0 obj (r̃s\\a7'HԨƃ) endobj 991 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1900 0 R /StructParents 699 /Annots 992 0 R /Contents 993 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 1067 0 R /T1_2 5056 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 995 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 992 0 obj [ 4650 0 R 4647 0 R 4643 0 R 4639 0 R 4638 0 R 4637 0 R 4636 0 R 4635 0 R 4634 0 R 4633 0 R 4632 0 R 4621 0 R 4615 0 R 4611 0 R 4610 0 R 4605 0 R 4599 0 R 4598 0 R 4597 0 R 4596 0 R 4595 0 R 4594 0 R 4593 0 R 4592 0 R 4591 0 R 4590 0 R 4578 0 R ] endobj 993 0 obj << /Filter /FlateDecode /Length 994 0 R >> stream +HWnF}lϱ@ei)Ҳ/65q4hVj*2wXF_%W? >JekqyЉ!0V RVWA +Ń +C.P@d;VpTtt*wQo9oKԵ:c RgLC0]m=w/r>?4 +d<˟&̕cЋvd? C"|fy>ˇ kQtm4SUs,i۱(ԑ)Uǃr}\];Ey$m*E_$,;}pwk+)>dBA%CFV4)aTZ Ru")m,3 +ގVcϫngMԑq]xVE*ˍr`2~tze@,/qUǪY~g-[">ӓ +n.N$2Itur莌;G< 3Z1 =2гسXz*p{˽J[4Tf`sq(7Yt-~3}54ށ /I1PV\awAzrTBxR?j9st%+1i)lsͪn>G_Q +tAְ+SiWdo^-T$l?fYM :˫J\?^8`y҂R4Mj dG&)Zze7I<(0 !,9dRtMhMG[u^vC1iA6T{d@lKbG` ug8l0 +TfhHڈD?y* +y)7- +~y,Mm[^HރLiykϏ4{kN+ +w8xJnV#ک@T|!3v +=Ґ3}¼nc0xpz +Qa + NLtA5zXn]O-2H[M]u:(gs^`qH <8i +<3/$HC9YPp"z"sQD݉o@7k5)TkҎcȴt(MZJnYR}%9|}/ fԲtbh&(8.NSsuIҽMB' ::a)ɪB{H*B =r + q&l1V ~wH*b<aCdknV(`ڮ6V4wQY P36j+N >/;@z/wb=@XD[UbGDXchUz +ɍI2[mr4A];U4empHv0q,׎=COIgii=>cS0TskUS֧*R >"ӳ q(JEEOS+_wh #7p`wY5BvvΥVīN{b60 +ݖ-&YmmW[iAAEZGrUo2lshP})%ڊKr9RHh~cYuGJ4Ϡe) NjS[ǏhQi( endstream endobj 994 0 obj 2109 endobj 995 0 obj (w{Vdy[Х ) endobj 996 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1900 0 R /StructParents 727 /Annots 997 0 R /Contents 998 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 1067 0 R /T1_1 5056 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 995 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 997 0 obj [ 4570 0 R 4560 0 R 4556 0 R 4555 0 R 4554 0 R 4553 0 R 4552 0 R 4551 0 R 4550 0 R 4540 0 R 4536 0 R 4530 0 R 4526 0 R 4522 0 R 4518 0 R ] endobj 998 0 obj << /Filter /FlateDecode /Length 999 0 R >> stream +HWn8}l("E݌@$ Z)lee{&Eu#l9sxqz=]/__Lo}B!( @_X|:e eζ6+"x"F_+e?uV4cvLH7u1N@ +G'(]=UYA%xcb㋝%eсb$CᨁpR8#EVYtB˰MZ7 $դ\>m2cH1şZ?GwMg[ lyƋ6Um-$}MFyDqnUXA6蘝b7lg#om ˘6M7}Zy= ìQps18l80^܀ڎl2֛L9oJD+((vdބ%JmqѸ+!@zA?G~(Rh`z,ƄC.Hw1G;P,ˤX,=X2Uؑei(^lB^#8pjsqPȈXMPPv&б(pYb#51pcc.ez9IMT[L@QjX*/JŊC7_')ߡ S|#aYppC`&,TCnvU&ceu,JY6ۦеNQ^|ge`(mEFb9-x8j A`&cEu,JQN?iTV9^ +NU=EwU3\OkR5__Y0,YEִu݀{` endstream endobj 999 0 obj 1534 endobj 1000 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1900 0 R /StructParents 743 /Annots 1001 0 R /Contents 1002 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 1067 0 R /T1_2 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 995 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 1001 0 obj [ 4512 0 R 4511 0 R 4510 0 R 4509 0 R 4502 0 R ] endobj 1002 0 obj << /Filter /FlateDecode /Length 1003 0 R >> stream +H]O0+%ۅر%6ZA$.M[땰|lis['ҋHc=}NrMGLNSA4|Qf9,I(}h ']g?.&/Mshr$$c( %v8lWih(?7Y!ԜCVuSY= RM'mFq=W~Ә'SɆ6%bLcԁRc-C'3J%Dbف2m)Zd#-'s*JR)yebd&Z_sUlc=ӤYlj#QEUZ*avXF{?y0{u>9),s~iCH%0㒹ciɗ-1auoin23Op/E?ٕiMX;r21][.mV endstream endobj 1003 0 obj 477 endobj 1004 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1916 0 R /StructParents 749 /Annots 1005 0 R /Contents 1006 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 1008 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 1005 0 obj [ 4693 0 R 4690 0 R 4689 0 R 4688 0 R ] endobj 1006 0 obj << /Filter /FlateDecode /Length 1007 0 R >> stream +HW]s6}׌}ڴH}$Nug=ه"A1IhU~HQl4x?=~9Ja*~ZH>I@:q +^iZ[]Z' NR-q,6NYrX;ܪv*u]'JECqe {*%i8XjLj38aiS#FWt1Bֲqdu/"2u#q"U\N>"V7*rRThUĺC5L:Ŭ_irVדC:sMja8y!( +Mt4&Ƶp:\({mPJ=nW=ia5A)P9i;NRE6yV{n+*>q}:Uv.1Y+ӑm u0z7v~ivB/챮A7J*"ZTE|S<)wTpZ:Le#FS8@QN,XzY\.Fn.LOrGmA|wssMa4ͅi٨?[`VLZ͉P3:j&ŀ{mNc<rGE p`=ǿ`m=YA~Gɘ,فxW@̮МG kKk%vE 8Foa@Nx5^-簿գCQldd*ms)[>%ͅbvk3ٽѣȡGx0(Lf/{~'X,ijvڶzP,WMY +˫kk{.{8{6p7$xwoȖvG >AyCb谍繨ѳJ )nAx>>cC p $|q_/n2[E㾸練ȏ{$T#4h{ 嬬rOLa t cQk +a3l٠+ϲj,{yLjuOEM%%$ZΠ,j!/O*̠\9G3hW01@2V;М>۞AP^18Wp ڎd4,~'9q6#!GY[Ḍs*UN0ݡ/>~vЉiUV=O`Cj|jb'Ս켺0<A bL_"pe/׋2,PCqtGɣW5c0kKݘCH'ƃf_P<-1"fZ`$/,;o·Á/JJ5'MqשRfFvŀ +-eu}@ ʀ$ojsiz"\9j6$$HvY*xc Ja7[*9 +QKx^Yy5aⶑaz|^7qbXua[( GU,TMZ7`ikk0H %aS65j3c@^Etsiks82),ќAc8[c'S^9:u 'LO53pyfءݭpuӧ [ywV5Њ{^FuߧS5σc@P05¼0Wu,{0wvw2D{Pw/Uw8/n- N'4h?ñַ endstream endobj 1007 0 obj 2105 endobj 1008 0 obj (1YӾu\\gWJB) endobj 1009 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1916 0 R /StructParents 754 /Annots 1010 0 R /Contents 1011 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 5058 0 R /T1_2 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 1008 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 1010 0 obj [ 4684 0 R 4682 0 R 4680 0 R 4679 0 R ] endobj 1011 0 obj << /Filter /FlateDecode /Length 1012 0 R >> stream +HW]sF|güIN(_K.U\tuJ<XkXfw!Z׳X$ƺ!p33}˛74~xgod8|DF~Jn@fEe.W:FQ׋b$4(Ǵ(zkmHSY%rb+i-m%UVf8Ci.i^eЫ|n[1ߤQk-](3n/prhwܨRt 5j6jp QXK#T<:OڋB&{/]rM('86Z/%Ygty*#_v{{s{Ӹ0d2$cG,3d>F3h\L^1dt|SINt^t+*G״A.{o| ଔu"'6яH"XlŝD>[Y(_5GV+tU:`#oo`*G)*o[p\%Wo%Ɍ4 ^~ƿ?Qo8GxhLTF3$އpTκ0$N.NƹE:Vd;AɁ߃Y +/tbFN¸䜴}]padJwUqNS?zUeʹK4եD%ry'JJDk +#qm:ꊻDqwi9c <;ps!kw,}Gy%أ2CGM.vD<.2NFeِM jOe}.8@*yt5Y͗g04%Q*1xH2 - J;<*0g:[r-\W9c|{HIewG, `Mh>Q}~")h)Z8N{|@nqO}~x1aȎqO8<:Ug`zXu-LUܓ%=N~TR>8 p槿SUA5ь +꾩ufJCųyAhr{wаw(36$f (}X6,.~}X봲BA lꑘ ,!Z37ŽǗb˧J .v.Ni +@mt3[M}>,ɍs[r2ݖ:WW:ghf<Ÿ Hqd, vmF /(,D7k-&H=49OB%*sn뜴ï zv_0tSd= +²(siz0+js?,pm& <Gx0LGQ2>x<5sIp:>L\)ytpWVxy}BTš+9-_oeKaF 䇊AڦF0@sOLXģ5dYʙ7%+nhVˡf 8k@0JH6G~Gf{|4f5]ƓIIYtiw_:u.zuZ PrJ`DX^׳G +c8 `^ܦ<_j]S=d `]0_O rK} $<\-)޷7;ej "A]GaG05_?6/ endstream endobj 1012 0 obj 2433 endobj 1013 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1916 0 R /StructParents 759 /Contents 1014 0 R /Resources << /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5056 0 R /T1_1 5058 0 R /T1_2 1068 0 R /T1_3 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 1008 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 1014 0 obj << /Filter /FlateDecode /Length 1015 0 R >> stream +HV[oH~G?lED M*P+V})f$i _s.޼9OIo^NƵjM\[m dIv IV"<6XrneLV.y&h!~}zQU,3ɥ\B戔/f(7,|j\.VeqĢn|Cy,QQ踤Qb%.AKfMl +wtL9]U[X*6 ὴTEE4)c@:o8Maڣ٫ȫfeÒ6BwY 4zvHX%ks|G}M1tbB(?c:wLo0:ޛF8cMģLl3As! -w'SiW']rEW   3Ũrቿ斡v*ʙS{$aCOH F. (ncV' Vts;nYIOș%MY="0|Ex3ڀM +SJ el4XH62*3)#ĉRƒ{66T Ab]#9JQ;e"VDe5@@ٓU_#mD(ZQҍRaq=1*]z@ZC8z<*֘ puQo.avl +cy^)9,ݻ"{{Fx-E?,摗ypɅmؽ"N ~px:-- j +0<{o endstream endobj 1015 0 obj 1454 endobj 1016 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1916 0 R /StructParents 760 /Annots 1017 0 R /Contents 1018 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 1020 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 1017 0 obj [ 4711 0 R 4708 0 R 4707 0 R 4705 0 R 4703 0 R 4702 0 R ] endobj 1018 0 obj << /Filter /FlateDecode /Length 1019 0 R >> stream +HV]o6}p"%Sl aZ,6T\]RCs4wO7G:(̓A448AP F_}X~Ņ +[w~ `Kf#+hբ-8! a%2W<0F##".]EДQ0uA$f9,`rwL>"7d9g-?ZsjY!kLK|~^ oD 7X$! +epáF6To;~| bFA!_Dp!Y̐ ()RE)<6ӄdtvܒHܑ'N==w7ʸ_KМebgt=x.a;G&ܢnC*l~R\ơ`+[sW;\vB!f(y|J+J ^/l LGP4{+1WΧH:^푽,'dX-lmB^VQ1)Lq٦Ł&:`<;%Dt5/' [`zw/ +FۆYKkZ1|}d;Ā-YOvQGD|a%idN$ORVU_zc#עFiV) ؗEy\kJk`dOo!' v3󟖣Џ\\Y;YM7U͌WZ +'|D,߸sQ>^h;$ d萦xdeJc| KZf#) YVnParWSӔU1tUݕ^wQءqZ?xd=-guN;piYWr[?.g$ɸƈ2|;|ovڍ X%\:$|Ї3%~1ό&p-q< FΎ:J_T$E|8iZ\8|Qu> + zV endstream endobj 1019 0 obj 1143 endobj 1020 0 obj (8ߝhLq) endobj 1021 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1916 0 R /StructParents 767 /Annots 1022 0 R /Contents 1023 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R /T1_3 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 1025 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 1022 0 obj [ 4735 0 R 4732 0 R 4731 0 R 4730 0 R 4729 0 R 4728 0 R 4722 0 R ] endobj 1023 0 obj << /Filter /FlateDecode /Length 1024 0 R >> stream +HW]o8|h}nnk}hpiÕh[$$$r9.Ozrc$<o=# CIaN ΅ҧwxȣ[€ ?诿J:s ?Y1Θ<'Yz{qfw{nѩȥff³v~ y"QL:o4ɗX\ +EOfk{4;N':YX@VE 2x6gOK)EV.3Yp[nm`v=w\c8)][a + ak%DlҦ %(᪺M{U/[,XT%bRBHʊ4S7Xɪ̾W´fɍP!ʦ/8IqNYIv.dTJK7Lx +)tQ9 +(* e@e,GE^qD0,X[&y@mgt-$O+Z7<j]3Sa7IeAjyjc==(JdLao6I*SNPR/l"`{p5jZTkA%a]$H !ɴTro-,(vASI䜊-ҩs>.H;&9MJdvU-DJϏLz 7 E Z4P4[,5lȑ?Ҩ4}>yv{AZ+B!A˚467̷FPikYn{=brY] 4ܔV]Yy6_sT!X4#%Ik6=Q}z^~4'؞+ l?_x2 &+7Y d][/qd +ڤki&/JH=4S2ɠ!t1^Ia8#mi6&%3LIXu雵""}0iGN0lE} +l?>79Hߝ@tQ84g0-7s[5X*$rTk& :N]@HK +jKov~*\#HeGv")*/7֌*fo-S7lIW 73G]>.҆Z?l94=AXs .Q5~0EfD\:vkwdx9wb$h ݶ /cMz}mRս:,} og*(84;PH;*|o)CoGޯroE bkqwA6v۹w Wv~﬏ց}wk|w슭asXrt=+Yla(4fHÕj۾׹6카9qIfC'9V^Y*G\,qT .M/%G puc.z8p/Ɵ38T|$_e\U endstream endobj 1024 0 obj 1605 endobj 1025 0 obj (\)f%I) endobj 1026 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1937 0 R /StructParents 775 /Annots 1027 0 R /Contents 1028 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 1030 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 1027 0 obj [ 4751 0 R 4748 0 R 4747 0 R 4744 0 R 4743 0 R ] endobj 1028 0 obj << /Filter /FlateDecode /Length 1029 0 R >> stream +HVQo6~pn"-JVhbЬik`00m3DHɖ[X3xf|;޾}w|"|N4EkqFbS`$ +Ƴ*;||$Pnǵ'3Qr+7VJJX-s2)("qo/#D`<'e@Yxx4ykZmn nHHa~-f3PKr:U%<Kx_~whOgE:V ?K!$\~S[U% XdlsQ&{$q@R&4D) +\3Htpv>B΀)dY81a@lj],yifJ. Tm]U/m-vCЊY<7Itd hjx[ZVWΈMgJl| p-@VҖ:Fk>~߹YRQvëN.W83w@fH 9Q߄4BmȖz)h5H qEOQX ,?]\I,0{Q&T 0MtXzQw@Xk6@_71!;IZ9hjxRea@,22 61K%݆`KaSd'32!N~l&‹`-kM.ݹ{FGؽISyQ}(U|smF~k F/J{X)qܐ74d[?܉i&BDjvZwd>#: +?wܬ$v4we ȀJtt$dH─'eٙ82x׮!Gۥ endstream endobj 1029 0 obj 1083 endobj 1030 0 obj (> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R /T1_3 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 1035 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 1032 0 obj [ 4782 0 R 4775 0 R 4774 0 R 4773 0 R 4769 0 R 4768 0 R 4765 0 R ] endobj 1033 0 obj << /Filter /FlateDecode /Length 1034 0 R >> stream +HWn8}EÈk[ȥvѢIcŖh[$eo;NyHPΙ3W~7oN?_|޾=~Z6@; %/FS:Xp)k#F럸-ϸ!+ϙ6BBfW2K@f18*z:@{h$riO)W+.,'!f=xA´&8[Wb/9ā5M斫db.J96}iMpJdEKLnQ:-mц>#ԡ4]e$R\|H_)ujA-?s+W@+opc+ +B*V*XK1yQEzCvw!;!Gq@ ލL G&Nz#|%(v+(D/I'ꘔ/\,S-haI0zQɓ'H !eG]&,|+dZ)NXI&}wp0\׼F`YU\< U.SXsI&J<++n>bNؖ3Z*Xs }^g%}bt0_֙DŇ:P;I"$€P>_I 1lM$"DZh"K2^Ύ>H<^1D*Qkr2f7ѫ )G_獏bv$oe8ϖL% 0ōgr*|-]&`[Th7DyH +KS?MC) :*4 ;E0+o66 +xVcƮ?zN E{HU`ʌGttJ0Mz]  F +tĜUB>_7E30 Mb 5C/j~1K܆7򆍃h37̹҅aJVftyX돔hl}0ipYY +-=;P?&a&%)pIy3gG ǰ`zh#5Cd蕮 +TfS+Qn1)^z)ECi=Muz7Ւ +ϡD}P9n ю.G[ω~~aDچǺW1+j%E?%0ky[&KTs;b_a\wWfԃN3mxE&GCu;7e2J/Yz29;"ޣ^AoM.Nf˕P:> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R /T1_3 1069 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 1040 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 1037 0 obj [ 4804 0 R 4801 0 R 4797 0 R 4795 0 R ] endobj 1038 0 obj << /Filter /FlateDecode /Length 1039 0 R >> stream +HWmoNaYql(JJnυ/zNA$W%,_$[Vlygf.oч>_;8#?8B:Q  |̹<_5 nqc*ӆVNLmi%cs!)t.ݫL! +$VtKcfY=<T mdbKeADԂfQqP.ܮ4'uhE@RfhTYˡgrID̾ +u5.D.H.q09AH ߟ[<؍l~x ~W`C&I50rba ];̝Ձ'#Jsq$>#^Mrzcanr9]#ޅsN |8H%E叝n#4Ǐ.(pC/ +(s؝,uu:6{*S92Z*2^*yje tY{MMe7_NDT@W~+@K&6+hh" +T ݢѤk`=! FT,ؐȬ''(ۙ)E L+YptebMRU(VAU\֏7(zE!iqH\uzP8ptYVAU^ʅl \jYPk` 0 ['4%vH[ o)Zh*)XuqT zhU:gĂ7BNOXUV 0Z֩-4NRpvYSXd]1?:G@P(Bq,*i~mӀt038(dzo}5}lW&s i3w8xw|~.5?ʚGs'^axىx.Ғ()s +3ҷSu~*@G$=/;|0G^hC_@>w0 uqjcA8 B,`8;%c5V/{^;$pb=uW+PΘk츿4 sڎ̦ +VE_:oc[Uf؃) - `w;@} ޲z 0F8̽$VrqJ?T` 4}XWd Un!ݧhL 21lGR \()tnP<0X0ZU!&~b⃀tvT@<),ToB`s#U8Y7@ӓLVhrXw+pϓe䗻:O +WғA(g> /Font << /T1_0 5056 0 R /T1_1 1068 0 R /T1_2 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 1040 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 1042 0 obj << /Filter /FlateDecode /Length 1043 0 R >> stream +H]k0-b_1t5`> Vb WJe%Yw$;NuW9Ǟ} puu} O$}1 FoYf dEʝXV(IK2+!DPj[$iJ"|$AkRWQYD )?mIndv2 eGm@]:MH]7 +sicE 4(t'*> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 1048 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 1045 0 obj [ 4821 0 R 4818 0 R 4817 0 R ] endobj 1046 0 obj << /Filter /FlateDecode /Length 1047 0 R >> stream +HWn8}>mZ$DnQ )M !XL$QKJvݯ!uO`[3g̅>w.O/ON-@8% K =:8ws̅Pnn:b)-THR%HnM|g +D _[痧'6Du4sцgw& &D!2kZȒ+8NWhL2x=GM`vfG ;Ia1rPj:Nk :;.NjgSb>w7u0-3ĞF^╮%&ozEz닙} y]O35a_㐣`?Ov)3n{+&QIe֎?/@r6EkyԹEŶؚstTK=gl`ű1NNHiB\ b X{g?HtAg`'%, endstream endobj 1047 0 obj 1360 endobj 1048 0 obj (u\n9k#XD) endobj 1049 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1937 0 R /StructParents 799 /Annots 1050 0 R /Contents 1051 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 1053 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 1050 0 obj [ 4886 0 R 4883 0 R 4882 0 R 4881 0 R 4878 0 R ] endobj 1051 0 obj << /Filter /FlateDecode /Length 1052 0 R >> stream +HWksO3DM;,;:q$3e'Z b-`.DAf%ϘV<܃[ᇫ7oiD?1Ur{8Ϧ4Y,i()Wޚ~_iOg(oN=SJU*J &F+p1gǿ޽\%bG>j;xs7`w`<t҄O紘N|rp1?5.Sz*&ыO0{Gc{;Pm%R-}*k. i܄DHP+b+Vc{(ЙYFtBVhIae + U,>D"DG[TrI6ZR]!)ь9y'܃|n/HSY9ch_reQVF#J>* Czw.j-*MmIlLpͰdJ%h/lg4+9>JZ D9Df +FGZ (+38 *p J +ҞG1|z8\dk2Q0D{s8Yh4[ZMb4@쎞|40!Z1[E? ?4[NYcѺJp^T)&ڵC%HФ߆b}Gp*M~/Qrws]~m'itThfrWHch\aEDNo49ƣhdtM-ؚ!G'YLTC SNO;.(x /gxMfݒur9%9\; HKLL +PK>3 :o* +V" f5~K|p65:{ +]e:OgDf( pӇ +}2gGb!S}%ujAR4ӰR& \7c> p?m+gx¬LjL> 'Z~]n% gi רz 3kcS;7(UqX1rS4pLGp\Ad 6*tO8=|!t_"(#<+a]*jn'hUZ> h'hyLUh.&~.|2h)V7;YQ 3.nLYZ% X.^߼o/6nr['$#Ű7lt!'KM<=rm GH#|6Eύ"t$hA\5֪8I_uX٢(9W<Ip +q1~H`Y8YqxȅKuIԀlu%#hz p/y bٰ;)fٺzTȸJ"Q&8h +" d +=8ʛ8ma` 8p`fBTHk̉v צP A+S VtMy|Se:ڽZ(> (m(҉We-FV#Fj^j3txV-d2{n u<hy ++Br>C{z[b x8g週]^2H* "єgBX3_ +?b[>p^~6nsǣDhCEl5' JAo `g,'Ӻeǀ~RēOQ4'$ TH@Bj55( gVHeҀ)LaDŽha R`OEHz* hNwX\DPHfʨ14c}%Wmx{bu`'?҅p3Hߨ]j-/* EܬTrݡeo![Vg< >($,x ]gh*> /Font << /T1_0 5056 0 R /T1_1 1068 0 R /T1_2 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 1053 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 1055 0 obj [ 4843 0 R 4841 0 R 4840 0 R ] endobj 1056 0 obj << /Filter /FlateDecode /Length 1057 0 R >> stream +HnF *wJ`< d`VEln}"uő (ꪯHo>GÏ:9'~@, ŝ/ߑ|}Ջܸ݇}pZ28#zzǒiT TtN*NTxZ*>#TtZ*9z$, "euWKqZwzFwȁ =YM}3 F’'Ȧ6}{6 +lFι'>IjgYHlpzҳ,?T$bKiJ"ns)─!?F$nӯ䇗udQZcq.E*`0MT`x CQK: Ju($ˆzHyŞk-ɦ0Up8J2d/+ +, JZ&r[g,s&ccgG&5SnO-v||MBr -zּW.M.p`Q<[a:JTp{H,Ap);nД% Z,!R6Xr6Q]OSMBX)aCT"_p% 6;C+Mcɦ)o2dA9- +E)W|}S'<'ƾ)@Mc9)ݘ~yk:jmzj;4kxd ճ&Qᰦm͔TՋFqFwŒIL KYe;8ehIDQ<{a QCp&.?ڦ= X6Z](qQvVVo+s]ݾI[nG<#O07 |fGCNp!#w_n>H@k誕1My`m϶U!w Gh;֥H$Qkdv؍Znha,ۭ4*7]nJH,5݆0ѬF\=#^{j7Xk 7F|C~]!p;WhN? ! endstream endobj 1057 0 obj 1688 endobj 1058 0 obj << /Type /Page /MediaBox [ 0 0 612 792 ] /Parent 1937 0 R /StructParents 809 /Annots 1059 0 R /Contents 1060 0 R /Resources << /XObject << /Im0 5062 0 R >> /ColorSpace << /CS0 5057 0 R >> /Font << /T1_0 5058 0 R /T1_1 5056 0 R /T1_2 1068 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> /ID 1062 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 1059 0 obj [ 4940 0 R 4937 0 R 4935 0 R 4934 0 R 4931 0 R 4929 0 R 4927 0 R ] endobj 1060 0 obj << /Filter /FlateDecode /Length 1061 0 R >> stream +HW]o6}7p)i'Qendb4ESMۜHs)r6V}b佇۫k|!&!9r| x%4 |g˛̧k=?CQH†[|2V=+j2iQh4?Џ"awW_Ơ;$f5y:rQG w(8h >*+Zҝ|ALE4ƞJ礗ne+#L+$IK^0!~!  $qa0qpt&iG?E}ďǠt0J(b!ex(> EG ;;{X{xi: # l[WrAKm8ʐJn= t\ph$Ak$F`ab8;w33IӒfR$(Րz'GxO|oz_te,Bne‘7|%߬Xp(h#i,+ޯs.7$icƣ7zJգtӹ xEI*te%֐μH`œp$͖vhtrYUݭZ*ֵ}+!A*8Ye) IGd=ix9"oXgtd}9*;;NKeYR1\2h v^8Io9Pn[vv@l\Vi%],= ݞn54Uk"8~VZE~j!@4:j%OOQN{BR%"]^dr%f[L@>̴oAtDbW3Y88ٷZ+YKWn2;FîHOFZ_QQ[]_a~I}8JC;+{ 7T +0qhs0r)}JTuϭɉ䯪mɮ +ue%yRrS6IWe7]tqA6:!e-SFgEpJ8zș#%f j%~'R1Kߺ9%WGt(t< {l{4 +u…w#$p3+yRp盶WԳ66=A岮A(RrPUzhYhے}0`rͮEp9۝K!8y;nAEE/A7{s=:m,Ř~O7OM!jNM?V͍.(\d<|)r;rz=Ug=Z@PC6C~aI;<<_4 %IR̈́1,eG4Zac +GLAD +)ꂺIsNvKoȴy؏X CZx3-zaxv(+,&P>x5Ͼ2e>]wHDG>*KNtԆ5++K+5 +W-;*x-]]JQ;ۋgJ +i -(QT=<RG@&ok3d> /Font << /T1_0 5056 0 R /T1_1 1068 0 R /T1_2 5061 0 R >> /ExtGState << /GS0 5067 0 R >> /ProcSet [ /PDF /Text ] >> /ID 1062 0 R /CropBox [ 0 0 612 792 ] /Rotate 0 >> endobj 1064 0 obj [ 4925 0 R 4924 0 R 4923 0 R 4919 0 R 4918 0 R 4915 0 R 4914 0 R 4913 0 R ] endobj 1065 0 obj << /Filter /FlateDecode /Length 1066 0 R >> stream +HW]V}W~ZOR3$-{8I%\AKr{^ڇ8 ӧOÛȧ译q@E@G|M=lGFsl:&+6YL&^^.iL6+ol:EҲݪH\ndT kY}:6Rפ򜔩 WlUTՍ7U 6G\9S2G4%벢D/jjA܏?n VUcuC:R nu^=n?EQjyb:v,u-k8vP)ب\dהNV[*oT-ɸ>oP-SEe/S-&l޸IlCu>^m8~Q47bg[zCict۬q+e Qj( @\{;?~rI|I&!BH!qҫOCzBpGHKD٘ꦔhZ W\,EQlvuʪ6Ƣ>= 4γڔrel> L +jmбΛ]hxs\O +USUnq$W_ RUl2dSkwwW㐶+*+PNE^\PHW/]5¶6?G9h#㿟)QF^O(lbbޟw1%ޤ+tyL5y4( :գG-ES0fLFYJ=#ANaVRPٚ|uDmn ŢLP'̛4O{28ꏮwo(Sc2>P|£k4~"GenJݣYrOlZfCc@4ysqUi -z +}ǖCBb&j`Iٜfm2Q-S0y1 P W#Ѧv{ctڍkQ1WU 'Ŧ̶`.[_'4_&x?36z([Ly8Fk~XS6ڂ08q氺3gTޒֺ]vsQ|lI+##} 'E;c8{/(֩}n8ȩS_d:!ȴ vJZ7vwǝ fuu`RUכ8*dWρ֣m:Vlo/{wj."17o6; +VMU nͿZmq^.PpMZt68nv&A*8-l.{nxXJ)O5,5C>颀zsX0`2ǻSl2"RFZeu)Z2ZX_NtM)-ĻJQmO+u#VĊ5 +Kr^_T!v*Lgz?_9_{6D͓ԑ} +PU:eڈg-WfHJO>zblb]Cq9 +rwCa*Dt]jOƽzXX\?:?;nJYsl +gx'+cPϟ<>`|\X_k~fS1T9+ +486ZxLra&R폺%-WW5"Jn krD[邻.dKZğ 坖5XU<^P:P _vX[]b +xFZ5&UHWQ6%uWNx~PQmS ?-Z"?gAG╏iFACM`u~(X^~PE$='!Fl|S?♗a2 zOdF 0a; endstream endobj 1066 0 obj 2181 endobj 1067 0 obj << /Type /Font /Subtype /Type1 /BaseFont /ZapfDingbats >> endobj 1068 0 obj << /Type /Font /Subtype /Type1 /BaseFont /Times-Italic /Encoding /WinAnsiEncoding >> endobj 1069 0 obj << /Type /Font /Subtype /Type1 /BaseFont /Courier /Encoding /WinAnsiEncoding >> endobj 1070 0 obj << /Type /Font /Subtype /Type1 /BaseFont /Times-BoldItalic /Encoding /WinAnsiEncoding >> endobj 1071 0 obj << /Type /ExtGState /SA false /OP false /HT /Default >> endobj 1072 0 obj << /Type /Font /Subtype /Type1 /Name /F4 /BaseFont /Times-Italic >> endobj 1073 0 obj << /Type /Font /Subtype /Type1 /Name /F3 /BaseFont /Helvetica >> endobj 1074 0 obj << /Type /Font /Subtype /Type1 /Name /F2 /BaseFont /Times-Roman >> endobj 1075 0 obj << /Type /Font /Subtype /Type1 /Name /F1 /BaseFont /Symbol >> endobj 1076 0 obj << /Type /Font /Subtype /Type1 /Name /F5 /BaseFont /Courier >> endobj 1077 0 obj << /Type /ExtGState /SA false /OP false /HT /Default >> endobj 1078 0 obj << /Type /Font /Subtype /Type1 /Name /F1 /Encoding 1079 0 R /BaseFont /Symbol >> endobj 1079 0 obj << /Type /Encoding /Differences [ ] >> endobj 1080 0 obj << /Type /ExtGState /SA false /OP false /HT /Default >> endobj 1081 0 obj << /Type /ExtGState /SA false /OP false /HT /Default >> endobj 1082 0 obj << /Type /ExtGState /SA false /OP false /HT /Default >> endobj 1083 0 obj << /Type /Font /Subtype /Type1 /Name /F6 /BaseFont /Helvetica-Bold >> endobj 1084 0 obj << /Type /ExtGState /SA false /OP false /HT /Default >> endobj 1085 0 obj << /Type /ExtGState /SA false /OP false /HT /Default >> endobj 1086 0 obj << /Type /ExtGState /SA false /OP false /HT /Default >> endobj 1087 0 obj << /Type /ExtGState /SA false /OP false /HT /Default >> endobj 1088 0 obj << /Type /Font /Name /ZaDb /BaseFont /ZapfDingbats /Subtype /Type1 >> endobj 1089 0 obj << /Type /Font /Name /Helv /BaseFont /Helvetica /Subtype /Type1 /Encoding 1090 0 R >> endobj 1090 0 obj << /Type /Encoding /Differences [ 24 /breve /caron /circumflex /dotaccent /hungarumlaut /ogonek /ring /tilde 39 /quotesingle 96 /grave 128 /bullet /dagger /daggerdbl /ellipsis /emdash /endash /florin /fraction /guilsinglleft /guilsinglright /minus /perthousand /quotedblbase /quotedblleft /quotedblright /quoteleft /quoteright /quotesinglbase /trademark /fi /fl /Lslash /OE /Scaron /Ydieresis /Zcaron /dotlessi /lslash /oe /scaron /zcaron 160 /Euro 164 /currency 166 /brokenbar 168 /dieresis /copyright /ordfeminine 172 /logicalnot /.notdef /registered /macron /degree /plusminus /twosuperior /threesuperior /acute /mu 183 /periodcentered /cedilla /onesuperior /ordmasculine 188 /onequarter /onehalf /threequarters 192 /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis ] >> endobj 1091 0 obj << /SpdrArt [ << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> << /O /WebCapture >> ] >> endobj 1092 0 obj << /Article /Art /Section /Sect /OL /L /DIR /L /DL /L /MENU /L /UL /L /DT /LI /DD /LI /HR /Figure /I /Figure /FTable /Table /FTR /TR /FTH /TH /FTD /TD >> endobj 1093 0 obj << /Kids [ 1102 0 R 1109 0 R 1120 0 R 1129 0 R 1144 0 R 1149 0 R 1150 0 R 1152 0 R 1155 0 R 1158 0 R 1164 0 R 1167 0 R 1173 0 R 1206 0 R 1234 0 R 1246 0 R 1257 0 R 1269 0 R 1282 0 R 1289 0 R 1295 0 R 1297 0 R 1304 0 R 1311 0 R 1312 0 R ] >> endobj 1094 0 obj [ 5052 0 R 4943 0 R 4944 0 R 5049 0 R 4944 0 R 5047 0 R 4945 0 R 4946 0 R 4947 0 R 4948 0 R 5044 0 R 4949 0 R 5045 0 R 4949 0 R 4950 0 R 4998 0 R 4950 0 R 4999 0 R 4950 0 R 5000 0 R 4950 0 R 5001 0 R 4950 0 R 5002 0 R 4950 0 R 5003 0 R 4950 0 R 5004 0 R 4950 0 R 5005 0 R 4950 0 R 5006 0 R 4950 0 R 5007 0 R 4950 0 R 5008 0 R 4950 0 R 5009 0 R 4950 0 R 5010 0 R 4950 0 R 5011 0 R 4950 0 R 5012 0 R 4950 0 R 5013 0 R 4950 0 R 5014 0 R 4950 0 R ] endobj 1095 0 obj [ 5015 0 R 4950 0 R 5016 0 R 4950 0 R 5017 0 R 4950 0 R 5018 0 R 4950 0 R 5019 0 R 4950 0 R 5020 0 R 4950 0 R 4951 0 R 4990 0 R 4951 0 R 4991 0 R 4951 0 R 4992 0 R 4951 0 R 4993 0 R 4951 0 R 4952 0 R 4980 0 R 4952 0 R 4981 0 R 4952 0 R 4982 0 R 4952 0 R 4983 0 R 4952 0 R 4984 0 R 4952 0 R 4953 0 R 4976 0 R 4978 0 R 4977 0 R 4972 0 R 4974 0 R 4973 0 R 4960 0 R 4961 0 R 4962 0 R 4961 0 R 4963 0 R 4961 0 R 4964 0 R 4961 0 R 4965 0 R 4961 0 R 4966 0 R 4961 0 R 4955 0 R ] endobj 1096 0 obj << /S /Article /C /SpdrArt /P 1952 0 R /K 1097 0 R >> endobj 1097 0 obj << /S /P /P 1096 0 R /K 1098 0 R >> endobj 1098 0 obj << /S /I /P 1097 0 R /A << /O /Layout /BBox [ 46 313 406 766 ] /Placement /Inline /Width 360 >> >> endobj 1099 0 obj [ null ] endobj 1100 0 obj [ 2178 0 R 2140 0 R 2141 0 R 2162 0 R 2142 0 R 2163 0 R 2142 0 R 2164 0 R 2142 0 R 2165 0 R 2142 0 R 2166 0 R 2142 0 R 2167 0 R 2142 0 R 2143 0 R 2144 0 R 2158 0 R 2144 0 R 2159 0 R 2144 0 R 2145 0 R 2146 0 R 2156 0 R 2146 0 R 2147 0 R 2148 0 R 2154 0 R 2148 0 R 2149 0 R 2150 0 R 2152 0 R 2150 0 R 2151 0 R ] endobj 1101 0 obj [ 2236 0 R 2181 0 R 2182 0 R 2183 0 R 2184 0 R 2185 0 R 2223 0 R 2185 0 R 2224 0 R 2185 0 R 2225 0 R 2185 0 R 2226 0 R 2185 0 R 2227 0 R 2185 0 R 2228 0 R 2185 0 R 2186 0 R 2187 0 R 2217 0 R 2187 0 R 2218 0 R 2187 0 R 2219 0 R 2187 0 R 2188 0 R 2215 0 R 2188 0 R 2189 0 R 2211 0 R 2189 0 R 2212 0 R 2189 0 R 2190 0 R 2195 0 R 2190 0 R 2196 0 R 2190 0 R 2197 0 R 2190 0 R 2198 0 R 2190 0 R 2199 0 R 2190 0 R 2200 0 R 2190 0 R 2201 0 R 2190 0 R ] endobj 1102 0 obj << /Nums [ 0 1094 0 R 1 5051 0 R 2 5049 0 R 3 5047 0 R 4 5045 0 R 5 4998 0 R 6 4999 0 R 7 5000 0 R 8 5001 0 R 9 5002 0 R 10 5003 0 R 11 5004 0 R 12 5005 0 R 13 5006 0 R 14 5007 0 R 15 5008 0 R 16 5009 0 R 17 5010 0 R 18 5011 0 R 19 5012 0 R 20 5013 0 R 21 5014 0 R 22 1095 0 R 23 5015 0 R 24 5016 0 R 25 5017 0 R 26 5018 0 R 27 5019 0 R 28 5020 0 R 29 4990 0 R 30 4991 0 R 31 4992 0 R ] /Limits [ 0 31 ] >> endobj 1103 0 obj [ 2191 0 R 2193 0 R 2191 0 R 2192 0 R ] endobj 1104 0 obj [ 2294 0 R 2239 0 R 2240 0 R 2291 0 R 2240 0 R 2241 0 R 2289 0 R 2241 0 R 2288 0 R 2243 0 R 2244 0 R 2286 0 R 2246 0 R ] endobj 1105 0 obj [ 2283 0 R 2247 0 R 2248 0 R 2282 0 R 2250 0 R 2251 0 R 2252 0 R 2280 0 R 2252 0 R 2279 0 R 2254 0 R 2277 0 R ] endobj 1106 0 obj [ 2277 0 R 2256 0 R 2275 0 R 2258 0 R 2259 0 R 2273 0 R 2261 0 R 2271 0 R 2263 0 R 2264 0 R ] endobj 1107 0 obj [ 2264 0 R 2265 0 R 2268 0 R 2266 0 R 2267 0 R ] endobj 1108 0 obj [ 2333 0 R 2297 0 R 2298 0 R 2330 0 R 2298 0 R 2299 0 R 2300 0 R 2301 0 R 2302 0 R 2328 0 R 2302 0 R 2303 0 R 2326 0 R 2303 0 R 2304 0 R 2305 0 R 2306 0 R 2307 0 R 2308 0 R ] endobj 1109 0 obj << /Nums [ 32 4993 0 R 33 4980 0 R 34 4981 0 R 35 4982 0 R 36 4983 0 R 37 4984 0 R 38 4978 0 R 39 4974 0 R 40 4962 0 R 41 4963 0 R 42 4964 0 R 43 4965 0 R 44 4966 0 R 45 1099 0 R 46 1100 0 R 47 2177 0 R 48 2162 0 R 49 2163 0 R 50 2163 0 R 51 2164 0 R 52 2164 0 R 53 2165 0 R 54 2166 0 R 55 2167 0 R 56 2167 0 R 57 2158 0 R 58 2159 0 R 59 2156 0 R 60 2154 0 R 61 2152 0 R 62 1101 0 R 63 2235 0 R ] /Limits [ 32 63 ] >> endobj 1110 0 obj [ 2309 0 R 2310 0 R 2324 0 R 2310 0 R 2311 0 R 2322 0 R 2311 0 R 2312 0 R 2313 0 R 2320 0 R 2313 0 R 2314 0 R 2315 0 R 2318 0 R 2316 0 R 2317 0 R ] endobj 1111 0 obj [ 2427 0 R 2336 0 R 2337 0 R 2424 0 R 2337 0 R 2423 0 R 2420 0 R 2339 0 R 2419 0 R 2341 0 R 2342 0 R 2417 0 R ] endobj 1112 0 obj [ 2417 0 R 2344 0 R 2414 0 R 2344 0 R 2413 0 R 2346 0 R 2411 0 R 2410 0 R 2409 0 R 2408 0 R 2403 0 R 2402 0 R 2401 0 R 2400 0 R 2399 0 R 2393 0 R 2392 0 R 2391 0 R 2390 0 R 2389 0 R 2383 0 R 2382 0 R 2381 0 R 2380 0 R 2379 0 R 2348 0 R 2349 0 R 2368 0 R 2349 0 R 2367 0 R 2351 0 R 2352 0 R 2353 0 R ] endobj 1113 0 obj [ 2353 0 R 2354 0 R 2365 0 R 2354 0 R 2364 0 R 2356 0 R 2357 0 R 2358 0 R 2359 0 R ] endobj 1114 0 obj [ 2359 0 R 2361 0 R 2359 0 R 2360 0 R ] endobj 1115 0 obj [ 2443 0 R 2430 0 R 2436 0 R 2431 0 R 2437 0 R 2431 0 R 2438 0 R 2431 0 R 2435 0 R ] endobj 1116 0 obj [ 2433 0 R ] endobj 1117 0 obj [ 2512 0 R 2446 0 R 2447 0 R 2448 0 R 2449 0 R 2508 0 R 2449 0 R 2450 0 R 2506 0 R 2451 0 R 2452 0 R 2505 0 R 2454 0 R 2503 0 R ] endobj 1118 0 obj [ 2503 0 R 2456 0 R 2457 0 R 2501 0 R 2459 0 R 2499 0 R 2461 0 R 2462 0 R 2497 0 R 2464 0 R 2465 0 R 2495 0 R ] endobj 1119 0 obj [ 2467 0 R 2468 0 R 2493 0 R 2470 0 R 2491 0 R 2472 0 R 2473 0 R 2488 0 R 2473 0 R 2487 0 R 2475 0 R 2484 0 R 2476 0 R 2477 0 R 2482 0 R 2477 0 R 2480 0 R 2478 0 R 2479 0 R ] endobj 1120 0 obj << /Nums [ 64 2223 0 R 65 2224 0 R 66 2225 0 R 67 2226 0 R 68 2227 0 R 69 2228 0 R 70 2217 0 R 71 2218 0 R 72 2219 0 R 73 2215 0 R 74 2211 0 R 75 2212 0 R 76 2195 0 R 77 2196 0 R 78 2196 0 R 79 2197 0 R 80 2198 0 R 81 2198 0 R 82 2199 0 R 83 2200 0 R 84 2201 0 R 85 1103 0 R 86 2193 0 R 87 1104 0 R 88 2293 0 R 89 2291 0 R 90 2289 0 R 91 1105 0 R 92 2283 0 R 93 1106 0 R 94 1107 0 R 95 2268 0 R ] /Limits [ 64 95 ] >> endobj 1121 0 obj [ 2556 0 R 2515 0 R 2547 0 R 2516 0 R 2548 0 R 2516 0 R 2549 0 R 2516 0 R 2517 0 R 2518 0 R 2519 0 R 2520 0 R 2521 0 R 2522 0 R 2523 0 R 2524 0 R 2525 0 R 2526 0 R 2545 0 R 2526 0 R 2527 0 R ] endobj 1122 0 obj [ 2528 0 R 2529 0 R 2530 0 R 2531 0 R 2532 0 R 2533 0 R 2543 0 R 2533 0 R 2534 0 R 2535 0 R 2536 0 R 2539 0 R 2537 0 R 2540 0 R 2537 0 R 2538 0 R ] endobj 1123 0 obj [ 2558 0 R ] endobj 1124 0 obj [ 2653 0 R 2560 0 R 2561 0 R 2651 0 R 2563 0 R 2564 0 R 2649 0 R 2566 0 R 2567 0 R 2647 0 R 2646 0 R 2645 0 R ] endobj 1125 0 obj [ 2644 0 R 2638 0 R 2569 0 R 2570 0 R 2571 0 R 2572 0 R 2636 0 R 2572 0 R 2635 0 R 2634 0 R 2633 0 R 2574 0 R 2628 0 R 2575 0 R 2576 0 R ] endobj 1126 0 obj [ 2576 0 R 2577 0 R 2627 0 R 2624 0 R 2579 0 R 2623 0 R 2581 0 R 2582 0 R 2621 0 R 2584 0 R 2585 0 R 2619 0 R 2587 0 R ] endobj 1127 0 obj [ 2588 0 R 2617 0 R 2590 0 R 2591 0 R 2615 0 R 2593 0 R 2594 0 R 2613 0 R ] endobj 1128 0 obj [ 2613 0 R 2596 0 R 2606 0 R 2596 0 R 2607 0 R 2596 0 R 2608 0 R 2596 0 R 2602 0 R 2597 0 R 2603 0 R 2597 0 R 2600 0 R 2598 0 R 2599 0 R ] endobj 1129 0 obj << /Nums [ 96 1108 0 R 97 2332 0 R 98 2330 0 R 99 2328 0 R 100 2326 0 R 101 1110 0 R 102 2324 0 R 103 2322 0 R 104 2320 0 R 105 2318 0 R 106 1111 0 R 107 2426 0 R 108 2424 0 R 109 2420 0 R 110 1112 0 R 111 2414 0 R 112 2368 0 R 113 1113 0 R 114 1114 0 R 115 2361 0 R 116 1115 0 R 117 2442 0 R 118 2436 0 R 119 2437 0 R 120 2438 0 R 121 1116 0 R 122 1117 0 R 123 2511 0 R 124 2508 0 R 125 2508 0 R 126 2506 0 R 127 1118 0 R ] /Limits [ 96 127 ] >> endobj 1130 0 obj [ 2692 0 R 2656 0 R 2683 0 R 2657 0 R 2684 0 R 2657 0 R 2685 0 R 2657 0 R 2658 0 R 2659 0 R 2660 0 R 2661 0 R 2662 0 R 2663 0 R 2664 0 R ] endobj 1131 0 obj [ 2665 0 R 2666 0 R 2667 0 R 2668 0 R 2669 0 R 2670 0 R 2671 0 R 2672 0 R ] endobj 1132 0 obj [ 2672 0 R 2673 0 R 2674 0 R 2675 0 R 2676 0 R 2677 0 R 2678 0 R 2679 0 R 2680 0 R ] endobj 1133 0 obj [ 2681 0 R 2682 0 R ] endobj 1134 0 obj [ 2717 0 R 2695 0 R 2708 0 R 2696 0 R 2709 0 R 2696 0 R 2710 0 R 2696 0 R 2697 0 R 2698 0 R 2699 0 R 2700 0 R ] endobj 1135 0 obj [ 2700 0 R 2701 0 R 2702 0 R 2703 0 R 2704 0 R ] endobj 1136 0 obj [ 2704 0 R 2705 0 R 2706 0 R 2707 0 R ] endobj 1137 0 obj [ 2719 0 R ] endobj 1138 0 obj [ 2720 0 R ] endobj 1139 0 obj [ 2720 0 R ] endobj 1140 0 obj [ 2721 0 R ] endobj 1141 0 obj [ 2721 0 R ] endobj 1142 0 obj [ 2740 0 R 2723 0 R 2724 0 R 2725 0 R 2738 0 R 2737 0 R 2736 0 R 2727 0 R 2728 0 R 2731 0 R 2729 0 R 2730 0 R ] endobj 1143 0 obj [ 2771 0 R 2743 0 R 2744 0 R 2764 0 R 2744 0 R 2765 0 R 2744 0 R 2766 0 R 2744 0 R 2745 0 R 2746 0 R 2747 0 R 2748 0 R 2763 0 R 2760 0 R 2750 0 R 2751 0 R 2752 0 R ] endobj 1144 0 obj << /Nums [ 128 1119 0 R 129 2488 0 R 130 2484 0 R 131 2482 0 R 132 2480 0 R 133 1121 0 R 134 2555 0 R 135 2547 0 R 136 2548 0 R 137 2548 0 R 138 2549 0 R 139 2549 0 R 140 2545 0 R 141 1122 0 R 142 2543 0 R 143 2539 0 R 144 2540 0 R 145 1123 0 R 146 1124 0 R 147 2652 0 R 148 1125 0 R 149 2638 0 R 150 2636 0 R 151 2628 0 R 152 1126 0 R 153 2624 0 R 154 1127 0 R 155 1128 0 R 156 2606 0 R 157 2607 0 R 158 2608 0 R 159 2602 0 R ] /Limits [ 128 159 ] >> endobj 1145 0 obj [ 2759 0 R 2756 0 R 2754 0 R 2755 0 R ] endobj 1146 0 obj [ 2780 0 R 2774 0 R 2775 0 R 2777 0 R 2775 0 R 2776 0 R ] endobj 1147 0 obj [ 3035 0 R 2783 0 R 2784 0 R 2785 0 R 2786 0 R 3023 0 R 2786 0 R 3024 0 R 2786 0 R 3025 0 R 2786 0 R 3026 0 R 2786 0 R 3027 0 R 2786 0 R 2787 0 R 3011 0 R 2787 0 R 3012 0 R 2787 0 R 3013 0 R 2787 0 R 3014 0 R 2787 0 R 3015 0 R 2787 0 R 3016 0 R 2787 0 R 2788 0 R 2789 0 R 3007 0 R 2789 0 R 3008 0 R 2789 0 R 2790 0 R 3005 0 R 2790 0 R 2791 0 R 2792 0 R 3001 0 R 2792 0 R 3002 0 R 2792 0 R 2793 0 R 2794 0 R 2993 0 R 2794 0 R 2994 0 R 2794 0 R 2995 0 R 2794 0 R 2996 0 R 2794 0 R 2795 0 R ] endobj 1148 0 obj [ 2987 0 R 2796 0 R 2988 0 R 2796 0 R 2989 0 R 2796 0 R 2797 0 R 2968 0 R 2798 0 R 2969 0 R 2798 0 R 2970 0 R 2798 0 R 2971 0 R 2798 0 R 2972 0 R 2798 0 R 2973 0 R 2798 0 R 2974 0 R 2798 0 R 2975 0 R 2798 0 R 2976 0 R 2798 0 R 2799 0 R 2964 0 R 2800 0 R 2965 0 R 2800 0 R 2801 0 R 2954 0 R 2801 0 R 2955 0 R 2801 0 R 2956 0 R 2801 0 R 2957 0 R 2801 0 R 2958 0 R 2801 0 R 2802 0 R 2803 0 R 2946 0 R 2803 0 R 2947 0 R 2803 0 R 2948 0 R 2803 0 R 2949 0 R 2803 0 R 2804 0 R 2944 0 R 2804 0 R 2805 0 R 2940 0 R 2805 0 R 2941 0 R 2805 0 R 2936 0 R 2806 0 R 2937 0 R 2806 0 R 2932 0 R 2807 0 R 2933 0 R 2807 0 R 2808 0 R 2809 0 R 2928 0 R 2809 0 R 2929 0 R 2809 0 R ] endobj 1149 0 obj << /Nums [ 160 2603 0 R 161 2600 0 R 162 1130 0 R 163 2691 0 R 164 2683 0 R 165 2684 0 R 166 2684 0 R 167 2685 0 R 168 2685 0 R 169 1131 0 R 170 1132 0 R 171 1133 0 R 172 1134 0 R 173 2716 0 R 174 2708 0 R 175 2709 0 R 176 2709 0 R 177 2710 0 R 178 2710 0 R 179 1135 0 R 180 1136 0 R 181 1137 0 R 182 1138 0 R 183 1139 0 R 184 1140 0 R 185 1141 0 R 186 1142 0 R 187 2739 0 R 188 2731 0 R 189 1143 0 R 190 2770 0 R 191 2764 0 R ] /Limits [ 160 191 ] >> endobj 1150 0 obj << /Nums [ 192 2765 0 R 193 2766 0 R 194 2760 0 R 195 1145 0 R 196 2756 0 R 197 1146 0 R 198 2779 0 R 199 2777 0 R 200 1147 0 R 201 3034 0 R 202 3023 0 R 203 3024 0 R 204 3025 0 R 205 3026 0 R 206 3027 0 R 207 3027 0 R 208 3011 0 R 209 3012 0 R 210 3013 0 R 211 3014 0 R 212 3015 0 R 213 3016 0 R 214 3007 0 R 215 3008 0 R 216 3005 0 R 217 3001 0 R 218 3002 0 R 219 2993 0 R 220 2994 0 R 221 2995 0 R 222 2996 0 R 223 1148 0 R ] /Limits [ 192 223 ] >> endobj 1151 0 obj [ 2809 0 R 2810 0 R 2923 0 R 2810 0 R 2924 0 R 2810 0 R 2811 0 R 2912 0 R 2812 0 R 2913 0 R 2812 0 R 2914 0 R 2812 0 R 2915 0 R 2812 0 R 2916 0 R 2812 0 R 2902 0 R 2813 0 R 2903 0 R 2813 0 R 2904 0 R 2813 0 R 2905 0 R 2813 0 R 2814 0 R 2815 0 R 2895 0 R 2815 0 R 2896 0 R 2815 0 R 2897 0 R 2815 0 R 2816 0 R 2886 0 R 2816 0 R 2887 0 R 2816 0 R 2888 0 R 2816 0 R 2889 0 R 2816 0 R 2817 0 R 2876 0 R 2818 0 R 2877 0 R 2818 0 R 2878 0 R 2818 0 R 2879 0 R 2818 0 R 2880 0 R 2818 0 R 2819 0 R 2820 0 R 2872 0 R 2820 0 R 2873 0 R 2820 0 R 2821 0 R 2868 0 R 2821 0 R 2869 0 R 2821 0 R ] endobj 1152 0 obj << /Nums [ 224 2987 0 R 225 2988 0 R 226 2989 0 R 227 2968 0 R 228 2969 0 R 229 2970 0 R 230 2971 0 R 231 2972 0 R 232 2972 0 R 233 2973 0 R 234 2974 0 R 235 2975 0 R 236 2976 0 R 237 2964 0 R 238 2965 0 R 239 2954 0 R 240 2955 0 R 241 2956 0 R 242 2957 0 R 243 2958 0 R 244 2946 0 R 245 2947 0 R 246 2948 0 R 247 2949 0 R 248 2944 0 R 249 2940 0 R 250 2941 0 R 251 2936 0 R 252 2937 0 R 253 2932 0 R 254 2933 0 R 255 2928 0 R ] /Limits [ 224 255 ] >> endobj 1153 0 obj [ 2822 0 R 2862 0 R 2823 0 R 2863 0 R 2823 0 R 2864 0 R 2823 0 R 2824 0 R 2825 0 R 2858 0 R 2825 0 R 2859 0 R 2825 0 R 2826 0 R 2854 0 R 2826 0 R 2855 0 R 2826 0 R 2827 0 R 2852 0 R 2827 0 R 2843 0 R 2828 0 R 2844 0 R 2828 0 R 2845 0 R 2828 0 R 2846 0 R 2828 0 R 2829 0 R 2831 0 R 2829 0 R 2832 0 R 2829 0 R 2833 0 R 2829 0 R 2834 0 R 2829 0 R 2835 0 R 2829 0 R 2836 0 R 2829 0 R 2830 0 R ] endobj 1154 0 obj [ 3102 0 R 3038 0 R 3039 0 R 3040 0 R 3041 0 R 3042 0 R 3043 0 R 3097 0 R 3043 0 R 3098 0 R 3043 0 R 3044 0 R 3093 0 R 3044 0 R 3094 0 R 3044 0 R 3045 0 R 3089 0 R 3045 0 R 3090 0 R 3045 0 R 3046 0 R 3085 0 R 3046 0 R 3086 0 R 3046 0 R 3047 0 R 3081 0 R 3047 0 R 3082 0 R 3047 0 R 3048 0 R 3077 0 R 3048 0 R 3078 0 R 3048 0 R 3049 0 R 3073 0 R 3049 0 R 3074 0 R 3049 0 R ] endobj 1155 0 obj << /Nums [ 256 2929 0 R 257 1151 0 R 258 2923 0 R 259 2924 0 R 260 2924 0 R 261 2912 0 R 262 2913 0 R 263 2914 0 R 264 2915 0 R 265 2916 0 R 266 2916 0 R 267 2902 0 R 268 2903 0 R 269 2904 0 R 270 2904 0 R 271 2905 0 R 272 2905 0 R 273 2895 0 R 274 2895 0 R 275 2896 0 R 276 2897 0 R 277 2886 0 R 278 2887 0 R 279 2888 0 R 280 2888 0 R 281 2889 0 R 282 2876 0 R 283 2877 0 R 284 2878 0 R 285 2879 0 R 286 2880 0 R 287 2872 0 R ] /Limits [ 256 287 ] >> endobj 1156 0 obj [ 3049 0 R 3050 0 R 3069 0 R 3050 0 R 3070 0 R 3050 0 R 3051 0 R 3065 0 R 3051 0 R 3066 0 R 3051 0 R 3052 0 R 3053 0 R 3059 0 R 3053 0 R 3060 0 R 3053 0 R 3061 0 R 3053 0 R 3054 0 R 3057 0 R 3054 0 R 3055 0 R 3056 0 R ] endobj 1157 0 obj [ 3182 0 R 3105 0 R 3106 0 R 3107 0 R 3108 0 R 3109 0 R 3177 0 R 3109 0 R 3178 0 R 3109 0 R 3110 0 R 3111 0 R 3173 0 R 3111 0 R 3174 0 R 3111 0 R 3112 0 R 3113 0 R 3165 0 R 3113 0 R 3166 0 R 3113 0 R 3167 0 R 3113 0 R 3168 0 R 3113 0 R 3114 0 R 3115 0 R 3161 0 R 3115 0 R 3162 0 R 3115 0 R 3116 0 R 3136 0 R 3116 0 R 3137 0 R 3116 0 R 3138 0 R 3116 0 R 3139 0 R 3116 0 R 3140 0 R 3116 0 R 3141 0 R 3116 0 R 3142 0 R 3116 0 R 3143 0 R 3116 0 R 3144 0 R 3116 0 R 3145 0 R 3116 0 R 3146 0 R 3116 0 R 3147 0 R 3116 0 R 3117 0 R ] endobj 1158 0 obj << /Nums [ 288 2873 0 R 289 2868 0 R 290 2869 0 R 291 1153 0 R 292 2862 0 R 293 2863 0 R 294 2864 0 R 295 2858 0 R 296 2859 0 R 297 2854 0 R 298 2855 0 R 299 2852 0 R 300 2843 0 R 301 2844 0 R 302 2845 0 R 303 2845 0 R 304 2846 0 R 305 2831 0 R 306 2832 0 R 307 2833 0 R 308 2834 0 R 309 2835 0 R 310 2836 0 R 311 1154 0 R 312 3101 0 R 313 3097 0 R 314 3098 0 R 315 3093 0 R 316 3094 0 R 317 3089 0 R 318 3090 0 R 319 3085 0 R ] /Limits [ 288 319 ] >> endobj 1159 0 obj [ 3118 0 R 3128 0 R 3118 0 R 3129 0 R 3118 0 R 3130 0 R 3118 0 R 3131 0 R 3118 0 R 3119 0 R 3121 0 R 3119 0 R 3122 0 R 3119 0 R 3123 0 R 3119 0 R 3120 0 R ] endobj 1160 0 obj [ 3203 0 R 3185 0 R 3186 0 R 3187 0 R 3188 0 R 3189 0 R 3190 0 R 3191 0 R 3192 0 R 3193 0 R 3194 0 R 3195 0 R 3196 0 R 3197 0 R 3198 0 R 3200 0 R 3198 0 R 3199 0 R ] endobj 1161 0 obj [ 3219 0 R 3206 0 R 3207 0 R 3216 0 R 3207 0 R 3208 0 R 3209 0 R 3210 0 R 3211 0 R 3212 0 R 3213 0 R 3214 0 R 3215 0 R ] endobj 1162 0 obj [ 3284 0 R 3222 0 R 3223 0 R 3224 0 R 3225 0 R 3226 0 R 3227 0 R 3228 0 R 3229 0 R 3267 0 R 3229 0 R 3268 0 R 3229 0 R 3269 0 R 3229 0 R ] endobj 1163 0 obj [ 3270 0 R 3229 0 R 3271 0 R 3229 0 R 3272 0 R 3229 0 R 3273 0 R 3229 0 R 3274 0 R 3229 0 R 3230 0 R 3231 0 R 3263 0 R 3231 0 R 3264 0 R 3231 0 R 3259 0 R 3232 0 R 3260 0 R 3232 0 R 3253 0 R 3233 0 R 3254 0 R 3233 0 R 3255 0 R 3233 0 R 3234 0 R 3249 0 R 3234 0 R 3250 0 R 3234 0 R 3235 0 R 3243 0 R 3235 0 R 3244 0 R 3235 0 R 3245 0 R 3235 0 R 3236 0 R 3241 0 R 3236 0 R 3237 0 R 3239 0 R 3237 0 R 3238 0 R ] endobj 1164 0 obj << /Nums [ 320 3086 0 R 321 3081 0 R 322 3082 0 R 323 3077 0 R 324 3078 0 R 325 3073 0 R 326 3074 0 R 327 1156 0 R 328 3069 0 R 329 3070 0 R 330 3065 0 R 331 3066 0 R 332 3059 0 R 333 3060 0 R 334 3061 0 R 335 3057 0 R 336 1157 0 R 337 3181 0 R 338 3177 0 R 339 3178 0 R 340 3173 0 R 341 3174 0 R 342 3165 0 R 343 3166 0 R 344 3167 0 R 345 3168 0 R 346 3161 0 R 347 3162 0 R 348 3136 0 R 349 3137 0 R 350 3138 0 R 351 3139 0 R ] /Limits [ 320 351 ] >> endobj 1165 0 obj [ 3328 0 R 3287 0 R 3318 0 R 3288 0 R 3319 0 R 3288 0 R 3320 0 R 3288 0 R 3321 0 R 3288 0 R 3289 0 R 3290 0 R 3316 0 R 3290 0 R 3291 0 R 3292 0 R 3314 0 R 3292 0 R 3293 0 R 3294 0 R 3305 0 R 3294 0 R 3306 0 R 3294 0 R 3307 0 R 3294 0 R 3308 0 R 3294 0 R 3295 0 R 3303 0 R 3295 0 R 3296 0 R ] endobj 1166 0 obj [ 3297 0 R 3298 0 R 3299 0 R 3300 0 R 3301 0 R 3302 0 R ] endobj 1167 0 obj << /Nums [ 352 3139 0 R 353 3140 0 R 354 3141 0 R 355 3142 0 R 356 3143 0 R 357 3144 0 R 358 3145 0 R 359 3146 0 R 360 3147 0 R 361 1159 0 R 362 3128 0 R 363 3129 0 R 364 3130 0 R 365 3131 0 R 366 3121 0 R 367 3122 0 R 368 3122 0 R 369 3123 0 R 370 1160 0 R 371 3202 0 R 372 3200 0 R 373 1161 0 R 374 3218 0 R 375 3216 0 R 376 1162 0 R 377 3283 0 R 378 3267 0 R 379 3268 0 R 380 3269 0 R 381 1163 0 R 382 3270 0 R 383 3271 0 R ] /Limits [ 352 383 ] >> endobj 1168 0 obj [ 3425 0 R 3331 0 R 3414 0 R 3415 0 R 3416 0 R 3415 0 R 3417 0 R 3415 0 R 3418 0 R 3415 0 R 3419 0 R 3415 0 R 3406 0 R 3407 0 R 3408 0 R 3407 0 R 3409 0 R 3407 0 R 3410 0 R 3407 0 R 3402 0 R 3403 0 R 3404 0 R 3403 0 R 3398 0 R 3399 0 R 3400 0 R 3399 0 R 3394 0 R 3395 0 R 3396 0 R 3395 0 R 3388 0 R 3389 0 R 3390 0 R 3389 0 R 3391 0 R 3389 0 R 3382 0 R 3383 0 R 3384 0 R 3383 0 R 3385 0 R 3383 0 R 3378 0 R 3379 0 R 3380 0 R 3379 0 R 3374 0 R 3375 0 R 3376 0 R 3375 0 R 3370 0 R 3371 0 R ] endobj 1169 0 obj [ 3372 0 R 3371 0 R 3354 0 R 3355 0 R 3356 0 R 3355 0 R 3357 0 R 3355 0 R 3358 0 R 3355 0 R 3359 0 R 3355 0 R 3360 0 R 3355 0 R 3361 0 R 3355 0 R 3362 0 R 3355 0 R 3348 0 R 3349 0 R 3350 0 R 3349 0 R 3351 0 R 3349 0 R 3333 0 R 3334 0 R ] endobj 1170 0 obj [ 3427 0 R ] endobj 1171 0 obj [ 3428 0 R ] endobj 1172 0 obj [ 3429 0 R ] endobj 1173 0 obj << /Nums [ 384 3272 0 R 385 3273 0 R 386 3274 0 R 387 3263 0 R 388 3264 0 R 389 3259 0 R 390 3260 0 R 391 3253 0 R 392 3254 0 R 393 3255 0 R 394 3249 0 R 395 3250 0 R 396 3243 0 R 397 3244 0 R 398 3245 0 R 399 3241 0 R 400 3239 0 R 401 1165 0 R 402 3327 0 R 403 3318 0 R 404 3319 0 R 405 3319 0 R 406 3320 0 R 407 3321 0 R 408 3316 0 R 409 3314 0 R 410 3305 0 R 411 3306 0 R 412 3306 0 R 413 3307 0 R 414 3308 0 R 415 3303 0 R ] /Limits [ 384 415 ] >> endobj 1174 0 obj [ 3430 0 R ] endobj 1175 0 obj [ 3431 0 R ] endobj 1176 0 obj [ 3431 0 R ] endobj 1177 0 obj [ 3431 0 R ] endobj 1178 0 obj [ 3431 0 R ] endobj 1179 0 obj [ 3432 0 R ] endobj 1180 0 obj [ 3433 0 R ] endobj 1181 0 obj [ 3434 0 R ] endobj 1182 0 obj [ 3434 0 R ] endobj 1183 0 obj [ 3434 0 R ] endobj 1184 0 obj [ 3434 0 R ] endobj 1185 0 obj [ 3434 0 R ] endobj 1186 0 obj [ 3435 0 R ] endobj 1187 0 obj [ 3436 0 R ] endobj 1188 0 obj [ 3436 0 R ] endobj 1189 0 obj [ 3436 0 R ] endobj 1190 0 obj [ 3437 0 R ] endobj 1191 0 obj [ 3437 0 R ] endobj 1192 0 obj [ 3438 0 R ] endobj 1193 0 obj [ 3438 0 R ] endobj 1194 0 obj [ 3439 0 R ] endobj 1195 0 obj [ 3439 0 R ] endobj 1196 0 obj [ 3439 0 R ] endobj 1197 0 obj [ 3439 0 R ] endobj 1198 0 obj [ 3439 0 R ] endobj 1199 0 obj [ 3439 0 R ] endobj 1200 0 obj [ 3439 0 R ] endobj 1201 0 obj [ 3440 0 R ] endobj 1202 0 obj [ 3440 0 R ] endobj 1203 0 obj [ 3440 0 R ] endobj 1204 0 obj [ 3440 0 R ] endobj 1205 0 obj [ 3440 0 R ] endobj 1206 0 obj << /Nums [ 416 1166 0 R 417 1168 0 R 418 3424 0 R 419 3416 0 R 420 3417 0 R 421 3418 0 R 422 3419 0 R 423 3408 0 R 424 3409 0 R 425 3410 0 R 426 3404 0 R 427 3400 0 R 428 3396 0 R 429 3390 0 R 430 3391 0 R 431 3384 0 R 432 3385 0 R 433 3380 0 R 434 3376 0 R 435 1169 0 R 436 3372 0 R 437 3356 0 R 438 3357 0 R 439 3358 0 R 440 3359 0 R 441 3360 0 R 442 3361 0 R 443 3362 0 R 444 3350 0 R 445 3351 0 R 446 1170 0 R 447 1171 0 R ] /Limits [ 416 447 ] >> endobj 1207 0 obj [ 3441 0 R ] endobj 1208 0 obj [ 3441 0 R ] endobj 1209 0 obj [ 3442 0 R ] endobj 1210 0 obj [ 3442 0 R ] endobj 1211 0 obj [ 3442 0 R ] endobj 1212 0 obj [ 3442 0 R ] endobj 1213 0 obj [ 3442 0 R ] endobj 1214 0 obj [ 3442 0 R ] endobj 1215 0 obj [ 3442 0 R ] endobj 1216 0 obj [ 3443 0 R ] endobj 1217 0 obj [ 3443 0 R ] endobj 1218 0 obj [ 3444 0 R ] endobj 1219 0 obj [ 3445 0 R ] endobj 1220 0 obj [ 3446 0 R ] endobj 1221 0 obj [ 3446 0 R ] endobj 1222 0 obj [ 3447 0 R ] endobj 1223 0 obj [ 3447 0 R ] endobj 1224 0 obj [ 3448 0 R ] endobj 1225 0 obj [ 3448 0 R ] endobj 1226 0 obj [ 3578 0 R 3450 0 R 3451 0 R 3452 0 R 3453 0 R 3576 0 R 3455 0 R 3574 0 R 3573 0 R 3572 0 R 3457 0 R 3568 0 R 3567 0 R 3566 0 R 3459 0 R ] endobj 1227 0 obj [ 3460 0 R 3461 0 R 3562 0 R 3561 0 R 3560 0 R 3559 0 R 3463 0 R 3554 0 R 3465 0 R 3466 0 R 3552 0 R 3468 0 R 3550 0 R 3470 0 R 3548 0 R 3472 0 R ] endobj 1228 0 obj [ 3472 0 R 3546 0 R 3474 0 R 3475 0 R 3476 0 R 3544 0 R 3478 0 R 3542 0 R 3480 0 R 3540 0 R 3482 0 R 3483 0 R 3484 0 R 3538 0 R ] endobj 1229 0 obj [ 3537 0 R 3486 0 R 3534 0 R 3533 0 R 3488 0 R 3530 0 R 3490 0 R 3528 0 R 3527 0 R 3526 0 R 3525 0 R 3492 0 R 3493 0 R 3494 0 R 3520 0 R 3519 0 R ] endobj 1230 0 obj [ 3518 0 R 3517 0 R 3516 0 R 3496 0 R 3510 0 R 3498 0 R 3508 0 R 3500 0 R 3506 0 R 3505 0 R 3502 0 R ] endobj 1231 0 obj [ 3596 0 R 3581 0 R 3582 0 R 3583 0 R 3584 0 R 3585 0 R 3586 0 R 3587 0 R 3588 0 R 3589 0 R 3594 0 R 3591 0 R 3592 0 R ] endobj 1232 0 obj [ 3653 0 R 3599 0 R 3600 0 R 3601 0 R 3602 0 R 3603 0 R 3651 0 R 3650 0 R 3649 0 R 3648 0 R 3647 0 R 3646 0 R 3645 0 R 3644 0 R 3605 0 R ] endobj 1233 0 obj [ 3606 0 R 3607 0 R 3608 0 R 3624 0 R 3608 0 R 3625 0 R 3608 0 R 3626 0 R 3608 0 R 3627 0 R 3608 0 R 3628 0 R 3608 0 R 3629 0 R 3608 0 R 3609 0 R 3620 0 R 3609 0 R 3621 0 R 3609 0 R 3610 0 R 3618 0 R 3610 0 R 3611 0 R 3616 0 R 3611 0 R 3612 0 R 3614 0 R 3612 0 R 3613 0 R ] endobj 1234 0 obj << /Nums [ 448 1172 0 R 449 1174 0 R 450 1175 0 R 451 1176 0 R 452 1177 0 R 453 1178 0 R 454 1179 0 R 455 1180 0 R 456 1181 0 R 457 1182 0 R 458 1183 0 R 459 1184 0 R 460 1185 0 R 461 1186 0 R 462 1187 0 R 463 1188 0 R 464 1189 0 R 465 1190 0 R 466 1191 0 R 467 1192 0 R 468 1193 0 R 469 1194 0 R 470 1195 0 R 471 1196 0 R 472 1197 0 R 473 1198 0 R 474 1199 0 R 475 1200 0 R 476 1201 0 R 477 1202 0 R 478 1203 0 R 479 1204 0 R ] /Limits [ 448 479 ] >> endobj 1235 0 obj [ 3706 0 R 3656 0 R 3657 0 R 3658 0 R 3659 0 R ] endobj 1236 0 obj [ 3659 0 R 3660 0 R ] endobj 1237 0 obj [ 3660 0 R 3661 0 R ] endobj 1238 0 obj [ 3661 0 R 3662 0 R 3684 0 R 3662 0 R 3685 0 R 3662 0 R 3686 0 R 3662 0 R 3687 0 R 3662 0 R 3688 0 R 3662 0 R 3689 0 R 3662 0 R 3690 0 R 3662 0 R 3691 0 R 3662 0 R 3692 0 R 3662 0 R 3693 0 R 3662 0 R 3663 0 R 3664 0 R ] endobj 1239 0 obj [ 3665 0 R 3666 0 R 3667 0 R 3668 0 R ] endobj 1240 0 obj [ 3668 0 R 3669 0 R 3670 0 R ] endobj 1241 0 obj [ 3670 0 R 3671 0 R 3672 0 R 3673 0 R ] endobj 1242 0 obj [ 3673 0 R ] endobj 1243 0 obj [ 3674 0 R 3675 0 R 3676 0 R ] endobj 1244 0 obj [ 3676 0 R ] endobj 1245 0 obj [ 3676 0 R 3677 0 R 3678 0 R ] endobj 1246 0 obj << /Nums [ 480 1205 0 R 481 1207 0 R 482 1208 0 R 483 1209 0 R 484 1210 0 R 485 1211 0 R 486 1212 0 R 487 1213 0 R 488 1214 0 R 489 1215 0 R 490 1216 0 R 491 1217 0 R 492 1218 0 R 493 1219 0 R 494 1220 0 R 495 1221 0 R 496 1222 0 R 497 1223 0 R 498 1224 0 R 499 1225 0 R 500 1226 0 R 501 3577 0 R 502 1227 0 R 503 1228 0 R 504 1229 0 R 505 1230 0 R 506 1231 0 R 507 3595 0 R 508 1232 0 R 509 3652 0 R 510 1233 0 R 511 3624 0 R ] /Limits [ 480 511 ] >> endobj 1247 0 obj [ 3678 0 R 3679 0 R 3680 0 R 3681 0 R 3682 0 R 3683 0 R ] endobj 1248 0 obj [ 3722 0 R 3709 0 R 3710 0 R 3711 0 R 3712 0 R 3713 0 R 3714 0 R 3719 0 R 3714 0 R 3715 0 R 3717 0 R 3715 0 R 3716 0 R ] endobj 1249 0 obj [ 3737 0 R 3725 0 R 3726 0 R 3727 0 R 3728 0 R 3729 0 R 3730 0 R 3731 0 R 3732 0 R ] endobj 1250 0 obj [ 3733 0 R 3734 0 R 3735 0 R ] endobj 1251 0 obj [ 3777 0 R 3740 0 R 3741 0 R 3774 0 R 3741 0 R 3742 0 R 3743 0 R 3744 0 R 3745 0 R 3746 0 R 3747 0 R 3748 0 R 3749 0 R 3772 0 R 3749 0 R 3750 0 R 3751 0 R 3771 0 R ] endobj 1252 0 obj [ 3771 0 R 3753 0 R 3754 0 R 3755 0 R 3756 0 R 3757 0 R 3758 0 R 3759 0 R 3763 0 R 3759 0 R 3764 0 R 3759 0 R 3765 0 R 3759 0 R 3760 0 R 3761 0 R 3762 0 R ] endobj 1253 0 obj [ 3801 0 R 3780 0 R 3781 0 R 3799 0 R 3798 0 R 3797 0 R 3796 0 R 3795 0 R 3794 0 R 3783 0 R 3786 0 R 3784 0 R 3785 0 R ] endobj 1254 0 obj [ 3816 0 R 3804 0 R 3805 0 R 3806 0 R 3807 0 R 3812 0 R 3807 0 R 3813 0 R 3807 0 R ] endobj 1255 0 obj [ 3807 0 R 3814 0 R 3807 0 R 3810 0 R 3808 0 R 3809 0 R ] endobj 1256 0 obj [ 3847 0 R 3819 0 R 3820 0 R 3845 0 R 3822 0 R 3823 0 R 3842 0 R 3823 0 R 3824 0 R 3841 0 R 3826 0 R 3838 0 R 3826 0 R 3827 0 R 3832 0 R 3827 0 R 3833 0 R 3827 0 R 3834 0 R 3827 0 R 3830 0 R 3828 0 R ] endobj 1257 0 obj << /Nums [ 512 3625 0 R 513 3626 0 R 514 3627 0 R 515 3628 0 R 516 3629 0 R 517 3620 0 R 518 3621 0 R 519 3618 0 R 520 3616 0 R 521 3614 0 R 522 1235 0 R 523 3705 0 R 524 1236 0 R 525 1237 0 R 526 1238 0 R 527 3684 0 R 528 3685 0 R 529 3686 0 R 530 3687 0 R 531 3688 0 R 532 3689 0 R 533 3689 0 R 534 3690 0 R 535 3691 0 R 536 3692 0 R 537 3693 0 R 538 1239 0 R 539 1240 0 R 540 1241 0 R 541 1242 0 R 542 1243 0 R 543 1244 0 R ] /Limits [ 512 543 ] >> endobj 1258 0 obj [ 3829 0 R ] endobj 1259 0 obj [ 3876 0 R 3850 0 R 3851 0 R 3852 0 R 3853 0 R 3869 0 R 3853 0 R 3870 0 R 3853 0 R 3871 0 R 3853 0 R 3854 0 R 3865 0 R 3854 0 R 3866 0 R 3854 0 R 3855 0 R 3863 0 R 3855 0 R 3856 0 R ] endobj 1260 0 obj [ 3856 0 R 3857 0 R 3858 0 R 3861 0 R 3859 0 R 3860 0 R ] endobj 1261 0 obj [ 3900 0 R 3879 0 R 3880 0 R 3897 0 R 3880 0 R 3881 0 R 3882 0 R 3883 0 R 3884 0 R 3885 0 R 3886 0 R 3887 0 R 3888 0 R 3889 0 R ] endobj 1262 0 obj [ 3889 0 R 3890 0 R 3891 0 R 3892 0 R 3895 0 R 3893 0 R 3894 0 R ] endobj 1263 0 obj [ 3914 0 R 3903 0 R 3904 0 R 3905 0 R 3907 0 R 3905 0 R 3908 0 R 3905 0 R 3909 0 R 3905 0 R 3906 0 R ] endobj 1264 0 obj [ 3947 0 R 3917 0 R 3918 0 R 3919 0 R 3920 0 R 3921 0 R 3922 0 R 3942 0 R 3922 0 R ] endobj 1265 0 obj [ 3922 0 R 3943 0 R 3922 0 R 3944 0 R 3922 0 R 3945 0 R 3922 0 R 3923 0 R 3941 0 R 3925 0 R 3926 0 R 3927 0 R 3928 0 R 3929 0 R 3930 0 R ] endobj 1266 0 obj [ 3930 0 R 3931 0 R 3936 0 R 3931 0 R 3937 0 R 3931 0 R 3934 0 R 3932 0 R 3933 0 R ] endobj 1267 0 obj [ 3985 0 R 3950 0 R 3951 0 R 3983 0 R 3953 0 R 3954 0 R 3981 0 R 3956 0 R 3957 0 R 3978 0 R 3958 0 R 3977 0 R 3960 0 R ] endobj 1268 0 obj [ 3961 0 R 3962 0 R 3975 0 R 3964 0 R 3965 0 R 3972 0 R 3965 0 R 3966 0 R 3967 0 R 3970 0 R 3968 0 R 3969 0 R ] endobj 1269 0 obj << /Nums [ 544 1245 0 R 545 1247 0 R 546 1248 0 R 547 3721 0 R 548 3719 0 R 549 3717 0 R 550 1249 0 R 551 3736 0 R 552 1250 0 R 553 1251 0 R 554 3776 0 R 555 3774 0 R 556 3772 0 R 557 1252 0 R 558 3763 0 R 559 3764 0 R 560 3765 0 R 561 3765 0 R 562 1253 0 R 563 3800 0 R 564 3786 0 R 565 1254 0 R 566 3815 0 R 567 1255 0 R 568 3810 0 R 569 1256 0 R 570 3846 0 R 571 3842 0 R 572 3838 0 R 573 3832 0 R 574 3833 0 R 575 3834 0 R ] /Limits [ 544 575 ] >> endobj 1270 0 obj [ 4001 0 R 3988 0 R 3989 0 R 3990 0 R 3991 0 R 3992 0 R 3993 0 R 3994 0 R ] endobj 1271 0 obj [ 3994 0 R 3995 0 R 3998 0 R 3996 0 R 3997 0 R ] endobj 1272 0 obj [ 4015 0 R 4004 0 R 4005 0 R 4006 0 R 4007 0 R 4008 0 R 4009 0 R 4012 0 R 4010 0 R 4011 0 R ] endobj 1273 0 obj [ 4029 0 R 4018 0 R 4019 0 R 4027 0 R 4021 0 R 4024 0 R 4022 0 R 4023 0 R ] endobj 1274 0 obj [ 4064 0 R 4032 0 R 4033 0 R 4061 0 R 4033 0 R 4034 0 R 4059 0 R 4034 0 R 4035 0 R 4036 0 R 4037 0 R 4038 0 R 4039 0 R 4040 0 R 4041 0 R 4057 0 R 4041 0 R 4042 0 R 4056 0 R 4054 0 R ] endobj 1275 0 obj [ 4045 0 R 4046 0 R 4047 0 R 4048 0 R 4051 0 R 4049 0 R 4050 0 R ] endobj 1276 0 obj [ 4079 0 R 4067 0 R 4068 0 R 4069 0 R 4077 0 R 4071 0 R 4074 0 R 4072 0 R 4073 0 R ] endobj 1277 0 obj [ 4100 0 R 4082 0 R 4083 0 R 4084 0 R 4085 0 R 4098 0 R 4097 0 R 4096 0 R 4095 0 R 4094 0 R 4087 0 R ] endobj 1278 0 obj [ 4088 0 R ] endobj 1279 0 obj [ 4118 0 R 4103 0 R 4104 0 R 4105 0 R 4106 0 R 4107 0 R 4108 0 R 4109 0 R 4110 0 R 4111 0 R 4112 0 R ] endobj 1280 0 obj [ 4113 0 R 4114 0 R 4115 0 R 4116 0 R ] endobj 1281 0 obj [ 4301 0 R 4121 0 R 4298 0 R 4122 0 R 4123 0 R 4296 0 R 4123 0 R 4295 0 R 4125 0 R 4293 0 R 4127 0 R 4291 0 R 4129 0 R 4289 0 R ] endobj 1282 0 obj << /Nums [ 576 3830 0 R 577 1258 0 R 578 1259 0 R 579 3875 0 R 580 3869 0 R 581 3870 0 R 582 3871 0 R 583 3865 0 R 584 3866 0 R 585 3863 0 R 586 1260 0 R 587 3861 0 R 588 1261 0 R 589 3899 0 R 590 3897 0 R 591 1262 0 R 592 3895 0 R 593 1263 0 R 594 3913 0 R 595 3907 0 R 596 3908 0 R 597 3909 0 R 598 1264 0 R 599 3946 0 R 600 1265 0 R 601 1266 0 R 602 3936 0 R 603 3937 0 R 604 3934 0 R 605 1267 0 R 606 3984 0 R 607 3978 0 R ] /Limits [ 576 607 ] >> endobj 1283 0 obj [ 4131 0 R 4132 0 R 4287 0 R 4134 0 R 4285 0 R 4136 0 R 4137 0 R 4283 0 R 4282 0 R 4281 0 R 4277 0 R 4276 0 R 4275 0 R 4271 0 R 4270 0 R 4269 0 R 4265 0 R 4264 0 R 4263 0 R 4259 0 R 4258 0 R 4257 0 R 4253 0 R 4252 0 R 4251 0 R 4247 0 R 4246 0 R 4245 0 R 4241 0 R 4240 0 R 4239 0 R 4235 0 R 4234 0 R 4233 0 R 4229 0 R 4228 0 R 4227 0 R 4223 0 R 4222 0 R 4221 0 R 4217 0 R 4216 0 R 4215 0 R 4211 0 R 4210 0 R 4209 0 R 4205 0 R 4204 0 R 4203 0 R 4139 0 R ] endobj 1284 0 obj [ 4139 0 R 4140 0 R 4182 0 R 4141 0 R 4183 0 R 4141 0 R 4181 0 R 4143 0 R 4179 0 R 4145 0 R 4177 0 R 4147 0 R 4148 0 R ] endobj 1285 0 obj [ 4148 0 R 4149 0 R 4175 0 R 4151 0 R 4152 0 R 4173 0 R 4154 0 R 4155 0 R 4171 0 R ] endobj 1286 0 obj [ 4171 0 R 4157 0 R 4169 0 R 4159 0 R 4167 0 R 4161 0 R 4165 0 R 4163 0 R ] endobj 1287 0 obj [ 4396 0 R 4304 0 R 4305 0 R 4393 0 R 4305 0 R 4306 0 R 4391 0 R 4392 0 R 4389 0 R 4390 0 R 4387 0 R 4388 0 R 4385 0 R 4386 0 R 4383 0 R 4384 0 R 4308 0 R 4309 0 R 4375 0 R 4309 0 R 4369 0 R 4310 0 R 4370 0 R 4310 0 R 4371 0 R 4310 0 R 4311 0 R 4365 0 R 4311 0 R 4366 0 R 4311 0 R 4312 0 R 4358 0 R 4312 0 R 4359 0 R 4312 0 R 4360 0 R 4312 0 R 4313 0 R 4354 0 R 4313 0 R 4355 0 R 4313 0 R 4350 0 R 4314 0 R 4351 0 R 4314 0 R ] endobj 1288 0 obj [ 4315 0 R 4322 0 R 4315 0 R 4323 0 R 4315 0 R 4324 0 R 4315 0 R 4325 0 R 4315 0 R 4326 0 R 4315 0 R 4327 0 R 4315 0 R 4328 0 R 4315 0 R 4329 0 R 4315 0 R 4330 0 R 4315 0 R 4331 0 R 4315 0 R 4332 0 R 4315 0 R 4333 0 R 4315 0 R 4316 0 R 4320 0 R 4316 0 R 4317 0 R 4318 0 R 4319 0 R ] endobj 1289 0 obj << /Nums [ 608 1268 0 R 609 3972 0 R 610 3970 0 R 611 1270 0 R 612 4000 0 R 613 1271 0 R 614 3998 0 R 615 1272 0 R 616 4014 0 R 617 4012 0 R 618 1273 0 R 619 4028 0 R 620 4024 0 R 621 1274 0 R 622 4063 0 R 623 4061 0 R 624 4059 0 R 625 4057 0 R 626 1275 0 R 627 4051 0 R 628 1276 0 R 629 4078 0 R 630 4074 0 R 631 1277 0 R 632 4099 0 R 633 1278 0 R 634 1279 0 R 635 4117 0 R 636 1280 0 R 637 1281 0 R 638 4300 0 R 639 4298 0 R ] /Limits [ 608 639 ] >> endobj 1290 0 obj [ 4425 0 R 4399 0 R 4400 0 R 4401 0 R 4402 0 R 4420 0 R 4422 0 R 4421 0 R 4416 0 R 4418 0 R 4417 0 R 4414 0 R 4415 0 R 4404 0 R 4405 0 R 4406 0 R 4407 0 R ] endobj 1291 0 obj [ 4408 0 R 4409 0 R ] endobj 1292 0 obj [ 4442 0 R 4428 0 R 4429 0 R 4430 0 R 4431 0 R 4432 0 R 4433 0 R 4435 0 R 4433 0 R 4436 0 R 4433 0 R 4437 0 R 4433 0 R 4434 0 R ] endobj 1293 0 obj [ 4464 0 R 4445 0 R 4461 0 R 4446 0 R 4447 0 R 4448 0 R 4449 0 R 4450 0 R 4455 0 R 4450 0 R 4456 0 R 4450 0 R 4457 0 R 4450 0 R 4451 0 R 4453 0 R 4451 0 R 4452 0 R ] endobj 1294 0 obj [ 4649 0 R 4467 0 R 4644 0 R 4646 0 R 4645 0 R 4640 0 R 4642 0 R 4641 0 R 4622 0 R 4624 0 R 4623 0 R 4625 0 R 4623 0 R 4626 0 R 4623 0 R 4627 0 R 4623 0 R 4628 0 R 4623 0 R 4629 0 R 4623 0 R 4630 0 R 4623 0 R 4631 0 R 4623 0 R 4618 0 R 4619 0 R 4620 0 R 4619 0 R 4616 0 R 4617 0 R 4612 0 R 4613 0 R 4614 0 R 4613 0 R 4606 0 R 4607 0 R 4608 0 R 4607 0 R 4609 0 R 4607 0 R 4602 0 R 4604 0 R 4603 0 R 4600 0 R 4601 0 R 4579 0 R 4581 0 R 4580 0 R 4582 0 R 4580 0 R 4583 0 R 4580 0 R 4584 0 R 4580 0 R 4585 0 R 4580 0 R 4586 0 R 4580 0 R 4587 0 R 4580 0 R 4588 0 R 4580 0 R 4589 0 R 4580 0 R 4575 0 R 4576 0 R 4577 0 R 4576 0 R ] endobj 1295 0 obj << /Nums [ 640 4296 0 R 641 1283 0 R 642 1284 0 R 643 4182 0 R 644 4183 0 R 645 1285 0 R 646 1286 0 R 647 1287 0 R 648 4395 0 R 649 4393 0 R 650 4375 0 R 651 4369 0 R 652 4370 0 R 653 4371 0 R 654 4365 0 R 655 4366 0 R 656 4358 0 R 657 4359 0 R 658 4359 0 R 659 4360 0 R 660 4354 0 R 661 4355 0 R 662 4350 0 R 663 4351 0 R 664 1288 0 R 665 4322 0 R 666 4323 0 R 667 4323 0 R 668 4324 0 R 669 4325 0 R 670 4326 0 R 671 4326 0 R ] /Limits [ 640 671 ] >> endobj 1296 0 obj [ 4573 0 R 4574 0 R 4571 0 R 4572 0 R 4567 0 R 4569 0 R 4568 0 R 4565 0 R 4566 0 R 4563 0 R 4564 0 R 4561 0 R 4562 0 R 4557 0 R 4558 0 R 4559 0 R 4558 0 R 4541 0 R 4543 0 R 4542 0 R 4544 0 R 4542 0 R 4545 0 R 4542 0 R 4546 0 R 4542 0 R 4547 0 R 4542 0 R 4548 0 R 4542 0 R 4549 0 R 4542 0 R 4537 0 R 4539 0 R 4538 0 R 4533 0 R 4535 0 R 4534 0 R 4531 0 R 4532 0 R 4527 0 R 4529 0 R 4528 0 R 4523 0 R 4525 0 R 4524 0 R 4519 0 R 4521 0 R 4520 0 R 4515 0 R 4517 0 R 4516 0 R 4513 0 R 4514 0 R 4503 0 R 4504 0 R ] endobj 1297 0 obj << /Nums [ 672 4327 0 R 673 4328 0 R 674 4328 0 R 675 4329 0 R 676 4330 0 R 677 4331 0 R 678 4331 0 R 679 4332 0 R 680 4333 0 R 681 4320 0 R 682 1290 0 R 683 4424 0 R 684 4422 0 R 685 4418 0 R 686 1291 0 R 687 1292 0 R 688 4441 0 R 689 4435 0 R 690 4436 0 R 691 4437 0 R 692 1293 0 R 693 4463 0 R 694 4461 0 R 695 4455 0 R 696 4456 0 R 697 4457 0 R 698 4453 0 R 699 1294 0 R 700 4648 0 R 701 4646 0 R 702 4642 0 R 703 4624 0 R ] /Limits [ 672 703 ] >> endobj 1298 0 obj [ 4505 0 R 4504 0 R 4506 0 R 4504 0 R 4507 0 R 4504 0 R 4508 0 R 4504 0 R 4499 0 R 4501 0 R 4500 0 R ] endobj 1299 0 obj [ 4692 0 R 4652 0 R 4653 0 R 4654 0 R 4655 0 R 4656 0 R 4657 0 R 4658 0 R 4685 0 R 4658 0 R 4686 0 R 4658 0 R 4687 0 R 4658 0 R 4659 0 R 4660 0 R ] endobj 1300 0 obj [ 4660 0 R 4661 0 R 4662 0 R 4683 0 R 4662 0 R 4663 0 R 4681 0 R 4663 0 R 4664 0 R 4665 0 R 4666 0 R 4667 0 R 4668 0 R 4669 0 R 4677 0 R 4669 0 R 4678 0 R 4669 0 R 4670 0 R ] endobj 1301 0 obj [ 4670 0 R 4671 0 R 4672 0 R 4673 0 R 4674 0 R 4675 0 R 4676 0 R ] endobj 1302 0 obj [ 4710 0 R 4695 0 R 4696 0 R 4706 0 R 4696 0 R 4704 0 R 4697 0 R 4700 0 R 4698 0 R 4701 0 R 4698 0 R 4699 0 R ] endobj 1303 0 obj [ 4734 0 R 4713 0 R 4714 0 R 4715 0 R 4716 0 R 4717 0 R 4718 0 R 4723 0 R 4718 0 R 4724 0 R 4718 0 R 4725 0 R 4718 0 R 4726 0 R 4718 0 R 4727 0 R 4718 0 R 4719 0 R 4721 0 R 4719 0 R 4720 0 R ] endobj 1304 0 obj << /Nums [ 704 4625 0 R 705 4626 0 R 706 4627 0 R 707 4628 0 R 708 4629 0 R 709 4630 0 R 710 4631 0 R 711 4620 0 R 712 4614 0 R 713 4608 0 R 714 4609 0 R 715 4604 0 R 716 4581 0 R 717 4582 0 R 718 4583 0 R 719 4584 0 R 720 4585 0 R 721 4586 0 R 722 4587 0 R 723 4588 0 R 724 4588 0 R 725 4589 0 R 726 4577 0 R 727 1296 0 R 728 4569 0 R 729 4559 0 R 730 4543 0 R 731 4544 0 R 732 4545 0 R 733 4546 0 R 734 4547 0 R 735 4548 0 R ] /Limits [ 704 735 ] >> endobj 1305 0 obj [ 4750 0 R 4737 0 R 4738 0 R 4745 0 R 4738 0 R 4746 0 R 4738 0 R 4739 0 R 4741 0 R 4739 0 R 4742 0 R 4739 0 R 4740 0 R ] endobj 1306 0 obj [ 4781 0 R 4753 0 R 4754 0 R 4779 0 R 4778 0 R 4756 0 R 4757 0 R 4758 0 R 4759 0 R 4760 0 R 4770 0 R 4760 0 R 4771 0 R 4760 0 R 4772 0 R 4760 0 R 4761 0 R 4766 0 R 4761 0 R 4767 0 R 4761 0 R 4762 0 R 4764 0 R 4762 0 R 4763 0 R ] endobj 1307 0 obj [ 4803 0 R 4784 0 R 4785 0 R 4786 0 R 4800 0 R 4786 0 R 4787 0 R 4799 0 R 4789 0 R 4796 0 R 4789 0 R 4790 0 R 4791 0 R 4794 0 R 4791 0 R ] endobj 1308 0 obj [ 4791 0 R 4792 0 R 4793 0 R ] endobj 1309 0 obj [ 4820 0 R 4806 0 R 4807 0 R 4808 0 R 4809 0 R 4810 0 R 4811 0 R 4812 0 R 4813 0 R 4815 0 R 4813 0 R 4816 0 R 4813 0 R 4814 0 R ] endobj 1310 0 obj [ 4885 0 R 4823 0 R 4824 0 R 4879 0 R 4824 0 R 4880 0 R 4824 0 R 4825 0 R 4826 0 R 4827 0 R 4828 0 R 4829 0 R 4830 0 R 4831 0 R 4877 0 R 4831 0 R ] endobj 1311 0 obj << /Nums [ 736 4549 0 R 737 4539 0 R 738 4535 0 R 739 4529 0 R 740 4525 0 R 741 4521 0 R 742 4517 0 R 743 1298 0 R 744 4505 0 R 745 4506 0 R 746 4507 0 R 747 4508 0 R 748 4501 0 R 749 1299 0 R 750 4691 0 R 751 4685 0 R 752 4686 0 R 753 4687 0 R 754 1300 0 R 755 4683 0 R 756 4681 0 R 757 4677 0 R 758 4678 0 R 759 1301 0 R 760 1302 0 R 761 4709 0 R 762 4706 0 R 763 4706 0 R 764 4704 0 R 765 4700 0 R 766 4701 0 R 767 1303 0 R ] /Limits [ 736 767 ] >> endobj 1312 0 obj << /Nums [ 768 4733 0 R 769 4723 0 R 770 4724 0 R 771 4725 0 R 772 4726 0 R 773 4727 0 R 774 4721 0 R 775 1305 0 R 776 4749 0 R 777 4745 0 R 778 4746 0 R 779 4741 0 R 780 4742 0 R 781 1306 0 R 782 4780 0 R 783 4770 0 R 784 4771 0 R 785 4772 0 R 786 4766 0 R 787 4767 0 R 788 4764 0 R 789 1307 0 R 790 4802 0 R 791 4800 0 R 792 4796 0 R 793 4794 0 R 794 1308 0 R 795 1309 0 R 796 4819 0 R 797 4815 0 R 798 4816 0 R 799 1310 0 R 800 4884 0 R 801 4879 0 R 802 4880 0 R 803 4880 0 R 804 4877 0 R 805 1313 0 R 806 4842 0 R 807 4838 0 R 808 4839 0 R 809 1314 0 R 810 4938 0 R 811 4936 0 R 812 4932 0 R 813 4933 0 R 814 4930 0 R 815 4928 0 R 816 4926 0 R 817 1315 0 R 818 4920 0 R 819 4921 0 R 820 4922 0 R 821 4916 0 R 822 4917 0 R 823 4910 0 R 824 4911 0 R 825 4912 0 R ] /Limits [ 768 825 ] >> endobj 1313 0 obj [ 4832 0 R 4876 0 R 4875 0 R 4874 0 R 4873 0 R 4872 0 R 4866 0 R 4865 0 R 4864 0 R 4863 0 R 4862 0 R 4856 0 R 4855 0 R 4854 0 R 4853 0 R 4852 0 R 4834 0 R 4835 0 R 4842 0 R 4835 0 R 4836 0 R 4838 0 R 4836 0 R 4839 0 R 4836 0 R 4837 0 R ] endobj 1314 0 obj [ 4939 0 R 4888 0 R 4889 0 R 4936 0 R 4889 0 R 4890 0 R 4891 0 R 4892 0 R 4893 0 R 4932 0 R 4893 0 R 4933 0 R 4893 0 R 4894 0 R 4895 0 R 4930 0 R 4895 0 R 4896 0 R 4897 0 R 4898 0 R 4899 0 R 4928 0 R 4899 0 R 4900 0 R 4926 0 R 4900 0 R 4901 0 R ] endobj 1315 0 obj [ 4901 0 R 4902 0 R 4903 0 R 4920 0 R 4903 0 R 4921 0 R 4903 0 R 4922 0 R 4903 0 R 4904 0 R 4905 0 R 4916 0 R 4905 0 R 4917 0 R 4905 0 R 4906 0 R 4910 0 R 4906 0 R 4911 0 R 4906 0 R 4912 0 R 4906 0 R 4907 0 R 4908 0 R 4909 0 R ] endobj 1316 0 obj << /Kids [ 1356 0 R 1357 0 R ] >> endobj 1317 0 obj [ 19 0 R /XYZ 0 50.92191 null ] endobj 1318 0 obj [ 38 0 R /XYZ 0 536.72191 null ] endobj 1319 0 obj [ 38 0 R /XYZ 0 221.72191 null ] endobj 1320 0 obj [ 47 0 R /XYZ 0 654.42857 null ] endobj 1321 0 obj [ 82 0 R /XYZ 0 479.2 null ] endobj 1322 0 obj [ 104 0 R /XYZ 0 741.29333 null ] endobj 1323 0 obj [ 104 0 R /XYZ 0 181.69333 null ] endobj 1324 0 obj [ 108 0 R /XYZ 0 631.23557 null ] endobj 1325 0 obj [ 167 0 R /XYZ 0 182.5708 null ] endobj 1326 0 obj [ 181 0 R /XYZ 0 368.77112 null ] endobj 1327 0 obj [ 186 0 R /XYZ 0 432.37112 null ] endobj 1328 0 obj [ 190 0 R /XYZ 0 755.69333 null ] endobj 1329 0 obj [ 194 0 R /XYZ 0 683.2854 null ] endobj 1330 0 obj [ 476 0 R /XYZ 0 611.37904 null ] endobj 1331 0 obj [ 476 0 R /XYZ 0 499.97905 null ] endobj 1332 0 obj [ 476 0 R /XYZ 0 400.37904 null ] endobj 1333 0 obj [ 476 0 R /XYZ 0 266.72838 null ] endobj 1334 0 obj [ 476 0 R /XYZ 0 86.52838 null ] endobj 1335 0 obj [ 481 0 R /XYZ 0 739.29333 null ] endobj 1336 0 obj [ 700 0 R /XYZ 0 110.17905 null ] endobj 1337 0 obj [ 708 0 R /XYZ 0 430.2 null ] endobj 1338 0 obj [ 708 0 R /XYZ 0 278.29333 null ] endobj 1339 0 obj [ 711 0 R /XYZ 0 675 null ] endobj 1340 0 obj [ 711 0 R /XYZ 0 623.89333 null ] endobj 1341 0 obj [ 711 0 R /XYZ 0 609.49333 null ] endobj 1342 0 obj [ 724 0 R /XYZ 0 338.09334 null ] endobj 1343 0 obj [ 727 0 R /XYZ 0 660.60001 null ] endobj 1344 0 obj [ 727 0 R /XYZ 0 197.60001 null ] endobj 1345 0 obj [ 733 0 R /XYZ 0 545.39999 null ] endobj 1346 0 obj [ 733 0 R /XYZ 0 422.29333 null ] endobj 1347 0 obj [ 736 0 R /XYZ 0 224.23619 null ] endobj 1348 0 obj [ 757 0 R /XYZ 0 353.69333 null ] endobj 1349 0 obj [ 847 0 R /XYZ 0 532.1219 null ] endobj 1350 0 obj [ 847 0 R /XYZ 0 316.72191 null ] endobj 1351 0 obj [ 847 0 R /XYZ 0 254.52191 null ] endobj 1352 0 obj [ 847 0 R /XYZ 0 149.1219 null ] endobj 1353 0 obj [ 847 0 R /XYZ 0 72.52191 null ] endobj 1354 0 obj [ 852 0 R /XYZ 0 634.92191 null ] endobj 1355 0 obj [ 852 0 R /XYZ 0 558.3219 null ] endobj 1356 0 obj << /Names [ (9w7`5kJ$letterexamples)1322 0 R (9w7`5kJ$shannon) 1324 0 R (9w7`5kJ$wordexamples)1323 0 R (/Ymf'col02) 1330 0 R (/Ymf'col05)1331 0 R (/Ymf'col08) 1332 0 R (/Ymf'col11)1333 0 R (/Ymf'col14) 1334 0 R (/Ymf'col15)1335 0 R (Ys=I_jR2p1)1318 0 R (Ys=I_jR2p6)1319 0 R (#n\r] vaxtimes)1361 0 R (1YӾu\\\\gWJBfirstedition)1360 0 R (1YӾu\\\\gWJBpseudocode) 1359 0 R ([8?YMZ#p8)1325 0 R ] /Limits [ (9w7`5kJ$letterexamples)([8?YMZ#p8)] >> endobj 1357 0 obj << /Names [ (a\)g:sG2background)1337 0 R (a\)g:sG2bote)1336 0 R (a\)g:sG2debugging)1338 0 R (a\)g:sG2design)1339 0 R (a\)g:sG2elegance)1340 0 R (a\)g:sG2engtechniques) 1341 0 R (a\)g:sG2probdef)1342 0 R (a\)g:sG2prototypes) 1343 0 R (a\)g:sG2rulesofthumb)1344 0 R (a\)g:sG2specifications) 1345 0 R (a\)g:sG2testing)1346 0 R (a\)g:sG2tradeoffs) 1347 0 R (!ݾCp3?p1)1320 0 R (O\\0n\rpuFjvlongdupexample) 1321 0 R (zWnk'Խp10)1354 0 R (zWnk'Խp11)1355 0 R (zWnk'Խp12)1358 0 R (zWnk'Խp2)1349 0 R (zWnk'Խp5) 1350 0 R (zWnk'Խp6)1351 0 R (zWnk'Խp7)1352 0 R (zWnk'Խp8)1353 0 R (нIh\(-i!գCol8Reading)1328 0 R (нIh\(-i!գbote)1327 0 R (нIh\(-i!գcto)1326 0 R (нIh\(-i!գstrings) 1329 0 R (WDʵfW,]PO^designadvice)1348 0 R (Xsvr\r#jwordfreqexample) 1317 0 R ] /Limits [ (a\)g:sG2background)(Xsvr\r#jwordfreqexample)] >> endobj 1358 0 obj [ 852 0 R /XYZ 0 481.72191 null ] endobj 1359 0 obj [ 1009 0 R /XYZ 0 441.17905 null ] endobj 1360 0 obj [ 1009 0 R /XYZ 0 188.26476 null ] endobj 1361 0 obj [ 1054 0 R /XYZ 0 616.59238 null ] endobj 1362 0 obj << /Type /Metadata /Subtype /XML /Length 1286 >> stream + + + + + + 2002-05-07T15:06:32+03:00 + 2002-05-07T14:59:01Z + Acrobat Web Capture 5.0 + file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html + + + + 2002-05-07T15:06:32+03:00 + 2002-05-07T14:59:01Z + 2002-05-07T15:06:32+03:00 + + + file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html + + + + + + file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html + + + + endstream endobj 1363 0 obj << /Type /Pages /Kids [ 1872 0 R 1871 0 R ] /Count 283 >> endobj 1364 0 obj << /ModDate (D:20020507150632+03'00') /CreationDate (D:20020507145901Z) /Producer (Acrobat Web Capture 5.0) /Title (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html) >> endobj 1365 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/pp2e.jpg) endobj 1366 0 obj << /S /SIS /ID 5065 0 R /TS (D:20020507125902) /O [ 5062 0 R ] /R [ 1948 0 R ] /SI 1367 0 R >> endobj 1367 0 obj << /AU 1365 0 R /TS (D:20020507125902) >> endobj 1368 0 obj << /Kids [ 1712 0 R 1713 0 R ] >> endobj 1369 0 obj << /Kids [ 1720 0 R 1721 0 R ] >> endobj 1370 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/newicon.gif) endobj 1371 0 obj << /S /SIS /ID 5069 0 R /TS (D:20020507125902) /O [ 5070 0 R ] /R [ 1385 0 R ] /SI 1372 0 R >> endobj 1372 0 obj << /AU 1370 0 R /TS (D:20020507125902) >> endobj 1373 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html) endobj 1374 0 obj << /V 1.25 /C 1380 0 R >> endobj 1375 0 obj << /URL (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html) /L 5 /F 2 /S 1376 0 R >> endobj 1376 0 obj << /G 1377 0 R /C << /ADBE:HTML2PDF:HTML 1379 0 R /ADBE:HTML2PDF:TEXT 1378 0 R >> >> endobj 1377 0 obj << /CB 0 /AH 1 /PO 0 /S 0 /AL 0 /AT 45 /AS 0 /SU 1 /PS [ 792 612 ] /M [ 46.08 10.08 25.992 36 ] >> endobj 1378 0 obj << /TC [ 0 0 0 ] /TR 0 /TW 0 /ML 0 /EF 0 /TJE 0 /TJF 1 /TJX 0 /PTF << /F (Courier)/S 10 >> /BC [ 1 1 1 ] >> endobj 1379 0 obj << /AC [ 1 0 0 ] /I 0 /UL 0 /PR 0 /LC [ 0 0 1 ] /CF 1 /PBC 1 /PBI 1 /JS 0 /TBC 1 /EF 0 /PHF << /F (Helvetica)/S 14 >> /PTF << /F (Times-Roman)/S 12 >> /JE 0 /JBF 1 /JHF 0 /JPF 1 /HJBX 1 /HJHX 1 /WT 720 /TC [ 0 0 0 ] /BC [ 1 1 1 ] /FF << /F (Courier)/S 12 >> >> endobj 1380 0 obj [ 1375 0 R ] endobj 1381 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/index.html) endobj 1382 0 obj << /S /SPS /ID 5071 0 R /TID 1384 0 R /T 1373 0 R /CT (text/html) /TS (D:20020507125902) /O [ 1954 0 R 1 0 R ] /SI 1383 0 R >> endobj 1383 0 obj << /AU 1381 0 R /TS (D:20020507125902) >> endobj 1384 0 obj (tf'm24<) endobj 1385 0 obj 1 endobj 1386 0 obj (What's New on the Programming Pearls Web Site) endobj 1387 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/whatsnew.html) endobj 1388 0 obj << /S /SPS /ID 9 0 R /TID 1390 0 R /T 1386 0 R /CT (text/html) /TS (D:20020507125905) /O [ 5 0 R ] /SI 1389 0 R >> endobj 1389 0 obj << /AU 1387 0 R /TS (D:20020507125905) >> endobj 1390 0 obj (xs'Oc) endobj 1391 0 obj (Strings of Pearls) endobj 1392 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/strings.html) endobj 1393 0 obj << /S /SPS /ID 14 0 R /TID 1395 0 R /T 1391 0 R /CT (text/html) /TS (D:20020507125905) /O [ 10 0 R 15 0 R ] /SI 1394 0 R >> endobj 1394 0 obj << /AU 1392 0 R /TS (D:20020507125905) >> endobj 1395 0 obj (.!i]K㆒|\\S) endobj 1396 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/hashtab.jpg) endobj 1397 0 obj << /S /SIS /ID 29 0 R /TS (D:20020507125906) /O [ 30 0 R ] /R [ 1404 0 R ] /SI 1398 0 R >> endobj 1398 0 obj << /AU 1396 0 R /TS (D:20020507125906) >> endobj 1399 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec151.html) endobj 1400 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec151.html) endobj 1401 0 obj << /S /SPS /ID 23 0 R /TID 1403 0 R /T 1399 0 R /CT (text/html) /TS (D:20020507125907) /O [ 19 0 R 24 0 R 31 0 R 34 0 R ] /SI 1402 0 R >> endobj 1402 0 obj << /AU 1400 0 R /TS (D:20020507125907) >> endobj 1403 0 obj (+}=c[#) endobj 1404 0 obj 1 endobj 1405 0 obj << /Type /Pages /Kids [ 15 0 R 19 0 R 24 0 R 31 0 R 34 0 R ] /Count 5 /Parent 1505 0 R >> endobj 1406 0 obj << /Type /Pages /Kids [ 1954 0 R 1 0 R 5 0 R 10 0 R ] /Count 4 /Parent 1505 0 R >> endobj 1407 0 obj (Problems) endobj 1408 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec155.html) endobj 1409 0 obj << /S /SPS /ID 42 0 R /TID 1411 0 R /T 1407 0 R /CT (text/html) /TS (D:20020507125908) /O [ 38 0 R 43 0 R ] /SI 1410 0 R >> endobj 1410 0 obj << /AU 1408 0 R /TS (D:20020507125908) >> endobj 1411 0 obj (Or2C]X') endobj 1412 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/ahuinit.jpg) endobj 1413 0 obj << /S /SIS /ID 60 0 R /TS (D:20020507125910) /O [ 61 0 R ] /R [ 1421 0 R ] /SI 1414 0 R >> endobj 1414 0 obj << /AU 1412 0 R /TS (D:20020507125910) >> endobj 1415 0 obj << /Type /Pages /Kids [ 38 0 R 43 0 R 47 0 R 52 0 R 56 0 R ] /Count 5 /Parent 1505 0 R >> endobj 1416 0 obj (Solutions to Column 1) endobj 1417 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sol01.html) endobj 1418 0 obj << /S /SPS /ID 51 0 R /TID 1420 0 R /T 1416 0 R /CT (text/html) /TS (D:20020507125910) /O [ 47 0 R 52 0 R 56 0 R 62 0 R ] /SI 1419 0 R >> endobj 1419 0 obj << /AU 1417 0 R /TS (D:20020507125910) >> endobj 1420 0 obj (vn[=m+Mr) endobj 1421 0 obj 1 endobj 1422 0 obj (Word Frequencies) endobj 1423 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/wordfreqs.html) endobj 1424 0 obj << /S /SPS /ID 70 0 R /TID 1426 0 R /T 1422 0 R /CT (text/html) /TS (D:20020507125911) /O [ 66 0 R 71 0 R ] /SI 1425 0 R >> endobj 1425 0 obj << /AU 1423 0 R /TS (D:20020507125911) >> endobj 1426 0 obj (a&Ҡ) endobj 1427 0 obj << /Type /Pages /Kids [ 62 0 R 66 0 R 71 0 R 74 0 R 79 0 R ] /Count 5 /Parent 1505 0 R >> endobj 1428 0 obj (Phrases) endobj 1429 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec152.html) endobj 1430 0 obj << /S /SPS /ID 78 0 R /TID 1432 0 R /T 1428 0 R /CT (text/html) /TS (D:20020507125913) /O [ 74 0 R 79 0 R 82 0 R ] /SI 1431 0 R >> endobj 1431 0 obj << /AU 1429 0 R /TS (D:20020507125913) >> endobj 1432 0 obj (Z\\A2EJL$) endobj 1433 0 obj (Long Repeated Strings) endobj 1434 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/longdups.html) endobj 1435 0 obj << /S /SPS /ID 90 0 R /TID 1437 0 R /T 1433 0 R /CT (text/html) /TS (D:20020507125914) /O [ 86 0 R 91 0 R ] /SI 1436 0 R >> endobj 1436 0 obj << /AU 1434 0 R /TS (D:20020507125914) >> endobj 1437 0 obj (ތQ"6DȂ) endobj 1438 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/longdup.c) endobj 1439 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/longdup.c) endobj 1440 0 obj << /S /SPS /ID 98 0 R /TID 1442 0 R /T 1438 0 R /CT () /TS (D:20020507125914) /O [ 95 0 R ] /SI 1441 0 R >> endobj 1441 0 obj << /AU 1439 0 R /TS (D:20020507125914) >> endobj 1442 0 obj (\)+`;¹XѲ) endobj 1443 0 obj << /Type /Pages /Kids [ 82 0 R 86 0 R 91 0 R 95 0 R 99 0 R ] /Count 5 /Parent 1505 0 R >> endobj 1444 0 obj (Generating Text) endobj 1445 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec153.html) endobj 1446 0 obj << /S /SPS /ID 103 0 R /TID 1448 0 R /T 1444 0 R /CT (text/html) /TS (D:20020507125916) /O [ 99 0 R 104 0 R 108 0 R 112 0 R 115 0 R ] /SI 1447 0 R >> endobj 1447 0 obj << /AU 1445 0 R /TS (D:20020507125916) >> endobj 1448 0 obj (o @ A|) endobj 1449 0 obj << /Type /Pages /Kids [ 104 0 R 108 0 R 112 0 R 115 0 R 119 0 R ] /Count 5 /Parent 1504 0 R >> endobj 1450 0 obj (Letter-Level Markov Text) endobj 1451 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/markovlet.html) endobj 1452 0 obj << /S /SPS /ID 123 0 R /TID 1454 0 R /T 1450 0 R /CT (text/html) /TS (D:20020507125918) /O [ 119 0 R 124 0 R 127 0 R 130 0 R ] /SI 1453 0 R >> endobj 1453 0 obj << /AU 1451 0 R /TS (D:20020507125918) >> endobj 1454 0 obj ([R *~26) endobj 1455 0 obj << /Type /Pages /Kids [ 124 0 R 127 0 R 130 0 R 133 0 R 138 0 R ] /Count 5 /Parent 1504 0 R >> endobj 1456 0 obj (Word-Level Markov Text) endobj 1457 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/markovword.html) endobj 1458 0 obj << /S /SPS /ID 137 0 R /TID 1460 0 R /T 1456 0 R /CT (text/html) /TS (D:20020507125920) /O [ 133 0 R 138 0 R 141 0 R ] /SI 1459 0 R >> endobj 1459 0 obj << /AU 1457 0 R /TS (D:20020507125920) >> endobj 1460 0 obj (]yL¤-Ud5) endobj 1461 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/markovlet.c) endobj 1462 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/markovlet.c) endobj 1463 0 obj << /S /SPS /ID 147 0 R /TID 1465 0 R /T 1461 0 R /CT () /TS (D:20020507125921) /O [ 144 0 R ] /SI 1464 0 R >> endobj 1464 0 obj << /AU 1462 0 R /TS (D:20020507125921) >> endobj 1465 0 obj (EGoS&0A) endobj 1466 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/markov.c) endobj 1467 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/markov.c) endobj 1468 0 obj << /S /SPS /ID 151 0 R /TID 1470 0 R /T 1466 0 R /CT () /TS (D:20020507125922) /O [ 148 0 R 152 0 R ] /SI 1469 0 R >> endobj 1469 0 obj << /AU 1467 0 R /TS (D:20020507125922) >> endobj 1470 0 obj (\)L+<'o) endobj 1471 0 obj << /Type /Pages /Kids [ 141 0 R 144 0 R 148 0 R 152 0 R 155 0 R ] /Count 5 /Parent 1504 0 R >> endobj 1472 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/markovhash.c) endobj 1473 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/markovhash.c) endobj 1474 0 obj << /S /SPS /ID 158 0 R /TID 1476 0 R /T 1472 0 R /CT () /TS (D:20020507125922) /O [ 155 0 R 159 0 R ] /SI 1475 0 R >> endobj 1475 0 obj << /AU 1473 0 R /TS (D:20020507125922) >> endobj 1476 0 obj (rxOF5V) endobj 1477 0 obj (Principles) endobj 1478 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec154.html) endobj 1479 0 obj << /S /SPS /ID 166 0 R /TID 1481 0 R /T 1477 0 R /CT (text/html) /TS (D:20020507125923) /O [ 162 0 R ] /SI 1480 0 R >> endobj 1480 0 obj << /AU 1478 0 R /TS (D:20020507125923) >> endobj 1481 0 obj (1ȹȟFxڶГ) endobj 1482 0 obj (Solutions to Column 15) endobj 1483 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sol15.html) endobj 1484 0 obj << /S /SPS /ID 171 0 R /TID 1486 0 R /T 1482 0 R /CT (text/html) /TS (D:20020507125924) /O [ 167 0 R 172 0 R ] /SI 1485 0 R >> endobj 1485 0 obj << /AU 1483 0 R /TS (D:20020507125924) >> endobj 1486 0 obj (A#5|bv/) endobj 1487 0 obj (Further Reading) endobj 1488 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec156.html) endobj 1489 0 obj << /S /SPS /ID 180 0 R /TID 1491 0 R /T 1487 0 R /CT (text/html) /TS (D:20020507125924) /O [ 176 0 R ] /SI 1490 0 R >> endobj 1490 0 obj << /AU 1488 0 R /TS (D:20020507125924) >> endobj 1491 0 obj (~~FPK\nW) endobj 1492 0 obj << /Type /Pages /Kids [ 159 0 R 162 0 R 167 0 R 172 0 R 176 0 R ] /Count 5 /Parent 1504 0 R >> endobj 1493 0 obj (Web References for Programming Pearls) endobj 1494 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/webrefs.html) endobj 1495 0 obj << /S /SPS /ID 185 0 R /TID 1497 0 R /T 1493 0 R /CT (text/html) /TS (D:20020507125927) /O [ 181 0 R 186 0 R 190 0 R 194 0 R ] /SI 1496 0 R >> endobj 1496 0 obj << /AU 1494 0 R /TS (D:20020507125927) >> endobj 1497 0 obj ($]A*vxBq) endobj 1498 0 obj << /Type /Pages /Kids [ 181 0 R 186 0 R 190 0 R 194 0 R 198 0 R ] /Count 5 /Parent 1504 0 R >> endobj 1499 0 obj (Programming Pearls: Teaching Material) endobj 1500 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/teaching.html) endobj 1501 0 obj << /S /SPS /ID 202 0 R /TID 1503 0 R /T 1499 0 R /CT (text/html) /TS (D:20020507125928) /O [ 198 0 R 203 0 R ] /SI 1502 0 R >> endobj 1502 0 obj << /AU 1500 0 R /TS (D:20020507125928) >> endobj 1503 0 obj (71y-G\(I) endobj 1504 0 obj << /Type /Pages /Kids [ 1449 0 R 1455 0 R 1471 0 R 1492 0 R 1498 0 R ] /Count 25 /Parent 1872 0 R >> endobj 1505 0 obj << /Type /Pages /Kids [ 1406 0 R 1405 0 R 1415 0 R 1427 0 R 1443 0 R ] /Count 24 /Parent 1872 0 R >> endobj 1506 0 obj << /Type /Pages /Kids [ 203 0 R 207 0 R 211 0 R 214 0 R 217 0 R ] /Count 5 /Parent 1520 0 R >> endobj 1507 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s02b.pdf) endobj 1508 0 obj << /S /SPS /ID 210 0 R /T (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s02b.pdf) /CT (application/pdf) /TS (D:20020507125928) /O [ 207 0 R 211 0 R 214 0 R 217 0 R 220 0 R 223 0 R 226 0 R ] /SI 1509 0 R >> endobj 1509 0 obj << /AU 1507 0 R /TS (D:20020507125928) >> endobj 1510 0 obj << /Type /Pages /Kids [ 220 0 R 223 0 R 226 0 R 229 0 R 233 0 R 236 0 R ] /Count 6 /Parent 1520 0 R >> endobj 1511 0 obj << /Type /Pages /Kids [ 239 0 R 242 0 R 245 0 R 248 0 R 251 0 R ] /Count 5 /Parent 1520 0 R >> endobj 1512 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s02.pdf) endobj 1513 0 obj << /S /SPS /ID 232 0 R /T (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s02.pdf) /CT (application/pdf) /TS (D:20020507125929) /O [ 229 0 R 233 0 R 236 0 R 239 0 R 242 0 R 245 0 R 248 0 R 251 0 R ] /SI 1514 0 R >> endobj 1514 0 obj << /AU 1512 0 R /TS (D:20020507125929) >> endobj 1515 0 obj << /Type /Pages /Kids [ 254 0 R 258 0 R 261 0 R 264 0 R 267 0 R ] /Count 5 /Parent 1520 0 R >> endobj 1516 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s04.pdf) endobj 1517 0 obj << /S /SPS /ID 257 0 R /T (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s04.pdf) /CT (application/pdf) /TS (D:20020507125930) /O [ 254 0 R 258 0 R 261 0 R 264 0 R 267 0 R 270 0 R 273 0 R 276 0 R ] /SI 1518 0 R >> endobj 1518 0 obj << /AU 1516 0 R /TS (D:20020507125930) >> endobj 1519 0 obj << /Type /Pages /Kids [ 270 0 R 273 0 R 276 0 R 279 0 R 283 0 R ] /Count 5 /Parent 1520 0 R >> endobj 1520 0 obj << /Type /Pages /Kids [ 1506 0 R 1510 0 R 1511 0 R 1515 0 R 1519 0 R ] /Count 26 /Parent 1872 0 R >> endobj 1521 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s07.pdf) endobj 1522 0 obj << /S /SPS /ID 282 0 R /T (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s07.pdf) /CT (application/pdf) /TS (D:20020507125930) /O [ 279 0 R 283 0 R 286 0 R 289 0 R 292 0 R 295 0 R 298 0 R ] /SI 1523 0 R >> endobj 1523 0 obj << /AU 1521 0 R /TS (D:20020507125930) >> endobj 1524 0 obj << /Type /Pages /Kids [ 286 0 R 289 0 R 292 0 R 295 0 R 298 0 R ] /Count 5 /Parent 1535 0 R >> endobj 1525 0 obj << /Type /Pages /Kids [ 301 0 R 305 0 R 308 0 R 311 0 R 314 0 R 317 0 R ] /Count 6 /Parent 1535 0 R >> endobj 1526 0 obj << /Type /Pages /Kids [ 320 0 R 323 0 R 326 0 R 329 0 R 332 0 R ] /Count 5 /Parent 1535 0 R >> endobj 1527 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s08.pdf) endobj 1528 0 obj << /S /SPS /ID 304 0 R /T (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s08.pdf) /CT (application/pdf) /TS (D:20020507125931) /O [ 301 0 R 305 0 R 308 0 R 311 0 R 314 0 R 317 0 R 320 0 R 323 0 R 326 0 R 329 0 R 332 0 R ] /SI 1529 0 R >> endobj 1529 0 obj << /AU 1527 0 R /TS (D:20020507125931) >> endobj 1530 0 obj << /Type /Pages /Kids [ 335 0 R 339 0 R 342 0 R 345 0 R 348 0 R ] /Count 5 /Parent 1535 0 R >> endobj 1531 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s13.pdf) endobj 1532 0 obj << /S /SPS /ID 338 0 R /T (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s13.pdf) /CT (application/pdf) /TS (D:20020507125932) /O [ 335 0 R 339 0 R 342 0 R 345 0 R 348 0 R 351 0 R 354 0 R 357 0 R 360 0 R ] /SI 1533 0 R >> endobj 1533 0 obj << /AU 1531 0 R /TS (D:20020507125932) >> endobj 1534 0 obj << /Type /Pages /Kids [ 351 0 R 354 0 R 357 0 R 360 0 R 363 0 R 367 0 R 370 0 R ] /Count 7 /Parent 1535 0 R >> endobj 1535 0 obj << /Type /Pages /Kids [ 1524 0 R 1525 0 R 1526 0 R 1530 0 R 1534 0 R ] /Count 28 /Parent 1872 0 R >> endobj 1536 0 obj << /Type /Pages /Kids [ 388 0 R 391 0 R 394 0 R 397 0 R 400 0 R ] /Count 5 /Parent 1567 0 R >> endobj 1537 0 obj << /Type /Pages /Kids [ 373 0 R 376 0 R 379 0 R 382 0 R 385 0 R ] /Count 5 /Parent 1567 0 R >> endobj 1538 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s14.pdf) endobj 1539 0 obj << /S /SPS /ID 366 0 R /T (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s14.pdf) /CT (application/pdf) /TS (D:20020507125933) /O [ 363 0 R 367 0 R 370 0 R 373 0 R 376 0 R 379 0 R 382 0 R 385 0 R 388 0 R 391 0 R 394 0 R 397 0 R 400 0 R ] /SI 1540 0 R >> endobj 1540 0 obj << /AU 1538 0 R /TS (D:20020507125933) >> endobj 1541 0 obj << /Type /Pages /Kids [ 403 0 R 407 0 R 410 0 R 413 0 R 416 0 R 419 0 R 422 0 R ] /Count 7 /Parent 1567 0 R >> endobj 1542 0 obj << /Type /Pages /Kids [ 425 0 R 428 0 R 431 0 R 434 0 R 437 0 R ] /Count 5 /Parent 1567 0 R >> endobj 1543 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s15.pdf) endobj 1544 0 obj << /S /SPS /ID 406 0 R /T (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s15.pdf) /CT (application/pdf) /TS (D:20020507125933) /O [ 403 0 R 407 0 R 410 0 R 413 0 R 416 0 R 419 0 R 422 0 R 425 0 R 428 0 R 431 0 R 434 0 R 437 0 R ] /SI 1545 0 R >> endobj 1545 0 obj << /AU 1543 0 R /TS (D:20020507125933) >> endobj 1546 0 obj (Tricks of the Trade) endobj 1547 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/tricks.html) endobj 1548 0 obj << /S /SPS /ID 444 0 R /TID 1550 0 R /T 1546 0 R /CT (text/html) /TS (D:20020507125934) /O [ 440 0 R 445 0 R ] /SI 1549 0 R >> endobj 1549 0 obj << /AU 1547 0 R /TS (D:20020507125934) >> endobj 1550 0 obj (SQ;,=) endobj 1551 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/quiz.html) endobj 1552 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/quiz.html) endobj 1553 0 obj << /S /SPS /ID 453 0 R /TID 1555 0 R /T 1551 0 R /CT (text/html) /TS (D:20020507125935) /O [ 449 0 R ] /SI 1554 0 R >> endobj 1554 0 obj << /AU 1552 0 R /TS (D:20020507125935) >> endobj 1555 0 obj (IrPF@dG4) endobj 1556 0 obj (Answers for an Estimation Quiz) endobj 1557 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/answers.html) endobj 1558 0 obj << /S /SPS /ID 458 0 R /TID 1560 0 R /T 1556 0 R /CT (text/html) /TS (D:20020507125936) /O [ 454 0 R ] /SI 1559 0 R >> endobj 1559 0 obj << /AU 1557 0 R /TS (D:20020507125936) >> endobj 1560 0 obj (~B!ݽf&y) endobj 1561 0 obj << /Type /Pages /Kids [ 440 0 R 445 0 R 449 0 R 454 0 R 459 0 R ] /Count 5 /Parent 1567 0 R >> endobj 1562 0 obj (The Back of the Envelope) endobj 1563 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bote.html) endobj 1564 0 obj << /S /SPS /ID 463 0 R /TID 1566 0 R /T 1562 0 R /CT (text/html) /TS (D:20020507125937) /O [ 459 0 R 464 0 R ] /SI 1565 0 R >> endobj 1565 0 obj << /AU 1563 0 R /TS (D:20020507125937) >> endobj 1566 0 obj (*<{bo) endobj 1567 0 obj << /Type /Pages /Kids [ 1537 0 R 1536 0 R 1541 0 R 1542 0 R 1561 0 R ] /Count 27 /Parent 1872 0 R >> endobj 1568 0 obj (First-Year Instruction) endobj 1569 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/fyi.html) endobj 1570 0 obj << /S /SPS /ID 472 0 R /TID 1572 0 R /T 1568 0 R /CT (text/html) /TS (D:20020507125938) /O [ 468 0 R 473 0 R ] /SI 1571 0 R >> endobj 1571 0 obj << /AU 1569 0 R /TS (D:20020507125938) >> endobj 1572 0 obj (.uR) endobj 1573 0 obj (Code from Programming Pearls) endobj 1574 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/code.html) endobj 1575 0 obj << /S /SPS /ID 480 0 R /TID 1577 0 R /T 1573 0 R /CT (text/html) /TS (D:20020507125939) /O [ 476 0 R 481 0 R ] /SI 1576 0 R >> endobj 1576 0 obj << /AU 1574 0 R /TS (D:20020507125939) >> endobj 1577 0 obj (\r\\&o#2%7ow<) endobj 1578 0 obj << /Type /Pages /Kids [ 464 0 R 468 0 R 473 0 R 476 0 R 481 0 R ] /Count 5 /Parent 1638 0 R >> endobj 1579 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bitsort.c) endobj 1580 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bitsort.c) endobj 1581 0 obj << /S /SPS /ID 488 0 R /TID 1583 0 R /T 1579 0 R /CT () /TS (D:20020507125939) /O [ 485 0 R ] /SI 1582 0 R >> endobj 1582 0 obj << /AU 1580 0 R /TS (D:20020507125939) >> endobj 1583 0 obj (2.`$ =) endobj 1584 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sortints.cpp) endobj 1585 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sortints.cpp) endobj 1586 0 obj << /S /SPS /ID 492 0 R /TID 1588 0 R /T 1584 0 R /CT () /TS (D:20020507125940) /O [ 489 0 R ] /SI 1587 0 R >> endobj 1587 0 obj << /AU 1585 0 R /TS (D:20020507125940) >> endobj 1588 0 obj (j"8f2%Jc) endobj 1589 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/qsortints.c) endobj 1590 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/qsortints.c) endobj 1591 0 obj << /S /SPS /ID 496 0 R /TID 1593 0 R /T 1589 0 R /CT () /TS (D:20020507125941) /O [ 493 0 R ] /SI 1592 0 R >> endobj 1592 0 obj << /AU 1590 0 R /TS (D:20020507125941) >> endobj 1593 0 obj (sOb."\(]3) endobj 1594 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bitsortgen.c) endobj 1595 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bitsortgen.c) endobj 1596 0 obj << /S /SPS /ID 500 0 R /TID 1598 0 R /T 1594 0 R /CT () /TS (D:20020507125941) /O [ 497 0 R ] /SI 1597 0 R >> endobj 1597 0 obj << /AU 1595 0 R /TS (D:20020507125941) >> endobj 1598 0 obj (\\ /TW \)P\re&) endobj 1599 0 obj << /Type /Pages /Kids [ 485 0 R 489 0 R 493 0 R 497 0 R 501 0 R ] /Count 5 /Parent 1638 0 R >> endobj 1600 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/rotate.c) endobj 1601 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/rotate.c) endobj 1602 0 obj << /S /SPS /ID 504 0 R /TID 1604 0 R /T 1600 0 R /CT () /TS (D:20020507125943) /O [ 501 0 R 505 0 R 508 0 R 511 0 R ] /SI 1603 0 R >> endobj 1603 0 obj << /AU 1601 0 R /TS (D:20020507125943) >> endobj 1604 0 obj (6:hz) endobj 1605 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sign.c) endobj 1606 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sign.c) endobj 1607 0 obj << /S /SPS /ID 517 0 R /TID 1609 0 R /T 1605 0 R /CT () /TS (D:20020507125943) /O [ 514 0 R ] /SI 1608 0 R >> endobj 1608 0 obj << /AU 1606 0 R /TS (D:20020507125943) >> endobj 1609 0 obj (Z8\\A3ZG) endobj 1610 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/squash.c) endobj 1611 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/squash.c) endobj 1612 0 obj << /S /SPS /ID 521 0 R /TID 1614 0 R /T 1610 0 R /CT () /TS (D:20020507125944) /O [ 518 0 R ] /SI 1613 0 R >> endobj 1613 0 obj << /AU 1611 0 R /TS (D:20020507125944) >> endobj 1614 0 obj (Nc`ލI]~L) endobj 1615 0 obj << /Type /Pages /Kids [ 505 0 R 508 0 R 511 0 R 514 0 R 518 0 R ] /Count 5 /Parent 1638 0 R >> endobj 1616 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/search.c) endobj 1617 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/search.c) endobj 1618 0 obj << /S /SPS /ID 525 0 R /TID 1620 0 R /T 1616 0 R /CT () /TS (D:20020507125946) /O [ 522 0 R 526 0 R 529 0 R 532 0 R 535 0 R ] /SI 1619 0 R >> endobj 1619 0 obj << /AU 1617 0 R /TS (D:20020507125946) >> endobj 1620 0 obj (,S &,Ҏ) endobj 1621 0 obj << /Type /Pages /Kids [ 522 0 R 526 0 R 529 0 R 532 0 R 535 0 R ] /Count 5 /Parent 1638 0 R >> endobj 1622 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/timemod0.c) endobj 1623 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/timemod0.c) endobj 1624 0 obj << /S /SPS /ID 541 0 R /TID 1626 0 R /T 1622 0 R /CT () /TS (D:20020507125947) /O [ 538 0 R ] /SI 1625 0 R >> endobj 1625 0 obj << /AU 1623 0 R /TS (D:20020507125947) >> endobj 1626 0 obj (8I* \\ő) endobj 1627 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/maxsum.c) endobj 1628 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/maxsum.c) endobj 1629 0 obj << /S /SPS /ID 545 0 R /TID 1631 0 R /T 1627 0 R /CT () /TS (D:20020507125948) /O [ 542 0 R 546 0 R 549 0 R ] /SI 1630 0 R >> endobj 1630 0 obj << /AU 1628 0 R /TS (D:20020507125948) >> endobj 1631 0 obj (iXf.؎s) endobj 1632 0 obj << /Type /Pages /Kids [ 538 0 R 542 0 R 546 0 R 549 0 R 552 0 R ] /Count 5 /Parent 1638 0 R >> endobj 1633 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/genbins.c) endobj 1634 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/genbins.c) endobj 1635 0 obj << /S /SPS /ID 555 0 R /TID 1637 0 R /T 1633 0 R /CT () /TS (D:20020507125949) /O [ 552 0 R 556 0 R ] /SI 1636 0 R >> endobj 1636 0 obj << /AU 1634 0 R /TS (D:20020507125949) >> endobj 1637 0 obj (._^g54\r|) endobj 1638 0 obj << /Type /Pages /Kids [ 1578 0 R 1599 0 R 1615 0 R 1621 0 R 1632 0 R ] /Count 25 /Parent 1871 0 R >> endobj 1639 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/macfun.c) endobj 1640 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/macfun.c) endobj 1641 0 obj << /S /SPS /ID 562 0 R /TID 1643 0 R /T 1639 0 R /CT () /TS (D:20020507125949) /O [ 559 0 R 563 0 R ] /SI 1642 0 R >> endobj 1642 0 obj << /AU 1640 0 R /TS (D:20020507125949) >> endobj 1643 0 obj (E\(#-/SeRv) endobj 1644 0 obj << /Type /Pages /Kids [ 556 0 R 559 0 R 563 0 R 566 0 R 570 0 R ] /Count 5 /Parent 1674 0 R >> endobj 1645 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sort.cpp) endobj 1646 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sort.cpp) endobj 1647 0 obj << /S /SPS /ID 569 0 R /TID 1649 0 R /T 1645 0 R /CT () /TS (D:20020507125952) /O [ 566 0 R 570 0 R 573 0 R 576 0 R 579 0 R 582 0 R 585 0 R ] /SI 1648 0 R >> endobj 1648 0 obj << /AU 1646 0 R /TS (D:20020507125952) >> endobj 1649 0 obj (Ul-O~.͓) endobj 1650 0 obj << /Type /Pages /Kids [ 573 0 R 576 0 R 579 0 R 582 0 R 585 0 R ] /Count 5 /Parent 1674 0 R >> endobj 1651 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/SortAnim.java) endobj 1652 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/SortAnim.java) endobj 1653 0 obj << /S /SPS /ID 591 0 R /TID 1655 0 R /T 1651 0 R /CT () /TS (D:20020507125954) /O [ 588 0 R 592 0 R 595 0 R 598 0 R 601 0 R ] /SI 1654 0 R >> endobj 1654 0 obj << /AU 1652 0 R /TS (D:20020507125954) >> endobj 1655 0 obj (+K ~Ks]) endobj 1656 0 obj << /Type /Pages /Kids [ 588 0 R 592 0 R 595 0 R 598 0 R 601 0 R ] /Count 5 /Parent 1674 0 R >> endobj 1657 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sortedrand.cpp) endobj 1658 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sortedrand.cpp) endobj 1659 0 obj << /S /SPS /ID 607 0 R /TID 1661 0 R /T 1657 0 R /CT () /TS (D:20020507125955) /O [ 604 0 R 608 0 R ] /SI 1660 0 R >> endobj 1660 0 obj << /AU 1658 0 R /TS (D:20020507125955) >> endobj 1661 0 obj (MJ|$^1Ͽ) endobj 1662 0 obj << /Type /Pages /Kids [ 604 0 R 608 0 R 611 0 R 615 0 R 618 0 R ] /Count 5 /Parent 1674 0 R >> endobj 1663 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sets.cpp) endobj 1664 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sets.cpp) endobj 1665 0 obj << /S /SPS /ID 614 0 R /TID 1667 0 R /T 1663 0 R /CT () /TS (D:20020507125958) /O [ 611 0 R 615 0 R 618 0 R 621 0 R 624 0 R 627 0 R 630 0 R ] /SI 1666 0 R >> endobj 1666 0 obj << /AU 1664 0 R /TS (D:20020507125958) >> endobj 1667 0 obj (:!Q8) endobj 1668 0 obj << /Type /Pages /Kids [ 621 0 R 624 0 R 627 0 R 630 0 R 633 0 R ] /Count 5 /Parent 1674 0 R >> endobj 1669 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/priqueue.cpp) endobj 1670 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/priqueue.cpp) endobj 1671 0 obj << /S /SPS /ID 636 0 R /TID 1673 0 R /T 1669 0 R /CT () /TS (D:20020507125958) /O [ 633 0 R 637 0 R ] /SI 1672 0 R >> endobj 1672 0 obj << /AU 1670 0 R /TS (D:20020507125958) >> endobj 1673 0 obj (͟79AjC$J) endobj 1674 0 obj << /Type /Pages /Kids [ 1644 0 R 1650 0 R 1656 0 R 1662 0 R 1668 0 R ] /Count 25 /Parent 1871 0 R >> endobj 1675 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/wordlist.cpp) endobj 1676 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/wordlist.cpp) endobj 1677 0 obj << /S /SPS /ID 643 0 R /TID 1679 0 R /T 1675 0 R /CT () /TS (D:20020507125959) /O [ 640 0 R ] /SI 1678 0 R >> endobj 1678 0 obj << /AU 1676 0 R /TS (D:20020507125959) >> endobj 1679 0 obj (VJpU%) endobj 1680 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/wordfreq.cpp) endobj 1681 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/wordfreq.cpp) endobj 1682 0 obj << /S /SPS /ID 647 0 R /TID 1684 0 R /T 1680 0 R /CT () /TS (D:20020507130000) /O [ 644 0 R ] /SI 1683 0 R >> endobj 1683 0 obj << /AU 1681 0 R /TS (D:20020507130000) >> endobj 1684 0 obj (-Z~c6EVt) endobj 1685 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/wordfreq.c) endobj 1686 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/wordfreq.c) endobj 1687 0 obj << /S /SPS /ID 651 0 R /TID 1689 0 R /T 1685 0 R /CT () /TS (D:20020507130000) /O [ 648 0 R 652 0 R ] /SI 1688 0 R >> endobj 1688 0 obj << /AU 1686 0 R /TS (D:20020507130000) >> endobj 1689 0 obj (4@q{dUtz) endobj 1690 0 obj << /Type /Pages /Kids [ 637 0 R 640 0 R 644 0 R 648 0 R 652 0 R ] /Count 5 /Parent 1724 0 R >> endobj 1691 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/spacemod.cpp) endobj 1692 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/spacemod.cpp) endobj 1693 0 obj << /S /SPS /ID 658 0 R /TID 1695 0 R /T 1691 0 R /CT () /TS (D:20020507130001) /O [ 655 0 R 659 0 R ] /SI 1694 0 R >> endobj 1694 0 obj << /AU 1692 0 R /TS (D:20020507130001) >> endobj 1695 0 obj (أ!V\rb, i) endobj 1696 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/timemod.c) endobj 1697 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/timemod.c) endobj 1698 0 obj << /S /SPS /ID 665 0 R /TID 1700 0 R /T 1696 0 R /CT () /TS (D:20020507130002) /O [ 662 0 R 666 0 R ] /SI 1699 0 R >> endobj 1699 0 obj << /AU 1697 0 R /TS (D:20020507130002) >> endobj 1700 0 obj (ȼr[%) endobj 1701 0 obj << /Type /Pages /Kids [ 655 0 R 659 0 R 662 0 R 666 0 R 669 0 R ] /Count 5 /Parent 1724 0 R >> endobj 1702 0 obj (Rules for Code Tuning) endobj 1703 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/apprules.html) endobj 1704 0 obj << /S /SPS /ID 673 0 R /TID 1706 0 R /T 1702 0 R /CT (text/html) /TS (D:20020507130004) /O [ 669 0 R 674 0 R 677 0 R 680 0 R 683 0 R ] /SI 1705 0 R >> endobj 1705 0 obj << /AU 1703 0 R /TS (D:20020507130004) >> endobj 1706 0 obj (SpdymʽT) endobj 1707 0 obj (Errata for Programming Pearls, Second Edition) endobj 1708 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/errata.html) endobj 1709 0 obj << /S /SPS /ID 690 0 R /TID 1711 0 R /T 1707 0 R /CT (text/html) /TS (D:20020507130006) /O [ 686 0 R ] /SI 1710 0 R >> endobj 1710 0 obj << /AU 1708 0 R /TS (D:20020507130006) >> endobj 1711 0 obj (Lܨ7Qma) endobj 1712 0 obj << /Names [ 103 0 R 1446 0 R 647 0 R 1682 0 R 444 0 R 1548 0 R 496 0 R 1591 0 R 764 0 R 1750 0 R 541 0 R 1624 0 R 817 0 R 1758 0 R 822 0 R 1768 0 R 480 0 R 1575 0 R 673 0 R 1704 0 R 820 0 R 1761 0 R 591 0 R 1653 0 R 42 0 R 1409 0 R 210 0 R 1508 0 R 166 0 R 1479 0 R 569 0 R 1647 0 R 1030 0 R 1919 0 R 977 0 R 1881 0 R 70 0 R 1424 0 R 665 0 R 1698 0 R 5069 0 R 1371 0 R 1053 0 R 1940 0 R 282 0 R 1522 0 R 14 0 R 1393 0 R 1025 0 R 1913 0 R 743 0 R 1732 0 R 406 0 R 1544 0 R 1008 0 R 1903 0 R 147 0 R 1463 0 R 926 0 R 1847 0 R 912 0 R 1836 0 R 472 0 R 1570 0 R 695 0 R 1717 0 R 966 0 R 1868 0 R 614 0 R 1665 0 R 917 0 R 1842 0 R 458 0 R 1558 0 R 939 0 R 1858 0 R 463 0 R 1564 0 R 690 0 R 1709 0 R 748 0 R 1738 0 R 171 0 R 1484 0 R 453 0 R 1553 0 R 873 0 R 1800 0 R 704 0 R 1727 0 R 338 0 R 1532 0 R 123 0 R 1452 0 R 607 0 R 1659 0 R 860 0 R 1793 0 R 990 0 R 1892 0 R 947 0 R 1864 0 R 1048 0 R 1934 0 R 232 0 R 1513 0 R 985 0 R 1887 0 R 492 0 R 1586 0 R 521 0 R 1612 0 R ] /Limits [ (9w7`5kJ$)(iWfҍ)] >> endobj 1713 0 obj << /Names [ 51 0 R 1418 0 R 889 0 R 1820 0 R 78 0 R 1430 0 R 151 0 R 1468 0 R 545 0 R 1629 0 R 555 0 R 1635 0 R 488 0 R 1581 0 R 866 0 R 1797 0 R 651 0 R 1687 0 R 366 0 R 1539 0 R 137 0 R 1458 0 R 828 0 R 1764 0 R 562 0 R 1641 0 R 842 0 R 1783 0 R 9 0 R 1388 0 R 868 0 R 1811 0 R 158 0 R 1474 0 R 851 0 R 1788 0 R 5071 0 R 1382 0 R 898 0 R 1826 0 R 968 0 R 1875 0 R 658 0 R 1693 0 R 504 0 R 1602 0 R 1020 0 R 1908 0 R 60 0 R 1413 0 R 304 0 R 1528 0 R 876 0 R 1803 0 R 180 0 R 1489 0 R 636 0 R 1671 0 R 5065 0 R 1366 0 R 643 0 R 1677 0 R 1035 0 R 1924 0 R 185 0 R 1495 0 R 29 0 R 1397 0 R 879 0 R 1806 0 R 500 0 R 1596 0 R 525 0 R 1618 0 R 834 0 R 1776 0 R 257 0 R 1517 0 R 98 0 R 1440 0 R 1062 0 R 1945 0 R 907 0 R 1831 0 R 995 0 R 1897 0 R 90 0 R 1435 0 R 1040 0 R 1929 0 R 517 0 R 1607 0 R 202 0 R 1501 0 R 756 0 R 1743 0 R 23 0 R 1401 0 R 931 0 R 1852 0 R 811 0 R 1754 0 R ] /Limits [ (!ݾCp3?)(t}%[)] >> endobj 1714 0 obj << /Type /Pages /Kids [ 674 0 R 677 0 R 680 0 R 683 0 R 686 0 R ] /Count 5 /Parent 1724 0 R >> endobj 1715 0 obj (Cracking the Oyster) endobj 1716 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/cto.html) endobj 1717 0 obj << /S /SPS /ID 695 0 R /TID 1719 0 R /T 1715 0 R /CT (text/html) /TS (D:20020507130007) /O [ 691 0 R 696 0 R ] /SI 1718 0 R >> endobj 1718 0 obj << /AU 1716 0 R /TS (D:20020507130007) >> endobj 1719 0 obj ( O1JB,X9[) endobj 1720 0 obj << /Names [ 1652 0 R 1653 0 R 1412 0 R 1413 0 R 1557 0 R 1558 0 R 1863 0 R 1864 0 R 1703 0 R 1704 0 R 1580 0 R 1581 0 R 1595 0 R 1596 0 R 1726 0 R 1727 0 R 1563 0 R 1564 0 R 1574 0 R 1575 0 R 1716 0 R 1717 0 R 1742 0 R 1743 0 R 1944 0 R 1945 0 R 1708 0 R 1709 0 R 1874 0 R 1875 0 R 1569 0 R 1570 0 R 1634 0 R 1635 0 R 1396 0 R 1397 0 R 1381 0 R 1382 0 R 1439 0 R 1440 0 R 1434 0 R 1435 0 R 1640 0 R 1641 0 R 1467 0 R 1468 0 R 1473 0 R 1474 0 R 1462 0 R 1463 0 R 1451 0 R 1452 0 R 1457 0 R 1458 0 R 1628 0 R 1629 0 R 1796 0 R 1797 0 R 1799 0 R 1800 0 R 1802 0 R 1803 0 R 1805 0 R 1806 0 R 1370 0 R 1371 0 R 1907 0 R 1908 0 R 1880 0 R 1881 0 R 1918 0 R 1919 0 R 1867 0 R 1868 0 R 1365 0 R 1366 0 R 1902 0 R 1903 0 R 1670 0 R 1671 0 R 1590 0 R 1591 0 R 1552 0 R 1553 0 R 1601 0 R 1602 0 R 1512 0 R 1513 0 R 1507 0 R 1508 0 R ] /Limits [ (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/SortAnim.java) (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s02b.pdf)] >> endobj 1721 0 obj << /Names [ 1516 0 R 1517 0 R 1521 0 R 1522 0 R 1527 0 R 1528 0 R 1531 0 R 1532 0 R 1538 0 R 1539 0 R 1543 0 R 1544 0 R 1617 0 R 1618 0 R 1753 0 R 1754 0 R 1767 0 R 1768 0 R 1775 0 R 1776 0 R 1782 0 R 1783 0 R 1787 0 R 1788 0 R 1792 0 R 1793 0 R 1737 0 R 1738 0 R 1810 0 R 1811 0 R 1819 0 R 1820 0 R 1825 0 R 1826 0 R 1830 0 R 1831 0 R 1835 0 R 1836 0 R 1841 0 R 1842 0 R 1846 0 R 1847 0 R 1851 0 R 1852 0 R 1400 0 R 1401 0 R 1429 0 R 1430 0 R 1445 0 R 1446 0 R 1478 0 R 1479 0 R 1408 0 R 1409 0 R 1488 0 R 1489 0 R 1664 0 R 1665 0 R 1606 0 R 1607 0 R 1912 0 R 1913 0 R 1886 0 R 1887 0 R 1731 0 R 1732 0 R 1891 0 R 1892 0 R 1923 0 R 1924 0 R 1417 0 R 1418 0 R 1928 0 R 1929 0 R 1857 0 R 1858 0 R 1483 0 R 1484 0 R 1646 0 R 1647 0 R 1933 0 R 1934 0 R 1757 0 R 1758 0 R 1760 0 R 1761 0 R 1763 0 R 1764 0 R 1658 0 R 1659 0 R 1585 0 R 1586 0 R 1692 0 R 1693 0 R 1611 0 R 1612 0 R 1392 0 R 1393 0 R 1500 0 R 1501 0 R 1697 0 R 1698 0 R 1623 0 R 1624 0 R 1896 0 R 1897 0 R 1547 0 R 1548 0 R 1749 0 R 1750 0 R 1494 0 R 1495 0 R 1387 0 R 1388 0 R 1939 0 R 1940 0 R 1686 0 R 1687 0 R 1681 0 R 1682 0 R 1423 0 R 1424 0 R 1676 0 R 1677 0 R ] /Limits [ (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/s04.pdf)(file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/wordlist.cpp) ] >> endobj 1722 0 obj << /Type /Pages /Kids [ 691 0 R 696 0 R 700 0 R 705 0 R 708 0 R ] /Count 5 /Parent 1724 0 R >> endobj 1723 0 obj << /Type /Pages /Kids [ 711 0 R 715 0 R 718 0 R 721 0 R 724 0 R ] /Count 5 /Parent 1724 0 R >> endobj 1724 0 obj << /Type /Pages /Kids [ 1690 0 R 1701 0 R 1714 0 R 1722 0 R 1723 0 R ] /Count 25 /Parent 1871 0 R >> endobj 1725 0 obj (Index to Programming Pearls) endobj 1726 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/bookindex.html) endobj 1727 0 obj << /S /SPS /ID 704 0 R /TID 1729 0 R /T 1725 0 R /CT (text/html) /TS (D:20020507130011) /O [ 700 0 R 705 0 R 708 0 R 711 0 R 715 0 R 718 0 R 721 0 R 724 0 R 727 0 R 730 0 R 733 0 R 736 0 R ] /SI 1728 0 R >> endobj 1728 0 obj << /AU 1726 0 R /TS (D:20020507130011) >> endobj 1729 0 obj (@DU?0} g) endobj 1730 0 obj (A Small Matter of Programming) endobj 1731 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sketch05.html) endobj 1732 0 obj << /S /SPS /ID 743 0 R /TID 1734 0 R /T 1730 0 R /CT (text/html) /TS (D:20020507130011) /O [ 739 0 R ] /SI 1733 0 R >> endobj 1733 0 obj << /AU 1731 0 R /TS (D:20020507130011) >> endobj 1734 0 obj (%0$#\)~) endobj 1735 0 obj << /Type /Pages /Kids [ 727 0 R 730 0 R 733 0 R 736 0 R 739 0 R ] /Count 5 /Parent 1780 0 R >> endobj 1736 0 obj (Debugging) endobj 1737 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec0510.html) endobj 1738 0 obj << /S /SPS /ID 748 0 R /TID 1740 0 R /T 1736 0 R /CT (text/html) /TS (D:20020507130012) /O [ 744 0 R 749 0 R ] /SI 1739 0 R >> endobj 1739 0 obj << /AU 1737 0 R /TS (D:20020507130012) >> endobj 1740 0 obj (lot{"%>}Ԏ/) endobj 1741 0 obj (Epilog to Programming Pearls, First Edition) endobj 1742 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/epilog1.html) endobj 1743 0 obj << /S /SPS /ID 756 0 R /TID 1745 0 R /T 1741 0 R /CT (text/html) /TS (D:20020507130013) /O [ 752 0 R 757 0 R ] /SI 1744 0 R >> endobj 1744 0 obj << /AU 1742 0 R /TS (D:20020507130013) >> endobj 1745 0 obj (4G[ۣ>]w) endobj 1746 0 obj << /Type /Pages /Kids [ 744 0 R 749 0 R 752 0 R 757 0 R 761 0 R 765 0 R 768 0 R 771 0 R 774 0 R ] /Count 9 /Parent 1780 0 R >> endobj 1747 0 obj << /Type /Pages /Kids [ 792 0 R 795 0 R 798 0 R 801 0 R 804 0 R ] /Count 5 /Parent 1780 0 R >> endobj 1748 0 obj << /Type /Pages /Kids [ 777 0 R 780 0 R 783 0 R 786 0 R 789 0 R ] /Count 5 /Parent 1780 0 R >> endobj 1749 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/tricks.pdf) endobj 1750 0 obj << /S /SPS /ID 764 0 R /T (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/tricks.pdf) /CT (application/pdf) /TS (D:20020507130014) /O [ 761 0 R 765 0 R 768 0 R 771 0 R 774 0 R 777 0 R 780 0 R 783 0 R 786 0 R 789 0 R 792 0 R 795 0 R 798 0 R 801 0 R 804 0 R ] /SI 1751 0 R >> endobj 1751 0 obj << /AU 1749 0 R /TS (D:20020507130014) >> endobj 1752 0 obj (Precise Problem Statement) endobj 1753 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec012.html) endobj 1754 0 obj << /S /SPS /ID 811 0 R /TID 1756 0 R /T 1752 0 R /CT (text/html) /TS (D:20020507130015) /O [ 807 0 R ] /SI 1755 0 R >> endobj 1755 0 obj << /AU 1753 0 R /TS (D:20020507130015) >> endobj 1756 0 obj (,\(\rWM1ok\n^w) endobj 1757 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sortdes1.jpg) endobj 1758 0 obj << /S /SIS /ID 817 0 R /TS (D:20020507130015) /O [ 818 0 R ] /R [ 1771 0 R ] /SI 1759 0 R >> endobj 1759 0 obj << /AU 1757 0 R /TS (D:20020507130015) >> endobj 1760 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sortdes2.jpg) endobj 1761 0 obj << /S /SIS /ID 820 0 R /TS (D:20020507130015) /O [ 821 0 R ] /R [ 1772 0 R ] /SI 1762 0 R >> endobj 1762 0 obj << /AU 1760 0 R /TS (D:20020507130015) >> endobj 1763 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sortdes3.jpg) endobj 1764 0 obj << /S /SIS /ID 828 0 R /TS (D:20020507130015) /O [ 829 0 R ] /R [ 1773 0 R ] /SI 1765 0 R >> endobj 1765 0 obj << /AU 1763 0 R /TS (D:20020507130015) >> endobj 1766 0 obj (Program Design) endobj 1767 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec013.html) endobj 1768 0 obj << /S /SPS /ID 822 0 R /TID 1770 0 R /T 1766 0 R /CT (text/html) /TS (D:20020507130016) /O [ 812 0 R 823 0 R ] /SI 1769 0 R >> endobj 1769 0 obj << /AU 1767 0 R /TS (D:20020507130016) >> endobj 1770 0 obj (L|~F) endobj 1771 0 obj 1 endobj 1772 0 obj 1 endobj 1773 0 obj 1 endobj 1774 0 obj (Implementation Sketch) endobj 1775 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec014.html) endobj 1776 0 obj << /S /SPS /ID 834 0 R /TID 1778 0 R /T 1774 0 R /CT (text/html) /TS (D:20020507130016) /O [ 830 0 R 835 0 R ] /SI 1777 0 R >> endobj 1777 0 obj << /AU 1775 0 R /TS (D:20020507130016) >> endobj 1778 0 obj (@ɹ> endobj 1780 0 obj << /Type /Pages /Kids [ 1735 0 R 1746 0 R 1748 0 R 1747 0 R 1779 0 R ] /Count 29 /Parent 1871 0 R >> endobj 1781 0 obj (Principles) endobj 1782 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec015.html) endobj 1783 0 obj << /S /SPS /ID 842 0 R /TID 1785 0 R /T 1781 0 R /CT (text/html) /TS (D:20020507130017) /O [ 838 0 R 843 0 R ] /SI 1784 0 R >> endobj 1784 0 obj << /AU 1782 0 R /TS (D:20020507130017) >> endobj 1785 0 obj (JS\(+6]\\[) endobj 1786 0 obj (Problems) endobj 1787 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec016.html) endobj 1788 0 obj << /S /SPS /ID 851 0 R /TID 1790 0 R /T 1786 0 R /CT (text/html) /TS (D:20020507130018) /O [ 847 0 R 852 0 R ] /SI 1789 0 R >> endobj 1789 0 obj << /AU 1787 0 R /TS (D:20020507130018) >> endobj 1790 0 obj (>Fjdob\(7) endobj 1791 0 obj (Further Reading) endobj 1792 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec017.html) endobj 1793 0 obj << /S /SPS /ID 860 0 R /TID 1795 0 R /T 1791 0 R /CT (text/html) /TS (D:20020507130019) /O [ 856 0 R ] /SI 1794 0 R >> endobj 1794 0 obj << /AU 1792 0 R /TS (D:20020507130019) >> endobj 1795 0 obj (;Yqk$DLZ") endobj 1796 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/misstab1.jpg) endobj 1797 0 obj << /S /SIS /ID 866 0 R /TS (D:20020507130020) /O [ 867 0 R ] /R [ 1814 0 R ] /SI 1798 0 R >> endobj 1798 0 obj << /AU 1796 0 R /TS (D:20020507130020) >> endobj 1799 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/misstab2.jpg) endobj 1800 0 obj << /S /SIS /ID 873 0 R /TS (D:20020507130020) /O [ 874 0 R ] /R [ 1815 0 R ] /SI 1801 0 R >> endobj 1801 0 obj << /AU 1799 0 R /TS (D:20020507130020) >> endobj 1802 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/misstab3.jpg) endobj 1803 0 obj << /S /SIS /ID 876 0 R /TS (D:20020507130020) /O [ 877 0 R ] /R [ 1816 0 R ] /SI 1804 0 R >> endobj 1804 0 obj << /AU 1802 0 R /TS (D:20020507130020) >> endobj 1805 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/misstab4.jpg) endobj 1806 0 obj << /S /SIS /ID 879 0 R /TS (D:20020507130020) /O [ 880 0 R ] /R [ 1817 0 R ] /SI 1807 0 R >> endobj 1807 0 obj << /AU 1805 0 R /TS (D:20020507130020) >> endobj 1808 0 obj << /Type /Pages /Kids [ 838 0 R 843 0 R 847 0 R 852 0 R 856 0 R ] /Count 5 /Parent 1870 0 R >> endobj 1809 0 obj (Basic Skills) endobj 1810 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec071.html) endobj 1811 0 obj << /S /SPS /ID 868 0 R /TID 1813 0 R /T 1809 0 R /CT (text/html) /TS (D:20020507130020) /O [ 861 0 R 869 0 R 881 0 R ] /SI 1812 0 R >> endobj 1812 0 obj << /AU 1810 0 R /TS (D:20020507130020) >> endobj 1813 0 obj (|~q#) endobj 1814 0 obj 1 endobj 1815 0 obj 1 endobj 1816 0 obj 1 endobj 1817 0 obj 1 endobj 1818 0 obj (Performance Estimates) endobj 1819 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec072.html) endobj 1820 0 obj << /S /SPS /ID 889 0 R /TID 1822 0 R /T 1818 0 R /CT (text/html) /TS (D:20020507130021) /O [ 885 0 R 890 0 R ] /SI 1821 0 R >> endobj 1821 0 obj << /AU 1819 0 R /TS (D:20020507130021) >> endobj 1822 0 obj (QzIΕ;JXj`) endobj 1823 0 obj << /Type /Pages /Kids [ 861 0 R 869 0 R 881 0 R 885 0 R 890 0 R ] /Count 5 /Parent 1870 0 R >> endobj 1824 0 obj (Safety Factors) endobj 1825 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec073.html) endobj 1826 0 obj << /S /SPS /ID 898 0 R /TID 1828 0 R /T 1824 0 R /CT (text/html) /TS (D:20020507130022) /O [ 894 0 R 899 0 R ] /SI 1827 0 R >> endobj 1827 0 obj << /AU 1825 0 R /TS (D:20020507130022) >> endobj 1828 0 obj (_?9+[} #z}) endobj 1829 0 obj (Little's Law) endobj 1830 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec074.html) endobj 1831 0 obj << /S /SPS /ID 907 0 R /TID 1833 0 R /T 1829 0 R /CT (text/html) /TS (D:20020507130023) /O [ 903 0 R ] /SI 1832 0 R >> endobj 1832 0 obj << /AU 1830 0 R /TS (D:20020507130023) >> endobj 1833 0 obj (wߎd) endobj 1834 0 obj (Principles) endobj 1835 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec075.html) endobj 1836 0 obj << /S /SPS /ID 912 0 R /TID 1838 0 R /T 1834 0 R /CT (text/html) /TS (D:20020507130023) /O [ 908 0 R ] /SI 1837 0 R >> endobj 1837 0 obj << /AU 1835 0 R /TS (D:20020507130023) >> endobj 1838 0 obj ('EԋEOJ) endobj 1839 0 obj << /Type /Pages /Kids [ 894 0 R 899 0 R 903 0 R 908 0 R 913 0 R ] /Count 5 /Parent 1870 0 R >> endobj 1840 0 obj (Problems) endobj 1841 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec076.html) endobj 1842 0 obj << /S /SPS /ID 917 0 R /TID 1844 0 R /T 1840 0 R /CT (text/html) /TS (D:20020507130024) /O [ 913 0 R 918 0 R ] /SI 1843 0 R >> endobj 1843 0 obj << /AU 1841 0 R /TS (D:20020507130024) >> endobj 1844 0 obj (w%!Oir1) endobj 1845 0 obj (Further Reading) endobj 1846 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec077.html) endobj 1847 0 obj << /S /SPS /ID 926 0 R /TID 1849 0 R /T 1845 0 R /CT (text/html) /TS (D:20020507130025) /O [ 922 0 R ] /SI 1848 0 R >> endobj 1848 0 obj << /AU 1846 0 R /TS (D:20020507130025) >> endobj 1849 0 obj (xQ$) endobj 1850 0 obj (Quick Calculations in Everyday Life) endobj 1851 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sec078.html) endobj 1852 0 obj << /S /SPS /ID 931 0 R /TID 1854 0 R /T 1850 0 R /CT (text/html) /TS (D:20020507130025) /O [ 927 0 R 932 0 R ] /SI 1853 0 R >> endobj 1853 0 obj << /AU 1851 0 R /TS (D:20020507130025) >> endobj 1854 0 obj (-3$h6.>,) endobj 1855 0 obj << /Type /Pages /Kids [ 918 0 R 922 0 R 927 0 R 932 0 R 935 0 R ] /Count 5 /Parent 1870 0 R >> endobj 1856 0 obj (Solutions to Column 7) endobj 1857 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sol07.html) endobj 1858 0 obj << /S /SPS /ID 939 0 R /TID 1860 0 R /T 1856 0 R /CT (text/html) /TS (D:20020507130026) /O [ 935 0 R 940 0 R ] /SI 1859 0 R >> endobj 1859 0 obj << /AU 1857 0 R /TS (D:20020507130026) >> endobj 1860 0 obj (8h\\") endobj 1861 0 obj << /Type /Pages /Kids [ 940 0 R 943 0 R 948 0 R 951 0 R 955 0 R ] /Count 5 /Parent 1870 0 R >> endobj 1862 0 obj (Cost Models for Time and Space) endobj 1863 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/appmodels.html) endobj 1864 0 obj << /S /SPS /ID 947 0 R /TID 1866 0 R /T 1862 0 R /CT (text/html) /TS (D:20020507130028) /O [ 943 0 R 948 0 R 951 0 R 955 0 R 958 0 R ] /SI 1865 0 R >> endobj 1865 0 obj << /AU 1863 0 R /TS (D:20020507130028) >> endobj 1866 0 obj (t$) endobj 1867 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/pp1e.jpg) endobj 1868 0 obj << /S /SIS /ID 966 0 R /TS (D:20020507130029) /O [ 967 0 R ] /R [ 1878 0 R ] /SI 1869 0 R >> endobj 1869 0 obj << /AU 1867 0 R /TS (D:20020507130029) >> endobj 1870 0 obj << /Type /Pages /Kids [ 1808 0 R 1823 0 R 1839 0 R 1855 0 R 1861 0 R 1884 0 R 1900 0 R 1916 0 R 1937 0 R ] /Count 49 /Parent 1871 0 R >> endobj 1871 0 obj << /Type /Pages /Kids [ 1638 0 R 1674 0 R 1724 0 R 1780 0 R 1870 0 R ] /Count 153 /Parent 1363 0 R >> endobj 1872 0 obj << /Type /Pages /Kids [ 1505 0 R 1504 0 R 1520 0 R 1535 0 R 1567 0 R ] /Count 130 /Parent 1363 0 R >> endobj 1873 0 obj (About the First Edition of Programming Pearls) endobj 1874 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/firsted.html) endobj 1875 0 obj << /S /SPS /ID 968 0 R /TID 1877 0 R /T 1873 0 R /CT (text/html) /TS (D:20020507130030) /O [ 961 0 R 969 0 R ] /SI 1876 0 R >> endobj 1876 0 obj << /AU 1874 0 R /TS (D:20020507130030) >> endobj 1877 0 obj (6L=7ә{pf) endobj 1878 0 obj 1 endobj 1879 0 obj (Programming Pearls, Part 2: Performance) endobj 1880 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/part2.html) endobj 1881 0 obj << /S /SPS /ID 977 0 R /TID 1883 0 R /T 1879 0 R /CT (text/html) /TS (D:20020507130030) /O [ 973 0 R 978 0 R ] /SI 1882 0 R >> endobj 1882 0 obj << /AU 1880 0 R /TS (D:20020507130030) >> endobj 1883 0 obj (AEv8=F) endobj 1884 0 obj << /Type /Pages /Kids [ 958 0 R 961 0 R 969 0 R 973 0 R 978 0 R ] /Count 5 /Parent 1870 0 R >> endobj 1885 0 obj (Writing Correct Programs) endobj 1886 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sketch04.html) endobj 1887 0 obj << /S /SPS /ID 985 0 R /TID 1889 0 R /T 1885 0 R /CT (text/html) /TS (D:20020507130031) /O [ 981 0 R ] /SI 1888 0 R >> endobj 1888 0 obj << /AU 1886 0 R /TS (D:20020507130031) >> endobj 1889 0 obj (-F@|_/?s) endobj 1890 0 obj (Algorithm Design Techniques) endobj 1891 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sketch08.html) endobj 1892 0 obj << /S /SPS /ID 990 0 R /TID 1894 0 R /T 1890 0 R /CT (text/html) /TS (D:20020507130032) /O [ 986 0 R ] /SI 1893 0 R >> endobj 1893 0 obj << /AU 1891 0 R /TS (D:20020507130032) >> endobj 1894 0 obj (.CGlB.[) endobj 1895 0 obj (Programming Pearls, Second Edition: Table of Contents) endobj 1896 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/toc.html) endobj 1897 0 obj << /S /SPS /ID 995 0 R /TID 1899 0 R /T 1895 0 R /CT (text/html) /TS (D:20020507130033) /O [ 991 0 R 996 0 R 1000 0 R ] /SI 1898 0 R >> endobj 1898 0 obj << /AU 1896 0 R /TS (D:20020507130033) >> endobj 1899 0 obj (vj'~ᅼ\(+) endobj 1900 0 obj << /Type /Pages /Kids [ 981 0 R 986 0 R 991 0 R 996 0 R 1000 0 R ] /Count 5 /Parent 1870 0 R >> endobj 1901 0 obj (Preface to Programming Pearls) endobj 1902 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/preface.html) endobj 1903 0 obj << /S /SPS /ID 1008 0 R /TID 1905 0 R /T 1901 0 R /CT (text/html) /TS (D:20020507130034) /O [ 1004 0 R 1009 0 R 1013 0 R ] /SI 1904 0 R >> endobj 1904 0 obj << /AU 1902 0 R /TS (D:20020507130034) >> endobj 1905 0 obj (6 Ǒ) endobj 1906 0 obj (Programming Pearls, Part I: Preliminaries) endobj 1907 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/part1.html) endobj 1908 0 obj << /S /SPS /ID 1020 0 R /TID 1910 0 R /T 1906 0 R /CT (text/html) /TS (D:20020507130035) /O [ 1016 0 R ] /SI 1909 0 R >> endobj 1909 0 obj << /AU 1907 0 R /TS (D:20020507130035) >> endobj 1910 0 obj (A|UY8@LP) endobj 1911 0 obj (Aha! Algorithms) endobj 1912 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sketch02.html) endobj 1913 0 obj << /S /SPS /ID 1025 0 R /TID 1915 0 R /T 1911 0 R /CT (text/html) /TS (D:20020507130035) /O [ 1021 0 R ] /SI 1914 0 R >> endobj 1914 0 obj << /AU 1912 0 R /TS (D:20020507130035) >> endobj 1915 0 obj (.vD+/B6) endobj 1916 0 obj << /Type /Pages /Kids [ 1004 0 R 1009 0 R 1013 0 R 1016 0 R 1021 0 R ] /Count 5 /Parent 1870 0 R >> endobj 1917 0 obj (Programming Pearls, Part III: The Product) endobj 1918 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/part3.html) endobj 1919 0 obj << /S /SPS /ID 1030 0 R /TID 1921 0 R /T 1917 0 R /CT (text/html) /TS (D:20020507130036) /O [ 1026 0 R ] /SI 1920 0 R >> endobj 1920 0 obj << /AU 1918 0 R /TS (D:20020507130036) >> endobj 1921 0 obj (Gqэx>yX) endobj 1922 0 obj (Heaps) endobj 1923 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sketch14.html) endobj 1924 0 obj << /S /SPS /ID 1035 0 R /TID 1926 0 R /T 1922 0 R /CT (text/html) /TS (D:20020507130036) /O [ 1031 0 R ] /SI 1925 0 R >> endobj 1925 0 obj << /AU 1923 0 R /TS (D:20020507130036) >> endobj 1926 0 obj (>JXK1py) endobj 1927 0 obj (Solutions to Column 5) endobj 1928 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sol05.html) endobj 1929 0 obj << /S /SPS /ID 1040 0 R /TID 1931 0 R /T 1927 0 R /CT (text/html) /TS (D:20020507130037) /O [ 1036 0 R 1041 0 R ] /SI 1930 0 R >> endobj 1930 0 obj << /AU 1928 0 R /TS (D:20020507130037) >> endobj 1931 0 obj (;\nwh) endobj 1932 0 obj (Sorting Algorithm Animations from Programming Pearls) endobj 1933 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/sortanim.html) endobj 1934 0 obj << /S /SPS /ID 1048 0 R /TID 1936 0 R /T 1932 0 R /CT (text/html) /TS (D:20020507130038) /O [ 1044 0 R ] /SI 1935 0 R >> endobj 1935 0 obj << /AU 1933 0 R /TS (D:20020507130038) >> endobj 1936 0 obj (.4%VPAѼ,]) endobj 1937 0 obj << /Type /Pages /Kids [ 1026 0 R 1031 0 R 1036 0 R 1041 0 R 1044 0 R 1049 0 R 1054 0 R 1058 0 R 1063 0 R ] /Count 9 /Parent 1870 0 R >> endobj 1938 0 obj (Why A Second Edition of Programming Pearls?) endobj 1939 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/why2e.html) endobj 1940 0 obj << /S /SPS /ID 1053 0 R /TID 1942 0 R /T 1938 0 R /CT (text/html) /TS (D:20020507130039) /O [ 1049 0 R 1054 0 R ] /SI 1941 0 R >> endobj 1941 0 obj << /AU 1939 0 R /TS (D:20020507130039) >> endobj 1942 0 obj (3x}]!=̳) endobj 1943 0 obj (Epilog to Programming Pearls, Second Edition) endobj 1944 0 obj (file:///F|/Mis%20documentos/OLD_WEBS/CodeAlgoritms/epilog2.html) endobj 1945 0 obj << /S /SPS /ID 1062 0 R /TID 1947 0 R /T 1943 0 R /CT (text/html) /TS (D:20020507130040) /O [ 1058 0 R 1063 0 R ] /SI 1946 0 R >> endobj 1946 0 obj << /AU 1944 0 R /TS (D:20020507130040) >> endobj 1947 0 obj (e.Ԉ0h=4) endobj 1948 0 obj 59 endobj xref 0 1949 0000000000 65535 f +0000525988 00000 n +0000526349 00000 n +0000526570 00000 n +0000528053 00000 n +0000528074 00000 n +0000528469 00000 n +0000528626 00000 n +0000530183 00000 n +0000530204 00000 n +0000530238 00000 n +0000530607 00000 n +0000530829 00000 n +0000532971 00000 n +0000532993 00000 n +0000533028 00000 n +0000533360 00000 n +0000533391 00000 n +0000533850 00000 n +0000533871 00000 n +0000534270 00000 n +0000534319 00000 n +0000535905 00000 n +0000535927 00000 n +0000535963 00000 n +0000536345 00000 n +0000536376 00000 n +0000537799 00000 n +0000537821 00000 n +0000537844 00000 n +0000537879 00000 n +0000549149 00000 n +0000549480 00000 n +0000550713 00000 n +0000550735 00000 n +0000551082 00000 n +0000551113 00000 n +0000552117 00000 n +0000552138 00000 n +0000552522 00000 n +0000552580 00000 n +0000554423 00000 n +0000554445 00000 n +0000554480 00000 n +0000554828 00000 n +0000554886 00000 n +0000556120 00000 n +0000556142 00000 n +0000556542 00000 n +0000556591 00000 n +0000557682 00000 n +0000557704 00000 n +0000557739 00000 n +0000558102 00000 n +0000558142 00000 n +0000559965 00000 n +0000559987 00000 n +0000560354 00000 n +0000562174 00000 n +0000562196 00000 n +0000562219 00000 n +0000562254 00000 n +0000582265 00000 n +0000582598 00000 n +0000582629 00000 n +0000583210 00000 n +0000583231 00000 n +0000583629 00000 n +0000583687 00000 n +0000585103 00000 n +0000585125 00000 n +0000585160 00000 n +0000585490 00000 n +0000585803 00000 n +0000585824 00000 n +0000586224 00000 n +0000586282 00000 n +0000587995 00000 n +0000588017 00000 n +0000588053 00000 n +0000588385 00000 n +0000589778 00000 n +0000589800 00000 n +0000590163 00000 n +0000590221 00000 n +0000591882 00000 n +0000591904 00000 n +0000592289 00000 n +0000592374 00000 n +0000593968 00000 n +0000593990 00000 n +0000594025 00000 n +0000594388 00000 n +0000594437 00000 n +0000595753 00000 n +0000595775 00000 n +0000596077 00000 n +0000596760 00000 n +0000596781 00000 n +0000596816 00000 n +0000597204 00000 n +0000597236 00000 n +0000599059 00000 n +0000599082 00000 n +0000599118 00000 n +0000599455 00000 n +0000599505 00000 n +0000601973 00000 n +0000601996 00000 n +0000602348 00000 n +0000602380 00000 n +0000603921 00000 n +0000603944 00000 n +0000604279 00000 n +0000605598 00000 n +0000605621 00000 n +0000605988 00000 n +0000606065 00000 n +0000607581 00000 n +0000607604 00000 n +0000607993 00000 n +0000608070 00000 n +0000610286 00000 n +0000610309 00000 n +0000610346 00000 n +0000610681 00000 n +0000613251 00000 n +0000613274 00000 n +0000613609 00000 n +0000616408 00000 n +0000616431 00000 n +0000616766 00000 n +0000617807 00000 n +0000617829 00000 n +0000618218 00000 n +0000618295 00000 n +0000620712 00000 n +0000620735 00000 n +0000620771 00000 n +0000621106 00000 n +0000623983 00000 n +0000624006 00000 n +0000624341 00000 n +0000627010 00000 n +0000627033 00000 n +0000627338 00000 n +0000628100 00000 n +0000628122 00000 n +0000628158 00000 n +0000628463 00000 n +0000629358 00000 n +0000629380 00000 n +0000629416 00000 n +0000629721 00000 n +0000630004 00000 n +0000630026 00000 n +0000630331 00000 n +0000631243 00000 n +0000631265 00000 n +0000631301 00000 n +0000631606 00000 n +0000632159 00000 n +0000632181 00000 n +0000632585 00000 n +0000632626 00000 n +0000634088 00000 n +0000634111 00000 n +0000634147 00000 n +0000634551 00000 n +0000634619 00000 n +0000636707 00000 n +0000636730 00000 n +0000636766 00000 n +0000637133 00000 n +0000637165 00000 n +0000637951 00000 n +0000637973 00000 n +0000638362 00000 n +0000638403 00000 n +0000639047 00000 n +0000639069 00000 n +0000639106 00000 n +0000639495 00000 n +0000639718 00000 n +0000642263 00000 n +0000642286 00000 n +0000642323 00000 n +0000642675 00000 n +0000642999 00000 n +0000645945 00000 n +0000645968 00000 n +0000646320 00000 n +0000646644 00000 n +0000649773 00000 n +0000649796 00000 n +0000650163 00000 n +0000650359 00000 n +0000652648 00000 n +0000652671 00000 n +0000653075 00000 n +0000653234 00000 n +0000655054 00000 n +0000655077 00000 n +0000655113 00000 n +0000655465 00000 n +0000655561 00000 n +0000657019 00000 n +0000657042 00000 n +0000657214 00000 n +0000657361 00000 n +0000657728 00000 n +0000657764 00000 n +0000657936 00000 n +0000658083 00000 n +0000658893 00000 n +0000659065 00000 n +0000659225 00000 n +0000660430 00000 n +0000660602 00000 n +0000660762 00000 n +0000661576 00000 n +0000661748 00000 n +0000661908 00000 n +0000663915 00000 n +0000664087 00000 n +0000664234 00000 n +0000666238 00000 n +0000666410 00000 n +0000666557 00000 n +0000666837 00000 n +0000667009 00000 n +0000667156 00000 n +0000667692 00000 n +0000667728 00000 n +0000667900 00000 n +0000668047 00000 n +0000668787 00000 n +0000668959 00000 n +0000669106 00000 n +0000670525 00000 n +0000670697 00000 n +0000670844 00000 n +0000671750 00000 n +0000671922 00000 n +0000672082 00000 n +0000673351 00000 n +0000673523 00000 n +0000673683 00000 n +0000674418 00000 n +0000674590 00000 n +0000674750 00000 n +0000675484 00000 n +0000675656 00000 n +0000675816 00000 n +0000676751 00000 n +0000676923 00000 n +0000677070 00000 n +0000677524 00000 n +0000677560 00000 n +0000677732 00000 n +0000677879 00000 n +0000680704 00000 n +0000680876 00000 n +0000681036 00000 n +0000681672 00000 n +0000681844 00000 n +0000682004 00000 n +0000682764 00000 n +0000682936 00000 n +0000683096 00000 n +0000683665 00000 n +0000683837 00000 n +0000683997 00000 n +0000684776 00000 n +0000684948 00000 n +0000685108 00000 n +0000685824 00000 n +0000685996 00000 n +0000686143 00000 n +0000687173 00000 n +0000687345 00000 n +0000687492 00000 n +0000688048 00000 n +0000688084 00000 n +0000688256 00000 n +0000688403 00000 n +0000689300 00000 n +0000689472 00000 n +0000689619 00000 n +0000690884 00000 n +0000691056 00000 n +0000691203 00000 n +0000693008 00000 n +0000693180 00000 n +0000693327 00000 n +0000694097 00000 n +0000694269 00000 n +0000694416 00000 n +0000695258 00000 n +0000695430 00000 n +0000695577 00000 n +0000696712 00000 n +0000696884 00000 n +0000697031 00000 n +0000697707 00000 n +0000697743 00000 n +0000697915 00000 n +0000698062 00000 n +0000699450 00000 n +0000699622 00000 n +0000699782 00000 n +0000700875 00000 n +0000701047 00000 n +0000701207 00000 n +0000702186 00000 n +0000702358 00000 n +0000702518 00000 n +0000704238 00000 n +0000704410 00000 n +0000704557 00000 n +0000706321 00000 n +0000706493 00000 n +0000706653 00000 n +0000707589 00000 n +0000707761 00000 n +0000707921 00000 n +0000709225 00000 n +0000709397 00000 n +0000709557 00000 n +0000712153 00000 n +0000712325 00000 n +0000712472 00000 n +0000715531 00000 n +0000715703 00000 n +0000715850 00000 n +0000716530 00000 n +0000716702 00000 n +0000716849 00000 n +0000717239 00000 n +0000717275 00000 n +0000717447 00000 n +0000717607 00000 n +0000718107 00000 n +0000718279 00000 n +0000718439 00000 n +0000719044 00000 n +0000719216 00000 n +0000719376 00000 n +0000719925 00000 n +0000720097 00000 n +0000720257 00000 n +0000720877 00000 n +0000721049 00000 n +0000721209 00000 n +0000722153 00000 n +0000722325 00000 n +0000722485 00000 n +0000723051 00000 n +0000723223 00000 n +0000723370 00000 n +0000724084 00000 n +0000724256 00000 n +0000724403 00000 n +0000725235 00000 n +0000725407 00000 n +0000725554 00000 n +0000726010 00000 n +0000726046 00000 n +0000726218 00000 n +0000726365 00000 n +0000727575 00000 n +0000727747 00000 n +0000727907 00000 n +0000729856 00000 n +0000730028 00000 n +0000730188 00000 n +0000732514 00000 n +0000732686 00000 n +0000732833 00000 n +0000734759 00000 n +0000734931 00000 n +0000735091 00000 n +0000735866 00000 n +0000736038 00000 n +0000736198 00000 n +0000737963 00000 n +0000738135 00000 n +0000738295 00000 n +0000738965 00000 n +0000739137 00000 n +0000739297 00000 n +0000740258 00000 n +0000740430 00000 n +0000740590 00000 n +0000741461 00000 n +0000741633 00000 n +0000741793 00000 n +0000742653 00000 n +0000742825 00000 n +0000742985 00000 n +0000743690 00000 n +0000743862 00000 n +0000744009 00000 n +0000744793 00000 n +0000744965 00000 n +0000745112 00000 n +0000745541 00000 n +0000745579 00000 n +0000745751 00000 n +0000745911 00000 n +0000746756 00000 n +0000746928 00000 n +0000747088 00000 n +0000747844 00000 n +0000748016 00000 n +0000748176 00000 n +0000749233 00000 n +0000749405 00000 n +0000749552 00000 n +0000750950 00000 n +0000751122 00000 n +0000751269 00000 n +0000752601 00000 n +0000752773 00000 n +0000752920 00000 n +0000754015 00000 n +0000754187 00000 n +0000754347 00000 n +0000755158 00000 n +0000755330 00000 n +0000755490 00000 n +0000756279 00000 n +0000756451 00000 n +0000756611 00000 n +0000757277 00000 n +0000757449 00000 n +0000757609 00000 n +0000758435 00000 n +0000758607 00000 n +0000758767 00000 n +0000760175 00000 n +0000760564 00000 n +0000760806 00000 n +0000763035 00000 n +0000763058 00000 n +0000763094 00000 n +0000763446 00000 n +0000763542 00000 n +0000764725 00000 n +0000764748 00000 n +0000765152 00000 n +0000765193 00000 n +0000766563 00000 n +0000766586 00000 n +0000766622 00000 n +0000767011 00000 n +0000767052 00000 n +0000768556 00000 n +0000768579 00000 n +0000768616 00000 n +0000769005 00000 n +0000769064 00000 n +0000770992 00000 n +0000771015 00000 n +0000771051 00000 n +0000771418 00000 n +0000771614 00000 n +0000773249 00000 n +0000773272 00000 n +0000773661 00000 n +0000773811 00000 n +0000775769 00000 n +0000775792 00000 n +0000775828 00000 n +0000776163 00000 n +0000777578 00000 n +0000777601 00000 n +0000777990 00000 n +0000778168 00000 n +0000780071 00000 n +0000780094 00000 n +0000780130 00000 n +0000780482 00000 n +0000780596 00000 n +0000781776 00000 n +0000781799 00000 n +0000782104 00000 n +0000782800 00000 n +0000782822 00000 n +0000782859 00000 n +0000783164 00000 n +0000783663 00000 n +0000783685 00000 n +0000783721 00000 n +0000784026 00000 n +0000784549 00000 n +0000784571 00000 n +0000784608 00000 n +0000784913 00000 n +0000785537 00000 n +0000785559 00000 n +0000785596 00000 n +0000785901 00000 n +0000786757 00000 n +0000786779 00000 n +0000786816 00000 n +0000787121 00000 n +0000787865 00000 n +0000787887 00000 n +0000788192 00000 n +0000788846 00000 n +0000788868 00000 n +0000789173 00000 n +0000789916 00000 n +0000789938 00000 n +0000790243 00000 n +0000790819 00000 n +0000790841 00000 n +0000790878 00000 n +0000791183 00000 n +0000791774 00000 n +0000791796 00000 n +0000791832 00000 n +0000792137 00000 n +0000792997 00000 n +0000793019 00000 n +0000793056 00000 n +0000793361 00000 n +0000794038 00000 n +0000794060 00000 n +0000794365 00000 n +0000795016 00000 n +0000795038 00000 n +0000795343 00000 n +0000796115 00000 n +0000796137 00000 n +0000796442 00000 n +0000797081 00000 n +0000797103 00000 n +0000797408 00000 n +0000798002 00000 n +0000798024 00000 n +0000798060 00000 n +0000798365 00000 n +0000799136 00000 n +0000799158 00000 n +0000799194 00000 n +0000799499 00000 n +0000800241 00000 n +0000800263 00000 n +0000800568 00000 n +0000801245 00000 n +0000801267 00000 n +0000801572 00000 n +0000802416 00000 n +0000802438 00000 n +0000802476 00000 n +0000802781 00000 n +0000803339 00000 n +0000803361 00000 n +0000803666 00000 n +0000804466 00000 n +0000804488 00000 n +0000804524 00000 n +0000804829 00000 n +0000805237 00000 n +0000805259 00000 n +0000805564 00000 n +0000806495 00000 n +0000806517 00000 n +0000806553 00000 n +0000806858 00000 n +0000807557 00000 n +0000807579 00000 n +0000807884 00000 n +0000808513 00000 n +0000808535 00000 n +0000808840 00000 n +0000809412 00000 n +0000809434 00000 n +0000809739 00000 n +0000810293 00000 n +0000810315 00000 n +0000810620 00000 n +0000811453 00000 n +0000811475 00000 n +0000811780 00000 n +0000812384 00000 n +0000812406 00000 n +0000812711 00000 n +0000813715 00000 n +0000813737 00000 n +0000813773 00000 n +0000814078 00000 n +0000814847 00000 n +0000814869 00000 n +0000815174 00000 n +0000815914 00000 n +0000815936 00000 n +0000816241 00000 n +0000817133 00000 n +0000817155 00000 n +0000817460 00000 n +0000818003 00000 n +0000818025 00000 n +0000818330 00000 n +0000819161 00000 n +0000819183 00000 n +0000819219 00000 n +0000819524 00000 n +0000819879 00000 n +0000819901 00000 n +0000820206 00000 n +0000821030 00000 n +0000821052 00000 n +0000821088 00000 n +0000821393 00000 n +0000822116 00000 n +0000822138 00000 n +0000822443 00000 n +0000823136 00000 n +0000823158 00000 n +0000823463 00000 n +0000824155 00000 n +0000824177 00000 n +0000824482 00000 n +0000825285 00000 n +0000825307 00000 n +0000825612 00000 n +0000826347 00000 n +0000826369 00000 n +0000826674 00000 n +0000827395 00000 n +0000827417 00000 n +0000827722 00000 n +0000828575 00000 n +0000828597 00000 n +0000828633 00000 n +0000828938 00000 n +0000829347 00000 n +0000829369 00000 n +0000829674 00000 n +0000830189 00000 n +0000830211 00000 n +0000830247 00000 n +0000830552 00000 n +0000831075 00000 n +0000831097 00000 n +0000831133 00000 n +0000831438 00000 n +0000832238 00000 n +0000832260 00000 n +0000832296 00000 n +0000832601 00000 n +0000833076 00000 n +0000833098 00000 n +0000833403 00000 n +0000834346 00000 n +0000834368 00000 n +0000834404 00000 n +0000834709 00000 n +0000835159 00000 n +0000835181 00000 n +0000835486 00000 n +0000836436 00000 n +0000836458 00000 n +0000836494 00000 n +0000836799 00000 n +0000837583 00000 n +0000837605 00000 n +0000838009 00000 n +0000838041 00000 n +0000839648 00000 n +0000839671 00000 n +0000839707 00000 n +0000840057 00000 n +0000841737 00000 n +0000841760 00000 n +0000842110 00000 n +0000843755 00000 n +0000843778 00000 n +0000844128 00000 n +0000845804 00000 n +0000845827 00000 n +0000846162 00000 n +0000847485 00000 n +0000847508 00000 n +0000847927 00000 n +0000847959 00000 n +0000849126 00000 n +0000849149 00000 n +0000849185 00000 n +0000849587 00000 n +0000849619 00000 n +0000851476 00000 n +0000851499 00000 n +0000851535 00000 n +0000851915 00000 n +0000852038 00000 n +0000853631 00000 n +0000853654 00000 n +0000854028 00000 n +0000854060 00000 n +0000855161 00000 n +0000855184 00000 n +0000855221 00000 n +0000855526 00000 n +0000856650 00000 n +0000856673 00000 n +0000856978 00000 n +0000858234 00000 n +0000858257 00000 n +0000858579 00000 n +0000858702 00000 n +0000860204 00000 n +0000860227 00000 n +0000860532 00000 n +0000861469 00000 n +0000861491 00000 n +0000861796 00000 n +0000862856 00000 n +0000862878 00000 n +0000863183 00000 n +0000864142 00000 n +0000864164 00000 n +0000864469 00000 n +0000865543 00000 n +0000865565 00000 n +0000865870 00000 n +0000866950 00000 n +0000866973 00000 n +0000867278 00000 n +0000868369 00000 n +0000868392 00000 n +0000868697 00000 n +0000869866 00000 n +0000869889 00000 n +0000870209 00000 n +0000871047 00000 n +0000871069 00000 n +0000871473 00000 n +0000871523 00000 n +0000873072 00000 n +0000873095 00000 n +0000873132 00000 n +0000873506 00000 n +0000873538 00000 n +0000875500 00000 n +0000875523 00000 n +0000875560 00000 n +0000875895 00000 n +0000876772 00000 n +0000876794 00000 n +0000877183 00000 n +0000877233 00000 n +0000878882 00000 n +0000878905 00000 n +0000878941 00000 n +0000879293 00000 n +0000879352 00000 n +0000881285 00000 n +0000881308 00000 n +0000881480 00000 n +0000881640 00000 n +0000882094 00000 n +0000882130 00000 n +0000882302 00000 n +0000882449 00000 n +0000883007 00000 n +0000883179 00000 n +0000883326 00000 n +0000883838 00000 n +0000884010 00000 n +0000884157 00000 n +0000885148 00000 n +0000885320 00000 n +0000885480 00000 n +0000886321 00000 n +0000886493 00000 n +0000886640 00000 n +0000887328 00000 n +0000887500 00000 n +0000887647 00000 n +0000888550 00000 n +0000888722 00000 n +0000888869 00000 n +0000890026 00000 n +0000890198 00000 n +0000890345 00000 n +0000890942 00000 n +0000891114 00000 n +0000891261 00000 n +0000892065 00000 n +0000892237 00000 n +0000892384 00000 n +0000893139 00000 n +0000893311 00000 n +0000893458 00000 n +0000893922 00000 n +0000894094 00000 n +0000894241 00000 n +0000895026 00000 n +0000895198 00000 n +0000895345 00000 n +0000895900 00000 n +0000896072 00000 n +0000896219 00000 n +0000896815 00000 n +0000897219 00000 n +0000897260 00000 n +0000898417 00000 n +0000898440 00000 n +0000898476 00000 n +0000898877 00000 n +0000898909 00000 n +0000900364 00000 n +0000900387 00000 n +0000900411 00000 n +0000900448 00000 n +0000919378 00000 n +0000919402 00000 n +0000919438 00000 n +0000934350 00000 n +0000934386 00000 n +0000934774 00000 n +0000934806 00000 n +0000935487 00000 n +0000935509 00000 n +0000935533 00000 n +0000935569 00000 n +0000949706 00000 n +0000950123 00000 n +0000950209 00000 n +0000952123 00000 n +0000952146 00000 n +0000952182 00000 n +0000952515 00000 n +0000952830 00000 n +0000952852 00000 n +0000953241 00000 n +0000953327 00000 n +0000955765 00000 n +0000955788 00000 n +0000955824 00000 n +0000956176 00000 n +0000956208 00000 n +0000957129 00000 n +0000957151 00000 n +0000957540 00000 n +0000957581 00000 n +0000959540 00000 n +0000959563 00000 n +0000959599 00000 n +0000959936 00000 n +0000959968 00000 n +0000961428 00000 n +0000961451 00000 n +0000961855 00000 n +0000961914 00000 n +0000963221 00000 n +0000963244 00000 n +0000963281 00000 n +0000963684 00000 n +0000963716 00000 n +0000965828 00000 n +0000965851 00000 n +0000965874 00000 n +0000965910 00000 n +0000973042 00000 n +0000973078 00000 n +0000973476 00000 n +0000975519 00000 n +0000975542 00000 n +0000975566 00000 n +0000975602 00000 n +0000986419 00000 n +0000986443 00000 n +0000986479 00000 n +0000999735 00000 n +0000999759 00000 n +0000999795 00000 n +0001015174 00000 n +0001015526 00000 n +0001015576 00000 n +0001016806 00000 n +0001016829 00000 n +0001017246 00000 n +0001017287 00000 n +0001019256 00000 n +0001019279 00000 n +0001019315 00000 n +0001019695 00000 n +0001019736 00000 n +0001021821 00000 n +0001021844 00000 n +0001022233 00000 n +0001022265 00000 n +0001024476 00000 n +0001024499 00000 n +0001024536 00000 n +0001024873 00000 n +0001024905 00000 n +0001025498 00000 n +0001025520 00000 n +0001025924 00000 n +0001025965 00000 n +0001028088 00000 n +0001028111 00000 n +0001028147 00000 n +0001028551 00000 n +0001028592 00000 n +0001029380 00000 n +0001029402 00000 n +0001029439 00000 n +0001029828 00000 n +0001029887 00000 n +0001031654 00000 n +0001031677 00000 n +0001031713 00000 n +0001032050 00000 n +0001032082 00000 n +0001032877 00000 n +0001032899 00000 n +0001033303 00000 n +0001033344 00000 n +0001034809 00000 n +0001034832 00000 n +0001034869 00000 n +0001035258 00000 n +0001035290 00000 n +0001037154 00000 n +0001037177 00000 n +0001037213 00000 n +0001037533 00000 n +0001037839 00000 n +0001037861 00000 n +0001038250 00000 n +0001038282 00000 n +0001040183 00000 n +0001040206 00000 n +0001040242 00000 n +0001040577 00000 n +0001042128 00000 n +0001042151 00000 n +0001042555 00000 n +0001042605 00000 n +0001043815 00000 n +0001043838 00000 n +0001043874 00000 n +0001044239 00000 n +0001045660 00000 n +0001045683 00000 n +0001046035 00000 n +0001046076 00000 n +0001047837 00000 n +0001047860 00000 n +0001048195 00000 n +0001049388 00000 n +0001049411 00000 n +0001049761 00000 n +0001050793 00000 n +0001050815 00000 n +0001051218 00000 n +0001051387 00000 n +0001053722 00000 n +0001053745 00000 n +0001053769 00000 n +0001053805 00000 n +0001104495 00000 n +0001104531 00000 n +0001104898 00000 n +0001105076 00000 n +0001106713 00000 n +0001106736 00000 n +0001107125 00000 n +0001107175 00000 n +0001108996 00000 n +0001109019 00000 n +0001109055 00000 n +0001109390 00000 n +0001109843 00000 n +0001109865 00000 n +0001110254 00000 n +0001110313 00000 n +0001111839 00000 n +0001111862 00000 n +0001111898 00000 n +0001112287 00000 n +0001112364 00000 n +0001113715 00000 n +0001113738 00000 n +0001113775 00000 n +0001114164 00000 n +0001114433 00000 n +0001116622 00000 n +0001116645 00000 n +0001116681 00000 n +0001117018 00000 n +0001117177 00000 n +0001118791 00000 n +0001118814 00000 n +0001119169 00000 n +0001119238 00000 n +0001119797 00000 n +0001119820 00000 n +0001120213 00000 n +0001120273 00000 n +0001122460 00000 n +0001122484 00000 n +0001122522 00000 n +0001122878 00000 n +0001122938 00000 n +0001125453 00000 n +0001125477 00000 n +0001125830 00000 n +0001127366 00000 n +0001127390 00000 n +0001127783 00000 n +0001127861 00000 n +0001129086 00000 n +0001129110 00000 n +0001129147 00000 n +0001129555 00000 n +0001129642 00000 n +0001131329 00000 n +0001131353 00000 n +0001131391 00000 n +0001131784 00000 n +0001131853 00000 n +0001133018 00000 n +0001133042 00000 n +0001133079 00000 n +0001133487 00000 n +0001133574 00000 n +0001135174 00000 n +0001135198 00000 n +0001135235 00000 n +0001135643 00000 n +0001135703 00000 n +0001137774 00000 n +0001137798 00000 n +0001137835 00000 n +0001138173 00000 n +0001138890 00000 n +0001138913 00000 n +0001139306 00000 n +0001139357 00000 n +0001140799 00000 n +0001140823 00000 n +0001140861 00000 n +0001141254 00000 n +0001141323 00000 n +0001143598 00000 n +0001143622 00000 n +0001143660 00000 n +0001144016 00000 n +0001144067 00000 n +0001145837 00000 n +0001145861 00000 n +0001146254 00000 n +0001146341 00000 n +0001148338 00000 n +0001148362 00000 n +0001148400 00000 n +0001148756 00000 n +0001148853 00000 n +0001151116 00000 n +0001151140 00000 n +0001151221 00000 n +0001151330 00000 n +0001151434 00000 n +0001151547 00000 n +0001151627 00000 n +0001151719 00000 n +0001151808 00000 n +0001151899 00000 n +0001151985 00000 n +0001152072 00000 n +0001152152 00000 n +0001152258 00000 n +0001152319 00000 n +0001152399 00000 n +0001152479 00000 n +0001152559 00000 n +0001152653 00000 n +0001152733 00000 n +0001152813 00000 n +0001152893 00000 n +0001152973 00000 n +0001153067 00000 n +0001153178 00000 n +0001154529 00000 n +0001156417 00000 n +0001156606 00000 n +0001156871 00000 n +0001157342 00000 n +0001157840 00000 n +0001157918 00000 n +0001157977 00000 n +0001158099 00000 n +0001158128 00000 n +0001158462 00000 n +0001158933 00000 n +0001159367 00000 n +0001159427 00000 n +0001159569 00000 n +0001159702 00000 n +0001159817 00000 n +0001159886 00000 n +0001160083 00000 n +0001160528 00000 n +0001160698 00000 n +0001160831 00000 n +0001161156 00000 n +0001161262 00000 n +0001161322 00000 n +0001161428 00000 n +0001161461 00000 n +0001161612 00000 n +0001161745 00000 n +0001161942 00000 n +0001162387 00000 n +0001162602 00000 n +0001162772 00000 n +0001162805 00000 n +0001162938 00000 n +0001163098 00000 n +0001163240 00000 n +0001163337 00000 n +0001163497 00000 n +0001163972 00000 n +0001164132 00000 n +0001164229 00000 n +0001164335 00000 n +0001164377 00000 n +0001164510 00000 n +0001164579 00000 n +0001164639 00000 n +0001164672 00000 n +0001164705 00000 n +0001164738 00000 n +0001164771 00000 n +0001164804 00000 n +0001164937 00000 n +0001165125 00000 n +0001165605 00000 n +0001165665 00000 n +0001165743 00000 n +0001166259 00000 n +0001166949 00000 n +0001167429 00000 n +0001167909 00000 n +0001168517 00000 n +0001168997 00000 n +0001169413 00000 n +0001169811 00000 n +0001170291 00000 n +0001170534 00000 n +0001171087 00000 n +0001171567 00000 n +0001171746 00000 n +0001171934 00000 n +0001172076 00000 n +0001172236 00000 n +0001172670 00000 n +0001173150 00000 n +0001173466 00000 n +0001173544 00000 n +0001174024 00000 n +0001174540 00000 n +0001174801 00000 n +0001174834 00000 n +0001174867 00000 n +0001174900 00000 n +0001175380 00000 n +0001175413 00000 n +0001175446 00000 n +0001175479 00000 n +0001175512 00000 n +0001175545 00000 n +0001175578 00000 n +0001175611 00000 n +0001175644 00000 n +0001175677 00000 n +0001175710 00000 n +0001175743 00000 n +0001175776 00000 n +0001175809 00000 n +0001175842 00000 n +0001175875 00000 n +0001175908 00000 n +0001175941 00000 n +0001175974 00000 n +0001176007 00000 n +0001176040 00000 n +0001176073 00000 n +0001176106 00000 n +0001176139 00000 n +0001176172 00000 n +0001176205 00000 n +0001176238 00000 n +0001176271 00000 n +0001176304 00000 n +0001176337 00000 n +0001176370 00000 n +0001176403 00000 n +0001176436 00000 n +0001176916 00000 n +0001176949 00000 n +0001176982 00000 n +0001177015 00000 n +0001177048 00000 n +0001177081 00000 n +0001177114 00000 n +0001177147 00000 n +0001177180 00000 n +0001177213 00000 n +0001177246 00000 n +0001177279 00000 n +0001177312 00000 n +0001177345 00000 n +0001177378 00000 n +0001177411 00000 n +0001177444 00000 n +0001177477 00000 n +0001177510 00000 n +0001177543 00000 n +0001177703 00000 n +0001177873 00000 n +0001178024 00000 n +0001178194 00000 n +0001178318 00000 n +0001178460 00000 n +0001178620 00000 n +0001178917 00000 n +0001179397 00000 n +0001179466 00000 n +0001179508 00000 n +0001179550 00000 n +0001179793 00000 n +0001179853 00000 n +0001179904 00000 n +0001179964 00000 n +0001179997 00000 n +0001180048 00000 n +0001180081 00000 n +0001180132 00000 n +0001180612 00000 n +0001180690 00000 n +0001180832 00000 n +0001180938 00000 n +0001180989 00000 n +0001181177 00000 n +0001181356 00000 n +0001181498 00000 n +0001181604 00000 n +0001181682 00000 n +0001181906 00000 n +0001182386 00000 n +0001182419 00000 n +0001182625 00000 n +0001182703 00000 n +0001182854 00000 n +0001182941 00000 n +0001183065 00000 n +0001183171 00000 n +0001183331 00000 n +0001183437 00000 n +0001183579 00000 n +0001183712 00000 n +0001184192 00000 n +0001184289 00000 n +0001184358 00000 n +0001184473 00000 n +0001184570 00000 n +0001184776 00000 n +0001184863 00000 n +0001184969 00000 n +0001185093 00000 n +0001185126 00000 n +0001185250 00000 n +0001185310 00000 n +0001185461 00000 n +0001185941 00000 n +0001186421 00000 n +0001186563 00000 n +0001186669 00000 n +0001186766 00000 n +0001187218 00000 n +0001187524 00000 n +0001188004 00000 n +0001188183 00000 n +0001188225 00000 n +0001188376 00000 n +0001188564 00000 n +0001189217 00000 n +0001189697 00000 n +0001190232 00000 n +0001190712 00000 n +0001190836 00000 n +0001191006 00000 n +0001191203 00000 n +0001191290 00000 n +0001191423 00000 n +0001191638 00000 n +0001192118 00000 n +0001192260 00000 n +0001192512 00000 n +0001192672 00000 n +0001192723 00000 n +0001192874 00000 n +0001193044 00000 n +0001193524 00000 n +0001194347 00000 n +0001194608 00000 n +0001194878 00000 n +0001195130 00000 n +0001195185 00000 n +0001195237 00000 n +0001195290 00000 n +0001195343 00000 n +0001195396 00000 n +0001195445 00000 n +0001195499 00000 n +0001195553 00000 n +0001195607 00000 n +0001195660 00000 n +0001195714 00000 n +0001195768 00000 n +0001195822 00000 n +0001195875 00000 n +0001195929 00000 n +0001195983 00000 n +0001196037 00000 n +0001196091 00000 n +0001196144 00000 n +0001196198 00000 n +0001196252 00000 n +0001196302 00000 n +0001196356 00000 n +0001196404 00000 n +0001196458 00000 n +0001196512 00000 n +0001196566 00000 n +0001196620 00000 n +0001196674 00000 n +0001196728 00000 n +0001196782 00000 n +0001196836 00000 n +0001196890 00000 n +0001196943 00000 n +0001196997 00000 n +0001197051 00000 n +0001197104 00000 n +0001197157 00000 n +0001197211 00000 n +0001197264 00000 n +0001197885 00000 n +0001198984 00000 n +0001199038 00000 n +0001199093 00000 n +0001199148 00000 n +0001199203 00000 n +0001200576 00000 n +0001200657 00000 n +0001200859 00000 n +0001200939 00000 n +0001201059 00000 n +0001201122 00000 n +0001201177 00000 n +0001201232 00000 n +0001201315 00000 n +0001201435 00000 n +0001201498 00000 n +0001201580 00000 n +0001201628 00000 n +0001201748 00000 n +0001201855 00000 n +0001201984 00000 n +0001202122 00000 n +0001202426 00000 n +0001202459 00000 n +0001202541 00000 n +0001202694 00000 n +0001202757 00000 n +0001202794 00000 n +0001202815 00000 n +0001202881 00000 n +0001202966 00000 n +0001203107 00000 n +0001203170 00000 n +0001203207 00000 n +0001203245 00000 n +0001203329 00000 n +0001203479 00000 n +0001203542 00000 n +0001203580 00000 n +0001203663 00000 n +0001203779 00000 n +0001203842 00000 n +0001203925 00000 n +0001204008 00000 n +0001204172 00000 n +0001204235 00000 n +0001204272 00000 n +0001204293 00000 n +0001204407 00000 n +0001204514 00000 n +0001204543 00000 n +0001204626 00000 n +0001204776 00000 n +0001204839 00000 n +0001204876 00000 n +0001204959 00000 n +0001205075 00000 n +0001205138 00000 n +0001205252 00000 n +0001205294 00000 n +0001205376 00000 n +0001205540 00000 n +0001205603 00000 n +0001205640 00000 n +0001205661 00000 n +0001205698 00000 n +0001205784 00000 n +0001205934 00000 n +0001205997 00000 n +0001206034 00000 n +0001206148 00000 n +0001206176 00000 n +0001206259 00000 n +0001206416 00000 n +0001206479 00000 n +0001206517 00000 n +0001206559 00000 n +0001206644 00000 n +0001206794 00000 n +0001206857 00000 n +0001206894 00000 n +0001206975 00000 n +0001207056 00000 n +0001207190 00000 n +0001207253 00000 n +0001207291 00000 n +0001207405 00000 n +0001207441 00000 n +0001207524 00000 n +0001207700 00000 n +0001207763 00000 n +0001207800 00000 n +0001207919 00000 n +0001207964 00000 n +0001208050 00000 n +0001208219 00000 n +0001208282 00000 n +0001208319 00000 n +0001208438 00000 n +0001208481 00000 n +0001208568 00000 n +0001208729 00000 n +0001208792 00000 n +0001208829 00000 n +0001208912 00000 n +0001208995 00000 n +0001209131 00000 n +0001209194 00000 n +0001209231 00000 n +0001209311 00000 n +0001209391 00000 n +0001209535 00000 n +0001209598 00000 n +0001209636 00000 n +0001209755 00000 n +0001209839 00000 n +0001209923 00000 n +0001210067 00000 n +0001210130 00000 n +0001210167 00000 n +0001210198 00000 n +0001210281 00000 n +0001210426 00000 n +0001210489 00000 n +0001210526 00000 n +0001210569 00000 n +0001210651 00000 n +0001210804 00000 n +0001210867 00000 n +0001210904 00000 n +0001210940 00000 n +0001211023 00000 n +0001211168 00000 n +0001211231 00000 n +0001211269 00000 n +0001211388 00000 n +0001211446 00000 n +0001211530 00000 n +0001211699 00000 n +0001211762 00000 n +0001211799 00000 n +0001211918 00000 n +0001211976 00000 n +0001212061 00000 n +0001212214 00000 n +0001212277 00000 n +0001212315 00000 n +0001212440 00000 n +0001212565 00000 n +0001212684 00000 n +0001212764 00000 n +0001213000 00000 n +0001213063 00000 n +0001213190 00000 n +0001213309 00000 n +0001213388 00000 n +0001213631 00000 n +0001213694 00000 n +0001213813 00000 n +0001213892 00000 n +0001214135 00000 n +0001214198 00000 n +0001214317 00000 n +0001214442 00000 n +0001214521 00000 n +0001214756 00000 n +0001214819 00000 n +0001214938 00000 n +0001215065 00000 n +0001215184 00000 n +0001215263 00000 n +0001215531 00000 n +0001215594 00000 n +0001215713 00000 n +0001215792 00000 n +0001216044 00000 n +0001216107 00000 n +0001216242 00000 n +0001216367 00000 n +0001216486 00000 n +0001216605 00000 n +0001216684 00000 n +0001216968 00000 n +0001217031 00000 n +0001217166 00000 n +0001217285 00000 n +0001217364 00000 n +0001217640 00000 n +0001217703 00000 n +0001217743 00000 n +0001217826 00000 n +0001217979 00000 n +0001218042 00000 n +0001218079 00000 n +0001218160 00000 n +0001218241 00000 n +0001218386 00000 n +0001218449 00000 n +0001218486 00000 n +0001218537 00000 n +0001218621 00000 n +0001218766 00000 n +0001218829 00000 n +0001218866 00000 n +0001218985 00000 n +0001219030 00000 n +0001219111 00000 n +0001219264 00000 n +0001219327 00000 n +0001219364 00000 n +0001219489 00000 n +0001219532 00000 n +0001219612 00000 n +0001219765 00000 n +0001219828 00000 n +0001219865 00000 n +0001219914 00000 n +0001219995 00000 n +0001220148 00000 n +0001220211 00000 n +0001220250 00000 n +0001220369 00000 n +0001220450 00000 n +0001220531 00000 n +0001220667 00000 n +0001220730 00000 n +0001220767 00000 n +0001220851 00000 n +0001220935 00000 n +0001221071 00000 n +0001221134 00000 n +0001221171 00000 n +0001221254 00000 n +0001221337 00000 n +0001221473 00000 n +0001221536 00000 n +0001221574 00000 n +0001221658 00000 n +0001221742 00000 n +0001221878 00000 n +0001221941 00000 n +0001221981 00000 n +0001222100 00000 n +0001222180 00000 n +0001222260 00000 n +0001222420 00000 n +0001222483 00000 n +0001222520 00000 n +0001222598 00000 n +0001222676 00000 n +0001222812 00000 n +0001222875 00000 n +0001222913 00000 n +0001222993 00000 n +0001223073 00000 n +0001223209 00000 n +0001223272 00000 n +0001223309 00000 n +0001223428 00000 n +0001223508 00000 n +0001223588 00000 n +0001223756 00000 n +0001223819 00000 n +0001223856 00000 n +0001223975 00000 n +0001224057 00000 n +0001224139 00000 n +0001224275 00000 n +0001224338 00000 n +0001224376 00000 n +0001224456 00000 n +0001224536 00000 n +0001224688 00000 n +0001224751 00000 n +0001224788 00000 n +0001224907 00000 n +0001224988 00000 n +0001225069 00000 n +0001225213 00000 n +0001225276 00000 n +0001225314 00000 n +0001225439 00000 n +0001225519 00000 n +0001225599 00000 n +0001225743 00000 n +0001225806 00000 n +0001225844 00000 n +0001225963 00000 n +0001226043 00000 n +0001226123 00000 n +0001226307 00000 n +0001226370 00000 n +0001226407 00000 n +0001226526 00000 n +0001226611 00000 n +0001226696 00000 n +0001226864 00000 n +0001226927 00000 n +0001226964 00000 n +0001227083 00000 n +0001227169 00000 n +0001227255 00000 n +0001227399 00000 n +0001227462 00000 n +0001227499 00000 n +0001227618 00000 n +0001227698 00000 n +0001227778 00000 n +0001227962 00000 n +0001228025 00000 n +0001228062 00000 n +0001228181 00000 n +0001228265 00000 n +0001228349 00000 n +0001228493 00000 n +0001228556 00000 n +0001228593 00000 n +0001228718 00000 n +0001228802 00000 n +0001228886 00000 n +0001229022 00000 n +0001229085 00000 n +0001229122 00000 n +0001229206 00000 n +0001229290 00000 n +0001229426 00000 n +0001229489 00000 n +0001229526 00000 n +0001229608 00000 n +0001229690 00000 n +0001229834 00000 n +0001229897 00000 n +0001229934 00000 n +0001230053 00000 n +0001230137 00000 n +0001230221 00000 n +0001230365 00000 n +0001230428 00000 n +0001230466 00000 n +0001230547 00000 n +0001230628 00000 n +0001230772 00000 n +0001230835 00000 n +0001230872 00000 n +0001230991 00000 n +0001231033 00000 n +0001231118 00000 n +0001231295 00000 n +0001231358 00000 n +0001231395 00000 n +0001231461 00000 n +0001231544 00000 n +0001231689 00000 n +0001231752 00000 n +0001231789 00000 n +0001232845 00000 n +0001233808 00000 n +0001233927 00000 n +0001233967 00000 n +0001234047 00000 n +0001234200 00000 n +0001234263 00000 n +0001234300 00000 n +0001235300 00000 n +0001236608 00000 n +0001236727 00000 n +0001236846 00000 n +0001236971 00000 n +0001237019 00000 n +0001237105 00000 n +0001237339 00000 n +0001237402 00000 n +0001237439 00000 n +0001237489 00000 n +0001237574 00000 n +0001237719 00000 n +0001237782 00000 n +0001237820 00000 n +0001237939 00000 n +0001237969 00000 n +0001238053 00000 n +0001238206 00000 n +0001238269 00000 n +0001238306 00000 n +0001238370 00000 n +0001238454 00000 n +0001238607 00000 n +0001238670 00000 n +0001238707 00000 n +0001238859 00000 n +0001238978 00000 n +0001239097 00000 n +0001239179 00000 n +0001239482 00000 n +0001239545 00000 n +0001239591 00000 n +0001239674 00000 n +0001239819 00000 n +0001239882 00000 n +0001239922 00000 n +0001240006 00000 n +0001240124 00000 n +0001240187 00000 n +0001240271 00000 n +0001240389 00000 n +0001240452 00000 n +0001240536 00000 n +0001240654 00000 n +0001240717 00000 n +0001240752 00000 n +0001240835 00000 n +0001240988 00000 n +0001241051 00000 n +0001241088 00000 n +0001241109 00000 n +0001241130 00000 n +0001241151 00000 n +0001241193 00000 n +0001241276 00000 n +0001241429 00000 n +0001241492 00000 n +0001241530 00000 n +0001241649 00000 n +0001241774 00000 n +0001241805 00000 n +0001241888 00000 n +0001242041 00000 n +0001242104 00000 n +0001242143 00000 n +0001242172 00000 n +0001242255 00000 n +0001242408 00000 n +0001242471 00000 n +0001242509 00000 n +0001242545 00000 n +0001242628 00000 n +0001242773 00000 n +0001242836 00000 n +0001242873 00000 n +0001242957 00000 n +0001243075 00000 n +0001243138 00000 n +0001243222 00000 n +0001243340 00000 n +0001243403 00000 n +0001243487 00000 n +0001243605 00000 n +0001243668 00000 n +0001243752 00000 n +0001243870 00000 n +0001243933 00000 n +0001244052 00000 n +0001244085 00000 n +0001244168 00000 n +0001244329 00000 n +0001244392 00000 n +0001244429 00000 n +0001244450 00000 n +0001244471 00000 n +0001244492 00000 n +0001244513 00000 n +0001244555 00000 n +0001244638 00000 n +0001244791 00000 n +0001244854 00000 n +0001244891 00000 n +0001245010 00000 n +0001245045 00000 n +0001245128 00000 n +0001245281 00000 n +0001245344 00000 n +0001245381 00000 n +0001245414 00000 n +0001245497 00000 n +0001245642 00000 n +0001245705 00000 n +0001245742 00000 n +0001245773 00000 n +0001245856 00000 n +0001246001 00000 n +0001246064 00000 n +0001246101 00000 n +0001246220 00000 n +0001246249 00000 n +0001246332 00000 n +0001246485 00000 n +0001246548 00000 n +0001246585 00000 n +0001246621 00000 n +0001246704 00000 n +0001246849 00000 n +0001246912 00000 n +0001246949 00000 n +0001247005 00000 n +0001247088 00000 n +0001247241 00000 n +0001247304 00000 n +0001247341 00000 n +0001247460 00000 n +0001247502 00000 n +0001247584 00000 n +0001247737 00000 n +0001247800 00000 n +0001247838 00000 n +0001247957 00000 n +0001248008 00000 n +0001248094 00000 n +0001248271 00000 n +0001248334 00000 n +0001248371 00000 n +0001248451 00000 n +0001248569 00000 n +0001248632 00000 n +0001248794 00000 n +0001248920 00000 n +0001249046 00000 n +0001249112 00000 n +0001249196 00000 n +0001249349 00000 n +0001249412 00000 n +0001249449 00000 n +0001249470 00000 n +0001249530 00000 n +0001249612 00000 n +0001249765 00000 n +0001249828 00000 n +0001249865 00000 n +0001249984 00000 n +0001250029 00000 n +0001250114 00000 n +0001250259 00000 n +0001250322 00000 n +0001250359 00000 n +0001250407 00000 n +0001250492 00000 n +0001250637 00000 n +0001250700 00000 n +0001250737 00000 n +0001250811 00000 n +0001250891 00000 n +0001251053 00000 n +0001251116 00000 n +0001251154 00000 n +0001251274 00000 n +0001251324 00000 n +0001251408 00000 n +0001251573 00000 n +0001251636 00000 n +0001251673 00000 n +0001251735 00000 n +0001251817 00000 n +0001251964 00000 n +0001252027 00000 n +0001252064 00000 n +0001252100 00000 n +0001252185 00000 n +0001252332 00000 n +0001252395 00000 n +0001252432 00000 n +0001252556 00000 n +0001252618 00000 n +0001252700 00000 n +0001252847 00000 n +0001252910 00000 n +0001252947 00000 n +0001252973 00000 n +0001253058 00000 n +0001253205 00000 n +0001253268 00000 n +0001253305 00000 n +0001253347 00000 n +0001253429 00000 n +0001253585 00000 n +0001253648 00000 n +0001253686 00000 n +0001253759 00000 n +0001253844 00000 n +0001253991 00000 n +0001254054 00000 n +0001254091 00000 n +0001254252 00000 n +0001254316 00000 n +0001254398 00000 n +0001254554 00000 n +0001254617 00000 n +0001254654 00000 n +0001254719 00000 n +0001254803 00000 n +0001254959 00000 n +0001255022 00000 n +0001255059 00000 n +trailer << /Size 1949 /ID[<874e1efc9c008bbaeb06504d0a9f6571>] >> startxref 173 %%EOF \ No newline at end of file diff --git a/papers/The Art of Multiprocessor Hash Tables.pdf b/papers/The Art of Multiprocessor Hash Tables.pdf new file mode 100644 index 0000000..aa15d4b Binary files /dev/null and b/papers/The Art of Multiprocessor Hash Tables.pdf differ diff --git a/papers/Universal Classes of Hash Functions.pdf b/papers/Universal Classes of Hash Functions.pdf new file mode 100644 index 0000000..865b7b0 Binary files /dev/null and b/papers/Universal Classes of Hash Functions.pdf differ diff --git a/papers/donald-e-knuth-the-art-of-computer-programming-vol-3.pdf b/papers/donald-e-knuth-the-art-of-computer-programming-vol-3.pdf new file mode 100644 index 0000000..9f5f573 Binary files /dev/null and b/papers/donald-e-knuth-the-art-of-computer-programming-vol-3.pdf differ diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..5c17d86 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +pytest>=7.4.0 +matplotlib>=3.7.0 +numpy>=1.24.0 + diff --git a/src/__init__.py b/src/__init__.py new file mode 100644 index 0000000..d421884 --- /dev/null +++ b/src/__init__.py @@ -0,0 +1,40 @@ +""" +Hash Tables and Hash Functions Package + +This package provides implementations of various hash table data structures +and hash functions for educational and research purposes. +""" + +from .hash_functions import ( + division_hash, + multiplication_hash, + universal_hash, + string_hash_simple, + string_hash_polynomial, + string_hash_djb2, + md5_hash, + bad_hash_clustering, + get_hash_function +) + +from .hash_tables import ( + DirectAddressTable, + HashTableOpenAddressing, + HashTableSeparateChaining +) + +__all__ = [ + 'division_hash', + 'multiplication_hash', + 'universal_hash', + 'string_hash_simple', + 'string_hash_polynomial', + 'string_hash_djb2', + 'md5_hash', + 'bad_hash_clustering', + 'get_hash_function', + 'DirectAddressTable', + 'HashTableOpenAddressing', + 'HashTableSeparateChaining', +] + diff --git a/src/benchmark.py b/src/benchmark.py new file mode 100644 index 0000000..4e11ee6 --- /dev/null +++ b/src/benchmark.py @@ -0,0 +1,570 @@ +""" +Benchmarking utilities for hash table performance analysis. +""" + +import time +import random +import statistics +from typing import List, Dict, Any, Callable, Tuple +from .hash_tables import HashTableOpenAddressing, HashTableSeparateChaining +from .hash_functions import ( + division_hash, + multiplication_hash, + string_hash_polynomial, + string_hash_simple, + bad_hash_clustering +) + + +def benchmark_insert( + hash_table: Any, + keys: List[int], + values: List[Any] = None +) -> float: + """ + Benchmark insertion operations. + + Args: + hash_table: Hash table instance + keys: List of keys to insert + values: Optional list of values (defaults to same as keys) + + Returns: + Time taken in seconds + """ + if values is None: + values = keys + + start = time.perf_counter() + for key, value in zip(keys, values): + hash_table.insert(key, value) + end = time.perf_counter() + + return end - start + + +def benchmark_search( + hash_table: Any, + keys: List[int] +) -> Tuple[float, int]: + """ + Benchmark search operations. + + Args: + hash_table: Hash table instance + keys: List of keys to search for + + Returns: + Tuple of (time taken in seconds, number of successful searches) + """ + start = time.perf_counter() + found = 0 + for key in keys: + if hash_table.search(key) is not None: + found += 1 + end = time.perf_counter() + + return end - start, found + + +def benchmark_delete( + hash_table: Any, + keys: List[int] +) -> Tuple[float, int]: + """ + Benchmark delete operations. + + Args: + hash_table: Hash table instance + keys: List of keys to delete + + Returns: + Tuple of (time taken in seconds, number of successful deletions) + """ + start = time.perf_counter() + deleted = 0 + for key in keys: + if hash_table.delete(key): + deleted += 1 + end = time.perf_counter() + + return end - start, deleted + + +def generate_test_data(n: int, key_range: Tuple[int, int] = None) -> List[int]: + """ + Generate test data for benchmarking. + + Args: + n: Number of keys to generate + key_range: Optional tuple (min, max) for key range + + Returns: + List of random keys + """ + if key_range is None: + key_range = (0, n * 10) + + random.seed(42) # For reproducibility + return [random.randint(key_range[0], key_range[1]) for _ in range(n)] + + +def benchmark_hash_functions( + hash_funcs: Dict[str, Callable], + keys: List[int], + table_size: int +) -> Dict[str, Dict[str, Any]]: + """ + Benchmark different hash functions. + + Args: + hash_funcs: Dictionary mapping function names to hash functions + keys: List of keys to hash + table_size: Size of hash table + + Returns: + Dictionary with benchmark results including collision counts + """ + results = {} + + for name, hash_func in hash_funcs.items(): + start = time.perf_counter() + hash_values = [hash_func(k, table_size) for k in keys] + end = time.perf_counter() + + # Count collisions + collision_count = len(keys) - len(set(hash_values)) + collision_rate = collision_count / len(keys) if keys else 0 + + # Calculate distribution (variance of bucket sizes) + bucket_counts = {} + for hv in hash_values: + bucket_counts[hv] = bucket_counts.get(hv, 0) + 1 + + bucket_sizes = list(bucket_counts.values()) + if bucket_sizes: + avg_bucket_size = sum(bucket_sizes) / len(bucket_sizes) + variance = sum((x - avg_bucket_size) ** 2 for x in bucket_sizes) / len(bucket_sizes) + else: + variance = 0 + + results[name] = { + 'time': end - start, + 'collisions': collision_count, + 'collision_rate': collision_rate, + 'variance': variance, + 'buckets_used': len(bucket_counts), + 'max_chain_length': max(bucket_sizes) if bucket_sizes else 0 + } + + return results + + +def benchmark_open_addressing_vs_chaining( + sizes: List[int], + probe_types: List[str] = ['linear', 'quadratic', 'double'] +) -> Dict[str, List[Dict[str, Any]]]: + """ + Compare open addressing (different probe types) vs separate chaining. + + Args: + sizes: List of data sizes to test + probe_types: List of probe types to test + + Returns: + Dictionary with benchmark results + """ + results = { + 'open_addressing': {pt: [] for pt in probe_types}, + 'separate_chaining': [] + } + + for size in sizes: + keys = generate_test_data(size) + table_size = int(size * 1.5) # Start with 1.5x load factor + + # Test open addressing with different probe types + for probe_type in probe_types: + ht = HashTableOpenAddressing(table_size, probe_type=probe_type) + + insert_time = benchmark_insert(ht, keys) + search_time, found = benchmark_search(ht, keys[:size//2]) + delete_time, deleted = benchmark_delete(ht, keys[:size//4]) + + load_factor = ht._load_factor() + + results['open_addressing'][probe_type].append({ + 'size': size, + 'insert_time': insert_time, + 'search_time': search_time, + 'delete_time': delete_time, + 'load_factor': load_factor, + 'found': found, + 'deleted': deleted + }) + + # Test separate chaining + ht = HashTableSeparateChaining(table_size) + + insert_time = benchmark_insert(ht, keys) + search_time, found = benchmark_search(ht, keys[:size//2]) + delete_time, deleted = benchmark_delete(ht, keys[:size//4]) + + chain_lengths = ht.get_chain_lengths() + avg_chain_length = sum(chain_lengths) / len(chain_lengths) if chain_lengths else 0 + max_chain_length = max(chain_lengths) if chain_lengths else 0 + + results['separate_chaining'].append({ + 'size': size, + 'insert_time': insert_time, + 'search_time': search_time, + 'delete_time': delete_time, + 'load_factor': ht._load_factor(), + 'found': found, + 'deleted': deleted, + 'avg_chain_length': avg_chain_length, + 'max_chain_length': max_chain_length + }) + + return results + + +def benchmark_load_factor_impact( + initial_size: int, + max_elements: int, + probe_type: str = 'linear', + num_runs: int = 5 +) -> Dict[str, List[Dict[str, Any]]]: + """ + Benchmark performance at different load factors with multiple runs for statistical accuracy. + + Args: + initial_size: Initial hash table size + max_elements: Maximum number of elements to insert + probe_type: Probe type for open addressing + num_runs: Number of runs per load factor for averaging + + Returns: + Dictionary with results for open addressing and separate chaining + """ + results = { + 'open_addressing': [], + 'separate_chaining': [] + } + + num_samples = 10 + batch_size = max_elements // num_samples + + # Test open addressing + for i in range(0, max_elements, batch_size): + if i + batch_size > max_elements: + continue + + # Run multiple times to get statistical averages + insert_times = [] + search_times = [] + load_factors = [] + + for run in range(num_runs): + keys = generate_test_data(max_elements) + ht_oa = HashTableOpenAddressing(initial_size, probe_type=probe_type) + inserted_keys_oa = [] + + # Insert up to (but not including) current batch + for j in range(0, i, batch_size): + batch_keys = keys[j:j+batch_size] + if not batch_keys: + continue + for key in batch_keys: + ht_oa.insert(key, key) + inserted_keys_oa.extend(batch_keys) + + # Measure insert time for this batch (normalized per element) + batch_keys = keys[i:i+batch_size] + if batch_keys: + batch_start = time.perf_counter() + for key in batch_keys: + ht_oa.insert(key, key) + batch_end = time.perf_counter() + insert_time_per_element = (batch_end - batch_start) / len(batch_keys) + insert_times.append(insert_time_per_element) + inserted_keys_oa.extend(batch_keys) + + # Benchmark search on a sample of ALL inserted keys + search_sample_size = min(100, len(inserted_keys_oa)) + search_keys = inserted_keys_oa[:search_sample_size] if inserted_keys_oa else [] + if search_keys: + search_time, _ = benchmark_search(ht_oa, search_keys) + search_time_per_element = search_time / len(search_keys) + search_times.append(search_time_per_element) + + load_factors.append(ht_oa._load_factor()) + + # Compute statistics + if insert_times and search_times: + import statistics + avg_insert = statistics.mean(insert_times) + std_insert = statistics.stdev(insert_times) if len(insert_times) > 1 else 0 + avg_search = statistics.mean(search_times) + std_search = statistics.stdev(search_times) if len(search_times) > 1 else 0 + avg_load_factor = statistics.mean(load_factors) + + results['open_addressing'].append({ + 'elements': i + batch_size, + 'load_factor': avg_load_factor, + 'insert_time': avg_insert, + 'insert_time_std': std_insert, + 'search_time': avg_search, + 'search_time_std': std_search + }) + + # Test separate chaining + for i in range(0, max_elements, batch_size): + if i + batch_size > max_elements: + continue + + # Run multiple times to get statistical averages + insert_times = [] + search_times = [] + load_factors = [] + chain_lengths_list = [] + + for run in range(num_runs): + keys = generate_test_data(max_elements) + ht_sc = HashTableSeparateChaining(initial_size) + inserted_keys_sc = [] + + # Insert up to (but not including) current batch + for j in range(0, i, batch_size): + batch_keys = keys[j:j+batch_size] + if not batch_keys: + continue + for key in batch_keys: + ht_sc.insert(key, key) + inserted_keys_sc.extend(batch_keys) + + # Measure insert time for this batch (normalized per element) + batch_keys = keys[i:i+batch_size] + if batch_keys: + batch_start = time.perf_counter() + for key in batch_keys: + ht_sc.insert(key, key) + batch_end = time.perf_counter() + insert_time_per_element = (batch_end - batch_start) / len(batch_keys) + insert_times.append(insert_time_per_element) + inserted_keys_sc.extend(batch_keys) + + # Benchmark search on a sample of ALL inserted keys + search_sample_size = min(100, len(inserted_keys_sc)) + search_keys = inserted_keys_sc[:search_sample_size] if inserted_keys_sc else [] + if search_keys: + search_time, _ = benchmark_search(ht_sc, search_keys) + search_time_per_element = search_time / len(search_keys) + search_times.append(search_time_per_element) + + chain_lengths = ht_sc.get_chain_lengths() + # Calculate average chain length only for non-empty buckets + non_empty_lengths = [l for l in chain_lengths if l > 0] + avg_chain_length = sum(non_empty_lengths) / len(non_empty_lengths) if non_empty_lengths else 0 + chain_lengths_list.append(avg_chain_length) + + load_factors.append(ht_sc._load_factor()) + + # Compute statistics + if insert_times and search_times: + avg_insert = statistics.mean(insert_times) + std_insert = statistics.stdev(insert_times) if len(insert_times) > 1 else 0 + avg_search = statistics.mean(search_times) + std_search = statistics.stdev(search_times) if len(search_times) > 1 else 0 + avg_load_factor = statistics.mean(load_factors) + avg_chain_length = statistics.mean(chain_lengths_list) + + results['separate_chaining'].append({ + 'elements': i + batch_size, + 'load_factor': avg_load_factor, + 'insert_time': avg_insert, + 'insert_time_std': std_insert, + 'search_time': avg_search, + 'search_time_std': std_search, + 'avg_chain_length': avg_chain_length + }) + + return results + + +def benchmark_load_factor_impact_probes( + initial_size: int, + max_elements: int, + probe_type: str = 'linear', + num_runs: int = 10 +) -> Dict[str, List[Dict[str, Any]]]: + """ + Benchmark probe counts and comparisons at different load factors. + Uses deterministic metrics instead of timing for smooth theoretical curves. + + Args: + initial_size: Initial hash table size + max_elements: Maximum number of elements to insert + probe_type: Probe type for open addressing + num_runs: Number of runs per load factor for averaging + + Returns: + Dictionary with results for open addressing and separate chaining + """ + results = { + 'open_addressing': [], + 'separate_chaining': [] + } + + num_samples = 10 + batch_size = max_elements // num_samples + + # Test open addressing + for i in range(0, max_elements, batch_size): + if i + batch_size > max_elements: + continue + + # Run multiple times to get statistical averages + insert_probes = [] + search_probes = [] + insert_comparisons = [] + search_comparisons = [] + load_factors = [] + search_sample_size = 100 # Fixed sample size for normalization + + for run in range(num_runs): + keys = generate_test_data(max_elements) + ht_oa = HashTableOpenAddressing(initial_size, probe_type=probe_type) + inserted_keys_oa = [] + + # Insert up to (but not including) current batch + for j in range(0, i, batch_size): + batch_keys = keys[j:j+batch_size] + if not batch_keys: + continue + for key in batch_keys: + ht_oa.insert(key, key) + inserted_keys_oa.extend(batch_keys) + + # Reset counters before measuring current batch + ht_oa.reset_counts() + + # Measure insert probes/comparisons for this batch + batch_keys = keys[i:i+batch_size] + if batch_keys: + for key in batch_keys: + ht_oa.insert(key, key) + inserted_keys_oa.extend(batch_keys) + + insert_probes.append(ht_oa.get_probe_count()) + insert_comparisons.append(ht_oa.get_comparison_count()) + + # Reset counters for search + ht_oa.reset_counts() + + # Benchmark search on a sample of ALL inserted keys + actual_search_size = min(search_sample_size, len(inserted_keys_oa)) + search_keys = inserted_keys_oa[:actual_search_size] if inserted_keys_oa else [] + if search_keys: + for key in search_keys: + ht_oa.search(key) + + search_probes.append(ht_oa.get_probe_count()) + search_comparisons.append(ht_oa.get_comparison_count()) + + load_factors.append(ht_oa._load_factor()) + + # Compute statistics + if insert_probes and search_probes: + # Normalize by batch size and search sample size (fixed at 100) + avg_insert_probes = statistics.mean(insert_probes) / batch_size if insert_probes and batch_size > 0 else 0 + avg_search_probes = statistics.mean(search_probes) / search_sample_size if search_probes and search_sample_size > 0 else 0 + avg_insert_comparisons = statistics.mean(insert_comparisons) / batch_size if insert_comparisons and batch_size > 0 else 0 + avg_search_comparisons = statistics.mean(search_comparisons) / search_sample_size if search_comparisons and search_sample_size > 0 else 0 + avg_load_factor = statistics.mean(load_factors) + + results['open_addressing'].append({ + 'elements': i + batch_size, + 'load_factor': avg_load_factor, + 'insert_probes_per_element': avg_insert_probes, + 'search_probes_per_element': avg_search_probes, + 'insert_comparisons_per_element': avg_insert_comparisons, + 'search_comparisons_per_element': avg_search_comparisons + }) + + # Test separate chaining + for i in range(0, max_elements, batch_size): + if i + batch_size > max_elements: + continue + + # Run multiple times to get statistical averages + insert_comparisons = [] + search_comparisons = [] + load_factors = [] + chain_lengths_list = [] + search_sample_size = 100 # Fixed sample size for normalization + + for run in range(num_runs): + keys = generate_test_data(max_elements) + ht_sc = HashTableSeparateChaining(initial_size) + inserted_keys_sc = [] + + # Insert up to (but not including) current batch + for j in range(0, i, batch_size): + batch_keys = keys[j:j+batch_size] + if not batch_keys: + continue + for key in batch_keys: + ht_sc.insert(key, key) + inserted_keys_sc.extend(batch_keys) + + # Reset counters before measuring current batch + ht_sc.reset_counts() + + # Measure insert comparisons for this batch + batch_keys = keys[i:i+batch_size] + if batch_keys: + for key in batch_keys: + ht_sc.insert(key, key) + inserted_keys_sc.extend(batch_keys) + + insert_comparisons.append(ht_sc.get_comparison_count()) + + # Reset counters for search + ht_sc.reset_counts() + + # Benchmark search on a sample of ALL inserted keys + actual_search_size = min(search_sample_size, len(inserted_keys_sc)) + search_keys = inserted_keys_sc[:actual_search_size] if inserted_keys_sc else [] + if search_keys: + for key in search_keys: + ht_sc.search(key) + + search_comparisons.append(ht_sc.get_comparison_count()) + + chain_lengths = ht_sc.get_chain_lengths() + # Calculate average chain length only for non-empty buckets + non_empty_lengths = [l for l in chain_lengths if l > 0] + avg_chain_length = sum(non_empty_lengths) / len(non_empty_lengths) if non_empty_lengths else 0 + chain_lengths_list.append(avg_chain_length) + + load_factors.append(ht_sc._load_factor()) + + # Compute statistics + if insert_comparisons and search_comparisons: + # Normalize by batch size and search sample size (fixed at 100) + avg_insert_comparisons = statistics.mean(insert_comparisons) / batch_size if insert_comparisons and batch_size > 0 else 0 + avg_search_comparisons = statistics.mean(search_comparisons) / search_sample_size if search_comparisons and search_sample_size > 0 else 0 + avg_load_factor = statistics.mean(load_factors) + avg_chain_length = statistics.mean(chain_lengths_list) + + results['separate_chaining'].append({ + 'elements': i + batch_size, + 'load_factor': avg_load_factor, + 'insert_comparisons_per_element': avg_insert_comparisons, + 'search_comparisons_per_element': avg_search_comparisons, + 'avg_chain_length': avg_chain_length + }) + + return results + diff --git a/src/hash_functions.py b/src/hash_functions.py new file mode 100644 index 0000000..56ed18c --- /dev/null +++ b/src/hash_functions.py @@ -0,0 +1,183 @@ +""" +Hash Functions Module + +This module implements various hash functions, including good and bad examples +to demonstrate the impact of hash function design on hash table performance. +""" + +import hashlib +from typing import Any, Callable, Optional + + +def division_hash(key: int, table_size: int) -> int: + """ + Division method hash function: h(k) = k mod m + + Simple and fast, but requires careful choice of table size (preferably prime). + + Args: + key: The key to hash + table_size: Size of the hash table + + Returns: + Hash value in range [0, table_size-1] + """ + return key % table_size + + +def multiplication_hash(key: int, table_size: int, A: float = 0.6180339887) -> int: + """ + Multiplication method hash function: h(k) = floor(m * (kA mod 1)) + + A good choice of A (often (sqrt(5)-1)/2) helps distribute keys uniformly. + + Args: + key: The key to hash + table_size: Size of the hash table + A: Multiplier constant (default: (sqrt(5)-1)/2) + + Returns: + Hash value in range [0, table_size-1] + """ + return int(table_size * ((key * A) % 1)) + + +def universal_hash(key: int, table_size: int, a: int, b: int, p: int) -> int: + """ + Universal hash function: h(k) = ((a*k + b) mod p) mod m + + Part of a universal class of hash functions that minimizes collisions + for any set of keys. + + Args: + key: The key to hash + table_size: Size of the hash table + a: Random parameter (1 <= a < p) + b: Random parameter (0 <= b < p) + p: Large prime number (p > max_key) + + Returns: + Hash value in range [0, table_size-1] + """ + return ((a * key + b) % p) % table_size + + +def string_hash_simple(key: str, table_size: int) -> int: + """ + Simple string hash function (BAD EXAMPLE - prone to collisions). + + This is a naive implementation that sums character values. + Poor distribution for similar strings. + + Args: + key: String key to hash + table_size: Size of the hash table + + Returns: + Hash value in range [0, table_size-1] + """ + hash_value = 0 + for char in key: + hash_value += ord(char) + return hash_value % table_size + + +def string_hash_polynomial(key: str, table_size: int, base: int = 31) -> int: + """ + Polynomial rolling hash function (GOOD EXAMPLE). + + Uses polynomial accumulation: h(s) = (s[0]*b^(n-1) + s[1]*b^(n-2) + ... + s[n-1]) mod m + + Better distribution than simple summation. + + Args: + key: String key to hash + table_size: Size of the hash table + base: Base for polynomial (default: 31) + + Returns: + Hash value in range [0, table_size-1] + """ + hash_value = 0 + for char in key: + hash_value = (hash_value * base + ord(char)) % table_size + return hash_value + + +def string_hash_djb2(key: str, table_size: int) -> int: + """ + DJB2 hash function - a popular string hash function. + + Known for good distribution properties. + + Args: + key: String key to hash + table_size: Size of the hash table + + Returns: + Hash value in range [0, table_size-1] + """ + hash_value = 5381 + for char in key: + hash_value = ((hash_value << 5) + hash_value) + ord(char) + return hash_value % table_size + + +def md5_hash(key: str, table_size: int) -> int: + """ + MD5-based hash function (cryptographically secure but slower). + + Provides excellent distribution but computationally expensive. + Demonstrates trade-off between speed and quality. + + Args: + key: String key to hash + table_size: Size of the hash table + + Returns: + Hash value in range [0, table_size-1] + """ + md5_hash_obj = hashlib.md5(key.encode('utf-8')) + hash_int = int(md5_hash_obj.hexdigest(), 16) + return hash_int % table_size + + +def bad_hash_clustering(key: int, table_size: int) -> int: + """ + BAD EXAMPLE: Hash function that causes clustering. + + This function uses a poor multiplier that causes many collisions + and clustering behavior. + + Args: + key: The key to hash + table_size: Size of the hash table + + Returns: + Hash value (poorly distributed) + """ + # Poor choice: using table_size as multiplier causes clustering + return (key * table_size) % table_size + + +def get_hash_function(hash_type: str) -> Callable: + """ + Get a hash function by name. + + Args: + hash_type: Type of hash function ('division', 'multiplication', 'universal', etc.) + + Returns: + Hash function callable + """ + hash_functions = { + 'division': division_hash, + 'multiplication': multiplication_hash, + 'string_simple': string_hash_simple, + 'string_polynomial': string_hash_polynomial, + 'string_djb2': string_hash_djb2, + 'md5': md5_hash, + 'bad_clustering': bad_hash_clustering, + } + return hash_functions.get(hash_type, division_hash) + diff --git a/src/hash_tables.py b/src/hash_tables.py new file mode 100644 index 0000000..2beee4b --- /dev/null +++ b/src/hash_tables.py @@ -0,0 +1,413 @@ +""" +Hash Tables Module + +This module implements various hash table data structures including: +- Direct-address tables +- Open addressing (linear probing, quadratic probing, double hashing) +- Separate chaining +""" + +from typing import Any, Optional, Tuple, List, Callable +from .hash_functions import division_hash, get_hash_function + + +class DirectAddressTable: + """ + Direct-address table implementation. + + Assumes keys are integers in a small range [0, m-1]. + Provides O(1) operations but requires keys to be in a known range. + """ + + def __init__(self, size: int): + """ + Initialize direct-address table. + + Args: + size: Maximum key value (keys must be in range [0, size-1]) + """ + self.size = size + self.table: List[Optional[Any]] = [None] * size + + def insert(self, key: int, value: Any) -> None: + """ + Insert key-value pair. + + Args: + key: Integer key (must be in range [0, size-1]) + value: Value to store + """ + if not (0 <= key < self.size): + raise ValueError(f"Key {key} out of range [0, {self.size-1}]") + self.table[key] = value + + def search(self, key: int) -> Optional[Any]: + """ + Search for value by key. + + Args: + key: Integer key to search for + + Returns: + Value if found, None otherwise + """ + if not (0 <= key < self.size): + return None + return self.table[key] + + def delete(self, key: int) -> None: + """ + Delete key-value pair. + + Args: + key: Integer key to delete + """ + if 0 <= key < self.size: + self.table[key] = None + + +class HashTableOpenAddressing: + """ + Hash table using open addressing with multiple probing strategies. + + Supports linear probing, quadratic probing, and double hashing. + """ + + DELETED = object() # Sentinel for deleted entries + + def __init__( + self, + size: int, + hash_func: Optional[Callable] = None, + probe_type: str = 'linear', + load_factor_threshold: float = 0.75 + ): + """ + Initialize hash table with open addressing. + + Args: + size: Initial size of hash table + hash_func: Hash function to use (default: division method) + probe_type: Type of probing ('linear', 'quadratic', 'double') + load_factor_threshold: Maximum load factor before resizing + """ + self.size = size + self.count = 0 + self.table: List[Optional[Tuple[int, Any]]] = [None] * size + self.hash_func = hash_func or (lambda k, s: division_hash(k, s)) + self.probe_type = probe_type + self.load_factor_threshold = load_factor_threshold + self._probe_count = 0 + self._comparison_count = 0 + + def _load_factor(self) -> float: + """Calculate current load factor.""" + return self.count / self.size + + def _linear_probe(self, key: int, i: int) -> int: + """Linear probing: h(k,i) = (h'(k) + i) mod m""" + h1 = self.hash_func(key, self.size) + return (h1 + i) % self.size + + def _quadratic_probe(self, key: int, i: int) -> int: + """Quadratic probing: h(k,i) = (h'(k) + c1*i + c2*i^2) mod m""" + h1 = self.hash_func(key, self.size) + c1, c2 = 1, 1 + return (h1 + c1 * i + c2 * i * i) % self.size + + def _double_hash(self, key: int, i: int) -> int: + """Double hashing: h(k,i) = (h1(k) + i*h2(k)) mod m""" + h1 = self.hash_func(key, self.size) + # Second hash function: h2(k) = 1 + (k mod (m-1)) + h2 = 1 + (key % (self.size - 1)) + return (h1 + i * h2) % self.size + + def _probe(self, key: int, i: int) -> int: + """Get probe sequence index based on probe type.""" + if self.probe_type == 'linear': + return self._linear_probe(key, i) + elif self.probe_type == 'quadratic': + return self._quadratic_probe(key, i) + elif self.probe_type == 'double': + return self._double_hash(key, i) + else: + raise ValueError(f"Unknown probe type: {self.probe_type}") + + def _resize(self) -> None: + """Resize table when load factor exceeds threshold.""" + old_table = self.table + old_size = self.size + self.size *= 2 + self.count = 0 + self.table = [None] * self.size + + # Rehash all existing entries + for entry in old_table: + if entry is not None and entry is not self.DELETED: + key, value = entry + self.insert(key, value) + + def insert(self, key: int, value: Any) -> None: + """ + Insert key-value pair using open addressing. + + Args: + key: Key to insert + value: Value to store + """ + if self._load_factor() >= self.load_factor_threshold: + self._resize() + + i = 0 + while i < self.size: + index = self._probe(key, i) + self._probe_count += 1 + entry = self.table[index] + + if entry is None or entry is self.DELETED: + self.table[index] = (key, value) + self.count += 1 + return + elif entry[0] == key: + self._comparison_count += 1 + # Update existing key + self.table[index] = (key, value) + return + else: + self._comparison_count += 1 + + i += 1 + + raise RuntimeError("Hash table is full") + + def search(self, key: int) -> Optional[Any]: + """ + Search for value by key. + + Args: + key: Key to search for + + Returns: + Value if found, None otherwise + """ + i = 0 + while i < self.size: + index = self._probe(key, i) + self._probe_count += 1 + entry = self.table[index] + + if entry is None: + return None + elif entry is not self.DELETED and entry[0] == key: + self._comparison_count += 1 + return entry[1] + else: + self._comparison_count += 1 + + i += 1 + + return None + + def get_probe_count(self) -> int: + """Get total number of probes performed.""" + return self._probe_count + + def get_comparison_count(self) -> int: + """Get total number of key comparisons performed.""" + return self._comparison_count + + def reset_counts(self) -> None: + """Reset probe and comparison counters.""" + self._probe_count = 0 + self._comparison_count = 0 + + def delete(self, key: int) -> bool: + """ + Delete key-value pair. + + Args: + key: Key to delete + + Returns: + True if deleted, False if not found + """ + i = 0 + while i < self.size: + index = self._probe(key, i) + entry = self.table[index] + + if entry is None: + return False + elif entry is not self.DELETED and entry[0] == key: + self.table[index] = self.DELETED + self.count -= 1 + return True + + i += 1 + + return False + + +class HashTableSeparateChaining: + """ + Hash table using separate chaining for collision resolution. + + Each bucket contains a linked list of key-value pairs. + """ + + class Node: + """Node for linked list in separate chaining.""" + def __init__(self, key: int, value: Any): + self.key = key + self.value = value + self.next: Optional['HashTableSeparateChaining.Node'] = None + + def __init__( + self, + size: int, + hash_func: Optional[Callable] = None, + load_factor_threshold: float = 1.0 + ): + """ + Initialize hash table with separate chaining. + + Args: + size: Initial size of hash table + hash_func: Hash function to use (default: division method) + load_factor_threshold: Maximum load factor before resizing + """ + self.size = size + self.count = 0 + self.buckets: List[Optional[self.Node]] = [None] * size + self.hash_func = hash_func or (lambda k, s: division_hash(k, s)) + self.load_factor_threshold = load_factor_threshold + self._comparison_count = 0 + + def _load_factor(self) -> float: + """Calculate current load factor.""" + return self.count / self.size + + def _resize(self) -> None: + """Resize table when load factor exceeds threshold.""" + old_buckets = self.buckets + old_size = self.size + self.size *= 2 + self.count = 0 + self.buckets = [None] * self.size + + # Rehash all existing entries + for head in old_buckets: + current = head + while current is not None: + self.insert(current.key, current.value) + current = current.next + + def insert(self, key: int, value: Any) -> None: + """ + Insert key-value pair. + + Args: + key: Key to insert + value: Value to store + """ + if self._load_factor() >= self.load_factor_threshold: + self._resize() + + index = self.hash_func(key, self.size) + + # Check if key already exists + current = self.buckets[index] + while current is not None: + self._comparison_count += 1 + if current.key == key: + current.value = value # Update existing key + return + current = current.next + + # Insert new node at head of chain + new_node = self.Node(key, value) + new_node.next = self.buckets[index] + self.buckets[index] = new_node + self.count += 1 + + def search(self, key: int) -> Optional[Any]: + """ + Search for value by key. + + Args: + key: Key to search for + + Returns: + Value if found, None otherwise + """ + index = self.hash_func(key, self.size) + current = self.buckets[index] + + while current is not None: + self._comparison_count += 1 + if current.key == key: + return current.value + current = current.next + + return None + + def get_comparison_count(self) -> int: + """Get total number of key comparisons performed.""" + return self._comparison_count + + def reset_counts(self) -> None: + """Reset comparison counter.""" + self._comparison_count = 0 + + def delete(self, key: int) -> bool: + """ + Delete key-value pair. + + Args: + key: Key to delete + + Returns: + True if deleted, False if not found + """ + index = self.hash_func(key, self.size) + current = self.buckets[index] + + if current is None: + return False + + # Check if key is at head + if current.key == key: + self.buckets[index] = current.next + self.count -= 1 + return True + + # Search in chain + prev = current + current = current.next + while current is not None: + if current.key == key: + prev.next = current.next + self.count -= 1 + return True + prev = current + current = current.next + + return False + + def get_chain_lengths(self) -> List[int]: + """ + Get lengths of all chains for analysis. + + Returns: + List of chain lengths + """ + lengths = [] + for head in self.buckets: + length = 0 + current = head + while current is not None: + length += 1 + current = current.next + lengths.append(length) + return lengths + diff --git a/tests/test_hash_functions.py b/tests/test_hash_functions.py new file mode 100644 index 0000000..0996343 --- /dev/null +++ b/tests/test_hash_functions.py @@ -0,0 +1,150 @@ +""" +Tests for hash functions. +""" + +import pytest +import sys +import os +sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..')) + +from src.hash_functions import ( + division_hash, + multiplication_hash, + universal_hash, + string_hash_simple, + string_hash_polynomial, + string_hash_djb2, + md5_hash, + bad_hash_clustering +) + + +class TestDivisionHash: + """Tests for division hash function.""" + + def test_basic_division_hash(self): + """Test basic division hash functionality.""" + assert division_hash(10, 7) == 3 + assert division_hash(22, 7) == 1 + assert division_hash(31, 7) == 3 + + def test_hash_range(self): + """Test that hash values are in correct range.""" + table_size = 11 + for key in range(100): + hash_val = division_hash(key, table_size) + assert 0 <= hash_val < table_size + + def test_negative_keys(self): + """Test handling of negative keys.""" + # Division with negative keys + assert division_hash(-10, 7) == (-10 % 7) + + +class TestMultiplicationHash: + """Tests for multiplication hash function.""" + + def test_basic_multiplication_hash(self): + """Test basic multiplication hash functionality.""" + hash_val = multiplication_hash(10, 8) + assert 0 <= hash_val < 8 + + def test_hash_range(self): + """Test that hash values are in correct range.""" + table_size = 16 + for key in range(50): + hash_val = multiplication_hash(key, table_size) + assert 0 <= hash_val < table_size + + +class TestUniversalHash: + """Tests for universal hash function.""" + + def test_basic_universal_hash(self): + """Test basic universal hash functionality.""" + p = 101 # Prime larger than max key + a, b = 3, 7 + hash_val = universal_hash(10, 11, a, b, p) + assert 0 <= hash_val < 11 + + def test_hash_range(self): + """Test that hash values are in correct range.""" + table_size = 13 + p = 101 + a, b = 5, 11 + for key in range(50): + hash_val = universal_hash(key, table_size, a, b, p) + assert 0 <= hash_val < table_size + + +class TestStringHashFunctions: + """Tests for string hash functions.""" + + def test_string_hash_simple(self): + """Test simple string hash function.""" + hash_val = string_hash_simple("hello", 11) + assert 0 <= hash_val < 11 + + def test_string_hash_polynomial(self): + """Test polynomial string hash function.""" + hash_val = string_hash_polynomial("hello", 11) + assert 0 <= hash_val < 11 + + def test_string_hash_djb2(self): + """Test DJB2 string hash function.""" + hash_val = string_hash_djb2("hello", 11) + assert 0 <= hash_val < 11 + + def test_string_hash_collisions(self): + """Test that different strings can produce different hashes.""" + table_size = 100 + strings = ["hello", "world", "test", "hash", "table"] + hashes = [string_hash_polynomial(s, table_size) for s in strings] + # At least some should be different (not guaranteed all) + assert len(set(hashes)) > 1 + + def test_md5_hash(self): + """Test MD5-based hash function.""" + hash_val = md5_hash("test", 11) + assert 0 <= hash_val < 11 + + +class TestBadHashFunctions: + """Tests for bad hash functions (demonstrating poor behavior).""" + + def test_bad_hash_clustering(self): + """Test bad hash function that causes clustering.""" + # This should demonstrate poor distribution + table_size = 10 + keys = list(range(20)) + hashes = [bad_hash_clustering(k, table_size) for k in keys] + # All hashes should be 0 (demonstrating clustering) + assert all(h == 0 for h in hashes) + + +class TestHashFunctionProperties: + """Tests for hash function properties.""" + + def test_deterministic(self): + """Test that hash functions are deterministic.""" + key = 42 + table_size = 11 + hash1 = division_hash(key, table_size) + hash2 = division_hash(key, table_size) + assert hash1 == hash2 + + def test_distribution(self): + """Test that good hash functions distribute keys reasonably.""" + table_size = 20 + keys = list(range(100)) + hashes = [division_hash(k, table_size) for k in keys] + + # Count occurrences in each bucket + bucket_counts = {} + for h in hashes: + bucket_counts[h] = bucket_counts.get(h, 0) + 1 + + # Most buckets should be used (not perfect, but reasonable) + buckets_used = len(bucket_counts) + assert buckets_used > table_size * 0.5 # At least 50% of buckets used + diff --git a/tests/test_hash_tables.py b/tests/test_hash_tables.py new file mode 100644 index 0000000..b50f271 --- /dev/null +++ b/tests/test_hash_tables.py @@ -0,0 +1,203 @@ +""" +Tests for hash table implementations. +""" + +import pytest +import sys +import os +sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..')) + +from src.hash_tables import ( + DirectAddressTable, + HashTableOpenAddressing, + HashTableSeparateChaining +) +from src.hash_functions import division_hash + + +class TestDirectAddressTable: + """Tests for direct-address table.""" + + def test_insert_and_search(self): + """Test basic insert and search operations.""" + table = DirectAddressTable(100) + table.insert(5, "value1") + table.insert(42, "value2") + + assert table.search(5) == "value1" + assert table.search(42) == "value2" + assert table.search(10) is None + + def test_delete(self): + """Test delete operation.""" + table = DirectAddressTable(100) + table.insert(5, "value1") + table.delete(5) + assert table.search(5) is None + + def test_out_of_range_key(self): + """Test handling of out-of-range keys.""" + table = DirectAddressTable(100) + with pytest.raises(ValueError): + table.insert(100, "value") # Out of range + assert table.search(100) is None + + +class TestHashTableOpenAddressing: + """Tests for open addressing hash table.""" + + def test_insert_and_search_linear(self): + """Test insert and search with linear probing.""" + ht = HashTableOpenAddressing(10, probe_type='linear') + ht.insert(10, "value1") + ht.insert(22, "value2") + ht.insert(31, "value3") + + assert ht.search(10) == "value1" + assert ht.search(22) == "value2" + assert ht.search(31) == "value3" + assert ht.search(99) is None + + def test_insert_and_search_quadratic(self): + """Test insert and search with quadratic probing.""" + ht = HashTableOpenAddressing(10, probe_type='quadratic') + ht.insert(10, "value1") + ht.insert(22, "value2") + + assert ht.search(10) == "value1" + assert ht.search(22) == "value2" + + def test_insert_and_search_double(self): + """Test insert and search with double hashing.""" + ht = HashTableOpenAddressing(10, probe_type='double') + ht.insert(10, "value1") + ht.insert(22, "value2") + + assert ht.search(10) == "value1" + assert ht.search(22) == "value2" + + def test_delete(self): + """Test delete operation.""" + ht = HashTableOpenAddressing(10, probe_type='linear') + ht.insert(10, "value1") + ht.insert(22, "value2") + + assert ht.delete(10) is True + assert ht.search(10) is None + assert ht.search(22) == "value2" + assert ht.delete(99) is False + + def test_update_existing_key(self): + """Test updating an existing key.""" + ht = HashTableOpenAddressing(10, probe_type='linear') + ht.insert(10, "value1") + ht.insert(10, "value2") # Update + assert ht.search(10) == "value2" + + def test_resize(self): + """Test automatic resizing.""" + ht = HashTableOpenAddressing(5, probe_type='linear', load_factor_threshold=0.7) + # Insert enough to trigger resize + for i in range(10): + ht.insert(i, f"value{i}") + + # All should still be searchable + for i in range(10): + assert ht.search(i) == f"value{i}" + + +class TestHashTableSeparateChaining: + """Tests for separate chaining hash table.""" + + def test_insert_and_search(self): + """Test basic insert and search operations.""" + ht = HashTableSeparateChaining(10) + ht.insert(10, "value1") + ht.insert(22, "value2") + ht.insert(31, "value3") + + assert ht.search(10) == "value1" + assert ht.search(22) == "value2" + assert ht.search(31) == "value3" + assert ht.search(99) is None + + def test_delete(self): + """Test delete operation.""" + ht = HashTableSeparateChaining(10) + ht.insert(10, "value1") + ht.insert(22, "value2") + + assert ht.delete(10) is True + assert ht.search(10) is None + assert ht.search(22) == "value2" + assert ht.delete(99) is False + + def test_update_existing_key(self): + """Test updating an existing key.""" + ht = HashTableSeparateChaining(10) + ht.insert(10, "value1") + ht.insert(10, "value2") # Update + assert ht.search(10) == "value2" + + def test_collision_handling(self): + """Test that collisions are handled correctly.""" + ht = HashTableSeparateChaining(5) # Small table to force collisions + keys = [10, 15, 20, 25, 30] + for key in keys: + ht.insert(key, f"value{key}") + + # All should be searchable + for key in keys: + assert ht.search(key) == f"value{key}" + + def test_chain_lengths(self): + """Test chain length reporting.""" + ht = HashTableSeparateChaining(5) + for i in range(10): + ht.insert(i, f"value{i}") + + chain_lengths = ht.get_chain_lengths() + # After inserting 10 items, table will resize (load factor > 1.0) + # So chain lengths should match current table size, not initial size + assert len(chain_lengths) == ht.size + assert sum(chain_lengths) == 10 + + def test_resize(self): + """Test automatic resizing.""" + ht = HashTableSeparateChaining(5, load_factor_threshold=1.0) + # Insert enough to trigger resize + for i in range(20): + ht.insert(i, f"value{i}") + + # All should still be searchable + for i in range(20): + assert ht.search(i) == f"value{i}" + + +class TestHashTableComparison: + """Tests comparing different hash table implementations.""" + + def test_same_operations_different_implementations(self): + """Test that different implementations handle same operations.""" + keys = [10, 22, 31, 4, 15, 28, 17, 88, 59] + + ht_oa = HashTableOpenAddressing(20, probe_type='linear') + ht_sc = HashTableSeparateChaining(20) + + # Insert same keys + for key in keys: + ht_oa.insert(key, f"value{key}") + ht_sc.insert(key, f"value{key}") + + # Both should find all keys + for key in keys: + assert ht_oa.search(key) == f"value{key}" + assert ht_sc.search(key) == f"value{key}" + + # Both should delete successfully + for key in keys[:5]: + assert ht_oa.delete(key) is True + assert ht_sc.delete(key) is True + assert ht_oa.search(key) is None + assert ht_sc.search(key) is None +