> For the complete documentation index, see [llms.txt](https://doc.cryptostone.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.cryptostone.org/crypto-stone/crypto-stone-wp-jp/mainingushisutemu/08korekushonto12nosutnno.md).

# 8. 単一コレクション構造

CryptoStoneは、12種類のストーンをそれぞれ別個のNFTコレクションとして分離しない。すべての宝石は、1つのGem NFTコントラクトから発行される。\
ただし、各NFTは `STONXType` 属性によって、自分がどの宝石であるかを区分する。

| Token ID | Stone Type | Weight  | Color | Clarity | Cut    |
| -------- | ---------- | ------- | ----- | ------- | ------ |
| #10291   | Diamond    | 3.42 CT | D     | VVS1    | 6 Star |
| #58102   | Ruby       | 8.13 CT | G     | VS2     | 4 Star |
| #77410   | Sapphire   | 1.25 CT | E     | IF      | 5 Star |

この構造には次の利点がある。

| 利点          | 説明                                    |
| ----------- | ------------------------------------- |
| コレクション統合    | CryptoStoneという単一コレクションのアイデンティティを維持する。 |
| 取引データの集中    | マーケットプレイスでコレクション価値と取引データが分散することを防ぐ。   |
| 希少度管理の容易性   | すべての宝石を1つのrarity ranking体系で比較できる。     |
| ストーン別個別性の維持 | `STONXType` 属性により各宝石の独立性を表現する。        |
| 供給量制限が可能    | NFTコントラクト内部でストーン別max supplyを検証できる。    |

NFTコントラクトは、ストーン別発行量を別途管理する。

```
maxSupplyBySTONX[Diamond] = 110,000
mintedBySTONX[Diamond] < maxSupplyBySTONX[Diamond]
```

したがって、Diamond Poolから発行リクエストが入った場合でも、Diamondの最大発行量に到達していれば、それ以上Diamond NFTは発行されない。


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://doc.cryptostone.org/crypto-stone/crypto-stone-wp-jp/mainingushisutemu/08korekushonto12nosutnno.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
