// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; struct Raider { uint16 level; } struct Army { Raider moloch_denier; Raider apprentice; Raider anointed; Raider champion; uint256 profit_per_second; } struct Player { uint256 total_minted; uint256 created_at; uint256 last_raided_at; }