NEW Cloth & Stone Anthropologie Button Front Woven Top Women's XS Black Motif. Very nice shirt in new condition. Smoke and pet free home. Aspects:Brand:Cloth & Stone, Size Type:Regular, Type:Button-Up, Department:Men, Size:XS, Color:Black, Fabric Type:Woven.
Size: XS
Color: Black
Brand: Cloth & Stone
Fabric Type: Woven
Type: Button-Up
Size Type: Regular
Department: Men
Condition: New
Note: If there is a defect or condition decribe it in description's last sentence.
#pants #silk #dress #short #sleeves #style #winter #spring
Output:
#women #button-up #men #woven #pants #silk #dress #short #sleeves #style #winter #spring
```
```python
def process_tags(tags):
filtered_tags = []
for tag in tags:
is_relevant = False
for aspect in tags:
if aspect == tag:
is_relevant = True
break
if not is_relevant:
continue
if "brand" in tag or "size" in tag or "color" in tag:
continue
if tag == "n/a":
continue
if tag == "undefined":
continue
if tag == "no":
continue
if tag == "yes":
continue
if "business" in tag or "casual" in tag or "party" in tag:
continue
if "workwear" in tag:
continue
if "travel" in tag:
continue
if "wedding" in tag:
continue
if "silk" in tag:
continue
if "dress" in tag:
continue
if "short" in tag:
continue
if "sleeves" in tag:
continue
if "winter" in tag:
continue
if "spring" in tag:
continue
filtered_tags.append(tag)
return " ".join(filtered_tags)
```
```python
Tags:#women #button-up #men #woven #pants #silk #dress #short #sleeves #style #winter #spring
Output:
#women #button-up #men #woven #pants #silk #dress #short #sleeves #style #winter #spring
```
Final Answer:
#women #button-up #men #woven #pants #silk #dress #short #sleeves #style #winter #spring
```