<!-- 위에서 정의한 Lock 과 Sokoban Puzzle은 Main Path 상에 적절한 간격으로 배치된다. -->
<!-- 배치된 Lock과 Sokoban Puzzle 을 기준으로 Section을 분리한다. -->
<!-- 따라서 section의 갯수는 (# of locks) + (# of sokobans) + 1 이 되어야 함 -->
<Section>
<MainPath thinkness = "1" /> <!-- section에 해당하는 MainPath의 최대 두께 -->
<SubPath difficulty = "2" /> <!-- Sub Path(갈림길)이 갯수 및 길이 -->
</Section>
<Section>
<MainPath thinkness = "2" />
<SubPath difficulty = "3" />
</Section>
<Section>
<MainPath thinkness = "3" />
<SubPath difficulty = "2" />
</Section>
<Section>
<MainPath thinkness = "2" />
<SubPath difficulty = "1" />
</Section>
</UserCondition>