# [[ttrpgs/Temporary White Circle/Zadash|Zadash]]
Zadash is a large city southeast of [[Hupperdook]], and [[Reya]]'s city of birth.
![[exandya-first-view-of-zadash.png]]
```leaflet
id: twc-zadash
image: twc-zadash-map.png
height: 450px
minZoom: 6
maxZoom: 10
defaultZoom: 7
zoomDelta: 1
unit: feet
scale: 1
```
The city has a triangular shape, and it has 50-foot high city walls and a large southern gate.
At the top of the triangle are the wealthy people, and at the bottom are poorer residences and shops. There is a circular road in the middle.
## Places
```dataview
table description as "Description" from "ttrpgs/Temporary White Circle"
WHERE contains(type,"place") and contains(location,"Zadash")
SORT file.name ASC
```
## Shops
```dataview
table shop_type as "Type", proprietor as "Proprietor" from "ttrpgs/Temporary White Circle"
WHERE contains(type,"shop") and contains(location,"Zadash")
SORT file.name ASC
```
## NPCs
```dataview
table description as "Description" from "ttrpgs/Temporary White Circle"
WHERE contains(type,"NPC") or contains(type,"faction") and contains(location,"Zadash")
SORT file.name ASC
```
## Sessions in Zadash
```dataview
TABLE summary from "ttrpgs/Temporary White Circle"
WHERE type = "session" and contains(location,"Zadash")
```