Current File : //usr/lib/python3/dist-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc
�

/�g"V��8�ddlmZddlZddlZddlZddlZddlZddlmZddl	m
Z
ddlmZm
Z
mZmZmZmZmZddlmZej*e�Zedgd	��Ze�ZGd
�de�Zej:e�Gd�d
e��Zed�e_y)�)�absolute_importN)�
namedtuple)�	takewhile�)�ConnectTimeoutError�
InvalidHeader�
MaxRetryError�
ProtocolError�
ProxyError�ReadTimeoutError�
ResponseError)�six�RequestHistory)�method�url�error�status�redirect_locationc��eZdZed��Zej
d��Zed��Zej
d��Zed��Zej
d��Zy)�
_RetryMetac�N�tjdt�|jS�Nz}Using 'Retry.DEFAULT_METHOD_WHITELIST' is deprecated and will be removed in v2.0. Use 'Retry.DEFAULT_ALLOWED_METHODS' instead��warnings�warn�DeprecationWarning�DEFAULT_ALLOWED_METHODS��clss �@/usr/lib/python3/dist-packages/pip/_vendor/urllib3/util/retry.py�DEFAULT_METHOD_WHITELISTz#_RetryMeta.DEFAULT_METHOD_WHITELIST$s%���
�
�
S��	
�
�*�*�*�c�F�tjdt�||_yrr�r�values  r r!z#_RetryMeta.DEFAULT_METHOD_WHITELIST-s!���
�
�
S��	
�
',��#r"c�N�tjdt�|jS�Nz�Using 'Retry.DEFAULT_REDIRECT_HEADERS_BLACKLIST' is deprecated and will be removed in v2.0. Use 'Retry.DEFAULT_REMOVE_HEADERS_ON_REDIRECT' instead�rrr�"DEFAULT_REMOVE_HEADERS_ON_REDIRECTrs r �"DEFAULT_REDIRECT_HEADERS_BLACKLISTz-_RetryMeta.DEFAULT_REDIRECT_HEADERS_BLACKLIST6s%���
�
�
^��	
�
�5�5�5r"c�F�tjdt�||_yr'r(r$s  r r*z-_RetryMeta.DEFAULT_REDIRECT_HEADERS_BLACKLIST?s!���
�
�
^��	
�
27��.r"c�N�tjdt�|jS�NzlUsing 'Retry.BACKOFF_MAX' is deprecated and will be removed in v2.0. Use 'Retry.DEFAULT_BACKOFF_MAX' instead�rrr�DEFAULT_BACKOFF_MAXrs r �BACKOFF_MAXz_RetryMeta.BACKOFF_MAXHs%���
�
�
O��	
�
�&�&�&r"c�F�tjdt�||_yr-r.r$s  r r0z_RetryMeta.BACKOFF_MAXQs!���
�
�
O��	
�
#(��r"N)�__name__�
__module__�__qualname__�propertyr!�setterr*r0�r"r rr#s���
�+��+��$�$�,�%�,��6��6�(�.�.�7�/�7��'��'����(��(r"rc���eZdZdZegd��Zegd��Zegd��ZdZdddddde	ddd	d	dd	e	e	fd
�Z
d�Zedd��Z
d
�Zd�Zd�Zdd�Zd�Zdd�Zd�Zd�Zd�Zdd�Zd�Z						dd�Zd�Z�fd�Z�xZS)�RetryaJRetry configuration.

    Each retry attempt will create a new Retry object with updated values, so
    they can be safely reused.

    Retries can be defined as a default for a pool::

        retries = Retry(connect=5, read=2, redirect=5)
        http = PoolManager(retries=retries)
        response = http.request('GET', 'http://example.com/')

    Or per-request (which overrides the default for the pool)::

        response = http.request('GET', 'http://example.com/', retries=Retry(10))

    Retries can be disabled by passing ``False``::

        response = http.request('GET', 'http://example.com/', retries=False)

    Errors will be wrapped in :class:`~urllib3.exceptions.MaxRetryError` unless
    retries are disabled, in which case the causing exception will be raised.

    :param int total:
        Total number of retries to allow. Takes precedence over other counts.

        Set to ``None`` to remove this constraint and fall back on other
        counts.

        Set to ``0`` to fail on the first retry.

        Set to ``False`` to disable and imply ``raise_on_redirect=False``.

    :param int connect:
        How many connection-related errors to retry on.

        These are errors raised before the request is sent to the remote server,
        which we assume has not triggered the server to process the request.

        Set to ``0`` to fail on the first retry of this type.

    :param int read:
        How many times to retry on read errors.

        These errors are raised after the request was sent to the server, so the
        request may have side-effects.

        Set to ``0`` to fail on the first retry of this type.

    :param int redirect:
        How many redirects to perform. Limit this to avoid infinite redirect
        loops.

        A redirect is a HTTP response with a status code 301, 302, 303, 307 or
        308.

        Set to ``0`` to fail on the first retry of this type.

        Set to ``False`` to disable and imply ``raise_on_redirect=False``.

    :param int status:
        How many times to retry on bad status codes.

        These are retries made on responses, where status code matches
        ``status_forcelist``.

        Set to ``0`` to fail on the first retry of this type.

    :param int other:
        How many times to retry on other errors.

        Other errors are errors that are not connect, read, redirect or status errors.
        These errors might be raised after the request was sent to the server, so the
        request might have side-effects.

        Set to ``0`` to fail on the first retry of this type.

        If ``total`` is not set, it's a good idea to set this to 0 to account
        for unexpected edge cases and avoid infinite retry loops.

    :param iterable allowed_methods:
        Set of uppercased HTTP method verbs that we should retry on.

        By default, we only retry on methods which are considered to be
        idempotent (multiple requests with the same parameters end with the
        same state). See :attr:`Retry.DEFAULT_ALLOWED_METHODS`.

        Set to a ``False`` value to retry on any verb.

        .. warning::

            Previously this parameter was named ``method_whitelist``, that
            usage is deprecated in v1.26.0 and will be removed in v2.0.

    :param iterable status_forcelist:
        A set of integer HTTP status codes that we should force a retry on.
        A retry is initiated if the request method is in ``allowed_methods``
        and the response status code is in ``status_forcelist``.

        By default, this is disabled with ``None``.

    :param float backoff_factor:
        A backoff factor to apply between attempts after the second try
        (most errors are resolved immediately by a second try without a
        delay). urllib3 will sleep for::

            {backoff factor} * (2 ** ({number of total retries} - 1))

        seconds. If the backoff_factor is 0.1, then :func:`.sleep` will sleep
        for [0.0s, 0.2s, 0.4s, ...] between retries. It will never be longer
        than :attr:`Retry.DEFAULT_BACKOFF_MAX`.

        By default, backoff is disabled (set to 0).

    :param bool raise_on_redirect: Whether, if the number of redirects is
        exhausted, to raise a MaxRetryError, or to return a response with a
        response code in the 3xx range.

    :param bool raise_on_status: Similar meaning to ``raise_on_redirect``:
        whether we should raise an exception, or return a response,
        if status falls in ``status_forcelist`` range and retries have
        been exhausted.

    :param tuple history: The history of the request encountered during
        each call to :meth:`~Retry.increment`. The list is in the order
        the requests occurred. Each list item is of class :class:`RequestHistory`.

    :param bool respect_retry_after_header:
        Whether to respect Retry-After header on status codes defined as
        :attr:`Retry.RETRY_AFTER_STATUS_CODES` or not.

    :param iterable remove_headers_on_redirect:
        Sequence of headers to remove from the request when a response
        indicating a redirect is returned before firing off the redirected
        request.
    )�HEAD�GET�PUT�DELETE�OPTIONS�TRACE)i�i�i�)�Cookie�
AuthorizationzProxy-Authorization�x�
NrTc�&�|tur1|turtd��tjdtd��|}|tur|j
}|tur|j}||_||_||_	||_
||_|dus|durd}d}
||_|xs
t�|_||_|	|_|
|_||_|xs
t'�|_|
|_t-|D�cgc]}|j/���c}�|_ycc}w)NzoUsing both 'allowed_methods' and 'method_whitelist' together is not allowed. Instead only use 'allowed_methods'�lUsing 'method_whitelist' with Retry is deprecated and will be removed in v2.0. Use 'allowed_methods' insteadr)�
stacklevelFr)�_Default�
ValueErrorrrrrr)�total�connect�readr�other�redirect�set�status_forcelist�allowed_methods�backoff_factor�raise_on_redirect�raise_on_status�tuple�history�respect_retry_after_header�	frozenset�lower�remove_headers_on_redirect)�selfrIrJrKrMrrLrPrOrQrRrSrUrVrY�method_whitelist�hs                 r �__init__zRetry.__init__�s��(�8�+��h�.� �9���

�M�M�I�"��	
�/�O��h�&�"�:�:�O�%��1�)-�)P�)P�&���
������	������
��u������H� %�� ��
� 0� 9�C�E���.���,���!2���.����)�%�'���*D��'�*3� :�;�1�Q�W�W�Y�;�+
��'��;s�*Dc��t|j|j|j|j|j
|j|j|j|j|j|j|j|j��
}d|vrKd|vrGd|jvr*tj dt"�|j$|d<n|j$|d<|j'|�t)|�di|��S)N)
rIrJrKrMrrLrOrQrRrSrUrYrVr[rPrEr7)�dictrIrJrKrMrrLrOrQrRrSrUrYrV�__dict__rrrrP�update�type)rZ�kw�paramss   r �newz	Retry.new2s�����*�*��L�L�����]�]��;�;��*�*�!�2�2��.�.�"�4�4� �0�0��L�L�'+�'F�'F�'+�'F�'F�
��*�R�'�,=�R�,G�!�T�]�]�2��
�
�M�&��
.2�-A�-A��)�*�,0�,@�,@��(�)��
�
�b���t�D�z�#�F�#�#r"c��|�|�|n|j}t|t�r|St|�xrd}|||��}tjd||�|S)z3Backwards-compatibility for the old retries format.N)rMz!Converted retries value: %r -> %r)�DEFAULT�
isinstancer9�bool�log�debug)r�retriesrM�default�new_retriess     r �from_intzRetry.from_intVsY���?�!(�!4�g�#�+�+�G��g�u�%��N���>�*�d���'�H�5���	�	�5�w��L��r"c
���tttd�t|j����}|dkry|j
d|dz
zz}t
|j|�S)zIFormula for computing the current backoff

        :rtype: float
        c��|jduS�N)r)�xs r �<lambda>z(Retry.get_backoff_time.<locals>.<lambda>ls��A�$7�$7�4�$?�r"�rr)�len�listr�reversedrUrQ�minr/)rZ�consecutive_errors_len�
backoff_values   r �get_backoff_timezRetry.get_backoff_timedsf��"%���?��$�,�,�AW�X�
�"
��
"�Q�&���+�+�q�5K�a�5O�/P�Q�
��4�+�+�]�;�;r"c�H�tjd|�rt|�}nxtjj|�}|�t
d|z��|d�|dddz|ddz}tjj|�}|tj�z
}|dkrd}|S)Nz^\s*[0-9]+\s*$zInvalid Retry-After header: %s�	)rrCr)	�re�match�int�email�utils�parsedate_tzr�	mktime_tz�time)rZ�retry_after�seconds�retry_date_tuple�
retry_dates     r �parse_retry_afterzRetry.parse_retry_afterus���
�8�8�%�{�3��+�&�G�$�{�{�7�7��D���'�#�$D�{�$R�S�S���"�*�
$4�B�Q�#7�$�#>�AQ�RT�RU�AV�#V� ����.�.�/?�@�J� �4�9�9�;�.�G��Q�;��G��r"c�`�|jjd�}|�y|j|�S)z(Get the value of Retry-After in seconds.zRetry-AfterN)�headers�getr��rZ�responser�s   r �get_retry_afterzRetry.get_retry_after�s4���&�&�*�*�=�9������%�%�k�2�2r"c�V�|j|�}|rtj|�yy)NTF)r�r��sleepr�s   r �sleep_for_retryzRetry.sleep_for_retry�s'���*�*�8�4����J�J�{�#��r"c�Z�|j�}|dkrytj|�y)Nr)r|r�r�)rZ�backoffs  r �_sleep_backoffzRetry._sleep_backoff�s&���'�'�)���a�<���
�
�7�r"c�h�|jr|r|j|�}|ry|j�y)aBSleep between retry attempts.

        This method will respect a server's ``Retry-After`` response header
        and sleep the duration of the time requested. If that is not present, it
        will use an exponential backoff. By default, the backoff factor is 0 and
        this method will return immediately.
        N)rVr�r�)rZr��slepts   r r�zRetry.sleep�s1���*�*�x��(�(��2�E������r"c�Z�t|t�r|j}t|t�S)zzErrors when we're fairly sure that the server did not receive the
        request, so it should be safe to retry.
        )rhr�original_errorr�rZ�errs  r �_is_connection_errorzRetry._is_connection_error�s'���c�:�&��$�$�C��#�2�3�3r"c�.�t|ttf�S)zErrors that occur after the request has been started, so we should
        assume that the server began processing it.
        )rhrr
r�s  r �_is_read_errorzRetry._is_read_error�s���#� 0�-�@�A�Ar"c��d|jvr'tjdt�|j}n|j
}|r|j
�|vryy)zyChecks if a given HTTP method should be retried upon, depending if
        it is included in the allowed_methods
        r[rEFT)r`rrrr[rP�upper)rZrrPs   r �_is_method_retryablezRetry._is_method_retryable�sS������.��M�M�I�"�
�
#�3�3�O�"�2�2�O��v�|�|�~�_�D��r"c��|j|�sy|jr||jvry|jxr |jxr|xr||jvS)awIs this method/status code retryable? (Based on allowlists and control
        variables such as the number of total retries to allow, whether to
        respect the Retry-After header, whether this header is present, and
        whether the returned status code is on the list of status codes to
        be retried upon on the presence of the aforementioned header)
        FT)r�rOrIrV�RETRY_AFTER_STATUS_CODES)rZr�status_code�has_retry_afters    r �is_retryzRetry.is_retry�sg���(�(��0��� � �[�D�4I�4I�%I��
�J�J�
?��/�/�
?��
?��� =� =�=�		
r"c���|j|j|j|j|j|j
f}t
td|��}|syt|�dkS)zAre we out of retries?NFr)	rIrJrKrMrrLrw�filterry)rZ�retry_countss  r �is_exhaustedzRetry.is_exhausted�s^��
�J�J��L�L��I�I��M�M��K�K��J�J�

���F�4��6�7�����<� �1�$�$r"c	�T�|jdur"|r tjt|�||��|j}|�|dz}|j}|j
}	|j}
|j}|j}d}
d}d}|r=|j|�r,|dur tjt|�||��|��|dz}n�|rN|j|�r=|	dus|j|�s tjt|�||��|	��|	dz}	n�|r|��|dz}n�|r6|j�r&|
�|
dz}
d}
|j�}|j}n[tj}
|rI|jr=|�|dz}tjj!|j��}
|j}|j"t%|||||�fz}|j'|||	|
|||��}|j)�rt+|||xst|
���t,j/d||�|S)	a�Return a new Retry object with incremented retry counters.

        :param response: A response object, or None, if the server did not
            return a response.
        :type response: :class:`~urllib3.response.HTTPResponse`
        :param Exception error: An error encountered during the request, or
            None if the response was received successfully.

        :return: A new ``Retry`` object.
        FNru�unknownztoo many redirects)r�)rIrJrKrMrrLrUz$Incremented Retry for (url='%s'): %r)rIr�reraiserbrJrKrMrrLr�r�r��get_redirect_locationr
�
GENERIC_ERROR�SPECIFIC_ERROR�formatrUrrer�r	rjrk)rZrrr�r�_pool�_stacktracerIrJrKrM�status_countrL�causerrrU�	new_retrys                  r �	incrementzRetry.increment�s*��&�:�:���5��+�+�d�5�k�5�+�>�>��
�
�����Q�J�E��,�,���y�y���=�=���{�{���
�
������ ���T�.�.�u�5��%���k�k�$�u�+�u�k�B�B��$��1���
�t�*�*�5�1��u�}�D�$=�$=�f�$E��k�k�$�u�+�u�k�B�B��!���	��
�� ���
��
�(�8�8�:��#��A�
��(�E� (� >� >� @���_�_�F�
"�/�/�E��H�O�O��+� �A�%�L�%�4�4�;�;����;�X��!�����,�,��6�3��v�7H�I�"
�
���H�H���������
�	��!�!�#���s�E�,I�]�5�5I�J�J��	�	�8�#�y�I��r"c�:�djt|�|��S)Nz|{cls.__name__}(total={self.total}, connect={self.connect}, read={self.read}, redirect={self.redirect}, status={self.status}))rrZ)r�rb)rZs r �__repr__zRetry.__repr__Xs��
P�
�&�T�$�Z�d�&�
+�	,r"c����|dk(r&tjdt�|jS	t	tt|�|�S#t$rt	t|�cYSwxYw)Nr[rE)rrrrP�getattr�superr9�AttributeError)rZ�item�	__class__s  �r �__getattr__zRetry.__getattr__^sd����%�%��M�M�I�"�
�
�'�'�'�	(��5���-�t�4�4���	(��5�$�'�'�	(�s�A�A$�#A$)TNrr)F)NNNNNN)r2r3r4�__doc__rWrr�r)r/rGr]re�classmethodror|r�r�r�r�r�r�r�r�r�r�r�r�r��
__classcell__)r�s@r r9r9[s����F�R(�<���
 )��9��*3�:�*�&�
����
���� ������#'�#+�!�#;
�z"$�H����<�"�.3���� 4�B��(
�(%�$������\�|,�(�(r"r9�) �
__future__rr��loggingrr�r�collectionsr�	itertoolsr�
exceptionsrrr	r
rrr
�packagesr�	getLoggerr2rjr�objectrGrbr�
add_metaclassr9rgr7r"r �<module>r�s���&���	���"�������g����!����O����8��5(��5(�p����:��N(�F�N(��N(�d�a���
r"
¿Qué es la limpieza dental de perros? - Clínica veterinaria


Es la eliminación del sarro y la placa adherida a la superficie de los dientes mediante un equipo de ultrasonidos que garantiza la integridad de las piezas dentales a la vez que elimina en profundidad cualquier resto de suciedad.

A continuación se procede al pulido de los dientes mediante una fresa especial que elimina la placa bacteriana y devuelve a los dientes el aspecto sano que deben tener.

Una vez terminado todo el proceso, se mantiene al perro en observación hasta que se despierta de la anestesia, bajo la atenta supervisión de un veterinario.

¿Cada cuánto tiempo tengo que hacerle una limpieza dental a mi perro?

A partir de cierta edad, los perros pueden necesitar una limpieza dental anual o bianual. Depende de cada caso. En líneas generales, puede decirse que los perros de razas pequeñas suelen acumular más sarro y suelen necesitar una atención mayor en cuanto a higiene dental.


Riesgos de una mala higiene


Los riesgos más evidentes de una mala higiene dental en los perros son los siguientes:

  • Cuando la acumulación de sarro no se trata, se puede producir una inflamación y retracción de las encías que puede descalzar el diente y provocar caídas.
  • Mal aliento (halitosis).
  • Sarro perros
  • Puede ir a más
  • Las bacterias de la placa pueden trasladarse a través del torrente circulatorio a órganos vitales como el corazón ocasionando problemas de endocarditis en las válvulas. Las bacterias pueden incluso acantonarse en huesos (La osteomielitis es la infección ósea, tanto cortical como medular) provocando mucho dolor y una artritis séptica).

¿Cómo se forma el sarro?

El sarro es la calcificación de la placa dental. Los restos de alimentos, junto con las bacterias presentes en la boca, van a formar la placa bacteriana o placa dental. Si la placa no se retira, al mezclarse con la saliva y los minerales presentes en ella, reaccionará formando una costra. La placa se calcifica y se forma el sarro.

El sarro, cuando se forma, es de color blanquecino pero a medida que pasa el tiempo se va poniendo amarillo y luego marrón.

Síntomas de una pobre higiene dental
La señal más obvia de una mala salud dental canina es el mal aliento.

Sin embargo, a veces no es tan fácil de detectar
Y hay perros que no se dejan abrir la boca por su dueño. Por ejemplo…

Recientemente nos trajeron a la clínica a un perro que parpadeaba de un ojo y decía su dueño que le picaba un lado de la cara. Tenía molestias y dificultad para comer, lo que había llevado a sus dueños a comprarle comida blanda (que suele ser un poco más cara y llevar más contenido en grasa) durante medio año. Después de una exploración oftalmológica, nos dimos cuenta de que el ojo tenía una úlcera en la córnea probablemente de rascarse . Además, el canto lateral del ojo estaba inflamado. Tenía lo que en humanos llamamos flemón pero como era un perro de pelo largo, no se le notaba a simple vista. Al abrirle la boca nos llamó la atención el ver una muela llena de sarro. Le realizamos una radiografía y encontramos una fístula que llegaba hasta la parte inferior del ojo.

Le tuvimos que extraer la muela. Tras esto, el ojo se curó completamente con unos colirios y una lentilla protectora de úlcera. Afortunadamente, la úlcera no profundizó y no perforó el ojo. Ahora el perro come perfectamente a pesar de haber perdido una muela.

¿Cómo mantener la higiene dental de tu perro?
Hay varias maneras de prevenir problemas derivados de la salud dental de tu perro.

Limpiezas de dientes en casa
Es recomendable limpiar los dientes de tu perro semanal o diariamente si se puede. Existe una gran variedad de productos que se pueden utilizar:

Pastas de dientes.
Cepillos de dientes o dedales para el dedo índice, que hacen más fácil la limpieza.
Colutorios para echar en agua de bebida o directamente sobre el diente en líquido o en spray.

En la Clínica Tus Veterinarios enseñamos a nuestros clientes a tomar el hábito de limpiar los dientes de sus perros desde que son cachorros. Esto responde a nuestro compromiso con la prevención de enfermedades caninas.

Hoy en día tenemos muchos clientes que limpian los dientes todos los días a su mascota, y como resultado, se ahorran el dinero de hacer limpiezas dentales profesionales y consiguen una mejor salud de su perro.


Limpiezas dentales profesionales de perros y gatos

Recomendamos hacer una limpieza dental especializada anualmente. La realizamos con un aparato de ultrasonidos que utiliza agua para quitar el sarro. Después, procedemos a pulir los dientes con un cepillo de alta velocidad y una pasta especial. Hacemos esto para proteger el esmalte.

La frecuencia de limpiezas dentales necesaria varía mucho entre razas. En general, las razas grandes tienen buena calidad de esmalte, por lo que no necesitan hacerlo tan a menudo e incluso pueden pasarse la vida sin requerir una limpieza. Sin embargo, razas pequeñas como el Yorkshire o el Maltés, deben hacérselas todos los años desde cachorros si se quiere conservar sus piezas dentales.

Otro factor fundamental es la calidad del pienso. Algunas marcas han diseñado croquetas que limpian la superficie del diente y de la muela al masticarse.

Ultrasonido para perros

¿Se necesita anestesia para las limpiezas dentales de perros y gatos?

La limpieza dental en perros no es una técnica que pueda practicarse sin anestesia general , aunque hay veces que los propietarios no quieren anestesiar y si tiene poco sarro y el perro es muy bueno se puede intentar…… , pero no se va a poder pulir ni acceder a todas la zona de la boca …. Además los limpiadores dentales van a irrigar agua y hay riesgo de aspiración a vías respiratorias si no se realiza una anestesia correcta con intubación traqueal . En resumen , sin anestesia no se va hacer una correcta limpieza dental.

Tampoco sirve la sedación ya que necesitamos que el animal esté totalmente quieto, y el veterinario tenga un acceso completo a todas sus piezas dentales y encías.

Alimentos para la limpieza dental

Hay que tener cierto cuidado a la hora de comprar determinados alimentos porque no todos son saludables. Algunos tienen demasiado contenido graso, que en exceso puede causar problemas cardiovasculares y obesidad.

Los mejores alimentos para los dientes son aquellos que están elaborados por empresas farmacéuticas y llevan componentes químicos con tratamientos específicos para el diente del perro. Esto implica no solo limpieza a través de la acción mecánica de morder sino también un tratamiento antibacteriano para prevenir el sarro.

Conclusión

Si eres como la mayoría de dueños, por falta de tiempo , es probable que no estés prestando la suficiente atención a la limpieza dental de tu perro. Por eso te animamos a que comiences a limpiar los dientes de tu perro y consideres atender a su higiene bucal con frecuencia.

Estas simples medidas pueden conllevar a que tu perro tenga una vida más larga y mucho más saludable.

Si te resulta imposible introducir un cepillo de dientes a tu perro en la boca, pásate con él por clínica Tus Veterinarios y te explicamos cómo hacerlo.

Necesitas hacer una limpieza dental profesional a tu mascota?
Llámanos al 622575274 o contacta con nosotros

Deja un comentario

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *

¡Hola!