0% found this document useful (0 votes)
24 views413 pages

Como Modificar o Texto Automaticamente

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
24 views413 pages

Como Modificar o Texto Automaticamente

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 413

php _e( 'New User Default Role' ); ?

></label></th>
<td>
<select name="default_role" id="default_role"><?php
wp_dropdown_roles( get_option( 'default_role' ) ); ?></select>
</td>
</tr>

<?php
}

$languages = get_available_languages();
$translations = wp_get_available_translations();
if ( ! is_multisite() && defined( 'WPLANG' ) && '' !== WPLANG && 'en_US' !== WPLANG
&& ! in_array( WPLANG, $languages, true ) ) {
$languages[] = WPLANG;
}
if ( ! empty( $languages ) || ! empty( $translations ) ) {
?>
<tr>
<th scope="row"><label for="WPLANG"><?php _e( 'Site Language' ); ?
><span class="dashicons dashicons-translation"
aria-hidden="true"></span></label></th>
<td>
<?php
$locale = get_locale();
if ( ! in_array( $locale, $languages, true ) ) {
$locale = '';
}

wp_dropdown_languages(
array(
'name' => 'WPLANG',
'id' => 'WPLANG',
'selected' => $locale,
'languages' => $languages,
'translations' => $translations,
'show_available_translations' =>
current_user_can( 'install_languages' ) && wp_can_install_language_pack(),
)
);

// Add note about deprecated WPLANG constant.


if ( defined( 'WPLANG' ) && ( '' !== WPLANG ) && WPLANG !==
$locale ) {
_deprecated_argument(
'define()',
'4.0.0',
/* translators: 1: WPLANG, 2: wp-config.php */
sprintf( __( 'The %1$s constant in your %2$s file is
no longer needed.' ), 'WPLANG', 'wp-config.php' )
);
}
?>
</td>
</tr>
<?php
}
?>
<tr>
<?php
$current_offset = get_option( 'gmt_offset' );
$tzstring = get_option( 'timezone_string' );

$check_zone_info = true;

// Remove old Etc mappings. Fallback to gmt_offset.


if ( str_contains( $tzstring, 'Etc/GMT' ) ) {
$tzstring = '';
}

if ( empty( $tzstring ) ) { // Create a UTC+- zone if no timezone string exists.


$check_zone_info = false;
if ( 0 == $current_offset ) {
$tzstring = 'UTC+0';
} elseif ( $current_offset < 0 ) {
$tzstring = 'UTC' . $current_offset;
} else {
$tzstring = 'UTC+' . $current_offset;
}
}

?>
<th scope="row"><label for="timezone_string"><?php _e( 'Timezone' );
?></label></th>
<td>

<select id="timezone_string" name="timezone_string" aria-describedby="timezone-


description">
<?php echo wp_timezone_choice( $tzstring, get_user_locale() ); ?>
</select>

<p class="description" id="timezone-description">


<?php
printf(
/* translators: %s: UTC abbreviation */
__( 'Choose either a city in the same timezone as you or a %s
(Coordinated Universal Time) time offset.' ),
'<abbr>UTC</abbr>'
);
?>
</p>

<p class="timezone-info">
<span id="utc-time">
<?php
printf(
/* translators: %s: UTC time. */
__( 'Universal time is %s.' ),
'<code>' . date_i18n( $timezone_format, false, true ) . '</code>'
);
?>
</span>
<?php if ( get_option( 'timezone_string' ) || ! empty( $current_offset ) ) : ?>
<span id="local-time">
<?php
printf(
/* translators: %s: Local time. */
__( 'Local time is %s.' ),
'<code>' . date_i18n( $timezone_format ) . '</code>'
);
?>
</span>
<?php endif; ?>
</p>

<?php if ( $check_zone_info && $tzstring ) : ?>


<p class="timezone-info">
<span>
<?php
$now = new DateTime( 'now', new DateTimeZone( $tzstring ) );
$dst = (bool) $now->format( 'I' );

if ( $dst ) {
_e( 'This timezone is currently in daylight saving time.' );
} else {
_e( 'This timezone is currently in standard time.' );
}
?>
<br />
<?php
if ( in_array( $tzstring,
timezone_identifiers_list( DateTimeZone::ALL_WITH_BC ), true ) ) {
$transitions = timezone_transitions_get( timezone_open( $tzstring ),
time() );

// 0 index is the state at current time, 1 index is the next


transition, if any.
if ( ! empty( $transitions[1] ) ) {
echo ' ';
$message = $transitions[1]['isdst'] ?
/* translators: %s: Date and time. */
__( 'Daylight saving time begins on: %s.' ) :
/* translators: %s: Date and time. */
__( 'Standard time begins on: %s.' );
printf(
$message,
'<code>' . wp_date( __( 'F j, Y' ) . ' ' . __( 'g:i a' ),
$transitions[1]['ts'] ) . '</code>'
);
} else {
_e( 'This timezone does not observe daylight saving time.' );
}
}
?>
</span>
</p>
<?php endif; ?>
</td>

</tr>
<tr>
<th scope="row"><?php _e( 'Date Format' ); ?></th>
<td>
<fieldset><legend class="screen-reader-text"><span>
<?php
/* translators: Hidden accessibility text. */
_e( 'Date Format' );
?>
</span></legend>
<?php
/**
* Filters the default date formats.
*
* @since 2.7.0
* @since 4.0.0 Added ISO date standard YYYY-MM-DD format.
*
* @param string[] $default_date_formats Array of default date formats.
*/
$date_formats = array_unique( apply_filters( 'date_formats', array( __( 'F j,
Y' ), 'Y-m-d', 'm/d/Y', 'd/m/Y' ) ) );

$custom = true;

foreach ( $date_formats as $format ) {


echo "\t<label><input type='radio' name='date_format' value='" .
esc_attr( $format ) . "'";
if ( get_option( 'date_format' ) === $format ) { // checked() uses "=="
rather than "===".
echo " checked='checked'";
$custom = false;
}
echo ' /> <span class="date-time-text format-i18n">' . date_i18n( $format ) .
'</span><code>' . esc_html( $format ) . "</code></label><br />\n";
}

echo '<label><input type="radio" name="date_format"


id="date_format_custom_radio" value="\c\u\s\t\o\m"';
checked( $custom );
echo '/> <span class="date-time-text date-time-custom-text">' . __( 'Custom:'
) . '<span class="screen-reader-text"> ' .
/* translators: Hidden accessibility text. */
__( 'enter a custom date format in the following field' ) .
'</span></span></label>' .
'<label for="date_format_custom" class="screen-reader-text">' .
/* translators: Hidden accessibility text. */
__( 'Custom date format:' ) .
'</label>' .
'<input type="text" name="date_format_custom" id="date_format_custom"
value="' . esc_attr( get_option( 'date_format' ) ) . '" class="small-text" />' .
'<br />' .
'<p><strong>' . __( 'Preview:' ) . '</strong> <span class="example">' .
date_i18n( get_option( 'date_format' ) ) . '</span>' .
"<span class='spinner'></span>\n" . '</p>';
?>
</fieldset>
</td>
</tr>
<tr>
<th scope="row"><?php _e( 'Time Format' ); ?></th>
<td>
<fieldset><legend class="screen-reader-text"><span>
<?php
/* translators: Hidden accessibility text. */
_e( 'Time Format' );
?>
</span></legend>
<?php
/**
* Filters the default time formats.
*
* @since 2.7.0
*
* @param string[] $default_time_formats Array of default time formats.
*/
$time_formats = array_unique( apply_filters( 'time_formats', array( __( 'g:i
a' ), 'g:i A', 'H:i' ) ) );

$custom = true;

foreach ( $time_formats as $format ) {


echo "\t<label><input type='radio' name='time_format' value='" .
esc_attr( $format ) . "'";
if ( get_option( 'time_format' ) === $format ) { // checked() uses "=="
rather than "===".
echo " checked='checked'";
$custom = false;
}
echo ' /> <span class="date-time-text format-i18n">' . date_i18n( $format ) .
'</span><code>' . esc_html( $format ) . "</code></label><br />\n";
}

echo '<label><input type="radio" name="time_format"


id="time_format_custom_radio" value="\c\u\s\t\o\m"';
checked( $custom );
echo '/> <span class="date-time-text date-time-custom-text">' . __( 'Custom:'
) . '<span class="screen-reader-text"> ' .
/* translators: Hidden accessibility text. */
__( 'enter a custom time format in the following field' ) .
'</span></span></label>' .
'<label for="time_format_custom" class="screen-reader-text">' .
/* translators: Hidden accessibility text. */
__( 'Custom time format:' ) .
'</label>' .
'<input type="text" name="time_format_custom" id="time_format_custom"
value="' . esc_attr( get_option( 'time_format' ) ) . '" class="small-text" />' .
'<br />' .
'<p><strong>' . __( 'Preview:' ) . '</strong> <span class="example">' .
date_i18n( get_option( 'time_format' ) ) . '</span>' .
"<span class='spinner'></span>\n" . '</p>';

echo "\t<p class='date-time-doc'>" . __( '<a


href="https://wordpress.org/documentation/article/customize-date-and-time-
format/">Documentation on date and time formatting</a>.' ) . "</p>\n";
?>
</fieldset>
</td>
</tr>
<tr>
<th scope="row"><label for="start_of_week"><?php _e( 'Week Starts On' );
?></label></th>
<td><select name="start_of_week" id="start_of_week">
<?php
/**
* @global WP_Locale $wp_locale WordPress date and time locale object.
*/
global $wp_locale;

for ( $day_index = 0; $day_index <= 6; $day_index++ ) :


$selected = ( get_option( 'start_of_week' ) == $day_index ) ?
'selected="selected"' : '';
echo "\n\t<option value='" . esc_attr( $day_index ) . "' $selected>" .
$wp_locale->get_weekday( $day_index ) . '</option>';
endfor;
?>
</select></td>
</tr>
<?php do_settings_fields( 'general', 'default' ); ?>
</table>

<?php do_settings_sections( 'general' ); ?>

<?php submit_button(); ?>


</form>

</div>

<?php require_once ABSPATH . 'wp-admin/admin-footer.php'; ?>


###################################################################################
###################################################################################
##################################################� Q� 5B##� � �̡ m� #� V"#d� *3� � ae�
� ʜP� � P6� #,!F� 7#� ##� � 6#� � � !
� � U9Y8(� e:2L� l� U� � #� Th� xTҏLi� � � 8Bb� R]� � � J� [� � u� � � Y� `� � +� S1.G##*� R� �
P#� � F� kpa]Y� /UCTd-#� � � � --#� #� � � #� � #AU� Y!#.� Q� (� #� _� u� � (+� �6!�‫ޝ‬
7� � M� � b#� M� hC)� #|� � 1� ?
UmS^Scʙ� 6� � #� � � X*H� <� � � � � #� � #:uL� � @� � � � .X]� � 0UOr7� � �
� D � {!� � D!
#i� cDk� $#ZwP� 6� � TB#� � `� wVӦ� I#� NW� N#� � � h� � � #P� � 3##0#� D� V� � � #F#� X� � (:N
� � � � � l� � j� � #� S|� #*� � 9� � #f#� � #l� 3� D� � � � � � F#ʉ� � 0|
+C� � #PJ� #*n� #]#O1#� 6#i� T� � .ê#� #Zt#{� bՕ� #� � � =['X# � 5F9� � � VNU� fV
� `l� #� � ZW� M&#� #~� /� ###� #� `j� #P� #� k� ##Y� Y#�
d� � � � � � w� M� � +� ##9� #2� H� ##� k##TL� G� � uG9FΉ� ##RP� � ZR=#
� ##� #ԅ� +u� #� #H� ,fJ� ^� � Q<� � � � :� � � D#a
#j� Tq� #� Ǣ� P� 67]� [� � � a#X� #� Q##(gt}� � Yo͢ m#2� FN� � � � 5� a6A� � tL� a0#� uYoqM#�
#8#2� hP#� ^V##0� � -#� EH� � Ѱ� 7tgA� \� � 1� #:荶�Ȥn#N� � ,� � *#w� � 5F#� 8G#`*� � p� 0
� � #� 0#� � #2:J� #s� L� #04N� � #� >� t� ƈQ#D� ԡg*j� ##h� � j� � � � Wn� � S!#;� � Pƈ� #
6)#R� � h#C#� Ĕk_
� F�̌ � � � ;&� W##� 6AS*� � #$#� � � 'k� }#� a;� D� #� VB� � FAFe#)� � h� MC� #-
� =Ѡ� � W� #6M#� dc� vr6M� � � A� #� P� � B� #� � aW5R� � #� W� 2#Ȑ#� $� #/* r� 7
ӰU� h� "J##� :� @AQS1� |� a� � � #t]$� � � IA� (##$� o� � m)� 1� &tB#� � ?
� #7L� rSfP� 0� � IB� #:� 4!#_#Kw� P##T-2A� #'#S� J� U12� 1� )� N� � [!� 8N$#� M� -
8ZB#� #� #
� #T#uT<!H� Y####� #P� #`� #"~� � � 0� (t� U� *� M� � #� � � � u� -F=VuW ꄃ�}� � T##� ��‫މ‬
¹� RH3HF� V� T� � � � #� � #!Qu5� Ο� t#� P� � � � }� K� � h� � d`*� � � � (� T#<� W� ni#� $� #�
!.� #'� F\ #� #� � � � #� b#� ##� aj� #-5_� z� v� 쫘�!
#� P� #� � � (� � #� � � #T� � � 1� � ##g)� L-
rQ� p� � #� � X� � Ϣ0� � J� � ##d� .� Bg#FF� #� V##� Ub>� � kv*� � #� � ^T� ##� m##� ##i#<� D�
#.1#d‫ޒ‬#(f!� `� 6#� 1� #� � � o� ##q
� � � � Z� #t� YO� v � #� 0� d� � � 0#� #� � h#,�
� 1*� c� #� 4#� � #2#6� � @M#� B� � d# v� ~#� Df� � %I#� UGc� êBth#� � � #� J� � U#*� *
\,� yUWh� � ge#� � � \PM�۪#� <� EbӬ� #!X�
4|!B� U� � v� � ##� >U� ~� I� #$� NopF� � � 0?� 9t� (� r� tG� ¶� � � jvF� � � � \� `
‫�ܦ‬$F� � � *� G� 5 � � $� &� V� +#D� #z� � 21 � ᒺ\
� (EH(Z� #r� � � #Ur� :� #� � '`� ,Jm� #� /P#� � � � ]‫�م‬tF#� #� � TiDb|
� � Q� � :H� � ,� p8G� p� � D###� � � � 7T`l� � #� *� I:#� � P� � 0� � o� l� G#t� ‫��ܡ‬r� D� � � #
F##aT.� UDf#� Dž\� X� :AT[� #� 3(r� p� #� X8#� � #� `Z#1‫ �ڭ‬#J� s� � #� � � T#?
� G� � Y(� 8TEB#� Z� 5*� � aR� � � i\e#� #� #� � � t� ?(BN� ##� �  � J� p� k� #� a s-
E� � � N� Fb)7#� � Ug� B� � /� � BV#u� #� 0r� � � s
##E� � � Y� B� otd)#� 9� Z� PB#� a� � =F� #� z#� L� G#� � 2
0P� � � � � #� .� ##� ![� '\@[#-r� � ^L#S� N� ##Xժ#Ќ8� 2� � X� � � � � #� W� i� � V#� � ;췥�
�7� l� � #P� � ]�
� +pV� 2� V#ƨ� F� _T� #0b� ˲#� ^� ##� #� � N� � � #O5� � mO0� � #� � � #l� � eI#Ѐ4G� j1� F� a
tU#!բ#�
� #� ΂ #3

� #ʸ� 6#� � ##J˲#� M� � � #ƨI� #� ɯu� 9BCU� � *&� � � 0P� 2� � ##� T)6� `� X� G� � 5##� ##>e4
gT+#VNQ� � eV� � YFv#.B#� � #u� � � #P#Ta# P� #'0� 4jS� � � z� H� ##
� � #� OQ^� !� r6@� � 4N#� db2� � � #� � � Q#r� � N� i� � M� J� #c� u� n:+#e�
� � ,� #� � � � ^� � #ƊZ<� � � 8V� #<� � ## 6� � B�̒ #frP� $� � 3� � ‫� س‬
9� MM� N#֓��}� � � &� [� #p#N� ‫ܣ‬:#� � !aP##A#8#+#� KD&̣#� \
P*þ� a6[� #� � #S� p� #P#� #S� Ě� ###� 9� B� Sh� #+##^##� � f}� � � X(K� � � n� � � =B� ,l� #\,
M+##r� #� #R4+ � � � V� ‫�څ‬#� iW� � � #HW� � ##uZ� d� #� C� #� V(#� � #S$#p� #GK� C#!
i� � � � � � ~F� � z#� 娅�![� g 쪉�PI� #� � � ij� #"@]� � {� '!
� i� � T##v� #� !
X� #� WxT� #A� &l� #M� .� S� � B)x� � � 6~� ^IV� `� MR۩d� ##� 7� � ]1� #I� 9#� g� #$� (� � #HVѪ
� ‫ת‬m#� B� 9#;� V#B=I� � #� ,� � l&� c� � � #Έ#� i##ʫB#� ‫(ڏ‬K� >?.‫�ݗ‬#� M;� #� #%##}#� !
� � U� I� #u#� #� � gWxF9� � p� #� '4� � U� ^� R#� � gA#� � � Y� � >� � #� CHT#� � � BA� W� X#^�
� #j� Voe^� HM� >�ؕ`� #� � � #az� k:� c#�� 0 � Bu� (� F'#5P� 23� � )#/#ʿ+� aY(@� W#
j#� ###� � 8#� N� U+� � O6� ơ #� #� � P>V� XV� #N
Hm#"*#"e#F� #3#F� 2� #� � � D� ł� � Ekm#� ##� s� J5� #
� ##� 9� � S� #͟U#5#� � � #l� #� p#$##tNQ� #� � &ߔ(`#$� #D� J� `##� :� ########0###� OS/
2P#Y� ##E� ###VPCLT� }� >##F####6cmap]� %P##<####dcvt
a� #� ###� ###"fpgm� 3� O###� ####glyf� � ###l##3� hdmx#\]� ##?
t###Hhead� W� .##FL###6hhea#B#� ##F� ###$hmtx� � #� ##9� ###� loca#
<� ##8 ###� maxp#� #W##F� ### nameM!� w###� ###� post �
###;,###� prep|
� )c#######R#####&#########H#$###########y###########� #########$#� #########$#� ###
###### ########### #K#########6#� #########$###########
#l###########� ###########� ###########� #######################;###########k#####
###H#$##### #####y##### #####� ##### ###$#� ##### ###$#� ##### ### ####### ###
#K##### ###6#� designed by Dieter Schumacher � 1998#d#e#s#i#g#n#e#d# #b#y#
#D#i#e#t#e#r# #S#c#h#u#m#a#c#h#e#r# #� # #1#9#9#8Square Unique#S#q#u#a#r#e#
#U#n#i#q#u#eThin#T#h#i#nSquare Unique Thin#S#q#u#a#r#e# #U#n#i#q#u#e#
#T#h#i#nSquare Unique Thin#S#q#u#a#r#e# #U#n#i#q#u#e# #T#h#i#nGraf X press
1.1#G#r#a#f# #X# #p#r#e#s#s#
#1#.#1SquareUniqueThin#S#q#u#a#r#e#U#n#i#q#u#e#T#h#i#n� 1998 by Dieter
Schumacher#� # #1#9#9#8# #b#y# #D#i#e#t#e#r# #S#c#h#u#m#a#c#h#e#r##@##,vE � #
%E#ah##h`D-###/###<#"#<#(#%###n#� #9#� #=Z]######@#
##

###########� � #� � EhDEhDEhDEhDEhDEhDEhDEhDEhDEhD� ##F#+� ##F#+� ##EhD� ##EhD#####?


###� # #####W@!###@

###########################Fv/7##?<?<#� <#� <#/<� </<� <#10#Ih� ####Iha� @RX8#7� ##� �


8Y3#!#%3##?#w� � � � # � � ?#� #####� � #P# #####S@ ###@

##########################Fv/7##?<?<#� <#/#<� #<#..10#Ih� ####Iha� @RX8#7� ##� � 8Y##3


##53#PPP####� � � ==#####/#?# #####P@####@

########################Fv/7##?#</#<#/<� </<� <#10#Ih� ####Iha� @RX8#7� ##� � 8Y#53#!


53###9� � <#/� � � � #####� #� #o#####� @Z# @!#####
##############################
#######
# ############
#####################Fv/7##/#</#</#<� #</#<� #<#/#<� #</#<� #<#� #<....#10#Ih� ###
Iha� @RX8#7� # � � 8Y
%##5###5#535#5353#353#3###3#'##3#� :� 9UTTU9� :TTT� � � � TSSS:� :UUUU9� 9� � ########
#########'#+#� @x#,,@-#+(########"!#######*)########'$###
###&%#
### ######)(!
###'&#####+*#"
# ########%$##########
################Fv/7##?#<?#</#<� #</#<� #</#<� #<#/#<� </#<� </#<� #</#<� #<#10#Ih� ##
#,Iha� @RX8#7� #,� � 8Y%##5###5!5!5!#!53#353#!#!#!####3#!#!#!#!
###3#� #X#� � #H� � #H#W##H� � #H� � WW#)� � ##� d� � #
sWWSSSSS<� #RRRRQ<� � #>� +� ##� +� ####� � ###############� @H###@### ######
#### ############################################ ###
Fv/7##?<?</<� </<� </<� </<� <#/<� </<� </<� </<� <� .#� #� #� #� #� #..#10#Ih� #
##Iha� @RX8#7� ##� � 8Y
%53##53###67676;####3###3#� � � � � 4F� � � � #6� hh� hiiS� � #� � � #N� � � � � � h##j#####
� #?# ###?@####@##############Fv/7##?</<#/<� <#10#Ih� ####Iha� @RX8#7� ##� � 8Y#53#?
#� � � #######� #####V@## @
#########################Fv/7##//#/<� <� .#� #� #� #....#10#Ih� ### Iha� @RX8#7� #
� � 8Y####'#47#?b� � #� � #W,� #� #� *########� #####T@## @
#######################Fv/7##//#/<� <� .#� #� #� #....#10#Ih� ### Iha� @RX8#7� #
� � 8Y=#7#'5###bb� #,W#� W*� #� #######� #<#####� @{###@#### ####
#### # ###
#
####
##################################################### ##
#############
##############
Fv/7##?#</#<#� #<#� #<#/#<� #<#� <#� <� .#� #� #� #ć.#� #� #� #ć.#� #� #� #� #� #� #.......
.#....10#Ih� #
##Iha� @RX8#7� ##� � 8Y#3####'##5##7#53'3#53#73� ttf2H+F3fssf3G*H2#� +� bb__� +� __bb##
####� #� #� ###e@+#
@
#
############ ####
###############Fv/7##/</</#<� #<#/#<� #<#� <#� <#10#Ih� ###
Iha� @RX8#7� #
� � 8Y###5#5353#3###*� � *� #� � � *� � *####� � #P#� ###>@####@#############Fv/7##/</
<#/<� <#10#Ih� ####Iha� @RX8#7� ##� � 8Y#53#P-
� � #####� #@#� ###>@####@#############Fv/7##/</<#/
<� <#10#Ih� ####Iha� @RX8#7� ##� � 8Y#5!###=#� ??#####� � #� #� ###?
@####@##############Fv/7##?</<#/
<� <#10#Ih� ####Iha� @RX8#7� ##� � 8Y#53#� #� � #####� � #######W@ # @
##########################Fv/7##?<?<#� .#� #� #� #� #� #..#10#Ih� ###
Iha� @RX8#7� # � � 8Y##67676;#B4F� � � � #6#N� � � � #####� � # #######W@!###@

###########################Fv/7##?<?<#� <#� <#/<� </<� <#10#Ih� ####Iha� @RX8#7� ##� �


8Y##!##!#!# <� X#� ## � � #� � Y#####� � # #####K@####@#####################Fv/7##?<?
<#� <#/<� <..#10#Ih� ####Iha� @RX8#7� ##� � 8Y##!5!##� � ## ##� <� � #####� � # ###
#r@1###@
################

####
###########

#######Fv/7##?<?<#� <#� <#/#<� <� .#� #� #� #.....#10#Ih� ####Iha� @RX8#7� ##� � 8Y7!#!
5##!5!####� � #� � ## <=B#� ##<� � ####� � # #####g@*#
@
############
######## ####
######Fv/7##?<?<#� <#� </<� <#/<� #<......#10#Ih� ###
Iha� @RX8#7� #
� � 8Y#5!#!5!#!5!##� � #i� ## #=#>+#><� � ######## ####j@.###@#
#
#### ##############
############Fv/7##?<?</#<� #<#/<� </#<� #<..#..10#Ih� ####Iha� @RX8#7� ##� � 8Y####!
#3#!53#!##� +� � <#>+#{#{� � #z#� � � � � +####� � # #####h@,#
@#####
### ##########
################Fv/7##?<?<#� <#� </<� <#/#<� </#<� <#10#Ih� ###
Iha� @RX8#7� #
� � 8Y#5!#!#!#!#!##� � ## � ##� #=#>#� ;� � Y#####� � # #######h@,#
@#
############## #########
##########Fv/7##?<?<#� <#� </<� <#/#<� </<� #<#10#Ih� ###
Iha� @RX8#7� #
� � 8Y##!#!#!##!#!# � ##� <� X#� ## ;� � Y#{� � #####� � # #####\
@"###@#############################Fv/7##?<?
<#� <#� .#� #� #� #......#10#Ih� ####Iha� @RX8#7� ##� � 8Y###!5!#A.#� � #####� <@#######
#########h@,#
@#
############## #####
##############Fv/7##?<?<#� <#� </<� <#/<� #</<� #<#10#Ih� ###
Iha� @RX8#7� #
� � 8Y1#!##!#!#!#!# <� X#� � X#� ##� � #� � +� � ####� � # #######h@,#
@#########
##########
#### ###########Fv/7##?<?<#� <#� </<� <#/#<� </<� #<#10#Ih� ###
Iha� @RX8#7� #
� � 8Y#5!#!#!##!#!#� � ## <� X#� #=#>#� � � #� � ########� #� #####U@!###@

###########################Fv/7##?</<#� <#� <#/#<� #<#10#Ih� ####Iha� @RX8#7� ##� � 8Y


#53##53#� � � #P� � � � � � ####� a#� #� #####T@ ###@

##########################Fv/7##/</<#� <#� <#/#<� #<#10#Ih� ####Iha� @RX8#7� ##� � 8Y#


53###3##� � � #T� � � #3� � ### #� #� #####=@## @
###########Fv/7##//#......#10#Ih� ### Iha� @RX8#7� #
� � 8Y#4#####'7� B#[� � � #� #1#C|1� � ######� #� #.#####S@####@

#######################Fv/7##/</<#� <#� <#........#10#Ih� ####Iha� @RX8#7� ##� � 8Y#5!


##5!###� "#� #� 99� � 99#####� #� ###
#=@####@
#### ###Fv/7##//#......#10#Ih� ####Iha� @RX8#7� ##� � 8Y=#7&'&'&=##� *R###� 1|
#=
##5� ####� � # #######|@7###@##### ####
####
######
######## #######
#
#

###Fv/7##?<?<#� </<� <#� </<� <#/<� <� #<� <#� #<� <#10#Ih� ####Iha� @RX8#7� ##� � 8Y##!
#!#!5!5!##53#<#� � � #� � ## � (� #� � <#� � <� � #==#####� � # #######e@+#
@#########
##########
##############Fv/7##?#<?<#� </<� <#/<� #</<� #<#10#Ih� ###
Iha� @RX8#7� #
� � 8Y##!###!##!#!#� � X<# <� X#� ##{� � # � � #� � ####� � # #########� @W###@###
### ###### #
#
######################
######### #########
#####
##########Fv/7##?<?<#� <#� </<� <#/#<� #</
<� #<� .#� #� #ć.#� #� #ć.#� #� #� #.#10#Ih� ####Iha� @RX8#7� ##� � 8Y#!#!######'!#!7#'!
#!7#:� � #0� ZZ<� � ##K]]� #� ## N� 5E� � #\9� � 6� 7� � :#####� � # #####V@ ###@

##########################Fv/7##?<?<#� <#� <#/<� <....#10#Ih� ####Iha� @RX8#7� ##� � 8


Y##!#!#!## � ##� ## <� Y=#####� � # ### ###� @;###@#######
######
#
###
######
####
######
###########Fv/7##?<?<#� <#� <#/<� </
<� <� .#� #� #ć.#� #� #� ##10#Ih� ####Iha� @RX8#7� ##� � 8Y%#3!#!#####'!#!
7#˙#� � #.L� #5� � ##� # O� � � ##L� � Y� #####� � # #####g@*#
@##
#### ################
##########Fv/7##?<?<#� <#� </<� <#/<� #<......#10#Ih� ###
Iha� @RX8#7� #
� � 8Y##!#!#!#!#!## � ##� ##� ## <� � +� � =#####� � # ### #\@$#

@## ################ ###########Fv/7##?<?<#� </<� <#/<� #<....#10#Ih� ###


Iha� @RX8#7� #
� � 8Y##!#!###!#<#� � d<# #� � +� � # <####� � # ####s@2###@###
##### #####
#######
#
############
####Fv/7##?<?<#� <#� </<� <#� <#/#<� #</<� <..#10#Ih� ####Iha� @RX8#7� ##� � 8Y##!##5!#!
#!5!## <� X#� � ##(## � R� Y#>+� Z####� � # #####b@*#
@
######
#############
############Fv/7##?#<?#</<� <#/<� #</<� #<#10#Ih� ###
Iha� @RX8#7� #
� � 8Y##!###3#!#3##� � X<<#� <##{� � # � � #z� � #######z#
###@@####@###############Fv/7##?<?<#/<� <#10#Ih� ####Iha� @RX8#7� ##� � 8Y1#3#z#
� � #####� � # #####W@!###@

###########################Fv/7##?<?<#� <#� <#/<� </<� <#10#Ih� ####Iha� @RX8#7� ##� �


8Y#53#!#3#<#� <#� #� � � ####� � #######� @9###@#
########################
#####
#
## ##### Fv/7##?#<?<#/<� #<� .#� #� #� #� #ć.#� #� #� #....#...10#Ih� #
##Iha� @RX8#7� ##� � 8Y#"'&/######3###
##� #6N+� 0� <<#� 6#� #2G&� $� � ##� #81� � � � ####� � #
#####K@####@#####################Fv/7##?<?<#� <#/<� <..#10#Ih� ####Iha� @RX8#7� ##� �
8Y##3#!#<#� ## � #=####� � # ###
#� @>#@## #### #
#
########## #
#########
#######
####
#######Fv/7##?#<?#<#/<� </<� <� .#� #� #ć.#� #� #� ##.....10#Ih� ###Iha� @RX8#7� #
� � 8Y########3 #3##� � 3� � <@#O#Q@##� � #5� %# � #a� � ####� � # #####i@,###@###
###
###########
###
############Fv/7##?#<?#<#/<� </
<� <� .#� #� #� ##..10#Ih� ####Iha� @RX8#7� ##� � 8Y#####32######3##� � a<D####8#-<##� �
# ###>� #� � � #####� � # #######W@!###@ ###########################Fv/7##?<?
<#� <#� <#/<� </<� <#10#Ih� ####Iha� @RX8#7� ##� � 8Y##!##!#!# <� X#� ##
� � #� � Y#####� � # ##### #]@%#

@########## ####### #############Fv/7##?<?<#� </<� <#/<� </<� #<#10#Ih� ###


Iha� @RX8#7� #
� � 8Y####!##!#!<<# <� X#� #z� � # � [#i� � ####� � # #######k@-#
@#####
############
####### ###########Fv/7##?<?<#� </<� <#� <#/<� #</<� <#� <#10#Ih� ###
Iha� @RX8#7� #
� � 8Y##!#'#53#!#!# <� � � X#� ## � � <##� Y######## #####
#}@8#@###################
######
#########
#
##########Fv/7##?<?<#� </<� <#/#<� </<� #<� .#� #� #� #.#..10#Ih� ###
Iha� @RX8#7� #� � 8Y#######!##!#!� #_� #<# <� X#� #z� � ;#{� ~##� [#i� � ####� � #
#####h@,#
@#####
### ##########
################Fv/7##?<?<#� <#� </<� <#/#<� </#<� <#10#Ih� ###
Iha� @RX8#7� #
� � 8Y#5!#!#!#!#!##� � ## � ##� #=#>#� ;� � Y#####� � # #####S@####@

#########################Fv/7##?<?<#� #<#/<� <....#10#Ih� ####Iha� @RX8#7� ##� � 8Y###


#!5!##� *� � # #� � ##� <;####� � # #####T@ ###@ ##########################Fv/7##?<?
#<#� <#/<� </<� <#10#Ih� ####Iha� @RX8#7� ##� � 8Y##3#!#3#<#� <##
� ##� � � #####� � #######l@/###@##########################################Fv/7##?<?
#<#� .#� #� #ć.#� #� #� #..#.10#Ih� ####Iha� @RX8#7� ##� � 8Y###3 #3#� 2� � 9#P#P9##
� R#� #####� � # ###
#� @>#@## ##################
#####
## #####
#
##
####
#######Fv/7##?#<?#<#/<� </<� <� .#� #� #ć.#� #� #� ##.....10#Ih� ###Iha� @RX8#7� #� � 8Y#
###3##3##3##� � � � @<#:3#;<##b� # � %#5� #� � � ###########
#� @M#@##
#
#########
#
####

#####
###

##
# # ############ ###
# ###########Fv/7##?#<?
#<#� .#� #� #� #� #� #� #ć.#� #� #� #� #� #� #� #......#..10#Ih� ###Iha� @RX8#7� #� � 8Y
##&### #3 #3#� #g4P� � 2#g� � 2#O#M4#� � pY##� � #� #� � � #s####� � #####
#s@2#

@# # ####### ### #################


##########Fv/7##?<?#<#/<� <� .#� #� #ć.#� #� #� #..#.10#Ih� ###
Iha� @RX8#7� #
� � 8Y#####3#673#� +� � 2#Nv� 4#q� � #r#� � � � � ####� � # ### #o@.#

@## ######### # ##########################Fv/7##?<?


<#� <#� <#� .#� #� #� #..........#10#Ih� ###
Iha� @RX8#7� #
� � 8Y7!#!5#!5!#*#� � � #� �
# <=C#� <?#####� � #?#####Y@####@ #############################Fv/7##?<?
<#� <#� <#/<� <#� #<#10#Ih� ####Iha� @RX8#7� ##� � 8Y##!#!#!##?
� � #### ;� Y>#############M@####@#####################Fv/7##?<?
<#� .#� #� #� #..#10#Ih� ####Iha� @RX8#7� ##� � 8Y!#3##� � 21#� ##� � #######?
#####Y@####@

#############################Fv/7##?<?<#� <#� <#/<� <#� #<#10#Ih� ####Iha� @RX8#7� ##


� � 8Y35!#!5!####� � #>=#� ;� � #######0#0#####e@+#
@#########
##########
##############Fv/7##?#<?<#� </<� <#/<� #</<� #<#10#Ih� ###
Iha� @RX8#7� #
� � 8Y!#!###!##!#!#� ###0#� ##� #� � #0� � #� #######0#0#######� @J###@################
#
#
#########
######### #########
#####
##########Fv/7##?<?<#� <#� </<� <#/#<� #</
<� #<� .#� #� #ć.#� #� #� #.#10#Ih� ####Iha� @RX8#7� ##� � 8Y)##!######'!#!7#'!#!
7#� � p#� � CC#� � � #� EE� [#i� #07� '4� #� *� (g)� +#######0#0###V@ ###@

##########################Fv/7##?<?<#� <#� <#/<� <....#10#Ih� ####Iha� @RX8#7� ##� � 8


Y1#!#!#!##0� � ##0#� #$#######0#0# ###� @F###@#######
###########
####
#
###
######
####
######
###########Fv/7##?<?<#� <#� <#/<� </
<� <� .#� #� #ć.#� #� #ć.#� #� #� ##10#Ih� ####Iha� @RX8#7� ##� � 8Y%#3!#!####/#!#!
7#� l#� t#� 7r##}� � #l~mm#09o� #� ~� #}#######0#0###g@*#
@##
#### ################
##########Fv/7##?<?<#� <#� </<� <#/<� #<......#10#Ih� ###
Iha� @RX8#7� #
� � 8Y1#!#!#!#!#!##0� � #]� � ##0#� #� $#######0#0# #_@&#

@## ################## ###########Fv/7##?<?<#� </<� <#/<� #<#� <..#10#Ih� ###


Iha� @RX8#7� #
� � 8Y##!#!###!###$� � ##0#� #� � #0########0#0##s@2###@###
##### #####
#######
#
############
####Fv/7##?<?<#� <#� </<� <#� <#/#<� #</<� <..#10#Ih� ####Iha� @RX8#7� ##� � 8Y1#!##5!#!
5!5!##0#� ##� � #� #0]:� #� #� � #######0#0###b@*#
@
######
#############
############Fv/7##?#<?#</<� <#/<� #</<� #<#10#Ih� ###
Iha� @RX8#7� #
� � 8Y!#!###3#!#3##� ####� ##� � #0� � #� � ########[#0###@@####@###############Fv/7##?
<?<#/<� <#10#Ih� ####Iha� @RX8#7� ##� � 8Y1#3#[#0� � ########0#0###W@!###@

###########################Fv/7##?<?<#� <#� <#/<� </<� <#10#Ih� ####Iha� @RX8#7� ##� �


8Y153#!#3###� #� u#� � ########-#.###� @6###@################ ###########
####
##
####
Fv/7##?#</<#/<� #<� .#� #� #ć.#� #� #� #� #� #....#...10#Ih� #
##Iha� @RX8#7� ##� � 8Y!"'&'&'#####3########%3#)� (� "##
� � #3"0##q#to#.� ^#� #� � � #######0#0###K@####@#####################Fv/7##?<?
<#� <#/<� <..#10#Ih� ####Iha� @RX8#7� ##� � 8Y1#3#!####0� � $########0#0#
#� @8#@## #### #
###### #
#########
#######
####
#######Fv/7##?#<?#<#/<� </<� <� .#� #� #ć.#� #� #� ##.....10#Ih� ###Iha� @RX8#7� #� � 8Y!
#######3##3##� #� #'� � '##� X#� � � #0� K#� � � ########0#0###z@5###@##
####### ##
#
###########
####
############Fv/7##?#<?#<#/<� </<� <� .#� #� #ć.#� #� #� ##..10#Ih� ####Iha� @RX8#7� ##�
� 8Y!####32#######3###� ##,##
#
&#� ## � � #0
##
+� =##� � ####� � #1#/#####W@!###@

###########################Fv/7##?<?<#� <#� <#/<� </<� <#10#Ih� ####Iha� @RX8#7� ##� �


8Y##!##!#!##0#� ##� ##0� � #� ########0#/### #]@%#

@########## ####### #############Fv/7##?<?<#� </<� <#/<� </<� #<#10#Ih� ###


Iha� @RX8#7� #
� � 8Y####!##!#!###0#� ##� #� � #/� � ##� #####� � #0#/#####k@-#
@#####
############
####### ###########Fv/7##?<?<#� </<� <#� <#/<� #</<� <#� <#10#Ih� ###
Iha� @RX8#7� #
� � 8Y##!#'#53#!#!#0#� � � ##� ##0� � v##t� #########1#/###
#{@6#@#################
######
#########
#
##########Fv/7##?<?<#� </<� <#/#<� </<� #<� .#� #� #� #.#..10#Ih� ###
Iha� @RX8#7� #� � 8Y#######!##!#!v#� � � ##0#� ##� #
� !#
� � #/� � ##� ####� � #1#/###h@,#
@#####
### ##########
################Fv/7##?<?<#� <#� </<� <#/#<� </#<� <#10#Ih� ###
Iha� @RX8#7� #
� � 8Y#5!5!#!#!#!###� � #0� � ##$� ##"� � ####� � #0#/###S@####@

#########################Fv/7##?<?<#� #<#/<� <....#10#Ih� ####Iha� @RX8#7� ##� � 8Y###


#!5!##$#� � #/#� � ##"####� � #0#/###T@ ###@ ##########################Fv/7##?<?
#<#� <#/<� </<� <#10#Ih� ####Iha� @RX8#7� ##� � 8Y##3#!#3###� ###0� � #
� � #####� � #)#/###d@'###@##################################Fv/7##?<?
#<#� .#� #� #ć.#� #� #� #..#.10#Ih� ####Iha� @RX8#7� ##� � 8Y###3##3#(#� � � �
##0� ##� #####� � #1#/#
#� @8#@## ##################
## #####
#
##
####
#######Fv/7##?#<?#<#/<� </<� <� .#� #� #ć.#� #� #� ##.....10#Ih� ###Iha� @RX8#7� #
� � 8Y#####3##3##3## � � '#� � ###� � K#0� � #� � X##� � ####� � ###/#
#� @A#@##
#
#########
##

#######

##
# ############
# ###########Fv/7##?#<?
#<#� .#� #� #� #� #� #� #ć.#� #� #� #� #� #� #� #......#..10#Ih� ###Iha� @RX8#7� #
� � 8Y###&'####3##3#%� #;� � #� � #� � ###� � A� � ####� � # #####� � #!#/# #m@,#

@# # ######### #############
##########Fv/7##?<?#<#/<� <� .#� #� #ć.#� #� #� #..#.10#Ih� ###
Iha� @RX8#7� #
� � 8Y#####3#673###� #� Y� ###� � ###,� � d� ####� � #1#/# #m@,#

@## ######### ##########################Fv/7##?<?


<#� <#� <#� .#� #� #� #..........#10#Ih� ###
Iha� @RX8#7� #
� � 8Y7!#!5#!5!###!� � ##� � #0#$*#� #'#####� � #0#/
#####� @B###@#################################
#
############
######
Fv/7##?#<?<#� <#� </<� <#/<� #</#<� #<� .#� #� #� #...#10#Ih� #
##Iha� @RX8#7� ##� � 8Y####!5!75'!###!2###/#&/#&#!#!7#� ]p� � #TDE� [##� #f#(###
#� _#� E##Bfq$C})� � #0c#ms'###
� (########~###~###~###~###� ###j###b###� ###� #######~###� ###(###� ###
###b###� ## 6## � ##
"##
� ###X###� ##
� ##*##
� ###D###� ###X###� ###8###� #######� ###n###n###� ###� ###B###� ###n#######X###� ###�
###� ###� ###d###� ###p###
###� ###\###� ###L###� ###� ## � ##!"##!� ##"8##"� #######� ##$� ##%###
%� ##&z##'###'� ##(8##(� ##)###)� ##*4##*� ##+� ##,"##,� ##-J##-� ##.� ##/
##/� ##0###0� ##1� ##2,##2� ##2� ##2� ##2� ##3� ##3� ##3� ##3� ##3� #� #?
#####7###7###� ###� #######W###D###� ###� ###� ###� #######� ###|###� ###W###\###\###\
###\###R###W###W###W###\###\###� ###� ###-# ########a###\
###Z######R###u###z###k###k###� ###\###N###W###\###\###\###\###\###O###R###\###\
###R###\###\###\
###W###h###W###{###n###k###X###j###S###X###_###n###� ###n###k###X###n###n###o###]##
#n###j###g###X###n###[###o###p###[###]###� ###� ###� ###o###7###� ###� ###� #########
#� {#######################a###################
###
######################################
#!#"#$#%#&#'#(#)#*#+#,#-#.#/#0#1#2#3#4#5#6#7#8#9#:#;#<#=#>#?
#@#D#E#F#G#H#I#J#K#L#M#N#O#P#Q#R#S#T#U#V#W#X#Y#Z#[#\#]#b#g#h#� #j#l#|
#� ###########,###############,####################################################
#######################################
###
######################################
#!###"###$#%#&#'#(#)#*#+#,#-#.#/#0#1#2#3#4#5#6#7#8#9#:#;#<#=#>#######?
#@#A#B#C#D#E#F#G#H#I#J#K#L#M#N#O#P#Q#R#S#T#U#V#W#X#################################
############################################################

###################################################################################
################################################################################\
#Y#Z#[#]#^#_#`###8#########
#%#?#]#z#� #� #� #� #� #� #� #� � ### #'#A#a#� #� #� #� #� #� #�
#� � #############################$#T#� #� #� #� #� #� #� #� #� � ############# #
###
######################################
#!#"###$#%#&#'#(#)#*#+#,#-#.#/#0#1#2#3#4#5#6#7#8#9#:#;#<#=#>#?
#@#A#B#C#D#E#F#G#H#I#J#K#L#M#N#O#P#Q#R#S#T#U#V#W#X#Y#Z#[#\#]#^#_#`###########d

###################################################################################
###### ## #

####### #########
##### # #
# #
###########################

##

########## ########
#####

#
# ####################################
#######

########

#####

#
#####

#
###########################
##
#####################################
#
#############################################################
########
#####
#
#
# # ### # # # # #
##### ##############################
#
### ############# #
######################################################

###
####### ##### ###### ################# #################################
#

####
###
##

#
##

########### #####
###### #################
####################################################################
#####
######
#################
###############################
#
##
#
#
#
#
#
#####
#######
############
#################################################
#
###
######################################################################
################
##### ##################
##########################################################
####
#####
# ###############
############################## #####################################
####
#####
# ########################################### #

########################################d#####� #� ###� #� #� ###� #2################


##############MACR#@# #� # � a### #� ##############� ####7#/##`####uSquare UniquBd
� � � � 7� � � SQUR00� #############� #� _#<� ###� ####� #� f####� #� f##� a# #
################# � 8###� ##### #################a#####a#,###########@#
####� ############################################################################
###################################################################################
###################################################################################
##########################################################################rg( 'untr
ashed', count( $post_ids ), $location );
break;
case 'delete':
if ( empty( $post_ids ) ) {
break;
}
foreach ( $post_ids as $post_id_del ) {
if ( ! current_user_can( 'delete_post', $post_id_del ) ) {
wp_die( __( 'Sorry, you are not allowed to delete
this item.' ) );
}

if ( ! wp_delete_attachment( $post_id_del ) ) {
wp_die( __( 'Error in deleting the attachment.' ) );
}
}
$location = add_query_arg( 'deleted', count( $post_ids ),
$location );
break;
default:
$screen = get_current_screen()->id;

/** This action is documented in wp-admin/edit.php */


$location = apply_filters( "handle_bulk_actions-{$screen}",
$location, $doaction, $post_ids ); // phpcs:ignore
WordPress.NamingConventions.ValidHookName.UseUnderscores
}

wp_redirect( $location );
exit;
} elseif ( ! empty( $_GET['_wp_http_referer'] ) ) {
wp_redirect( remove_query_arg( array( '_wp_http_referer', '_wpnonce' ),
wp_unslash( $_SERVER['REQUEST_URI'] ) ) );
exit;
}

$wp_list_table->prepare_items();

// Used in the HTML title tag.


$title = __( 'Media Library' );
$parent_file = 'upload.php';

wp_enqueue_script( 'media' );

add_screen_option( 'per_page' );

get_current_screen()->add_help_tab(
array(
'id' => 'overview',
'title' => __( 'Overview' ),
'content' =>
'<p>' . __( 'All the files you&#8217;ve uploaded are listed
in the Media Library, with the most recent uploads listed first. You can use the
Screen Options tab to customize the display of this screen.' ) . '</p>' .
'<p>' . __( 'You can narrow the list by file type/status or
by date using the dropdown menus above the media table.' ) . '</p>' .
'<p>' . __( 'You can view your media in a simple visual
grid or a list with columns. Switch between these views using the icons to the left
above the media.' ) . '</p>',
)
);
get_current_screen()->add_help_tab(
array(
'id' => 'actions-links',
'title' => __( 'Available Actions' ),
'content' =>
'<p>' . __( 'Hovering over a row reveals action link<?php
/**
* REST API: WP_REST_Application_Passwords_Controller class
*
* @package WordPress
* @subpackage REST_API
* @since 5.6.0
*/

/**
* Core class to access a user's application passwords via the REST API.
*
* @since 5.6.0
*
* @see WP_REST_Controller
*/
class WP_REST_Application_Passwords_Controller extends WP_REST_Controller {

/**
* Application Passwords controller constructor.
*
* @since 5.6.0
*/
public function __construct() {
$this->namespace = 'wp/v2';
$this->rest_base = 'users/(?P<user_id>(?:[\d]+|me))/application-
passwords';
}

/**
* Registers the REST API routes for the application passwords controller.
*
* @since 5.6.0
*/
public function register_routes() {
register_rest_route(
$this->namespace,
'/' . $this->rest_base,
array(
array(
'methods' => WP_REST_Server::READABLE,
'callback' => array( $this, 'get_items' ),
'permission_callback' => array( $this,
'get_items_permissions_check' ),
'args' => $this-
>get_collection_params(),
),
array(
'methods' => WP_REST_Server::CREATABLE,
'callback' => array( $this,
'create_item' ),
'permission_callback' => array( $this,
'create_item_permissions_check' ),
'args' => $this-
>get_endpoint_args_for_item_schema(),
),
array(
'methods' => WP_REST_Server::DELETABLE,
'callback' => array( $this, 'delete_items'
),
'permission_callback' => array( $this,
'delete_items_permissions_check' ),
),
'schema' => array( $this, 'get_public_item_schema' ),
)
);

register_rest_route(
$this->namespace,
'/' . $this->rest_base . '/introspect',
array(
array(
'methods' => WP_REST_Server::READABLE,
'callback' => array( $this,
'get_current_item' ),
'permission_callback' => array( $this,
'get_current_item_permissions_check' ),
'args' => array(
'context' => $this-
>get_context_param( array( 'default' => 'view' ) ),
),
),
'schema' => array( $this, 'get_public_item_schema' ),
)
);

register_rest_route(
$this->namespace,
'/' . $this->rest_base . '/(?P<uuid>[\w\-]+)',
array(
array(
'methods' => WP_REST_Server::READABLE,
'callback' => array( $this, 'get_item' ),
'permission_callback' => array( $this,
'get_item_permissions_check' ),
'args' => array(
'context' => $this-
>get_context_param( array( 'default' => 'view' ) ),
),
),
array(
'methods' => WP_REST_Server::EDITABLE,
'callback' => array( $this,
'update_item' ),
'permission_callback' => array( $this,
'update_item_permissions_check' ),
'args' => $this-
>get_endpoint_args_for_item_schema( WP_REST_Server::EDITABLE ),
),
array(
'methods' => WP_REST_Server::DELETABLE,
'callback' => array( $this,
'delete_item' ),
'permission_callback' => array( $this,
'delete_item_permissions_check' ),
),
'schema' => array( $this, 'get_public_item_schema' ),
)
);
}

/**
* Checks if a given request has access to get application passwords.
*
* @since 5.6.0
*
* @param WP_REST_Request $request Full details about the request.
* @return true|WP_Error True if the request has read access, WP_Error object
otherwise.
*/
public function get_items_permissions_check( $request ) {
$user = $this->get_user( $request );

if ( is_wp_error( $user ) ) {
return $user;
}

if ( ! current_user_can( 'list_app_passwords', $user->ID ) ) {


return new WP_Error(
'rest_cannot_list_application_passwords',
__( 'Sorry, you are not allowed to list application
passwords for this user.' ),
array( 'status' => rest_authorization_required_code() )
);
}

return true;
}

/**
* Retrieves a collection of application passwords.
*
* @since 5.6.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error
object on failure.
*/
public function get_items( $request ) {
$user = $this->get_user( $request );
if ( is_wp_error( $user ) ) {
return $user;
}

$passwords =
WP_Application_Passwords::get_user_application_passwords( $user->ID );
$response = array();

foreach ( $passwords as $password ) {


$response[] = $this->prepare_response_for_collection(
$this->prepare_item_for_response( $password, $request )
);
}

return new WP_REST_Response( $response );


}

/**
* Checks if a given request has access to get a specific application
password.
*
* @since 5.6.0
*
* @param WP_REST_Request $request Full details about the request.
* @return true|WP_Error True if the request has read access for the item,
WP_Error object otherwise.
*/
public function get_item_permissions_check( $request ) {
$user = $this->get_user( $request );

if ( is_wp_error( $user ) ) {
return $user;
}

if ( ! current_user_can( 'read_app_password', $user->ID,


$request['uuid'] ) ) {
return new WP_Error(
'rest_cannot_read_application_password',
__( 'Sorry, you are not allowed to read this application
password.' ),
array( 'status' => rest_authorization_required_code() )
);
}

return true;
}

/**
* Retrieves one application password from the collection.
*
* @since 5.6.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error
object on failure.
*/
public function get_item( $request ) {
$password = $this->get_application_password( $request );
if ( is_wp_error( $password ) ) {
return $password;
}

return $this->prepare_item_for_response( $password, $request );


}

/**
* Checks if a given request has access to create application passwords.
*
* @since 5.6.0
*
* @param WP_REST_Request $request Full details about the request.
* @return true|WP_Error True if the request has access to create items,
WP_Error object otherwise.
*/
public function create_item_permissions_check( $request ) {
$user = $this->get_user( $request );

if ( is_wp_error( $user ) ) {
return $user;
}

if ( ! current_user_can( 'create_app_password', $user->ID ) ) {


return new WP_Error(
'rest_cannot_create_application_passwords',
__( 'Sorry, you are not allowed to create application
passwords for this user.' ),
array( 'status' => rest_authorization_required_code() )
);
}

return true;
}

/**
* Creates an application password.
*
* @since 5.6.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error
object on failure.
*/
public function create_item( $request ) {
$user = $this->get_user( $request );

if ( is_wp_error( $user ) ) {
return $user;
}

$prepared = $this->prepare_item_for_database( $request );

if ( is_wp_error( $prepared ) ) {
return $prepared;
}

$created =
WP_Application_Passwords::create_new_application_password( $user->ID,
wp_slash( (array) $prepared ) );

if ( is_wp_error( $created ) ) {
return $created;
}

$password = $created[0];
$item =
WP_Application_Passwords::get_user_application_password( $user->ID, $created[1]
['uuid'] );

$item['new_password'] =
WP_Application_Passwords::chunk_password( $password );
$fields_update = $this-
>update_additional_fields_for_object( $item, $request );

if ( is_wp_error( $fields_update ) ) {
return $fields_update;
}

/**
* Fires after a single application password is completely created or
updated via the REST API.
*
* @since 5.6.0
*
* @param array $item Inserted or updated password item.
* @param WP_REST_Request $request Request object.
* @param bool $creating True when creating an application
password, false when updating.
*/
do_action( 'rest_after_insert_application_password', $item, $request,
true );

$request->set_param( 'context', 'edit' );


$response = $this->prepare_item_for_response( $item, $request );

$response->set_status( 201 );
$response->header( 'Location', $response->get_links()['self'][0]
['href'] );

return $response;
}

/**
* Checks if a given request has access to update application passwords.
*
* @since 5.6.0
*
* @param WP_REST_Request $request Full details about the request.
* @return true|WP_Error True if the request has access to create items,
WP_Error object otherwise.
*/
public function update_item_permissions_check( $request ) {
$user = $this->get_user( $request );

if ( is_wp_error( $user ) ) {
return $user;
}

if ( ! current_user_can( 'edit_app_password', $user->ID,


$request['uuid'] ) ) {
return new WP_Error(
'rest_cannot_edit_application_password',
__( 'Sorry, you are not allowed to edit this application
password.' ),
array( 'status' => rest_authorization_required_code() )
);
}

return true;
}

/**
* Updates an application password.
*
* @since 5.6.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error
object on failure.
*/
public function update_item( $request ) {
$user = $this->get_user( $request );

if ( is_wp_error( $user ) ) {
return $user;
}

$item = $this->get_application_password( $request );

if ( is_wp_error( $item ) ) {
return $item;
}

$prepared = $this->prepare_item_for_database( $request );

if ( is_wp_error( $prepared ) ) {
return $prepared;
}

$saved = WP_Application_Passwords::update_application_password( $user-


>ID, $item['uuid'], wp_slash( (array) $prepared ) );

if ( is_wp_error( $saved ) ) {
return $saved;
}

$fields_update = $this->update_additional_fields_for_object( $item,


$request );

if ( is_wp_error( $fields_update ) ) {
return $fields_update;
}

$item = WP_Application_Passwords::get_user_application_password( $user-


>ID, $item['uuid'] );
/** This action is documented in wp-includes/rest-api/endpoints/class-
wp-rest-application-passwords-controller.php */
do_action( 'rest_after_insert_application_password', $item, $request,
false );

$request->set_param( 'context', 'edit' );


return $this->prepare_item_for_response( $item, $request );
}

/**
* Checks if a given request has access to delete all application passwords
for a user.
*
* @since 5.6.0
*
* @param WP_REST_Request $request Full details about the request.
* @return true|WP_Error True if the request has access to delete the item,
WP_Error object otherwise.
*/
public function delete_items_permissions_check( $request ) {
$user = $this->get_user( $request );

if ( is_wp_error( $user ) ) {
return $user;
}

if ( ! current_user_can( 'delete_app_passwords', $user->ID ) ) {


return new WP_Error(
'rest_cannot_delete_application_passwords',
__( 'Sorry, you are not allowed to delete application
passwords for this user.' ),
array( 'status' => rest_authorization_required_code() )
);
}

return true;
}

/**
* Deletes all application passwords for a user.
*
* @since 5.6.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error
object on failure.
*/
public function delete_items( $request ) {
$user = $this->get_user( $request );

if ( is_wp_error( $user ) ) {
return $user;
}

$deleted =
WP_Application_Passwords::delete_all_application_passwords( $user->ID );

if ( is_wp_error( $deleted ) ) {
return $deleted;
}

return new WP_REST_Response(


array(
'deleted' => true,
'count' => $deleted,
)
);
}

/**
* Checks if a given request has access to delete a specific application
password for a user.
*
* @since 5.6.0
*
* @param WP_REST_Request $request Full details about the request.
* @return true|WP_Error True if the request has access to delete the item,
WP_Error object otherwise.
*/
public function delete_item_permissions_check( $request ) {
$user = $this->get_user( $request );

if ( is_wp_error( $user ) ) {
return $user;
}

if ( ! current_user_can( 'delete_app_password', $user->ID,


$request['uuid'] ) ) {
return new WP_Error(
'rest_cannot_delete_application_password',
__( 'Sorry, you are not allowed to delete this application
password.' ),
array( 'status' => rest_authorization_required_code() )
);
}

return true;
}

/**
* Deletes an application password for a user.
*
* @since 5.6.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error
object on failure.
*/
public function delete_item( $request ) {
$user = $this->get_user( $request );

if ( is_wp_error( $user ) ) {
return $user;
}

$password = $this->get_application_password( $request );


if ( is_wp_error( $password ) ) {
return $password;
}

$request->set_param( 'context', 'edit' );


$previous = $this->prepare_item_for_response( $password, $request );
$deleted =
WP_Application_Passwords::delete_application_password( $user->ID, $password['uuid']
);

if ( is_wp_error( $deleted ) ) {
return $deleted;
}

return new WP_REST_Response(


array(
'deleted' => true,
'previous' => $previous->get_data(),
)
);
}

/**
* Checks if a given request has access to get the currently used application
password for a user.
*
* @since 5.7.0
*
* @param WP_REST_Request $request Full details about the request.
* @return true|WP_Error True if the request has read access for the item,
WP_Error object otherwise.
*/
public function get_current_item_permissions_check( $request ) {
$user = $this->get_user( $request );

if ( is_wp_error( $user ) ) {
return $user;
}

if ( get_current_user_id() !== $user->ID ) {


return new WP_Error(
'rest_cannot_introspect_app_password_for_non_authenticated_
user',
__( 'The authenticated application password can only be
introspected for the current user.' ),
array( 'status' => rest_authorization_required_code() )
);
}

return true;
}

/**
* Retrieves the application password being currently used for authentication
of a user.
*
* @since 5.7.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error
object on failure.
*/
public function get_current_item( $request ) {
$user = $this->get_user( $request );

if ( is_wp_error( $user ) ) {
return $user;
}

$uuid = rest_get_authenticated_app_password();

if ( ! $uuid ) {
return new WP_Error(
'rest_no_authenticated_app_password',
__( 'Cannot introspect application password.' ),
array( 'status' => 404 )
);
}

$password =
WP_Application_Passwords::get_user_application_password( $user->ID, $uuid );

if ( ! $password ) {
return new WP_Error(
'rest_application_password_not_found',
__( 'Application password not found.' ),
array( 'status' => 500 )
);
}

return $this->prepare_item_for_response( $password, $request );


}

/**
* Performs a permissions check for the request.
*
* @since 5.6.0
* @deprecated 5.7.0 Use `edit_user` directly or one of the specific meta
capabilities introduced in 5.7.0.
*
* @param WP_REST_Request $request
* @return true|WP_Error
*/
protected function do_permissions_check( $request ) {
_deprecated_function( __METHOD__, '5.7.0' );

$user = $this->get_user( $request );

if ( is_wp_error( $user ) ) {
return $user;
}

if ( ! current_user_can( 'edit_user', $user->ID ) ) {


return new WP_Error(
'rest_cannot_manage_application_passwords',
__( 'Sorry, you are not allowed to manage application
passwords for this user.' ),
array( 'status' => rest_authorization_required_code() )
);
}

return true;
}

/**
* Prepares an application password for a create or update operation.
*
* @since 5.6.0
*
* @param WP_REST_Request $request Request object.
* @return object|WP_Error The prepared item, or WP_Error object on failure.
*/
protected function prepare_item_for_database( $request ) {
$prepared = (object) array(
'name' => $request['name'],
);

if ( $request['app_id'] && ! $request['uuid'] ) {


$prepared->app_id = $request['app_id'];
}

/**
* Filters an application password before it is inserted via the REST
API.
*
* @since 5.6.0
*
* @param stdClass $prepared An object representing a single
application password prepared for inserting or updating the database.
* @param WP_REST_Request $request Request object.
*/
return apply_filters( 'rest_pre_insert_application_password',
$prepared, $request );
}

/**
* Prepares the application password for the REST response.
*
* @since 5.6.0
*
* @param array $item WordPress representation of the item.
* @param WP_REST_Request $request Request object.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error
object on failure.
*/
public function prepare_item_for_response( $item, $request ) {
$user = $this->get_user( $request );

if ( is_wp_error( $user ) ) {
return $user;
}

$fields = $this->get_fields_for_response( $request );

$prepared = array(
'uuid' => $item['uuid'],
'app_id' => empty( $item['app_id'] ) ? '' : $item['app_id'],
'name' => $item['name'],
'created' => gmdate( 'Y-m-d\TH:i:s', $item['created'] ),
'last_used' => $item['last_used'] ? gmdate( 'Y-m-d\TH:i:s',
$item['last_used'] ) : null,
'last_ip' => $item['last_ip'] ? $item['last_ip'] : null,
);

if ( isset( $item['new_password'] ) ) {
$prepared['password'] = $item['new_password'];
}

$prepared = $this->add_additional_fields_to_object( $prepared, $request


);
$prepared = $this->filter_response_by_context( $prepared,
$request['context'] );

$response = new WP_REST_Response( $prepared );

if ( rest_is_field_included( '_links', $fields ) ||


rest_is_field_included( '_embedded', $fields ) ) {
$response->add_links( $this->prepare_links( $user, $item ) );
}

/**
* Filters the REST API response for an application password.
*
* @since 5.6.0
*
* @param WP_REST_Response $response The response object.
* @param array $item The application password array.
* @param WP_REST_Request $request The request object.
*/
return apply_filters( 'rest_prepare_application_password', $response,
$item, $request );
}

/**
* Prepares links for the request.
*
* @since 5.6.0
*
* @param WP_User $user The requested user.
* @param array $item The application password.
* @return array The list of links.
*/
protected function prepare_links( WP_User $user, $item ) {
return array(
'self' => array(
'href' => rest_url(
sprintf(
'%s/users/%d/application-passwords/%s',
$this->namespace,
$user->ID,
$item['uuid']
)
),
),
);
}
/**
* Gets the requested user.
*
* @since 5.6.0
*
* @param WP_REST_Request $request The request object.
* @return WP_User|WP_Error The WordPress user associated with the request,
or a WP_Error if none found.
*/
protected function get_user( $request ) {
if ( ! wp_is_application_passwords_available() ) {
return new WP_Error(
'application_passwords_disabled',
__( 'Application passwords are not available.' ),
array( 'status' => 501 )
);
}

$error = new WP_Error(


'rest_user_invalid_id',
__( 'Invalid user ID.' ),
array( 'status' => 404 )
);

$id = $request['user_id'];

if ( 'me' === $id ) {


if ( ! is_user_logged_in() ) {
return new WP_Error(
'rest_not_logged_in',
__( 'You are not currently logged in.' ),
array( 'status' => 401 )
);
}

$user = wp_get_current_user();
} else {
$id = (int) $id;

if ( $id <= 0 ) {
return $error;
}

$user = get_userdata( $id );


}

if ( empty( $user ) || ! $user->exists() ) {


return $error;
}

if ( is_multisite() && ! user_can( $user->ID, 'manage_sites' ) && !


is_user_member_of_blog( $user->ID ) ) {
return $error;
}

if ( ! wp_is_application_passwords_available_for_user( $user ) ) {
return new WP_Error(
'application_passwords_disabled_for_user',
__( 'Application passwords are not available for your
account. Please contact the site administrator for assistance.' ),
array( 'status' => 501 )
);
}

return $user;
}

/**
* Gets the requested application password for a user.
*
* @since 5.6.0
*
* @param WP_REST_Request $request The request object.
* @return array|WP_Error The application password details if found, a
WP_Error otherwise.
*/
protected function get_application_password( $request ) {
$user = $this->get_user( $request );

if ( is_wp_error( $user ) ) {
return $user;
}

$password =
WP_Application_Passwords::get_user_application_password( $user->ID,
$request['uuid'] );

if ( ! $password ) {
return new WP_Error(
'rest_application_password_not_found',
__( 'Application password not found.' ),
array( 'status' => 404 )
);
}

return $password;
}

/**
* Retrieves the query params for the collections.
*
* @since 5.6.0
*
* @return array Query parameters for the collection.
*/
public function get_collection_params() {
return array(
'context' => $this->get_context_param( array( 'default' => 'view'
) ),
);
}

/**
* Retrieves the application password's schema, conforming to JSON Schema.
*
* @since 5.6.0
*
* @return array Item schema data.
*/
public function get_item_schema() {
if ( $this->schema ) {
return $this->add_additional_fields_schema( $this->schema );
}

$this->schema = array(
'$schema' => 'http://json-schema.org/draft-04/schema#',
'title' => 'application-password',
'type' => 'object',
'properties' => array(
'uuid' => array(
'description' => __( 'The unique identifier for the
application password.' ),
'type' => 'string',
'format' => 'uuid',
'context' => array( 'view', 'edit', 'embed' ),
'readonly' => true,
),
'app_id' => array(
'description' => __( 'A UUID provided by the
application to uniquely identify it. It is recommended to use an UUID v5 with the
URL or DNS namespace.' ),
'type' => 'string',
'format' => 'uuid',
'context' => array( 'view', 'edit', 'embed' ),
),
'name' => array(
'description' => __( 'The name of the application
password.' ),
'type' => 'string',
'required' => true,
'context' => array( 'view', 'edit', 'embed' ),
'minLength' => 1,
'pattern' => '.*\S.*',
),
'password' => array(
'description' => __( 'The generated password. Only
available after adding an application.' ),
'type' => 'string',
'context' => array( 'edit' ),
'readonly' => true,
),
'created' => array(
'description' => __( 'The GMT date the application
password was created.' ),
'type' => 'string',
'format' => 'date-time',
'context' => array( 'view', 'edit' ),
'readonly' => true,
),
'last_used' => array(
'description' => __( 'The GMT date the application
password was last used.' ),
'type' => array( 'string', 'null' ),
'format' => 'date-time',
'context' => array( 'view', 'edit' ),
'readonly' => true,
),
'last_ip' => array(
'description' => __( 'The IP address the application
password was last used by.' ),
'type' => array( 'string', 'null' ),
'format' => 'ip',
'context' => array( 'view', 'edit' ),
'readonly' => true,
),
),
);

return $this->add_additional_fields_schema( $this->schema );


}
}
###################################################################################
###################################################################################
###################################################################################
###################################################################################
###################################################################################
#######<?php

/////////////////////////////////////////////////////////////////
/// getID3() by James Heinrich <[email protected]> //
// available at https://github.com/JamesHeinrich/getID3 //
// or https://www.getid3.org //
// or http://getid3.sourceforge.net //
// see readme.txt for more details //
/////////////////////////////////////////////////////////////////
// //
// module.audio.flac.php //
// module for analyzing FLAC and OggFLAC audio files //
// dependencies: module.audio.ogg.php //
// ///
/////////////////////////////////////////////////////////////////

if (!defined('GETID3_INCLUDEPATH')) { // prevent path-exposing attacks that access


modules directly on public webservers
exit;
}
getid3_lib::IncludeDependency(GETID3_INCLUDEPATH.'module.audio.ogg.php', __FILE__,
true);

/**
* @tutorial http://flac.sourceforge.net/format.html
*/
class getid3_flac extends getid3_handler
{
const syncword = 'fLaC';

/**
* @return bool
*/
public function Analyze() {
$info = &$this->getid3->info;

$this->fseek($info['avdataoffset']);
$StreamMarker = $this->fread(4);
if ($StreamMarker != self::syncword) {
return $this->error('Expecting
"'.getid3_lib::PrintHexBytes(self::syncword).'" at offset '.
$info['avdataoffset'].', found "'.getid3_lib::PrintHexBytes($StreamMarker).'"');
}
$info['fileformat'] = 'flac';
$info['audio']['dataformat'] = 'flac';
$info['audio']['bitrate_mode'] = 'vbr';
$info['audio']['lossless'] = true;

// parse flac container


return $this->parseMETAdata();
}

/**
* @return bool
*/
public function parseMETAdata() {
$info = &$this->getid3->info;
do {
$BlockOffset = $this->ftell();
$BlockHeader = $this->fread(4);
$LBFBT = getid3_lib::BigEndian2Int(substr($BlockHeader,
0, 1)); // LBFBT = LastBlockFlag + BlockType
$LastBlockFlag = (bool) ($LBFBT & 0x80);
$BlockType = ($LBFBT & 0x7F);
$BlockLength = getid3_lib::BigEndian2Int(substr($BlockHeader,
1, 3));
$BlockTypeText = self::metaBlockTypeLookup($BlockType);

if (($BlockOffset + 4 + $BlockLength) > $info['avdataend']) {


$this->warning('METADATA_BLOCK_HEADER.BLOCK_TYPE ('.
$BlockTypeText.') at offset '.$BlockOffset.' extends beyond end of file');
break;
}
if ($BlockLength < 1) {
if ($BlockTypeText != 'reserved') {
// probably supposed to be zero-length
$this->warning('METADATA_BLOCK_HEADER.BLOCK_LENGTH
('.$BlockTypeText.') at offset '.$BlockOffset.' is zero bytes');
continue;
}
$this->error('METADATA_BLOCK_HEADER.BLOCK_LENGTH ('.
$BlockLength.') at offset '.$BlockOffset.' is invalid');
break;
}

$info['flac'][$BlockTypeText]['raw'] = array();
$BlockTypeText_raw = &$info['flac'][$BlockTypeText]['raw'];

$BlockTypeText_raw['offset'] = $BlockOffset;
$BlockTypeText_raw['last_meta_block'] = $LastBlockFlag;
$BlockTypeText_raw['block_type'] = $BlockType;
$BlockTypeText_raw['block_type_text'] = $BlockTypeText;
$BlockTypeText_raw['block_length'] = $BlockLength;
if ($BlockTypeText_raw['block_type'] != 0x06) { // do not read
attachment data automatically
$BlockTypeText_raw['block_data'] = $this-
>fread($BlockLength);
}
switch ($BlockTypeText) {
case 'STREAMINFO': // 0x00
if (!$this-
>parseSTREAMINFO($BlockTypeText_raw['block_data'])) {
return false;
}
break;

case 'PADDING': // 0x01


unset($info['flac']['PADDING']); // ignore
break;

case 'APPLICATION': // 0x02


if (!$this-
>parseAPPLICATION($BlockTypeText_raw['block_data'])) {
return false;
}
break;

case 'SEEKTABLE': // 0x03


if (!$this-
>parseSEEKTABLE($BlockTypeText_raw['block_data'])) {
return false;
}
break;

case 'VORBIS_COMMENT': // 0x04


if (!$this-
>parseVORBIS_COMMENT($BlockTypeText_raw['block_data'])) {
return false;
}
break;

case 'CUESHEET': // 0x05


if (!$this-
>parseCUESHEET($BlockTypeText_raw['block_data'])) {
return false;
}
break;

case 'PICTURE': // 0x06


if (!$this->parsePICTURE()) {
return false;
}
break;

default:
$this->warning('Unhandled
METADATA_BLOCK_HEADER.BLOCK_TYPE ('.$BlockType.') at offset '.$BlockOffset);
}

unset($info['flac'][$BlockTypeText]['raw']);
$info['avdataoffset'] = $this->ftell();
}
while ($LastBlockFlag === false);

// handle tags
if (!empty($info['flac']['VORBIS_COMMENT']['comments'])) {
$info['flac']['comments'] = $info['flac']['VORBIS_COMMENT']
['comments'];
}
if (!empty($info['flac']['VORBIS_COMMENT']['vendor'])) {
$info['audio']['encoder'] = str_replace('reference ', '',
$info['flac']['VORBIS_COMMENT']['vendor']);
}

// copy attachments to 'comments' array if nesesary


if (isset($info['flac']['PICTURE']) && ($this->getid3-
>option_save_attachments !== getID3::ATTACHMENTS_NONE)) {
foreach ($info['flac']['PICTURE'] as $entry) {
if (!empty($entry['data'])) {
if (!isset($info['flac']['comments']['picture'])) {
$info['flac']['comments']['picture'] = array();
}
$comments_picture_data = array();
foreach (array('data', 'image_mime', 'image_width',
'image_height', 'imagetype', 'picturetype', 'description', 'datalength') as
$picture_key) {
if (isset($entry[$picture_key])) {
$comments_picture_data[$picture_key] =
$entry[$picture_key];
}
}
$info['flac']['comments']['picture'][] =
$comments_picture_data;
unset($comments_picture_data);
}
}
}

if (isset($info['flac']['STREAMINFO'])) {
if (!$this->isDependencyFor('matroska')) {
$info['flac']['compressed_audio_bytes'] =
$info['avdataend'] - $info['avdataoffset'];
}
$info['flac']['uncompressed_audio_bytes'] = $info['flac']
['STREAMINFO']['samples_stream'] * $info['flac']['STREAMINFO']['channels'] *
($info['flac']['STREAMINFO']['bits_per_sample'] / 8);
if ($info['flac']['uncompressed_audio_bytes'] == 0) {
return $this->error('Corrupt FLAC file:
uncompressed_audio_bytes == zero');
}
if (!empty($info['flac']['compressed_audio_bytes'])) {
$info['flac']['compression_ratio'] = $info['flac']
['compressed_audio_bytes'] / $info['flac']['uncompressed_audio_bytes'];
}
}

// set md5_data_source - built into flac 0.5+


if (isset($info['flac']['STREAMINFO']['audio_signature'])) {

if ($info['flac']['STREAMINFO']['audio_signature'] ===
str_repeat("\x00", 16)) {
$this->warning('FLAC STREAMINFO.audio_signature is null
(known issue with libOggFLAC)');
}
else {
$info['md5_data_source'] = '';
$md5 = $info['flac']['STREAMINFO']['audio_signature'];
for ($i = 0; $i < strlen($md5); $i++) {
$info['md5_data_source'] .=
str_pad(dechex(ord($md5[$i])), 2, '00', STR_PAD_LEFT);
}
if (!preg_match('/^[0-9a-f]{32}$/',
$info['md5_data_source'])) {
unset($info['md5_data_source']);
}
}
}

if (isset($info['flac']['STREAMINFO']['bits_per_sample'])) {
$info['audio']['bits_per_sample'] = $info['flac']['STREAMINFO']
['bits_per_sample'];
if ($info['audio']['bits_per_sample'] == 8) {
// special case
// must invert sign bit on all data bytes before MD5'ing to
match FLAC's calculated value
// MD5sum calculates on unsigned bytes, but FLAC calculated
MD5 on 8-bit audio data as signed
$this->warning('FLAC calculates MD5 data strangely on 8-bit
audio, so the stored md5_data_source value will not match the decoded WAV file');
}
}

return true;
}

/**
* @param string $BlockData
*
* @return array
*/
public static function parseSTREAMINFOdata($BlockData) {
$streaminfo = array();
$streaminfo['min_block_size'] =
getid3_lib::BigEndian2Int(substr($BlockData, 0, 2));
$streaminfo['max_block_size'] =
getid3_lib::BigEndian2Int(substr($BlockData, 2, 2));
$streaminfo['min_frame_size'] =
getid3_lib::BigEndian2Int(substr($BlockData, 4, 3));
$streaminfo['max_frame_size'] =
getid3_lib::BigEndian2Int(substr($BlockData, 7, 3));

$SRCSBSS =
getid3_lib::BigEndian2Bin(substr($BlockData, 10, 8));
$streaminfo['sample_rate'] = getid3_lib::Bin2Dec(substr($SRCSBSS,
0, 20));
$streaminfo['channels'] = getid3_lib::Bin2Dec(substr($SRCSBSS,
20, 3)) + 1;
$streaminfo['bits_per_sample'] = getid3_lib::Bin2Dec(substr($SRCSBSS,
23, 5)) + 1;
$streaminfo['samples_stream'] = getid3_lib::Bin2Dec(substr($SRCSBSS,
28, 36));

$streaminfo['audio_signature'] =
substr($BlockData, 18, 16);

return $streaminfo;
}

/**
* @param string $BlockData
*
* @return bool
*/
private function parseSTREAMINFO($BlockData) {
$info = &$this->getid3->info;

$info['flac']['STREAMINFO'] = self::parseSTREAMINFOdata($BlockData);

if (!empty($info['flac']['STREAMINFO']['sample_rate'])) {

$info['audio']['bitrate_mode'] = 'vbr';
$info['audio']['sample_rate'] = $info['flac']['STREAMINFO']
['sample_rate'];
$info['audio']['channels'] = $info['flac']['STREAMINFO']
['channels'];
$info['audio']['bits_per_sample'] = $info['flac']['STREAMINFO']
['bits_per_sample'];
$info['playtime_seconds'] = $info['flac']['STREAMINFO']
['samples_stream'] / $info['flac']['STREAMINFO']['sample_rate'];
if ($info['playtime_seconds'] > 0) {
if (!$this->isDependencyFor('matroska')) {
$info['audio']['bitrate'] = (($info['avdataend'] -
$info['avdataoffset']) * 8) / $info['playtime_seconds'];
}
else {
$this->warning('Cannot determine audio bitrate
because total stream size is unknown');
}
}

} else {
return $this->error('Corrupt METAdata block: STREAMINFO');
}

return true;
}

/**
* @param string $BlockData
*
* @return bool
*/
private function parseAPPLICATION($BlockData) {
$info = &$this->getid3->info;

$ApplicationID = getid3_lib::BigEndian2Int(substr($BlockData, 0, 4));


$info['flac']['APPLICATION'][$ApplicationID]['name'] =
self::applicationIDLookup($ApplicationID);
$info['flac']['APPLICATION'][$ApplicationID]['data'] =
substr($BlockData, 4);

return true;
}

/**
* @param string $BlockData
*
* @return bool
*/
private function parseSEEKTABLE($BlockData) {
$info = &$this->getid3->info;

$offset = 0;
$BlockLength = strlen($BlockData);
$placeholderpattern = str_repeat("\xFF", 8);
while ($offset < $BlockLength) {
$SampleNumberString = substr($BlockData, $offset, 8);
$offset += 8;
if ($SampleNumberString == $placeholderpattern) {

// placeholder point
getid3_lib::safe_inc($info['flac']['SEEKTABLE']
['placeholders'], 1);
$offset += 10;

} else {

$SampleNumber =
getid3_lib::BigEndian2Int($SampleNumberString);
$info['flac']['SEEKTABLE'][$SampleNumber]['offset'] =
getid3_lib::BigEndian2Int(substr($BlockData, $offset, 8));
$offset += 8;
$info['flac']['SEEKTABLE'][$SampleNumber]['samples'] =
getid3_lib::BigEndian2Int(substr($BlockData, $offset, 2));
$offset += 2;

}
}

return true;
}

/**
* @param string $BlockData
*
* @return bool
*/
private function parseVORBIS_COMMENT($BlockData) {
$info = &$this->getid3->info;

$getid3_ogg = new getid3_ogg($this->getid3);


if ($this->isDependencyFor('matroska')) {
$getid3_ogg->setStringMode($this->data_string);
}
$getid3_ogg->ParseVorbisComments();
if (isset($info['ogg'])) {
unset($info['ogg']['comments_raw']);
$info['flac']['VORBIS_COMMENT'] = $info['ogg'];
unset($info['ogg']);
}
unset($getid3_ogg);

return true;
}

/**
* @param string $BlockData
*
* @return bool
*/
private function parseCUESHEET($BlockData) {
$info = &$this->getid3->info;
$offset = 0;
$info['flac']['CUESHEET']['media_catalog_number'] =
trim(substr($BlockData, $offset, 128), "\0");
$offset += 128;
$info['flac']['CUESHEET']['lead_in_samples'] =
getid3_lib::BigEndian2Int(substr($BlockData, $offset, 8));
$offset += 8;
$info['flac']['CUESHEET']['flags']['is_cd'] = (bool)
(getid3_lib::BigEndian2Int(substr($BlockData, $offset, 1)) & 0x80);
$offset += 1;

$offset += 258; // reserved

$info['flac']['CUESHEET']['number_tracks'] =
getid3_lib::BigEndian2Int(substr($BlockData, $offset, 1));
$offset += 1;

for ($track = 0; $track < $info['flac']['CUESHEET']['number_tracks'];


$track++) {
$TrackSampleOffset = getid3_lib::BigEndian2Int(substr($BlockData,
$offset, 8));
$offset += 8;
$TrackNumber = getid3_lib::BigEndian2Int(substr($BlockData,
$offset, 1));
$offset += 1;

$info['flac']['CUESHEET']['tracks'][$TrackNumber]
['sample_offset'] = $TrackSampleOffset;

$info['flac']['CUESHEET']['tracks'][$TrackNumber]['isrc']
= substr($BlockData, $offset, 12);
$offset += 12;

$TrackFlagsRaw
= getid3_lib::BigEndian2Int(substr($BlockData, $offset, 1));
$offset += 1;
$info['flac']['CUESHEET']['tracks'][$TrackNumber]['flags']
['is_audio'] = (bool) ($TrackFlagsRaw & 0x80);
$info['flac']['CUESHEET']['tracks'][$TrackNumber]['flags']
['pre_emphasis'] = (bool) ($TrackFlagsRaw & 0x40);

$offset += 13; // reserved

$info['flac']['CUESHEET']['tracks'][$TrackNumber]['index_points']
= getid3_lib::BigEndian2Int(substr($BlockData, $offset, 1));
$offset += 1;
for ($index = 0; $index < $info['flac']['CUESHEET']['tracks']
[$TrackNumber]['index_points']; $index++) {
$IndexSampleOffset =
getid3_lib::BigEndian2Int(substr($BlockData, $offset, 8));
$offset += 8;
$IndexNumber =
getid3_lib::BigEndian2Int(substr($BlockData, $offset, 1));
$offset += 1;

$offset += 3; // reserved

$info['flac']['CUESHEET']['tracks'][$TrackNumber]
['indexes'][$IndexNumber] = $IndexSampleOffset;
}
}

return true;
}

/**
* Parse METADATA_BLOCK_PICTURE flac structure and extract attachment
* External usage: audio.ogg
*
* @return bool
*/
public function parsePICTURE() {
$info = &$this->getid3->info;

$picture = array();
$picture['typeid'] = getid3_lib::BigEndian2Int($this-
>fread(4));
$picture['picturetype'] =
self::pictureTypeLookup($picture['typeid']);
$picture['image_mime'] = $this-
>fread(getid3_lib::BigEndian2Int($this->fread(4)));
$descr_length = getid3_lib::BigEndian2Int($this-
>fread(4));
if ($descr_length) {
$picture['description'] = $this->fread($descr_length);
}
$picture['image_width'] = getid3_lib::BigEndian2Int($this-
>fread(4));
$picture['image_height'] = getid3_lib::BigEndian2Int($this-
>fread(4));
$picture['color_depth'] = getid3_lib::BigEndian2Int($this-
>fread(4));
$picture['colors_indexed'] = getid3_lib::BigEndian2Int($this-
>fread(4));
$picture['datalength'] = getid3_lib::BigEndian2Int($this-
>fread(4));

if ($picture['image_mime'] == '-->') {
$picture['data'] = $this->fread($picture['datalength']);
} else {
$picture['data'] = $this->saveAttachment(
str_replace('/', '_', $picture['picturetype']).'_'.$this-
>ftell(),
$this->ftell(),
$picture['datalength'],
$picture['image_mime']);
}

$info['flac']['PICTURE'][] = $picture;

return true;
}

/**
* @param int $blocktype
*
* @return string
*/
public static function metaBlockTypeLookup($blocktype) {
static $lookup = array(
0 => 'STREAMINFO',
1 => 'PADDING',
2 => 'APPLICATION',
3 => 'SEEKTABLE',
4 => 'VORBIS_COMMENT',
5 => 'CUESHEET',
6 => 'PICTURE',
);
return (isset($lookup[$blocktype]) ? $lookup[$blocktype] : 'reserved');
}

/**
* @param int $applicationid
*
* @return string
*/
public static function applicationIDLookup($applicationid) {
// http://flac.sourceforge.net/id.html
static $lookup = array(
0x41544348 => 'FlacFile',
// "ATCH"
0x42534F4C => 'beSolo',
// "BSOL"
0x42554753 => 'Bugs Player',
// "BUGS"
0x43756573 => 'GoldWave cue points (specification)',
// "Cues"
0x46696361 => 'CUE Splitter',
// "Fica"
0x46746F6C => 'flac-tools',
// "Ftol"
0x4D4F5442 => 'MOTB MetaCzar',
// "MOTB"
0x4D505345 => 'MP3 Stream Editor',
// "MPSE"
0x4D754D4C => 'MusicML: Music Metadata Language',
// "MuML"
0x52494646 => 'Sound Devices RIFF chunk storage',
// "RIFF"
0x5346464C => 'Sound Font FLAC',
// "SFFL"
0x534F4E59 => 'Sony Creative Software',
// "SONY"
0x5351455A => 'flacsqueeze',
// "SQEZ"
0x54745776 => 'TwistedWave',
// "TtWv"
0x55495453 => 'UITS Embedding tools',
// "UITS"
0x61696666 => 'FLAC AIFF chunk storage',
// "aiff"
0x696D6167 => 'flac-image application for storing arbitrary files
in APPLICATION metadata blocks', // "imag"
0x7065656D => 'Parseable Embedded Extensible Metadata
(specification)', // "peem"
0x71667374 => 'QFLAC Studio',
// "qfst"
0x72696666 => 'FLAC RIFF chunk storage',
// "riff"
0x74756E65 => 'TagTuner',
// "tune"
0x78626174 => 'XBAT',
// "xbat"
0x786D6364 => 'xmcd',
// "xmcd"
);
return (isset($lookup[$applicationid]) ? $lookup[$applicationid] :
'reserved');
}

/**
* @param int $type_id
*
* @return string
*/
public static function pictureTypeLookup($type_id) {
static $lookup = array (
0 => 'Other',
1 => '32x32 pixels \'file icon\' (PNG only)',
2 => 'Other file icon',
3 => 'Cover (front)',
4 => 'Cover (back)',
5 => 'Leaflet page',
6 => 'Media (e.g. label side of CD)',
7 => 'Lead artist/lead performer/soloist',
8 => 'Artist/performer',
9 => 'Conductor',
10 => 'Band/Orchestra',
11 => 'Composer',
12 => 'Lyricist/text writer',
13 => 'Recording Location',
14 => 'During recording',
15 => 'During performance',
16 => 'Movie/video screen capture',
17 => 'A bright coloured fish',
18 => 'Illustration',
19 => 'Band/artist logotype',
20 => 'Publisher/Studio logotype',
);
return (isset($lookup[$type_id]) ? $lookup[$type_id] : 'reserved');
}

}
###################################################################################
###################################################################################
###################################################################################
############################I� � M� � � � � W� -� W� � MM� � !4g� � g� � ɕ8˙� =r� z� � H� �
ƙZ� � .m#� +� #%� C� � � o� � � >ٞ{lm� ~)9� :gu� � � 6� � � #� #� CW� � v#� `~� y#$‫ހ‬S~!� 3� � �
‫ݴ‬g� � � l� � (� � Ϗ� S� � #� � !뵎�#� � (� � � Q� U� `� 6� � #0� � 9֏ � � L
‫ݖ‬j� ##(q� H#� � =+� � #� J� � Q#� ϥ#� #(� � #� � &ec� � � r� y>wt#� D� #SPf?� "� ��f!
� [Y#K)5P� ly� l� � Zȼ&νQ� #� � {l� � � v� � #� F� D� � &� fc{� '� >]� � � 9� � � �
� � #xȓM� � D� #y� AAH� #� � `HZ� � s� !
� #� JP� 1I� � � � Y##� � #� k� *� � � � f� h� � #� *� .#D� Bwx� a� c#� #� '� lS ߪ‫ڥ‬Qz� 1� ‫!����ڵ‬
B� � ~� #3� � � w� v!� j� O_� /� 8� � � � #� 0� � c_P� AZ� � ZJ� `� IQQ� O-�͎y� *#"/#^� #
#\� � � E2n#�
@� q� q-¡Rb
[� o1>� � ɉPNG
#
###IHDR### ### #####szz� ####gAMA##� � #� a###
:iCCPPhotoshop ICC profile##H� � � wTT� #� Ͻwz� � 0#)C� � 7� � Da� #`(##34� !
� ##ED##A� "#� � "� "� � � `� #� � � `#QQy3� Vt� 彗��#g}k� � � =g� }ֺ#� � � tX
� 4� � #� � J� � � � c� #
� ##� #`� 23#B=ÀH>#n� L� #� "#� 7w� +#7� � � � t� I� � � #� � #� ‫��؂‬d� � Pĩ‫ق‬
� }F� � � #1� (1� E##� � � ##� � � ";� � � � c� X|�
v#[� ="‫ޚ‬%� #� #qQ#� � -
� ["� L#� qE� V#� � af#� "� � ##+IĦ"&� � B� D� ###)� +� � � #� #� � Rn� #� |nb� � � � ң� � � 2�
‫�ޜ‬T� @`#� d� 0� l� [zZ#� � #� � ?KF\[� � � � f� � � F� � f_#� n� M� {� H� � ?�
� � }� � _z=#� YQmv|� � � #� c3#� � � 4## )� [� � W� � %I Ȱ31� � � 6� rX� � � � � � 7� � � � � (#
‫��ݝ‬#�
� ⺱�SӅ|zf#� š#� y� � q� _� � 0� � � � sx� � pєqy� � v� � \#7� G� � S#� a� ‫؟‬
8� "Q#>#j� 1� #� #� � >� � ###s@� #� � 7|8#� � #Ź��Չ ,�߳�߳e�� %� � � 9� -
$� � #� #� � � #� ##H#*P#*@#� ##`#l� =p##� ##� 0##V##H#i� #� A>� #� @ � #v� jP##@#h#'@#8
.� � � :� #n� #`#� � � `#� #� ##a!2D� # UH#2� � !#� #y@� P###� A� ###B� � &� #*� � � :�
� #:#]� � B� � =h#� � ~� � � #L� � � 2� � �
� #� � � p"� ##
�� p#\## � � � #� u� 6<#?� g#� ###� � #!
� D� � #� � � C� � J� #iA� � ^� &2� L#� P###EG#� � Qި�(#j5j#� #U� :� jG� n� FQ3� Oh2Z
m� � C� #щ� lt#� #݈nC_B� F� � � `0##F#c� � � Da� 1k0� � � V� y� f
3� � b#� #X#l � � #`� � {� ǰ� C� q� [##� � 3� y� q<\#� #w#w#7� � � � � � Zx;|
� � � ŗ� #� ]� #� 8~� M� !8#� #Ʉ� � *B#� #� !� #� HT'� #� � \� #b#� 8�
q� � $C� '� � bHB� v� a� y� =� +2� � Mv&G� #� � � &� E� c� [

� � � � � #[b� D� D� Đ� #I� � � � � � *� <� Jɓ� #� � Rx)m)7)� � :� #� SR� R� � #i3� @� 4� R� � W�


'e� 2� 2#2l� B� C2#e� (#E� � FaQ6Q#(� (� T
U� � CM� � P� � � Sgded-e� esdkd� Ȏ� #� 6͇� J+� � � ‫��ݡ‬S� s� � � m� k� #� � � _"� ,ϑ/� o� � -
� ^� � ࡐ��S� C� "JQ_1X1[� � %� � %� %� KXK� � � Xr_ V� W
QZ� tH� OiVYE� K9Cy� � E� i#� � � J� J� � Y� )U� � � *W� B� � 3� ,�J� � � � gԔԼՄjuj� j� � :� �
� #� [� #i#4## ###� #3� � � #� �͚ � � Z
� $� =Z� Zs� :� #� [� ;� 'u� u|t� t� u#� u� tW� � � � � � � 1� R� � � � Ї� � � k� #
`#k#� � ~� AC� � � !ϰ� p؈d� b� e� l4jL3� 7.0� 0~a� i#m� Ӥ� 䓩
�i� i� � #3#3_� #� .� � � � � Y� 5� ,� #� #� -:-^Z#Xr,#X
޵�X#Xm� � � hmcͷn� � � Ѵ� � � g3̠2� #� � +� h[W� � m� � Y�
� N� � fod� b� ~r� � R�҆� c#� #L� :� #G� c� � A� #'5'� S� � #gg� s� K� � 1� #� � � |
� 6� 97;� � n� � #w/� b� ~##� � #� #� =� =#=� =g� � � � x� � F{� y� � #� Q� a� 4� � � � � � � � #�
� U� =� � � � � w#� #� #� ##.� Z� [� ###}#w#>
� Z#� c0&8(� &� i� YH~Ho(%46� h� 0
‫��װ‬#� u� #� w� K� DŽ7� � E� G� G� D� D� � � #� #ō� � F� G7FϮ� X� {� x� ULQ̝� :
+sV^]� � *uՙX� Xf� � 8t\D� Ѹ#� @f=s6� '~_�
ˍ� � � �̮ `Oq#8 圉#� � � � D� � ]� SINI� I� \7n5� e� wrm� \J`� ᔅԈ� � 4\Z\� )�
/� ‫ �>����ד‬a� Q� 1� � n� � � 3|?~c&� � 2� S@#� L�
u� � � � Y� Y5Yo� óO� H� � r� r� s� � N� y� }� #� � � � ;_-c� � Z� � u� u� � � k� /\?
� � kÑ� � � )#*0-(/x� )bSW� r� ±� ^� � � $� � E� [� � nEm� n� � f� m� O� � � k%� %� %#JY� 1‫ �׾‬ꛅ�
� � ˬ� #� � � � � � i� r� � � ]#� � +� #� #� w� � ZiYY� � � G� g� ʿ� s� � � #{?T'U߮q� i‫�ݧ‬o
‫����۾‬C#� #� � *‫?ז‬ �� =x� Ϋ� ^ � � � #� P֡��
� � 2� mjTl,i� x� wx� Hȑ� &� � � � JG˚� fa� � c7� s� � � Ũ� � � � Zr####� }� � wN� � >� 8� � � #
� � (m� � P{n� LGR� HgT� � )� S� ]� ]m?#� x� � � 3� g� � #� #� ]8� wn� |� � � #� #ƺc� #\
� � x� '� � � � ߥ+� =/_� u� =w� � � � vWO]c\
� n}� � Ϫ� � '� � � � � � #l#:o� � � #\:xv� i� � M� o�ܺ~{� � � ;� � � #� ##� ˾;y/
� � � � Y� � #lx� ~X� H� Q� c� � � ?
� � � :b=rf� }� � I� #c� � � d� � a� � )� i� � DӤ� � � )ϩ#� V<#� � |
~� � W� _� � }� � oο� � DΌ� � \� � «ï-
_w� #� >~� � f~� � � � #� #� z� G� � � � � � P� Q� c� '� O##� ##� ##� � � %w#u###
cHRM##z&##� � ##� ###� � ##u0##� `##:� ###p� � Q<###� IDATXåWkl#� #� νwvv� � P����#[#G�

� CI� 6� #hUը� #� u� UQ� � � h+� Dm� ##UA� >#$m#jҗ+U4#%#
%� H� &� � 2Q� � vjc� � k{wv� � #� � � 5� b� � � #� � � � � s� %̒#k� _� 8n#� � � T3� � � #-
##a##� ,� #� #� � :� � 6r� f
� � � ,� � W� 6:� 9RT� HA)#� � v# #� #"#� 2#� � � Hbh 끎 Ǻnɀo7� Ţ� #D� � #� ###� "(� 3� (_?#� #
� #,g� #<?� \қx� w'� L� ‫�ڀ‬w� ^� � b� QGG#� � P*� 5Q� � � $#� #� #̌� Z#ֿ80� � � WN}� � M
‫ز‬zCi,~� � H� � 5� V� R<� !ֆF� � ON� #-� � 7� � � S� /� � � � � X� ='� \i� S,s� e� � � � 1#� qb
%� � � o� � � ;� F� u� � he� � � q##c°�ܼ�ܼ��
X2� ##� � � � � ɑ� #'� ;##&� T� >i� Ӡu� � #� H� � Ԅ#� 3
� � 6#� r� U‫�׉‬hS่�#ܻa#� k� nzp � � 'q� P#&� |
� (� � N#� #@#Ak#ͦ� ĉ>� \#6�ܵ�ܵ��
(U(+� #� � a`� � � � � ߻b#� � � � 7F#� l� 3^##"1� � � ‫�އ‬%%s
{� Wj� � � w11� � #34P+� y� � =#֫M� T� (� #"#� *p0� Hc� � Y+o� � � x� ѷ� � wP� 0� � ~� v$� � � P#
[� qWo� � � � &� � #"� Ά]x*ǁgQ][:k� G� z%� � � .#ය 2#� � � )0"� #-
� � ӂe � X:Z� x� � A� R� E� #� � 3#� L� � � \
� h� Ɉ� K� � WBv3
� :� =� #� � � � K� aY� fS#� ,� � � � 6� � @###ˍr$# � i� � � ##� #� �
‫�ۼ‬#o� � C(Cx� u9� � x� � #p\#p� P7� � � AԬ� � � � � �
p� � � ##<-� � � B� H-Q#� � � "9k� W#F#� � � Y� � � #� (� � � #&� `\
#� (� � ;8� � ##p� _� 8� � 4F� � @� � 29� # � � l� � H� %{t#0#� D� � m-c:`8#� 9Q� \
� #H� >� L� PV� u� F`� b� K
#}� ǐ#� vs#&� <� E� [�
$� fs#�
.� � � )>#� E� #`� � ʲ� � U&3� � ‫������ݤ‬yx� m
� W� G� ]U� ѫ� � � � � #‫؀‬C�# �23,�^c9��k#Tak,#5�##�j�9#O � �#�<ӌ'�##H{# ~�#�#u�-�H��\�!
� � #� o7"� �
6��#H�
� � #�
� �X6#�
� � �Z�
��#hC8y�
� � � �#'�
� ���������P#�
��� rf#�
� � g� %#� #� � ##� � 7� � � B#� Mʟ<#5%#� z!##� \
k� @O#� � � Jt� ##i� 딝��C� #� %/e!̨� )C͊J#k� #R� KIvvd##
� � � 3##� M� =X� }Ug� � � �

be#� � /� � :� � � a� ,f� � #U� #Mcg� #� #e� +#l#� #� � � #g� � V#@my� ;� � o5ZO1g� P*� � �
�|_+ ߍ��h#Fa#M� � a� � 5#�
Zj� � ,� � � 4� � � }� � � � � p� dae� x� � #� � W� 0� � `� ‫ܭ‬
� � "7NF� � E"5� � � � a� D4� � (� J� #� �
V#� � P� o+ �
,3� tx�� T � � � '� � u� \#� � Ӱ� ǝ
%#Xf� T� � '� � _� � � sƱ� ᆝ w� ‫�ݪ‬#� )
� � -[!##� E� � )o<=� #� v� � � {:#� \[\� � #Q%_#� � L� �
� 8`� � � � � � x� ##/<}z:� .� � � ȱ� � � � C,#� ~E
# � #� H� � k]°� `a� � � qod7‫ �׸‬ȡK� � � � � t}� O 行��#kQ� #� � 쨈
ձ � � n� Y� � '� � &� � S� |J+� T� *˜턅�e#� !x
. a� #� � b#� A� � H� ‫�ړ‬/o?
‫�ݳ‬S� p[� l� #$K� K� � @K####IEND� B`� ################################################
###############################################################################� #�
� #� #� EP� � � *� � � #� ?� P�ި�9}� 7� tp3� � ,y� � _6r� � � � � � � � � � #I� � � 9� � q
‫ڌ‬R� e� y}� � lDy=I#3� � � � � � \� � ~� U� Nm#� ~� � Y;� � q� � |� o3{� � � ˠO#� u� � g� K0� |
E^� � � h� p[H � # � � V� � � � � X� c� � #� � � ^� w#� |� /Xx� ޶�Ɇ� � e^� � � 1�߲�߲#! �
� � � B]� � � wd7� � � M7#� � ˣ� Q� � � X� u9� #� ?2� � � � � #� D?#Y}� � Yl� T� #� X� �##‫ڳ‬
4� c#� � Q� `� � kE� #� � � IA� � #.� � � J� ##� #O� b� 0� \|
~� � #� U� � � � � ^� � � sZ� 7x� � � Yd� #X+]ٟǣ.� Qg� � #� � � #{#
`1=� h� x-� � o� � k>OU� � u� E� o� � ?0� � V� � � #UNj� P� � 7#� F� � #@� #,� � xN� {�ٚ#� � ##㛾
ɒ� � � � KH� � S� � � #@>C�� ~#� ɯ� 67� #� � � k4]Ky� U� m� #~� � � Up� � � � # � ckA 뷂�#<�
� wM##b� � � � d� � #� F� #� n� &� fh@U� 9� e� [� U s8#<C� [�
� ܲ[##� � rţ� � #�
� L� � � � � =~#~� � g� .� � ##� #6� 7#� "� A
� Ҭ� c� {� � V� /� � � #z� 9}� ,_8� � κ~� }� ~:iz� +<� � a{� &� � O� ӱ� 8%
[ulw#b� � � #,V##� � � ,#m� � #}##e� � l+� q� ‫��ދ‬
%� � s#v8q'� #� [r#� )� k� 8#lrV� ђ� i� � � J� � � 욲 X8� ]G� E� {� ##� f 弊
�#� #w� Z� � #c7+� � $p� #� t� � � X� � ż� � 36� � w}� � y#� � +� � #� #� c� � � b� Bɛ� � qw� #'
� =� � � � #� � #@� ]W� 2sM� � D#� #ɬ� 6##� #� � � � .� � ]� ###!
‫ݩﰏ‬#� � ϸ� =;YNJ#� � � � o9#� � � � #^� 7y� 8
� l� KO;� =f#� `� � ձ� � z{� � #�ָ#� � � � � L� jc#� rYNsh� zGd\Ә� � � � u� f� nx� � � ##V�
� k� Y� � � G� � � M#� #� rG� 6S$Ma� ӗ� #[䍤���ZoS� y#y9�|�‫ة‬i� #6� =W� � C� ŇıY#l� � |
� M� Bc#� � gG� � rYtl� M#X� ?+O� o� t� F� #� *ʔ� � � @В
%i� � � PWӲZg� 5� � � ;� 3Z� � � >� # � � #� #sw� � :[� tgm� |
Bw� E#8u� ###n� � m3#� f8f:� K� Y� A� � � G
&� Hɱ� � b#]k� <#� S<#� #� #H� � � � � #͚� ]� � #� � C##1� #� � r� s� � � � � � � � #� N� � ZsSg�
� #Q� � |� K{\<~ � g‫�ݿ‬g� GH%� � qT� � d� #_� � o(� � d#� � #{wty?
#5� � l� � � J� � � #k� � zs� � #� P]� P� @� � #� #6#� A_� � � � � � � � � ?
#� Z6� #� � � � � ŷ&v� UU4� � l"9Y!n� � u� � =#� 8� >!e� a#d� �
%ki� )_� #M#� IKK<s� � � � F� � � � jm#
� !� � 5� x#Sk� [^� 9� ã#� � ‫�ޚ‬#� � S<!� <?Y|� #� %w� 3� � � � \� � %##� \
� j{_a� � Y)#� 6Og� QJC^� #� �� 2 � #!O3$y� #nT� � 1P‫ݑ‬s� U� � 2� �
� H� � dd� c s6
ie� � � � Q� #� � � � � x� P)� � q 氛 rB=� ]##.� � � � r^L� � Y� � F&� `#Ny�
� � � � � X3‫ג‬k� 3~[:*M� b.� � ;� #� #� #� � m� � #� ‫��ܮ‬#� � M#� C2� � #(#y� x� Y##A� ?
>+� P� o� &ý� � � t� � � � .e� ]� T##� � GC#a� � � � M� g4� � (gm� � � (\� #� #lU$� � -
� #e#/ē� _� � z� � 9p.� Ѽ� � � p2� � 9� #%{� � ]t� pX2� r� � Cް��Hӌ� (� 2� � 4� � � J|n� � B#� #
‫ۇ‬Cg� N6#ȩ*e1Ѵ� � ######F� bw#
� D� sBua~#[� � B� � � ]`‫ޖ‬:##wT� #� � *x###y(� O� u� '� � � T� M� � � #� � � #� � � #9� 0� {� h�
T#� � � eEQ
#� � QJ#� � #l� D#J,� � #� � y� � zq7� XI#]� G� � #� o� '� '� 7� (� ~� }K� W� h� � #� {#� "� ]9#
� � #� 5� 4v� � � N#� � � � UL� #� � �
i� 56� � � ER� X#N#a� � #i� *� � >� � � #E-uC� :#� � .� UV� #� #� � � #!U� ]ߡ���p� ~ 텀�Ò�
� � 4� #xm3� � � U� � ##� *� 9�#‫ف‬
� Qg� O� #� � 蠕�K##� L� � *Hfk��-h#� K� � � #zc� w(� #� FN#*� � � G� #‫ۆ‬#e#� � B&� � 0� u
Lcl#j� � � #n� C� 8>
� � � � 8� #F� <Qt� � l#� :� 梇
F� [7[p+#� lm� � #� #� ≹ $� #� :]c#� � � U#� a`� � � � h� i^kY� x� #kV� >#ᑸ� � ,U� � � � 6ê
#rZ� Z� � Ye� #;� #M � S5� � � � � 5w� J� #� � >-� 7S� b#� >� � � � \ְ�##rv\
S^^� ##� dC� � Tcu4M� [e##3}Y� � QoR� � � � � #� U� ջ� 1� OO#� � XLl� � 2?u-
T� #fp#<� � 8� )avE2� � � m� #<� � #� Wk� � � )#F� � N� #� ý� F� {� � #ä"� #�
%#� � G#� B� � � � � c� =X� #� � � � 8Z� 26� O� ~W#� � � #1� � � Ц� � #c� � � )̛� k� � #/TL� /�
%Q#�~#� y� U( � '� a� K� #WI� #� m� `taٖ#� /� )� #� #� )� Ձ � � U� #� *� � !� #괓�
�#ʴ� � :� L� � #u#� � #� 2� � #� ҟ� #� I� ʵʹ� � Zx#� ]dbֻ�<ը#4#‫ � �܉‬,� #� B#� � )4s"� nkm?
� >*##� X_xS� � Z� � #$#� #� ؊%Y#� � S� � c� � � &� d� ##G� (i� � )#B� � �
j#/#S� � #]� (� $�
� #e#� � :� � � � � ##Bk� "X� � #� #
� � � f� � #� h� � L� x� L_� ST#�
\� ‫ت‬p#� [� � Ii(5Q� � � � e�ޭ�jtDq4� J� � sY-� � kU#� � � J7� � 9� Ȫ� WR� � <7#!
� � d� 8� I� /� J#[� � M� )S#� ###$#� 2� G#� 3� 2#� u}K� %-� � � &� h�
#Ӛ|r� � 0� #y{� #Sbw� � � ҚR\g� {##p� � � <� � � ]R� � v=m#� k� � #� QMms#Ou�
� h� � j� � � Ȋ� #� hB=*� 3� c� tl#vt#g#})� #$� � a� Ӊy� � :>`� #T� � #I� )� y� � ඗j#(� &#� � o
� � She8_� � 7� � Ղ{� ‫��ڪ‬ó� $� `
� ']#t� ,� 8� 6 Z9� #t##6~� � � � ۸ 0� #'� #G� #F� $#� ajc� � � � ^� � 汣��

�d� � � � #� � � �
jˆX\��#f�i�#���VY/�Ok����#��9y:jV�7}��H��()‫���ۅ‬y�
s� V� #ɮx� FML� g� 5� � � M� #� � q^Օ
݊ Ofm�m���#�"��1‫ � � � �*ܩ‬Rx� � P#� -
<� Sa� � � � Tѱ� ai� {� E� F###c� Y_M8� � ;]Q� ;>#� Ҩ� � � )$� � � � � T'}-c?� 8� #� � ,� p� ?
� � o� @T-� � E� aqÆ�B� ]DY)� I#U\0#̫#� �X+� ~� � [k� 3w� #r� Ҽ`wT� R5� Lp� #� t� #� ҙ� b#Ӛz
P9� #� 5#x%m� � � �
Kc�
��Tb�
� ���o�
��n� W� 躪�a#� i`� � L-#/� #� � Q_� X� � � � %F� f#� R� -
#� E� Y� � #d&q`� (� � F� � &� � � v� Q>� lm� � � w� � � y� #� � � V?b� $�
(#~� #� � � aūn� � � I� #W%�
"Pxs�� #�##################################### ###
� ######

###
#
###########
###

� � #########"#######� � #� ##########################
#################}########!1A##Qa#"q#2� � � ##B� � #R� � $3br�
#####
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz� � � � � � � � � � � � � � � � � � � � � � � �
� � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � #######
###################
#################w#######!1##AQ#aq#"2� ##B� � � � #3R� #br�
#$4�
%� ####&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz� � � � � � � � � � � � � � � � � � � � �
���������������������������������������������������� #
########?#� � ]=U� � � Q� � � 7‫ � �ٳ‬h� #� ҹ� � #T� � � #Wp� � � � �
� � � lnV� � z� � � � /B[#l� � ;� CG� � A#d|5jY� ##u� � ?
ő� � V� � � � !'� � :� jŧ� � � � � o� � � <#
%ğ,x� V� S#_u� � #j_� � #� ǎ� � H{t2%� Y� ;0� .� '� � "� � � sƟ#� � t� R�
+LO+N� A� � � M� � T� x#� G� � `� � � *e� wx#� � #� 2� <� ]#� #Z[� � � � Ø%w
� #^� 7� � � � 3?/^+2� � ^\� � � g� P7� � � uA� � O� U� � ~o� � �
� 8� 8� #� j� � #� #� #� D� 4� #Ǐ� ~Z� i~X� � k� � ªx#� � e� g� ]� 6� e� i\� � C� =?
� � � � #w� � _
� <Z� ʡ� ø� E� � v� v##=.q#g� � ߕV� Mާ����e6� � � � � v� :
f?� � #zm� L� � 8)� o� � zT� � � ɷ� � t#� � Y� #� VFp� #e\#� � #� |-
4� 4� In2� � 6#� Us#։ � #g� � 6'� WZ� <;n� � � Q� � ‫ �>ڭ‬#� � ##^� ӹ'#&� &>� 3� 6B?
� � U7� � � ~� � G� ##� � #� Z`rgOa� &� � � #u#� 1#~� � � U� Ѥ� w� #� h#� � � q� 5#� q]
� N#� 7
� � *� � ]� � ‫ݮ‬G� �
#� � H� 6>U'w� #� � /� � � � [y� � � I� � � [iWs4dm� s� o� � o#� 4^#� � y� � go� 5}

q� f� @O� � E� � }� � kY� � � c� e� � #� BV#VG1� #V� � � � � /� � f9S� ɯ� � � ]V� tg#r� /� #W ‫ݟ‬#.#


M� I� +� � \� 2� � _x"&� � V� i'I/#� s� )� Z�ۚv� <p$� � H� � #� � � � =� o#[*}� \
� � � bx+� w� � � ?� � ;:kp\�� � {W� |.�
߆�|d� O� #,`#R� � � :� '{#^#� � � <� � � ]#� � \#ҽ/� #� � � {� #77� � <� � � ?
� &� � � f� � <� � � � � #FI� P� i� #� j{xd� kY'� =� � � l� }� T� � JL� � � #� Z� � u(� -
#� �ۧ�^� � ;k߳#� � a#?#� I
X� a#� 7m� � )� #� <I%� L� -� � ##� ##oU� M� � i|=O,67D� � #.� !
%.]� 4� >� =� +#� � � #.� � � "� 2� P� #� #� � 7##l� #� W#� � � #|
#� ò� 4� }V� � ;#)Y@� � � z� >$xK2Y� � y� � #� 0#� #N1=#� � � � wl#� T.�
"9*� � 5� � � #4� � z� � � ‫�چ‬h� � � Ej� #� &� ;/� Ƈ<!
� #� #'� gE'� &bUc^j'� #� <i� � � ~2� 3� #Fue� � 7-ʕ� ]ƒ� #� � d� � KYU� ˉ� � � @� � /� � 2n?
� _ʨ� � S� � �
#uZ� '� ƹu#� � ƒIq(H� � I>� � � g� ]� � � -� <I� � � ҟ)� }� cցJ� � � ~#� ?
� Z� q� � #� ž� O� � � � � 2(?(9� #f� � #(#� � � #U&� I� � J� S� mI� ?v� ߇�g� � Qt� � � o_�
‫|ר‬X� |3� g� � ep`� � 팎�$� ##‫^ܓ‬y� #� D� o� #� n##x6� ?d� � +� d\42� -� =A#� � KJ� � � � � $� � ?
� Z� � J� )� � ^?�
� {� #� ja{p� uQY� � R=� � � ETL� {#t� N� � � F� D� � � �ֻ��)#� � ,� � '� � � <� j� fqr� X;|
� � Ɲ� #‫ � �>ۮ‬M� � � #m� � v� � � 4#� .4xg;� � � w#M� +� W#� � @� 9� 5� c� 5� � � |A� [� � i2� #E
� cS)r� � � � � 7� � ##� #� #� � � � ස G� � V##� #� � Es#5� � &� � Ojֲ�'dR$ �
� #� � #H� ɠXC� hv7� dDIJ� C� :`u� � � � � 7CФ� 9-� � � � M� n� � � � W� [� R� ax� ,
‫��ܮ‬#'� � � ώ� I� ]Liz}� � dS!R� l#� `s� � ~� � _#|E#|� � *#� `+� ߆��� ]#=� � _� {W� ?
� � #Ɲ� :� /� ǰ\\� #*� #� q_%|#� ;ϊ:t{s� � � {#8� 8� %A� #� � ?
O�ԓT� @� � � � ]� V� � W� ##� � T� � <� _� � #c� ӆ� X� � ޵��(� uM7B� � ~#� � �
ˈ<� "� � c� � 3� +� #x� � 7� � Fi� � #� � � � #;� #� "UЎs\GTb� sҿeI� 7 㟆#"� -� � .� H� #F� #i
�� ##\% � � � #M� <y$� B{W� � &д� #x� � T� k� � ť� O� =_E� � � � \m
� \‫̞~׼‬#
%H� � О##3_L� � #� #� � [X|I� +U� � W� � #&� }� #� #� #s� 4� � ?#�
%� Z� #þ$� ##'uVy� � #<#� lW� K� � C� M#� � 덿 y� $� � � #� � � #� =� 6� M� � W։ � #� � � (� ?
� z� � #j� _� � =Q� � ,Ћ� � W#� 8FG� � � (� ##� � � /#� � #\
wv� #� E� � 1� 5� #� � z_ijy'� � #om� � #� � � #/� #� {W� � χ� K� 6� � � V� >ˠ#DP� #�
v'� #z� o� -� � wH#� om#� � � qk#P� � � � D� � #Z5y� |)� #4#߂� _Gk<V� d� #� � � }�
��
Փ � � #� � #� +� ]u� }'��
7%d  #3� ˲+u#,K#� <+ � � M� � � X� omp� Z,� � � F� G� h� � � � ʑ� � Ȳ#� � H
#ֽ;� ?� W� %Ӗ� |?;� #\X� B+� t_#� ~� o#� Y‫�ؤ‬Mo#� � � � N#� v� [� � \
� G� � � 4i#Αy#� l� 0PG� '� #� � � � #� |yy� ƞ#� +� /� #֛4<� \;0'� ##� x� #� � � � WX� z� q�
%� #� � +� ƿ#� GI#� #� u<� � ###� _.� � ?#<#� Gv� � #b#c� #ö=� � #|� j� #� ~� Z� ,6�̂ \
s� � � � #� � � ꖳ‫��ۺ‬LY#� U� � #Vx� #=&k#.� � ##rX� S� \� � � ;� A�
‫ � �&ص‬C� � � ^� OZ#J(� � � *#� � ꟳ<�#��@�#��$�m9
� 8?� s#� A� -� � :� � � "� � �
� r#<#� ‫ �ל‬V� d� !Ҽ#qy#� � _� I� v
p#� +S� ##� }C� '� #� >#� � of6� m� � #9#d� � #W/,nK� s� � � ?� � � 9֢�t;a-� � � #
� � j#� ##u� � z� z#� m#� <BL+� 6� q\4‫ � � �׉‬#
ȼ� � I� YI#� � X� � z� � ##� � _#� � i<I� E}*� ..� � }� � #� Jf� q:‫ۿ‬#ȎW� c� !
j� � #� Ǿ� LW5a� J� Ӂ#� � �
� Ɍ� S� o� � #ծ>� }csjA� � [� � Z� Q&� *\� 'i� %� ##� Y� � � � #� � #�
� � /#� /S� 4� � J� � � � � u� |+� a� � � .� � ^� � � 61#� ,� � w� � � #� � |� w� � #� � �
v� � #|7� � #� � � R� C#� #4Ip1� +� � >
� � Iw� � � � #� � � c� '#� z� � 5M>� 1� B#� � #J̋ {� Ͼ)� #� >� � c� � #\
j#Ȼa#� #$� lk� #� � � � ,Y� N##~�֤�֤�>:� ,� E� xcC� � #� � R֣#� W8^� � ##N+� � H� I#6� � n� v� )/
wP� <� W� E� � � � � ##� x� 2[.#� � Z� Ӿxgú� k� #� #� � � 2B� `� #� � mJ� y#?
‫ �} �;ݬ‬#{� � #y"eA� � '� #� Lc� J� � Aau� [� � :mɯ� � g#x� � #� � � � G\}+� _� *� #� � _#� -
� � j� � z� Z� c� \� >5� � � #-
� � � &� s� D� 9E#� #� � � #� � � � #}#Uk##hv� � E� #i� � rbcҽ ‫ � �׃‬Y� � � � Z� � �
X� � � T� #{� r� #� !� C� x� � � CM� � � SM#� C� � � #CԒ=k� m#� 6� � SÚ� � ¿#[� � [#� � @� � � _
#� � yϡ5� #� <� � � � 2� \o#� .� %
� .Ц0� � � #q]#� o7� #� � � +� ?� ^#� � M� 3[#u� � q� w� #3� � x� � � Ş.� )㏆#<� � O�
‫{��ؤ‬$� &a� #� F+� o� � � #(M*o� � _� � � kmV1� X݂P#`� z#� Lc� #� � -
#Z� #� ~#� Ö� � � ;� � � m� 6� GG#� � ~� � � ^� w{Ṛ� � Xf� e#i#� � � #_� x� � � !� A� /� � #� � \
� � t� ##� � &5\u� #h� {� w� 4� #� j� � #\� m� IS
� � #� � t� � s� c� � � 9#}� O#x� � � >� o� ##� .� Ź� #l!� =� þ0� #� ^#� >#� #� 4
M#l� � 7m� � � � #'� 5� _#~&x#➻� � /� ^� s/� -� � �
� � @� ###� � x#� � � ^#� � /� Mo� x� � � � y sj� � � #� gSWsJNQ� � � � A� j#� #� #mz� � � -
� #:� P� S� 9&� � � S� #T� _#� N� wu� u� m� X5� � )� 8� \� W� #� _� !
� � � � T� #&� x� � -'u'<� X?#uߎ�*� � � #� � -n<� � � � #� � � |� � 6Gd]㩳�O� 2\ä� � 趖
>tq� 7k� ] � � 8� � #� � ἚG� "� ]� f#� � $� 0� � zf� KO
[&� a� � <E� #2� 2� 6� #� $8� #� #� � ##xn� Y� � ~4� ~��
8� � B� 0#� #� J+� � )3� � l4K� � Y� � #]� � � � #� #� � #k� � #4� m#� � � *�
#� #� }#� � � � j� #ԑٛas#� 4RLY� #� =>� � � #>#� -� � /u� #|H� Դ � #n#P"M� ;� � }� [T� #� � ?
z� � ^>2x� � "� Z� #h$� � .Р#� � \� #� � {� � Y#� ;� `� � c#� 8� � #� � � #h� � m7X� R� !� � � 埓
%� /\wp=j#� #/� � � #� � 9#g� � �
Ծ
� #Iduq� � � 5� � t� � #� V_� Z� ?h-e� � � m� #;Kde� b#I� M{� � #� � [� � {� >#� � #� � v]� /
� � ##|i� k� � � #u� #<qF‫�ך‬Ļb� 26#� ⾇�#� l<Qe� � )Γ� � F� 5o� [erJ� � � � � NR� � Rn3?� ?
� #� GF� � � t� � � ##.s� _#|N� M� # #� � � #� 8-
� � E� &p� Ҿ� � i7� #� I� 5� � m'L� � #A(:,~� � � o� � σ� /� � #� &� � � m� � N� L� � r� � ޹cNI‫�ݚ‬ʤ
O� l>#� v� W#� � � ZO7� � � l|� #� o� O 짣 9� � � � 7� .� � #� � � � #� :_� � ^Aikq"� k� #� <0#
޵�##� � q|� #� l� [� ax� #XJ� Xc� � Q� 4z#<� #� � � φ� � O� -� L#[[� |� � � #� � � /
� #.#
� � � � NZ)Jt� � 8|;#� f#� � \.f\
� :� q� #� #� � }� � #� zn� #� J� K$� � #� � � � )E� � ӫ#+#� #$ּY� J� � ]]D� � <� k/
� ##� � S[}.� � � � 8,� � {g� ?#� kt-� � p� K#%� z� =k� � m� 8 潼�/!ؑ#3;/e#� � J� F� <� ?=?
� #8� � 9YY� � � V#� � #� #_� � #� � <A� M#X� n4� i#͞� )� � �ۗ�#� � eֵO4� [� #\� � � #� � O� Z� ?
#� � ^#� #Û�
Z38� Bc� S� � .gI� � � #� � #_� � :n#� }� � � ϗ� G� � zƷ� � � d#� ;� � C� o#I� � <Q� � #j� a� N� r
� ʄpvg5� S� tF� q[� #� `e� � x'I� n{� X3q�
� � � V� ‫ݯ‬j� � � � #N� � ^� ##� � � |K� ~� 4‫܈‬Y� #� � I� � ?� n#� � U� ?� ##~� � #
%#N*� #e� � #� #7G� � Ӵ#s� uLJ4� N� #B� k#� Yb� zr##� � t� u� ##� � � � ?
#4� bHu;y� � PK� Ҽ_� I� #� Y� C� |#�ͬ %� � Aw� � VPKXO� ##q ‫ �؜‬#� ~� ?#<M� � � � � #>(C� � m||
� Eu#� [� #� ^� ###� \� � � 1� >� � o� � a� #� j� � � uz� H{#KZѢ;� ab####]� ##ֻ #� � � O
� x_� i� � [� l� � Z� � [� � � pKFq� � � #� � � #� |#� � � oy#� � � 캱�0� �
� � uj� � ##j� #� #� |v� #� � � G~#xu#z� Z^,O� � /� � r#� #9� RMoz#Ge� ?#� #� C<!%Ώ� � �
ߌ�=H� � � � ƢHs� 9#� }+� |#� /#x;� � � � #� � � � � H� � � � � 4� #[� FI� � #� �ٛ�?
� � � b� � � _� >$6� � Y#+R� ,m� #9S� N9w� p+� G�
O� Wvr� � a� � � #K3� � )rs� <� o� #n� � #� � ~#� � ZK� #~#� ##Ԝ� � � #� � [� � � #� � � i� � � #
� � � q|D� ?� ~"� ]� ‫׆‬o>S*� � I#t|zu� ?#� � � #?
d_#� � � .x#� � � #� #M#TkX� � 3� ##Ñ� <Տ#x� [� #O� � � #� </� #)̿i� NW� � `2#� L# =\qT ߺ
8.W� � x� t#G� � � /#� � #ҭ� K� R� /Θ� � z� #‫�ڠ‬N� � ;㟇����
�"k_#� q� #� � � 4#QP3� � #{g� 5� � � ##� � � >.x� � #� � � 5P� ť� � #֞OI#� � � G� Ⲵ�
� #� >� D,f� g� � v� \� t#� v� r� <R� � #� Q� � � CԼ-� 3T7‫ � �׼‬bK9� � � � � X� |
� t� � � ^� � � z� � .� km#� � k� d� 4� #2� � r� � }J� � &� � #Ş
� #� W� #� � � K}N� � � � r� vП� Y� #� S� N+ϼ5� G� u� -
� sG� � #� � }� ϩ� V� � � ;J� � 9� 85� #� G#Y;� � � Wř<I� k� cő� �֗,� � � #B#� 8� ^I� ##[� <9u�
#ğ#� � H� � � #� 3� }R#� � `G#� GZ]/G‫׵‬O� � � � ,<Pu1rT� wu`Э� qt� � |
ξ� u� qz� � � � g� � � � � � #� #l,[t#� D� #� � � d� � #`ֲ�gtȂ� � 3� g� ?� Z� #捣��mc#�
� � v#� s� � W� � � � O� _� /#|{𞩩Xig@� � � � 8� '� d#Z� ##I'� ^Ǩ� W� 76� � !� � k
� LZ� :&� � #� � � � � � wpz#_-� #� X� )~� ##� � #�
� � � � R+h� � � � ]� |� t� � � #� #ƣi� Wg� � � .5� -[syr� .� o=� }#� ##(� #� #� #� � |
2� MS� � � Ii4� � FF2}k� #� � � � ψ%� � #|� � ~� � � � _X� B� #k#� ##?#Z#� ]�
%� 2}9� ^� � vs� � ]_#49%� � _i#� M%� Gm� � A� T� #� � � � 6� ##c� ‫�׬‬#� >� b� � � En
� St‫��ھ‬o� � #|7/
� � [� � 4� � � m� +� Q#� '� � #� #Q� ^� � '� #� ##� � V#$� W� ;� � � ##KB� s#� &΅#� W
� 6� � =� #Dм#� ##iV~>� \� � � � � -5##Hx� #U� C� � _Nxk� #� � ;i4=6� � � h‫٭‬
7O� � G� #� 'ҼW� #� #� t� � #� � � e� � wwq� � � Һ� � 7E� � ;#}k� >#x� � D�
Z?� � � � <A� ^Oo� #.##ːc� � y� d� 4� *� 7C� У� � !I4� #^� q/� 巹
�3#� n#� � ^}� Ai>$U� � � #X� e� #� \� Cq �� # � ]� � $0� #U� T� � 4� @� ‫ܤ‬Z� ZJ#� ##? � \
o� ##� � 2� � C� � � K� -� � � � q� � � � x� ~:� 8� � #� w#� ?#� W#� ###� A� <� v;e� =�
޼�#� #� ǁ~#� � Ɨ� i#M.e� � #� #j� � � z� #� � M� � � � 7#� � gmkn #Q� � x?
tz� � � � � #� #� � � � y� q� j#
9� ##v?*� � � w&� #� � � � � j� (Ԥ� 7� u=~~� � u� ##� � � � ?� O� � :� ā� #!� � � � F?
� 2� '� � ^\E##� � � � 3_}� ?� ;� � #� #� Ğ-� #
‫�� � ۈ‬##f*#� 0� � � z#� X� � G#� N� � G� gǿ#h� ##� #x� � �
ೕ\� � � � 8#� #h_� � #>;� _#/<A}m� _� :\
� � � � Kr� �
Gr� $##� r� � q� � � ##� � � � GU� >� #� 5MS� � ŧ� WG#-� )
L� s� pk� &� ᦣ� Oq
%� b� ##͜� >� � O#O#� w2� "� i]� z� � i#� #� � � � � ##� #� P� � #� � e� � #6� � � oz�ٖ�w� 5#� �
� � B� J� K� � m Ҭ� � � A� � � wl{‫���׾‬L~#=� 9{� � � \� � 2� q>� � � ?��#�
��� � ‫׾‬$x� � � (� -
� pf� � m#� +�#h� � #� #� /� #� � � � B#J� h>#� � yv� #pN9A� � � � K� O � K� #/�
c� ^� � � #� #-� ‫܆‬K� 2� ZBdCОT� ;W� xo� #� N{� � xk�
��]���
� 2�
� �:Z� � �� c5� � c� :#� ‫>�ڷ‬
� � �hϡ�
|?� � ?#^� � @m?� <9� � � � Z� BXnh� q� #gPx� B� +� � � w#Q|
`� <`<1� � m� #� � #d� E=v� � � � #� >� � #� ##� � c� O� � � sO‫܋‬a� � � 4� � B� 6� #� � #� � � � �
� � � O#� � [� Ɛ[j6� ]#ƚf� � � ][� � ;#a#� #LT� K#� � � #� � ~
>3� 4#o#xm#n� 7� ^� � � F� � ő� � =� V� � ?� K� {�
%� � <Qt� }� � � j� � � � � 0C#� $� � #� � #� ##� � w{c� |+� � � o#k� 2>� o� � � � o?
t##l9� ^� q� OP� 4'/ �
Յ � a� s� #� � #� � � (� <}#� � � � [ún� � � � ##.� #Pq� � � � � _#�
� ķ#&� .� (� y#D^� 8G� o� s#J<
>|2� #� � � cT� #� l� Mch� C:#>[� N##� � yu� � � � � � � � g� � � 5X� � i#]� s� � � [b:� Ǽ/
� ϥtz� � Җ/� #K� G� � � Cqi#i#_� }� f##� � q� \� � '}� � #i#� � |n� � � ?� � �
� � w� � C}� ]� x� 1� #� � N�� >#� V � � M� � %#k� � [� %�ܴ+辄��+� լ� .xk[� � >
� � � #� � #� z� � � G� #Eqʠ#
� #h� f� � #� � � � � w� � /� 1� � � |K� I4W� � L 呿�W� � � 9;#� � #� � >� 4?#� 5#-
� zlW� Z� D� � � ##� 纏�##� � #큮|#� -|
3q(� O#� � d2g>a#� � u� #� uo� � #� � ,t� OM� E]3O� � #o#� N� Eˑ� � ?
(� w#� )� � #WX� #� Y� υ� |',&#� -� � 6#� #‫ۇ‬#� � � +h� 3
� � � #� 7ߴ� ~$� #� � W� sg� M � k:#� *� 2� ##� � � � � Z#� |k� � >&|
7� Ʒ� � ;� � e� ;� C*D� � � � ##� #^�_� � A� _#j>#� � ;� <=y� 嬴�
�x� � � � s#� #� PǠ� P� � � ni� � � |-� �m����!0O�
� � ���"Yn"##�
� � � � �����#�
��#��ӿ�
� �J�
��)��� � � *� t� +_� v� � � ;}7Ɋ-
� #DN� i#� #� � � � #� � � � P� � � #� υ� � .5M:1vd[a'� #� � #r1_hh� #� � #_xNM'Z� t{� #� � !
� � � &;� � "#� A� #ps� � � � � >
� ҿ#� [� ?� #Gm%4� u(m� � #� x� � ‫�[�������ڲ‬9���‫�ق‬o� � � � � <k� � #� |#� \cl#
� r� � #2f� H� #� � � #� � [W� � � � ##� � � � � [� #� � @q#� 0� $� � � � � � � #� � 6x� � WR|
5� � � m;T� &#� � � ê� _� l ]� ?v� ##� k� 5� � � rM53� � � f� x<)o� S� ~#� � � O� � � -� � �
‫ڕ‬#I#� A#� � � #N� |s� M� r� � #� � � $� � N� � � y� #�
� ‫ݐ‬v#� h� #>#� #J� 5� � � ##N� <?� E#� � !� N� p� � � cNJ
s� � ~� � #� � ##� � >#� � � X� f� #� #� 4� � Ӯ� ȅ� � =� b� � � )� =#� =/� ‫�މ‬#� #� ď� � R� � !
� #SN� � � � c� 쓌##:W� x� � �

� � n� ŭ� � � � � Te� � ##I'RTv� )� � ~#� χ� #� � o� � }� � Y� � � m#� d#ny#� &#M� � � s� � #� *x


� B҃j� � x� 8L:Ωz#ʴ#‫ؖ‬W� � r8#� 3I5(� ##� ~/� ?� >#� � -� û]� � � � ##9� � ?� #=1\� � K# � #� ?
� ?� � � � � D� 6[#� e'*є� � � #sZ##.<#� � ;� # � i� k?#� {� a�
%� � P� ^� � � #s� � #� V7� � � *� _� ^$� � mn4� � |!� � #[� ^� � N\
Դ � #� � � #![� � #� r>Ve#q� � �
g� #� � 70� Y#C� #C=<
� � [� /º#� � � �
uqr�
� ��� ;t>�
� � ��
��� <g�
��� x��D�
� ���T�
����
N������#kd###�
��� ?� U#� ##+� #� � � 3\
� � � #*� +<� � #� � W<&� � t=� � #�
b� � ?0� .Ic� � ‫�ڿ‬K-#� ##� #g� #|;� #� � � 4ֲ���FFq� _#� � � #5� � � \18E� � � #� 3k1� #� A
‫�ڨ‬K#ʉ� � Ӂ_I� � J� � � � #� ~� x'� #� ##� #� � V� y'� ;(� � ,"y� � f#%rO5� ?
� #� L� #� � #qa� ‫ކ‬Ul#NE}#� � � ~� � 8� #� ##:aEm� # #� #� ‫׽‬,%#� � � Z� � � � W� ##ᇄ�
� � >>� g� y� }7G� ##c&7q#$q� j� � � #� ~#� #� Ydf� � � #!� #� � � � � y� � � gt� � |����
4"]�#��#� #� a� k� q� � =� w� � � � � � Ğ#� � o#� x� F� ##� 闙
#d� 7)##+� � � � � � m;� E� � � � >{†9� lio� C#� � `� p_#� G� #� #� #� #� 5#� "*� İ
� dpT*t� y� � � ?#m -� t_#|3ԼE� � ]J� Z#� � � #� ?� � S� +� {#� � � c‫���ڵ‬#?
fG� U� � � � M{#7V� &� (� � LUM7� #� � � s~� -� W}� K� p� #� _� ‫�ܪ‬e!鴑�#� lq^E#� � y� � � #
� � � � n� G� ##� � j#${;� � � l9u3‫ �[ � �ے‬#� � � C� N� � � #� � u#B<� x� WҚW� � q#h
� � i$Y� #
<C� � #� 8|Gi� � `� Cq� � Z� J� > � � M� Q� � `� � #� ޽��#/-� +_#X_+,l.� 6##� Ƕ8� � m?
h_� #� � #� _� J|#� |I� \6� =[L� #� #L|� Ѷ6� #� � #� � � Z|
2� ~#� � Z� � � � [Yu8� � {� � W� ##� #� � #� � � #� � !
� � #� � � c� k� .� k� X� � #¶� a� #4� � <� � rk� #f� � #� Η� Q� W� MD� � #� Q� � � 2� G
� O;A� `� #� � ~&|#� ,~#� �߳.� � � � O� � Q� #� ,� 7� ‫ݛ‬ba28� � #� � � � � g� �‫ׅ��� ׅ‬
� � #� � ]
l[� z� ~#X\� � � � 4#� ##� s� ?ş
g� W� S\� � ԋ#� -ifg� ;� � � #� � � 5� ~� #� #� #� � � O� � � 6#�:‫ � �ڜ‬D� Dp� � -� ʀx v� \
U� � ##� (� s|`� ý� >"� � � #A� K� ,� Uz#� � #� � G� � #j{� � SC#?� O� 7� #� #� � /� � G� i� K#C
���
n� � � A#� >� � #� χ� z� � #� � � 
� � #_� o� #� H=
� #� � � � � ~� � #n<#� O� � � #{� 4Zķ� Gou#9� #� � � � 8#k#Ğ*� � � 6� � #� � � � � �
� � izl� O~c#DQ#8� � � #� ^ � #� � |#� � � f� K� e� � <
� � #'P� � � � � 7E� 1� � }� u�
%#x� � � � � #d� m|7� � ‫�ط‬d� #� #/� d� #� pn� � � � � � � � � ?#<%� I�
� _� ko� #� _&� � � m� �
‫މ‬e~D� #m#� � � )� � #� � � ~,� >� e+� :t� � #N� � #� )##;#� � #� � )� � � � #� � � � =j� � 1@R##
� mׂ�#� � � � 8'� � qA2V� � #� y� ‫?���ݭ‬Xd� � Y� #� � mxw#<� � 39-� � � y� <� i� [� � |
ow� =k##,� � 6##� d� � M5� e� bp 䯧"� 3CԚ� � � M 㑧
�#� � � � o#� � � N� � #w`vl� jǎ� i� � o� o� {� � � #� 4#� #� #� {ŗ#� Iq� M#� #� ##84#� >� � u�
Ƶwῇ~(#.� �
؉<3� <� D� f~#I� {� #� � � � � � � #� � W� o� � #G� � Wp� p� >� :pU� P� � GZ� � J� � }F� O� 㧍
N� � � � � � [� y� � v� 0� 2 ᱒}M� /� #� g� � #� #?g� .� � z� � o� #� #q� ǩ� #
� � � w� � S� #� 欉�o� � #� Ey� %� 2xo�
‫ � �&�އ‬b� /� u]:6� #W$Rc(;`q[z5� � � � #/� � $� W� � M5� #iZ#� j� � � z� #
onx� #� |}� +� #� |N� � � Iot� m� #� :s#� � CM*d##� � � 7� .� ##� rx#Ɠk##� #� � WU� ;� [� � � ?
� �##� #h� � � � #K� ]� � Y� #럲_� u� #\#>� � HQ� � [i#E� ˞� Ӹ� � ⟇4}+E� #K� #� � m4#� � #͒!
y##� H� #� � � � � xN� � K� � #o� � #� ˧� � #� � f"� ##� M� � � v� o� � #d� g� u/#|@_#�۫�Q7 M
#� n� 9v|#� #� OC� s� #� � :� � <� o� ~O#� J� � � � 錷 w#� �
‫@| � � ם‬##� � � x_� g� }j� Ē2� #� � T� �
vF� #� x� ##� u� E� � � #� � � ‫�׷‬#� � _� � #� � #� #� z#� {� � � ~#� � � l� ~?#I.�
r,� � � z[� �
� � <T� cJ{� � #J� � 5� � w#� ?e#yZ� � ‫ן‬:s� '� =k.o� '� � � 6� � O#|
3k� ԂI<� {"� )� #� =j� � � o58l-5� b#{\� 5�ۖ#� � 1� � 6'ҽ� � � � � e
� � Dc#%a� #� U� S� :� |� � #� #� � � F;� � � u� Ex� #� #‫�ؿ‬O� � � � � #� � � E� -#+�֙v
F:� b� � ]ED2I� #� w~U�
߂v]� b� � '� Wo� %}G#� u*� >� � � i#� [(� � � (� #/#� #� m/� � I#B� � #� � P� a� s� 6
A� � Ҽ#� � � #� zUĹ� � ##� *� � #� � � G� � Sj� x� � � � ,� � � � AԞ� � a� +� <g� x3J� � #� 0� � !
� Rk� #� Q� � � � ne%1�#�%�#}���3} �� � #� � ʋ� � CO� G� � s� � >#� � ##uk� [� 8,#3Ҭ
� Yx##1� � >� #� � � =� j� � 6� � #� #� h� � 7� #� !šOC� ¼� � F� � #Y� � K𿊮
ƒ4}.q� ##k� � � Ezm=� � � � � � [� � G� � #~� 83jZfS� #F� � fy� 9� � }
+� {#1ٞ��#� O� ~#� � O� '� � }f)5#� � 2=̘� o?
t� � z#� � � #� #� #� � ~џ� w� .� � #� � 5M#� #� � � � � FT� #n� #� � 7� � '� /� � m� � x� Pӵ!
#� #>###g� � [� =x.?#hSk_#>#]� ^#E}� � :� � o� <�
� � sS� 5[#� � � G� 9� i� }� X� #� � puO� L� o#}� U� � #� � � |_� � gT� l#
� |=wh� PIovV{##� M#� � � l#s� y� � � #h�
Y� -� K� � � #� H� T� <7#� � � � :� J4� #� /#9� � �
� � � fo#i:w� <-1� � խb##[� f,Ü#� i#� � z#� � `~� _� � � � � +� {?#‫ۻ‬#� � � � y� '� h� #� � #!
� ^� ᛏ � #>
� � � � Cx� K� #j6� 4-##ʷ� `le� � ǚG� J� � #x#� #� z4?� � � C� � V4#[� � � K� � �
� � d� � W� xk� _#� #|@� #|J� Ƶ� � {� i� #<7AH� c� � #W� z� 3� � #x� ㇃<#
��ߴ����x� � � v� qk1^� ##� � � � �֯�֯�� '� � � q� ;##x'K#MZO#‫��ۈ‬#zĮF� � � #� +� � � #� � � �
� 7+�%‫ټ‬#p� � ##� $g� X� #/� 1� t� � {� #� � � � � O� #[� #� � 6� � #ir� ##27H-
� � #r@� <� L� >� � � � w� G� � ߅~,m#ŚC� q� P� #Ҡ� d� � #� ##� � � #� kO� GĿ� � � _ÿ#xoY� � � � #
C� Ʋ� D�
� Ja#� 1� 7�‫> �׌‬%x� '� $m"� � Qy� x� [� "-6##%� � � #� rjo� � � #� #� � *� � � � � ##
_� � � � Dr� $r#� #q� � +H‫ � �'ݣ‬w� t� =kTo� �
� � ~� n� 4Mr@� <� h � )##� #� � � 7� M� W� #� � w# |-� x� M� 1k#/m
#� #@� � 6� � !

\
‫ � �׃‬##<+� i� o� #� o� � #]WP� � #.� � � � #� <#A� #$� � � #� #� #� � #A� � � � #� ##h#‫؃‬ēM,#x� N
E
� B� #� G� [� A#� 1� Ǎ � uּ�� � ^[mgKLx{P� (� n� QrV`S#$9� #W#� #� � � � @j� � )� � C� O
^h� � � ]� {]#5� *� � H� ;c� � � xF� � 3Y� l� � Kŋ� J� #� � v"�
� 0� 6rX� � #� O� � #� f� � F� � #
� � #T� � M ፋ s%‫܍‬
� #� � �L��#�
�� XSJ�
��� [#Jx� U� bi: ‫ �>׌‬i##� � � � D� ,"� #J� ?� #W#8� � #>0k##� #?
� #υ� #� t� }� i� }� B]N� #,[#� K� #� � � t� � >#� u{_#|R� � #� cq
� � � S� � #G� #� � #� &� � � #� ~(� � \� � /� � !� � A� [� � l� #Ơ� u8� �
ֱ�P� l� � #T� $� g� O� T~#� u� � � ]i� � j� � � � � d#;[� #� K� k[� i� � O#� z
%� � � #� � � � � � m� � � �
� � � � � � � � � 5/#~К� Ϊ5#>ͣ� CL&V� "0n� #� G� � r^#� � � � Լ/� ##ϪiZ� 5 � mI� � ռ� #>� (:� � U#
� jgk� B� 5� V� � |@� � #� ~�
� ‫���״‬,� F,� "e� � Xt� z� � � #?#� W#<#� }#]� � � )� � :� � 0� � #o� � r� ;� �ׄx� � � _#� "� � ?
� }KZ_#� L.c� t� J� jw#� � l|� #>Rx#� � #� ^#� 5� |
a� r� � m2�ܲ�ܲ�#� � MB� h� _#h� w$� h"� � k� /<?� � #� � #P� s� xr� \t� F� � � t/
o##4� 7R� � � j� � w#� ?� � W� |#� jQ7� � (#� _� � >cF#7� � >� � � #Ɩ6� +� |
Y� � Ot]v#$#f
� � #� } � q� g� s� W� K� /
#� #� ##� � ^� � � #� #(f� #� � [H#k� � h� z� ^� � pm#SVgi� #� #7P� մ�
� j� i� &� � � #� '#U"� � K� S#q�
� #� #:W� z#� WF� t� kĖw� &5#Zi� [1G� � ,� #� @� q� � �ܑ�ܑ`‫[׉‬I� � � � � :� � R84
‫ۇ‬##� #;� � � #� #m� � � � � ma#� � ^� � � #� N� z� � � #� � #� ]� � #t#� `� 1rG� � /
#rI� 6j� 4� � � L� O� Es� � #� � #� ##k� M� e� #36##� � t#D|� ##'� #� ?�
޳�##� � O� OX� PA� � � #� o� � JԛG� #� 4.#W-
ԙ
� x� #� � � � '+3�� k� kD� � ##� #� � � � _� � � � #� }#G� E}k� S� � � x� y� � 9ytG� � � � � �
%� _⏍� � R� #� � � N)k <� #� � ո � � � #e߅ � � |e� O� pG#� � G� � V� Q� � z� |
Q� #� � ##>#� � � P� � � #'O� KM� � � � Y#p:U_� � � ?#u#=S 㖕
#^@� M� � Д� Rx� '� G� btD� W�Eom� hz� � s� Ο� � Y‫]ڲ‬##� H##B� ư� O� ?
#� $x� � O� ǟ#xKY� "� � � v)$#H#
� '#� � t� � � � � #kZ=
� � � ;L.-#[##� W� #� |k‫׼‬/� RG� � x?
� � � � � 5� � � � @`� A� g� 9� � #� � � #� #� � ¿#� !x� � � '� o%WJ� #�
w2� #:� � #� � w� #� � [j#x&=KQ� � � � {� ;H� � <� [� � � ‫ـ‬꧷ q\
7� � � c� ##5y� #� � � � .� � =� wp� � #� #� B� ^� � x� � � � � q� @� a+� � #{b� Y‫!ף‬
ԕ
� "� � #g� � #� 8� keq� � #|d� u#^� F^i� � q#� |� � � O� #� e� � ]� #� � � +#� #� }� jo-
� � � #� :㩯 0� ?� ##|j� Y� #� #[-#n#� xn� 䖾@s$� � #� ޻�#� � � � � M###� 詡
�#� � � f� hA� � � r9� �
_#� #� ;� -� v� � � � ##uۭ#U� e� #� |
9� � � H#E� '� C� � � � � W� � #d� #� � � _� [� O� � � � G� o� � %� � }� #|� #!#v� w� r^#� ~
~� 6+� /� ^#� � A� � L� ##� � � � X� � � #ýA#� ~4� � #S� ]� &� � /� � k� � ~ � �
� 6J1|� {#� � 2#‫ܥ‬dv?#� #� #G� %� ď� #� � ^#� � #<I� Oy$W#� � #L
� #@� � #� ~(� (j� g� � #e� � FK� #� M� � � ŗmqo� � #Y
#� � O� c� � #~.7� m� #� #� � � W� #� #� n� � � � j� w3� � #9ɨ� -� /�߰�߰ ��_#?
f� � #v� � � � � � � p� 4� Sg� � ,� � � � m#� #{#� � τzY� 5� >#� #Dֵ?#/
� '� u[O2#b� ֕#� ##� #� r� #~"� #� � Xx#� ?� k� � #&� � � � � � 5#� � "?
C� #� #� u� � � #5� #� V#� D� � G� `� *� [2� � ;##z� � #� �
� (� #<� #i#� � *� � #� ez� m� � #g^#� <� � ‫^ � �=��ڦ‬#� � ##X� � O� #Q� � #� it� _N#Ŭ� #e{I� �
� <� V� #� #"h
e� #� #� L� � � #f� � O)H�
p� ?Ֆ<z� � � ZZ� � 5{#/� � x{O� #� Z� #� y"� ##Fs� � � #u� >-|@� #� j� _� � c
ߋ�m#� ,Px� � � � <gS*~k� Ð#6y#k@=� � ~� � x/� #� #>#� WA� l� +� /� ##� 4՚#� � |� � ~d |
� � � 5� |5� |P� ks� S� #� |+� � Km#� :U� `O!� #Y<� � � #`}k� /|_� ?s� � w� � ###� � Ƶ� ?
h� f'p� � C� C� � � &� � � � � � � /� � � ^#� m� [� #^#ߥ\� � I� T� � =qZr� [#� v� � � ##� Y� #ź/
� <7� o
� � >%� YXkv#4� ]� #h� #� � � #� #� � #x4}#� #� � SX� -Zk� ONX� =2i9� T'� #3� � � � � #~ӟ� ?
� � � l~6iw~-� � I#� � b� SE� n� � ~� � ##~5� � x� t� 2o� � � #� Gk� � T{ Z� l[� � 9&\|
� � � � ѝ� S� V}-� k� � ##� � #� #� CºM� � &q� � � 6� Aw� G#� � � � #r� � � ~%|U� � >~$|7
‫}�״‬J� � &� � � B(� Q� c� #� Yz#s� � O#� S� _� =#K� � #� � ևw� � V� 5� gk� � ##� >L� A� #+� � � Ŀ
#x#]� � #� � {� #j#۴#]� � !
� � � � ҹ� ]� d� +_aR� #� .� � KO� � � � 7c� x� � #z� � i� #� #0� &� #� � =� Ѿ*� /

#^� #� 7Ĩ.4#Ty� {� $ 5!� !� #� � � ?J� � Ľ� � -|#7� -5� I� 4� >0-fa� yy~#� #� W~#� � \
� <7#� � Y� #7CӴa#� o^� 5� "?� � #y� � � Xy� � ԏ6� � � � � #7� 4� � #� H 给 WT� � � V� G�
‫ݽ‬#:f� r� S|� � &� E� Y� GY� ƛO#� ^� #� SPo"� � #� � � yh� = =s‫����־‬ � d=� �
e#� � � +#� #� � /#t# � � O#_� � #m� w}Ef~ǖ� /� -7#� � )#� � k?
ź� kỨ7#� #m� #�ͮ .~8Y4p� #� S#g� � }wG� � � v� >‫�׶‬u� #;� � � :� � #� N#� 7� pg� 2‫ �ل‬O1� c� |
� 8� }##;� � � � ]� ##ǣ� 2� zD� � � k+`� � � � +� � �
� h� *� � z>#D%� Bː.� � _S}��1 � � � � OO#� Q‫��ݱ‬W� #2G� � >Z� � jj'q� #|'� #� <Y#k#� � � ߘ��
�t� ]#� � O� #� #� -� #� ##� g� ɝ#W� ��?
� "c� =� � #k� #� ##� Y� � � ~� � ##� Q� � 6� � #� [r2#� p\t9� C� ~?
Y� � � � #� � � M� � b}F� � ]� ӻd� #|#� � ‫ܨ‬#O&� � %� }� � � � t� � amv� � /#/#� ##� � ߴ���#� #� ?
� � � � ծHk� oQ� � � � #L� ##� #� � s� xo� z։� ?
#y� � � Ȓ=^� B#� � q� #� T� 1� X� #� � � � � E� � � KĖv##� d� M� � Z� � � � � nW#� � ##R4)x� W� �
� RYZ� � ##� ##wLE� U� � � 9� O#e� #� Ӛ� � � #<Q� Xm� � :� � V� � � z� \##%� ϸ#� ^� � � \
� � � U� � X� � E� p� #� � '˷� O� f� #TpFz� 8W� ##5#o� #� � h� � {� #� #� #k;� � #� #V##@#� >� �
ծ
##4� '� ,� |'� SA� � A#� � �d��#�
��6xq�
��� ��bk_#~5\x�
� � � � � �R�
��#��>#� ծH� � lt#� !3d� � >T� �
z� )� � j� g?#||� K҅� {y>� � %� N#� FN� ?
� #� � #k� #� #� #D� � r#� l'#6� f� � � � #i� #ϭL� � � q^� '� R|U� #� #|
P� }� � � � � � Xk#� � G#� � Ďs� #+\� ˾>Ҿ� � _� � 1� � ‫ڤ‬,nc� � -~t� /� 34� �
c� $� #� � � � +� � 4_#~� � ##&H<� #hzM� )� � ^gWL`� � #� {� m� � � C� ?
� o� � #� R� � � 5Kb� � � 5g9� =A� � � � � � � � � # � #� � � � #� #"� Ν� � y� kZN� � Ǩ� 86� D!
� � � a `� � � ##� `?#ik� Y� � ^3� � ;ͱ� cm� � � � #� � p� N� � 9##8� � � #� O#|\
� '� � � $� yw� mG� #Kᶴ� U� ‫�۝‬NI� {� � ~X� A� ##뚏�����^� x� � #L� � -##pÂ8� ^� #
� � � � � � S?J<e� s� #К� Bo� #!� tK� L7� � w� � h
� Q� $� � � dV~� � � w� Xo>#� ~1� p� My� 9� � � #� `� s+c8#3ֿ9� �
%� y� 9#� &� .� Gq� u� � � +� Y~#� g#� r� � }� �ۣ�M� � E� p� � w#� � 7v� � J#?
+D� p� #a� � � #� R� � � @� � � � � y� � ,%&� � \� #� yc� � D#� #� � � � s� � t 槶�f� � � *� #
� � � c� � #� � :v� qy7� � � #� � yv#� � � #r#X� #1#ƨ|B� #� � � l� D� � � _� ~#� � #a#K� <?
#� � #� K� [� 5� l�
� � U� � o˻� � � � Q� �֫-Y� |X� � � O� � #� � # ֦mQ� #� #)#~� #0#
� � 7� U� Ri#� P� ƪ.QDm8� [yA� 3� � � ##� ,f?
1� � Z4� � � G͐� � p� Z� 0� maO� Q� � p� � ##.� � � � � oʜ#$k~� #� � � Zo� #� #IV� � � ‫�ڧ‬#g 忓
#� ^3e{i##'� >e⥹� � #� #� ##� #� � ‫ݏ‬C� � WS� .~<� Z� M� r� f|#2
‫ݳ‬n#� 9=k>� � f� s)k� V� a� � m37� &� � #AYF‫ی‬#� #� v8#� w#� � V� � 5� V�
%� =� � _#u� #x� M� f� xRk#ŝ
q� #Oǥ~� � .� � J� q� |F� � !� � U� YXG(c##� )#� #5� 9#� � � #� � ʷL� � � #[� F� � /� w� #� � |:-
� #� � 0� ddzf� <� kS� H� N#� l� [Ě̳i� n� � � #� � ~Ʀ� #� W7#� #ɦ� � � NEy#� � �ُ�##� G� {?� D� \
x� U� C� � p#� 5� �
}M�
������
������ 5�
� $#�
��� ��_#
��
�� ��^!�
� �4�
�� '��������R� � 61� � � � &� ‫��ٯ���׷‬,��
��
8� V� � � 2� � � � � c,=|� � � W#.Z,� � � � D~@~� #'�
� r#� V� q_Ho� {� x� � � wq&� � vGq� ɯS� � zzW� bu� }
_� w:?� > |S� 5� � � {]B� � � � #� C� -P� p� j� � � � w 쇨 ZY� � � ri#� K"�

l#� #13{W'ữ� � � � <7� � � q5� � ~� ]>� ZY#� M� }#t#� #~*� s� � #� #� Z~� � � w#>� F� � � � 1� �
Ғ� � k� dI� � #� � � r� � 2ȴ� � ~n� � � u_#|#� � � B� � O� 3� BkM#� Biv#� ?1^� � <� #� ^]'� z� �
%� u[� #� � k� � km� o� Y#<##ͳ Ҵ|#� [� ##� R� ?i� m� X� #� (Z9#U#� � #� #� [#^-
� u� � #� � i.� � � � W� Aze� � o� l##� � T^+y<}� � � � � ,� � � 7Q� &� � #� #� � � #� |#>߂
‫׵‬#��+� � � g\� � � � � � MR� � l� 
0� ##� � o#� <� }� � &� � #� {KӮ� #� � M"� j� � � Y#(G^84� � u� 4� � #� |
1� #� #� ]� Me� � x� ;`Y� � #� +� Τ� � � ##� x{� � #� � /� � v}:� #")#q� q� � � ?#� O� �
"� � � � � u_#j/� � u� ϵ[A!� ?� � #� w� ##K� v� � h� #� � {� B� 4� !
6� � Ko� ##q##g� 9� `y� Ÿ� #?� kJ� � � _� 9� � #^#� z� bʱ#rV
%� � ;f� � #7� #� � 6� � � g� N� � #� � +� #hۣl� ԃ/� *#� � <c� � � |G� � � C~� 6o#F� 7� t� ȼ�
� kZdw#Hd� v2##8<WOf� � � � � � � O#C� /#� ?� � Y#K� � "#T8� =� � Ji\� lx7� � � >i�
� ǂ� #� � � ‫ދ‬%� � � -
� � K� #� � D#d� y� _#E4� #� T� � vY� d� � 5� 9� Y_|;� � � � >#� � m#� � e� mb‫؂‬#� � � � W�
� � � � Ο#$� � :J� � \##� s*� W� � c5� +>#� � #� l� {� 7� ӎ� #� s� |
� � T<� #� d� � k� s� 8� y� #Ԃ}� ŭ`mY� #� r� g� � � � [t� � � � ci#� #
� f� .m� %� m>� � g� 85ZM_� s� I� � #xo\� n� � � #� � \i#� � � #� � #� h� ˰� L� � 8� � E#l�
� a� #-I� � #8q&� z� #� � S� � so"� nI;� � b� r4rE� odH� q� B� 5S� � � cC� I� :� c� #G� � f� >�
� ޺��xgP� #� � � ,� � � kXE� a:� � C� t� sP9� 8� � � *dՉ�ͧ
-� � �ͧ � #� # � S� � � #Gf� � � #-
� 1� A� � #$v� � ea� ]T� 6� � ucc� � /
� #Ӵ� gdN� � #ξ� #� Ox� � � #u�

� #� [u]9##� ^L� � � =q^#� � � t� � � � � #� � #� u� � � ,� � g� o<� � IC� [� }#� � 1X_iE� � #� P


� � � � #;Y� ms� 7� <f� � � � � � `,� V� #� � � #ࢿ�‫�� ׇ‬
F� #� � ,� � J[� � � � � � #� \
չ
_� � #� Q� #h� #^� 2_$H5� 235� +� ty3� Y� 8ya(� =� � U� � ~� [F� � � ~e� #� � � � v_#� #hr� � #
%� � � O8X@� � k� � ߶_� � � @A� � � � #� � #� � _� s� o-� 9� � � � 9� Y� '¿#� � #
%� � � =HPG� ^6� ř� W� u?:e#� _#j� � � ;0� � � � � D#� 9� #�
Ě� � � #� � p#� {#� � k� �͟ IIǙ#g� k+}#� N� � � � Q[Zk� #� J� � l� � � ##� :
� W� #jZG� |`<]� S� sqn� l� /� � y#Fo� cұ� �##�
� �o#�
� ���h�
��M##l�
� � ���(�
� ���!�
��l#�
� � S� � 7##� � ,� i� #
� h##D#� � � Ɨ#0>dl#� � F� W� � z� � � 0Xx� � r� #cP� ѓ<� =#� #� � >� � #� ~� � |
#� � ,'_� _i� ##I� � � :
� � ‫׼‬i� #� � � J� � If� � � Id� � @� ]w� � #jmcᾙk� � ~#D� 5>u� ~l� Nz� #A� Z'#;_� � #� ##� O� ?
xW� 5� &� � i_� 3#� oB#c\� � � � ##� � l� 'go}&� h� si� 1y� "� p>^� 5� � � _⦽� #� G� � � )� ?
Շ
� M#B-� � c<� � � � � g� +ō� ##� � e� � � m%� � IDd|� � � � � T� � � #� S� �
`��Շ�
� �/
� � Mw� I� � 3ߎ�1�#�2��&�‫ت‬x� ‰� � J� � _4Ee=L� #� � Wo� � #<?#� <� � � Q|?
kz� � 7&� � � #� #� � <s� VٚH-� O� � 5&� � � � #� %Ģ9� � #� ‫ܜ‬$� >p?
� � � )� � c� 6� oB�ֿkψ#jz� � f`� � kI#� ]&6� � #� � ##� � >;� #� \� � 7� A� �
� c� � � � � #� I#� � ^O� sO� � [� � � Gnnʄ� reL
� � #� #n/� XX� � #M}##/� 8)3ů� � d� � � #j� ##� -� |
`� <#k� jL:� � � � <#� � f� V� o� $� #� #c\
� 8c}GR� � � #� � � #� � &� #� ##� � � � 7� +� 1c� � ?� д� � #Z� � 9� s^� pP� /p� u� 7�
‫;ؼ‬#� � qqy� � H� � � � � `� #W#� L� ĸ� #E� !
� G#� 7� `� 9#� � kHӶ� � EF� l� Q$� � #yU� N� � O� #� � B� _�ީ��_� � ?� K� #&֓#� r� J� n� \
� � � ]'� #� � � � q� ‫ �|ێ‬kj� � O� />� � � Y� � E� J� _vɪ� V� #hE#H� q‫��ګ‬#� � � u55#� d� �
� � � � � Afmh� #k#� � {ֺ#� c� q
%� #;� #� � #� g� p#� � � C#� � � � � 4*� � #� s� }^� #dk� � 4� � J-
#x� '� k� � V� � � .#m� w#Q� k� !� d,3� � � 5� (� � R� � � � � #� 2� u� #j� o|
w� 1� � ;� mr� � � U� � ,H� Q� � � 2� 1O� � iN� � ##|� M� � -� )丐����:� 崁
~� � � 5� � m� i� � Cp� {� ſ� /-
� � DBL� aX{yFW6� � Xx� T� .� � 4� R� � x� )=� � #� #0� A� � � ##>4|l� 4� ?
� � � _� V� #M#� � vfkh� 䪱�#� &� � � =����+�
��������
i�� 0#Y�
� � � j�
� �#YN�
�� � � � ���/� 5+� �
‫ � �^���׊‬
� ٥1� K� :y� � #�
� IX
�͢
f � :� � FzЗ� ~� iZ?� � #i� #� � � � #� ;E#Ҹ� � � � � � � #� .;#� � 5� �͢ � � h� � � #+Q� ɭ� #� p#
� �̽ � x� � uKi-o$ReB� n� #� � � � � I� ^� � z� � � +� ##� � � #� � ["� #� P#.@ʖ� C� #� � |
c� »� � #k� #� #]� s#Ow� )� \� #V� 9� )� ##l/<%� gT� � d/o*� #� � z� Z� � � �
‫׎‬
�� #�߇�MgU� +l� � � y� {#� I)#� � 5%#sL� � � #� x� � Z� j^$� � ;� 0se � #� j#� W#�
%� {� #� w#>(� "� ^"� [� � � � Ÿ� F� m� ;z}k� � � N� � ##]xO� #� � 7
� � � 6� ?� � � *#/Ŀ#� � #'� >"\5ŭ� � #��,:#�
� � �����3�
��*0�
� �o�
��Ʒ�
� }#� ##$� � � #
ih.4}5� #� Ѿ� #� n� D� � � x� _� #‫ׅ‬M� %� Xl#A� ^=� � o� _#-� h� #� #� /�i� :F� � �ۭ�#� � =rk� u
}'ǰ� P� #&� � � � 2� 3� #� F� � � � � #� � q� y� J#>r� � � ɾ$|P� |p� #� ɫjR\#!
� Q� � #� iz� ƕ(� ;� � � 鞵 gų\\
� P� � 8� F� c"[� `9� � X� #� W� 3_e� � #c#� � � � )V� =#I� m� � #v>� j};� � v� #� � tMfK[� 06S#
� J� � (o-
� � � #� � ]^� ';� � � g ꗖ q� � #Q� � 5� s"Ȟd8� o� � #� � hQ� � /.2Üt� � n� � � 1� #v� #� B� f3�
� 5Y"� � � � � T%� $� � X� WG� #/W� ˸� +m� J� "� � � � y� }� 2� � n� X� Z2� � 6� � � � T_h$|�
ߍmC� � _� m!$4k#
ը � #� p� }� Y� 2� � 1‫מ‬G8� � G� #1� u� p� z� 0� 8##� � t1Y� ‫���۝‬c� � i� #y� [r
� � o#� � Ao%� � ?� � VS� :� Q$ٌ2� #� t� ѫ 6� !� � jk� � �̒ ?
� zQ� � � .c#=#O� � #� B� @m� S&� k#� � y?J� #發��#� �
#� � +U� #E� 1TXȧo� � S� ،~� #� S� � � =� jqą� #z� � r˩QR� � � � 1� #� � � � 6� #!
� 0� oJ� � .� � yfo� U� nxs� 'ŏ#� :#� /� � � � � #� � ޳�KP|� N&� I� Ah‫��د‬k� � D;|?
#� � � � � y� � ‫�ا‬v� #I� SK� Wp#� � � ߒW� y� � 7� #� � "� :|� #� '#H� @� #L
%� :hr� #J� #� � #� kv� t� 2� � � � +� � ^z� #x� � � � #� 𭧆�I#� � )8� o� G'� `� � � � u>� #� � |
� C(a� � � � � � {#� f}� g� 4� 6‫ۂ‬Y� 2� rj� )� � #� g
o� 6� k� ]z� � � w� � qȫ#/%ğli7#� � 5� � 9� D� � � � #� � i� #G� � 8� � #� � � � vLzv&� � � 
� 7� � '� |y� � � ?� � #� � a� 3_TK{o5� � ơ#=� B� q#� � *� � � `� <+%� x/I� � #� v� V� � � r�
%3ʩ=F{zW#"2� =\<� � ccD� }� � � ;}� � ?� #k� � |� 0� � ^{� '� � � a� 8� ^3� ퟃ<?g� "#
� � zĢ#F#� @� e?� 9� ޽� K� � M� `� m� =6� X ŵ� � "E� G9� #� � � � #� ;H.� #� '� :\�  � � -W!
� � # � #� :� v;� #^� |gԛF� � � |;� >/;T� � 1#� #� � � � � F1X� >'� y� 6� g� � � � � � � � >X�
v##� � � #� m� � � � ~#麌 zbD� s#� *� � #� P>� q#>/� ↖� ?� �
� � � 4� #� Ԝa8� � 4� � "� g� k)� ǯ� #� � #-#� Qi!?z=� i� FeM&� ?
� � X#H� $sC� � W#� � T� }� ##I3� � ')� � 0� ‫�׌‬V� � � \X� � � � <0n� B� ]� #� � aT� ǘ� � |
Gt#� � #V� )� f� W� #� !$� 'uM� k#x� #/� S� � � g� #� � }*� G#9

� Q� � � � #rjw1� $� O� P/� 1W� � � E� p@� � s=C� � � ixo#� � :u� � � G#� � U� 4� � � o� � � � :�


#� � x#� >$� c� |/}pd� #-�
~� b� u � � #� &B� ѓ� y� 푏���]4?� � � H� � WK� �
� #� � #� � o� c� � #O#x� n#� � <� #� Ms� ##� 7� #� ^e�
� � or� )-� � � "#� .O� X� � ~B� � � O� 3� #� H� 5� #{� %� ##� � R� � _Axs� _
|#�
�� ��ib�
� �#ΐY�
� � �������qɮJ� � � ꧀S‫��ݟ‬#� #� #� I6� � }A� #L� #� #\� +G� #� � #

� � pY� � %e� ,=� ;� � ?#� � X'K� >諬 e%� ##� n#x'� <I4� #�
� Q� g=� K#
[3� � � � ##T� #� � vn#� #� � ‫�ץ‬c� v� C� � %ֆ‫׬‬#� � L[w� \� � � A� #� � |� � h� i� � #x� ?� W#|
V"rїN� � � x� � :>� � 4� #� � @� � B6� ]#� � 'R� Ң� � � T� ##t� ?U� � x� 9# � #� � � � [� @� |ar
‫� ۆ‬M� -#b(� tt� � D� � ###,GN� � ōP� ##5mK� � v� #� � W� j� 5� � � A#D-� \#� �ׂx� V� � � ‫۽‬J˘呙#
� 5� N\� � e#jhX;� (� v@N� � ?� ^0� D� h� ޹-� � ##{� #x�
� � c#ۨ#x� � R]CP� � � i#� E� Y� S:#'#� � #GO� S&� � 33}� #<Ջ=f� � S&� x� #� W##� #=� "i� #b>^6
� � � *M2o� � � ‫ۈ‬aE� "� #� h� 'C#� qt>ζ;� ###� b� � #� W� ~'j6� #� � &� � |#5Ɏ#� rT
� `� WК<� � � 4� #Y� � π� ޺_
x� =R� � #� � ^#� k� ##(6w� � � R� � �߰/� � � f� G� 4� ,�̨ � V� 8� � @� #k/� T� $� � /
� � #� (� w� � -!
� � 1� 8� W� g� Q� I� � #� � #� � � HѲL� #� #� � � o� � >)n#>T� e*{u� � Y� 5O#� I� � b� Q� h� c#�
� #C_NBc� O� @� � � � _#|#� m� # N� � � &'
9aWN� � 3� O� C� � � � k� |5� y� ,m/� y� .B� � _b3\#f6|
� � }� � � >� � g� 7:#� � g� � w#y� � O� � � � � Z� � � <#�
� � � s� � � C� � #� � � Nϡ� <� Uv1p� � #v� � Y#� � C� #� ?
d#� r� � � >(� � Ӻ� � � #e� � � � O� >#� n�̳ � rͳ 帼 s##� � ]2� � /C� � G� � jZ�
‫����ח‬eDHO� m'5 Ꮞ� c� � � #3� #� ~u� &� w� � #eå� � #]� � � � }@� /U� � \6� r� � 4� � #
%� 2� #g� J{qy� k�֨�֨��� 0\� #� _
� #eφLm� <Aqy~� 7<L� #� � ;Uk{� � r� n#� � � � [#� � m� � m� #� Z� iG� 4� #s{ǵx#� � }:� =?� ?
#� T#� � � � ��6� � m� #{Y#� b'� XP.� � W� � #� }*1� V� � yyS� � dx� ź� � 2^A!
ev;#� J� � Y� Y� � O� � F/� � � X� � q#4� � � � Xz� � � b� n#� � *Es~!յi 摮 3� � #� g[]]H� �
ߏj� Z� � ;� � � {V� � 3O� 0� � u� #� � � #� Ks
Ǧۘ�d� � rG� � |� #� l� Y#� T� -� ~l� y#Jz� � ~� � #� =pn>� s� 2/� #� x#� ML� � � � � cc� |
oi� +� M� � r0e� /J� #$� � H� 3� � � � ?#� z� �

You might also like