Instructions to use WueNLP/centurio_aya with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use WueNLP/centurio_aya with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="WueNLP/centurio_aya", trust_remote_code=True) messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("WueNLP/centurio_aya", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use WueNLP/centurio_aya with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "WueNLP/centurio_aya" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "WueNLP/centurio_aya", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/WueNLP/centurio_aya
- SGLang
How to use WueNLP/centurio_aya with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "WueNLP/centurio_aya" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "WueNLP/centurio_aya", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "WueNLP/centurio_aya" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "WueNLP/centurio_aya", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use WueNLP/centurio_aya with Docker Model Runner:
docker model run hf.co/WueNLP/centurio_aya
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,13 +1,114 @@
|
|
| 1 |
---
|
| 2 |
library_name: transformers
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
---
|
| 5 |
|
| 6 |
-
#
|
| 7 |
-
|
| 8 |
-
<!-- Provide a quick summary of what the model is/does. -->
|
| 9 |
-
|
| 10 |
-
|
| 11 |
|
| 12 |
## Model Details
|
| 13 |
|
|
@@ -15,23 +116,19 @@ tags: []
|
|
| 15 |
|
| 16 |
<!-- Provide a longer summary of what this model is. -->
|
| 17 |
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
- **
|
| 21 |
-
|
| 22 |
-
- **
|
| 23 |
-
- **Model type:** [More Information Needed]
|
| 24 |
-
- **Language(s) (NLP):** [More Information Needed]
|
| 25 |
-
- **License:** [More Information Needed]
|
| 26 |
-
- **Finetuned from model [optional]:** [More Information Needed]
|
| 27 |
|
| 28 |
-
### Model Sources
|
| 29 |
|
| 30 |
<!-- Provide the basic links for the model. -->
|
| 31 |
|
| 32 |
-
- **Repository:** [
|
| 33 |
-
- **Paper
|
| 34 |
-
- **Demo
|
| 35 |
|
| 36 |
## Uses
|
| 37 |
|
|
@@ -41,159 +138,106 @@ This is the model card of a 🤗 transformers model that has been pushed on the
|
|
| 41 |
|
| 42 |
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 43 |
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
### Downstream Use [optional]
|
| 47 |
-
|
| 48 |
-
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 49 |
-
|
| 50 |
-
[More Information Needed]
|
| 51 |
-
|
| 52 |
-
### Out-of-Scope Use
|
| 53 |
-
|
| 54 |
-
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 55 |
-
|
| 56 |
-
[More Information Needed]
|
| 57 |
-
|
| 58 |
-
## Bias, Risks, and Limitations
|
| 59 |
-
|
| 60 |
-
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 61 |
-
|
| 62 |
-
[More Information Needed]
|
| 63 |
-
|
| 64 |
-
### Recommendations
|
| 65 |
-
|
| 66 |
-
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 67 |
-
|
| 68 |
-
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 69 |
-
|
| 70 |
-
## How to Get Started with the Model
|
| 71 |
-
|
| 72 |
-
Use the code below to get started with the model.
|
| 73 |
-
|
| 74 |
-
[More Information Needed]
|
| 75 |
-
|
| 76 |
-
## Training Details
|
| 77 |
-
|
| 78 |
-
### Training Data
|
| 79 |
-
|
| 80 |
-
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 81 |
-
|
| 82 |
-
[More Information Needed]
|
| 83 |
-
|
| 84 |
-
### Training Procedure
|
| 85 |
-
|
| 86 |
-
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 87 |
-
|
| 88 |
-
#### Preprocessing [optional]
|
| 89 |
|
| 90 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 91 |
|
|
|
|
|
|
|
| 92 |
|
| 93 |
-
|
| 94 |
|
| 95 |
-
|
| 96 |
|
| 97 |
-
##
|
|
|
|
| 98 |
|
| 99 |
-
|
|
|
|
|
|
|
| 100 |
|
| 101 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 102 |
|
| 103 |
-
|
|
|
|
|
|
|
|
|
|
| 104 |
|
| 105 |
-
|
| 106 |
|
| 107 |
-
|
|
|
|
|
|
|
|
|
|
| 108 |
|
| 109 |
-
|
|
|
|
|
|
|
| 110 |
|
| 111 |
-
|
| 112 |
|
| 113 |
-
|
| 114 |
|
| 115 |
-
####
|
|
|
|
| 116 |
|
| 117 |
-
|
|
|
|
|
|
|
| 118 |
|
| 119 |
-
|
| 120 |
|
| 121 |
-
|
| 122 |
|
| 123 |
-
|
|
|
|
|
|
|
| 124 |
|
| 125 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 126 |
|
| 127 |
-
|
| 128 |
|
| 129 |
-
|
|
|
|
|
|
|
|
|
|
| 130 |
|
| 131 |
-
|
| 132 |
|
|
|
|
| 133 |
|
|
|
|
| 134 |
|
| 135 |
-
|
| 136 |
-
|
| 137 |
-
|
| 138 |
-
|
| 139 |
-
[More Information Needed]
|
| 140 |
-
|
| 141 |
-
## Environmental Impact
|
| 142 |
-
|
| 143 |
-
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 144 |
-
|
| 145 |
-
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 146 |
-
|
| 147 |
-
- **Hardware Type:** [More Information Needed]
|
| 148 |
-
- **Hours used:** [More Information Needed]
|
| 149 |
-
- **Cloud Provider:** [More Information Needed]
|
| 150 |
-
- **Compute Region:** [More Information Needed]
|
| 151 |
-
- **Carbon Emitted:** [More Information Needed]
|
| 152 |
-
|
| 153 |
-
## Technical Specifications [optional]
|
| 154 |
-
|
| 155 |
-
### Model Architecture and Objective
|
| 156 |
-
|
| 157 |
-
[More Information Needed]
|
| 158 |
-
|
| 159 |
-
### Compute Infrastructure
|
| 160 |
-
|
| 161 |
-
[More Information Needed]
|
| 162 |
-
|
| 163 |
-
#### Hardware
|
| 164 |
-
|
| 165 |
-
[More Information Needed]
|
| 166 |
-
|
| 167 |
-
#### Software
|
| 168 |
|
| 169 |
-
[More Information Needed]
|
| 170 |
|
| 171 |
-
## Citation
|
| 172 |
|
| 173 |
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 174 |
|
| 175 |
**BibTeX:**
|
| 176 |
|
| 177 |
-
|
| 178 |
-
|
| 179 |
-
|
| 180 |
-
|
| 181 |
-
|
| 182 |
-
|
| 183 |
-
|
| 184 |
-
|
| 185 |
-
|
| 186 |
-
|
| 187 |
-
[More Information Needed]
|
| 188 |
-
|
| 189 |
-
## More Information [optional]
|
| 190 |
-
|
| 191 |
-
[More Information Needed]
|
| 192 |
-
|
| 193 |
-
## Model Card Authors [optional]
|
| 194 |
-
|
| 195 |
-
[More Information Needed]
|
| 196 |
-
|
| 197 |
-
## Model Card Contact
|
| 198 |
-
|
| 199 |
-
[More Information Needed]
|
|
|
|
| 1 |
---
|
| 2 |
library_name: transformers
|
| 3 |
+
license: cc-by-nc-4.0
|
| 4 |
+
language:
|
| 5 |
+
- multilingual
|
| 6 |
+
- af
|
| 7 |
+
- am
|
| 8 |
+
- ar
|
| 9 |
+
- as
|
| 10 |
+
- azb
|
| 11 |
+
- be
|
| 12 |
+
- bg
|
| 13 |
+
- bm
|
| 14 |
+
- bn
|
| 15 |
+
- bo
|
| 16 |
+
- bs
|
| 17 |
+
- ca
|
| 18 |
+
- ceb
|
| 19 |
+
- cs
|
| 20 |
+
- cy
|
| 21 |
+
- da
|
| 22 |
+
- de
|
| 23 |
+
- du
|
| 24 |
+
- el
|
| 25 |
+
- en
|
| 26 |
+
- eo
|
| 27 |
+
- es
|
| 28 |
+
- et
|
| 29 |
+
- eu
|
| 30 |
+
- fa
|
| 31 |
+
- fi
|
| 32 |
+
- fr
|
| 33 |
+
- ga
|
| 34 |
+
- gd
|
| 35 |
+
- gl
|
| 36 |
+
- ha
|
| 37 |
+
- hi
|
| 38 |
+
- hr
|
| 39 |
+
- ht
|
| 40 |
+
- hu
|
| 41 |
+
- id
|
| 42 |
+
- ig
|
| 43 |
+
- is
|
| 44 |
+
- it
|
| 45 |
+
- iw
|
| 46 |
+
- ja
|
| 47 |
+
- jv
|
| 48 |
+
- ka
|
| 49 |
+
- ki
|
| 50 |
+
- kk
|
| 51 |
+
- km
|
| 52 |
+
- ko
|
| 53 |
+
- la
|
| 54 |
+
- lb
|
| 55 |
+
- ln
|
| 56 |
+
- lo
|
| 57 |
+
- lt
|
| 58 |
+
- lv
|
| 59 |
+
- mi
|
| 60 |
+
- mr
|
| 61 |
+
- ms
|
| 62 |
+
- mt
|
| 63 |
+
- my
|
| 64 |
+
- 'no'
|
| 65 |
+
- oc
|
| 66 |
+
- pa
|
| 67 |
+
- pl
|
| 68 |
+
- pt
|
| 69 |
+
- qu
|
| 70 |
+
- ro
|
| 71 |
+
- ru
|
| 72 |
+
- sa
|
| 73 |
+
- sc
|
| 74 |
+
- sd
|
| 75 |
+
- sg
|
| 76 |
+
- sk
|
| 77 |
+
- sl
|
| 78 |
+
- sm
|
| 79 |
+
- so
|
| 80 |
+
- sq
|
| 81 |
+
- sr
|
| 82 |
+
- ss
|
| 83 |
+
- sv
|
| 84 |
+
- sw
|
| 85 |
+
- ta
|
| 86 |
+
- te
|
| 87 |
+
- th
|
| 88 |
+
- ti
|
| 89 |
+
- tl
|
| 90 |
+
- tn
|
| 91 |
+
- tpi
|
| 92 |
+
- tr
|
| 93 |
+
- ts
|
| 94 |
+
- tw
|
| 95 |
+
- uk
|
| 96 |
+
- ur
|
| 97 |
+
- uz
|
| 98 |
+
- vi
|
| 99 |
+
- war
|
| 100 |
+
- wo
|
| 101 |
+
- xh
|
| 102 |
+
- yo
|
| 103 |
+
- zh
|
| 104 |
+
- zu
|
| 105 |
+
base_model:
|
| 106 |
+
- CohereForAI/aya-expanse-8b
|
| 107 |
+
- timm/ViT-SO400M-14-SigLIP-384
|
| 108 |
+
pipeline_tag: image-text-to-text
|
| 109 |
---
|
| 110 |
|
| 111 |
+
# Centurio Aya
|
|
|
|
|
|
|
|
|
|
|
|
|
| 112 |
|
| 113 |
## Model Details
|
| 114 |
|
|
|
|
| 116 |
|
| 117 |
<!-- Provide a longer summary of what this model is. -->
|
| 118 |
|
| 119 |
+
- **Model type:** Centurio is an open-source multilingual large vision-language model.
|
| 120 |
+
- **Training Data:** COMING SOON
|
| 121 |
+
- **Languages:** The model was trained with the following 100 languages: `af, am, ar, ar-eg, as, azb, be, bg, bm, bn, bo, bs, ca, ceb, cs, cy, da, de, du, el, en, eo, es, et, eu, fa, fi, fr, ga, gd, gl, ha, hi, hr, ht, hu, id, ig, is, it, iw, ja, jv, ka, ki, kk, km, ko, la, lb, ln, lo, lt, lv, mi, mr, ms, mt, my, no, oc, pa, pl, pt, qu, ro, ru, sa, sc, sd, sg, sk, sl, sm, so, sq, sr, ss, sv, sw, ta, te, th, ti, tl, tn, tpi, tr, ts, tw, uk, ur, uz, vi, war, wo, xh, yo, zh, zu
|
| 122 |
+
`
|
| 123 |
+
- **License:** This work is released under the Creative Commons Attribution Non Commercial 4.0 license.
|
|
|
|
|
|
|
|
|
|
|
|
|
| 124 |
|
| 125 |
+
### Model Sources
|
| 126 |
|
| 127 |
<!-- Provide the basic links for the model. -->
|
| 128 |
|
| 129 |
+
- **Repository:** []
|
| 130 |
+
- **Paper:** []
|
| 131 |
+
- **Demo:** []
|
| 132 |
|
| 133 |
## Uses
|
| 134 |
|
|
|
|
| 138 |
|
| 139 |
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 140 |
|
| 141 |
+
The model can be used directly through the `transformers` library with our custom code.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 142 |
|
| 143 |
+
```python
|
| 144 |
+
from transformers import AutoModelForCausalLM, AutoProcessor
|
| 145 |
+
import timm
|
| 146 |
+
from PIL import Image
|
| 147 |
+
import requests
|
| 148 |
|
| 149 |
+
url = "https://upload.wikimedia.org/wikipedia/commons/b/bd/Golden_Retriever_Dukedestiny01_drvd.jpg"
|
| 150 |
+
image = Image.open(requests.get(url, stream=True).raw)
|
| 151 |
|
| 152 |
+
model_name = "WueNLP/centurio_aya"
|
| 153 |
|
| 154 |
+
processor = AutoProcessor.from_pretrained(model_name, trust_remote_code=True)
|
| 155 |
|
| 156 |
+
## Appearance of images in the prompt are indicates with '<image_placeholder>'!
|
| 157 |
+
prompt = "<image_placeholder>\nBriefly describe the image in German."
|
| 158 |
|
| 159 |
+
messages = [
|
| 160 |
+
{"role": "user", "content": prompt}
|
| 161 |
+
]
|
| 162 |
|
| 163 |
+
text = processor.apply_chat_template(
|
| 164 |
+
messages,
|
| 165 |
+
tokenize=False,
|
| 166 |
+
add_generation_prompt=True
|
| 167 |
+
)
|
| 168 |
|
| 169 |
+
model = AutoModelForCausalLM.from_pretrained(
|
| 170 |
+
model_name,
|
| 171 |
+
trust_remote_code=True
|
| 172 |
+
)
|
| 173 |
|
| 174 |
+
model_inputs = processor(text=[text], images=[image] return_tensors="pt").to(model.device)
|
| 175 |
|
| 176 |
+
generated_ids = model.generate(
|
| 177 |
+
**model_inputs,
|
| 178 |
+
max_new_tokens=128
|
| 179 |
+
)
|
| 180 |
|
| 181 |
+
generated_ids = [
|
| 182 |
+
output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
|
| 183 |
+
]
|
| 184 |
|
| 185 |
+
response = processor.batch_decode(generated_ids, skip_special_tokens=True)[0]
|
| 186 |
|
| 187 |
+
```
|
| 188 |
|
| 189 |
+
#### Multiple Images
|
| 190 |
+
We natively support multi-image inputs. You only have to 1) include more `<image_placeholder>` while 2) passing all images of the *entire batch* as a flat list:
|
| 191 |
|
| 192 |
+
```python
|
| 193 |
+
[...]
|
| 194 |
+
# Variables reused from above.
|
| 195 |
|
| 196 |
+
image_multi_1, image_multi_2 = [...] # prepare additional images
|
| 197 |
|
| 198 |
+
prompt_multi = "What is the difference between the following images?\n<image_placeholder><image_placeholder>\nAnswer in German."
|
| 199 |
|
| 200 |
+
messages_multi = [
|
| 201 |
+
{"role": "user", "content": prompt_multi}
|
| 202 |
+
]
|
| 203 |
|
| 204 |
+
text_multi = processor.apply_chat_template(
|
| 205 |
+
messages,
|
| 206 |
+
tokenize=False,
|
| 207 |
+
add_generation_prompt=True
|
| 208 |
+
)
|
| 209 |
|
| 210 |
+
model_inputs = processor(text=[text, text_multi], images=[image, image_multi_1, image_multi_2] return_tensors="pt").to(model.device)
|
| 211 |
|
| 212 |
+
generated_ids = model.generate(
|
| 213 |
+
**model_inputs,
|
| 214 |
+
max_new_tokens=128
|
| 215 |
+
)
|
| 216 |
|
| 217 |
+
[...]
|
| 218 |
|
| 219 |
+
```
|
| 220 |
|
| 221 |
+
## Bias, Risks, and Limitations
|
| 222 |
|
| 223 |
+
- General biases, risks, and limitations of large vision-language models like hallucinations or biases from training data apply.
|
| 224 |
+
- This is a research project and *not* recommended for production use.
|
| 225 |
+
- Multilingual: Performance and generation quality can differ widely between languages.
|
| 226 |
+
- OCR: Model struggles both with small text and writing in non-Latin scripts.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 227 |
|
|
|
|
| 228 |
|
| 229 |
+
## Citation
|
| 230 |
|
| 231 |
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 232 |
|
| 233 |
**BibTeX:**
|
| 234 |
|
| 235 |
+
```
|
| 236 |
+
@article{centurio2025,
|
| 237 |
+
title={TODO},
|
| 238 |
+
author={TODO},
|
| 239 |
+
year={2024},
|
| 240 |
+
journal={arXiv preprint arXiv:TODO},
|
| 241 |
+
url={TODO}
|
| 242 |
+
}
|
| 243 |
+
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|