Version Notes
1.0.19700
Download this release
Release Info
Developer | Magento Core Team |
Extension | Lib_ZF |
Version | 1.0.19700 |
Comparing to | |
See all releases |
Code changes from version 1.0.18800 to 1.0.19700
- lib/Zend/Currency.php +574 -524
- package.xml +7 -7
lib/Zend/Currency.php
CHANGED
@@ -1,525 +1,575 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Zend Framework
|
4 |
-
*
|
5 |
-
* LICENSE
|
6 |
-
*
|
7 |
-
* This source file is subject to the new BSD license that is bundled
|
8 |
-
* with this package in the file LICENSE.txt.
|
9 |
-
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://framework.zend.com/license/new-bsd
|
11 |
-
* If you did not receive a copy of the license and are unable to
|
12 |
-
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@zend.com so we can send you a copy immediately.
|
14 |
-
*
|
15 |
-
* @category Zend
|
16 |
-
* @package Zend_Currency
|
17 |
-
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
18 |
-
* @version $Id: Currency.php 6137 2007-08-19 14:55:27Z shreef $
|
19 |
-
* @license http://framework.zend.com/license/new-bsd New BSD License
|
20 |
-
*/
|
21 |
-
|
22 |
-
|
23 |
-
/**
|
24 |
-
* include needed classes
|
25 |
-
*/
|
26 |
-
require_once 'Zend/Locale.php';
|
27 |
-
require_once 'Zend/Locale/Data.php';
|
28 |
-
require_once 'Zend/Locale/Format.php';
|
29 |
-
|
30 |
-
|
31 |
-
/**
|
32 |
-
* @category Zend
|
33 |
-
* @package Zend_Currency
|
34 |
-
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
35 |
-
* @license http://framework.zend.com/license/new-bsd New BSD License
|
36 |
-
*/
|
37 |
-
class Zend_Currency
|
38 |
-
{
|
39 |
-
// constants for defining what currency symbol should be displayed
|
40 |
-
const NO_SYMBOL = 1;
|
41 |
-
const USE_SYMBOL = 2;
|
42 |
-
const USE_SHORTNAME = 3;
|
43 |
-
const USE_NAME = 4;
|
44 |
-
|
45 |
-
// constants for defining the position of the currencysign
|
46 |
-
const STANDARD = 8;
|
47 |
-
const RIGHT = 16;
|
48 |
-
const LEFT = 32;
|
49 |
-
|
50 |
-
/**
|
51 |
-
* locale for this currency
|
52 |
-
*
|
53 |
-
* @var string
|
54 |
-
*/
|
55 |
-
private $_locale = null;
|
56 |
-
|
57 |
-
protected $_options = array(
|
58 |
-
'position' => self::STANDARD, // position for the currency sign
|
59 |
-
'script' => null, // script for output
|
60 |
-
'format' => null, // locale for numeric output
|
61 |
-
'display' => self::NO_SYMBOL, // currency detail to show
|
62 |
-
'precision' => 2, // precision for currency
|
63 |
-
'name' => null, // name for this currency
|
64 |
-
'currency' => null, // 3 lettered international abbreviation
|
65 |
-
'symbol' => null // currency symbol
|
66 |
-
);
|
67 |
-
|
68 |
-
/**
|
69 |
-
* Creates a currency instance. Every supressed parameter is used from the actual or the given locale.
|
70 |
-
*
|
71 |
-
* @param string $currency OPTIONAL currency short name
|
72 |
-
* @param string|Zend_Locale $locale OPTIONAL locale name
|
73 |
-
* @return Zend_Currency
|
74 |
-
* @throws Zend_Currency_Exception
|
75 |
-
*/
|
76 |
-
public function __construct($currency = null, $locale = null)
|
77 |
-
{
|
78 |
-
if (Zend_Locale::isLocale($currency)) {
|
79 |
-
$temp = $locale;
|
80 |
-
$locale = $currency;
|
81 |
-
$currency = $temp;
|
82 |
-
}
|
83 |
-
|
84 |
-
$this->setLocale($locale);
|
85 |
-
|
86 |
-
// get currency details
|
87 |
-
$this->_options['currency']
|
88 |
-
$this->_options['name']
|
89 |
-
$this->_options['symbol']
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
$this->_options['
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
*
|
110 |
-
*
|
111 |
-
* @
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
*
|
139 |
-
*
|
140 |
-
* @param
|
141 |
-
* @
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
//
|
160 |
-
if (
|
161 |
-
$
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
$
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
*
|
285 |
-
*
|
286 |
-
*
|
287 |
-
* @
|
288 |
-
* @
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
if (($
|
327 |
-
return
|
328 |
-
}
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
}
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
return $
|
363 |
-
}
|
364 |
-
|
365 |
-
|
366 |
-
/**
|
367 |
-
* Returns
|
368 |
-
*
|
369 |
-
*
|
370 |
-
*
|
371 |
-
* @
|
372 |
-
* @
|
373 |
-
*/
|
374 |
-
public function
|
375 |
-
{
|
376 |
-
if (
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
*
|
398 |
-
*
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
*
|
419 |
-
*
|
420 |
-
*
|
421 |
-
*
|
422 |
-
*
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
}
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
*
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
*
|
458 |
-
*
|
459 |
-
* @
|
460 |
-
*/
|
461 |
-
|
462 |
-
{
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
525 |
}
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Zend Framework
|
4 |
+
*
|
5 |
+
* LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the new BSD license that is bundled
|
8 |
+
* with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://framework.zend.com/license/new-bsd
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@zend.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category Zend
|
16 |
+
* @package Zend_Currency
|
17 |
+
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
18 |
+
* @version $Id: Currency.php 6137 2007-08-19 14:55:27Z shreef $
|
19 |
+
* @license http://framework.zend.com/license/new-bsd New BSD License
|
20 |
+
*/
|
21 |
+
|
22 |
+
|
23 |
+
/**
|
24 |
+
* include needed classes
|
25 |
+
*/
|
26 |
+
require_once 'Zend/Locale.php';
|
27 |
+
require_once 'Zend/Locale/Data.php';
|
28 |
+
require_once 'Zend/Locale/Format.php';
|
29 |
+
|
30 |
+
|
31 |
+
/**
|
32 |
+
* @category Zend
|
33 |
+
* @package Zend_Currency
|
34 |
+
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
35 |
+
* @license http://framework.zend.com/license/new-bsd New BSD License
|
36 |
+
*/
|
37 |
+
class Zend_Currency
|
38 |
+
{
|
39 |
+
// constants for defining what currency symbol should be displayed
|
40 |
+
const NO_SYMBOL = 1;
|
41 |
+
const USE_SYMBOL = 2;
|
42 |
+
const USE_SHORTNAME = 3;
|
43 |
+
const USE_NAME = 4;
|
44 |
+
|
45 |
+
// constants for defining the position of the currencysign
|
46 |
+
const STANDARD = 8;
|
47 |
+
const RIGHT = 16;
|
48 |
+
const LEFT = 32;
|
49 |
+
|
50 |
+
/**
|
51 |
+
* locale for this currency
|
52 |
+
*
|
53 |
+
* @var string
|
54 |
+
*/
|
55 |
+
private $_locale = null;
|
56 |
+
|
57 |
+
protected $_options = array(
|
58 |
+
'position' => self::STANDARD, // position for the currency sign
|
59 |
+
'script' => null, // script for output
|
60 |
+
'format' => null, // locale for numeric output
|
61 |
+
'display' => self::NO_SYMBOL, // currency detail to show
|
62 |
+
'precision' => 2, // precision for currency
|
63 |
+
'name' => null, // name for this currency
|
64 |
+
'currency' => null, // 3 lettered international abbreviation
|
65 |
+
'symbol' => null // currency symbol
|
66 |
+
);
|
67 |
+
|
68 |
+
/**
|
69 |
+
* Creates a currency instance. Every supressed parameter is used from the actual or the given locale.
|
70 |
+
*
|
71 |
+
* @param string $currency OPTIONAL currency short name
|
72 |
+
* @param string|Zend_Locale $locale OPTIONAL locale name
|
73 |
+
* @return Zend_Currency
|
74 |
+
* @throws Zend_Currency_Exception
|
75 |
+
*/
|
76 |
+
public function __construct($currency = null, $locale = null)
|
77 |
+
{
|
78 |
+
if (Zend_Locale::isLocale($currency)) {
|
79 |
+
$temp = $locale;
|
80 |
+
$locale = $currency;
|
81 |
+
$currency = $temp;
|
82 |
+
}
|
83 |
+
|
84 |
+
$this->setLocale($locale);
|
85 |
+
|
86 |
+
// get currency details
|
87 |
+
$this->_options['currency'] = self::getShortName ($currency, $this->_locale);
|
88 |
+
$this->_options['name'] = self::getName ($currency, $this->_locale);
|
89 |
+
$this->_options['symbol'] = self::getSymbol ($currency, $this->_locale);
|
90 |
+
$this->_options['symbol_choice'] = self::getSymbolChoice($currency, $this->_locale);
|
91 |
+
|
92 |
+
if (($this->_options['currency'] === null) and ($this->_options['name'] === null)) {
|
93 |
+
require_once 'Zend/Currency/Exception.php';
|
94 |
+
throw new Zend_Currency_Exception("Currency '$currency' not found");
|
95 |
+
}
|
96 |
+
// get the format
|
97 |
+
$this->_options['position'] = $this->_updateFormat();
|
98 |
+
$this->_options['display'] = self::NO_SYMBOL;
|
99 |
+
if (!empty($this->_options['symbol'])) {
|
100 |
+
$this->_options['display'] = self::USE_SYMBOL;
|
101 |
+
} else if (!empty($this->_options['currency'])) {
|
102 |
+
$this->_options['display'] = self::USE_SHORTNAME;
|
103 |
+
}
|
104 |
+
return $this;
|
105 |
+
}
|
106 |
+
|
107 |
+
|
108 |
+
/**
|
109 |
+
* Gets the information required for formating the currency from Zend_Locale
|
110 |
+
*
|
111 |
+
* @return Zend_Currency
|
112 |
+
* @throws Zend_Currency_Exception
|
113 |
+
*/
|
114 |
+
protected function _updateFormat()
|
115 |
+
{
|
116 |
+
$locale = empty($this->_options['format']) ? $this->_locale : $this->_options['format'];
|
117 |
+
|
118 |
+
//getting the format information of the currency
|
119 |
+
$format = Zend_Locale_Data::getContent($locale, 'currencynumber');
|
120 |
+
|
121 |
+
iconv_set_encoding('internal_encoding', 'UTF-8');
|
122 |
+
if (iconv_strpos($format, ';')) {
|
123 |
+
$format = iconv_substr($format, 0, iconv_strpos($format, ';'));
|
124 |
+
}
|
125 |
+
|
126 |
+
//knowing the sign positioning information
|
127 |
+
if (iconv_strpos($format, '¤') == 0) {
|
128 |
+
$position = self::LEFT;
|
129 |
+
} else if (iconv_strpos($format, '¤') == iconv_strlen($format)-1) {
|
130 |
+
$position = self::RIGHT;
|
131 |
+
}
|
132 |
+
|
133 |
+
return $position;
|
134 |
+
}
|
135 |
+
|
136 |
+
|
137 |
+
/**
|
138 |
+
* Returns a localized currency string
|
139 |
+
*
|
140 |
+
* @param int|float $value Currency value
|
141 |
+
* @param array $options OPTIONAL options to set temporary
|
142 |
+
* @return string
|
143 |
+
*/
|
144 |
+
public function toCurrency($value, array $options = array())
|
145 |
+
{
|
146 |
+
//validate the passed number
|
147 |
+
if (!isset($value) || !is_numeric($value)) {
|
148 |
+
require_once 'Zend/Currency/Exception.php';
|
149 |
+
throw new Zend_Currency_Exception("Value '$value' has to be numeric");
|
150 |
+
}
|
151 |
+
|
152 |
+
$options = array_merge($this->_options, $this->checkOptions($options));
|
153 |
+
|
154 |
+
//format the number
|
155 |
+
if (empty($options['format'])) {
|
156 |
+
$options['format'] = $this->_locale;
|
157 |
+
}
|
158 |
+
|
159 |
+
// select currency symbol if needed
|
160 |
+
if ($options['symbol_choice']) {
|
161 |
+
$symbols = explode('|', $options['symbol']);
|
162 |
+
if (is_array($symbols)) {
|
163 |
+
foreach ($symbols as $symbol) {
|
164 |
+
$type = $position = null;
|
165 |
+
if (($tmp = iconv_strpos($symbol, '≤')) !== false) {
|
166 |
+
$type = 1;
|
167 |
+
$position = $tmp;
|
168 |
+
}
|
169 |
+
if (($tmp = iconv_strpos($symbol, '<')) !== false) {
|
170 |
+
$type = 2;
|
171 |
+
$position = $tmp;
|
172 |
+
}
|
173 |
+
|
174 |
+
if (!is_null($position)) {
|
175 |
+
$number = iconv_substr($symbol, 0, $position);
|
176 |
+
$sign = iconv_substr($symbol, $position+1);
|
177 |
+
|
178 |
+
if (($type == 1 && $number <= $value) || ($type == 2 && $number < $value)) {
|
179 |
+
$options['symbol'] = $sign;
|
180 |
+
}
|
181 |
+
}
|
182 |
+
}
|
183 |
+
}
|
184 |
+
}
|
185 |
+
|
186 |
+
$value = Zend_Locale_Format::toNumber($value, array('locale' => $options['format'], 'precision' => $options['precision']));
|
187 |
+
|
188 |
+
//localize the number digits
|
189 |
+
if (!empty ($options['script'])) {
|
190 |
+
$value = Zend_Locale_Format::convertNumerals($value, 'Latn', $options['script']);
|
191 |
+
}
|
192 |
+
|
193 |
+
//get the sign to be placed next to the number
|
194 |
+
if (!is_numeric($options['display'])) {
|
195 |
+
$sign = " " . $options['display'] . " ";
|
196 |
+
} else {
|
197 |
+
switch($options['display']) {
|
198 |
+
case self::USE_SYMBOL:
|
199 |
+
$sign = " " . $options['symbol'] . " ";
|
200 |
+
break;
|
201 |
+
case self::USE_SHORTNAME:
|
202 |
+
$sign = " " . $options['currency'] . " ";
|
203 |
+
break;
|
204 |
+
case self::USE_NAME:
|
205 |
+
$sign = " " . $options['name'] . " ";
|
206 |
+
break;
|
207 |
+
default:
|
208 |
+
$sign = "";
|
209 |
+
break;
|
210 |
+
}
|
211 |
+
}
|
212 |
+
|
213 |
+
//place the sign next to the number
|
214 |
+
if ($options['position'] == self::RIGHT) {
|
215 |
+
$value = $value . $sign;
|
216 |
+
} else if ($options['position'] == self::LEFT) {
|
217 |
+
$value = $sign . $value;
|
218 |
+
}
|
219 |
+
return trim($value);
|
220 |
+
}
|
221 |
+
|
222 |
+
|
223 |
+
/**
|
224 |
+
* Sets the formating options of the localized currency string
|
225 |
+
* If no parameter is passed, the standard setting of the
|
226 |
+
* actual set locale will be used
|
227 |
+
*
|
228 |
+
* @param const|string $rules OPTIONAL formating rules for currency
|
229 |
+
* - USE_SYMBOL|NOSYMBOL : display currency symbol
|
230 |
+
* - USE_NAME|NONAME : display currency name
|
231 |
+
* - STANDARD|RIGHT|LEFT : where to display currency symbol/name
|
232 |
+
* - string: gives the currency string/name/sign to set
|
233 |
+
* @param string $script OPTIONAL Number script to use for output
|
234 |
+
* @param string|Zend_Locale $locale OPTIONAL Locale for output formatting
|
235 |
+
* @return Zend_Currency
|
236 |
+
*/
|
237 |
+
public function setFormat(array $options = array())
|
238 |
+
{
|
239 |
+
$this->_options = array_merge($this->_options, $this->checkOptions($options));
|
240 |
+
return $this;
|
241 |
+
}
|
242 |
+
|
243 |
+
/**
|
244 |
+
* Internal function for checking static given locale parameter
|
245 |
+
*
|
246 |
+
* @param string $currency OPTIONAL Currency name
|
247 |
+
* @param string|Zend_Locale $locale OPTIONAL Locale to display informations
|
248 |
+
* @return string the extracted locale representation as string
|
249 |
+
* @throws Zend_Currency_Exception
|
250 |
+
*/
|
251 |
+
private function _checkParams($currency = null, $locale = null)
|
252 |
+
{
|
253 |
+
//manage the params
|
254 |
+
if (empty($locale) && !empty($currency) && (Zend_Locale::isLocale($currency))) {
|
255 |
+
$locale = $currency;
|
256 |
+
$currency = null;
|
257 |
+
}
|
258 |
+
|
259 |
+
if ($locale instanceof Zend_Locale) {
|
260 |
+
$locale = $locale->toString();
|
261 |
+
}
|
262 |
+
|
263 |
+
//validate the locale and get the country short name
|
264 |
+
$country = null;
|
265 |
+
if ($locale = Zend_Locale::isLocale($locale) and (strlen($locale) > 4)) {
|
266 |
+
$country = substr($locale, strpos($locale, '_')+1 );
|
267 |
+
} else {
|
268 |
+
require_once 'Zend/Currency/Exception.php';
|
269 |
+
throw new Zend_Currency_Exception("No region found within the locale '$locale'");
|
270 |
+
}
|
271 |
+
|
272 |
+
//get the available currencies for this country
|
273 |
+
$data = Zend_Locale_Data::getContent($locale, 'currencytoregion', $country);
|
274 |
+
if (!empty($currency) and (!empty($data))) {
|
275 |
+
$abbreviation = $currency;
|
276 |
+
} else {
|
277 |
+
$abbreviation = $data;
|
278 |
+
}
|
279 |
+
|
280 |
+
return array('locale' => $locale, 'currency' => $currency, 'name' => $abbreviation, 'country' => $country);
|
281 |
+
}
|
282 |
+
|
283 |
+
/**
|
284 |
+
* Returns the actual or details of other currency symbols,
|
285 |
+
* when no symbol is available it returns the currency shortname (f.e. FIM for Finnian Mark)
|
286 |
+
*
|
287 |
+
* @param string $currency OPTIONAL Currency name
|
288 |
+
* @param string|Zend_Locale $locale OPTIONAL Locale to display informations
|
289 |
+
* @return string
|
290 |
+
* @throws Zend_Currency_Exception
|
291 |
+
*/
|
292 |
+
public function getSymbol($currency = null, $locale = null)
|
293 |
+
{
|
294 |
+
if (($currency === null) and ($locale === null)) {
|
295 |
+
return $this->_options['symbol'];
|
296 |
+
}
|
297 |
+
|
298 |
+
$params = self::_checkParams($currency, $locale);
|
299 |
+
|
300 |
+
//get the symbol
|
301 |
+
$symbol = Zend_Locale_Data::getContent($params['locale'], 'currencysymbol', $params['currency']);
|
302 |
+
if (empty($symbol)) {
|
303 |
+
$symbol = Zend_Locale_Data::getContent($params['locale'], 'currencysymbol', $params['name']);
|
304 |
+
}
|
305 |
+
if (empty($symbol)) {
|
306 |
+
return null;
|
307 |
+
}
|
308 |
+
return $symbol;
|
309 |
+
}
|
310 |
+
|
311 |
+
|
312 |
+
public function getSymbolChoice($currency = null, $locale = null)
|
313 |
+
{
|
314 |
+
if (($currency === null) and ($locale === null)) {
|
315 |
+
return $this->_options['symbol_choice'];
|
316 |
+
}
|
317 |
+
|
318 |
+
$params = self::_checkParams($currency, $locale);
|
319 |
+
|
320 |
+
//get the symbol
|
321 |
+
|
322 |
+
$symbol = Zend_Locale_Data::getContent($params['locale'], 'currencysymbolchoice', $params['currency']);
|
323 |
+
if (empty($symbol)) {
|
324 |
+
$symbol = Zend_Locale_Data::getContent($params['locale'], 'currencysymbolchoice', $params['name']);
|
325 |
+
}
|
326 |
+
if (empty($symbol)) {
|
327 |
+
return null;
|
328 |
+
}
|
329 |
+
return $symbol;
|
330 |
+
}
|
331 |
+
|
332 |
+
/**
|
333 |
+
* Returns the actual or details of other currency shortnames
|
334 |
+
*
|
335 |
+
* @param string $currency OPTIONAL Currency's name
|
336 |
+
* @param string|Zend_Locale $locale OPTIONAL the locale
|
337 |
+
* @return string
|
338 |
+
* @throws Zend_Currency_Exception
|
339 |
+
*/
|
340 |
+
public function getShortName($currency = null, $locale = null)
|
341 |
+
{
|
342 |
+
if (($currency === null) and ($locale === null)) {
|
343 |
+
return $this->_options['currency'];
|
344 |
+
}
|
345 |
+
|
346 |
+
$params = self::_checkParams($currency, $locale);
|
347 |
+
|
348 |
+
//get the shortname
|
349 |
+
if (empty($params['currency'])) {
|
350 |
+
return $params['name'];
|
351 |
+
}
|
352 |
+
$list = Zend_Locale_Data::getContent($params['locale'], 'currencytoname', $params['currency']);
|
353 |
+
if (empty($list)) {
|
354 |
+
$list = Zend_Locale_Data::getContent($params['locale'], 'nametocurrency', $params['currency']);
|
355 |
+
if (!empty($list)) {
|
356 |
+
$list = $params['currency'];
|
357 |
+
}
|
358 |
+
}
|
359 |
+
if (empty($list)) {
|
360 |
+
return null;
|
361 |
+
}
|
362 |
+
return $list;
|
363 |
+
}
|
364 |
+
|
365 |
+
|
366 |
+
/**
|
367 |
+
* Returns the actual or details of other currency names
|
368 |
+
*
|
369 |
+
* @param string $currency OPTIONAL Currency's short name
|
370 |
+
* @param string|Zend_Locale $locale OPTIONAL the locale
|
371 |
+
* @return string
|
372 |
+
* @throws Zend_Currency_Exception
|
373 |
+
*/
|
374 |
+
public function getName($currency = null, $locale = null)
|
375 |
+
{
|
376 |
+
if (($currency === null) and ($locale === null)) {
|
377 |
+
return $this->_options['name'];
|
378 |
+
}
|
379 |
+
|
380 |
+
$params = self::_checkParams($currency, $locale);
|
381 |
+
|
382 |
+
//get the name
|
383 |
+
$name = Zend_Locale_Data::getContent($params['locale'], 'nametocurrency', $params['currency']);
|
384 |
+
if (empty($name)) {
|
385 |
+
$name = Zend_Locale_Data::getContent($params['locale'], 'nametocurrency', $params['name']);
|
386 |
+
}
|
387 |
+
if (empty($name)) {
|
388 |
+
return null;
|
389 |
+
}
|
390 |
+
return $name;
|
391 |
+
}
|
392 |
+
|
393 |
+
|
394 |
+
/**
|
395 |
+
* Returns a list of regions where this currency is or was known
|
396 |
+
*
|
397 |
+
* @param string $currency OPTIONAL Currency's short name
|
398 |
+
* @return array List of regions
|
399 |
+
*/
|
400 |
+
public function getRegionList($currency = null)
|
401 |
+
{
|
402 |
+
if ($currency === null) {
|
403 |
+
$currency = $this->_options['currency'];
|
404 |
+
}
|
405 |
+
if (empty($currency)) {
|
406 |
+
require_once 'Zend/Currency/Exception.php';
|
407 |
+
throw new Zend_Currency_Exception("No currency defined");
|
408 |
+
}
|
409 |
+
$data = Zend_Locale_Data::getContent('', 'regiontocurrency', $currency);
|
410 |
+
|
411 |
+
$result = explode(' ', $data);
|
412 |
+
return $result;
|
413 |
+
}
|
414 |
+
|
415 |
+
|
416 |
+
/**
|
417 |
+
* Returns a list of currencies which are used in this region
|
418 |
+
* a region name should be 2 charachters only (f.e. EG, DE, US)
|
419 |
+
* If no region is given, the actual region is used
|
420 |
+
*
|
421 |
+
* @param string $region OPTIONAL Region to return the currencies for
|
422 |
+
* @return array List of currencies
|
423 |
+
*/
|
424 |
+
public function getCurrencyList($region = null)
|
425 |
+
{
|
426 |
+
if (empty($region)) {
|
427 |
+
if (strlen($this->_locale) > 4) {
|
428 |
+
$region = substr($this->_locale, strpos($this->_locale, '_')+1 );
|
429 |
+
}
|
430 |
+
}
|
431 |
+
return Zend_Locale_Data::getList('', 'regiontocurrency', $region);
|
432 |
+
}
|
433 |
+
|
434 |
+
|
435 |
+
/**
|
436 |
+
* Returns the actual currency name
|
437 |
+
*
|
438 |
+
* @return string
|
439 |
+
*/
|
440 |
+
public function toString()
|
441 |
+
{
|
442 |
+
return !empty($this->_options['name']) ? $this->_options['name'] : $this->_options['currency'];
|
443 |
+
}
|
444 |
+
|
445 |
+
|
446 |
+
/**
|
447 |
+
* Returns the currency name
|
448 |
+
*
|
449 |
+
* @return string
|
450 |
+
*/
|
451 |
+
public function __toString()
|
452 |
+
{
|
453 |
+
return $this->toString();
|
454 |
+
}
|
455 |
+
|
456 |
+
/**
|
457 |
+
* sets a cache for Zend_Currency
|
458 |
+
*
|
459 |
+
* @param Zend_Cache_Core $cache Cache to set
|
460 |
+
*/
|
461 |
+
public static function setCache(Zend_Cache_Core $cache)
|
462 |
+
{
|
463 |
+
Zend_Locale_Data::setCache($cache);
|
464 |
+
}
|
465 |
+
|
466 |
+
|
467 |
+
/**
|
468 |
+
* Sets a new locale for data retreivement
|
469 |
+
* Returned is the really set locale.
|
470 |
+
* Example: 'de_XX' will be set to 'de' because 'de_XX' does not exist
|
471 |
+
* 'xx_YY' will be set to 'root' because 'xx' does not exist
|
472 |
+
*
|
473 |
+
* @param string|Zend_Locale $locale OPTIONAL Locale for parsing input
|
474 |
+
* @return string
|
475 |
+
*/
|
476 |
+
public function setLocale($locale = null)
|
477 |
+
{
|
478 |
+
if ($locale instanceof Zend_Locale) {
|
479 |
+
$this->_locale = $locale->toString();
|
480 |
+
} else if (!$this->_locale = Zend_Locale::isLocale($locale, true)) {
|
481 |
+
require_once 'Zend/Currency/Exception.php';
|
482 |
+
throw new Zend_Currency_Exception("Given locale ($locale) does not exist");
|
483 |
+
}
|
484 |
+
|
485 |
+
// get currency details
|
486 |
+
$this->_options['currency'] = $this->getShortName(null, $this->_locale);
|
487 |
+
$this->_options['name'] = $this->getName (null, $this->_locale);
|
488 |
+
$this->_options['symbol'] = $this->getSymbol (null, $this->_locale);
|
489 |
+
|
490 |
+
return $this->getLocale();
|
491 |
+
}
|
492 |
+
|
493 |
+
|
494 |
+
/**
|
495 |
+
* Returns the actual set locale
|
496 |
+
*
|
497 |
+
* @return string
|
498 |
+
*/
|
499 |
+
public function getLocale()
|
500 |
+
{
|
501 |
+
return $this->_locale;
|
502 |
+
}
|
503 |
+
|
504 |
+
/**
|
505 |
+
* Internal method for checking the options array
|
506 |
+
*
|
507 |
+
* @param array $options
|
508 |
+
* @return array
|
509 |
+
* @throws Zend_Currency_Exception
|
510 |
+
*/
|
511 |
+
private function checkOptions(array $options = array())
|
512 |
+
{
|
513 |
+
if (count($options) == 0) {
|
514 |
+
return $this->_options;
|
515 |
+
}
|
516 |
+
foreach($options as $name => $value) {
|
517 |
+
$name = strtolower($name);
|
518 |
+
if ($name !== 'format') {
|
519 |
+
if (gettype($value) === 'string') {
|
520 |
+
$value = strtolower($value);
|
521 |
+
}
|
522 |
+
}
|
523 |
+
if (array_key_exists($name, $this->_options)) {
|
524 |
+
switch($name) {
|
525 |
+
case 'position' :
|
526 |
+
if (($value !== self::STANDARD) and ($value !== self::RIGHT) and ($value !== self::LEFT)) {
|
527 |
+
require_once 'Zend/Currency/Exception.php';
|
528 |
+
throw new Zend_Currency_Exception("Unknown position '" . $value . "'");
|
529 |
+
}
|
530 |
+
if ($value === self::STANDARD) {
|
531 |
+
$options['position'] = $this->_updateFormat();
|
532 |
+
}
|
533 |
+
break;
|
534 |
+
case 'format' :
|
535 |
+
if (!empty($value) && (!Zend_Locale::isLocale($value))) {
|
536 |
+
require_once 'Zend/Currency/Exception.php';
|
537 |
+
throw new Zend_Currency_Exception("'" .
|
538 |
+
(gettype($value) === 'object' ? get_class($value) : $value)
|
539 |
+
. "' is not a known locale.");
|
540 |
+
}
|
541 |
+
break;
|
542 |
+
case 'display' :
|
543 |
+
if (is_numeric($value) and ($value !== self::NO_SYMBOL) and ($value !== self::USE_SYMBOL) and
|
544 |
+
($value !== self::USE_SHORTNAME) and ($value !== self::USE_NAME)) {
|
545 |
+
require_once 'Zend/Currency/Exception.php';
|
546 |
+
throw new Zend_Currency_Exception("Unknown display '$value'");
|
547 |
+
}
|
548 |
+
break;
|
549 |
+
case 'precision' :
|
550 |
+
if ($value === NULL) {
|
551 |
+
$value = -1;
|
552 |
+
}
|
553 |
+
if (($value < -1) || ($value > 30)) {
|
554 |
+
require_once 'Zend/Currency/Exception.php';
|
555 |
+
throw new Zend_Currency_Exception("'$value' precision has to be between -1 and 30.");
|
556 |
+
}
|
557 |
+
break;
|
558 |
+
case 'script' :
|
559 |
+
try {
|
560 |
+
Zend_Locale_Format::convertNumerals(0,$options['script']);
|
561 |
+
} catch (Zend_Locale_Exception $e) {
|
562 |
+
require_once 'Zend/Currency/Exception.php';
|
563 |
+
throw new Zend_Currency_Exception($e->getMessage());
|
564 |
+
}
|
565 |
+
break;
|
566 |
+
}
|
567 |
+
}
|
568 |
+
else {
|
569 |
+
require_once 'Zend/Currency/Exception.php';
|
570 |
+
throw new Zend_Currency_Exception("Unknown option: '$name' = '$value'");
|
571 |
+
}
|
572 |
+
}
|
573 |
+
return $options;
|
574 |
+
}
|
575 |
}
|
package.xml
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Lib_ZF</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
-
<license>New BSD
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Zend Framework</summary>
|
10 |
<description>Zend Framework</description>
|
11 |
-
<notes>
|
12 |
<authors><author><name>Moshe</name><user>auto-converted</user><email>moshe@varien.com</email></author></authors>
|
13 |
-
<date>2008-
|
14 |
-
<time>
|
15 |
-
<contents><target name="magelib"><dir name="Zend"><dir name="Acl"><dir name="Assert"><file name="Interface.php" hash="0fafcd65bfadc8183bdf7f33a38561e2"/></dir><dir name="Resource"><file name="Interface.php" hash="21ce03f743a3ce717534fca2162eb2a2"/></dir><dir name="Role"><dir name="Registry"><file name="Exception.php" hash="abb8b0703e85bcf1d7ea631291dc47d3"/></dir><file name="Interface.php" hash="817b786e91125e0efb6a483587e089c2"/><file name="Registry.php" hash="ad7844de4eb30b791c797a9bb02acfb5"/></dir><file name="Exception.php" hash="828cb45d47024120be750ea1899ef4b4"/><file name="Resource.php" hash="3fc65868fa0fc40566de6b61e02df108"/><file name="Role.php" hash="f2459e89acbf40c43be2e15ccadc193c"/></dir><dir name="Auth"><dir name="Adapter"><dir name="Http"><dir name="Resolver"><file name="Exception.php" hash="3f85b08036d0ce2678c8905e357dcc27"/><file name="File.php" hash="026be75ef6986ce1e3a661eafba5131e"/><file name="Interface.php" hash="23e57f45620b01e089bb8e8a78f7436b"/></dir></dir><file name="DbTable.php" hash="df58d1592188f916067fad84daf6c7d0"/><file name="Digest.php" hash="23d80d6bbfdcb217de0384872d9a025c"/><file name="Exception.php" hash="b95fa38158b506fdfb4c411e1275833c"/><file name="Http.php" hash="66e80a1601548b3db2735ec63fcdd564"/><file name="InfoCard.php" hash="9fd5af7d5dcbdcb767b0a7e3ed16bc8d"/><file name="Interface.php" hash="57d02f576ea63bffda146649ffa602ad"/><file name="Ldap.php" hash="165ac591e6c8d39845a26321ced31e82"/><file name="OpenId.php" hash="dbe1be8e0094bd7516e01ae048921ce4"/></dir><dir name="Storage"><file name="Exception.php" hash="10963e3fa627261dd2137ca23abff42b"/><file name="Interface.php" hash="fc07d730fb12252e94e256c746952414"/><file name="NonPersistent.php" hash="3d5fdad37914b1ea247ff424c8521225"/><file name="Session.php" hash="a56632f09ea869302fda9be147088f4f"/></dir><file name="Exception.php" hash="395218af5c466cdaf6347826d47c527b"/><file name="Result.php" hash="61713d73db0fe1ef8d833429288f5a70"/></dir><dir name="Cache"><dir name="Backend"><file name="Apc.php" hash="46f28130eb1979bd8a21e05af0b67413"/><file name="File.php" hash="ea1d904834a2c9369230eca5550d9f19"/><file name="Interface.php" hash="626b7f79f72fa8b1b909b63e4f7abd1d"/><file name="Memcached.php" hash="cb0ae8c16343edd5b3bd23451d79233e"/><file name="Sqlite.php" hash="dbdc0f0d77f898e9e27bd2a3711e8cd8"/><file name="Test.php" hash="d67ba6bcf3a5d23d6485e4a089fbee1b"/><file name="ZendPlatform.php" hash="2cc5cda2ad622afd35b8dcdf88a395f9"/></dir><dir name="Frontend"><file name="Class.php" hash="4b8462fb2f507455cbf0b821248b25cf"/><file name="File.php" hash="4c90969ec6da89ac4420f224840a20f1"/><file name="Function.php" hash="a266d7ca2fa7139a8c693aac1b772a36"/><file name="Output.php" hash="4d6bd79d001662c85f07138c18b861ba"/><file name="Page.php" hash="de0c015cdf1f37ac7c52f9373ecd3a7d"/></dir><file name="Backend.php" hash="3a41631e8c543587b9affc59ff272ba5"/><file name="Core.php" hash="fe6ef49d888d9d4b33c9298e42b5c950"/><file name="Exception.php" hash="e2de7b52c81c6783b6fecdaaf97e6db8"/></dir><dir name="Config"><file name="Exception.php" hash="4f4521bc2c906d3fe19b742355370abc"/><file name="Ini.php" hash="3e22cc05a2db94a2dfd11b6354d8a47a"/><file name="Xml.php" hash="d1b71f2134bd93fa30f9bebb354490fa"/></dir><dir name="Console"><dir name="Getopt"><file name="Exception.php" hash="01db2c8522fe36b32de434717f6f5ec3"/></dir><file name="Getopt.php" hash="85c9b31440f5e8127d35f65e30eef26a"/></dir><dir name="Controller"><dir name="Action"><dir name="Helper"><dir name="AutoComplete"><file name="Abstract.php" hash="5c8e2486430ffecd56acc2100b85f00c"/></dir><file name="Abstract.php" hash="cbad87eee731c965c4132cf9b5187340"/><file name="ActionStack.php" hash="f16781b217783e8296727b126c4adbd1"/><file name="AjaxContext.php" hash="9b7f25fa147e5d84c6012fc38d421bd2"/><file name="AutoCompleteDojo.php" hash="61033b7fe7cae0fbfc385aaba1baddb8"/><file name="AutoCompleteScriptaculous.php" hash="5fee0e9f2be2080f44c10ff746abb6f3"/><file name="ContextSwitch.php" hash="69be8690317c9999702c58807af9aa32"/><file name="FlashMessenger.php" hash="405f050798169f0b97c6beed0ab1cfb2"/><file name="Json.php" hash="a92ae0b30b52aee3fd2752d46ebd7889"/><file name="Redirector.php" hash="16384d8dc3e83bccb974c6b6dc1b06bc"/><file name="Url.php" hash="af7358a053b54a7f1c8d2f0c99280255"/><file name="ViewRenderer.php" hash="b98196a715591161a833fba567a06fc7"/></dir><file name="Exception.php" hash="c3c2bfbe99d620000f0153455440974a"/><file name="HelperBroker.php" hash="ccefaa7d65ed0a0eb1d7d080c4776ba9"/></dir><dir name="Dispatcher"><file name="Abstract.php" hash="9fd3251dfbcdec87dc5404e23c757f1d"/><file name="Exception.php" hash="7a9ad680b85c5f07e6b06134d22ee455"/><file name="Interface.php" hash="ccb8933e53a2e006103e1ff7ecc3af19"/><file name="Standard.php" hash="1e851b0d12802f9f798c034078766a4e"/></dir><dir name="Plugin"><file name="Abstract.php" hash="aea89d6814e6ee92042be88f09d882da"/><file name="ActionStack.php" hash="33503f37d593c575acae10b6445d377b"/><file name="Broker.php" hash="cd7cbdddd21e993a5634b97cbc03735e"/><file name="ErrorHandler.php" hash="db41797f8d3b4314403642254f97473c"/></dir><dir name="Request"><file name="Abstract.php" hash="b3e2a7b9a5bf1508eab1d6d69968c5eb"/><file name="Apache404.php" hash="6f28a282737bc39c646e25e5ab311f7a"/><file name="Exception.php" hash="e30f7419eae37adbad4cee1f46a6f3a1"/><file name="Http.php" hash="2d2835dd78df3bdd06441e63c3d9ec1c"/><file name="Simple.php" hash="ddbc5af944f3feb974248bb3b5ad9791"/></dir><dir name="Response"><file name="Abstract.php" hash="30a5f80a940ae1b7f731de81d01e64e0"/><file name="Cli.php" hash="487811e93c98fd58d8a8962af769d817"/><file name="Exception.php" hash="d4deb96bf60cd896024d2000e3fec099"/><file name="Http.php" hash="f4e40b08599e07f5ce395d90fe2a2627"/></dir><dir name="Router"><dir name="Route"><file name="Interface.php" hash="a61346baee9b348fe627d61fcfbea6c8"/><file name="Module.php" hash="fef75ae542ca18b5691a4fefc4931106"/><file name="Regex.php" hash="f7b903a6e6410adaab563397e108cf26"/><file name="Static.php" hash="11e4a9568f4eba4166120a397d1914df"/></dir><file name="Abstract.php" hash="b65e84b0864f6e981102043b3955abed"/><file name="Exception.php" hash="3354e8f2d3157a8ead1a8c983146aabb"/><file name="Interface.php" hash="94ec9fa3c307e58c06463073b245b8b7"/><file name="Rewrite.php" hash="09fda3aad722e574c4e224d6f2c8dc21"/><file name="Route.php" hash="4935f9f7525ad100b19cfa81ecce3493"/></dir><file name="Action.php" hash="a308411a0041b95e21f451458ce01788"/><file name="Exception.php" hash="30ee1d5da324c0cde802eeadb44d8482"/><file name="Front.php" hash="d10792c85544736a76288f19ac88af9b"/></dir><dir name="Currency"><file name="Exception.php" hash="c133068acb047e4756b5643f5df1db52"/></dir><dir name="Date"><file name="Cities.php" hash="066ea58c3b7835c4d3a175648dd8415e"/><file name="DateObject.php" hash="78bed21369b87e4939a0dd7f0f0b1f14"/><file name="Exception.php" hash="4386c0c500010c23e66b92a789112168"/></dir><dir name="Db"><dir name="Adapter"><dir name="Db2"><file name="Exception.php" hash="049d0bcda997cd94b75353e5be7cf0f2"/></dir><dir name="Mysqli"><file name="Exception.php" hash="a6e4e57f79265efd711a0ff455b2fa95"/></dir><dir name="Oracle"><file name="Exception.php" hash="a2c95afa3b752373d7efb665fb7ce694"/></dir><dir name="Pdo"><dir name="Ibm"><file name="Db2.php" hash="6ff3991bae6f0795323d5fc6897003c8"/><file name="Ids.php" hash="77efd2ff16f257579835f30caa12bb02"/></dir><file name="Abstract.php" hash="671941965ea801f9be514db2e3d6c4aa"/><file name="Ibm.php" hash="06fc02232e8cc43dc39456df47c027db"/><file name="Mssql.php" hash="cc94459107383d01c1d233ed4d0264e1"/><file name="Mysql.php" hash="d176995cf685d796f997678c3acf3f88"/><file name="Oci.php" hash="373ea5eb531e3988f297579d529a0414"/><file name="Pgsql.php" hash="5e91f71e756699c593e755a6c92d6523"/><file name="Sqlite.php" hash="151ef5e41ae119170b5b08d26eb6c2b5"/></dir><file name="Abstract.php" hash="a4a6312ed31034a98e15e9ee50534890"/><file name="Db2.php" hash="49c4f7b5058d6ee89fb029f8ffe1f09a"/><file name="Exception.php" hash="cd410de1be148b9d3911a1d819fd3afb"/><file name="Mysqli.php" hash="c9c633f4b2074339272ac4c8a9a67dd2"/><file name="Oracle.php" hash="8eb1ea81529c9f848a0151e995c7a244"/></dir><dir name="Profiler"><file name="Exception.php" hash="f991d5cfa8d7540f5f9bbc05734ea65a"/><file name="Query.php" hash="bad0ee95a0403da74241a5f51907723a"/></dir><dir name="Select"><file name="Exception.php" hash="7b7121e7539403404d83c31e3aedd36e"/></dir><dir name="Statement"><dir name="Db2"><file name="Exception.php" hash="2d0558960b108df0cb68ead3904f0b39"/></dir><dir name="Mysqli"><file name="Exception.php" hash="41a9dc84251f459a8d7d15d1ed340fc8"/></dir><dir name="Oracle"><file name="Exception.php" hash="a5374ec4c16194787585dfd75ceb1729"/></dir><dir name="Pdo"><file name="Ibm.php" hash="16c3407a157fed38b4da579cf2a7b420"/></dir><file name="Db2.php" hash="f173dcf2a102b8cc6e8ae1f0932c73b6"/><file name="Exception.php" hash="1d13f29a55463db189629021c3461acc"/><file name="Interface.php" hash="aba65793c841601e91bc70a3a6424139"/><file name="Mysqli.php" hash="3d500dab37e3876d8455a2c9947b8582"/><file name="Oracle.php" hash="f323cf68543c59e6ee72fc2fb182aab2"/><file name="Pdo.php" hash="35a18d1a615037ffc0a262682302c0ff"/></dir><dir name="Table"><dir name="Row"><file name="Abstract.php" hash="309e79439d2985dc1c30b45db7139f78"/><file name="Exception.php" hash="a1a3a3fac265fbcd9ed7a4bf525aabf2"/></dir><dir name="Rowset"><file name="Abstract.php" hash="4474b05bfb130a52ebb0c08c5cf350d9"/><file name="Exception.php" hash="280b9706f2bca9c999581e73c79b1174"/></dir><dir name="Select"><file name="Exception.php" hash="55afa52193521264bdec8622b978b91f"/></dir><file name="Abstract.php" hash="0b7eb57061bf18e4e4ca94ef12e723a1"/><file name="Exception.php" hash="d509281ccc0a841c6bee561139e2f50b"/><file name="Row.php" hash="8a5ec1b8772e7257151910b93a5638ba"/><file name="Rowset.php" hash="43aa4155d19e0a734d44c83053afe82e"/><file name="Select.php" hash="4c28711d1431af06995dcd3e1b5d1c39"/></dir><file name="Exception.php" hash="6fb34555f28ca25856c9cd60433b9a7a"/><file name="Expr.php" hash="3ab33fff88a9abf836c712126244a775"/><file name="Profiler.php" hash="1bfb70176a4f8821f6b0e912b047ae6b"/><file name="Select.php" hash="3eea90708d5ffcb4a49740ec2f962c38"/><file name="Statement.php" hash="2606b62889459328b6a72239c762bd3d"/><file name="Table.php" hash="0eee0894fe7637d8cbe9cfe58cb2d171"/></dir><dir name="Feed"><dir name="Builder"><dir name="Header"><file name="Itunes.php" hash="a434d4377e1e1f0b008a407869d5221a"/></dir><file name="Entry.php" hash="d64a6ec20505dd1e639f425060a625be"/><file name="Exception.php" hash="d7a4e39d37e43533d39d16a21bff071a"/><file name="Header.php" hash="dcae4b25e0b992973819ffda9a4988a7"/><file name="Interface.php" hash="c2bcc9533163e9444d23a08a444677d7"/></dir><dir name="Entry"><file name="Abstract.php" hash="9f950d83653bdae10ada58cd2af3560f"/><file name="Atom.php" hash="b3b4ce3228cba9ffaab28198b1ffb11d"/><file name="Rss.php" hash="4f67f2a4efae68bf6a9221dd97a85956"/></dir><file name="Abstract.php" hash="6af2487e4d2877655b951035d6a5f238"/><file name="Atom.php" hash="21f43c77ff5eb22269220c9b85c5ad67"/><file name="Builder.php" hash="4cf2e9d108c683ec0c4ae014d55237f8"/><file name="Element.php" hash="5d8fa80d2f7d809bbc91e3cb3acf19a9"/><file name="Exception.php" hash="daf26c74759c3b31fdd2cfab751836ba"/><file name="Rss.php" hash="baeabd943da3a3c5bda5b44ecc7542a5"/></dir><dir name="Filter"><dir name="Word"><dir name="Separator"><file name="Abstract.php" hash="1c9e5625cdba7108761beccc32295d42"/></dir><file name="CamelCaseToDash.php" hash="62ad1e91d0e9a567baa9314d09b0684e"/><file name="CamelCaseToSeparator.php" hash="cc55dd570f2fc18b8ed3997a09c9f18f"/><file name="CamelCaseToUnderscore.php" hash="dc1365141bc34e723fb9c6b0c87b8b14"/><file name="DashToCamelCase.php" hash="098862727c13c9b6a32ca1f51bf5e336"/><file name="DashToSeparator.php" hash="555038f3ec657905aa80bcacc402935b"/><file name="DashToUnderscore.php" hash="bdca5d6e04e51d3ba4bc33563bc7c3bc"/><file name="SeparatorToCamelCase.php" hash="ad2ffdc3d5b8b448885864d09d71c582"/><file name="SeparatorToDash.php" hash="2766dbdffee3abb6e41949305e60e34e"/><file name="SeparatorToSeparator.php" hash="12450290e25bbce79a56d2960cdaf574"/><file name="UnderscoreToCamelCase.php" hash="5a8d4065066fa09d63f49981eac89845"/><file name="UnderscoreToDash.php" hash="0ca60c69d41ded124f4f90202c918b8c"/><file name="UnderscoreToSeparator.php" hash="5dc16b3f7544ac467c465b5d8e15cbd6"/></dir><file name="Alnum.php" hash="2994149470228dca5a3c94c63e17f3fb"/><file name="Alpha.php" hash="9dacaf32eb867a2c6b83dabcc275da18"/><file name="BaseName.php" hash="55fd885e77a046d393a1e676c063caea"/><file name="Digits.php" hash="b9388bd81bfb812a51fed9f73bd9f8f9"/><file name="Dir.php" hash="6172012c0167c9a816767a1d73fb89f8"/><file name="Exception.php" hash="a66a1a40f23d2052581793ea583f02c1"/><file name="HtmlEntities.php" hash="c89b7a35f8c1104cd8a120b47801ef42"/><file name="Inflector.php" hash="18faa0e1ced3f1334ba91a99cc96ddf8"/><file name="Input.php" hash="e6f999861a85fbdbb9748d72190aa5cc"/><file name="Int.php" hash="7400a0088a73267661c788bd8cda7096"/><file name="Interface.php" hash="c786c1fb0c1c7bac554f1aae21d36487"/><file name="PregReplace.php" hash="8db011213c746d69ec21a8f9f47799aa"/><file name="RealPath.php" hash="47cbe39ab9970b2732b30da16ab37c5f"/><file name="StringToLower.php" hash="5c2c34037b98cb8e155fea890dec8a10"/><file name="StringToUpper.php" hash="8d8ca951060702cc92d45c46bcc4aebb"/><file name="StringTrim.php" hash="fbffb8ba6546eab140c077aaf06084fa"/><file name="StripTags.php" hash="06f35114798148a21212fdbc3dec93e2"/></dir><dir name="Form"><dir name="Decorator"><file name="Abstract.php" hash="2ecb11dca0476c5b68b7ecfc03253d4b"/><file name="Callback.php" hash="09da01a78a4248cd2c07df0abc1cd8a3"/><file name="Description.php" hash="64f542292f3081e0e40527f89f15000b"/><file name="DtDdWrapper.php" hash="fcb0d5ea147e6e1c029fdc3c320cfe6a"/><file name="Errors.php" hash="1cf062726c08d6a0d859c7f6f1c69f3a"/><file name="Exception.php" hash="497fd9062dee14c999ac3ebb6908e8ab"/><file name="Fieldset.php" hash="33fa015352ebc7e0064741c0418ec975"/><file name="Form.php" hash="6139172417f71c59d1e6abd0617dc0b1"/><file name="FormElements.php" hash="4b59cd3bef52e1e2644289a3e2db7615"/><file name="HtmlTag.php" hash="76f51a87ed79afb7e360e9dab54d9ab9"/><file name="Image.php" hash="f68d981eb7fb68770b7654ea121a825e"/><file name="Interface.php" hash="4fec66f2b69c98fc5129ab6563f62028"/><file name="Label.php" hash="1bb378cf1397fde1a951d83751f77ebf"/><file name="ViewHelper.php" hash="980d4a62f136a15f9726213e9f3b9e6a"/><file name="ViewScript.php" hash="766d2dc7c589d509c20c194aa310009f"/></dir><dir name="Element"><file name="Button.php" hash="0f78bc76b20f08689263acd9b78bec63"/><file name="Checkbox.php" hash="70c773333fe6655349a99a190922e6d6"/><file name="Exception.php" hash="47b36db322b0b2400cef9fe65b7e00da"/><file name="Hash.php" hash="0913d271ca1b68447c22cf89ddb01606"/><file name="Hidden.php" hash="5dc7fac2dc1d6d0e766a1ee9579f3312"/><file name="Image.php" hash="5f7d64ef85d59acd7de681d5d3986a50"/><file name="Multi.php" hash="32005070c10aec94158979539bac2fd0"/><file name="MultiCheckbox.php" hash="da91f93106adee6a2ce167135e5894b2"/><file name="Multiselect.php" hash="2ea249c6b6186aa08043155ad75b8a82"/><file name="Password.php" hash="e58631f683e64b3a805e088a542cade3"/><file name="Radio.php" hash="58f37b3619210ac1a34fd813629f6399"/><file name="Reset.php" hash="dd56f8e5f65f5e400052aaa107ea3929"/><file name="Select.php" hash="ac95480ab218770def331f03dde99527"/><file name="Submit.php" hash="b12e925218ccd084a3a63a1d3590f49c"/><file name="Text.php" hash="04072e136c81bda35f73e7d33ed832a7"/><file name="Textarea.php" hash="b55ce27ef5d741c84f95522c9b2177cc"/><file name="Xhtml.php" hash="38428520b69d89bfabff5a595f1a472b"/></dir><file name="DisplayGroup.php" hash="a27c1dee424ae73148d94adee2d4a570"/><file name="Element.php" hash="2abf6b5dff02cee4ed986b9c62429919"/><file name="Exception.php" hash="3cf7ba5f5da10f220c850d169857b54b"/><file name="SubForm.php" hash="cf8c4346c336f8ab854dc1d6186a089d"/></dir><dir name="Gdata"><dir name="App"><dir name="Extension"><file name="Author.php" hash="639b51c3712b0617ac2ebd6ed85f74c6"/><file name="Category.php" hash="f531d04ba052e04af6c5373b8536cea5"/><file name="Content.php" hash="1a8085cf7c66c466765b30acdf375736"/><file name="Contributor.php" hash="a13fe8ffd1b0c3b17a75f08785e31e1f"/><file name="Control.php" hash="bc3a987a43adea1ef587ce16fd456372"/><file name="Draft.php" hash="3885dffd7c69390b42e734d0f06839db"/><file name="Element.php" hash="6c012262d2ff24e8c3ad4377bca166c7"/><file name="Email.php" hash="4d24bf4e1b8728d3707f385d820a4672"/><file name="Generator.php" hash="4f2687ea6e7f5e45f64996b007e114de"/><file name="Icon.php" hash="05c2598a2182d27c6952279cba9a8779"/><file name="Id.php" hash="f214d13038af49f1edcffa2791c41414"/><file name="Link.php" hash="6bbbc77aa2b5633f739566175124b27c"/><file name="Logo.php" hash="9ff34e574ae7eb9ed0e221d00da2f192"/><file name="Name.php" hash="f9a0417713dafdb30d2b031bed29391f"/><file name="Person.php" hash="1d12bffe82df61067d932d9090c00485"/><file name="Published.php" hash="55a0082e9c7d526af3e56ed57c27d8bd"/><file name="Rights.php" hash="bcae69b1a12da9f2eae99a46b6eb2a58"/><file name="Source.php" hash="728351217d9277051c4c72fe81591428"/><file name="Subtitle.php" hash="637767b01c8adc52ebb91455432d22ea"/><file name="Summary.php" hash="85c7242e6dee30960be5ec12d821947c"/><file name="Text.php" hash="83bd81cd2d7c69dff0b8441e265d289c"/><file name="Title.php" hash="7b4e3383df3162627750073acde52b7f"/><file name="Updated.php" hash="316da0ca11c6f8b8d761dfe628d89faf"/><file name="Uri.php" hash="17e4a8e67036837c6afa8033f7a8e31f"/></dir><file name="AuthException.php" hash="27469e7ebea5dca2f8b5d185ab4b9c21"/><file name="BadMethodCallException.php" hash="9798e201b46e3c6a2c33acd94457a2d4"/><file name="Base.php" hash="8b9f4609318fe612bb70dec6c2d924c2"/><file name="BaseMediaSource.php" hash="765e7fd3037a28413889a282c737033e"/><file name="CaptchaRequiredException.php" hash="f6cb705bb3ca4ed714f6d8819ea690c7"/><file name="Entry.php" hash="23caa3ec6fb2b80d8dc0ba07ddd37352"/><file name="Exception.php" hash="a768b2228e1fff70dfe996007fb839bb"/><file name="Extension.php" hash="63884c77b369e8329333634aaeb0ad09"/><file name="Feed.php" hash="35daeccc1a529f3d36db43036fdca415"/><file name="FeedEntryParent.php" hash="4129cff2a821cd0bcaf7e7e74d2de875"/><file name="FeedSourceParent.php" hash="64d9c0e61dadd8f4b7245c382061526a"/><file name="HttpException.php" hash="f571b8d8b7d46b9ab2dedd521d1d1510"/><file name="InvalidArgumentException.php" hash="f9234d092dbad35b19ca2386a651731f"/><file name="IOException.php" hash="31ccfa06a82408eb0d1df4d6c007f4a2"/><file name="LoggingHttpClientAdapterSocket.php" hash="62af70af325f915af043672da4c8e1d4"/><file name="MediaEntry.php" hash="26a7c0a1af93fa971ae00980e16cfa9e"/><file name="MediaFileSource.php" hash="771bbb66b0437e32e81e1db1a01079a0"/><file name="MediaSource.php" hash="edcea64af8a636cfad566d97e5fb2c78"/><file name="Util.php" hash="6c06cf715a112534f947911c456414c4"/></dir><dir name="Calendar"><dir name="Extension"><file name="AccessLevel.php" hash="01c0112af87496c4555a5ef5962617f9"/><file name="Color.php" hash="00dd6267a2574a523173106ea5a2d75f"/><file name="Hidden.php" hash="eb385b474b71e121a90fca214fd897bf"/><file name="Link.php" hash="70b9bd5a979e4d587cc0b521baa201f7"/><file name="QuickAdd.php" hash="4b37fbc89e47ea18a4be09c61e89fd35"/><file name="Selected.php" hash="7b50aba1552dc7b022e0880803919319"/><file name="SendEventNotifications.php" hash="8d67e6f2d5bf3554ca0f2cdca1eb89f7"/><file name="Timezone.php" hash="be19e164f1a5666a7a802bd3f1e28070"/><file name="WebContent.php" hash="a60155ec98570598cb4a9867cb2ef6f0"/></dir><file name="EventEntry.php" hash="5ce35e8a6675f8bdce2baee91506e801"/><file name="EventFeed.php" hash="8dde02aa9abf66dee4c3e220d9a74b42"/><file name="EventQuery.php" hash="346eda3a0d677dd3d861429a48e73045"/><file name="ListEntry.php" hash="f7505b2503d2af3fafcc677f72f27fe2"/><file name="ListFeed.php" hash="72a45a499e65582ccb82822500b6fd06"/></dir><dir name="Docs"><file name="DocumentListEntry.php" hash="6d1d26a85e487f1a5cab8dce607bcc81"/><file name="DocumentListFeed.php" hash="918cc278083a8c2a1c5edc6c07554b4c"/><file name="Query.php" hash="198f616b930218eb511d54d34f035433"/></dir><dir name="Exif"><dir name="Extension"><file name="Distance.php" hash="5bd6a2b1aa61d4fc71cb6a3eec941b6b"/><file name="Exposure.php" hash="ecfea1c78690e58ed2f2cd0716ad4ad9"/><file name="Flash.php" hash="a44fad0ddf542235735238f37e11b049"/><file name="FocalLength.php" hash="bc150db5023c1a2f9c0833b592ba851e"/><file name="FStop.php" hash="0d487619b855a09db424f9f263e6b626"/><file name="ImageUniqueId.php" hash="3da4c7e16deb3e8d5bca07b94adf9b02"/><file name="Iso.php" hash="dba9b7c1e0cde5887c83cbc591c2dcb7"/><file name="Make.php" hash="3b5489c64bf2963a074723912568dcd1"/><file name="Model.php" hash="05321783da8fb60f506ba773b37e09c1"/><file name="Tags.php" hash="167f59f9c3c754110d64e1aa98a401c9"/><file name="Time.php" hash="217a0b9c21404e1696b7f20b3906e417"/></dir><file name="Entry.php" hash="1b1b70db54a96e3376eeacf86af118db"/><file name="Feed.php" hash="1a7ade8ca245e154d9c4ef40c0c13f7f"/></dir><dir name="Extension"><file name="AttendeeStatus.php" hash="8da8c7b90d9ef7867e534cf93af393ba"/><file name="AttendeeType.php" hash="842c9e20afbf89e6868134e6224d4f24"/><file name="Comments.php" hash="101db5e558f3e81dfb9bcc3ae6a0a77f"/><file name="EntryLink.php" hash="b0606db603cec83425f5a16eb02b5e45"/><file name="EventStatus.php" hash="9432fe5f55a21571dec3c0a66f488526"/><file name="ExtendedProperty.php" hash="213083d7bfc3a95f29eed80b85647e7f"/><file name="FeedLink.php" hash="a30ab17c97abb795c5f386fd22698e33"/><file name="OpenSearchItemsPerPage.php" hash="35c818de18c6eea822df6c35b282f6d0"/><file name="OpenSearchStartIndex.php" hash="479f17baa08ba7323bd5c431a02131fa"/><file name="OpenSearchTotalResults.php" hash="7a8fe0cb40cbb1b615cb419591700ce2"/><file name="OriginalEvent.php" hash="109c90347ba059ce38d025a4ddf610a5"/><file name="Rating.php" hash="a935f424be7bd7951d80142aed70addc"/><file name="Recurrence.php" hash="48b1ea4827ed89b35c19bb8e3d3ba259"/><file name="RecurrenceException.php" hash="9700485e4b23e4d2a42f9aa0d39e2390"/><file name="Reminder.php" hash="2b025dc6a23e6334f9bbf4c2377e61b1"/><file name="Transparency.php" hash="7066a19bf422dac6500bc177175d6157"/><file name="Visibility.php" hash="cf1e2ea83c2d95638591d99b5b9832e1"/><file name="When.php" hash="6b2d245890e2b3808c35460983269f31"/><file name="Where.php" hash="9f4eb01a47cc5335fb10482ecd141e90"/><file name="Who.php" hash="89e10d687f393256a1cfe16b1ea573fa"/></dir><dir name="Gapps"><dir name="Extension"><file name="EmailList.php" hash="7ceda9610f2504e68943959cc288303c"/><file name="Login.php" hash="7c64830e7746c3fc497a705bd6fa97bf"/><file name="Name.php" hash="80da39f77d276aa367d7fe01612975cd"/><file name="Nickname.php" hash="57ff17c84901c17880d61ad3d6731346"/><file name="Quota.php" hash="3ebfa46e60e8d8aa36134f354e684133"/></dir><file name="EmailListEntry.php" hash="efe0be98b85d54128291418f5a2ff6d9"/><file name="EmailListFeed.php" hash="54d98f518f741a6f8413ac09fea9e6b7"/><file name="EmailListQuery.php" hash="bfe20e55285d64bdd42068bcb66e9565"/><file name="EmailListRecipientEntry.php" hash="0b3b39e9b5a68157b49cf912d2c8b4be"/><file name="EmailListRecipientFeed.php" hash="7b7ae6ef9978bdc0212a6f70dee44725"/><file name="EmailListRecipientQuery.php" hash="79b5da100b4613bcd2e8c4e876786131"/><file name="Error.php" hash="15f14e435412cb4a96fae8d6b3b3dae8"/><file name="NicknameEntry.php" hash="70207b559e60bea4515fd767d937d566"/><file name="NicknameFeed.php" hash="99796c0502c4a660183116769bae7680"/><file name="NicknameQuery.php" hash="7b612638443264e7e246a32e65f83e05"/><file name="Query.php" hash="59379e797fda9e8d2ef2a5f211dfe16e"/><file name="ServiceException.php" hash="cb1677afa18262214e15217678d520bd"/><file name="UserEntry.php" hash="80d115b357296a7c58af7458596e4fb3"/><file name="UserFeed.php" hash="05df00f1431c3c835126ae2495ab1289"/><file name="UserQuery.php" hash="675ccfe81b80fb9adcd6a088f12f376c"/></dir><dir name="Gbase"><dir name="Extension"><file name="BaseAttribute.php" hash="1844cc44d171b014b70c35d6eebe36b0"/></dir><file name="Entry.php" hash="be0f249199651391cc2989cfcb919b35"/><file name="Feed.php" hash="132236da7e4cfb5da50c6b0e89c17a8a"/><file name="ItemEntry.php" hash="d402a3b59c70af96bad9743a03f5105f"/><file name="ItemFeed.php" hash="75998208c092651cab6708f2084a1fe3"/><file name="ItemQuery.php" hash="2344a964336fa9c9eabd2063170f11c3"/><file name="Query.php" hash="3dfbf2ea4d854737ac47cc191e4e071c"/><file name="SnippetEntry.php" hash="a1e81ead61b4a62fe8554aa92ec8d515"/><file name="SnippetFeed.php" hash="5370d84984e5e2eaa4abc279e852ffb7"/><file name="SnippetQuery.php" hash="8fe0dad61a3866d089da82ac65735213"/></dir><dir name="Geo"><dir name="Extension"><file name="GeoRssWhere.php" hash="4b7c71b1f84ba37b279425c61d9e2c4c"/><file name="GmlPoint.php" hash="829258c5883e7cfcf8135bf82fbc148e"/><file name="GmlPos.php" hash="fe8a6b7850775f3be558f25fbbb0807a"/></dir><file name="Entry.php" hash="57dc77743a214bea186eff4417be33dc"/><file name="Feed.php" hash="7ba64f12e26253a8d74098e1101969a3"/></dir><dir name="Kind"><file name="EventEntry.php" hash="0a08f40a19cb74eb709f2c85f9784c1c"/></dir><dir name="Media"><dir name="Extension"><file name="MediaCategory.php" hash="9e799c998d542cba17e1da867f4907bc"/><file name="MediaContent.php" hash="778e55e4becddd6d91e1a4149065a5da"/><file name="MediaCopyright.php" hash="bd00b95262bd471143adfb481c3270f7"/><file name="MediaCredit.php" hash="3163f8df03a3552044a8cb3b32c549f6"/><file name="MediaDescription.php" hash="713aa1ced8e388328cd517efa8ac53af"/><file name="MediaGroup.php" hash="d7eb86af852fdd5ca4cc76436453b49f"/><file name="MediaHash.php" hash="4952ed2799730b2cb33717171cc98bff"/><file name="MediaKeywords.php" hash="cf500f28a11e22b37c4659e80e11f54f"/><file name="MediaPlayer.php" hash="f306ea04753b412beae5a51108abde4c"/><file name="MediaRating.php" hash="28184196eb7fa4cfc8a6f59c5e19c023"/><file name="MediaRestriction.php" hash="b3147355f744f3b5cebcee869314bbdf"/><file name="MediaText.php" hash="864f8711e11e89ae629ced70481c47a7"/><file name="MediaThumbnail.php" hash="6ada31eb57cffb64716d3c353abf324a"/><file name="MediaTitle.php" hash="9f74f51771eb1317210b6a98cddf1088"/></dir><file name="Entry.php" hash="d6660bffacd793cdf3009f4f45f58623"/><file name="Feed.php" hash="b42e1ecf83f72e25bafbd8c185bddd25"/></dir><dir name="Photos"><dir name="Extension"><file name="Access.php" hash="2a671ece7b52dfb227128aba67fe23e2"/><file name="AlbumId.php" hash="e70d9700798fe639eff53fa63a3d14fd"/><file name="BytesUsed.php" hash="4cd669706bd26117b1b7400f3eed7206"/><file name="Checksum.php" hash="7761b01f7d52d58d22b9a56976da7044"/><file name="Client.php" hash="592dc151d65cffe414e5a6f2c354f4be"/><file name="CommentCount.php" hash="684f585fd6055dceba8f10b0224c35f2"/><file name="CommentingEnabled.php" hash="c4222df2d7f907d39d11f06e80b9dc6b"/><file name="Height.php" hash="3dc1754b9c817a29d263d104959fc56c"/><file name="Id.php" hash="a47b8149b4903f22e8c37d984e451413"/><file name="Location.php" hash="aba94bedd2d64aabad999c8b8f78da3b"/><file name="MaxPhotosPerAlbum.php" hash="54fd82d7c1d45ae4006c88baec96ba4e"/><file name="Name.php" hash="a244c2ce0515ee4321d70cb3aeb5e9f2"/><file name="Nickname.php" hash="595a8ba2eaf99d03df0622a2fa4e259a"/><file name="NumPhotos.php" hash="f9e78afdb5054e8db61c49bb40dba194"/><file name="NumPhotosRemaining.php" hash="844d7739dcc41645afceafc89700d5d4"/><file name="PhotoId.php" hash="8b99bc41586bbda20e0316c0b6d905a7"/><file name="Position.php" hash="0fb39b58e918d6f8140a4fd0932415a3"/><file name="QuotaCurrent.php" hash="ab50f11383e2e66803fb1f7a60417afe"/><file name="QuotaLimit.php" hash="b293b999b4c844ac117cdc44f4384d1f"/><file name="Rotation.php" hash="0b842732cd0eb56057927151e8d399e5"/><file name="Size.php" hash="65a8fd076637d237dcb30815947e7818"/><file name="Thumbnail.php" hash="2f05df8fed864b3801318f7475f667f7"/><file name="Timestamp.php" hash="9de3792ccf6aa67d2753ade1acefec95"/><file name="User.php" hash="cd144cbaa17a8007902df7c9348c30a5"/><file name="Version.php" hash="7fa0c9d044c1a43537c1efd0e3b78d67"/><file name="Weight.php" hash="61443c33041a3abca8a439c9f4e37472"/><file name="Width.php" hash="08bb20e47f23e042d5f6361d15a6c4ac"/></dir><file name="AlbumEntry.php" hash="caead01f3a19245ae1b10fb1eadd7f48"/><file name="AlbumFeed.php" hash="f0b5abaedd686784efd5a644ada95406"/><file name="AlbumQuery.php" hash="e7c501bc4e047e0e0de67eb09fa4bf1a"/><file name="CommentEntry.php" hash="f7265fa05fda88e936a37a334159accb"/><file name="PhotoEntry.php" hash="d6093ac9a8eaa3235cf3768060bd992d"/><file name="PhotoFeed.php" hash="5c29fb6666a1adadbf8a51401f8043c8"/><file name="PhotoQuery.php" hash="207cf8965de31bee32cd2078c91e7d27"/><file name="TagEntry.php" hash="67067fcfddfbe4e0ffd9037a5ef35bea"/><file name="UserEntry.php" hash="bda3253c7ae56cb7b920dc4339c138f4"/><file name="UserFeed.php" hash="608979acebd8d4bfe48b1cd65bfc9402"/><file name="UserQuery.php" hash="a7797b3145c1fa00618d7d85de0f19bc"/></dir><dir name="Spreadsheets"><dir name="Extension"><file name="Cell.php" hash="3ca1c1bd7337886f009c68125a11f4b7"/><file name="ColCount.php" hash="d414a8db9f9dac4925d852d49f50cd7b"/><file name="Custom.php" hash="4a03ccd4fcf1d8f90bb4a3e17fc678b7"/><file name="RowCount.php" hash="10f81d51d61db82c069996ee1b1cca96"/></dir><file name="CellEntry.php" hash="31961952c88069b9b2c722482ed12ab8"/><file name="CellFeed.php" hash="7cf956f79c2eea9ee5231b44fb823e84"/><file name="CellQuery.php" hash="626cc536c9ca129991974f3da75eeb3f"/><file name="DocumentQuery.php" hash="0fe3029a667dc25d74f2196b56740168"/><file name="ListEntry.php" hash="e362494f2307bda07f38ce4f48907e33"/><file name="ListFeed.php" hash="2552403f116f4b9a611dc4d585ba02e0"/><file name="ListQuery.php" hash="d0f17d6275cff544c95d5ddb5f4aa8d2"/><file name="SpreadsheetEntry.php" hash="cce957356ef0991955e9528a2290a284"/><file name="SpreadsheetFeed.php" hash="007b101f756ce37aff1d3977754c1238"/><file name="WorksheetEntry.php" hash="93672a2c84cd660f2d3ce5d1d21648d3"/><file name="WorksheetFeed.php" hash="753c62f325482018b1cf2f55d942d31b"/></dir><dir name="YouTube"><dir name="Extension"><file name="Age.php" hash="6a576be93529e4b1ff1dac3cc7820248"/><file name="Books.php" hash="bb1279633799bf3262244676c01752ee"/><file name="Company.php" hash="3f76de81480445a7e68f2fc45cacc74d"/><file name="Control.php" hash="b8c4289c28f13f31bf4a4d883d2239fc"/><file name="Description.php" hash="9d62e9e96e99561e194a5704cfee6933"/><file name="Duration.php" hash="3c6042598edfa304d8420cbcd56b021c"/><file name="Gender.php" hash="450ff246ee70ad1c077849618c1aec7e"/><file name="Hobbies.php" hash="470e0dc385043e3f40d5231295eb3468"/><file name="Hometown.php" hash="4be60ac11ccd0adb38cf77f2b9707a4c"/><file name="Link.php" hash="2f3dc02ae7322aaa1cf2f4be9066318d"/><file name="Location.php" hash="6ba947b69ce434a72117667825638655"/><file name="MediaContent.php" hash="bc7942f4d5fcabb3d8e3e679c87cc6f5"/><file name="MediaGroup.php" hash="74ef443f8f71ba641585777c2af0c5c9"/><file name="Movies.php" hash="a5e5b6aae9a384aa16d8bf1057dfcedf"/><file name="Music.php" hash="2ea20d4c1d2a5f217ba7d5054876d09b"/><file name="NoEmbed.php" hash="b27452e25304c234e7676b2b42373909"/><file name="Occupation.php" hash="23e7d04f096088912aa2d75183aca43f"/><file name="Position.php" hash="aab7f6714fed6654f1e103641b73cc79"/><file name="Racy.php" hash="f443e5dd9e527d69315abf8e4681bce7"/><file name="Relationship.php" hash="40d0858126544d8c13ed973525f20016"/><file name="ReleaseDate.php" hash="314934bffcbc82287824efc33c86e057"/><file name="School.php" hash="9524aec2338011165daccb3c23af57f5"/><file name="State.php" hash="ed7ce911ac6e3a96a712540f4eb2ec4f"/><file name="Statistics.php" hash="7e5531a51d91c5757bfa38b377e7b6e0"/><file name="Status.php" hash="c914c1c43e5dd3a0b08b860c4b66ed4d"/><file name="Token.php" hash="1d22907989e69e88dd96b9440598df49"/><file name="Username.php" hash="091c034ea704f3185e9d583266375ba1"/></dir><file name="CommentEntry.php" hash="fde9f8e9fdf2f665fa54b8297fcdfa2b"/><file name="CommentFeed.php" hash="132704c978d574de56fa1ffcd906e577"/><file name="ContactEntry.php" hash="894289bc4fd5a8f9b530ab172f6e201b"/><file name="ContactFeed.php" hash="ce92ad1f9c798e4c6f6d18d697bf8c9f"/><file name="MediaEntry.php" hash="009ed8f2955b9fa1df188a0c7a7261c3"/><file name="PlaylistListEntry.php" hash="2c206a27568b015f52fd828b842575ff"/><file name="PlaylistListFeed.php" hash="9950e4b999887bb4d976f5a843debbfb"/><file name="PlaylistVideoEntry.php" hash="ea2e486e615937d37e41469c6877af27"/><file name="PlaylistVideoFeed.php" hash="5ed8d8ec5375cd58e82be99ff389eac9"/><file name="SubscriptionEntry.php" hash="73fc2988d5330ceedb65448ae77a6cfb"/><file name="SubscriptionFeed.php" hash="c70009fef7b261d9b280e65b4abcb8d7"/><file name="UserProfileEntry.php" hash="1c4b20cd8d9a4dcdd198b0f6f2876ccb"/><file name="VideoEntry.php" hash="bbfef052a6ab4de0d3012e58fc9b8ce0"/><file name="VideoFeed.php" hash="a996b934274f1d387f03e3b89900eca8"/><file name="VideoQuery.php" hash="0093495bf33a333637f29e355a6a10cf"/></dir><file name="App.php" hash="1a880fb53ca9da7e4a45c1a04bdc648e"/><file name="AuthSub.php" hash="79f159341214cccabe4ed0a82755243c"/><file name="Calendar.php" hash="c59511c0c31c038ac771b7aa267bc427"/><file name="ClientLogin.php" hash="0c487804dda07fe316f071ea74b24394"/><file name="Docs.php" hash="2072c88951b5489f53d3daf01108c35e"/><file name="Entry.php" hash="ec17b63211e84f3f057dc302520d7245"/><file name="Exif.php" hash="1d724ec09b13774c52502d16ee8d15fc"/><file name="Extension.php" hash="4c034e8da2ead9f71e994e4bdeaace09"/><file name="Feed.php" hash="acbe8e6814194e543f575742ad96bec0"/><file name="Gapps.php" hash="e070b8fc6561a341d6ccf0cb90e5e905"/><file name="Gbase.php" hash="07c99c7dfcbe5a86984b3a0fbccdad22"/><file name="Geo.php" hash="8c69de6383d6175eb340d95a42717279"/><file name="Media.php" hash="74e34e4fd63950e42a70196cca41f67a"/><file name="Photos.php" hash="62d9d9488a257779168927c5c3b68d8a"/><file name="Query.php" hash="8d9c45261b4d08ae398419f2da15c747"/><file name="Spreadsheets.php" hash="1563bd06e82e24938287a44f61373a16"/><file name="YouTube.php" hash="8f946c0f6ac7ffca6ed4d96d017737fa"/></dir><dir name="Http"><dir name="Client"><dir name="Adapter"><file name="Exception.php" hash="9ad468f16cb73f317f861625d5d0614d"/><file name="Interface.php" hash="de496cfc3393709e77992941feac381f"/><file name="Proxy.php" hash="009533643977b8e844ac14f9bda53aca"/><file name="Socket.php" hash="4068bc986807e42a8302f6425a76c85f"/><file name="Test.php" hash="ce04abf94b552c20e713c73e7ed18c23"/></dir><file name="Exception.php" hash="35be2a8e292cbaa8b7c97d97ca9ce3cb"/></dir><file name="Client.php" hash="ca99dfead88d417a63f992f3261ba7fc"/><file name="Cookie.php" hash="f9b867d0011dfcbf9e524caef235b31f"/><file name="CookieJar.php" hash="a47659475a437c585fd8c49fddb586f9"/><file name="Exception.php" hash="3ca8a8c18146ef3e4f28ef3f8ea98db6"/><file name="Response.php" hash="778f6c05c0a61a92ef94fe744f75c35e"/></dir><dir name="InfoCard"><dir name="Adapter"><file name="Default.php" hash="884eb7ac4d06ef49291163a2bfcaa7a4"/><file name="Exception.php" hash="df044446bc2d7c4672ded86470f47fc1"/><file name="Interface.php" hash="b0fd80d28747cecfb149446b996f7753"/></dir><dir name="Cipher"><dir name="Pki"><dir name="Adapter"><file name="Abstract.php" hash="5cadd05778d415c9d99bdcce4cccbd2c"/><file name="Rsa.php" hash="27f4663bfd7fe29c3ca9c477a1513385"/></dir><dir name="Rsa"><file name="Interface.php" hash="84b368a0618884f5ea57d77b76b1f81b"/></dir><file name="Interface.php" hash="39dfed51c33f56de5bc36e741be5edab"/></dir><dir name="Symmetric"><dir name="Adapter"><file name="Abstract.php" hash="c57c4c6f071e1b6d29c98864e26630a4"/><file name="Aes128cbc.php" hash="18d07e2948e43ddccfca24b07a1ff84a"/><file name="Aes256cbc.php" hash="d074659bb4d3d0846fe76145178097bb"/></dir><dir name="Aes128cbc"><file name="Interface.php" hash="7f7e5f46676ceb3dbdc0117ceea2cf5d"/></dir><dir name="Aes256cbc"><file name="Interface.php" hash="f32fdbdde74ac9dd3996d2bfc284ea9f"/></dir><file name="Interface.php" hash="aa5c42221dc37c2404841858be8ce301"/></dir><file name="Exception.php" hash="a44b7dceb43f1354873f2cbe86c89613"/></dir><dir name="Xml"><dir name="Assertion"><file name="Interface.php" hash="64e5c5053c9d3c8393bbca1ce9e19b93"/><file name="Saml.php" hash="6bd0c5462d3e780d8163e17a0753e317"/></dir><dir name="Element"><file name="Interface.php" hash="94131cf1bd26d62028f3a6d6ae0c8bab"/></dir><dir name="EncryptedData"><file name="Abstract.php" hash="78ac85977274ad8209692bfffc2484c5"/><file name="XmlEnc.php" hash="0383a19d6fe9e3169cd5355697935558"/></dir><dir name="KeyInfo"><file name="Abstract.php" hash="67de76654a5aaa9a84cf4621f224b9ef"/><file name="Default.php" hash="3d18e6d39f20f961af2821f9f70034d3"/><file name="Interface.php" hash="6ed4227636078210811dfc588499c679"/><file name="XmlDSig.php" hash="1e0723492c9acd26b3cb1839f3fb99a6"/></dir><dir name="Security"><dir name="Transform"><file name="EnvelopedSignature.php" hash="781d9cb22e71cdb8663d1031391e7be0"/><file name="Exception.php" hash="525b17f4c89713adf0199e9883b230db"/><file name="Interface.php" hash="b86aa022602931e4b3972d4577041809"/><file name="XmlExcC14N.php" hash="9015dd55eb6d9d637cd59e719d614c3a"/></dir><file name="Exception.php" hash="586e897a358eea9c08de0f4cf278950a"/><file name="Transform.php" hash="471fedf905b0e1fcc97dc00629a8e547"/></dir><file name="Assertion.php" hash="db4c91d71e5e042e4c4148d9427b1217"/><file name="Element.php" hash="c93a12ea1d64cc8bf2da700c7fd1c18a"/><file name="EncryptedData.php" hash="caf927bd0b05e3bbeebaf25d2920df80"/><file name="EncryptedKey.php" hash="c8018e09b7526b3a2aaee39cabf1205f"/><file name="Exception.php" hash="9841546378aa643fcae5cfadb7b9a290"/><file name="KeyInfo.php" hash="c69368cbc86e2b250cec4cb8f653ebf1"/><file name="Security.php" hash="e8655f8abc31ea20b336d41c9667a8e4"/><file name="SecurityTokenReference.php" hash="08b7e09a3b6c9317958c5ca5c824f1b3"/></dir><file name="Cipher.php" hash="0e66151402091045976b8a42ec4b6bab"/><file name="Claims.php" hash="5170db5cb4f62172c86313804322d5a9"/><file name="Exception.php" hash="e68baf3b26fd7e4b07a16a639c429a09"/></dir><dir name="Json"><file name="Decoder.php" hash="a49ab66336e7e5ba7fb7cb27e2e0f7ee"/><file name="Encoder.php" hash="85d3c1a6413c754ed8c26429033b18a4"/><file name="Exception.php" hash="f22d5985ea3098b075e46157df486801"/></dir><dir name="Layout"><dir name="Controller"><dir name="Action"><dir name="Helper"><file name="Layout.php" hash="6f89f133c9b74652d5cc2c38068740ab"/></dir></dir><dir name="Plugin"><file name="Layout.php" hash="780c2c0e9f4a8628a3ab09d863035940"/></dir></dir><file name="Exception.php" hash="bc60b5fe01ad287c3ebbde4c881961e1"/></dir><dir name="Ldap"><file name="Exception.php" hash="6f8bc1a99e778aeacae78fd68b2053db"/></dir><dir name="Loader"><dir name="PluginLoader"><file name="Exception.php" hash="9fab01cf81a67aad72aa9b435a1c0a25"/><file name="Interface.php" hash="91572f09c6e22e395cedf10eb4407f4b"/></dir><file name="Exception.php" hash="cdbf1e16400a997de76ff11a20773f12"/><file name="PluginLoader.php" hash="85d42c1b36bf2df58da29ffe6bc87358"/></dir><dir name="Log"><dir name="Filter"><file name="Interface.php" hash="19691b600313d66bf3a546378c1a879b"/><file name="Message.php" hash="d5a8ca5b1f615d88da109a23194620e1"/><file name="Priority.php" hash="e98b98d614a82f442fa5bb7d0336f124"/><file name="Suppress.php" hash="45dec2b8ff96ca02a6e03d9f2c693699"/></dir><dir name="Formatter"><file name="Interface.php" hash="5bf8d00dcc3a0cafbb72a2ab5fd1279a"/><file name="Simple.php" hash="295639e7c8618939fdcdb491e0db2b1f"/><file name="Xml.php" hash="4f6d96cc36ad19b58d4c7485dff31877"/></dir><dir name="Writer"><file name="Abstract.php" hash="3f7d54be7530d60c43fb6041ba9b2e18"/><file name="Db.php" hash="d826d573f0d7c4cdc87101d9746e9d23"/><file name="Mock.php" hash="6f3c73102336aadbb2cd1b63c72c21c1"/><file name="Null.php" hash="2e93b0ba79ff8c6da25263b36487192b"/><file name="Stream.php" hash="5845f2f051762732091fa3a5f98927fd"/></dir><file name="Exception.php" hash="0aa8fddd3a81ddb9db09a45c6f1f2311"/></dir><dir name="Mail"><dir name="Message"><file name="File.php" hash="233e3e6ab2c77d03e31aff81e5462026"/><file name="Interface.php" hash="6e0b07340ba961522badf1c66ae2d7a8"/></dir><dir name="Part"><file name="File.php" hash="966853aa6e5b01dbc3216494a972f40b"/><file name="Interface.php" hash="6df8bfd606cf89633a0365db41421549"/></dir><dir name="Protocol"><dir name="Smtp"><dir name="Auth"><file name="Crammd5.php" hash="2d9d49e772980d7d691708229b7ccbd1"/><file name="Login.php" hash="280cbc866704ec7f5b071d53ef3a15ce"/><file name="Plain.php" hash="7f3798c07e41363443617e198e3f5c5d"/></dir></dir><file name="Abstract.php" hash="35484918a6abab1050657d9e62ae6ef4"/><file name="Exception.php" hash="391cc3fe6dc9f6a5b2d1b317f18891e2"/><file name="Imap.php" hash="d99d3b1c8aa8fc3e366a266d91746f24"/><file name="Pop3.php" hash="060677e4a1ecddfeb229dd6291ccc554"/><file name="Smtp.php" hash="9581ff2b24295bc6af00fe4055e0e5b3"/></dir><dir name="Storage"><dir name="Folder"><file name="Interface.php" hash="4bfaae6ce5261e40fc3cd9075a185d0b"/><file name="Maildir.php" hash="0256c2adb4cc0dd8864d4cdaaf562593"/><file name="Mbox.php" hash="c5c5491174a5ee017dcc815d3a7d87b9"/></dir><dir name="Writable"><file name="Interface.php" hash="14a4cd02644fd9c591d0190eebca9589"/><file name="Maildir.php" hash="fc8d79d94e84ff49663f10913ffaecfc"/></dir><file name="Abstract.php" hash="2732ec443a32b7e63b23bf97cf21d759"/><file name="Exception.php" hash="0fda156bbdfea7c4b6a7e4b72d7789a8"/><file name="Folder.php" hash="1cae603656ee0d42dfd0e62dd999ea5c"/><file name="Imap.php" hash="c9ac7efd90adbb0fd41db148c54015a2"/><file name="Maildir.php" hash="c122d978ff53636f5f42586016bfcbe8"/><file name="Mbox.php" hash="875e6c75c9d94c4aebf2dda99167ba3f"/><file name="Pop3.php" hash="35a117d8d2e18da1dad53665b2e560fa"/></dir><dir name="Transport"><file name="Abstract.php" hash="9379d70115cfdaa82576255acfde5dbd"/><file name="Exception.php" hash="99295b01fdcb35360b814e6b2ff55a2a"/><file name="Sendmail.php" hash="a9e9d530adb89abeeefa66ec0bd836d7"/><file name="Smtp.php" hash="e1a081ae7bb6af9635275865de08c865"/></dir><file name="Exception.php" hash="c1097b2c0f93c0287525f24e3efa4d36"/><file name="Message.php" hash="e02ae4ed63048fb0f9102a7aa13a59bf"/><file name="Part.php" hash="f3b71c04b228b3713a328f8ea2613f03"/><file name="Storage.php" hash="e645b8b333d7caad4b6774f30d3d1891"/></dir><dir name="Measure"><dir name="Cooking"><file name="Volume.php" hash="f75dd10d7b5ab3952693e733616ff819"/><file name="Weight.php" hash="074b854f3c97645f9553fdcfa383ab2f"/></dir><dir name="Flow"><file name="Mass.php" hash="f1f98e33346bce7aa69acefd3cc5398b"/><file name="Mole.php" hash="f22ff9c3d0c1ecc7f755a358237f808f"/><file name="Volume.php" hash="dadb8428ec86a2ec71d539d7f9970951"/></dir><dir name="Viscosity"><file name="Dynamic.php" hash="197f4b17591a9be51e1b210c91b172b6"/><file name="Kinematic.php" hash="cc5702aea88fd948bc2c1f99197e92f3"/></dir><file name="Abstract.php" hash="425c2ec41428dfea7ab1744643df2ec0"/><file name="Acceleration.php" hash="403b31b39b867ad7d9b36cdea5535af9"/><file name="Angle.php" hash="3f4394bf16558cf5d52e01eb426aabd6"/><file name="Area.php" hash="0c6dbe4d29333819355f91cf7851c4ac"/><file name="Binary.php" hash="b1e92c8e2cba8cc48607161595be34b6"/><file name="Capacitance.php" hash="6357edad79f9019a1c544ed21dc4709c"/><file name="Current.php" hash="6ca579cda45ceb1e05b2197e048d0d42"/><file name="Density.php" hash="da6923f5347ec357506c1161c36426df"/><file name="Energy.php" hash="42a11297492666280871e335827ffb4c"/><file name="Exception.php" hash="aad3484256d7b131460868a904758dc8"/><file name="Force.php" hash="4c5aa3bfb6982e5d80d736379dc5d2b3"/><file name="Frequency.php" hash="cb57cf62e51a5f56a29a15cac4d68b3d"/><file name="Illumination.php" hash="cfc6b6b2cc6c5fb981f594389d53f633"/><file name="Length.php" hash="c995733d45edd248194311ae5ee5fedf"/><file name="Lightness.php" hash="09deb11196e41848c550ef6f348b509c"/><file name="Number.php" hash="4527e984be631482327ee2ac9eabbd1c"/><file name="Power.php" hash="c1a409f4bc35cb943223099b14221422"/><file name="Pressure.php" hash="e432fb4b6ef9dfcb5abf73ee93d647a6"/><file name="Speed.php" hash="455bf0ed5bda770396cf01a19893226e"/><file name="Temperature.php" hash="e306e6321668bf7b9a5340536ae29c41"/><file name="Torque.php" hash="f7f4a556ef05c04523d0cb51ca979fda"/><file name="Volume.php" hash="3b0a018659310f50e0ff9c7c99dcac6a"/><file name="Weight.php" hash="0ea74004d51a3102d4725eef665b40ac"/></dir><dir name="Memory"><dir name="Container"><file name="Interface.php" hash="35aaa16308eff8441a778be3ebb36ce4"/><file name="Locked.php" hash="f19258d90db5d0a384bb4c12a48eda3b"/><file name="Movable.php" hash="85405ef1a7810f1dbc0418293865091f"/></dir><file name="AccessController.php" hash="32977a6387b61172d9ca72ac5dda7746"/><file name="Container.php" hash="e5777ebfe002602b15f0729d70f5ec20"/><file name="Exception.php" hash="069fb82a3b5111a5e5f578f5771f81ec"/><file name="Manager.php" hash="e4979ddc95d7d2adef460c9414608b6d"/><file name="Value.php" hash="ddc067fa99e77afb3b9882b2354e83d0"/></dir><dir name="Mime"><file name="Decode.php" hash="ac4fff57b73402b544dfdb727780f251"/><file name="Exception.php" hash="59dcaaf24a89cffa8725219fcb337c11"/><file name="Message.php" hash="9499b65dfe100997307f1d6d34c034fc"/><file name="Part.php" hash="b7a698a5797a509c3fa6cfc07d78d770"/></dir><dir name="OpenId"><dir name="Consumer"><dir name="Storage"><file name="File.php" hash="2a7c93f1763d3cf5d71620b59fd9ed88"/></dir><file name="Storage.php" hash="5ddb8ee0b3dadfb3e3fc8970d769f4f8"/></dir><dir name="Extension"><file name="Sreg.php" hash="e97a5998028b5992b50e8a5a156b3e0c"/></dir><dir name="Provider"><dir name="Storage"><file name="File.php" hash="5058c52cc19a0148602a945902575246"/></dir><dir name="User"><file name="Session.php" hash="6cc24344ba4655fdfd400740b3a38826"/></dir><file name="Storage.php" hash="e70fd678ad50af3cff48be5cece05897"/><file name="User.php" hash="2508f23a1224e6c80185654d439cb7b7"/></dir><file name="Consumer.php" hash="d67299916b380f1059c421ef5166eba2"/><file name="Exception.php" hash="0edc308a4a739e802214b720de5892ff"/><file name="Extension.php" hash="279f0b1eb98b65df40c2055efb213c12"/><file name="Provider.php" hash="fb37f6b1b5fddd6cb2f66f3b58a13f66"/></dir><dir name="Pdf"><dir name="Cmap"><dir name="ByteEncoding"><file name="Static.php" hash="472093924ae09c6cba0ec8498e8c6fe9"/></dir><file name="ByteEncoding.php" hash="f5330437a6edb9a6272ff2a3686ca4c3"/><file name="SegmentToDelta.php" hash="e2d5e9c58a8a8eff0d1352a83a2cd53a"/><file name="TrimmedTable.php" hash="6a1e07e295b3bfe11c7feb346840ddfe"/></dir><dir name="Color"><file name="Cmyk.php" hash="87761f5d5c851b563920e94c6031d34a"/><file name="GrayScale.php" hash="79bd92b9006aa59d3842796670451ecc"/><file name="Html.php" hash="21d91695b6e9b4d1b855b50af0eaa89d"/><file name="Rgb.php" hash="5384dfd77604d187bd18ede62e0ce8fd"/></dir><dir name="Element"><dir name="Object"><file name="Stream.php" hash="ab1f8cb6dd3eead52f734ba1b4f0c3a8"/></dir><dir name="Reference"><file name="Context.php" hash="25b4975e9be3d9271692eeacb473359a"/><file name="Table.php" hash="4a93e9cd25c2c06eecb4fb00057da3de"/></dir><dir name="String"><file name="Binary.php" hash="62dfaf03aea537f0d2ec3471d16c4f09"/></dir><file name="Array.php" hash="358e787eb92631c79fdcf62fea523dda"/><file name="Boolean.php" hash="a2e870b98b18311729f0339ac6bbf851"/><file name="Dictionary.php" hash="1fbe5bb86017c3d4a337c66750e59664"/><file name="Name.php" hash="ec9c81ef39ae8e452f078a35b133ca70"/><file name="Null.php" hash="77040d7ce085641e0cc91d228e0f8a58"/><file name="Numeric.php" hash="45ead4d8a3c9a1c04a0dd53dbf84058a"/><file name="Object.php" hash="ff577e313e199bd9e4f633ff7fa380ee"/><file name="Reference.php" hash="e6f08569b55c9232d431624d7120b77b"/><file name="Stream.php" hash="61218c7ed6a74ef9665c91b699cca5d4"/><file name="String.php" hash="cc0c1902d510e4b5e31b0910a52bb21f"/></dir><dir name="ElementFactory"><file name="Interface.php" hash="b3932fbf90a05ca1d65711da0ee3f5fc"/><file name="Proxy.php" hash="dead703011c11d00068cbb11a57c6c5d"/></dir><dir name="FileParser"><dir name="Font"><dir name="OpenType"><file name="TrueType.php" hash="f344685e803e73f681cd2daf5260292f"/></dir><file name="OpenType.php" hash="45f6f40a5ccb821f39393d7a13f0e182"/></dir><dir name="Image"><file name="Png.php" hash="27685730a919db3c24957e5d789823b3"/></dir><file name="Font.php" hash="d125de39abd171aacdae4a4798dbc3a1"/><file name="Image.php" hash="9fa00aec7592af34455a0c0ea527196e"/></dir><dir name="FileParserDataSource"><file name="File.php" hash="05bb84a0886a3662fe4e88fb3e8f3169"/><file name="String.php" hash="d3357324e97a0daab8bbb228be194944"/></dir><dir name="Filter"><dir name="Compression"><file name="Flate.php" hash="9acbb960facb1dfc43244baa495858df"/><file name="Lzw.php" hash="69eef949cd28292873a4f9bfee74d4f3"/></dir><file name="Ascii85.php" hash="58a58b25cec346b54534172e717374c4"/><file name="AsciiHex.php" hash="1ab5eabd5ca13ab63643055a32cb9e4b"/><file name="Compression.php" hash="e50b94299c2c5be230499660abcd0c6f"/><file name="Interface.php" hash="79e4281ca28ed60f71222127f13fc0d0"/></dir><dir name="Parser"><file name="Stream.php" hash="5478643e23c905d25f436118ed82ed19"/></dir><dir name="Resource"><dir name="Font"><dir name="CidFont"><file name="TrueType.php" hash="c1440e322dd4ce47378425b4b079797d"/></dir><dir name="Simple"><dir name="Parsed"><file name="TrueType.php" hash="4e5b632dcad52e67764167a87c656bab"/></dir><dir name="Standard"><file name="Courier.php" hash="077b6628855788f8d9f9613a1eecf9b2"/><file name="CourierBold.php" hash="c8b08ecedd809d86794edb7db1093084"/><file name="CourierBoldOblique.php" hash="8d5c4eee8fea5871d361f5c1b63b6e70"/><file name="CourierOblique.php" hash="3be643cb7750606ba0dc85e0c82f9a27"/><file name="Helvetica.php" hash="d30e96648d632722584c64e5141d2a24"/><file name="HelveticaBold.php" hash="e1d2438cce88bba699dd9d1ece8ede39"/><file name="HelveticaBoldOblique.php" hash="64167d08da8c4f805447c5ba8214533d"/><file name="HelveticaOblique.php" hash="b6a5705a83f98f953e21204867936379"/><file name="Symbol.php" hash="ac963fdafbe9b25d65b8316467c824a9"/><file name="TimesBold.php" hash="ad6c48ac0d0d147f79091cb78ca4a319"/><file name="TimesBoldItalic.php" hash="7fd0fb3cd33c1c32bf62d38a0fbe77fc"/><file name="TimesItalic.php" hash="fe8b46fe0e75d715069bde1b220f5ab3"/><file name="TimesRoman.php" hash="aef4f3f0a16a04c5f8d55ba01de41b1b"/><file name="ZapfDingbats.php" hash="1a027d7bc8860da854756fb6d5986f49"/></dir><file name="Parsed.php" hash="042237bbd6eca73b6cc61718b78192c8"/><file name="Standard.php" hash="0b79662bafe1faed72735782fc8b6657"/></dir><file name="CidFont.php" hash="b129159dd8502603bbf97dca4d2459d2"/><file name="Extracted.php" hash="5751f705bd48ea8b6e74f91d76bb5f76"/><file name="FontDescriptor.php" hash="fc348816b6de078b2b2a6f1842662a28"/><file name="Simple.php" hash="e2e5be94573fd3eadc146a89b309bf7f"/><file name="Type0.php" hash="9d12edfa76ea5887cfbd88eb1d3dddd4"/></dir><dir name="Image"><file name="Jpeg.php" hash="d938deb0910412569bb483707e93ebe5"/><file name="Png.php" hash="38945edc6e69433d4d0a82f0af66d55e"/><file name="Tiff.php" hash="4024b205cd3fcecf3a90c5745fd3fdbf"/></dir><file name="Font.php" hash="b55c1f915a4be29d1c3854fe5b604bb7"/><file name="Image.php" hash="140e8d881391bab5d97fa27838187b57"/><file name="ImageFactory.php" hash="4a30077a55f4bf9977ca26d8a3a15848"/></dir><dir name="Trailer"><file name="Generator.php" hash="d115e610d74623fa264d5b53dabc6089"/><file name="Keeper.php" hash="957528c5291476d646296c359029cc3e"/></dir><file name="Cmap.php" hash="773fe99e9931d2a5cffddf434eb3817e"/><file name="Color.php" hash="287ffcb872505208592aef1fd3c26c57"/><file name="Const.php" hash="52b132751180857e541138f1e11faf13"/><file name="Element.php" hash="f2ffdf25098e674fb496df4886fe6534"/><file name="ElementFactory.php" hash="ec8658a5a7ff83a453f63b9f1d6ee358"/><file name="Exception.php" hash="6aa4649ee7da0ba9206931f57d0e6ac0"/><file name="FileParser.php" hash="e61c7d0b4fa0d8d26733c932720b23eb"/><file name="FileParserDataSource.php" hash="5430f783004a0076bd67b3420cfc119d"/><file name="Font.php" hash="bcac1e1a18306594d4fa15876364e8e3"/><file name="Image.php" hash="05c03bfd66c16569296343555d8daf50"/><file name="Page.php" hash="2eb4e8cdbef6df00a399ef406ee8fb04"/><file name="Parser.php" hash="fbfa4bd2f206f268bbe14d9a25aa90b3"/><file name="PhpArray.php" hash="46134e59159d39478332024c6458782a"/><file name="Resource.php" hash="127ca1e758cedc2df42437916031ed73"/><file name="StringParser.php" hash="cc4751af231ef5e9c388aba27b573beb"/><file name="Style.php" hash="e44d7906e6247b8cbd1023a793cfb326"/><file name="Trailer.php" hash="e6256cbc83eb29011a67679a2dc7b6c5"/><file name="UpdateInfoContainer.php" hash="abf9648aca0c075fa5a879f5e6b2f0d9"/></dir><dir name="Request"><file name="Interface.php" hash="a3b4d857af03d602b19026ebcc823871"/></dir><dir name="Rest"><dir name="Client"><file name="Exception.php" hash="339710646898be0691503cb16d5c4ec0"/><file name="Result.php" hash="ba6ebc86d734dd8c110d6a5125034b80"/></dir><dir name="Server"><file name="Exception.php" hash="2cefa30e49caf9bf62b2ca46508ec560"/></dir><file name="Client.php" hash="2afc8e8c3c4256cf6f024636682024a3"/><file name="Exception.php" hash="b6c3c3a66c14a13d559178606857eed7"/><file name="Server.php" hash="d96940ee78a4343881216f537c5716b8"/></dir><dir name="Search"><dir name="Lucene"><dir name="Analysis"><dir name="Analyzer"><dir name="Common"><dir name="Text"><file name="CaseInsensitive.php" hash="19bf6f0e7b24657c39233885306ad92c"/></dir><dir name="TextNum"><file name="CaseInsensitive.php" hash="6875fb4fa46a171ed21d4d00dae58b36"/></dir><dir name="Utf8"><file name="CaseInsensitive.php" hash="29a48c8189903ccf265bbd6d76ee9ee1"/></dir><dir name="Utf8Num"><file name="CaseInsensitive.php" hash="1b1586c9253f6d09df14e6b0c555f257"/></dir><file name="Text.php" hash="745389d76364d9a595e2630b9616665b"/><file name="TextNum.php" hash="c36572e42bb6dc98d6113d288df1d3b8"/><file name="Utf8.php" hash="0bf6bc51b76134557012ea53734f6303"/><file name="Utf8Num.php" hash="e789862b876a4c148e46f8e608668f24"/></dir><file name="Common.php" hash="4b0b7c99eff1cd8f9d4a6bb7b4ef2808"/></dir><dir name="TokenFilter"><file name="LowerCase.php" hash="097eaeda5e8af6e7a5365fd79bfa49a0"/><file name="LowerCaseUtf8.php" hash="fe31cc775ad8f168138fd46b6c8ef8dd"/><file name="ShortWords.php" hash="03df2e7d13741844f34e8d9206ca9693"/><file name="StopWords.php" hash="32722cb24d79614838f0393905d0facb"/></dir><file name="Analyzer.php" hash="8a145c4ea9e79d8e3b0cb424f652451c"/><file name="Token.php" hash="01b05ec0b6cd22df2c3a93924a38d09d"/><file name="TokenFilter.php" hash="2555c1d0881f42b9ba4c0f48555e4889"/></dir><dir name="Document"><file name="Html.php" hash="47d19025361b72c4671a526deddedbe7"/></dir><dir name="Index"><dir name="SegmentWriter"><file name="DocumentWriter.php" hash="bf9ae162816fd90fbc5ddff94a315c63"/><file name="StreamWriter.php" hash="09e3febd80eb6857fc4c208af205841a"/></dir><file name="DictionaryLoader.php" hash="d8869b154e075d655f602f0f6dd8a663"/><file name="FieldInfo.php" hash="d2bd241b1fe836d0fe6eb0a8bcb996df"/><file name="SegmentInfo.php" hash="d936c1a8e716e55cafc2856b5237511c"/><file name="SegmentInfoPriorityQueue.php" hash="52e8d64c1d641e914247a618acee2326"/><file name="SegmentMerger.php" hash="2500843a5c90743d882281ef35c4198d"/><file name="SegmentWriter.php" hash="011c4f094e22abf069996d4bc75e38bd"/><file name="Term.php" hash="d21b2b6132b9af9d99273c55aebd8668"/><file name="TermInfo.php" hash="9767284af422689cc679679964247571"/><file name="Writer.php" hash="76b2ae42de77e0d2de4b5eee909045e4"/></dir><dir name="Search"><dir name="Query"><file name="Boolean.php" hash="c843a3c16a51ce04cc6c38c5d5992991"/><file name="Empty.php" hash="628ed2ce3cc5a699ed8bc591b4fa8d97"/><file name="Fuzzy.php" hash="49167258acf15e4af8c1d10e1b1568d3"/><file name="Insignificant.php" hash="a64b79d6ea7475704be66278fe61a606"/><file name="MultiTerm.php" hash="372a802dce89841519a5f33ede1aaaa7"/><file name="Phrase.php" hash="b6996a7c505ea1c50ffac6128255229e"/><file name="Range.php" hash="f41c3766f8785a8a9cc96931733af846"/><file name="Term.php" hash="b9c17d6974228194ea1e12443e2bc882"/><file name="Wildcard.php" hash="603103f269810102b92a0f792544b563"/></dir><dir name="QueryEntry"><file name="Phrase.php" hash="de357c5da3db4e94abda13bca5eab768"/><file name="Subquery.php" hash="06a90c48ed311ce18dfdef4dafbdd259"/><file name="Term.php" hash="d2f66e3bf916b8b9419a44befbcfb013"/></dir><dir name="Similarity"><file name="Default.php" hash="7beb58cb32a897251506141f03edd2a3"/></dir><dir name="Weight"><file name="Boolean.php" hash="b83d2bde4e91bb8b2eb82da8a865fec7"/><file name="Empty.php" hash="b390afb5ba783b93d773a1d1d13db147"/><file name="MultiTerm.php" hash="7881e9696351ff07807c396d16805cc9"/><file name="Phrase.php" hash="c3f9306e883197c46b64107b03c40b35"/><file name="Term.php" hash="262954b10a96c78c43ab54c206c804c8"/></dir><file name="BooleanExpressionRecognizer.php" hash="96fa741f4dedb983f3d9f040890bc19a"/><file name="Query.php" hash="519e7589b9c68d39de999d4c2017147a"/><file name="QueryEntry.php" hash="9c94bd7d0bb0dd5f7bce4457c76e5459"/><file name="QueryHit.php" hash="9f6c8b0ca87fbacbbb3acf09009182ed"/><file name="QueryLexer.php" hash="b9d5ebbbf20474c8662674b9a292a515"/><file name="QueryParser.php" hash="32884756f5d9027b362541bc1343c112"/><file name="QueryParserContext.php" hash="79ca4abd405a9a4134f5f422dcf2f03b"/><file name="QueryParserException.php" hash="37ca8ae097e5adea15daf8ddc0c23e3b"/><file name="QueryToken.php" hash="86f27f4dde0adc8a36d2b58ed065dd7f"/><file name="Similarity.php" hash="96bc99bf37a3464f83b2ebae574a8c7a"/><file name="Weight.php" hash="b9598eec38d995ee0005b02f7b8520c2"/></dir><dir name="Storage"><dir name="Directory"><file name="Filesystem.php" hash="ef4f9d790e64fb220b88f7af5108fcef"/></dir><dir name="File"><file name="Filesystem.php" hash="acdd356c21884ad66ba740586df433c2"/><file name="Memory.php" hash="c6d14a077ae3d1ee0a99ebd50b585cf6"/></dir><file name="Directory.php" hash="49ec3c31dcafface532a9bf5e94735d6"/><file name="File.php" hash="c7302834f910cb2fed8cf06b7847f8b9"/></dir><file name="Document.php" hash="6c06136eead9d96c2bbf8898922c6546"/><file name="Exception.php" hash="4f7af315a3fc3b8fcd2259fbbd78a0d7"/><file name="Field.php" hash="ea19d05997e6572a2b3f228d5f545aeb"/><file name="FSM.php" hash="c382a51f82dc477dd5645dd9c273ab15"/><file name="FSMAction.php" hash="95acc5883096ecfa60afcd79c261b4d5"/><file name="Interface.php" hash="3a0593675a844ad78c05f263a3174352"/><file name="LockManager.php" hash="5da9866c585f5e7e5d653362a3c60098"/><file name="PriorityQueue.php" hash="c7b000e7f09f5f5b2d3467b3628f63bc"/><file name="Proxy.php" hash="230f8e26d113a7a13c6706af61455f92"/></dir><file name="Exception.php" hash="623bd98435d24e38fd942eba688bd3df"/><file name="Lucene.php" hash="b487fb369f3b2b6b10c947e3cd543dd1"/></dir><dir name="Server"><dir name="Reflection"><dir name="Function"><file name="Abstract.php" hash="867e7017c2d018c55b1c8f1cdb132e7e"/></dir><file name="Class.php" hash="6275562f875d379dde0a64e373a81622"/><file name="Exception.php" hash="23b797d085bea44ff7ade673bb3baaed"/><file name="Function.php" hash="121d9d8d9fe5d5b61d45347d1ecbcd38"/><file name="Method.php" hash="fe3a2697c840f86d325e5446a65efe41"/><file name="Node.php" hash="5e5583963c378bd49d9910403dc05b63"/><file name="Parameter.php" hash="112ce830276a5e3504d3227706e721ab"/><file name="Prototype.php" hash="fdfa408bb42aa19bc7142e324c7d10a6"/><file name="ReturnValue.php" hash="c2ba1de403d9e95344284222a641a9f7"/></dir><file name="Abstract.php" hash="b3e317a938489fb82cdfe7cef6b2f8e9"/><file name="Exception.php" hash="ed783ca66452bc950ce013c1cfeb28ec"/><file name="Interface.php" hash="9a1de036a28a009aba326f2e2b4de6cb"/><file name="Reflection.php" hash="5a21984c3026add1d74bf8196ae3799a"/></dir><dir name="Service"><dir name="Amazon"><file name="Accessories.php" hash="0f6ba9d19efdcd1604b31cba4d9224f4"/><file name="CustomerReview.php" hash="fa49c69079133b5e1ec0257756272801"/><file name="EditorialReview.php" hash="b0d75aeed907b2e35f8c6330f1af294b"/><file name="Image.php" hash="f9f77e1ab9c69bcda1685b8d71011c48"/><file name="Item.php" hash="1fe0d00ac4083c8414e65592f50076b6"/><file name="ListmaniaList.php" hash="df638caadb73d95dcaaa2398b8249d27"/><file name="Offer.php" hash="9a077c2e4be3b0126b605b2c331b0e5c"/><file name="OfferSet.php" hash="79845b845f5786e565bb03cd8a82dd5d"/><file name="Query.php" hash="99ddf34e2eb6562b86ab0183910ab01c"/><file name="ResultSet.php" hash="c0ffa84574ffa7b3ab52a32a60d590c2"/><file name="SimilarProduct.php" hash="13bcea0963a3a6a53ae12774a69ae9a4"/></dir><dir name="Delicious"><file name="Exception.php" hash="939858fb6ca8c34441fa68d6047b8509"/><file name="Post.php" hash="e25f7005b9d5c119721cb1883371b480"/><file name="PostList.php" hash="0360ec8e7b8213bd3acbcb73e8e23ff1"/><file name="SimplePost.php" hash="50dfdd1f7cdceab806b1b4050fc9a480"/></dir><dir name="Flickr"><file name="Image.php" hash="3f217c745da9a4aee0b18ec0d9e49ddb"/><file name="Result.php" hash="0f6c04a84d19af46be46e07cd785d4aa"/><file name="ResultSet.php" hash="cd062048653b8d80008c70cf05e24a72"/></dir><dir name="Nirvanix"><dir name="Namespace"><file name="Base.php" hash="e729ad01667d10d5c30e8e563e3c4ad7"/><file name="Imfs.php" hash="82483c2f0e784407dece9567ff7f1b0c"/></dir><file name="Exception.php" hash="1bb10303d6560a40f8b6e32414a555a9"/><file name="Response.php" hash="6dc221fc0e191a441ea6aa19860f9f83"/></dir><dir name="Simpy"><file name="Link.php" hash="cd717bac2ac4bcb04c93c53c1b6673c5"/><file name="LinkQuery.php" hash="ebf4e9eb4e39f5c9ba74021d0785b234"/><file name="LinkSet.php" hash="b5d1d76ae783b7924f01468e19c700e0"/><file name="Note.php" hash="aa3ff1a8d1026d9a543a356e1500b17c"/><file name="NoteSet.php" hash="9fc02483f9de6ffa9935b53aae669272"/><file name="Tag.php" hash="8334adf42eb4af830ce820e64705279c"/><file name="TagSet.php" hash="fd1f7a088a6e26f8ed7f40bbaf37915f"/><file name="Watchlist.php" hash="6ce438614bcabb921c405910b377afd3"/><file name="WatchlistFilter.php" hash="45f4087260bce2e219e980e53e904c13"/><file name="WatchlistFilterSet.php" hash="7ad17cc42e69174f91e94d2f7927222e"/><file name="WatchlistSet.php" hash="0d3eba19e6fe37201e2c38d5798dd21d"/></dir><dir name="SlideShare"><file name="Exception.php" hash="bbf07c036a510bc45b8de6d386a6a1c6"/><file name="SlideShow.php" hash="fb054bcc17f1ef485d75bb5efdf9e7db"/></dir><dir name="StrikeIron"><file name="Base.php" hash="dec66a691b7b3cb3acb4f9874eef9db2"/><file name="Decorator.php" hash="0bb28ada57d92d6c67bfb4b076fde201"/><file name="Exception.php" hash="10b9bb8ec30dad01497c2447c3835fe7"/><file name="SalesUseTaxBasic.php" hash="3b272c2834593af601a1510581c744c2"/><file name="USAddressVerification.php" hash="d72014863aac89355e4c7156a0282898"/><file name="ZipCodeInfo.php" hash="8b7de494bcd9779c5d5d1ddcf3a64c47"/></dir><dir name="Technorati"><file name="Author.php" hash="b71f6d09fd69cbac32e2d88bd22e2a5a"/><file name="BlogInfoResult.php" hash="95ca28716a78be5be2010d89e6158e81"/><file name="CosmosResult.php" hash="31fed7f99cae43cf680465b89fd9143b"/><file name="CosmosResultSet.php" hash="cb588da6302f4871261e59cae40fd596"/><file name="DailyCountsResult.php" hash="e9bdb079aebe656a48d285646da947f7"/><file name="DailyCountsResultSet.php" hash="d0698dc5a1c1e329f437c6c1c9eef1e3"/><file name="Exception.php" hash="eb2cd7782fc26f9cb30c467c1af7dd4f"/><file name="GetInfoResult.php" hash="e402c510a6fdbe859b0d81c603435b08"/><file name="KeyInfoResult.php" hash="ea78172bd9bfb7d2f13b6e99f145e536"/><file name="Result.php" hash="2dd6b98a7b539f1a84df3c439a43aef8"/><file name="ResultSet.php" hash="34b9624c76ed4d23720916a8f8403329"/><file name="SearchResult.php" hash="d1de7c81102dadf93da7263a1cd597a8"/><file name="SearchResultSet.php" hash="5cb34b40a894e91467a914f9aedcebb9"/><file name="TagResult.php" hash="8812fc1dc25999ff462015a83d30b14d"/><file name="TagResultSet.php" hash="43948e61162cbdcd5433f8cd225c013a"/><file name="TagsResult.php" hash="2e33db4c696051dcd830870ef11882cb"/><file name="TagsResultSet.php" hash="702ed20001ca83dfa2d02f0c033eadfa"/><file name="Utils.php" hash="47041ba14f98eaadf793e3af5c3cd73d"/><file name="Weblog.php" hash="27bf011ceba4f85cc642f9e1b4690381"/></dir><dir name="Yahoo"><file name="Image.php" hash="ff69581093491100fc43b379833827f6"/><file name="ImageResult.php" hash="bff5bbd3bba204a1db334b9fa3877f74"/><file name="ImageResultSet.php" hash="c7f039b3479095bd7710e317c5e41dac"/><file name="InlinkDataResult.php" hash="08020a6902bcf0570e899055bd46e113"/><file name="InlinkDataResultSet.php" hash="e194206b711424e1447cb0b5fbd5d6bc"/><file name="LocalResult.php" hash="6eda4173dba78fe0f5e22aab1a60b14a"/><file name="LocalResultSet.php" hash="8181f588b4a2d7cb35e887a328635f7f"/><file name="NewsResult.php" hash="4eccb0efc95d4ad78e8fda3719c6b475"/><file name="NewsResultSet.php" hash="04606f8b6a74085e6d0a6ed12c663fdc"/><file name="PageDataResult.php" hash="2aa1d346b33623948a1e7e12ebbabe08"/><file name="PageDataResultSet.php" hash="8ac568333d98da4ae35a6e0dc65df67b"/><file name="Result.php" hash="1355d34585e5e1b9224390a3639f8094"/><file name="ResultSet.php" hash="7ed5c1e92f39791fe9c8f0e27387193e"/><file name="VideoResult.php" hash="ed4c04b463c2ea28801a5c9b074e8f3f"/><file name="VideoResultSet.php" hash="f10033eebf1d4cff3bad8a1d6f781ca4"/><file name="WebResult.php" hash="0d6b54781cbe0431da2345ba52eb1395"/><file name="WebResultSet.php" hash="d88cbe2685e1c703232451261a6c3d99"/></dir><file name="Abstract.php" hash="f3121450a43083873941e3780de33c30"/><file name="Akismet.php" hash="5c00d142ec29dfe610376e4c08683601"/><file name="Amazon.php" hash="f38fd7399d48f9645d3062b15fefa0db"/><file name="Audioscrobbler.php" hash="9a5348ed52e25f7a667b7ee3e923aa66"/><file name="Delicious.php" hash="536ebc6ebb71ac79090bb17abb23e9be"/><file name="Exception.php" hash="f30385a55fb19897184963bf4e22afbb"/><file name="Flickr.php" hash="b1b0928bf970dbd69e34b1e09f34054c"/><file name="Nirvanix.php" hash="06da1ea00962656d19cd5723309e52a2"/><file name="Simpy.php" hash="3f985d36ba987359818a81690df4ea3b"/><file name="SlideShare.php" hash="28edd1bcbfdb6f87257e001800e9f819"/><file name="StrikeIron.php" hash="fbcdcd384f7650fd1d597ff1ece78ece"/><file name="Technorati.php" hash="d6300d4d0d8327efe07ef96fe4b981bd"/><file name="Yahoo.php" hash="cfeb13cb90b0ffae6aea60f2b571561d"/></dir><dir name="Session"><dir name="SaveHandler"><file name="Interface.php" hash="3489c186e762c594cc12925c90060fcc"/></dir><dir name="Validator"><file name="Abstract.php" hash="75f9bbc462eff5235ae2ca3dcc48e714"/><file name="HttpUserAgent.php" hash="6f66fbf6b41965dc6e5f2b3b38593473"/><file name="Interface.php" hash="e8fc5c24f815bb55464c874ad7204b18"/></dir><file name="Abstract.php" hash="c9e304ccb23c2b64b2d6c47b24212988"/><file name="Exception.php" hash="160302987669ad43403706d9ef405f57"/><file name="Namespace.php" hash="2f2b4b0aac9888478453ce2fc160238d"/></dir><dir name="TimeSync"><file name="Exception.php" hash="d23195d983943eaf77a1dec41498d53f"/><file name="Ntp.php" hash="feebc42fab79cd8dada8309be5e16721"/><file name="Protocol.php" hash="bb7382f2abb0b4ddd278ef2be5262517"/><file name="Sntp.php" hash="15c66e9100a90ed5dc6c25a5fca95c9d"/></dir><dir name="Translate"><dir name="Adapter"><file name="Array.php" hash="66e2c3441aaf8958fe731007b0b8495d"/><file name="Csv.php" hash="23396cebfc7216dd85ae2dc98b08b4e4"/><file name="Gettext.php" hash="7be96320f9f773f0b32ec67a7c3af988"/><file name="Qt.php" hash="7e3265b3d0978509eda3ed3672f44c2d"/><file name="Tbx.php" hash="0eed98f486548ec226bb72db8870d283"/><file name="Tmx.php" hash="24870d77c3cdd53689a322d3ee987eac"/><file name="Xliff.php" hash="415e5cffeb5a43d6ddb9e92396837c4a"/><file name="XmlTm.php" hash="e6618a045cc845334b5e0dc6f63e120f"/></dir><file name="Adapter.php" hash="7499a75421ffe338a98afbaaeacb3140"/><file name="Exception.php" hash="7c0002781c1c563a9f1d3d4f382e2cd5"/></dir><dir name="Uri"><file name="Exception.php" hash="eb42a6646f23bc7b65b0e457816ed5ed"/><file name="Http.php" hash="2e1441c5436c08c4f76f40c30b9bc98f"/></dir><dir name="Validate"><dir name="Barcode"><file name="Ean13.php" hash="40f61a22b89877b6b37e3b6d475b5be0"/><file name="UpcA.php" hash="f772b7b3ab5f34525bfb064e0c7e25e5"/></dir><dir name="Hostname"><file name="At.php" hash="3125406a1214eba83814121747084211"/><file name="Ch.php" hash="208bf5077a6d01349caf89f32049940d"/><file name="De.php" hash="c8a2698a0d5fbcf1737879f125de571e"/><file name="Fi.php" hash="8738c6a95408e73d2ce4c415ad14a232"/><file name="Hu.php" hash="75e199bb3ee19ca54fd086016f0d3485"/><file name="Interface.php" hash="43f9998216852462b486adbaf6599629"/><file name="Li.php" hash="c08c65835b232b098df10937222151d5"/><file name="No.php" hash="d830670282dccc98dfc790c8981cdf3e"/><file name="Se.php" hash="0057c78c680f55b61bde5bf6246aad14"/></dir><file name="Abstract.php" hash="408d038c6a77b02c579f938631429695"/><file name="Alnum.php" hash="4b6a79c8a5e4cb865ee7e12afb226bdd"/><file name="Alpha.php" hash="f51fcafdc2ab1acc6df007ba1d77e5ae"/><file name="Barcode.php" hash="4593b5d17155b56f857c5e6f7265c364"/><file name="Between.php" hash="d0d4435ef3d6e4ab4e43fccd249b9d16"/><file name="Ccnum.php" hash="c956ce487144839eff13b07f55b26cb7"/><file name="Date.php" hash="e518ba5785b02004df1b73e76de0625d"/><file name="Digits.php" hash="d841743a513a75f2fedfa0ef3489d36d"/><file name="EmailAddress.php" hash="e9f0b3dcbcece3277cd8e05ed2ad4fde"/><file name="Exception.php" hash="3272ecd1b0b9bec224c124b08034cec3"/><file name="Float.php" hash="0fa83ce1b5c6f413baa695ba9ebde570"/><file name="GreaterThan.php" hash="b8f969a70edfe55b13a6abf86c2d6178"/><file name="Hex.php" hash="7271613da1bc891757e06e9e187d8c07"/><file name="Hostname.php" hash="9e1d2ce49ea96509535d87c6ffc237c6"/><file name="Identical.php" hash="255a424fa08108d4dd313bfccb3c1bfa"/><file name="InArray.php" hash="be63e1f720ee9710597873552bff47bd"/><file name="Int.php" hash="a46ea2dacccf400011bc7b695d4543fd"/><file name="Interface.php" hash="3ad0eadb0114cdd4705ace64984acf02"/><file name="Ip.php" hash="7b0a0f43289629590371804fbea0c17b"/><file name="LessThan.php" hash="14a1f7bb752d370268a37ba5283515c1"/><file name="NotEmpty.php" hash="0e8006257535e504d6a3aec101fb61f2"/><file name="Regex.php" hash="4e28ec0b7af73b6f66394bc933525662"/><file name="StringLength.php" hash="6628c7b1eb96768e02c7b768ea400a11"/></dir><dir name="View"><dir name="Helper"><dir name="Partial"><file name="Exception.php" hash="680a6e0bbbd035fd9200defad2dbcb77"/></dir><dir name="Placeholder"><dir name="Container"><file name="Abstract.php" hash="6b826076d522ea3a91f97dff75ac8d13"/><file name="Exception.php" hash="1c257684540c5d0ebf9df78bcde60ae5"/><file name="Standalone.php" hash="638f52dbcc4493635a82a1ddece3a00d"/></dir><dir name="Registry"><file name="Exception.php" hash="497bb66824766532411a3cf753190238"/></dir><file name="Container.php" hash="8ce04f6b1c48c11182a7d156f9de46f4"/><file name="Registry.php" hash="c8bcc102ed8e960588c0c5998416e945"/></dir><file name="Action.php" hash="1129369b4fc34ecb2b615203cbb1dce7"/><file name="DeclareVars.php" hash="16756fb080401a2cf11688578518831f"/><file name="Doctype.php" hash="8c35cc87bddbbc7f0ad1ff3e37ad7c9a"/><file name="Fieldset.php" hash="4c42ae8f1117337f12dbadecf3c48452"/><file name="Form.php" hash="9f02818d25d754287001176b27f24191"/><file name="FormButton.php" hash="1e2a645b6889afaf1c5d84bbc3c4aa5d"/><file name="FormCheckbox.php" hash="c73221b9e6ab33090cdd815d7c03096c"/><file name="FormElement.php" hash="c05ae515dffbc903daadef3cc7644673"/><file name="FormErrors.php" hash="91b467bee3e8ec89b8454164cd99b857"/><file name="FormFile.php" hash="70972342dd9b8f9e940796e375f34c21"/><file name="FormHidden.php" hash="ff8dd2c24eb7ad8ff2123c38ae813121"/><file name="FormImage.php" hash="f9669f918666c542dd5d6e2f6078bd63"/><file name="FormLabel.php" hash="3e4c46948b5d9d1ae1cf3ece03da88f5"/><file name="FormMultiCheckbox.php" hash="0abf8b94bc355a1716d871d88300e524"/><file name="FormNote.php" hash="cc49f42d264737a49081166201834b9a"/><file name="FormPassword.php" hash="c05513b694df36f6cbc1d703096a2f7f"/><file name="FormRadio.php" hash="ff6df6fab8e3aa7e00ccee6a27057669"/><file name="FormReset.php" hash="f7d38d2fb875d09e905f4b6ed4de9bce"/><file name="FormSelect.php" hash="b160af9f2ed18c371d482c283828b28c"/><file name="FormSubmit.php" hash="b17835433836e07425e8172103396972"/><file name="FormText.php" hash="3ffe6f745ef5b3a54966bf68ca8f6934"/><file name="FormTextarea.php" hash="145abe9bab67a9b151031e075018a2c1"/><file name="HeadLink.php" hash="15b0f1875da9743da951912a59805ac9"/><file name="HeadMeta.php" hash="9ba8cc723c10502e581bfe3f34734975"/><file name="HeadScript.php" hash="1d229adf1487d59c54bc2529f894e79c"/><file name="HeadStyle.php" hash="61f73b171c3ef82c484b6a37f1572e08"/><file name="HeadTitle.php" hash="c700e62cd9d52c17d69558739c9ca9d0"/><file name="HtmlList.php" hash="1f8edfdbbd8f4beb880102df9313f5fe"/><file name="InlineScript.php" hash="200f121921bf4fe92f21479a6c330b2d"/><file name="Json.php" hash="a4061273f5130c64599a3dedf16cfb70"/><file name="Layout.php" hash="11099afe5e0d70cbe8c66f6adc289fba"/><file name="Partial.php" hash="e7cd9256d989f6ee25b569ff1b9494fb"/><file name="PartialLoop.php" hash="5d911ba3d77ccdd462172f06b6e46591"/><file name="Placeholder.php" hash="b0df18e742df537c137b2bf0efb007a7"/><file name="Translate.php" hash="4d3ab6539b06367173a96f6327616df1"/><file name="Url.php" hash="f39930a1785a69c95b702a04cd11cf8b"/></dir><file name="Abstract.php" hash="c5290109e6e3aeac2a54a400a07e95d8"/><file name="Exception.php" hash="d0dadc5d9d5268b527038c27ec40d15b"/><file name="Interface.php" hash="7b05c73134ed63b9023b0c78ec4e9c50"/></dir><dir name="XmlRpc"><dir name="Client"><file name="Exception.php" hash="4225a21616cfe9734e1d298e913bb2c0"/><file name="FaultException.php" hash="8ff899840f66ace38e9b7f2b118fe355"/><file name="HttpException.php" hash="dcbd44b3e7e4096bd61bbb878e1938f7"/><file name="IntrospectException.php" hash="4f02f9aa0ffba8fdf73051959419bdb9"/><file name="ServerIntrospection.php" hash="791ea5fff2443e6e1e3fdaa0ae809ce5"/><file name="ServerProxy.php" hash="3bd641a0bdbcf536c766cbb20c4bee53"/></dir><dir name="Request"><file name="Http.php" hash="6943561fbd436e672896062ed86e4585"/><file name="Stdin.php" hash="e7c64e23e4ce12118d2f7603bbc3d0ca"/></dir><dir name="Response"><file name="Http.php" hash="d056da246a84f71162923f9d18be1aed"/></dir><dir name="Server"><file name="Cache.php" hash="d4560d26b13bc8971cf4cccdeac99bfe"/><file name="Exception.php" hash="188551be2ba7f9eec3c836071a167a99"/><file name="Fault.php" hash="fcb61ae2ad1fb2c891039c48d90d3b3d"/></dir><dir name="Value"><file name="Array.php" hash="05c0a7e7086496a17b9c0746dbc432c4"/><file name="Base64.php" hash="657b8a508b456f26f3ecabd66ffe7414"/><file name="Boolean.php" hash="f0f7278d192d2e6d4fa16dc58344db9b"/><file name="Collection.php" hash="ee73f9b7ed787fd1b6e1a7e57386171b"/><file name="DateTime.php" hash="8eb89b2915ff0949370191d7677a04dc"/><file name="Double.php" hash="6f1ae63fc6f3d54dcdbfdf71482d69b9"/><file name="Exception.php" hash="b15220cfbc9a7ab0aa6964856d3c02ff"/><file name="Integer.php" hash="0e1f1dfd1bdbf7c0d91ea39437b5c172"/><file name="Nil.php" hash="69d8f0f65bbd917597f15dc1296a1fd5"/><file name="Scalar.php" hash="6f52b1c8bc654494213741ae94c2dc3a"/><file name="String.php" hash="a7909cab26d01c7e3b995412c558d2f7"/><file name="Struct.php" hash="db0ae33379eac24f16cb2d9345307360"/></dir><file name="Client.php" hash="3271e0affaf410b76a2ff0e04cfa969e"/><file name="Exception.php" hash="cdc7344efa4ed97a5bfaa43952e730a1"/><file name="Fault.php" hash="591940a48dc97f1084ec87ca5cadb285"/><file name="Request.php" hash="aa47d9512cf863284507383c0ad67514"/><file name="Response.php" hash="67b1eaf58fcf405ac353ee75dbd2d148"/><file name="Server.php" hash="26ba62e2ad9264129e0694f6715a2593"/><file name="Value.php" hash="c9b82e67826b23ce00130c30804fb5af"/></dir><file name="Acl.php" hash="3789731b78477b01312609653d9c1f44"/><file name="Auth.php" hash="b35d1f672691e98c3b15f562edaaf68a"/><file name="Cache.php" hash="1f95fdb784fdcb03b2f88fbe7fd5ee87"/><file name="Config.php" hash="23d1fc638b110320ad411fda2e4673b7"/><file name="Currency.php" hash="5489ec7afe1ea9b935d9dc9873d5c374"/><file name="Date.php" hash="1727a499db4c1feabd1a6417f525a321"/><file name="Db.php" hash="eb3c0f1cef20940395591171e016a626"/><file name="Debug.php" hash="764612158359fdf88638c9d718decfbf"/><file name="Exception.php" hash="7444d4451b0836b2412d695f1c0b4941"/><file name="Feed.php" hash="07ec2d904f00b53381bc0596dfffdb1c"/><file name="Filter.php" hash="b8733aa856612453f457db106d54d61b"/><file name="Form.php" hash="c8cae4d201696fbd88ad1cbeaba4017e"/><file name="Gdata.php" hash="c58fa7dd24b4b3fce6572267739c3231"/><file name="InfoCard.php" hash="b625a8b4a6e45aebf348337a67621c0a"/><file name="Json.php" hash="c4f18f4d853051f81385f8f8d3e7dd17"/><file name="Layout.php" hash="3c7096c1453e12ee73adeba3ec4b675b"/><file name="Ldap.php" hash="2c3c920b16d795129a256946179bf773"/><file name="Loader.php" hash="9ebdb57f5c3b086717c7fec97b428f4c"/><file name="Log.php" hash="64340dfb3c74ca5a685b96e5542904f6"/><file name="Mail.php" hash="ad680b04cc97947270cf38e1ac063a5d"/><file name="Memory.php" hash="be81d4d3a6ddbe9d1d1c59cd9818d3af"/><file name="Mime.php" hash="b0ff066547446a375e2ff39508234e92"/><file name="OpenId.php" hash="bf1f9754cbd95fd021e9663a20ed7641"/><file name="Pdf.php" hash="9dc636da65f7bba6355a7cf55afacd14"/><file name="Registry.php" hash="338e7e56f9af84d2134bd8c316219060"/><file name="Session.php" hash="7576f11ea6dabbfc26ece44518333cea"/><file name="TimeSync.php" hash="7873f42ab040036cf6ecf60d101d89f3"/><file name="Translate.php" hash="73a389b58afe59a765519ee842899e0c"/><file name="Uri.php" hash="07982f29881a42c9eb8d25acea2f4dbf"/><file name="Validate.php" hash="7992780834bdfc7f0c0098cfeb0f6217"/><file name="Version.php" hash="0c26f0814f96935baa52dec6babf6a1c"/><file name="View.php" hash="03b46b303f50e369e37d2a6278a39952"/></dir></target></contents>
|
16 |
<compatible/>
|
17 |
-
<dependencies><required><package><name>Mage_Pear_Helpers</name><channel>community</channel><min>1.0.18800</min><max></max></package><package><name>Lib_ZF_Locale</name><channel>community</channel><min>1.0.
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Lib_ZF</name>
|
4 |
+
<version>1.0.19700</version>
|
5 |
<stability>stable</stability>
|
6 |
+
<license>New BSD</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Zend Framework</summary>
|
10 |
<description>Zend Framework</description>
|
11 |
+
<notes>1.0.19700</notes>
|
12 |
<authors><author><name>Moshe</name><user>auto-converted</user><email>moshe@varien.com</email></author></authors>
|
13 |
+
<date>2008-04-28</date>
|
14 |
+
<time>17:14:39</time>
|
15 |
+
<contents><target name="magelib"><dir name="Zend"><dir name="Acl"><dir name="Assert"><file name="Interface.php" hash="0fafcd65bfadc8183bdf7f33a38561e2"/></dir><dir name="Resource"><file name="Interface.php" hash="21ce03f743a3ce717534fca2162eb2a2"/></dir><dir name="Role"><dir name="Registry"><file name="Exception.php" hash="abb8b0703e85bcf1d7ea631291dc47d3"/></dir><file name="Interface.php" hash="817b786e91125e0efb6a483587e089c2"/><file name="Registry.php" hash="ad7844de4eb30b791c797a9bb02acfb5"/></dir><file name="Exception.php" hash="828cb45d47024120be750ea1899ef4b4"/><file name="Resource.php" hash="3fc65868fa0fc40566de6b61e02df108"/><file name="Role.php" hash="f2459e89acbf40c43be2e15ccadc193c"/></dir><dir name="Auth"><dir name="Adapter"><dir name="Http"><dir name="Resolver"><file name="Exception.php" hash="3f85b08036d0ce2678c8905e357dcc27"/><file name="File.php" hash="026be75ef6986ce1e3a661eafba5131e"/><file name="Interface.php" hash="23e57f45620b01e089bb8e8a78f7436b"/></dir></dir><file name="DbTable.php" hash="df58d1592188f916067fad84daf6c7d0"/><file name="Digest.php" hash="23d80d6bbfdcb217de0384872d9a025c"/><file name="Exception.php" hash="b95fa38158b506fdfb4c411e1275833c"/><file name="Http.php" hash="66e80a1601548b3db2735ec63fcdd564"/><file name="InfoCard.php" hash="9fd5af7d5dcbdcb767b0a7e3ed16bc8d"/><file name="Interface.php" hash="57d02f576ea63bffda146649ffa602ad"/><file name="Ldap.php" hash="165ac591e6c8d39845a26321ced31e82"/><file name="OpenId.php" hash="dbe1be8e0094bd7516e01ae048921ce4"/></dir><dir name="Storage"><file name="Exception.php" hash="10963e3fa627261dd2137ca23abff42b"/><file name="Interface.php" hash="fc07d730fb12252e94e256c746952414"/><file name="NonPersistent.php" hash="3d5fdad37914b1ea247ff424c8521225"/><file name="Session.php" hash="a56632f09ea869302fda9be147088f4f"/></dir><file name="Exception.php" hash="395218af5c466cdaf6347826d47c527b"/><file name="Result.php" hash="61713d73db0fe1ef8d833429288f5a70"/></dir><dir name="Cache"><dir name="Backend"><file name="Apc.php" hash="46f28130eb1979bd8a21e05af0b67413"/><file name="File.php" hash="ea1d904834a2c9369230eca5550d9f19"/><file name="Interface.php" hash="626b7f79f72fa8b1b909b63e4f7abd1d"/><file name="Memcached.php" hash="cb0ae8c16343edd5b3bd23451d79233e"/><file name="Sqlite.php" hash="dbdc0f0d77f898e9e27bd2a3711e8cd8"/><file name="Test.php" hash="d67ba6bcf3a5d23d6485e4a089fbee1b"/><file name="ZendPlatform.php" hash="2cc5cda2ad622afd35b8dcdf88a395f9"/></dir><dir name="Frontend"><file name="Class.php" hash="4b8462fb2f507455cbf0b821248b25cf"/><file name="File.php" hash="4c90969ec6da89ac4420f224840a20f1"/><file name="Function.php" hash="a266d7ca2fa7139a8c693aac1b772a36"/><file name="Output.php" hash="4d6bd79d001662c85f07138c18b861ba"/><file name="Page.php" hash="de0c015cdf1f37ac7c52f9373ecd3a7d"/></dir><file name="Backend.php" hash="3a41631e8c543587b9affc59ff272ba5"/><file name="Core.php" hash="fe6ef49d888d9d4b33c9298e42b5c950"/><file name="Exception.php" hash="e2de7b52c81c6783b6fecdaaf97e6db8"/></dir><dir name="Config"><file name="Exception.php" hash="4f4521bc2c906d3fe19b742355370abc"/><file name="Ini.php" hash="3e22cc05a2db94a2dfd11b6354d8a47a"/><file name="Xml.php" hash="d1b71f2134bd93fa30f9bebb354490fa"/></dir><dir name="Console"><dir name="Getopt"><file name="Exception.php" hash="01db2c8522fe36b32de434717f6f5ec3"/></dir><file name="Getopt.php" hash="85c9b31440f5e8127d35f65e30eef26a"/></dir><dir name="Controller"><dir name="Action"><dir name="Helper"><dir name="AutoComplete"><file name="Abstract.php" hash="5c8e2486430ffecd56acc2100b85f00c"/></dir><file name="Abstract.php" hash="cbad87eee731c965c4132cf9b5187340"/><file name="ActionStack.php" hash="f16781b217783e8296727b126c4adbd1"/><file name="AjaxContext.php" hash="9b7f25fa147e5d84c6012fc38d421bd2"/><file name="AutoCompleteDojo.php" hash="61033b7fe7cae0fbfc385aaba1baddb8"/><file name="AutoCompleteScriptaculous.php" hash="5fee0e9f2be2080f44c10ff746abb6f3"/><file name="ContextSwitch.php" hash="69be8690317c9999702c58807af9aa32"/><file name="FlashMessenger.php" hash="405f050798169f0b97c6beed0ab1cfb2"/><file name="Json.php" hash="a92ae0b30b52aee3fd2752d46ebd7889"/><file name="Redirector.php" hash="16384d8dc3e83bccb974c6b6dc1b06bc"/><file name="Url.php" hash="af7358a053b54a7f1c8d2f0c99280255"/><file name="ViewRenderer.php" hash="b98196a715591161a833fba567a06fc7"/></dir><file name="Exception.php" hash="c3c2bfbe99d620000f0153455440974a"/><file name="HelperBroker.php" hash="ccefaa7d65ed0a0eb1d7d080c4776ba9"/></dir><dir name="Dispatcher"><file name="Abstract.php" hash="9fd3251dfbcdec87dc5404e23c757f1d"/><file name="Exception.php" hash="7a9ad680b85c5f07e6b06134d22ee455"/><file name="Interface.php" hash="ccb8933e53a2e006103e1ff7ecc3af19"/><file name="Standard.php" hash="1e851b0d12802f9f798c034078766a4e"/></dir><dir name="Plugin"><file name="Abstract.php" hash="aea89d6814e6ee92042be88f09d882da"/><file name="ActionStack.php" hash="33503f37d593c575acae10b6445d377b"/><file name="Broker.php" hash="cd7cbdddd21e993a5634b97cbc03735e"/><file name="ErrorHandler.php" hash="db41797f8d3b4314403642254f97473c"/></dir><dir name="Request"><file name="Abstract.php" hash="b3e2a7b9a5bf1508eab1d6d69968c5eb"/><file name="Apache404.php" hash="6f28a282737bc39c646e25e5ab311f7a"/><file name="Exception.php" hash="e30f7419eae37adbad4cee1f46a6f3a1"/><file name="Http.php" hash="2d2835dd78df3bdd06441e63c3d9ec1c"/><file name="Simple.php" hash="ddbc5af944f3feb974248bb3b5ad9791"/></dir><dir name="Response"><file name="Abstract.php" hash="30a5f80a940ae1b7f731de81d01e64e0"/><file name="Cli.php" hash="487811e93c98fd58d8a8962af769d817"/><file name="Exception.php" hash="d4deb96bf60cd896024d2000e3fec099"/><file name="Http.php" hash="f4e40b08599e07f5ce395d90fe2a2627"/></dir><dir name="Router"><dir name="Route"><file name="Interface.php" hash="a61346baee9b348fe627d61fcfbea6c8"/><file name="Module.php" hash="fef75ae542ca18b5691a4fefc4931106"/><file name="Regex.php" hash="f7b903a6e6410adaab563397e108cf26"/><file name="Static.php" hash="11e4a9568f4eba4166120a397d1914df"/></dir><file name="Abstract.php" hash="b65e84b0864f6e981102043b3955abed"/><file name="Exception.php" hash="3354e8f2d3157a8ead1a8c983146aabb"/><file name="Interface.php" hash="94ec9fa3c307e58c06463073b245b8b7"/><file name="Rewrite.php" hash="09fda3aad722e574c4e224d6f2c8dc21"/><file name="Route.php" hash="4935f9f7525ad100b19cfa81ecce3493"/></dir><file name="Action.php" hash="a308411a0041b95e21f451458ce01788"/><file name="Exception.php" hash="30ee1d5da324c0cde802eeadb44d8482"/><file name="Front.php" hash="d10792c85544736a76288f19ac88af9b"/></dir><dir name="Currency"><file name="Exception.php" hash="c133068acb047e4756b5643f5df1db52"/></dir><dir name="Date"><file name="Cities.php" hash="066ea58c3b7835c4d3a175648dd8415e"/><file name="DateObject.php" hash="78bed21369b87e4939a0dd7f0f0b1f14"/><file name="Exception.php" hash="4386c0c500010c23e66b92a789112168"/></dir><dir name="Db"><dir name="Adapter"><dir name="Db2"><file name="Exception.php" hash="049d0bcda997cd94b75353e5be7cf0f2"/></dir><dir name="Mysqli"><file name="Exception.php" hash="a6e4e57f79265efd711a0ff455b2fa95"/></dir><dir name="Oracle"><file name="Exception.php" hash="a2c95afa3b752373d7efb665fb7ce694"/></dir><dir name="Pdo"><dir name="Ibm"><file name="Db2.php" hash="6ff3991bae6f0795323d5fc6897003c8"/><file name="Ids.php" hash="77efd2ff16f257579835f30caa12bb02"/></dir><file name="Abstract.php" hash="671941965ea801f9be514db2e3d6c4aa"/><file name="Ibm.php" hash="06fc02232e8cc43dc39456df47c027db"/><file name="Mssql.php" hash="cc94459107383d01c1d233ed4d0264e1"/><file name="Mysql.php" hash="d176995cf685d796f997678c3acf3f88"/><file name="Oci.php" hash="373ea5eb531e3988f297579d529a0414"/><file name="Pgsql.php" hash="5e91f71e756699c593e755a6c92d6523"/><file name="Sqlite.php" hash="151ef5e41ae119170b5b08d26eb6c2b5"/></dir><file name="Abstract.php" hash="a4a6312ed31034a98e15e9ee50534890"/><file name="Db2.php" hash="49c4f7b5058d6ee89fb029f8ffe1f09a"/><file name="Exception.php" hash="cd410de1be148b9d3911a1d819fd3afb"/><file name="Mysqli.php" hash="c9c633f4b2074339272ac4c8a9a67dd2"/><file name="Oracle.php" hash="8eb1ea81529c9f848a0151e995c7a244"/></dir><dir name="Profiler"><file name="Exception.php" hash="f991d5cfa8d7540f5f9bbc05734ea65a"/><file name="Query.php" hash="bad0ee95a0403da74241a5f51907723a"/></dir><dir name="Select"><file name="Exception.php" hash="7b7121e7539403404d83c31e3aedd36e"/></dir><dir name="Statement"><dir name="Db2"><file name="Exception.php" hash="2d0558960b108df0cb68ead3904f0b39"/></dir><dir name="Mysqli"><file name="Exception.php" hash="41a9dc84251f459a8d7d15d1ed340fc8"/></dir><dir name="Oracle"><file name="Exception.php" hash="a5374ec4c16194787585dfd75ceb1729"/></dir><dir name="Pdo"><file name="Ibm.php" hash="16c3407a157fed38b4da579cf2a7b420"/></dir><file name="Db2.php" hash="f173dcf2a102b8cc6e8ae1f0932c73b6"/><file name="Exception.php" hash="1d13f29a55463db189629021c3461acc"/><file name="Interface.php" hash="aba65793c841601e91bc70a3a6424139"/><file name="Mysqli.php" hash="3d500dab37e3876d8455a2c9947b8582"/><file name="Oracle.php" hash="f323cf68543c59e6ee72fc2fb182aab2"/><file name="Pdo.php" hash="35a18d1a615037ffc0a262682302c0ff"/></dir><dir name="Table"><dir name="Row"><file name="Abstract.php" hash="309e79439d2985dc1c30b45db7139f78"/><file name="Exception.php" hash="a1a3a3fac265fbcd9ed7a4bf525aabf2"/></dir><dir name="Rowset"><file name="Abstract.php" hash="4474b05bfb130a52ebb0c08c5cf350d9"/><file name="Exception.php" hash="280b9706f2bca9c999581e73c79b1174"/></dir><dir name="Select"><file name="Exception.php" hash="55afa52193521264bdec8622b978b91f"/></dir><file name="Abstract.php" hash="0b7eb57061bf18e4e4ca94ef12e723a1"/><file name="Exception.php" hash="d509281ccc0a841c6bee561139e2f50b"/><file name="Row.php" hash="8a5ec1b8772e7257151910b93a5638ba"/><file name="Rowset.php" hash="43aa4155d19e0a734d44c83053afe82e"/><file name="Select.php" hash="4c28711d1431af06995dcd3e1b5d1c39"/></dir><file name="Exception.php" hash="6fb34555f28ca25856c9cd60433b9a7a"/><file name="Expr.php" hash="3ab33fff88a9abf836c712126244a775"/><file name="Profiler.php" hash="1bfb70176a4f8821f6b0e912b047ae6b"/><file name="Select.php" hash="3eea90708d5ffcb4a49740ec2f962c38"/><file name="Statement.php" hash="2606b62889459328b6a72239c762bd3d"/><file name="Table.php" hash="0eee0894fe7637d8cbe9cfe58cb2d171"/></dir><dir name="Feed"><dir name="Builder"><dir name="Header"><file name="Itunes.php" hash="a434d4377e1e1f0b008a407869d5221a"/></dir><file name="Entry.php" hash="d64a6ec20505dd1e639f425060a625be"/><file name="Exception.php" hash="d7a4e39d37e43533d39d16a21bff071a"/><file name="Header.php" hash="dcae4b25e0b992973819ffda9a4988a7"/><file name="Interface.php" hash="c2bcc9533163e9444d23a08a444677d7"/></dir><dir name="Entry"><file name="Abstract.php" hash="9f950d83653bdae10ada58cd2af3560f"/><file name="Atom.php" hash="b3b4ce3228cba9ffaab28198b1ffb11d"/><file name="Rss.php" hash="4f67f2a4efae68bf6a9221dd97a85956"/></dir><file name="Abstract.php" hash="6af2487e4d2877655b951035d6a5f238"/><file name="Atom.php" hash="21f43c77ff5eb22269220c9b85c5ad67"/><file name="Builder.php" hash="4cf2e9d108c683ec0c4ae014d55237f8"/><file name="Element.php" hash="5d8fa80d2f7d809bbc91e3cb3acf19a9"/><file name="Exception.php" hash="daf26c74759c3b31fdd2cfab751836ba"/><file name="Rss.php" hash="baeabd943da3a3c5bda5b44ecc7542a5"/></dir><dir name="Filter"><dir name="Word"><dir name="Separator"><file name="Abstract.php" hash="1c9e5625cdba7108761beccc32295d42"/></dir><file name="CamelCaseToDash.php" hash="62ad1e91d0e9a567baa9314d09b0684e"/><file name="CamelCaseToSeparator.php" hash="cc55dd570f2fc18b8ed3997a09c9f18f"/><file name="CamelCaseToUnderscore.php" hash="dc1365141bc34e723fb9c6b0c87b8b14"/><file name="DashToCamelCase.php" hash="098862727c13c9b6a32ca1f51bf5e336"/><file name="DashToSeparator.php" hash="555038f3ec657905aa80bcacc402935b"/><file name="DashToUnderscore.php" hash="bdca5d6e04e51d3ba4bc33563bc7c3bc"/><file name="SeparatorToCamelCase.php" hash="ad2ffdc3d5b8b448885864d09d71c582"/><file name="SeparatorToDash.php" hash="2766dbdffee3abb6e41949305e60e34e"/><file name="SeparatorToSeparator.php" hash="12450290e25bbce79a56d2960cdaf574"/><file name="UnderscoreToCamelCase.php" hash="5a8d4065066fa09d63f49981eac89845"/><file name="UnderscoreToDash.php" hash="0ca60c69d41ded124f4f90202c918b8c"/><file name="UnderscoreToSeparator.php" hash="5dc16b3f7544ac467c465b5d8e15cbd6"/></dir><file name="Alnum.php" hash="2994149470228dca5a3c94c63e17f3fb"/><file name="Alpha.php" hash="9dacaf32eb867a2c6b83dabcc275da18"/><file name="BaseName.php" hash="55fd885e77a046d393a1e676c063caea"/><file name="Digits.php" hash="b9388bd81bfb812a51fed9f73bd9f8f9"/><file name="Dir.php" hash="6172012c0167c9a816767a1d73fb89f8"/><file name="Exception.php" hash="a66a1a40f23d2052581793ea583f02c1"/><file name="HtmlEntities.php" hash="c89b7a35f8c1104cd8a120b47801ef42"/><file name="Inflector.php" hash="18faa0e1ced3f1334ba91a99cc96ddf8"/><file name="Input.php" hash="e6f999861a85fbdbb9748d72190aa5cc"/><file name="Int.php" hash="7400a0088a73267661c788bd8cda7096"/><file name="Interface.php" hash="c786c1fb0c1c7bac554f1aae21d36487"/><file name="PregReplace.php" hash="8db011213c746d69ec21a8f9f47799aa"/><file name="RealPath.php" hash="47cbe39ab9970b2732b30da16ab37c5f"/><file name="StringToLower.php" hash="5c2c34037b98cb8e155fea890dec8a10"/><file name="StringToUpper.php" hash="8d8ca951060702cc92d45c46bcc4aebb"/><file name="StringTrim.php" hash="fbffb8ba6546eab140c077aaf06084fa"/><file name="StripTags.php" hash="06f35114798148a21212fdbc3dec93e2"/></dir><dir name="Form"><dir name="Decorator"><file name="Abstract.php" hash="2ecb11dca0476c5b68b7ecfc03253d4b"/><file name="Callback.php" hash="09da01a78a4248cd2c07df0abc1cd8a3"/><file name="Description.php" hash="64f542292f3081e0e40527f89f15000b"/><file name="DtDdWrapper.php" hash="fcb0d5ea147e6e1c029fdc3c320cfe6a"/><file name="Errors.php" hash="1cf062726c08d6a0d859c7f6f1c69f3a"/><file name="Exception.php" hash="497fd9062dee14c999ac3ebb6908e8ab"/><file name="Fieldset.php" hash="33fa015352ebc7e0064741c0418ec975"/><file name="Form.php" hash="6139172417f71c59d1e6abd0617dc0b1"/><file name="FormElements.php" hash="4b59cd3bef52e1e2644289a3e2db7615"/><file name="HtmlTag.php" hash="76f51a87ed79afb7e360e9dab54d9ab9"/><file name="Image.php" hash="f68d981eb7fb68770b7654ea121a825e"/><file name="Interface.php" hash="4fec66f2b69c98fc5129ab6563f62028"/><file name="Label.php" hash="1bb378cf1397fde1a951d83751f77ebf"/><file name="ViewHelper.php" hash="980d4a62f136a15f9726213e9f3b9e6a"/><file name="ViewScript.php" hash="766d2dc7c589d509c20c194aa310009f"/></dir><dir name="Element"><file name="Button.php" hash="0f78bc76b20f08689263acd9b78bec63"/><file name="Checkbox.php" hash="70c773333fe6655349a99a190922e6d6"/><file name="Exception.php" hash="47b36db322b0b2400cef9fe65b7e00da"/><file name="Hash.php" hash="0913d271ca1b68447c22cf89ddb01606"/><file name="Hidden.php" hash="5dc7fac2dc1d6d0e766a1ee9579f3312"/><file name="Image.php" hash="5f7d64ef85d59acd7de681d5d3986a50"/><file name="Multi.php" hash="32005070c10aec94158979539bac2fd0"/><file name="MultiCheckbox.php" hash="da91f93106adee6a2ce167135e5894b2"/><file name="Multiselect.php" hash="2ea249c6b6186aa08043155ad75b8a82"/><file name="Password.php" hash="e58631f683e64b3a805e088a542cade3"/><file name="Radio.php" hash="58f37b3619210ac1a34fd813629f6399"/><file name="Reset.php" hash="dd56f8e5f65f5e400052aaa107ea3929"/><file name="Select.php" hash="ac95480ab218770def331f03dde99527"/><file name="Submit.php" hash="b12e925218ccd084a3a63a1d3590f49c"/><file name="Text.php" hash="04072e136c81bda35f73e7d33ed832a7"/><file name="Textarea.php" hash="b55ce27ef5d741c84f95522c9b2177cc"/><file name="Xhtml.php" hash="38428520b69d89bfabff5a595f1a472b"/></dir><file name="DisplayGroup.php" hash="a27c1dee424ae73148d94adee2d4a570"/><file name="Element.php" hash="2abf6b5dff02cee4ed986b9c62429919"/><file name="Exception.php" hash="3cf7ba5f5da10f220c850d169857b54b"/><file name="SubForm.php" hash="cf8c4346c336f8ab854dc1d6186a089d"/></dir><dir name="Gdata"><dir name="App"><dir name="Extension"><file name="Author.php" hash="639b51c3712b0617ac2ebd6ed85f74c6"/><file name="Category.php" hash="f531d04ba052e04af6c5373b8536cea5"/><file name="Content.php" hash="1a8085cf7c66c466765b30acdf375736"/><file name="Contributor.php" hash="a13fe8ffd1b0c3b17a75f08785e31e1f"/><file name="Control.php" hash="bc3a987a43adea1ef587ce16fd456372"/><file name="Draft.php" hash="3885dffd7c69390b42e734d0f06839db"/><file name="Element.php" hash="6c012262d2ff24e8c3ad4377bca166c7"/><file name="Email.php" hash="4d24bf4e1b8728d3707f385d820a4672"/><file name="Generator.php" hash="4f2687ea6e7f5e45f64996b007e114de"/><file name="Icon.php" hash="05c2598a2182d27c6952279cba9a8779"/><file name="Id.php" hash="f214d13038af49f1edcffa2791c41414"/><file name="Link.php" hash="6bbbc77aa2b5633f739566175124b27c"/><file name="Logo.php" hash="9ff34e574ae7eb9ed0e221d00da2f192"/><file name="Name.php" hash="f9a0417713dafdb30d2b031bed29391f"/><file name="Person.php" hash="1d12bffe82df61067d932d9090c00485"/><file name="Published.php" hash="55a0082e9c7d526af3e56ed57c27d8bd"/><file name="Rights.php" hash="bcae69b1a12da9f2eae99a46b6eb2a58"/><file name="Source.php" hash="728351217d9277051c4c72fe81591428"/><file name="Subtitle.php" hash="637767b01c8adc52ebb91455432d22ea"/><file name="Summary.php" hash="85c7242e6dee30960be5ec12d821947c"/><file name="Text.php" hash="83bd81cd2d7c69dff0b8441e265d289c"/><file name="Title.php" hash="7b4e3383df3162627750073acde52b7f"/><file name="Updated.php" hash="316da0ca11c6f8b8d761dfe628d89faf"/><file name="Uri.php" hash="17e4a8e67036837c6afa8033f7a8e31f"/></dir><file name="AuthException.php" hash="27469e7ebea5dca2f8b5d185ab4b9c21"/><file name="BadMethodCallException.php" hash="9798e201b46e3c6a2c33acd94457a2d4"/><file name="Base.php" hash="8b9f4609318fe612bb70dec6c2d924c2"/><file name="BaseMediaSource.php" hash="765e7fd3037a28413889a282c737033e"/><file name="CaptchaRequiredException.php" hash="f6cb705bb3ca4ed714f6d8819ea690c7"/><file name="Entry.php" hash="23caa3ec6fb2b80d8dc0ba07ddd37352"/><file name="Exception.php" hash="a768b2228e1fff70dfe996007fb839bb"/><file name="Extension.php" hash="63884c77b369e8329333634aaeb0ad09"/><file name="Feed.php" hash="35daeccc1a529f3d36db43036fdca415"/><file name="FeedEntryParent.php" hash="4129cff2a821cd0bcaf7e7e74d2de875"/><file name="FeedSourceParent.php" hash="64d9c0e61dadd8f4b7245c382061526a"/><file name="HttpException.php" hash="f571b8d8b7d46b9ab2dedd521d1d1510"/><file name="InvalidArgumentException.php" hash="f9234d092dbad35b19ca2386a651731f"/><file name="IOException.php" hash="31ccfa06a82408eb0d1df4d6c007f4a2"/><file name="LoggingHttpClientAdapterSocket.php" hash="62af70af325f915af043672da4c8e1d4"/><file name="MediaEntry.php" hash="26a7c0a1af93fa971ae00980e16cfa9e"/><file name="MediaFileSource.php" hash="771bbb66b0437e32e81e1db1a01079a0"/><file name="MediaSource.php" hash="edcea64af8a636cfad566d97e5fb2c78"/><file name="Util.php" hash="6c06cf715a112534f947911c456414c4"/></dir><dir name="Calendar"><dir name="Extension"><file name="AccessLevel.php" hash="01c0112af87496c4555a5ef5962617f9"/><file name="Color.php" hash="00dd6267a2574a523173106ea5a2d75f"/><file name="Hidden.php" hash="eb385b474b71e121a90fca214fd897bf"/><file name="Link.php" hash="70b9bd5a979e4d587cc0b521baa201f7"/><file name="QuickAdd.php" hash="4b37fbc89e47ea18a4be09c61e89fd35"/><file name="Selected.php" hash="7b50aba1552dc7b022e0880803919319"/><file name="SendEventNotifications.php" hash="8d67e6f2d5bf3554ca0f2cdca1eb89f7"/><file name="Timezone.php" hash="be19e164f1a5666a7a802bd3f1e28070"/><file name="WebContent.php" hash="a60155ec98570598cb4a9867cb2ef6f0"/></dir><file name="EventEntry.php" hash="5ce35e8a6675f8bdce2baee91506e801"/><file name="EventFeed.php" hash="8dde02aa9abf66dee4c3e220d9a74b42"/><file name="EventQuery.php" hash="346eda3a0d677dd3d861429a48e73045"/><file name="ListEntry.php" hash="f7505b2503d2af3fafcc677f72f27fe2"/><file name="ListFeed.php" hash="72a45a499e65582ccb82822500b6fd06"/></dir><dir name="Docs"><file name="DocumentListEntry.php" hash="6d1d26a85e487f1a5cab8dce607bcc81"/><file name="DocumentListFeed.php" hash="918cc278083a8c2a1c5edc6c07554b4c"/><file name="Query.php" hash="198f616b930218eb511d54d34f035433"/></dir><dir name="Exif"><dir name="Extension"><file name="Distance.php" hash="5bd6a2b1aa61d4fc71cb6a3eec941b6b"/><file name="Exposure.php" hash="ecfea1c78690e58ed2f2cd0716ad4ad9"/><file name="Flash.php" hash="a44fad0ddf542235735238f37e11b049"/><file name="FocalLength.php" hash="bc150db5023c1a2f9c0833b592ba851e"/><file name="FStop.php" hash="0d487619b855a09db424f9f263e6b626"/><file name="ImageUniqueId.php" hash="3da4c7e16deb3e8d5bca07b94adf9b02"/><file name="Iso.php" hash="dba9b7c1e0cde5887c83cbc591c2dcb7"/><file name="Make.php" hash="3b5489c64bf2963a074723912568dcd1"/><file name="Model.php" hash="05321783da8fb60f506ba773b37e09c1"/><file name="Tags.php" hash="167f59f9c3c754110d64e1aa98a401c9"/><file name="Time.php" hash="217a0b9c21404e1696b7f20b3906e417"/></dir><file name="Entry.php" hash="1b1b70db54a96e3376eeacf86af118db"/><file name="Feed.php" hash="1a7ade8ca245e154d9c4ef40c0c13f7f"/></dir><dir name="Extension"><file name="AttendeeStatus.php" hash="8da8c7b90d9ef7867e534cf93af393ba"/><file name="AttendeeType.php" hash="842c9e20afbf89e6868134e6224d4f24"/><file name="Comments.php" hash="101db5e558f3e81dfb9bcc3ae6a0a77f"/><file name="EntryLink.php" hash="b0606db603cec83425f5a16eb02b5e45"/><file name="EventStatus.php" hash="9432fe5f55a21571dec3c0a66f488526"/><file name="ExtendedProperty.php" hash="213083d7bfc3a95f29eed80b85647e7f"/><file name="FeedLink.php" hash="a30ab17c97abb795c5f386fd22698e33"/><file name="OpenSearchItemsPerPage.php" hash="35c818de18c6eea822df6c35b282f6d0"/><file name="OpenSearchStartIndex.php" hash="479f17baa08ba7323bd5c431a02131fa"/><file name="OpenSearchTotalResults.php" hash="7a8fe0cb40cbb1b615cb419591700ce2"/><file name="OriginalEvent.php" hash="109c90347ba059ce38d025a4ddf610a5"/><file name="Rating.php" hash="a935f424be7bd7951d80142aed70addc"/><file name="Recurrence.php" hash="48b1ea4827ed89b35c19bb8e3d3ba259"/><file name="RecurrenceException.php" hash="9700485e4b23e4d2a42f9aa0d39e2390"/><file name="Reminder.php" hash="2b025dc6a23e6334f9bbf4c2377e61b1"/><file name="Transparency.php" hash="7066a19bf422dac6500bc177175d6157"/><file name="Visibility.php" hash="cf1e2ea83c2d95638591d99b5b9832e1"/><file name="When.php" hash="6b2d245890e2b3808c35460983269f31"/><file name="Where.php" hash="9f4eb01a47cc5335fb10482ecd141e90"/><file name="Who.php" hash="89e10d687f393256a1cfe16b1ea573fa"/></dir><dir name="Gapps"><dir name="Extension"><file name="EmailList.php" hash="7ceda9610f2504e68943959cc288303c"/><file name="Login.php" hash="7c64830e7746c3fc497a705bd6fa97bf"/><file name="Name.php" hash="80da39f77d276aa367d7fe01612975cd"/><file name="Nickname.php" hash="57ff17c84901c17880d61ad3d6731346"/><file name="Quota.php" hash="3ebfa46e60e8d8aa36134f354e684133"/></dir><file name="EmailListEntry.php" hash="efe0be98b85d54128291418f5a2ff6d9"/><file name="EmailListFeed.php" hash="54d98f518f741a6f8413ac09fea9e6b7"/><file name="EmailListQuery.php" hash="bfe20e55285d64bdd42068bcb66e9565"/><file name="EmailListRecipientEntry.php" hash="0b3b39e9b5a68157b49cf912d2c8b4be"/><file name="EmailListRecipientFeed.php" hash="7b7ae6ef9978bdc0212a6f70dee44725"/><file name="EmailListRecipientQuery.php" hash="79b5da100b4613bcd2e8c4e876786131"/><file name="Error.php" hash="15f14e435412cb4a96fae8d6b3b3dae8"/><file name="NicknameEntry.php" hash="70207b559e60bea4515fd767d937d566"/><file name="NicknameFeed.php" hash="99796c0502c4a660183116769bae7680"/><file name="NicknameQuery.php" hash="7b612638443264e7e246a32e65f83e05"/><file name="Query.php" hash="59379e797fda9e8d2ef2a5f211dfe16e"/><file name="ServiceException.php" hash="cb1677afa18262214e15217678d520bd"/><file name="UserEntry.php" hash="80d115b357296a7c58af7458596e4fb3"/><file name="UserFeed.php" hash="05df00f1431c3c835126ae2495ab1289"/><file name="UserQuery.php" hash="675ccfe81b80fb9adcd6a088f12f376c"/></dir><dir name="Gbase"><dir name="Extension"><file name="BaseAttribute.php" hash="1844cc44d171b014b70c35d6eebe36b0"/></dir><file name="Entry.php" hash="be0f249199651391cc2989cfcb919b35"/><file name="Feed.php" hash="132236da7e4cfb5da50c6b0e89c17a8a"/><file name="ItemEntry.php" hash="d402a3b59c70af96bad9743a03f5105f"/><file name="ItemFeed.php" hash="75998208c092651cab6708f2084a1fe3"/><file name="ItemQuery.php" hash="2344a964336fa9c9eabd2063170f11c3"/><file name="Query.php" hash="3dfbf2ea4d854737ac47cc191e4e071c"/><file name="SnippetEntry.php" hash="a1e81ead61b4a62fe8554aa92ec8d515"/><file name="SnippetFeed.php" hash="5370d84984e5e2eaa4abc279e852ffb7"/><file name="SnippetQuery.php" hash="8fe0dad61a3866d089da82ac65735213"/></dir><dir name="Geo"><dir name="Extension"><file name="GeoRssWhere.php" hash="4b7c71b1f84ba37b279425c61d9e2c4c"/><file name="GmlPoint.php" hash="829258c5883e7cfcf8135bf82fbc148e"/><file name="GmlPos.php" hash="fe8a6b7850775f3be558f25fbbb0807a"/></dir><file name="Entry.php" hash="57dc77743a214bea186eff4417be33dc"/><file name="Feed.php" hash="7ba64f12e26253a8d74098e1101969a3"/></dir><dir name="Kind"><file name="EventEntry.php" hash="0a08f40a19cb74eb709f2c85f9784c1c"/></dir><dir name="Media"><dir name="Extension"><file name="MediaCategory.php" hash="9e799c998d542cba17e1da867f4907bc"/><file name="MediaContent.php" hash="778e55e4becddd6d91e1a4149065a5da"/><file name="MediaCopyright.php" hash="bd00b95262bd471143adfb481c3270f7"/><file name="MediaCredit.php" hash="3163f8df03a3552044a8cb3b32c549f6"/><file name="MediaDescription.php" hash="713aa1ced8e388328cd517efa8ac53af"/><file name="MediaGroup.php" hash="d7eb86af852fdd5ca4cc76436453b49f"/><file name="MediaHash.php" hash="4952ed2799730b2cb33717171cc98bff"/><file name="MediaKeywords.php" hash="cf500f28a11e22b37c4659e80e11f54f"/><file name="MediaPlayer.php" hash="f306ea04753b412beae5a51108abde4c"/><file name="MediaRating.php" hash="28184196eb7fa4cfc8a6f59c5e19c023"/><file name="MediaRestriction.php" hash="b3147355f744f3b5cebcee869314bbdf"/><file name="MediaText.php" hash="864f8711e11e89ae629ced70481c47a7"/><file name="MediaThumbnail.php" hash="6ada31eb57cffb64716d3c353abf324a"/><file name="MediaTitle.php" hash="9f74f51771eb1317210b6a98cddf1088"/></dir><file name="Entry.php" hash="d6660bffacd793cdf3009f4f45f58623"/><file name="Feed.php" hash="b42e1ecf83f72e25bafbd8c185bddd25"/></dir><dir name="Photos"><dir name="Extension"><file name="Access.php" hash="2a671ece7b52dfb227128aba67fe23e2"/><file name="AlbumId.php" hash="e70d9700798fe639eff53fa63a3d14fd"/><file name="BytesUsed.php" hash="4cd669706bd26117b1b7400f3eed7206"/><file name="Checksum.php" hash="7761b01f7d52d58d22b9a56976da7044"/><file name="Client.php" hash="592dc151d65cffe414e5a6f2c354f4be"/><file name="CommentCount.php" hash="684f585fd6055dceba8f10b0224c35f2"/><file name="CommentingEnabled.php" hash="c4222df2d7f907d39d11f06e80b9dc6b"/><file name="Height.php" hash="3dc1754b9c817a29d263d104959fc56c"/><file name="Id.php" hash="a47b8149b4903f22e8c37d984e451413"/><file name="Location.php" hash="aba94bedd2d64aabad999c8b8f78da3b"/><file name="MaxPhotosPerAlbum.php" hash="54fd82d7c1d45ae4006c88baec96ba4e"/><file name="Name.php" hash="a244c2ce0515ee4321d70cb3aeb5e9f2"/><file name="Nickname.php" hash="595a8ba2eaf99d03df0622a2fa4e259a"/><file name="NumPhotos.php" hash="f9e78afdb5054e8db61c49bb40dba194"/><file name="NumPhotosRemaining.php" hash="844d7739dcc41645afceafc89700d5d4"/><file name="PhotoId.php" hash="8b99bc41586bbda20e0316c0b6d905a7"/><file name="Position.php" hash="0fb39b58e918d6f8140a4fd0932415a3"/><file name="QuotaCurrent.php" hash="ab50f11383e2e66803fb1f7a60417afe"/><file name="QuotaLimit.php" hash="b293b999b4c844ac117cdc44f4384d1f"/><file name="Rotation.php" hash="0b842732cd0eb56057927151e8d399e5"/><file name="Size.php" hash="65a8fd076637d237dcb30815947e7818"/><file name="Thumbnail.php" hash="2f05df8fed864b3801318f7475f667f7"/><file name="Timestamp.php" hash="9de3792ccf6aa67d2753ade1acefec95"/><file name="User.php" hash="cd144cbaa17a8007902df7c9348c30a5"/><file name="Version.php" hash="7fa0c9d044c1a43537c1efd0e3b78d67"/><file name="Weight.php" hash="61443c33041a3abca8a439c9f4e37472"/><file name="Width.php" hash="08bb20e47f23e042d5f6361d15a6c4ac"/></dir><file name="AlbumEntry.php" hash="caead01f3a19245ae1b10fb1eadd7f48"/><file name="AlbumFeed.php" hash="f0b5abaedd686784efd5a644ada95406"/><file name="AlbumQuery.php" hash="e7c501bc4e047e0e0de67eb09fa4bf1a"/><file name="CommentEntry.php" hash="f7265fa05fda88e936a37a334159accb"/><file name="PhotoEntry.php" hash="d6093ac9a8eaa3235cf3768060bd992d"/><file name="PhotoFeed.php" hash="5c29fb6666a1adadbf8a51401f8043c8"/><file name="PhotoQuery.php" hash="207cf8965de31bee32cd2078c91e7d27"/><file name="TagEntry.php" hash="67067fcfddfbe4e0ffd9037a5ef35bea"/><file name="UserEntry.php" hash="bda3253c7ae56cb7b920dc4339c138f4"/><file name="UserFeed.php" hash="608979acebd8d4bfe48b1cd65bfc9402"/><file name="UserQuery.php" hash="a7797b3145c1fa00618d7d85de0f19bc"/></dir><dir name="Spreadsheets"><dir name="Extension"><file name="Cell.php" hash="3ca1c1bd7337886f009c68125a11f4b7"/><file name="ColCount.php" hash="d414a8db9f9dac4925d852d49f50cd7b"/><file name="Custom.php" hash="4a03ccd4fcf1d8f90bb4a3e17fc678b7"/><file name="RowCount.php" hash="10f81d51d61db82c069996ee1b1cca96"/></dir><file name="CellEntry.php" hash="31961952c88069b9b2c722482ed12ab8"/><file name="CellFeed.php" hash="7cf956f79c2eea9ee5231b44fb823e84"/><file name="CellQuery.php" hash="626cc536c9ca129991974f3da75eeb3f"/><file name="DocumentQuery.php" hash="0fe3029a667dc25d74f2196b56740168"/><file name="ListEntry.php" hash="e362494f2307bda07f38ce4f48907e33"/><file name="ListFeed.php" hash="2552403f116f4b9a611dc4d585ba02e0"/><file name="ListQuery.php" hash="d0f17d6275cff544c95d5ddb5f4aa8d2"/><file name="SpreadsheetEntry.php" hash="cce957356ef0991955e9528a2290a284"/><file name="SpreadsheetFeed.php" hash="007b101f756ce37aff1d3977754c1238"/><file name="WorksheetEntry.php" hash="93672a2c84cd660f2d3ce5d1d21648d3"/><file name="WorksheetFeed.php" hash="753c62f325482018b1cf2f55d942d31b"/></dir><dir name="YouTube"><dir name="Extension"><file name="Age.php" hash="6a576be93529e4b1ff1dac3cc7820248"/><file name="Books.php" hash="bb1279633799bf3262244676c01752ee"/><file name="Company.php" hash="3f76de81480445a7e68f2fc45cacc74d"/><file name="Control.php" hash="b8c4289c28f13f31bf4a4d883d2239fc"/><file name="Description.php" hash="9d62e9e96e99561e194a5704cfee6933"/><file name="Duration.php" hash="3c6042598edfa304d8420cbcd56b021c"/><file name="Gender.php" hash="450ff246ee70ad1c077849618c1aec7e"/><file name="Hobbies.php" hash="470e0dc385043e3f40d5231295eb3468"/><file name="Hometown.php" hash="4be60ac11ccd0adb38cf77f2b9707a4c"/><file name="Link.php" hash="2f3dc02ae7322aaa1cf2f4be9066318d"/><file name="Location.php" hash="6ba947b69ce434a72117667825638655"/><file name="MediaContent.php" hash="bc7942f4d5fcabb3d8e3e679c87cc6f5"/><file name="MediaGroup.php" hash="74ef443f8f71ba641585777c2af0c5c9"/><file name="Movies.php" hash="a5e5b6aae9a384aa16d8bf1057dfcedf"/><file name="Music.php" hash="2ea20d4c1d2a5f217ba7d5054876d09b"/><file name="NoEmbed.php" hash="b27452e25304c234e7676b2b42373909"/><file name="Occupation.php" hash="23e7d04f096088912aa2d75183aca43f"/><file name="Position.php" hash="aab7f6714fed6654f1e103641b73cc79"/><file name="Racy.php" hash="f443e5dd9e527d69315abf8e4681bce7"/><file name="Relationship.php" hash="40d0858126544d8c13ed973525f20016"/><file name="ReleaseDate.php" hash="314934bffcbc82287824efc33c86e057"/><file name="School.php" hash="9524aec2338011165daccb3c23af57f5"/><file name="State.php" hash="ed7ce911ac6e3a96a712540f4eb2ec4f"/><file name="Statistics.php" hash="7e5531a51d91c5757bfa38b377e7b6e0"/><file name="Status.php" hash="c914c1c43e5dd3a0b08b860c4b66ed4d"/><file name="Token.php" hash="1d22907989e69e88dd96b9440598df49"/><file name="Username.php" hash="091c034ea704f3185e9d583266375ba1"/></dir><file name="CommentEntry.php" hash="fde9f8e9fdf2f665fa54b8297fcdfa2b"/><file name="CommentFeed.php" hash="132704c978d574de56fa1ffcd906e577"/><file name="ContactEntry.php" hash="894289bc4fd5a8f9b530ab172f6e201b"/><file name="ContactFeed.php" hash="ce92ad1f9c798e4c6f6d18d697bf8c9f"/><file name="MediaEntry.php" hash="009ed8f2955b9fa1df188a0c7a7261c3"/><file name="PlaylistListEntry.php" hash="2c206a27568b015f52fd828b842575ff"/><file name="PlaylistListFeed.php" hash="9950e4b999887bb4d976f5a843debbfb"/><file name="PlaylistVideoEntry.php" hash="ea2e486e615937d37e41469c6877af27"/><file name="PlaylistVideoFeed.php" hash="5ed8d8ec5375cd58e82be99ff389eac9"/><file name="SubscriptionEntry.php" hash="73fc2988d5330ceedb65448ae77a6cfb"/><file name="SubscriptionFeed.php" hash="c70009fef7b261d9b280e65b4abcb8d7"/><file name="UserProfileEntry.php" hash="1c4b20cd8d9a4dcdd198b0f6f2876ccb"/><file name="VideoEntry.php" hash="bbfef052a6ab4de0d3012e58fc9b8ce0"/><file name="VideoFeed.php" hash="a996b934274f1d387f03e3b89900eca8"/><file name="VideoQuery.php" hash="0093495bf33a333637f29e355a6a10cf"/></dir><file name="App.php" hash="1a880fb53ca9da7e4a45c1a04bdc648e"/><file name="AuthSub.php" hash="79f159341214cccabe4ed0a82755243c"/><file name="Calendar.php" hash="c59511c0c31c038ac771b7aa267bc427"/><file name="ClientLogin.php" hash="0c487804dda07fe316f071ea74b24394"/><file name="Docs.php" hash="2072c88951b5489f53d3daf01108c35e"/><file name="Entry.php" hash="ec17b63211e84f3f057dc302520d7245"/><file name="Exif.php" hash="1d724ec09b13774c52502d16ee8d15fc"/><file name="Extension.php" hash="4c034e8da2ead9f71e994e4bdeaace09"/><file name="Feed.php" hash="acbe8e6814194e543f575742ad96bec0"/><file name="Gapps.php" hash="e070b8fc6561a341d6ccf0cb90e5e905"/><file name="Gbase.php" hash="07c99c7dfcbe5a86984b3a0fbccdad22"/><file name="Geo.php" hash="8c69de6383d6175eb340d95a42717279"/><file name="Media.php" hash="74e34e4fd63950e42a70196cca41f67a"/><file name="Photos.php" hash="62d9d9488a257779168927c5c3b68d8a"/><file name="Query.php" hash="8d9c45261b4d08ae398419f2da15c747"/><file name="Spreadsheets.php" hash="1563bd06e82e24938287a44f61373a16"/><file name="YouTube.php" hash="8f946c0f6ac7ffca6ed4d96d017737fa"/></dir><dir name="Http"><dir name="Client"><dir name="Adapter"><file name="Exception.php" hash="9ad468f16cb73f317f861625d5d0614d"/><file name="Interface.php" hash="de496cfc3393709e77992941feac381f"/><file name="Proxy.php" hash="009533643977b8e844ac14f9bda53aca"/><file name="Socket.php" hash="4068bc986807e42a8302f6425a76c85f"/><file name="Test.php" hash="ce04abf94b552c20e713c73e7ed18c23"/></dir><file name="Exception.php" hash="35be2a8e292cbaa8b7c97d97ca9ce3cb"/></dir><file name="Client.php" hash="ca99dfead88d417a63f992f3261ba7fc"/><file name="Cookie.php" hash="f9b867d0011dfcbf9e524caef235b31f"/><file name="CookieJar.php" hash="a47659475a437c585fd8c49fddb586f9"/><file name="Exception.php" hash="3ca8a8c18146ef3e4f28ef3f8ea98db6"/><file name="Response.php" hash="778f6c05c0a61a92ef94fe744f75c35e"/></dir><dir name="InfoCard"><dir name="Adapter"><file name="Default.php" hash="884eb7ac4d06ef49291163a2bfcaa7a4"/><file name="Exception.php" hash="df044446bc2d7c4672ded86470f47fc1"/><file name="Interface.php" hash="b0fd80d28747cecfb149446b996f7753"/></dir><dir name="Cipher"><dir name="Pki"><dir name="Adapter"><file name="Abstract.php" hash="5cadd05778d415c9d99bdcce4cccbd2c"/><file name="Rsa.php" hash="27f4663bfd7fe29c3ca9c477a1513385"/></dir><dir name="Rsa"><file name="Interface.php" hash="84b368a0618884f5ea57d77b76b1f81b"/></dir><file name="Interface.php" hash="39dfed51c33f56de5bc36e741be5edab"/></dir><dir name="Symmetric"><dir name="Adapter"><file name="Abstract.php" hash="c57c4c6f071e1b6d29c98864e26630a4"/><file name="Aes128cbc.php" hash="18d07e2948e43ddccfca24b07a1ff84a"/><file name="Aes256cbc.php" hash="d074659bb4d3d0846fe76145178097bb"/></dir><dir name="Aes128cbc"><file name="Interface.php" hash="7f7e5f46676ceb3dbdc0117ceea2cf5d"/></dir><dir name="Aes256cbc"><file name="Interface.php" hash="f32fdbdde74ac9dd3996d2bfc284ea9f"/></dir><file name="Interface.php" hash="aa5c42221dc37c2404841858be8ce301"/></dir><file name="Exception.php" hash="a44b7dceb43f1354873f2cbe86c89613"/></dir><dir name="Xml"><dir name="Assertion"><file name="Interface.php" hash="64e5c5053c9d3c8393bbca1ce9e19b93"/><file name="Saml.php" hash="6bd0c5462d3e780d8163e17a0753e317"/></dir><dir name="Element"><file name="Interface.php" hash="94131cf1bd26d62028f3a6d6ae0c8bab"/></dir><dir name="EncryptedData"><file name="Abstract.php" hash="78ac85977274ad8209692bfffc2484c5"/><file name="XmlEnc.php" hash="0383a19d6fe9e3169cd5355697935558"/></dir><dir name="KeyInfo"><file name="Abstract.php" hash="67de76654a5aaa9a84cf4621f224b9ef"/><file name="Default.php" hash="3d18e6d39f20f961af2821f9f70034d3"/><file name="Interface.php" hash="6ed4227636078210811dfc588499c679"/><file name="XmlDSig.php" hash="1e0723492c9acd26b3cb1839f3fb99a6"/></dir><dir name="Security"><dir name="Transform"><file name="EnvelopedSignature.php" hash="781d9cb22e71cdb8663d1031391e7be0"/><file name="Exception.php" hash="525b17f4c89713adf0199e9883b230db"/><file name="Interface.php" hash="b86aa022602931e4b3972d4577041809"/><file name="XmlExcC14N.php" hash="9015dd55eb6d9d637cd59e719d614c3a"/></dir><file name="Exception.php" hash="586e897a358eea9c08de0f4cf278950a"/><file name="Transform.php" hash="471fedf905b0e1fcc97dc00629a8e547"/></dir><file name="Assertion.php" hash="db4c91d71e5e042e4c4148d9427b1217"/><file name="Element.php" hash="c93a12ea1d64cc8bf2da700c7fd1c18a"/><file name="EncryptedData.php" hash="caf927bd0b05e3bbeebaf25d2920df80"/><file name="EncryptedKey.php" hash="c8018e09b7526b3a2aaee39cabf1205f"/><file name="Exception.php" hash="9841546378aa643fcae5cfadb7b9a290"/><file name="KeyInfo.php" hash="c69368cbc86e2b250cec4cb8f653ebf1"/><file name="Security.php" hash="e8655f8abc31ea20b336d41c9667a8e4"/><file name="SecurityTokenReference.php" hash="08b7e09a3b6c9317958c5ca5c824f1b3"/></dir><file name="Cipher.php" hash="0e66151402091045976b8a42ec4b6bab"/><file name="Claims.php" hash="5170db5cb4f62172c86313804322d5a9"/><file name="Exception.php" hash="e68baf3b26fd7e4b07a16a639c429a09"/></dir><dir name="Json"><file name="Decoder.php" hash="a49ab66336e7e5ba7fb7cb27e2e0f7ee"/><file name="Encoder.php" hash="85d3c1a6413c754ed8c26429033b18a4"/><file name="Exception.php" hash="f22d5985ea3098b075e46157df486801"/></dir><dir name="Layout"><dir name="Controller"><dir name="Action"><dir name="Helper"><file name="Layout.php" hash="6f89f133c9b74652d5cc2c38068740ab"/></dir></dir><dir name="Plugin"><file name="Layout.php" hash="780c2c0e9f4a8628a3ab09d863035940"/></dir></dir><file name="Exception.php" hash="bc60b5fe01ad287c3ebbde4c881961e1"/></dir><dir name="Ldap"><file name="Exception.php" hash="6f8bc1a99e778aeacae78fd68b2053db"/></dir><dir name="Loader"><dir name="PluginLoader"><file name="Exception.php" hash="9fab01cf81a67aad72aa9b435a1c0a25"/><file name="Interface.php" hash="91572f09c6e22e395cedf10eb4407f4b"/></dir><file name="Exception.php" hash="cdbf1e16400a997de76ff11a20773f12"/><file name="PluginLoader.php" hash="85d42c1b36bf2df58da29ffe6bc87358"/></dir><dir name="Log"><dir name="Filter"><file name="Interface.php" hash="19691b600313d66bf3a546378c1a879b"/><file name="Message.php" hash="d5a8ca5b1f615d88da109a23194620e1"/><file name="Priority.php" hash="e98b98d614a82f442fa5bb7d0336f124"/><file name="Suppress.php" hash="45dec2b8ff96ca02a6e03d9f2c693699"/></dir><dir name="Formatter"><file name="Interface.php" hash="5bf8d00dcc3a0cafbb72a2ab5fd1279a"/><file name="Simple.php" hash="295639e7c8618939fdcdb491e0db2b1f"/><file name="Xml.php" hash="4f6d96cc36ad19b58d4c7485dff31877"/></dir><dir name="Writer"><file name="Abstract.php" hash="3f7d54be7530d60c43fb6041ba9b2e18"/><file name="Db.php" hash="d826d573f0d7c4cdc87101d9746e9d23"/><file name="Mock.php" hash="6f3c73102336aadbb2cd1b63c72c21c1"/><file name="Null.php" hash="2e93b0ba79ff8c6da25263b36487192b"/><file name="Stream.php" hash="5845f2f051762732091fa3a5f98927fd"/></dir><file name="Exception.php" hash="0aa8fddd3a81ddb9db09a45c6f1f2311"/></dir><dir name="Mail"><dir name="Message"><file name="File.php" hash="233e3e6ab2c77d03e31aff81e5462026"/><file name="Interface.php" hash="6e0b07340ba961522badf1c66ae2d7a8"/></dir><dir name="Part"><file name="File.php" hash="966853aa6e5b01dbc3216494a972f40b"/><file name="Interface.php" hash="6df8bfd606cf89633a0365db41421549"/></dir><dir name="Protocol"><dir name="Smtp"><dir name="Auth"><file name="Crammd5.php" hash="2d9d49e772980d7d691708229b7ccbd1"/><file name="Login.php" hash="280cbc866704ec7f5b071d53ef3a15ce"/><file name="Plain.php" hash="7f3798c07e41363443617e198e3f5c5d"/></dir></dir><file name="Abstract.php" hash="35484918a6abab1050657d9e62ae6ef4"/><file name="Exception.php" hash="391cc3fe6dc9f6a5b2d1b317f18891e2"/><file name="Imap.php" hash="d99d3b1c8aa8fc3e366a266d91746f24"/><file name="Pop3.php" hash="060677e4a1ecddfeb229dd6291ccc554"/><file name="Smtp.php" hash="9581ff2b24295bc6af00fe4055e0e5b3"/></dir><dir name="Storage"><dir name="Folder"><file name="Interface.php" hash="4bfaae6ce5261e40fc3cd9075a185d0b"/><file name="Maildir.php" hash="0256c2adb4cc0dd8864d4cdaaf562593"/><file name="Mbox.php" hash="c5c5491174a5ee017dcc815d3a7d87b9"/></dir><dir name="Writable"><file name="Interface.php" hash="14a4cd02644fd9c591d0190eebca9589"/><file name="Maildir.php" hash="fc8d79d94e84ff49663f10913ffaecfc"/></dir><file name="Abstract.php" hash="2732ec443a32b7e63b23bf97cf21d759"/><file name="Exception.php" hash="0fda156bbdfea7c4b6a7e4b72d7789a8"/><file name="Folder.php" hash="1cae603656ee0d42dfd0e62dd999ea5c"/><file name="Imap.php" hash="c9ac7efd90adbb0fd41db148c54015a2"/><file name="Maildir.php" hash="c122d978ff53636f5f42586016bfcbe8"/><file name="Mbox.php" hash="875e6c75c9d94c4aebf2dda99167ba3f"/><file name="Pop3.php" hash="35a117d8d2e18da1dad53665b2e560fa"/></dir><dir name="Transport"><file name="Abstract.php" hash="9379d70115cfdaa82576255acfde5dbd"/><file name="Exception.php" hash="99295b01fdcb35360b814e6b2ff55a2a"/><file name="Sendmail.php" hash="a9e9d530adb89abeeefa66ec0bd836d7"/><file name="Smtp.php" hash="e1a081ae7bb6af9635275865de08c865"/></dir><file name="Exception.php" hash="c1097b2c0f93c0287525f24e3efa4d36"/><file name="Message.php" hash="e02ae4ed63048fb0f9102a7aa13a59bf"/><file name="Part.php" hash="f3b71c04b228b3713a328f8ea2613f03"/><file name="Storage.php" hash="e645b8b333d7caad4b6774f30d3d1891"/></dir><dir name="Measure"><dir name="Cooking"><file name="Volume.php" hash="f75dd10d7b5ab3952693e733616ff819"/><file name="Weight.php" hash="074b854f3c97645f9553fdcfa383ab2f"/></dir><dir name="Flow"><file name="Mass.php" hash="f1f98e33346bce7aa69acefd3cc5398b"/><file name="Mole.php" hash="f22ff9c3d0c1ecc7f755a358237f808f"/><file name="Volume.php" hash="dadb8428ec86a2ec71d539d7f9970951"/></dir><dir name="Viscosity"><file name="Dynamic.php" hash="197f4b17591a9be51e1b210c91b172b6"/><file name="Kinematic.php" hash="cc5702aea88fd948bc2c1f99197e92f3"/></dir><file name="Abstract.php" hash="425c2ec41428dfea7ab1744643df2ec0"/><file name="Acceleration.php" hash="403b31b39b867ad7d9b36cdea5535af9"/><file name="Angle.php" hash="3f4394bf16558cf5d52e01eb426aabd6"/><file name="Area.php" hash="0c6dbe4d29333819355f91cf7851c4ac"/><file name="Binary.php" hash="b1e92c8e2cba8cc48607161595be34b6"/><file name="Capacitance.php" hash="6357edad79f9019a1c544ed21dc4709c"/><file name="Current.php" hash="6ca579cda45ceb1e05b2197e048d0d42"/><file name="Density.php" hash="da6923f5347ec357506c1161c36426df"/><file name="Energy.php" hash="42a11297492666280871e335827ffb4c"/><file name="Exception.php" hash="aad3484256d7b131460868a904758dc8"/><file name="Force.php" hash="4c5aa3bfb6982e5d80d736379dc5d2b3"/><file name="Frequency.php" hash="cb57cf62e51a5f56a29a15cac4d68b3d"/><file name="Illumination.php" hash="cfc6b6b2cc6c5fb981f594389d53f633"/><file name="Length.php" hash="c995733d45edd248194311ae5ee5fedf"/><file name="Lightness.php" hash="09deb11196e41848c550ef6f348b509c"/><file name="Number.php" hash="4527e984be631482327ee2ac9eabbd1c"/><file name="Power.php" hash="c1a409f4bc35cb943223099b14221422"/><file name="Pressure.php" hash="e432fb4b6ef9dfcb5abf73ee93d647a6"/><file name="Speed.php" hash="455bf0ed5bda770396cf01a19893226e"/><file name="Temperature.php" hash="e306e6321668bf7b9a5340536ae29c41"/><file name="Torque.php" hash="f7f4a556ef05c04523d0cb51ca979fda"/><file name="Volume.php" hash="3b0a018659310f50e0ff9c7c99dcac6a"/><file name="Weight.php" hash="0ea74004d51a3102d4725eef665b40ac"/></dir><dir name="Memory"><dir name="Container"><file name="Interface.php" hash="35aaa16308eff8441a778be3ebb36ce4"/><file name="Locked.php" hash="f19258d90db5d0a384bb4c12a48eda3b"/><file name="Movable.php" hash="85405ef1a7810f1dbc0418293865091f"/></dir><file name="AccessController.php" hash="32977a6387b61172d9ca72ac5dda7746"/><file name="Container.php" hash="e5777ebfe002602b15f0729d70f5ec20"/><file name="Exception.php" hash="069fb82a3b5111a5e5f578f5771f81ec"/><file name="Manager.php" hash="e4979ddc95d7d2adef460c9414608b6d"/><file name="Value.php" hash="ddc067fa99e77afb3b9882b2354e83d0"/></dir><dir name="Mime"><file name="Decode.php" hash="ac4fff57b73402b544dfdb727780f251"/><file name="Exception.php" hash="59dcaaf24a89cffa8725219fcb337c11"/><file name="Message.php" hash="9499b65dfe100997307f1d6d34c034fc"/><file name="Part.php" hash="b7a698a5797a509c3fa6cfc07d78d770"/></dir><dir name="OpenId"><dir name="Consumer"><dir name="Storage"><file name="File.php" hash="2a7c93f1763d3cf5d71620b59fd9ed88"/></dir><file name="Storage.php" hash="5ddb8ee0b3dadfb3e3fc8970d769f4f8"/></dir><dir name="Extension"><file name="Sreg.php" hash="e97a5998028b5992b50e8a5a156b3e0c"/></dir><dir name="Provider"><dir name="Storage"><file name="File.php" hash="5058c52cc19a0148602a945902575246"/></dir><dir name="User"><file name="Session.php" hash="6cc24344ba4655fdfd400740b3a38826"/></dir><file name="Storage.php" hash="e70fd678ad50af3cff48be5cece05897"/><file name="User.php" hash="2508f23a1224e6c80185654d439cb7b7"/></dir><file name="Consumer.php" hash="d67299916b380f1059c421ef5166eba2"/><file name="Exception.php" hash="0edc308a4a739e802214b720de5892ff"/><file name="Extension.php" hash="279f0b1eb98b65df40c2055efb213c12"/><file name="Provider.php" hash="fb37f6b1b5fddd6cb2f66f3b58a13f66"/></dir><dir name="Pdf"><dir name="Cmap"><dir name="ByteEncoding"><file name="Static.php" hash="472093924ae09c6cba0ec8498e8c6fe9"/></dir><file name="ByteEncoding.php" hash="f5330437a6edb9a6272ff2a3686ca4c3"/><file name="SegmentToDelta.php" hash="e2d5e9c58a8a8eff0d1352a83a2cd53a"/><file name="TrimmedTable.php" hash="6a1e07e295b3bfe11c7feb346840ddfe"/></dir><dir name="Color"><file name="Cmyk.php" hash="87761f5d5c851b563920e94c6031d34a"/><file name="GrayScale.php" hash="79bd92b9006aa59d3842796670451ecc"/><file name="Html.php" hash="21d91695b6e9b4d1b855b50af0eaa89d"/><file name="Rgb.php" hash="5384dfd77604d187bd18ede62e0ce8fd"/></dir><dir name="Element"><dir name="Object"><file name="Stream.php" hash="ab1f8cb6dd3eead52f734ba1b4f0c3a8"/></dir><dir name="Reference"><file name="Context.php" hash="25b4975e9be3d9271692eeacb473359a"/><file name="Table.php" hash="4a93e9cd25c2c06eecb4fb00057da3de"/></dir><dir name="String"><file name="Binary.php" hash="62dfaf03aea537f0d2ec3471d16c4f09"/></dir><file name="Array.php" hash="358e787eb92631c79fdcf62fea523dda"/><file name="Boolean.php" hash="a2e870b98b18311729f0339ac6bbf851"/><file name="Dictionary.php" hash="1fbe5bb86017c3d4a337c66750e59664"/><file name="Name.php" hash="ec9c81ef39ae8e452f078a35b133ca70"/><file name="Null.php" hash="77040d7ce085641e0cc91d228e0f8a58"/><file name="Numeric.php" hash="45ead4d8a3c9a1c04a0dd53dbf84058a"/><file name="Object.php" hash="ff577e313e199bd9e4f633ff7fa380ee"/><file name="Reference.php" hash="e6f08569b55c9232d431624d7120b77b"/><file name="Stream.php" hash="61218c7ed6a74ef9665c91b699cca5d4"/><file name="String.php" hash="cc0c1902d510e4b5e31b0910a52bb21f"/></dir><dir name="ElementFactory"><file name="Interface.php" hash="b3932fbf90a05ca1d65711da0ee3f5fc"/><file name="Proxy.php" hash="dead703011c11d00068cbb11a57c6c5d"/></dir><dir name="FileParser"><dir name="Font"><dir name="OpenType"><file name="TrueType.php" hash="f344685e803e73f681cd2daf5260292f"/></dir><file name="OpenType.php" hash="45f6f40a5ccb821f39393d7a13f0e182"/></dir><dir name="Image"><file name="Png.php" hash="27685730a919db3c24957e5d789823b3"/></dir><file name="Font.php" hash="d125de39abd171aacdae4a4798dbc3a1"/><file name="Image.php" hash="9fa00aec7592af34455a0c0ea527196e"/></dir><dir name="FileParserDataSource"><file name="File.php" hash="05bb84a0886a3662fe4e88fb3e8f3169"/><file name="String.php" hash="d3357324e97a0daab8bbb228be194944"/></dir><dir name="Filter"><dir name="Compression"><file name="Flate.php" hash="9acbb960facb1dfc43244baa495858df"/><file name="Lzw.php" hash="69eef949cd28292873a4f9bfee74d4f3"/></dir><file name="Ascii85.php" hash="58a58b25cec346b54534172e717374c4"/><file name="AsciiHex.php" hash="1ab5eabd5ca13ab63643055a32cb9e4b"/><file name="Compression.php" hash="e50b94299c2c5be230499660abcd0c6f"/><file name="Interface.php" hash="79e4281ca28ed60f71222127f13fc0d0"/></dir><dir name="Parser"><file name="Stream.php" hash="5478643e23c905d25f436118ed82ed19"/></dir><dir name="Resource"><dir name="Font"><dir name="CidFont"><file name="TrueType.php" hash="c1440e322dd4ce47378425b4b079797d"/></dir><dir name="Simple"><dir name="Parsed"><file name="TrueType.php" hash="4e5b632dcad52e67764167a87c656bab"/></dir><dir name="Standard"><file name="Courier.php" hash="077b6628855788f8d9f9613a1eecf9b2"/><file name="CourierBold.php" hash="c8b08ecedd809d86794edb7db1093084"/><file name="CourierBoldOblique.php" hash="8d5c4eee8fea5871d361f5c1b63b6e70"/><file name="CourierOblique.php" hash="3be643cb7750606ba0dc85e0c82f9a27"/><file name="Helvetica.php" hash="d30e96648d632722584c64e5141d2a24"/><file name="HelveticaBold.php" hash="e1d2438cce88bba699dd9d1ece8ede39"/><file name="HelveticaBoldOblique.php" hash="64167d08da8c4f805447c5ba8214533d"/><file name="HelveticaOblique.php" hash="b6a5705a83f98f953e21204867936379"/><file name="Symbol.php" hash="ac963fdafbe9b25d65b8316467c824a9"/><file name="TimesBold.php" hash="ad6c48ac0d0d147f79091cb78ca4a319"/><file name="TimesBoldItalic.php" hash="7fd0fb3cd33c1c32bf62d38a0fbe77fc"/><file name="TimesItalic.php" hash="fe8b46fe0e75d715069bde1b220f5ab3"/><file name="TimesRoman.php" hash="aef4f3f0a16a04c5f8d55ba01de41b1b"/><file name="ZapfDingbats.php" hash="1a027d7bc8860da854756fb6d5986f49"/></dir><file name="Parsed.php" hash="042237bbd6eca73b6cc61718b78192c8"/><file name="Standard.php" hash="0b79662bafe1faed72735782fc8b6657"/></dir><file name="CidFont.php" hash="b129159dd8502603bbf97dca4d2459d2"/><file name="Extracted.php" hash="5751f705bd48ea8b6e74f91d76bb5f76"/><file name="FontDescriptor.php" hash="fc348816b6de078b2b2a6f1842662a28"/><file name="Simple.php" hash="e2e5be94573fd3eadc146a89b309bf7f"/><file name="Type0.php" hash="9d12edfa76ea5887cfbd88eb1d3dddd4"/></dir><dir name="Image"><file name="Jpeg.php" hash="d938deb0910412569bb483707e93ebe5"/><file name="Png.php" hash="38945edc6e69433d4d0a82f0af66d55e"/><file name="Tiff.php" hash="4024b205cd3fcecf3a90c5745fd3fdbf"/></dir><file name="Font.php" hash="b55c1f915a4be29d1c3854fe5b604bb7"/><file name="Image.php" hash="140e8d881391bab5d97fa27838187b57"/><file name="ImageFactory.php" hash="4a30077a55f4bf9977ca26d8a3a15848"/></dir><dir name="Trailer"><file name="Generator.php" hash="d115e610d74623fa264d5b53dabc6089"/><file name="Keeper.php" hash="957528c5291476d646296c359029cc3e"/></dir><file name="Cmap.php" hash="773fe99e9931d2a5cffddf434eb3817e"/><file name="Color.php" hash="287ffcb872505208592aef1fd3c26c57"/><file name="Const.php" hash="52b132751180857e541138f1e11faf13"/><file name="Element.php" hash="f2ffdf25098e674fb496df4886fe6534"/><file name="ElementFactory.php" hash="ec8658a5a7ff83a453f63b9f1d6ee358"/><file name="Exception.php" hash="6aa4649ee7da0ba9206931f57d0e6ac0"/><file name="FileParser.php" hash="e61c7d0b4fa0d8d26733c932720b23eb"/><file name="FileParserDataSource.php" hash="5430f783004a0076bd67b3420cfc119d"/><file name="Font.php" hash="bcac1e1a18306594d4fa15876364e8e3"/><file name="Image.php" hash="05c03bfd66c16569296343555d8daf50"/><file name="Page.php" hash="2eb4e8cdbef6df00a399ef406ee8fb04"/><file name="Parser.php" hash="fbfa4bd2f206f268bbe14d9a25aa90b3"/><file name="PhpArray.php" hash="46134e59159d39478332024c6458782a"/><file name="Resource.php" hash="127ca1e758cedc2df42437916031ed73"/><file name="StringParser.php" hash="cc4751af231ef5e9c388aba27b573beb"/><file name="Style.php" hash="e44d7906e6247b8cbd1023a793cfb326"/><file name="Trailer.php" hash="e6256cbc83eb29011a67679a2dc7b6c5"/><file name="UpdateInfoContainer.php" hash="abf9648aca0c075fa5a879f5e6b2f0d9"/></dir><dir name="Request"><file name="Interface.php" hash="a3b4d857af03d602b19026ebcc823871"/></dir><dir name="Rest"><dir name="Client"><file name="Exception.php" hash="339710646898be0691503cb16d5c4ec0"/><file name="Result.php" hash="ba6ebc86d734dd8c110d6a5125034b80"/></dir><dir name="Server"><file name="Exception.php" hash="2cefa30e49caf9bf62b2ca46508ec560"/></dir><file name="Client.php" hash="2afc8e8c3c4256cf6f024636682024a3"/><file name="Exception.php" hash="b6c3c3a66c14a13d559178606857eed7"/><file name="Server.php" hash="d96940ee78a4343881216f537c5716b8"/></dir><dir name="Search"><dir name="Lucene"><dir name="Analysis"><dir name="Analyzer"><dir name="Common"><dir name="Text"><file name="CaseInsensitive.php" hash="19bf6f0e7b24657c39233885306ad92c"/></dir><dir name="TextNum"><file name="CaseInsensitive.php" hash="6875fb4fa46a171ed21d4d00dae58b36"/></dir><dir name="Utf8"><file name="CaseInsensitive.php" hash="29a48c8189903ccf265bbd6d76ee9ee1"/></dir><dir name="Utf8Num"><file name="CaseInsensitive.php" hash="1b1586c9253f6d09df14e6b0c555f257"/></dir><file name="Text.php" hash="745389d76364d9a595e2630b9616665b"/><file name="TextNum.php" hash="c36572e42bb6dc98d6113d288df1d3b8"/><file name="Utf8.php" hash="0bf6bc51b76134557012ea53734f6303"/><file name="Utf8Num.php" hash="e789862b876a4c148e46f8e608668f24"/></dir><file name="Common.php" hash="4b0b7c99eff1cd8f9d4a6bb7b4ef2808"/></dir><dir name="TokenFilter"><file name="LowerCase.php" hash="097eaeda5e8af6e7a5365fd79bfa49a0"/><file name="LowerCaseUtf8.php" hash="fe31cc775ad8f168138fd46b6c8ef8dd"/><file name="ShortWords.php" hash="03df2e7d13741844f34e8d9206ca9693"/><file name="StopWords.php" hash="32722cb24d79614838f0393905d0facb"/></dir><file name="Analyzer.php" hash="8a145c4ea9e79d8e3b0cb424f652451c"/><file name="Token.php" hash="01b05ec0b6cd22df2c3a93924a38d09d"/><file name="TokenFilter.php" hash="2555c1d0881f42b9ba4c0f48555e4889"/></dir><dir name="Document"><file name="Html.php" hash="47d19025361b72c4671a526deddedbe7"/></dir><dir name="Index"><dir name="SegmentWriter"><file name="DocumentWriter.php" hash="bf9ae162816fd90fbc5ddff94a315c63"/><file name="StreamWriter.php" hash="09e3febd80eb6857fc4c208af205841a"/></dir><file name="DictionaryLoader.php" hash="d8869b154e075d655f602f0f6dd8a663"/><file name="FieldInfo.php" hash="d2bd241b1fe836d0fe6eb0a8bcb996df"/><file name="SegmentInfo.php" hash="d936c1a8e716e55cafc2856b5237511c"/><file name="SegmentInfoPriorityQueue.php" hash="52e8d64c1d641e914247a618acee2326"/><file name="SegmentMerger.php" hash="2500843a5c90743d882281ef35c4198d"/><file name="SegmentWriter.php" hash="011c4f094e22abf069996d4bc75e38bd"/><file name="Term.php" hash="d21b2b6132b9af9d99273c55aebd8668"/><file name="TermInfo.php" hash="9767284af422689cc679679964247571"/><file name="Writer.php" hash="76b2ae42de77e0d2de4b5eee909045e4"/></dir><dir name="Search"><dir name="Query"><file name="Boolean.php" hash="c843a3c16a51ce04cc6c38c5d5992991"/><file name="Empty.php" hash="628ed2ce3cc5a699ed8bc591b4fa8d97"/><file name="Fuzzy.php" hash="49167258acf15e4af8c1d10e1b1568d3"/><file name="Insignificant.php" hash="a64b79d6ea7475704be66278fe61a606"/><file name="MultiTerm.php" hash="372a802dce89841519a5f33ede1aaaa7"/><file name="Phrase.php" hash="b6996a7c505ea1c50ffac6128255229e"/><file name="Range.php" hash="f41c3766f8785a8a9cc96931733af846"/><file name="Term.php" hash="b9c17d6974228194ea1e12443e2bc882"/><file name="Wildcard.php" hash="603103f269810102b92a0f792544b563"/></dir><dir name="QueryEntry"><file name="Phrase.php" hash="de357c5da3db4e94abda13bca5eab768"/><file name="Subquery.php" hash="06a90c48ed311ce18dfdef4dafbdd259"/><file name="Term.php" hash="d2f66e3bf916b8b9419a44befbcfb013"/></dir><dir name="Similarity"><file name="Default.php" hash="7beb58cb32a897251506141f03edd2a3"/></dir><dir name="Weight"><file name="Boolean.php" hash="b83d2bde4e91bb8b2eb82da8a865fec7"/><file name="Empty.php" hash="b390afb5ba783b93d773a1d1d13db147"/><file name="MultiTerm.php" hash="7881e9696351ff07807c396d16805cc9"/><file name="Phrase.php" hash="c3f9306e883197c46b64107b03c40b35"/><file name="Term.php" hash="262954b10a96c78c43ab54c206c804c8"/></dir><file name="BooleanExpressionRecognizer.php" hash="96fa741f4dedb983f3d9f040890bc19a"/><file name="Query.php" hash="519e7589b9c68d39de999d4c2017147a"/><file name="QueryEntry.php" hash="9c94bd7d0bb0dd5f7bce4457c76e5459"/><file name="QueryHit.php" hash="9f6c8b0ca87fbacbbb3acf09009182ed"/><file name="QueryLexer.php" hash="b9d5ebbbf20474c8662674b9a292a515"/><file name="QueryParser.php" hash="32884756f5d9027b362541bc1343c112"/><file name="QueryParserContext.php" hash="79ca4abd405a9a4134f5f422dcf2f03b"/><file name="QueryParserException.php" hash="37ca8ae097e5adea15daf8ddc0c23e3b"/><file name="QueryToken.php" hash="86f27f4dde0adc8a36d2b58ed065dd7f"/><file name="Similarity.php" hash="96bc99bf37a3464f83b2ebae574a8c7a"/><file name="Weight.php" hash="b9598eec38d995ee0005b02f7b8520c2"/></dir><dir name="Storage"><dir name="Directory"><file name="Filesystem.php" hash="ef4f9d790e64fb220b88f7af5108fcef"/></dir><dir name="File"><file name="Filesystem.php" hash="acdd356c21884ad66ba740586df433c2"/><file name="Memory.php" hash="c6d14a077ae3d1ee0a99ebd50b585cf6"/></dir><file name="Directory.php" hash="49ec3c31dcafface532a9bf5e94735d6"/><file name="File.php" hash="c7302834f910cb2fed8cf06b7847f8b9"/></dir><file name="Document.php" hash="6c06136eead9d96c2bbf8898922c6546"/><file name="Exception.php" hash="4f7af315a3fc3b8fcd2259fbbd78a0d7"/><file name="Field.php" hash="ea19d05997e6572a2b3f228d5f545aeb"/><file name="FSM.php" hash="c382a51f82dc477dd5645dd9c273ab15"/><file name="FSMAction.php" hash="95acc5883096ecfa60afcd79c261b4d5"/><file name="Interface.php" hash="3a0593675a844ad78c05f263a3174352"/><file name="LockManager.php" hash="5da9866c585f5e7e5d653362a3c60098"/><file name="PriorityQueue.php" hash="c7b000e7f09f5f5b2d3467b3628f63bc"/><file name="Proxy.php" hash="230f8e26d113a7a13c6706af61455f92"/></dir><file name="Exception.php" hash="623bd98435d24e38fd942eba688bd3df"/><file name="Lucene.php" hash="b487fb369f3b2b6b10c947e3cd543dd1"/></dir><dir name="Server"><dir name="Reflection"><dir name="Function"><file name="Abstract.php" hash="867e7017c2d018c55b1c8f1cdb132e7e"/></dir><file name="Class.php" hash="6275562f875d379dde0a64e373a81622"/><file name="Exception.php" hash="23b797d085bea44ff7ade673bb3baaed"/><file name="Function.php" hash="121d9d8d9fe5d5b61d45347d1ecbcd38"/><file name="Method.php" hash="fe3a2697c840f86d325e5446a65efe41"/><file name="Node.php" hash="5e5583963c378bd49d9910403dc05b63"/><file name="Parameter.php" hash="112ce830276a5e3504d3227706e721ab"/><file name="Prototype.php" hash="fdfa408bb42aa19bc7142e324c7d10a6"/><file name="ReturnValue.php" hash="c2ba1de403d9e95344284222a641a9f7"/></dir><file name="Abstract.php" hash="b3e317a938489fb82cdfe7cef6b2f8e9"/><file name="Exception.php" hash="ed783ca66452bc950ce013c1cfeb28ec"/><file name="Interface.php" hash="9a1de036a28a009aba326f2e2b4de6cb"/><file name="Reflection.php" hash="5a21984c3026add1d74bf8196ae3799a"/></dir><dir name="Service"><dir name="Amazon"><file name="Accessories.php" hash="0f6ba9d19efdcd1604b31cba4d9224f4"/><file name="CustomerReview.php" hash="fa49c69079133b5e1ec0257756272801"/><file name="EditorialReview.php" hash="b0d75aeed907b2e35f8c6330f1af294b"/><file name="Image.php" hash="f9f77e1ab9c69bcda1685b8d71011c48"/><file name="Item.php" hash="1fe0d00ac4083c8414e65592f50076b6"/><file name="ListmaniaList.php" hash="df638caadb73d95dcaaa2398b8249d27"/><file name="Offer.php" hash="9a077c2e4be3b0126b605b2c331b0e5c"/><file name="OfferSet.php" hash="79845b845f5786e565bb03cd8a82dd5d"/><file name="Query.php" hash="99ddf34e2eb6562b86ab0183910ab01c"/><file name="ResultSet.php" hash="c0ffa84574ffa7b3ab52a32a60d590c2"/><file name="SimilarProduct.php" hash="13bcea0963a3a6a53ae12774a69ae9a4"/></dir><dir name="Delicious"><file name="Exception.php" hash="939858fb6ca8c34441fa68d6047b8509"/><file name="Post.php" hash="e25f7005b9d5c119721cb1883371b480"/><file name="PostList.php" hash="0360ec8e7b8213bd3acbcb73e8e23ff1"/><file name="SimplePost.php" hash="50dfdd1f7cdceab806b1b4050fc9a480"/></dir><dir name="Flickr"><file name="Image.php" hash="3f217c745da9a4aee0b18ec0d9e49ddb"/><file name="Result.php" hash="0f6c04a84d19af46be46e07cd785d4aa"/><file name="ResultSet.php" hash="cd062048653b8d80008c70cf05e24a72"/></dir><dir name="Nirvanix"><dir name="Namespace"><file name="Base.php" hash="e729ad01667d10d5c30e8e563e3c4ad7"/><file name="Imfs.php" hash="82483c2f0e784407dece9567ff7f1b0c"/></dir><file name="Exception.php" hash="1bb10303d6560a40f8b6e32414a555a9"/><file name="Response.php" hash="6dc221fc0e191a441ea6aa19860f9f83"/></dir><dir name="Simpy"><file name="Link.php" hash="cd717bac2ac4bcb04c93c53c1b6673c5"/><file name="LinkQuery.php" hash="ebf4e9eb4e39f5c9ba74021d0785b234"/><file name="LinkSet.php" hash="b5d1d76ae783b7924f01468e19c700e0"/><file name="Note.php" hash="aa3ff1a8d1026d9a543a356e1500b17c"/><file name="NoteSet.php" hash="9fc02483f9de6ffa9935b53aae669272"/><file name="Tag.php" hash="8334adf42eb4af830ce820e64705279c"/><file name="TagSet.php" hash="fd1f7a088a6e26f8ed7f40bbaf37915f"/><file name="Watchlist.php" hash="6ce438614bcabb921c405910b377afd3"/><file name="WatchlistFilter.php" hash="45f4087260bce2e219e980e53e904c13"/><file name="WatchlistFilterSet.php" hash="7ad17cc42e69174f91e94d2f7927222e"/><file name="WatchlistSet.php" hash="0d3eba19e6fe37201e2c38d5798dd21d"/></dir><dir name="SlideShare"><file name="Exception.php" hash="bbf07c036a510bc45b8de6d386a6a1c6"/><file name="SlideShow.php" hash="fb054bcc17f1ef485d75bb5efdf9e7db"/></dir><dir name="StrikeIron"><file name="Base.php" hash="dec66a691b7b3cb3acb4f9874eef9db2"/><file name="Decorator.php" hash="0bb28ada57d92d6c67bfb4b076fde201"/><file name="Exception.php" hash="10b9bb8ec30dad01497c2447c3835fe7"/><file name="SalesUseTaxBasic.php" hash="3b272c2834593af601a1510581c744c2"/><file name="USAddressVerification.php" hash="d72014863aac89355e4c7156a0282898"/><file name="ZipCodeInfo.php" hash="8b7de494bcd9779c5d5d1ddcf3a64c47"/></dir><dir name="Technorati"><file name="Author.php" hash="b71f6d09fd69cbac32e2d88bd22e2a5a"/><file name="BlogInfoResult.php" hash="95ca28716a78be5be2010d89e6158e81"/><file name="CosmosResult.php" hash="31fed7f99cae43cf680465b89fd9143b"/><file name="CosmosResultSet.php" hash="cb588da6302f4871261e59cae40fd596"/><file name="DailyCountsResult.php" hash="e9bdb079aebe656a48d285646da947f7"/><file name="DailyCountsResultSet.php" hash="d0698dc5a1c1e329f437c6c1c9eef1e3"/><file name="Exception.php" hash="eb2cd7782fc26f9cb30c467c1af7dd4f"/><file name="GetInfoResult.php" hash="e402c510a6fdbe859b0d81c603435b08"/><file name="KeyInfoResult.php" hash="ea78172bd9bfb7d2f13b6e99f145e536"/><file name="Result.php" hash="2dd6b98a7b539f1a84df3c439a43aef8"/><file name="ResultSet.php" hash="34b9624c76ed4d23720916a8f8403329"/><file name="SearchResult.php" hash="d1de7c81102dadf93da7263a1cd597a8"/><file name="SearchResultSet.php" hash="5cb34b40a894e91467a914f9aedcebb9"/><file name="TagResult.php" hash="8812fc1dc25999ff462015a83d30b14d"/><file name="TagResultSet.php" hash="43948e61162cbdcd5433f8cd225c013a"/><file name="TagsResult.php" hash="2e33db4c696051dcd830870ef11882cb"/><file name="TagsResultSet.php" hash="702ed20001ca83dfa2d02f0c033eadfa"/><file name="Utils.php" hash="47041ba14f98eaadf793e3af5c3cd73d"/><file name="Weblog.php" hash="27bf011ceba4f85cc642f9e1b4690381"/></dir><dir name="Yahoo"><file name="Image.php" hash="ff69581093491100fc43b379833827f6"/><file name="ImageResult.php" hash="bff5bbd3bba204a1db334b9fa3877f74"/><file name="ImageResultSet.php" hash="c7f039b3479095bd7710e317c5e41dac"/><file name="InlinkDataResult.php" hash="08020a6902bcf0570e899055bd46e113"/><file name="InlinkDataResultSet.php" hash="e194206b711424e1447cb0b5fbd5d6bc"/><file name="LocalResult.php" hash="6eda4173dba78fe0f5e22aab1a60b14a"/><file name="LocalResultSet.php" hash="8181f588b4a2d7cb35e887a328635f7f"/><file name="NewsResult.php" hash="4eccb0efc95d4ad78e8fda3719c6b475"/><file name="NewsResultSet.php" hash="04606f8b6a74085e6d0a6ed12c663fdc"/><file name="PageDataResult.php" hash="2aa1d346b33623948a1e7e12ebbabe08"/><file name="PageDataResultSet.php" hash="8ac568333d98da4ae35a6e0dc65df67b"/><file name="Result.php" hash="1355d34585e5e1b9224390a3639f8094"/><file name="ResultSet.php" hash="7ed5c1e92f39791fe9c8f0e27387193e"/><file name="VideoResult.php" hash="ed4c04b463c2ea28801a5c9b074e8f3f"/><file name="VideoResultSet.php" hash="f10033eebf1d4cff3bad8a1d6f781ca4"/><file name="WebResult.php" hash="0d6b54781cbe0431da2345ba52eb1395"/><file name="WebResultSet.php" hash="d88cbe2685e1c703232451261a6c3d99"/></dir><file name="Abstract.php" hash="f3121450a43083873941e3780de33c30"/><file name="Akismet.php" hash="5c00d142ec29dfe610376e4c08683601"/><file name="Amazon.php" hash="f38fd7399d48f9645d3062b15fefa0db"/><file name="Audioscrobbler.php" hash="9a5348ed52e25f7a667b7ee3e923aa66"/><file name="Delicious.php" hash="536ebc6ebb71ac79090bb17abb23e9be"/><file name="Exception.php" hash="f30385a55fb19897184963bf4e22afbb"/><file name="Flickr.php" hash="b1b0928bf970dbd69e34b1e09f34054c"/><file name="Nirvanix.php" hash="06da1ea00962656d19cd5723309e52a2"/><file name="Simpy.php" hash="3f985d36ba987359818a81690df4ea3b"/><file name="SlideShare.php" hash="28edd1bcbfdb6f87257e001800e9f819"/><file name="StrikeIron.php" hash="fbcdcd384f7650fd1d597ff1ece78ece"/><file name="Technorati.php" hash="d6300d4d0d8327efe07ef96fe4b981bd"/><file name="Yahoo.php" hash="cfeb13cb90b0ffae6aea60f2b571561d"/></dir><dir name="Session"><dir name="SaveHandler"><file name="Interface.php" hash="3489c186e762c594cc12925c90060fcc"/></dir><dir name="Validator"><file name="Abstract.php" hash="75f9bbc462eff5235ae2ca3dcc48e714"/><file name="HttpUserAgent.php" hash="6f66fbf6b41965dc6e5f2b3b38593473"/><file name="Interface.php" hash="e8fc5c24f815bb55464c874ad7204b18"/></dir><file name="Abstract.php" hash="c9e304ccb23c2b64b2d6c47b24212988"/><file name="Exception.php" hash="160302987669ad43403706d9ef405f57"/><file name="Namespace.php" hash="2f2b4b0aac9888478453ce2fc160238d"/></dir><dir name="TimeSync"><file name="Exception.php" hash="d23195d983943eaf77a1dec41498d53f"/><file name="Ntp.php" hash="feebc42fab79cd8dada8309be5e16721"/><file name="Protocol.php" hash="bb7382f2abb0b4ddd278ef2be5262517"/><file name="Sntp.php" hash="15c66e9100a90ed5dc6c25a5fca95c9d"/></dir><dir name="Translate"><dir name="Adapter"><file name="Array.php" hash="66e2c3441aaf8958fe731007b0b8495d"/><file name="Csv.php" hash="23396cebfc7216dd85ae2dc98b08b4e4"/><file name="Gettext.php" hash="7be96320f9f773f0b32ec67a7c3af988"/><file name="Qt.php" hash="7e3265b3d0978509eda3ed3672f44c2d"/><file name="Tbx.php" hash="0eed98f486548ec226bb72db8870d283"/><file name="Tmx.php" hash="24870d77c3cdd53689a322d3ee987eac"/><file name="Xliff.php" hash="415e5cffeb5a43d6ddb9e92396837c4a"/><file name="XmlTm.php" hash="e6618a045cc845334b5e0dc6f63e120f"/></dir><file name="Adapter.php" hash="7499a75421ffe338a98afbaaeacb3140"/><file name="Exception.php" hash="7c0002781c1c563a9f1d3d4f382e2cd5"/></dir><dir name="Uri"><file name="Exception.php" hash="eb42a6646f23bc7b65b0e457816ed5ed"/><file name="Http.php" hash="2e1441c5436c08c4f76f40c30b9bc98f"/></dir><dir name="Validate"><dir name="Barcode"><file name="Ean13.php" hash="40f61a22b89877b6b37e3b6d475b5be0"/><file name="UpcA.php" hash="f772b7b3ab5f34525bfb064e0c7e25e5"/></dir><dir name="Hostname"><file name="At.php" hash="3125406a1214eba83814121747084211"/><file name="Ch.php" hash="208bf5077a6d01349caf89f32049940d"/><file name="De.php" hash="c8a2698a0d5fbcf1737879f125de571e"/><file name="Fi.php" hash="8738c6a95408e73d2ce4c415ad14a232"/><file name="Hu.php" hash="75e199bb3ee19ca54fd086016f0d3485"/><file name="Interface.php" hash="43f9998216852462b486adbaf6599629"/><file name="Li.php" hash="c08c65835b232b098df10937222151d5"/><file name="No.php" hash="d830670282dccc98dfc790c8981cdf3e"/><file name="Se.php" hash="0057c78c680f55b61bde5bf6246aad14"/></dir><file name="Abstract.php" hash="408d038c6a77b02c579f938631429695"/><file name="Alnum.php" hash="4b6a79c8a5e4cb865ee7e12afb226bdd"/><file name="Alpha.php" hash="f51fcafdc2ab1acc6df007ba1d77e5ae"/><file name="Barcode.php" hash="4593b5d17155b56f857c5e6f7265c364"/><file name="Between.php" hash="d0d4435ef3d6e4ab4e43fccd249b9d16"/><file name="Ccnum.php" hash="c956ce487144839eff13b07f55b26cb7"/><file name="Date.php" hash="e518ba5785b02004df1b73e76de0625d"/><file name="Digits.php" hash="d841743a513a75f2fedfa0ef3489d36d"/><file name="EmailAddress.php" hash="e9f0b3dcbcece3277cd8e05ed2ad4fde"/><file name="Exception.php" hash="3272ecd1b0b9bec224c124b08034cec3"/><file name="Float.php" hash="0fa83ce1b5c6f413baa695ba9ebde570"/><file name="GreaterThan.php" hash="b8f969a70edfe55b13a6abf86c2d6178"/><file name="Hex.php" hash="7271613da1bc891757e06e9e187d8c07"/><file name="Hostname.php" hash="9e1d2ce49ea96509535d87c6ffc237c6"/><file name="Identical.php" hash="255a424fa08108d4dd313bfccb3c1bfa"/><file name="InArray.php" hash="be63e1f720ee9710597873552bff47bd"/><file name="Int.php" hash="a46ea2dacccf400011bc7b695d4543fd"/><file name="Interface.php" hash="3ad0eadb0114cdd4705ace64984acf02"/><file name="Ip.php" hash="7b0a0f43289629590371804fbea0c17b"/><file name="LessThan.php" hash="14a1f7bb752d370268a37ba5283515c1"/><file name="NotEmpty.php" hash="0e8006257535e504d6a3aec101fb61f2"/><file name="Regex.php" hash="4e28ec0b7af73b6f66394bc933525662"/><file name="StringLength.php" hash="6628c7b1eb96768e02c7b768ea400a11"/></dir><dir name="View"><dir name="Helper"><dir name="Partial"><file name="Exception.php" hash="680a6e0bbbd035fd9200defad2dbcb77"/></dir><dir name="Placeholder"><dir name="Container"><file name="Abstract.php" hash="6b826076d522ea3a91f97dff75ac8d13"/><file name="Exception.php" hash="1c257684540c5d0ebf9df78bcde60ae5"/><file name="Standalone.php" hash="638f52dbcc4493635a82a1ddece3a00d"/></dir><dir name="Registry"><file name="Exception.php" hash="497bb66824766532411a3cf753190238"/></dir><file name="Container.php" hash="8ce04f6b1c48c11182a7d156f9de46f4"/><file name="Registry.php" hash="c8bcc102ed8e960588c0c5998416e945"/></dir><file name="Action.php" hash="1129369b4fc34ecb2b615203cbb1dce7"/><file name="DeclareVars.php" hash="16756fb080401a2cf11688578518831f"/><file name="Doctype.php" hash="8c35cc87bddbbc7f0ad1ff3e37ad7c9a"/><file name="Fieldset.php" hash="4c42ae8f1117337f12dbadecf3c48452"/><file name="Form.php" hash="9f02818d25d754287001176b27f24191"/><file name="FormButton.php" hash="1e2a645b6889afaf1c5d84bbc3c4aa5d"/><file name="FormCheckbox.php" hash="c73221b9e6ab33090cdd815d7c03096c"/><file name="FormElement.php" hash="c05ae515dffbc903daadef3cc7644673"/><file name="FormErrors.php" hash="91b467bee3e8ec89b8454164cd99b857"/><file name="FormFile.php" hash="70972342dd9b8f9e940796e375f34c21"/><file name="FormHidden.php" hash="ff8dd2c24eb7ad8ff2123c38ae813121"/><file name="FormImage.php" hash="f9669f918666c542dd5d6e2f6078bd63"/><file name="FormLabel.php" hash="3e4c46948b5d9d1ae1cf3ece03da88f5"/><file name="FormMultiCheckbox.php" hash="0abf8b94bc355a1716d871d88300e524"/><file name="FormNote.php" hash="cc49f42d264737a49081166201834b9a"/><file name="FormPassword.php" hash="c05513b694df36f6cbc1d703096a2f7f"/><file name="FormRadio.php" hash="ff6df6fab8e3aa7e00ccee6a27057669"/><file name="FormReset.php" hash="f7d38d2fb875d09e905f4b6ed4de9bce"/><file name="FormSelect.php" hash="b160af9f2ed18c371d482c283828b28c"/><file name="FormSubmit.php" hash="b17835433836e07425e8172103396972"/><file name="FormText.php" hash="3ffe6f745ef5b3a54966bf68ca8f6934"/><file name="FormTextarea.php" hash="145abe9bab67a9b151031e075018a2c1"/><file name="HeadLink.php" hash="15b0f1875da9743da951912a59805ac9"/><file name="HeadMeta.php" hash="9ba8cc723c10502e581bfe3f34734975"/><file name="HeadScript.php" hash="1d229adf1487d59c54bc2529f894e79c"/><file name="HeadStyle.php" hash="61f73b171c3ef82c484b6a37f1572e08"/><file name="HeadTitle.php" hash="c700e62cd9d52c17d69558739c9ca9d0"/><file name="HtmlList.php" hash="1f8edfdbbd8f4beb880102df9313f5fe"/><file name="InlineScript.php" hash="200f121921bf4fe92f21479a6c330b2d"/><file name="Json.php" hash="a4061273f5130c64599a3dedf16cfb70"/><file name="Layout.php" hash="11099afe5e0d70cbe8c66f6adc289fba"/><file name="Partial.php" hash="e7cd9256d989f6ee25b569ff1b9494fb"/><file name="PartialLoop.php" hash="5d911ba3d77ccdd462172f06b6e46591"/><file name="Placeholder.php" hash="b0df18e742df537c137b2bf0efb007a7"/><file name="Translate.php" hash="4d3ab6539b06367173a96f6327616df1"/><file name="Url.php" hash="f39930a1785a69c95b702a04cd11cf8b"/></dir><file name="Abstract.php" hash="c5290109e6e3aeac2a54a400a07e95d8"/><file name="Exception.php" hash="d0dadc5d9d5268b527038c27ec40d15b"/><file name="Interface.php" hash="7b05c73134ed63b9023b0c78ec4e9c50"/></dir><dir name="XmlRpc"><dir name="Client"><file name="Exception.php" hash="4225a21616cfe9734e1d298e913bb2c0"/><file name="FaultException.php" hash="8ff899840f66ace38e9b7f2b118fe355"/><file name="HttpException.php" hash="dcbd44b3e7e4096bd61bbb878e1938f7"/><file name="IntrospectException.php" hash="4f02f9aa0ffba8fdf73051959419bdb9"/><file name="ServerIntrospection.php" hash="791ea5fff2443e6e1e3fdaa0ae809ce5"/><file name="ServerProxy.php" hash="3bd641a0bdbcf536c766cbb20c4bee53"/></dir><dir name="Request"><file name="Http.php" hash="6943561fbd436e672896062ed86e4585"/><file name="Stdin.php" hash="e7c64e23e4ce12118d2f7603bbc3d0ca"/></dir><dir name="Response"><file name="Http.php" hash="d056da246a84f71162923f9d18be1aed"/></dir><dir name="Server"><file name="Cache.php" hash="d4560d26b13bc8971cf4cccdeac99bfe"/><file name="Exception.php" hash="188551be2ba7f9eec3c836071a167a99"/><file name="Fault.php" hash="fcb61ae2ad1fb2c891039c48d90d3b3d"/></dir><dir name="Value"><file name="Array.php" hash="05c0a7e7086496a17b9c0746dbc432c4"/><file name="Base64.php" hash="657b8a508b456f26f3ecabd66ffe7414"/><file name="Boolean.php" hash="f0f7278d192d2e6d4fa16dc58344db9b"/><file name="Collection.php" hash="ee73f9b7ed787fd1b6e1a7e57386171b"/><file name="DateTime.php" hash="8eb89b2915ff0949370191d7677a04dc"/><file name="Double.php" hash="6f1ae63fc6f3d54dcdbfdf71482d69b9"/><file name="Exception.php" hash="b15220cfbc9a7ab0aa6964856d3c02ff"/><file name="Integer.php" hash="0e1f1dfd1bdbf7c0d91ea39437b5c172"/><file name="Nil.php" hash="69d8f0f65bbd917597f15dc1296a1fd5"/><file name="Scalar.php" hash="6f52b1c8bc654494213741ae94c2dc3a"/><file name="String.php" hash="a7909cab26d01c7e3b995412c558d2f7"/><file name="Struct.php" hash="db0ae33379eac24f16cb2d9345307360"/></dir><file name="Client.php" hash="3271e0affaf410b76a2ff0e04cfa969e"/><file name="Exception.php" hash="cdc7344efa4ed97a5bfaa43952e730a1"/><file name="Fault.php" hash="591940a48dc97f1084ec87ca5cadb285"/><file name="Request.php" hash="aa47d9512cf863284507383c0ad67514"/><file name="Response.php" hash="67b1eaf58fcf405ac353ee75dbd2d148"/><file name="Server.php" hash="26ba62e2ad9264129e0694f6715a2593"/><file name="Value.php" hash="c9b82e67826b23ce00130c30804fb5af"/></dir><file name="Acl.php" hash="3789731b78477b01312609653d9c1f44"/><file name="Auth.php" hash="b35d1f672691e98c3b15f562edaaf68a"/><file name="Cache.php" hash="1f95fdb784fdcb03b2f88fbe7fd5ee87"/><file name="Config.php" hash="23d1fc638b110320ad411fda2e4673b7"/><file name="Currency.php" hash="b71045d4aca285d1d7fc2cd89fc8b86e"/><file name="Date.php" hash="1727a499db4c1feabd1a6417f525a321"/><file name="Db.php" hash="eb3c0f1cef20940395591171e016a626"/><file name="Debug.php" hash="764612158359fdf88638c9d718decfbf"/><file name="Exception.php" hash="7444d4451b0836b2412d695f1c0b4941"/><file name="Feed.php" hash="07ec2d904f00b53381bc0596dfffdb1c"/><file name="Filter.php" hash="b8733aa856612453f457db106d54d61b"/><file name="Form.php" hash="c8cae4d201696fbd88ad1cbeaba4017e"/><file name="Gdata.php" hash="c58fa7dd24b4b3fce6572267739c3231"/><file name="InfoCard.php" hash="b625a8b4a6e45aebf348337a67621c0a"/><file name="Json.php" hash="c4f18f4d853051f81385f8f8d3e7dd17"/><file name="Layout.php" hash="3c7096c1453e12ee73adeba3ec4b675b"/><file name="Ldap.php" hash="2c3c920b16d795129a256946179bf773"/><file name="Loader.php" hash="9ebdb57f5c3b086717c7fec97b428f4c"/><file name="Log.php" hash="64340dfb3c74ca5a685b96e5542904f6"/><file name="Mail.php" hash="ad680b04cc97947270cf38e1ac063a5d"/><file name="Memory.php" hash="be81d4d3a6ddbe9d1d1c59cd9818d3af"/><file name="Mime.php" hash="b0ff066547446a375e2ff39508234e92"/><file name="OpenId.php" hash="bf1f9754cbd95fd021e9663a20ed7641"/><file name="Pdf.php" hash="9dc636da65f7bba6355a7cf55afacd14"/><file name="Registry.php" hash="338e7e56f9af84d2134bd8c316219060"/><file name="Session.php" hash="7576f11ea6dabbfc26ece44518333cea"/><file name="TimeSync.php" hash="7873f42ab040036cf6ecf60d101d89f3"/><file name="Translate.php" hash="73a389b58afe59a765519ee842899e0c"/><file name="Uri.php" hash="07982f29881a42c9eb8d25acea2f4dbf"/><file name="Validate.php" hash="7992780834bdfc7f0c0098cfeb0f6217"/><file name="Version.php" hash="0c26f0814f96935baa52dec6babf6a1c"/><file name="View.php" hash="03b46b303f50e369e37d2a6278a39952"/></dir></target></contents>
|
16 |
<compatible/>
|
17 |
+
<dependencies><required><package><name>Mage_Pear_Helpers</name><channel>community</channel><min>1.0.18800</min><max></max></package><package><name>Lib_ZF_Locale</name><channel>community</channel><min>1.0.19700</min><max>1.0.19700</max></package></required></dependencies>
|
18 |
</package>
|