> For the complete documentation index, see [llms.txt](https://munchables.gitbook.io/munchables/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://munchables.gitbook.io/munchables/resources/rarity-distribution.md).

# Rarity Distribution

Munchables are revealed using a RNG in combination with our own Rarity Curve. This ensures a fair distribution of the NFTs and everyone has the same effective chance to mint a rarer classification of Munchable.

### Weightings

```python
categories = ["common","rare","epic","legendary", "mythic"]
weightings = [0.648, 0.237, 0.092, 0.020, 0.003]
```

It is important to note that Munchables is essentially an *uncapped collection* however no two Munchables are the same due to the evolutionary aspect of the game.

A probabilistic distribution for 10,000 reveals:

```
{
  'common': 6469,
  'rare': 2367,
  'epic': 930,
  'legendary': 200,
  'mythic': 34
}
```

The Rarity Curve visualised:

<figure><img src="https://2940425202-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FTntovqRqNnTMbN2jq0Oh%2Fuploads%2FyUvGhG7eNwGG0dFVzjwj%2Fimage.png?alt=media&amp;token=f3693033-c34a-49c3-8031-84f38c7e6db1" alt=""><figcaption></figcaption></figure>
