§
    ÒÁ³gÈr  ã                  ó²  — d dl mZ d dlmZmZmZ d dlmZ d dlZddl	m
Z
 ddlmZmZmZmZmZ ddlmZmZ dd	lmZ d
dlmZmZmZmZmZmZ ddlmZmZ ddl m!Z!m"Z" ddl#m$Z$m%Z% ddl&m'Z'm(Z( ddl)m*Z*m+Z+m,Z, ddl-m.Z. ddl/m0Z0 ddgZ1 G d„ de¦  «        Z2 G d„ de¦  «        Z3 G d„ d¦  «        Z4 G d„ d¦  «        Z5 G d„ d¦  «        Z6 G d„ d¦  «        Z7dS )é    )Úannotations)ÚUnionÚIterableÚOptional)ÚLiteralNé   )Ú_legacy_response)Ú	NOT_GIVENÚBodyÚQueryÚHeadersÚNotGiven)Úmaybe_transformÚasync_maybe_transform)Úcached_propertyé   )ÚCheckpointsÚAsyncCheckpointsÚCheckpointsWithRawResponseÚAsyncCheckpointsWithRawResponseÚ CheckpointsWithStreamingResponseÚ%AsyncCheckpointsWithStreamingResponse)ÚSyncAPIResourceÚAsyncAPIResource)Úto_streamed_response_wrapperÚ"async_to_streamed_response_wrapper)ÚSyncCursorPageÚAsyncCursorPage)ÚAsyncPaginatorÚmake_request_options)Újob_list_paramsÚjob_create_paramsÚjob_list_events_params)ÚFineTuningJob)ÚFineTuningJobEventÚJobsÚ	AsyncJobsc                  óÎ   — e Zd Zed0d„¦   «         Zed1d„¦   «         Zed2d„¦   «         Zeeeeeeddded	œ
d3d"„Zddded#œd4d%„Z	eeddded&œd5d,„Z
ddded#œd4d-„Zeeddded&œd6d/„ZdS )7r&   Úreturnr   c                ó*   — t          | j        ¦  «        S ©N)r   Ú_client©Úselfs    úd/var/www/html/mpstechhub/venv/lib/python3.11/site-packages/openai/resources/fine_tuning/jobs/jobs.pyÚcheckpointszJobs.checkpoints(   s   € å˜4œ<Ñ(Ô(Ð(ó    ÚJobsWithRawResponsec                ó    — t          | ¦  «        S ©a  
        This property can be used as a prefix for any HTTP method call to return
        the raw response object instead of the parsed content.

        For more information, see https://www.github.com/openai/openai-python#accessing-raw-response-data-eg-headers
        )r2   r-   s    r/   Úwith_raw_responsezJobs.with_raw_response,   s   € õ # 4Ñ(Ô(Ð(r1   ÚJobsWithStreamingResponsec                ó    — t          | ¦  «        S ©zÌ
        An alternative to `.with_raw_response` that doesn't eagerly read the response body.

        For more information, see https://www.github.com/openai/openai-python#with_streaming_response
        )r6   r-   s    r/   Úwith_streaming_responsezJobs.with_streaming_response6   s   € õ )¨Ñ.Ô.Ð.r1   N©
ÚhyperparametersÚintegrationsÚmethodÚseedÚsuffixÚvalidation_fileÚextra_headersÚextra_queryÚ
extra_bodyÚtimeoutÚmodelúQUnion[str, Literal['babbage-002', 'davinci-002', 'gpt-3.5-turbo', 'gpt-4o-mini']]Útraining_fileÚstrr;   ú,job_create_params.Hyperparameters | NotGivenr<   ú<Optional[Iterable[job_create_params.Integration]] | NotGivenr=   ú#job_create_params.Method | NotGivenr>   úOptional[int] | NotGivenr?   úOptional[str] | NotGivenr@   rA   úHeaders | NonerB   úQuery | NonerC   úBody | NonerD   ú'float | httpx.Timeout | None | NotGivenr$   c               ó¢   — |                       dt          ||||||||dœt          j        ¦  «        t	          |	|
||¬¦  «        t
          ¬¦  «        S )áö  
        Creates a fine-tuning job which begins the process of creating a new model from
        a given dataset.

        Response includes details of the enqueued job including job status and the name
        of the fine-tuned models once complete.

        [Learn more about fine-tuning](https://platform.openai.com/docs/guides/fine-tuning)

        Args:
          model: The name of the model to fine-tune. You can select one of the
              [supported models](https://platform.openai.com/docs/guides/fine-tuning#which-models-can-be-fine-tuned).

          training_file: The ID of an uploaded file that contains training data.

              See [upload file](https://platform.openai.com/docs/api-reference/files/create)
              for how to upload a file.

              Your dataset must be formatted as a JSONL file. Additionally, you must upload
              your file with the purpose `fine-tune`.

              The contents of the file should differ depending on if the model uses the
              [chat](https://platform.openai.com/docs/api-reference/fine-tuning/chat-input),
              [completions](https://platform.openai.com/docs/api-reference/fine-tuning/completions-input)
              format, or if the fine-tuning method uses the
              [preference](https://platform.openai.com/docs/api-reference/fine-tuning/preference-input)
              format.

              See the [fine-tuning guide](https://platform.openai.com/docs/guides/fine-tuning)
              for more details.

          hyperparameters: The hyperparameters used for the fine-tuning job. This value is now deprecated
              in favor of `method`, and should be passed in under the `method` parameter.

          integrations: A list of integrations to enable for your fine-tuning job.

          method: The method used for fine-tuning.

          seed: The seed controls the reproducibility of the job. Passing in the same seed and
              job parameters should produce the same results, but may differ in rare cases. If
              a seed is not specified, one will be generated for you.

          suffix: A string of up to 64 characters that will be added to your fine-tuned model
              name.

              For example, a `suffix` of "custom-model-name" would produce a model name like
              `ft:gpt-4o-mini:openai:custom-model-name:7p4lURel`.

          validation_file: The ID of an uploaded file that contains validation data.

              If you provide this file, the data is used to generate validation metrics
              periodically during fine-tuning. These metrics can be viewed in the fine-tuning
              results file. The same data should not be present in both train and validation
              files.

              Your dataset must be formatted as a JSONL file. You must upload your file with
              the purpose `fine-tune`.

              See the [fine-tuning guide](https://platform.openai.com/docs/guides/fine-tuning)
              for more details.

          extra_headers: Send extra headers

          extra_query: Add additional query parameters to the request

          extra_body: Add additional JSON properties to the request

          timeout: Override the client-level default timeout for this request, in seconds
        ú/fine_tuning/jobs©rE   rG   r;   r<   r=   r>   r?   r@   ©rA   rB   rC   rD   ©ÚbodyÚoptionsÚcast_to)Ú_postr   r"   ÚJobCreateParamsr    r$   ©r.   rE   rG   r;   r<   r=   r>   r?   r@   rA   rB   rC   rD   s                r/   ÚcreatezJobs.create?   s~   € ðn �zŠzØÝ à"Ø%2Ø'6Ø$0Ø$Ø Ø$Ø'6ð	ð 	õ "Ô1ñô õ )Ø+¸ÐQ[Ðelðñ ô õ "ð% ñ 
ô 
ð 	
r1   rV   Úfine_tuning_job_idc          	     óŒ   — |st          d|›�¦  «        ‚|                      d|› �t          ||||¬¦  «        t          ¬¦  «        S )á²  
        Get info about a fine-tuning job.

        [Learn more about fine-tuning](https://platform.openai.com/docs/guides/fine-tuning)

        Args:
          extra_headers: Send extra headers

          extra_query: Add additional query parameters to the request

          extra_body: Add additional JSON properties to the request

          timeout: Override the client-level default timeout for this request, in seconds
        úAExpected a non-empty value for `fine_tuning_job_id` but received ú/fine_tuning/jobs/rV   ©rY   rZ   ©Ú
ValueErrorÚ_getr    r$   ©r.   r_   rA   rB   rC   rD   s         r/   ÚretrievezJobs.retrieve«   sn   € ð2 "ð 	yÝÐwÐasÐwÐwÑxÔxÐxØ�yŠyØ5Ð!3Ð5Ð5Ý(Ø+¸ÐQ[Ðelðñ ô õ "ð ñ 
ô 
ð 	
r1   ©ÚafterÚlimitrA   rB   rC   rD   rk   ústr | NotGivenrl   úint | NotGivenúSyncCursorPage[FineTuningJob]c               ó¸   — |                       dt          t                   t          ||||t	          ||dœt
          j        ¦  «        ¬¦  «        t          ¬¦  «        S ©aë  
        List your organization's fine-tuning jobs

        Args:
          after: Identifier for the last job from the previous pagination request.

          limit: Number of fine-tuning jobs to retrieve.

          extra_headers: Send extra headers

          extra_query: Add additional query parameters to the request

          extra_body: Add additional JSON properties to the request

          timeout: Override the client-level default timeout for this request, in seconds
        rT   ©rk   rl   ©rA   rB   rC   rD   Úquery©ÚpagerY   rE   )Ú_get_api_listr   r$   r    r   r!   ÚJobListParams©r.   rk   rl   rA   rB   rC   rD   s          r/   Úlistz	Jobs.listÎ   st   € ð8 ×!Ò!ØÝ¥Ô.Ý(Ø+Ø'Ø%ØÝ%à!&Ø!&ðð õ $Ô1ñô ðñ ô õ  ð! "ñ 
ô 
ð 	
r1   c          	     óŽ   — |st          d|›�¦  «        ‚|                      d|› d�t          ||||¬¦  «        t          ¬¦  «        S )áW  
        Immediately cancel a fine-tune job.

        Args:
          extra_headers: Send extra headers

          extra_query: Add additional query parameters to the request

          extra_body: Add additional JSON properties to the request

          timeout: Override the client-level default timeout for this request, in seconds
        rb   rc   ú/cancelrV   rd   ©rf   r[   r    r$   rh   s         r/   ÚcancelzJobs.cancelý   sq   € ð. "ð 	yÝÐwÐasÐwÐwÑxÔxÐxØ�zŠzØ<Ð!3Ð<Ð<Ð<Ý(Ø+¸ÐQ[Ðelðñ ô õ "ð ñ 
ô 
ð 	
r1   ú"SyncCursorPage[FineTuningJobEvent]c               óè   — |st          d|›�¦  «        ‚|                      d|› d�t          t                   t	          ||||t          ||dœt          j        ¦  «        ¬¦  «        t          ¬¦  «        S ©aã  
        Get status updates for a fine-tuning job.

        Args:
          after: Identifier for the last event from the previous pagination request.

          limit: Number of events to retrieve.

          extra_headers: Send extra headers

          extra_query: Add additional query parameters to the request

          extra_body: Add additional JSON properties to the request

          timeout: Override the client-level default timeout for this request, in seconds
        rb   rc   z/eventsrr   rs   ru   )rf   rw   r   r%   r    r   r#   ÚJobListEventsParams©r.   r_   rk   rl   rA   rB   rC   rD   s           r/   Úlist_eventszJobs.list_events  s¢   € ð: "ð 	yÝÐwÐasÐwÐwÑxÔxÐxØ×!Ò!Ø<Ð!3Ð<Ð<Ð<ÝÕ 2Ô3Ý(Ø+Ø'Ø%ØÝ%à!&Ø!&ðð õ +Ô>ñô ðñ ô õ %ð! "ñ 
ô 
ð 	
r1   )r)   r   )r)   r2   )r)   r6   ©rE   rF   rG   rH   r;   rI   r<   rJ   r=   rK   r>   rL   r?   rM   r@   rM   rA   rN   rB   rO   rC   rP   rD   rQ   r)   r$   ©r_   rH   rA   rN   rB   rO   rC   rP   rD   rQ   r)   r$   )rk   rm   rl   rn   rA   rN   rB   rO   rC   rP   rD   rQ   r)   ro   )r_   rH   rk   rm   rl   rn   rA   rN   rB   rO   rC   rP   rD   rQ   r)   r€   ©Ú__name__Ú
__module__Ú__qualname__r   r0   r5   r9   r
   r^   ri   rz   r   r…   © r1   r/   r&   r&   '   s~  € € € € € Øð)ð )ð )ñ „_ð)ð ð)ð )ð )ñ „_ð)ð ð/ð /ð /ñ „_ð/ð IRØU^Ø6?Ø)2Ø+4Ø4=ð )-Ø$(Ø"&Ø;Dð!j
ð j
ð j
ð j
ð j
ð j
ðd )-Ø$(Ø"&Ø;Dð!
ð !
ð !
ð !
ð !
ð !
ðL !*Ø )ð )-Ø$(Ø"&Ø;Dð-
ð -
ð -
ð -
ð -
ð -
ðj )-Ø$(Ø"&Ø;Dð
ð 
ð 
ð 
ð 
ð 
ðJ !*Ø )ð )-Ø$(Ø"&Ø;Dð0
ð 0
ð 0
ð 0
ð 0
ð 0
ð 0
ð 0
r1   c                  óÎ   — e Zd Zed0d„¦   «         Zed1d„¦   «         Zed2d„¦   «         Zeeeeeeddded	œ
d3d"„Zddded#œd4d%„Z	eeddded&œd5d,„Z
ddded#œd4d-„Zeeddded&œd6d/„ZdS )7r'   r)   r   c                ó*   — t          | j        ¦  «        S r+   )r   r,   r-   s    r/   r0   zAsyncJobs.checkpointsR  s   € å ¤Ñ-Ô-Ð-r1   ÚAsyncJobsWithRawResponsec                ó    — t          | ¦  «        S r4   )r�   r-   s    r/   r5   zAsyncJobs.with_raw_responseV  s   € õ (¨Ñ-Ô-Ð-r1   ÚAsyncJobsWithStreamingResponsec                ó    — t          | ¦  «        S r8   )r‘   r-   s    r/   r9   z!AsyncJobs.with_streaming_response`  s   € õ .¨dÑ3Ô3Ð3r1   Nr:   rE   rF   rG   rH   r;   rI   r<   rJ   r=   rK   r>   rL   r?   rM   r@   rA   rN   rB   rO   rC   rP   rD   rQ   r$   c             ƒ  ó¾   K  — |                       dt          ||||||||dœt          j        ¦  «        ƒ d{V —†t	          |	|
||¬¦  «        t
          ¬¦  «        ƒ d{V —†S )rS   rT   rU   NrV   rW   )r[   r   r"   r\   r    r$   r]   s                r/   r^   zAsyncJobs.createi  s¾   è è € ðn —Z’ZØÝ,à"Ø%2Ø'6Ø$0Ø$Ø Ø$Ø'6ð	ð 	õ "Ô1ñô ð ð ð ð ð ð õ )Ø+¸ÐQ[Ðelðñ ô õ "ð%  ñ 
ô 
ð 
ð 
ð 
ð 
ð 
ð 
ð 	
r1   rV   r_   c          	   ƒ  óœ   K  — |st          d|›�¦  «        ‚|                      d|› �t          ||||¬¦  «        t          ¬¦  «        ƒ d{V —†S )ra   rb   rc   rV   rd   Nre   rh   s         r/   ri   zAsyncJobs.retrieveÕ  s�   è è € ð2 "ð 	yÝÐwÐasÐwÐwÑxÔxÐxØ—Y’YØ5Ð!3Ð5Ð5Ý(Ø+¸ÐQ[Ðelðñ ô õ "ð ñ 
ô 
ð 
ð 
ð 
ð 
ð 
ð 
ð 	
r1   rj   rk   rm   rl   rn   ú=AsyncPaginator[FineTuningJob, AsyncCursorPage[FineTuningJob]]c               ó¸   — |                       dt          t                   t          ||||t	          ||dœt
          j        ¦  «        ¬¦  «        t          ¬¦  «        S rq   )rw   r   r$   r    r   r!   rx   ry   s          r/   rz   zAsyncJobs.listø  st   € ð8 ×!Ò!ØÝ ¥Ô/Ý(Ø+Ø'Ø%ØÝ%à!&Ø!&ðð õ $Ô1ñô ðñ ô õ  ð! "ñ 
ô 
ð 	
r1   c          	   ƒ  óž   K  — |st          d|›�¦  «        ‚|                      d|› d�t          ||||¬¦  «        t          ¬¦  «        ƒ d{V —†S )r|   rb   rc   r}   rV   rd   Nr~   rh   s         r/   r   zAsyncJobs.cancel'  s“   è è € ð. "ð 	yÝÐwÐasÐwÐwÑxÔxÐxØ—Z’ZØ<Ð!3Ð<Ð<Ð<Ý(Ø+¸ÐQ[Ðelðñ ô õ "ð  ñ 
ô 
ð 
ð 
ð 
ð 
ð 
ð 
ð 	
r1   úGAsyncPaginator[FineTuningJobEvent, AsyncCursorPage[FineTuningJobEvent]]c               óè   — |st          d|›�¦  «        ‚|                      d|› d�t          t                   t	          ||||t          ||dœt          j        ¦  «        ¬¦  «        t          ¬¦  «        S r‚   )rf   rw   r   r%   r    r   r#   rƒ   r„   s           r/   r…   zAsyncJobs.list_eventsH  s¢   € ð: "ð 	yÝÐwÐasÐwÐwÑxÔxÐxØ×!Ò!Ø<Ð!3Ð<Ð<Ð<Ý Õ!3Ô4Ý(Ø+Ø'Ø%ØÝ%à!&Ø!&ðð õ +Ô>ñô ðñ ô õ %ð! "ñ 
ô 
ð 	
r1   )r)   r   )r)   r�   )r)   r‘   r†   r‡   )rk   rm   rl   rn   rA   rN   rB   rO   rC   rP   rD   rQ   r)   r•   )r_   rH   rk   rm   rl   rn   rA   rN   rB   rO   rC   rP   rD   rQ   r)   r˜   rˆ   rŒ   r1   r/   r'   r'   Q  s~  € € € € € Øð.ð .ð .ñ „_ð.ð ð.ð .ð .ñ „_ð.ð ð4ð 4ð 4ñ „_ð4ð IRØU^Ø6?Ø)2Ø+4Ø4=ð )-Ø$(Ø"&Ø;Dð!j
ð j
ð j
ð j
ð j
ð j
ðd )-Ø$(Ø"&Ø;Dð!
ð !
ð !
ð !
ð !
ð !
ðL !*Ø )ð )-Ø$(Ø"&Ø;Dð-
ð -
ð -
ð -
ð -
ð -
ðj )-Ø$(Ø"&Ø;Dð
ð 
ð 
ð 
ð 
ð 
ðJ !*Ø )ð )-Ø$(Ø"&Ø;Dð0
ð 0
ð 0
ð 0
ð 0
ð 0
ð 0
ð 0
r1   c                  ó.   — e Zd Zd	d„Zed
d„¦   «         ZdS )r2   Újobsr&   r)   ÚNonec                ó@  — || _         t          j        |j        ¦  «        | _        t          j        |j        ¦  «        | _        t          j        |j        ¦  «        | _        t          j        |j        ¦  «        | _        t          j        |j        ¦  «        | _        d S r+   )Ú_jobsr	   Úto_raw_response_wrapperr^   ri   rz   r   r…   ©r.   r›   s     r/   Ú__init__zJobsWithRawResponse.__init__|  s–   € ØˆŒ
å&Ô>ØŒKñ
ô 
ˆŒõ )Ô@ØŒMñ
ô 
ˆŒõ %Ô<ØŒIñ
ô 
ˆŒ	õ 'Ô>ØŒKñ
ô 
ˆŒõ ,ÔCØÔñ
ô 
ˆÔÐÐr1   r   c                ó4   — t          | j        j        ¦  «        S r+   )r   rž   r0   r-   s    r/   r0   zJobsWithRawResponse.checkpoints�  s   € å)¨$¬*Ô*@ÑAÔAÐAr1   N©r›   r&   r)   rœ   )r)   r   ©r‰   rŠ   r‹   r¡   r   r0   rŒ   r1   r/   r2   r2   {  sN   € € € € € ð
ð 
ð 
ð 
ð& ðBð Bð Bñ „_ðBð Bð Br1   r2   c                  ó.   — e Zd Zd	d„Zed
d„¦   «         ZdS )r�   r›   r'   r)   rœ   c                ó@  — || _         t          j        |j        ¦  «        | _        t          j        |j        ¦  «        | _        t          j        |j        ¦  «        | _        t          j        |j        ¦  «        | _        t          j        |j        ¦  «        | _        d S r+   )rž   r	   Úasync_to_raw_response_wrapperr^   ri   rz   r   r…   r    s     r/   r¡   z!AsyncJobsWithRawResponse.__init__•  s–   € ØˆŒ
å&ÔDØŒKñ
ô 
ˆŒõ )ÔFØŒMñ
ô 
ˆŒõ %ÔBØŒIñ
ô 
ˆŒ	õ 'ÔDØŒKñ
ô 
ˆŒõ ,ÔIØÔñ
ô 
ˆÔÐÐr1   r   c                ó4   — t          | j        j        ¦  «        S r+   )r   rž   r0   r-   s    r/   r0   z$AsyncJobsWithRawResponse.checkpoints¨  s   € å.¨t¬zÔ/EÑFÔFÐFr1   N©r›   r'   r)   rœ   )r)   r   r¤   rŒ   r1   r/   r�   r�   ”  sN   € € € € € ð
ð 
ð 
ð 
ð& ðGð Gð Gñ „_ðGð Gð Gr1   r�   c                  ó.   — e Zd Zd	d„Zed
d„¦   «         ZdS )r6   r›   r&   r)   rœ   c                ó  — || _         t          |j        ¦  «        | _        t          |j        ¦  «        | _        t          |j        ¦  «        | _        t          |j        ¦  «        | _        t          |j        ¦  «        | _        d S r+   )rž   r   r^   ri   rz   r   r…   r    s     r/   r¡   z"JobsWithStreamingResponse.__init__®  s‡   € ØˆŒ
å2ØŒKñ
ô 
ˆŒõ 5ØŒMñ
ô 
ˆŒõ 1ØŒIñ
ô 
ˆŒ	õ 3ØŒKñ
ô 
ˆŒõ 8ØÔñ
ô 
ˆÔÐÐr1   r   c                ó4   — t          | j        j        ¦  «        S r+   )r   rž   r0   r-   s    r/   r0   z%JobsWithStreamingResponse.checkpointsÁ  s   € å/°´
Ô0FÑGÔGÐGr1   Nr£   )r)   r   r¤   rŒ   r1   r/   r6   r6   ­  sN   € € € € € ð
ð 
ð 
ð 
ð& ðHð Hð Hñ „_ðHð Hð Hr1   r6   c                  ó.   — e Zd Zd	d„Zed
d„¦   «         ZdS )r‘   r›   r'   r)   rœ   c                ó  — || _         t          |j        ¦  «        | _        t          |j        ¦  «        | _        t          |j        ¦  «        | _        t          |j        ¦  «        | _        t          |j        ¦  «        | _        d S r+   )rž   r   r^   ri   rz   r   r…   r    s     r/   r¡   z'AsyncJobsWithStreamingResponse.__init__Ç  s‡   € ØˆŒ
å8ØŒKñ
ô 
ˆŒõ ;ØŒMñ
ô 
ˆŒõ 7ØŒIñ
ô 
ˆŒ	õ 9ØŒKñ
ô 
ˆŒõ >ØÔñ
ô 
ˆÔÐÐr1   r   c                ó4   — t          | j        j        ¦  «        S r+   )r   rž   r0   r-   s    r/   r0   z*AsyncJobsWithStreamingResponse.checkpointsÚ  s   € å4°T´ZÔ5KÑLÔLÐLr1   Nr©   )r)   r   r¤   rŒ   r1   r/   r‘   r‘   Æ  sN   € € € € € ð
ð 
ð 
ð 
ð& ðMð Mð Mñ „_ðMð Mð Mr1   r‘   )8Ú
__future__r   Útypingr   r   r   Útyping_extensionsr   ÚhttpxÚ r	   Ú_typesr
   r   r   r   r   Ú_utilsr   r   Ú_compatr   r0   r   r   r   r   r   r   Ú	_resourcer   r   Ú	_responser   r   Ú
paginationr   r   Ú_base_clientr   r    Útypes.fine_tuningr!   r"   r#   Ú!types.fine_tuning.fine_tuning_jobr$   Ú'types.fine_tuning.fine_tuning_job_eventr%   Ú__all__r&   r'   r2   r�   r6   r‘   rŒ   r1   r/   ú<module>rÀ      s  ðð #Ð "Ð "Ð "Ð "Ð "à ,Ð ,Ð ,Ð ,Ð ,Ð ,Ð ,Ð ,Ð ,Ð ,Ø %Ð %Ð %Ð %Ð %Ð %à €€€à !Ð !Ð !Ð !Ð !Ð !Ø @Ð @Ð @Ð @Ð @Ð @Ð @Ð @Ð @Ð @Ð @Ð @Ð @Ð @ðð ð ð ð ð ð ð ð (Ð 'Ð 'Ð 'Ð 'Ð 'ðð ð ð ð ð ð ð ð ð ð ð ð ð ð ð ð <Ð ;Ð ;Ð ;Ð ;Ð ;Ð ;Ð ;Ø ZÐ ZÐ ZÐ ZÐ ZÐ ZÐ ZÐ ZØ :Ð :Ð :Ð :Ð :Ð :Ð :Ð :ðð ð ð ð ð ð ð ð ]Ð \Ð \Ð \Ð \Ð \Ð \Ð \Ð \Ð \Ø ?Ð ?Ð ?Ð ?Ð ?Ð ?Ø JÐ JÐ JÐ JÐ JÐ Jà�;Ð
€ðg
ð g
ð g
ð g
ð g
ˆ?ñ g
ô g
ð g
ðT	g
ð g
ð g
ð g
ð g
Ð ñ g
ô g
ð g
ðT	Bð Bð Bð Bð Bñ Bô Bð Bð2Gð Gð Gð Gð Gñ Gô Gð Gð2Hð Hð Hð Hð Hñ Hô Hð Hð2Mð Mð Mð Mð Mñ Mô Mð Mð Mð Mr1   