/home/staginga/stl.staging-area.xyz/wp-admin.tar
edit-tag-form.php 0000644 00000024700 15111403707 0007716 0 ustar 00 <?php
/**
* Edit tag form for inclusion in administration panels.
*
* @package WordPress
* @subpackage Administration
*/
// Don't load directly.
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}
// Back compat hooks.
if ( 'category' === $taxonomy ) {
/**
* Fires before the Edit Category form.
*
* @since 2.1.0
* @deprecated 3.0.0 Use {@see '{$taxonomy}_pre_edit_form'} instead.
*
* @param WP_Term $tag Current category term object.
*/
do_action_deprecated( 'edit_category_form_pre', array( $tag ), '3.0.0', '{$taxonomy}_pre_edit_form' );
} elseif ( 'link_category' === $taxonomy ) {
/**
* Fires before the Edit Link Category form.
*
* @since 2.3.0
* @deprecated 3.0.0 Use {@see '{$taxonomy}_pre_edit_form'} instead.
*
* @param WP_Term $tag Current link category term object.
*/
do_action_deprecated( 'edit_link_category_form_pre', array( $tag ), '3.0.0', '{$taxonomy}_pre_edit_form' );
} else {
/**
* Fires before the Edit Tag form.
*
* @since 2.5.0
* @deprecated 3.0.0 Use {@see '{$taxonomy}_pre_edit_form'} instead.
*
* @param WP_Term $tag Current tag term object.
*/
do_action_deprecated( 'edit_tag_form_pre', array( $tag ), '3.0.0', '{$taxonomy}_pre_edit_form' );
}
$wp_http_referer = ! empty( $_REQUEST['wp_http_referer'] ) ? sanitize_url( $_REQUEST['wp_http_referer'] ) : '';
$wp_http_referer = remove_query_arg( array( 'action', 'message', 'tag_ID' ), $wp_http_referer );
// Also used by Edit Tags.
require_once ABSPATH . 'wp-admin/includes/edit-tag-messages.php';
/**
* Fires before the Edit Term form for all taxonomies.
*
* The dynamic portion of the hook name, `$taxonomy`, refers to
* the taxonomy slug.
*
* Possible hook names include:
*
* - `category_pre_edit_form`
* - `post_tag_pre_edit_form`
*
* @since 3.0.0
*
* @param WP_Term $tag Current taxonomy term object.
* @param string $taxonomy Current $taxonomy slug.
*/
do_action( "{$taxonomy}_pre_edit_form", $tag, $taxonomy ); ?>
<div class="wrap">
<h1><?php echo $tax->labels->edit_item; ?></h1>
<?php
$class = ( isset( $_REQUEST['error'] ) ) ? 'error' : 'success';
if ( $message ) {
$message = '<p><strong>' . $message . '</strong></p>';
if ( $wp_http_referer ) {
$message .= sprintf(
'<p><a href="%1$s">%2$s</a></p>',
esc_url( wp_validate_redirect( sanitize_url( $wp_http_referer ), admin_url( 'term.php?taxonomy=' . $taxonomy ) ) ),
esc_html( $tax->labels->back_to_items )
);
}
wp_admin_notice(
$message,
array(
'type' => $class,
'id' => 'message',
'paragraph_wrap' => false,
)
);
}
?>
<div id="ajax-response"></div>
<form name="edittag" id="edittag" method="post" action="edit-tags.php" class="validate"
<?php
/**
* Fires inside the Edit Term form tag.
*
* The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug.
*
* Possible hook names include:
*
* - `category_term_edit_form_tag`
* - `post_tag_term_edit_form_tag`
*
* @since 3.7.0
*/
do_action( "{$taxonomy}_term_edit_form_tag" );
?>
>
<input type="hidden" name="action" value="editedtag" />
<input type="hidden" name="tag_ID" value="<?php echo esc_attr( $tag_ID ); ?>" />
<input type="hidden" name="taxonomy" value="<?php echo esc_attr( $taxonomy ); ?>" />
<?php
wp_original_referer_field( true, 'previous' );
wp_nonce_field( 'update-tag_' . $tag_ID );
/**
* Fires at the beginning of the Edit Term form.
*
* At this point, the required hidden fields and nonces have already been output.
*
* The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug.
*
* Possible hook names include:
*
* - `category_term_edit_form_top`
* - `post_tag_term_edit_form_top`
*
* @since 4.5.0
*
* @param WP_Term $tag Current taxonomy term object.
* @param string $taxonomy Current $taxonomy slug.
*/
do_action( "{$taxonomy}_term_edit_form_top", $tag, $taxonomy );
$tag_name_value = '';
if ( isset( $tag->name ) ) {
$tag_name_value = esc_attr( $tag->name );
}
?>
<table class="form-table" role="presentation">
<tr class="form-field form-required term-name-wrap">
<th scope="row"><label for="name"><?php _ex( 'Name', 'term name' ); ?></label></th>
<td><input name="name" id="name" type="text" value="<?php echo $tag_name_value; ?>" size="40" aria-required="true" aria-describedby="name-description" />
<p class="description" id="name-description"><?php echo $tax->labels->name_field_description; ?></p></td>
</tr>
<tr class="form-field term-slug-wrap">
<th scope="row"><label for="slug"><?php _e( 'Slug' ); ?></label></th>
<?php
/**
* Filters the editable slug for a post or term.
*
* Note: This is a multi-use hook in that it is leveraged both for editable
* post URIs and term slugs.
*
* @since 2.6.0
* @since 4.4.0 The `$tag` parameter was added.
*
* @param string $slug The editable slug. Will be either a term slug or post URI depending
* upon the context in which it is evaluated.
* @param WP_Term|WP_Post $tag Term or post object.
*/
$slug = isset( $tag->slug ) ? apply_filters( 'editable_slug', $tag->slug, $tag ) : '';
?>
<td><input name="slug" id="slug" type="text" value="<?php echo esc_attr( $slug ); ?>" size="40" aria-describedby="slug-description" />
<p class="description" id="slug-description"><?php echo $tax->labels->slug_field_description; ?></p></td>
</tr>
<?php if ( is_taxonomy_hierarchical( $taxonomy ) ) : ?>
<tr class="form-field term-parent-wrap">
<th scope="row"><label for="parent"><?php echo esc_html( $tax->labels->parent_item ); ?></label></th>
<td>
<?php
$dropdown_args = array(
'hide_empty' => 0,
'hide_if_empty' => false,
'taxonomy' => $taxonomy,
'name' => 'parent',
'orderby' => 'name',
'selected' => $tag->parent,
'exclude_tree' => $tag->term_id,
'hierarchical' => true,
'show_option_none' => __( 'None' ),
'aria_describedby' => 'parent-description',
);
/** This filter is documented in wp-admin/edit-tags.php */
$dropdown_args = apply_filters( 'taxonomy_parent_dropdown_args', $dropdown_args, $taxonomy, 'edit' );
wp_dropdown_categories( $dropdown_args );
?>
<?php if ( 'category' === $taxonomy ) : ?>
<p class="description" id="parent-description"><?php _e( 'Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional.' ); ?></p>
<?php else : ?>
<p class="description" id="parent-description"><?php echo $tax->labels->parent_field_description; ?></p>
<?php endif; ?>
</td>
</tr>
<?php endif; // is_taxonomy_hierarchical() ?>
<tr class="form-field term-description-wrap">
<th scope="row"><label for="description"><?php _e( 'Description' ); ?></label></th>
<td><textarea name="description" id="description" rows="5" cols="50" class="large-text" aria-describedby="description-description"><?php echo $tag->description; // textarea_escaped ?></textarea>
<p class="description" id="description-description"><?php echo $tax->labels->desc_field_description; ?></p></td>
</tr>
<?php
// Back compat hooks.
if ( 'category' === $taxonomy ) {
/**
* Fires after the Edit Category form fields are displayed.
*
* @since 2.9.0
* @deprecated 3.0.0 Use {@see '{$taxonomy}_edit_form_fields'} instead.
*
* @param WP_Term $tag Current category term object.
*/
do_action_deprecated( 'edit_category_form_fields', array( $tag ), '3.0.0', '{$taxonomy}_edit_form_fields' );
} elseif ( 'link_category' === $taxonomy ) {
/**
* Fires after the Edit Link Category form fields are displayed.
*
* @since 2.9.0
* @deprecated 3.0.0 Use {@see '{$taxonomy}_edit_form_fields'} instead.
*
* @param WP_Term $tag Current link category term object.
*/
do_action_deprecated( 'edit_link_category_form_fields', array( $tag ), '3.0.0', '{$taxonomy}_edit_form_fields' );
} else {
/**
* Fires after the Edit Tag form fields are displayed.
*
* @since 2.9.0
* @deprecated 3.0.0 Use {@see '{$taxonomy}_edit_form_fields'} instead.
*
* @param WP_Term $tag Current tag term object.
*/
do_action_deprecated( 'edit_tag_form_fields', array( $tag ), '3.0.0', '{$taxonomy}_edit_form_fields' );
}
/**
* Fires after the Edit Term form fields are displayed.
*
* The dynamic portion of the hook name, `$taxonomy`, refers to
* the taxonomy slug.
*
* Possible hook names include:
*
* - `category_edit_form_fields`
* - `post_tag_edit_form_fields`
*
* @since 3.0.0
*
* @param WP_Term $tag Current taxonomy term object.
* @param string $taxonomy Current taxonomy slug.
*/
do_action( "{$taxonomy}_edit_form_fields", $tag, $taxonomy );
?>
</table>
<?php
// Back compat hooks.
if ( 'category' === $taxonomy ) {
/** This action is documented in wp-admin/edit-tags.php */
do_action_deprecated( 'edit_category_form', array( $tag ), '3.0.0', '{$taxonomy}_add_form' );
} elseif ( 'link_category' === $taxonomy ) {
/** This action is documented in wp-admin/edit-tags.php */
do_action_deprecated( 'edit_link_category_form', array( $tag ), '3.0.0', '{$taxonomy}_add_form' );
} else {
/**
* Fires at the end of the Edit Term form.
*
* @since 2.5.0
* @deprecated 3.0.0 Use {@see '{$taxonomy}_edit_form'} instead.
*
* @param WP_Term $tag Current taxonomy term object.
*/
do_action_deprecated( 'edit_tag_form', array( $tag ), '3.0.0', '{$taxonomy}_edit_form' );
}
/**
* Fires at the end of the Edit Term form for all taxonomies.
*
* The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug.
*
* Possible hook names include:
*
* - `category_edit_form`
* - `post_tag_edit_form`
*
* @since 3.0.0
*
* @param WP_Term $tag Current taxonomy term object.
* @param string $taxonomy Current taxonomy slug.
*/
do_action( "{$taxonomy}_edit_form", $tag, $taxonomy );
?>
<div class="edit-tag-actions">
<?php submit_button( __( 'Update' ), 'primary', null, false ); ?>
<?php if ( current_user_can( 'delete_term', $tag->term_id ) ) : ?>
<span id="delete-link">
<a class="delete" href="<?php echo esc_url( admin_url( wp_nonce_url( "edit-tags.php?action=delete&taxonomy=$taxonomy&tag_ID=$tag->term_id", 'delete-tag_' . $tag->term_id ) ) ); ?>"><?php _e( 'Delete' ); ?></a>
</span>
<?php endif; ?>
</div>
</form>
</div>
<?php if ( ! wp_is_mobile() ) : ?>
<script type="text/javascript">
try{document.forms.edittag.name.focus();}catch(e){}
</script>
<?php
endif;
images/post-formats32-vs.png 0000644 00000011767 15111403707 0011763 0 ustar 00 �PNG
IHDR ` �c�� PLTELiqf��9��F��G����L��<r�5|� O�J��K����Ƃ��W�����J��J��L��c�� O�� G��I��O��f��Q��x��
J��d��
I��~��I�� G��f��J�� G��K��J��F��P��O��G�� B��P��e��F��b���ǂ��G����� I��d��H��J��J��f�����b��:r�F��J�����I�����M��^��I��f��O��R��e��[��<r�f��f��f��{��J��b��e��I��{��f��`��e��I��f�����V��P��d��f��B~� F��f��I��G�� K��O��f��V��d��P��f��f��F��R��`��X��;r�<r���=s�I��F�����I������f�����=s���������D��J��(L]'K^���'K^���Y��]��M��Az�Y��?u�X�����|�����R���s����������e����������������������݈������������������������g�������얾���������������������ڮ�ܲ��ⁱ���鋷͝�ի�������������������љ�ӄ���������H��������]�����P��V������ߦ��a��j�������Ԇ�ˢ��K�����x��h��Y��\�������v��o��k�����u�Ę��q��z��B|�}��D���nê �tRNS �,%
�> MKF��)]2�
�']���ܯ�;� "�-�T���� �UJ..?�3L�Ki�׀t�쀿}���߲6�A;�ƭ�@����؋�̀˹�j�:��7�Ey�|�%f����S�S���~�1�
f��jNߕ��c:� IDATx��y|ם��-�ŶR߷c;vb;��nӍ��v��q������I�4m���M�m�>����8�!��I�@ ��m�����m������~�y�
��{#�x�,Z4K^._4s�j�� �3�T�.n�/�k�
Ōg�j�u��"�/�0�������0i4fy��T�8�P�a
/�!�rQn��o���+]
�W��&�T�3�uF�$�+{��y��!�Zkje��T�S�W_��[��SB��g?�'��i@� ��"=�L�FAQ8��3�@�O�LZP��
�?�A��=�!�ӂ�#U�+��R~��ʟ�
\I���kS^*T��2��4_�/�/ ̩�Խ�#�E�y�G��ԔI�!�e�P~�V�1�>\��s ��9����
�ϗ�YҪ�3\(c�s��.�3S��f���U�5�;����~�5kn�u�-w�-�(Q���T����$2�� 2���F�@m9�b'#�d�AQ�h�Q���?�W�W�.N�t�3B`nE8H$:F@ƚ��cl��r��t鐁 ��Q�T#A��O��c�6�X-I�T����j�'��p���G�
u���)'��U��
��s�s�����K��9�W=��ȡZ.?���JP�\,���H��4���,� oRE�n��� da�����Ѧ���Ɇ.�`&h���y�B{��PVh(+��TE`����3�0��;+woZu��m��vۚ5w��5�;�1�m�n�|˪Mw�~ K�(�G����յbH �1Ų<��?��3���\��j�
Md8CA�pY-�����9�H���N�L&C�#����@� D�7��z}�e���:�4Dw��ׯy;�
�g�u�F�^[��h�Q�\uYA��#-L�-�z�� dz�����|�zF��:@���?�Э���Dy�=�)��Nu�Bk=��GUfN�,2k>�~g��dSgK���\.V(�犆�Y�`�+
X�`�*����4ȃ4�B�>W$�3BaD
�--�@"*��)P���i�S� 9Baa��0F�c������%J��30��#o������'m�<[��s��}jRޫ��8�����Gώ���zP������:��&Y8�'�+0���@M��"W�r�C�%Wh�N�P�Sc��ùB�ҏ�qg�u惄 +Kc�����<�Fl�*-��v?�܇o9\~=o�~��w+��X���禕�_�PV���o�-&l|m�� STQO��_�q�"�&yE ��q_#˵)^rB C��sm���FL5C����cw�e��Q���C��0c#���`�[anMA��y����
{���Ae�k����*Ք{�<[(O=�{�ѭ���I;��|�5�]�D���,x����/����)v3���0^p�|E��� ���z~}�-�"9{�t*�^g�-9�P ��yp�U`K��V��VhK��^?X`�3�A37�
���mX>Q=FQL�W��y��QZ�bz�̘4�Ii�&�8q[��oc�Jm�`��l�X�����c`���`7��S�n���=d�0촀&@��[Q��t��h"�2��&@�K@7%���)���E��� >X,8-��x<�p��b:ߋ���x\L2#H��\�1`ԴтD ���7k��,�@B:� A��(P1D�LK!:Z��Ձ1�Tْ�c!Z����I�g��h��f�j���� �q�m�O\� �6�Zu`��m�nl۶y3�yժM�ه%J�ƒǞ8�Mr�ǖLK/���F7���6����o z�@��
��C?6C]�� �]���9�~�K�y�A�t��s�u�ZK�h��qKmx]��
�a��pĉ^��a��"&���p�0Mh� ��Y@߆�Sm�<a]��cRjFt�1Cc��e[n_B��$�U�iޘ�)F����r��^W�z�!��Z �y�x��9��(I�X�v��]A��:|��q'�r?]t2 �bҀҘ`��4]�� ((��N��2v{��6�`{��'��]@��Ē� �6�l@.0vp>m��T�&°���8��?�6�I(���V��
k��2A�����|�6�rZ�!�=-E=#A/U&�����6b�_�#)����FbR��Y�TF$DI�P���.�W��ȿn߲�
� �4еY�{��Þ`a�/�]��j[6��[�}�+��_�տq��o|k�7o�����
p�M7���Ƃ7�)�6�(QbV�ϻ��g�;o>']���|�{�3�{V��R6�������)�]V�C��4�@55��n��w��{�Ww
���G���]����Cj��
kuu]�y�p/^#��� s���j�{I�@X"v�j�r��9Œ�R�����������k�>�>�T��"���U���p��$N�@ ^�P+ؒ��~?1
R�_V#"�X&i���4dJ��0�X�!3 SH�j�C��E�ICISĞ �GLɐS[��ըW���E�W+��tA��v�3�,G�"�v0EMT�Q��
�%�!�8�펇Ԋ�z"Y_�W��nNu
&�Y���9
�P��(��}U��۳g^�¼����=�Ӳ��~�_'v�-��;c�;g<HJ�j��C�%�T� %�De��"����`*+�
�"@7z_A9@V��+���K��45Է��
��D\-�f5G�h�qjOXp8aO�#�@-F��$"v�"�%b�8�)�9B���S^�7
��{�feCgg{,gh$a�$LXk7i�;�W�hq� �k- ;�� ��#�[���?8 �ᛘ��5�A��-���v��(�u�0�p���XAq#�Z�buá��K����P����P̬R��8B����!��Z�Q[pqm����n�}��1�6�`樿C��۠�Pi2T
���Z���X��xw8IAٽ��2���N��ň��_l�1��p �b3�W�EU�[�kx3 ��י/�����D��X�v��i�dz�]���V��w�� ��+�q�@��fC�>�k��۳���+���[<Ā�����OcD�E��� &����#."Ժ���]� ��S�M�r�n����#1b�d�s3W~""���9,�B�k'�~��=��3�k�ZgO�A�*��,\&���U�T�1]�g��N��v{wv�����?��G
������:a���Ots&�9@d�)��BbFb�{�#{�Y��� i�#�umm&��
;��y0��F*%�Z��8Z���1ndQ���&��p����:�V����uQnd��G�ժ�?@[�=�Ȳp�7H�-�2<f�J͠[Ȫr
p#k'�!��R�2d[!C�l�l�ޭ$�(59EU�a'2��F ����
p#�`��M>Ƭ��z|� �H�ڝl_� �͕�͏�)<���η����y�W?��ż����(�z����Z�%�ZV��kݺ�V�(���2HT8��rn���
|'�ʡy��Q��-�<�(��4���_��U���|J.�§��ӗp\l��Ɗ��g�:(��;��x�6�$��SQ�xW��*�6��c+�腺�� {zR����\A�Ƹr�����#��
��7&b�=ۃW��<��<���
���6�Љ��7%Ē����6+4 �N�CbK�T�#����K�q�膹�������)ǯ�_�������毨{R�K����w�9գ����{=�f�O���kl~����?�mF K��>���˯?~c��T�D����SU��4��'I�)t�:���ȟ��eiw�] ��� (0���W�"�����3��wa ���o*^�;9�� �5]h� ��0���f4u%��?C�뇨|Ȃ�����$=[Qvx�xNh����O�ԗ���C)i�[ٯ�@�P)o�P�5���������U"��.ƥ[/*���@�Ӆ.�=��[���[��7߬�8t�ȑ3�>u���7�)/_���X<~Z� IEND�B`� images/arrows-2x.png 0000644 00000001537 15111403707 0010370 0 ustar 00 �PNG
IHDR � ��� &PLTE��� ��������� ���rrr ��� ������ sss���jjj ���ooo��� ___ ���|||MMMQQQ yyy ���qqq���XXX������~~~xxx���|||[[[��� ������bbb qqq oooxxx���zzz������������������������������������������������{�[� StRNS \AY
V@+FX-/1POZ��Rϧ�#�ܴ��Kţ�L�
쫂�9������ϧ���Q78�%[$��ޣ�g9= �IDATx^���r�@��n)�e������0��If�%�e9N��YdV�{�_��S�w@}CX�O�y��)��ڟ����
5b��F��Q��BW!�m}n�Ox�ҏ �K
���F̧���Q7�����_R$���}Ă(��
!����no}&'�2\w»��0��Uu�
�LYg�~
J� ��w��\�W��p����Ju�P��ֲ�寧���ڞֿ�s�B!��N���(\�ͽ4��$
�ͫ�#3��=?�M�|)�'/x������[��ө�r��b� �X���43g�f�/��!�r�-3�y7�rzoS�ȃA� ^�*���)T7�s��E]���)�����$���36?��vu�������]��]��^]p�Q~H IEND�B`� images/resize-rtl.gif 0000644 00000000106 15111403707 0010574 0 ustar 00 GIF89a � ������ !� , @��)a������sX\�AHH�S ; images/contribute-no-code.svg 0000644 00000021362 15111403707 0012235 0 ustar 00 <svg width="291" height="290" viewBox="0 0 291 290" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#a)">
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M270.345 217.08c15.797-27.361 6.422-62.349-20.94-78.146-27.361-15.797-62.349-6.423-78.146 20.939-15.797 27.362-6.423 62.349 20.939 78.147 27.362 15.797 62.349 6.422 78.147-20.94Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M260.414 230.938c15.797-27.361 6.422-62.349-20.94-78.146-27.362-15.797-62.349-6.423-78.146 20.939-15.798 27.362-6.423 62.349 20.939 78.147 27.362 15.797 62.349 6.422 78.147-20.94Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M247.972 242.592c15.797-27.361 6.422-62.349-20.94-78.146-27.361-15.798-62.349-6.423-78.146 20.939-15.798 27.362-6.423 62.349 20.939 78.147 27.362 15.797 62.349 6.422 78.147-20.94Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M233.491 251.59c15.797-27.361 6.422-62.349-20.94-78.146-27.361-15.798-62.349-6.423-78.146 20.939-15.797 27.362-6.423 62.349 20.939 78.147 27.362 15.797 62.349 6.422 78.147-20.94Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M217.543 257.591c15.797-27.362 6.422-62.349-20.939-78.146-27.362-15.798-62.35-6.423-78.147 20.939-15.797 27.362-6.422 62.349 20.939 78.146 27.362 15.798 62.35 6.423 78.147-20.939Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M200.721 260.371c15.797-27.362 6.422-62.349-20.94-78.146-27.361-15.798-62.349-6.423-78.146 20.939-15.797 27.362-6.423 62.349 20.939 78.146 27.362 15.798 62.349 6.423 78.147-20.939Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M183.691 259.816c15.797-27.362 6.422-62.349-20.939-78.147-27.362-15.797-62.35-6.422-78.147 20.94-15.797 27.361-6.422 62.349 20.939 78.146 27.362 15.797 62.35 6.423 78.147-20.939Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M167.095 255.944c15.797-27.362 6.423-62.349-20.939-78.147-27.362-15.797-62.35-6.422-78.147 20.94-15.797 27.361-6.422 62.349 20.94 78.146 27.361 15.797 62.349 6.423 78.146-20.939Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M151.563 248.909c15.797-27.361 6.422-62.349-20.939-78.146-27.362-15.798-62.35-6.423-78.147 20.939-15.797 27.362-6.422 62.349 20.94 78.147 27.361 15.797 62.349 6.422 78.146-20.94Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M137.705 238.977c15.797-27.362 6.423-62.349-20.939-78.147-27.362-15.797-62.35-6.422-78.147 20.94-15.797 27.361-6.422 62.349 20.94 78.146 27.361 15.797 62.349 6.423 78.146-20.939Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M126.05 226.538c15.797-27.362 6.422-62.349-20.94-78.147-27.361-15.797-62.349-6.422-78.146 20.94-15.797 27.361-6.422 62.349 20.94 78.146 27.361 15.797 62.348 6.423 78.146-20.939Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M117.05 212.063c15.798-27.362 6.423-62.349-20.94-78.147-27.36-15.797-62.348-6.422-78.146 20.94-15.797 27.362-6.422 62.349 20.94 78.146 27.361 15.798 62.349 6.423 78.146-20.939Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M111.046 196.104c15.798-27.361 6.423-62.349-20.939-78.146-27.362-15.797-62.35-6.422-78.147 20.939-15.797 27.362-6.422 62.349 20.94 78.147 27.362 15.797 62.349 6.422 78.146-20.94Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M108.271 179.293c15.797-27.362 6.422-62.349-20.94-78.146-27.361-15.798-62.349-6.423-78.146 20.939-15.797 27.362-6.422 62.349 20.94 78.147 27.361 15.797 62.349 6.422 78.146-20.94Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M108.825 162.255c15.797-27.361 6.422-62.349-20.94-78.146-27.361-15.797-62.349-6.423-78.146 20.939-15.797 27.362-6.423 62.349 20.94 78.147 27.36 15.797 62.348 6.422 78.146-20.94Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M112.701 145.655c15.797-27.362 6.423-62.35-20.94-78.147-27.361-15.797-62.348-6.422-78.146 20.94-15.797 27.362-6.422 62.349 20.94 78.146 27.361 15.798 62.349 6.423 78.146-20.939Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M119.731 130.126c15.797-27.362 6.422-62.35-20.94-78.147-27.361-15.797-62.349-6.422-78.146 20.94-15.797 27.362-6.422 62.349 20.94 78.146 27.361 15.798 62.349 6.423 78.146-20.939Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M129.662 116.276c15.797-27.362 6.423-62.35-20.939-78.147-27.362-15.797-62.35-6.422-78.147 20.94-15.797 27.361-6.422 62.349 20.94 78.146 27.361 15.797 62.349 6.423 78.146-20.939Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M142.104 104.62c15.797-27.361 6.422-62.349-20.939-78.146-27.362-15.797-62.35-6.423-78.147 20.94-15.797 27.361-6.422 62.348 20.94 78.146 27.361 15.797 62.349 6.422 78.146-20.94Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M156.579 95.618c15.797-27.362 6.423-62.35-20.939-78.147-27.362-15.797-62.35-6.422-78.147 20.94-15.797 27.361-6.422 62.349 20.94 78.146 27.361 15.797 62.349 6.423 78.146-20.94Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M172.533 89.615c15.797-27.361 6.422-62.349-20.94-78.146-27.361-15.797-62.349-6.423-78.146 20.94-15.797 27.361-6.423 62.348 20.94 78.146 27.361 15.797 62.348 6.422 78.146-20.94Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M189.349 86.838c15.797-27.361 6.422-62.349-20.94-78.146-27.362-15.797-62.349-6.423-78.146 20.94-15.798 27.361-6.423 62.348 20.939 78.146 27.362 15.797 62.349 6.422 78.147-20.94Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M206.385 87.39c15.797-27.361 6.422-62.349-20.94-78.146-27.361-15.797-62.349-6.422-78.146 20.94-15.797 27.361-6.423 62.349 20.939 78.146 27.362 15.797 62.349 6.422 78.147-20.94Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M222.987 91.264c15.797-27.361 6.422-62.349-20.94-78.146-27.361-15.798-62.349-6.423-78.146 20.94-15.797 27.36-6.423 62.348 20.939 78.146 27.362 15.797 62.349 6.422 78.147-20.94Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M238.519 98.297c15.797-27.362 6.422-62.349-20.939-78.146-27.362-15.798-62.349-6.423-78.147 20.939-15.797 27.362-6.422 62.349 20.939 78.146 27.362 15.798 62.35 6.423 78.147-20.939Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M252.371 108.227c15.797-27.362 6.422-62.35-20.94-78.147-27.362-15.797-62.349-6.422-78.146 20.94-15.798 27.361-6.423 62.349 20.939 78.146 27.362 15.797 62.349 6.422 78.147-20.939Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M264.02 120.665c15.797-27.361 6.422-62.349-20.939-78.146-27.362-15.797-62.349-6.422-78.147 20.94-15.797 27.361-6.422 62.348 20.939 78.146 27.362 15.797 62.35 6.422 78.147-20.94Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M273.026 135.14c15.797-27.361 6.422-62.349-20.939-78.146-27.362-15.797-62.35-6.423-78.147 20.94-15.797 27.361-6.422 62.348 20.939 78.146 27.362 15.797 62.349 6.422 78.147-20.94Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M279.03 151.099c15.797-27.362 6.422-62.35-20.94-78.147-27.361-15.797-62.349-6.422-78.146 20.94-15.797 27.361-6.423 62.349 20.939 78.146 27.362 15.797 62.349 6.423 78.147-20.939Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M281.799 167.916c15.797-27.361 6.422-62.349-20.94-78.146-27.361-15.797-62.349-6.423-78.146 20.939-15.797 27.362-6.423 62.349 20.939 78.147 27.362 15.797 62.349 6.422 78.147-20.94Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M281.251 184.957c15.798-27.361 6.423-62.349-20.939-78.146-27.362-15.798-62.349-6.423-78.146 20.939-15.798 27.362-6.423 62.349 20.939 78.147 27.362 15.797 62.349 6.422 78.146-20.94Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M277.374 201.558c15.798-27.362 6.423-62.349-20.939-78.147-27.362-15.797-62.349-6.422-78.146 20.94-15.798 27.361-6.423 62.349 20.939 78.146 27.362 15.797 62.349 6.423 78.146-20.939Z"/>
<path fill="#fff" stroke="#3858E9" stroke-miterlimit="10" stroke-width="1.2" d="M270.351 217.082c15.797-27.362 6.423-62.349-20.939-78.146-27.362-15.798-62.349-6.423-78.147 20.939-15.797 27.362-6.422 62.349 20.94 78.146 27.361 15.798 62.349 6.423 78.146-20.939Z"/>
<path fill="#3858E9" d="M219.5 191.5v10h1.5v-10h10V190h-10v-10h-1.5v10h-10v1.5h10Z"/>
</g>
<defs>
<clipPath id="a">
<path fill="#fff" d="M.5 0h290v290H.5z"/>
</clipPath>
</defs>
</svg>
images/date-button.gif 0000644 00000000620 15111403707 0010723 0 ustar 00 GIF89a �; ���lll[[[~~~������sss���ppp������mmm���������������yyy���ccc|||���iii���^^^vvv������eee]]]fff�������������������������```�����������������������������������uuu��������ˎ�� !� ; , @���pg(
����2���j!�PC�Q4���"��nπ.��(B���b��r�P�zDN ~�-B-P41�-B-����J; W������B���G-"2P0/6Q-I;n$P+�P"-B-,(*5�(#-B)-3%8#� -)B����;A ; images/browser-rtl.png 0000644 00000116352 15111403707 0011010 0 ustar 00 �PNG
IHDR l � ,�Qo ��IDATx�콉�e�]&�_03�=1�1���CCb�-���
lc0`��M"f���c �cU�-��}�ec#[��/xd��={��T�}&�%�{U.I%�{�d뼈����ɓ'���~�<߷��9Ne*S��T���ǟ�Wx��.�������}߶�q��a�2��Le*{S�Ū,��qmm
�=�ey�E]��G vD�q*S��T���)m���7�x��߿��O�=��Le*Os�뎠�� ��2��L廠 �'���T�2��B�n�f��T�2��<���S��T�2�T�2��Le�Le*S� {*S��T��캮ǩLe*S��ӻL�=��Le*`Oe*S��T&���T�2�g*`WU5Ne*S��T��e�Le*S� {*S��T�2�T�2��<S�,�q*S��T���.`Oe*S���S��T�2��(ƩL�^&@��w`�c�2�gR�ԧ>5����W^9^w�u�W���1˲1��U���<�
���G�Go�����������?�;4z4��ݡG7���G���Ç��x�f�{��sY�?�h��p<�0�W��y�!_���&�=�=��ſc}8uo����:7�ub���n�����g��Ï�k�p�M�w��9�ʣ�ڳy����c}��<��<���b}�n�֡U����W�ؖG����I�?�k���j��t��Pj���yΣ�6JǸ_R�W�z���|ߪ���q�>�q���u���q���9�a���x��w�\p�x�嗏>���=��T�v����>nlIJ�6�o��^[ۈ�m��3��qDz���ߛ�L�m�m�k��o��x��&�W}���:��o��
�����x=�z��u�����k��m]os��a��Y?������M�cm�}�n]m��@��8��7�'j'ۈs6��ڽ�{�\�=�x�������yk�|�����\�3�ums��h�yC}����v_���o~&�c�}���W߯���uM=�uݿ�7���>=?^k���>����ۆ��nG���(��X�7�����j��<<xp������2��,�aэ��0.�����
�b�ǵ�ڸX.�n��!~�[�E<n�㗋>��"[�w�Z<���>~6��xL�[���>���X�Z� ����x^l�[[�x�W�`D���uu�r��˵q�$��/��k��a
����w�&����X�u-������,����c��,���q﨣�e�=Ķ�|���c��ݨ��5Yo<w�{�y�������P:����/��X��}�����C�,ضXo�žr�p��=,��ˁ}�/|]�&����s���Lu.���cc�=�q�{�wx�K�Um�1Ú�w�8���-�骫�by�G�+A�ڿ�~����1�����|��?\��,���;�W��q~����g^>>��g�����o|��p̞��-������~w<�����<�,���;�g��c� ��b�ʼn�vm�@};� HL�8Qm��H��x̀����0�8?�t�� &L^� �d�(�Z�E,���/M�x\�0�-&n<?�~��� Ɏ�sr��@�V�����6~�>��'1 f�=�Ƕ_ć�`���z�w�)��
0�p�-A���S���W|�v����w�6^c�6������>��\
Vhڀ>�z��w���A�'�w�|?��qo��%. ���h�s�c���q�� ��3� ���k��������ˍ�_�i�f��
о�7����w���y��_���_��������\�������8���og�?}|���r\��_��`���q���U�w����sNV���n���GN��q�%����q�e������g���X�s����������/�8i0Y���=�n�P�ҢOz��ǿp`� '&V�l��&0��7 ��A ���#�}L��#�
�f{;1�N`���5Z�s�v�ua��x��gԂu�0��8�cE;��jV�
l���2�x �̮_�4p�h�"� ��%�B�X|�F �� ��h\�n�7�w'�� l���e��\T����<