ETH Price: $3,484.70 (+2.05%)

Token

Staking Device (GPU)
 

Overview

Max Total Supply

438 GPU

Holders

23

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
StakingDevice

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 12 of 13: StakingDevice.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721SBurnable.sol";
import "./SafeMath.sol";
import "./IERC721S.sol";

interface IRandomNumGenerator {
    function getRandomNumber(
        uint256 _seed,
        uint256 _limit,
        uint256 _random
    ) external view returns (uint16);
}

interface IAFF {
    function burn(address from, uint256 amount) external;
}

interface IGoldStaking {
    function stakeDevice(address owner, uint16[] memory tokenIds) external;

    function randomBusinessOwner(uint256 seed) external view returns (address);
}

/**
 * @title StakingDevice Contract
 * @dev Extends ERC721S Non-Fungible Token Standard basic implementation
 */
contract StakingDevice is ERC721SBurnable {
    using SafeMath for uint256;

    string public baseTokenURI;
    uint16 private mintedCount;
    uint16 public MAX_SUPPLY;

    uint256 public mintPrice;
    uint16 public maxByMint;

    address public stakingAddress;
    address public tokenAddress;
    IRandomNumGenerator randomGen;

    mapping(uint16 => uint8) private multifiers;

    event Steel(address from, address to, uint16 tokenId);

    constructor() ERC721S("Staking Device", "GPU") {
        MAX_SUPPLY = 10000;
        mintPrice = 450 ether;
        maxByMint = 20;
    }

    function setMintPrice(uint256 newMintPrice) external onlyOwner {
        mintPrice = newMintPrice;
    }

    function setMaxByMint(uint16 newMaxByMint) external onlyOwner {
        maxByMint = newMaxByMint;
    }

    function setMaxSupply(uint16 _max_supply) external onlyOwner {
        MAX_SUPPLY = _max_supply;
    }

    function setContractAddress(
        address _stakingAddress,
        address _tokenAddress,
        IRandomNumGenerator _randomGen
    ) external onlyOwner {
        stakingAddress = _stakingAddress;
        tokenAddress = _tokenAddress;
        randomGen = _randomGen;
    }

    function setBaseURI(string memory baseURI) external onlyOwner {
        baseTokenURI = baseURI;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }

    function getMultifier(uint16 tokenId) public view returns (uint8) {
        return multifiers[tokenId];
    }

    function getMultifiers(uint16[] memory tokenIds)
        public
        view
        returns (uint8[] memory)
    {
        uint8[] memory _multifiers = new uint8[](tokenIds.length);
        for (uint8 i; i < tokenIds.length; i++) {
            _multifiers[i] = multifiers[tokenIds[i]];
        }
        return _multifiers;
    }

    function exists(uint256 _tokenId) public view returns (bool) {
        return _exists(_tokenId);
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        // Hardcode the Manager's approval so that users don't have to waste gas approving
        if (_msgSender() != stakingAddress)
            require(
                _isApprovedOrOwner(_msgSender(), tokenId),
                "ERC721S: transfer caller is not owner nor approved"
            );
        _transfer(from, to, tokenId);
    }

    function totalSupply() public view virtual returns (uint256) {
        return mintedCount;
    }

    function getTokensOfOwner(address owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(owner);
        uint256 supply = totalSupply();

        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 resultIndex = 0;
            uint256 tokenId;

            for (tokenId = 0; tokenId < supply; tokenId++) {
                if (_owners[tokenId] == owner) {
                    result[resultIndex] = tokenId;
                    resultIndex++;
                    if (resultIndex >= tokenCount) {
                        break;
                    }
                }
            }
            return result;
        }
    }

    function _getRandom(uint256 _tokenId) public view returns (uint8) {
        uint256 random = randomGen.getRandomNumber(
            _tokenId,
            100,
            totalSupply()
        );

        if (random >= 99) {
            return 9;
        } else if (random >= 97) {
            return 8;
        } else if (random >= 93) {
            return 7;
        } else if (random >= 87) {
            return 6;
        } else if (random >= 80) {
            return 5;
        } else if (random >= 71) {
            return 4;
        } else if (random >= 61) {
            return 3;
        } else if (random >= 50) {
            return 2;
        } else if (random >= 37) {
            return 1;
        } else {
            return 0;
        }
    }

    function mintByUser(
        uint8 _numberOfTokens,
        uint256 _amount,
        bool _stake
    ) external {
        require(tx.origin == msg.sender, "Only EOA");
        require(
            totalSupply() + _numberOfTokens <= MAX_SUPPLY,
            "Max Limit To Presale"
        );
        require(_numberOfTokens <= maxByMint, "Exceeds Amount");

        require(mintPrice.mul(_numberOfTokens) <= _amount, "Low Price To Mint");

        IAFF(tokenAddress).burn(msg.sender, _amount);

        uint16[] memory tokenIds = _stake
            ? new uint16[](_numberOfTokens)
            : new uint16[](0);

        for (uint8 i = 0; i < _numberOfTokens; i += 1) {
            address recipient = _selectRecipient(i);
            uint16 tokenId = uint16(totalSupply() + i);

            uint8 randomNumber = _getRandom(tokenId);
            multifiers[tokenId] = randomNumber;

            if (recipient != msg.sender) {
                emit Steel(msg.sender, recipient, tokenId);
            }

            if (_stake && recipient == msg.sender) {
                tokenIds[i] = tokenId;
                _safeMint(stakingAddress, tokenId);
            } else {
                _safeMint(msg.sender, tokenId);
            }
        }
        mintedCount = mintedCount + _numberOfTokens;

        if (_stake && tokenIds.length > 0) {
            IGoldStaking(stakingAddress).stakeDevice(msg.sender, tokenIds);
        }
    }

    function _selectRecipient(uint256 seed) private view returns (address) {
        if (
            randomGen.getRandomNumber(
                totalSupply() + seed,
                100,
                totalSupply()
            ) >= 10
        ) {
            return msg.sender;
        }

        address thief = IGoldStaking(stakingAddress).randomBusinessOwner(
            totalSupply() + seed
        );
        if (thief == address(0x0)) {
            return msg.sender;
        }
        return thief;
    }
}

File 1 of 13: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data)
        internal
        view
        returns (bytes memory)
    {
        return
            functionStaticCall(
                target,
                data,
                "Address: low-level static call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return
            functionDelegateCall(
                target,
                data,
                "Address: low-level delegate call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 2 of 13: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 3 of 13: ERC165S.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165S.sol";

/**
 * @dev Implementation of the {IERC165S} interface.
 *
 * Contracts that want to implement IERC165S should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165S is IERC165S {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return interfaceId == type(IERC165S).interfaceId;
    }
}

File 4 of 13: ERC721S.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721S.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165S.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721S] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721S is Context, ERC165S, IERC721S, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    // CUSTOM: Visible for child contract so it's possible to emulate methods of ERC721S's enumerable extension
    mapping(uint256 => address) internal _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC165S, IERC165S)
        returns (bool)
    {
        return
            interfaceId == type(IERC721S).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721S-balanceOf}.
     */
    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721S: balance query for the zero address"
        );
        return _balances[owner];
    }

    /**
     * @dev See {IERC721S-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        address owner = _owners[tokenId];
        require(
            owner != address(0),
            "ERC721S: owner query for nonexistent token"
        );
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory baseURI = _baseURI();
        return
            bytes(baseURI).length > 0
                ? string(abi.encodePacked(baseURI, tokenId.toString()))
                : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721S-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721S.ownerOf(tokenId);
        require(to != owner, "ERC721S: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721S: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721S-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721S-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721S-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721S: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721S-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721S-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721S: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721S protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721S: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721S: operator query for nonexistent token"
        );
        address owner = ERC721S.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721S-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721S: mint to the zero address");
        require(!_exists(tokenId), "ERC721S: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721S.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721S.ownerOf(tokenId) == from,
            "ERC721S: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721S: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721S.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721S: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721S: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 5 of 13: ERC721SBurnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721S.sol";
import "./Ownable.sol";

/**
 * @title ERC721S Burnable Token
 * @dev ERC721S Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721SBurnable is Ownable, ERC721S {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(
            _msgSender() == owner() ||
                _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721SBurnable: caller is not owner nor approved"
        );
        _burn(tokenId);
    }
}

File 6 of 13: IERC165S.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165S {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 7 of 13: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721S.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721S {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 8 of 13: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title ERC721S token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721S asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721S} `tokenId` token is transferred to this contract via {IERC721S-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721S.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 9 of 13: IERC721S.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165S.sol";

/**
 * @dev Required interface of an ERC721S compliant contract.
 */
interface IERC721S is IERC165S {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 indexed tokenId
    );

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(
        address indexed owner,
        address indexed approved,
        uint256 indexed tokenId
    );

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(
        address indexed owner,
        address indexed operator,
        bool approved
    );

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721S protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId)
        external
        view
        returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator)
        external
        view
        returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

File 10 of 13: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 11 of 13: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 13 of 13: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length)
        internal
        pure
        returns (string memory)
    {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint16","name":"tokenId","type":"uint16"}],"name":"Steel","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"_getRandom","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"tokenId","type":"uint16"}],"name":"getMultifier","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16[]","name":"tokenIds","type":"uint16[]"}],"name":"getMultifiers","outputs":[{"internalType":"uint8[]","name":"","type":"uint8[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getTokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxByMint","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_numberOfTokens","type":"uint8"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bool","name":"_stake","type":"bool"}],"name":"mintByUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_stakingAddress","type":"address"},{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"contract IRandomNumGenerator","name":"_randomGen","type":"address"}],"name":"setContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"newMaxByMint","type":"uint16"}],"name":"setMaxByMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_max_supply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600e81526020016d5374616b696e672044657669636560901b8152506040518060400160405280600381526020016247505560e81b8152506000620000676200011560201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508151620000c690600190602085019062000119565b508051620000dc90600290602084019062000119565b505060088054632710000063ffff000019909116179055506818650127cc3dc80000600955600a805461ffff19166014179055620001fc565b3390565b8280546200012790620001bf565b90600052602060002090601f0160209004810192826200014b576000855562000196565b82601f106200016657805160ff191683800117855562000196565b8280016001018555821562000196579182015b828111156200019657825182559160200191906001019062000179565b50620001a4929150620001a8565b5090565b5b80821115620001a45760008155600101620001a9565b600181811c90821680620001d457607f821691505b60208210811415620001f657634e487b7160e01b600052602260045260246000fd5b50919050565b61293d806200020c6000396000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c80636cbbb4e211610125578063c87b56dd116100ad578063e2e84ea01161007c578063e2e84ea01461048b578063e985e9c5146104ab578063f2fde38b146104e7578063f4a0a528146104fa578063fc1a37b41461050d57600080fd5b8063c87b56dd14610432578063d547cfb714610445578063d7b4be241461044d578063dd1e4e111461046657600080fd5b80638da5cb5b116100f45780638da5cb5b146103e057806395d89b41146103f15780639d76ea58146103f9578063a22cb4651461040c578063b88d4fde1461041f57600080fd5b80636cbbb4e21461039f57806370a08231146103b2578063715018a6146103c55780638886e28d146103cd57600080fd5b806332cb6b0c116101a857806355f804b31161017757806355f804b31461033d5780635de6dc55146103505780636352211e146103705780636817c76c1461038357806368245fd11461038c57600080fd5b806332cb6b0c146102f057806342842e0e1461030457806342966c68146103175780634f558e791461032a57600080fd5b8063095ea7b3116101e4578063095ea7b314610293578063138a4e01146102a657806318160ddd146102c757806323b872dd146102dd57600080fd5b806301ffc9a71461021657806306421c2f1461023e57806306fdde0314610253578063081812fc14610268575b600080fd5b610229610224366004612377565b610534565b60405190151581526020015b60405180910390f35b61025161024c3660046123fa565b610586565b005b61025b6105d9565b6040516102359190612602565b61027b610276366004612434565b61066b565b6040516001600160a01b039091168152602001610235565b6102516102a1366004612292565b610700565b600a546102b49061ffff1681565b60405161ffff9091168152602001610235565b60085461ffff165b604051908152602001610235565b6102516102eb36600461219c565b610817565b6008546102b49062010000900461ffff1681565b61025161031236600461219c565b61086a565b610251610325366004612434565b610885565b610229610338366004612434565b610914565b61025161034b3660046123b1565b610933565b61036361035e3660046120de565b610974565b6040516102359190612583565b61027b61037e366004612434565b610a79565b6102cf60095481565b61025161039a3660046123fa565b610af1565b6102516103ad366004612151565b610b33565b6102cf6103c03660046120de565b610ba7565b610251610c2f565b6102516103db36600461244d565b610ca3565b6000546001600160a01b031661027b565b61025b6110ad565b600b5461027b906001600160a01b031681565b61025161041a36600461225d565b6110bc565b61025161042d3660046121dd565b6110c7565b61025b610440366004612434565b6110f9565b61025b6111d4565b600a5461027b906201000090046001600160a01b031681565b610479610474366004612434565b611262565b60405160ff9091168152602001610235565b61049e6104993660046122be565b6113b2565b60405161023591906125c7565b6102296104b9366004612118565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6102516104f53660046120de565b611490565b610251610508366004612434565b61157a565b61047961051b3660046123fa565b61ffff166000908152600d602052604090205460ff1690565b60006001600160e01b031982166380ac58cd60e01b148061056557506001600160e01b03198216635b5e139f60e01b145b8061058057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b031633146105b95760405162461bcd60e51b81526004016105b090612667565b60405180910390fd5b6008805461ffff909216620100000263ffff000019909216919091179055565b6060600180546105e8906127f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610614906127f0565b80156106615780601f1061063657610100808354040283529160200191610661565b820191906000526020600020905b81548152906001019060200180831161064457829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166106e45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105b0565b506000908152600560205260409020546001600160a01b031690565b600061070b82610a79565b9050806001600160a01b0316836001600160a01b0316141561077a5760405162461bcd60e51b815260206004820152602260248201527f455243373231533a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016105b0565b336001600160a01b0382161480610796575061079681336104b9565b6108085760405162461bcd60e51b815260206004820152603960248201527f455243373231533a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016105b0565b61081283836115a9565b505050565b600a546201000090046001600160a01b0316336001600160a01b03161461085f57610843335b82611617565b61085f5760405162461bcd60e51b81526004016105b090612615565b61081283838361170f565b610812838383604051806020016040528060008152506110c7565b6000546001600160a01b03163314806108a257506108a23361083d565b6109085760405162461bcd60e51b815260206004820152603160248201527f455243373231534275726e61626c653a2063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b60648201526084016105b0565b610911816118ae565b50565b6000818152600360205260408120546001600160a01b03161515610580565b6000546001600160a01b0316331461095d5760405162461bcd60e51b81526004016105b090612667565b8051610970906007906020840190611fd8565b5050565b6060600061098183610ba7565b9050600061099260085461ffff1690565b9050816109b057505060408051600081526020810190915292915050565b60008267ffffffffffffffff8111156109cb576109cb6128b6565b6040519080825280602002602001820160405280156109f4578160200160208202803683370190505b5090506000805b83811015610a6e576000818152600360205260409020546001600160a01b0388811691161415610a5c5780838381518110610a3857610a386128a0565b602090810291909101015281610a4d81612825565b925050848210610a5c57610a6e565b80610a6681612825565b9150506109fb565b509095945050505050565b6000818152600360205260408120546001600160a01b0316806105805760405162461bcd60e51b815260206004820152602a60248201527f455243373231533a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016105b0565b6000546001600160a01b03163314610b1b5760405162461bcd60e51b81526004016105b090612667565b600a805461ffff191661ffff92909216919091179055565b6000546001600160a01b03163314610b5d5760405162461bcd60e51b81526004016105b090612667565b600a80546001600160a01b03948516620100000262010000600160b01b0319909116179055600b80549284166001600160a01b0319938416179055600c8054919093169116179055565b60006001600160a01b038216610c135760405162461bcd60e51b815260206004820152602b60248201527f455243373231533a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016105b0565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610c595760405162461bcd60e51b81526004016105b090612667565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b323314610cdd5760405162461bcd60e51b81526020600482015260086024820152674f6e6c7920454f4160c01b60448201526064016105b0565b60085461ffff62010000820481169160ff86169116610cfc919061273d565b1115610d415760405162461bcd60e51b81526020600482015260146024820152734d6178204c696d697420546f2050726573616c6560601b60448201526064016105b0565b600a5461ffff1660ff84161115610d8b5760405162461bcd60e51b815260206004820152600e60248201526d115e18d959591cc8105b5bdd5b9d60921b60448201526064016105b0565b6009548290610d9d9060ff8616611949565b1115610ddf5760405162461bcd60e51b8152602060048201526011602482015270131bddc8141c9a58d948151bc8135a5b9d607a1b60448201526064016105b0565b600b54604051632770a7eb60e21b8152336004820152602481018490526001600160a01b0390911690639dc29fac90604401600060405180830381600087803b158015610e2b57600080fd5b505af1158015610e3f573d6000803e3d6000fd5b50505050600081610e5e57604080516000815260208101909152610ea5565b8360ff1667ffffffffffffffff811115610e7a57610e7a6128b6565b604051908082528060200260200182016040528015610ea3578160200160208202803683370190505b505b905060005b8460ff168160ff161015610ffe576000610ec68260ff16611955565b905060008260ff16610edb60085461ffff1690565b610ee5919061273d565b90506000610ef68261ffff16611262565b61ffff83166000908152600d60205260409020805460ff191660ff83161790559050336001600160a01b03841614610f7457604080513381526001600160a01b038516602082015261ffff84168183015290517f16d7cc7bfc092c6fe3ad2147bc387efc7512e8e2650f0871cf3198289301930c9181900360600190a15b858015610f8957506001600160a01b03831633145b15610fd95781858560ff1681518110610fa457610fa46128a0565b61ffff9283166020918202929092010152600a54610fd491620100009091046001600160a01b0316908416611ad8565b610fe7565b610fe7338361ffff16611ad8565b505050600181610ff79190612755565b9050610eaa565b506008546110149060ff86169061ffff16612720565b6008805461ffff191661ffff92909216919091179055818015611038575060008151115b156110a757600a54604051630fb6085b60e41b8152620100009091046001600160a01b03169063fb6085b0906110749033908590600401612529565b600060405180830381600087803b15801561108e57600080fd5b505af11580156110a2573d6000803e3d6000fd5b505050505b50505050565b6060600280546105e8906127f0565b610970338383611af2565b6110d13383611617565b6110ed5760405162461bcd60e51b81526004016105b090612615565b6110a784848484611bc1565b6000818152600360205260409020546060906001600160a01b03166111785760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105b0565b6000611182611bf4565b905060008151116111a257604051806020016040528060008152506111cd565b806111ac84611c03565b6040516020016111bd9291906124bd565b6040516020818303038152906040525b9392505050565b600780546111e1906127f0565b80601f016020809104026020016040519081016040528092919081815260200182805461120d906127f0565b801561125a5780601f1061122f5761010080835404028352916020019161125a565b820191906000526020600020905b81548152906001019060200180831161123d57829003601f168201915b505050505081565b600c5460009081906001600160a01b0316634ca7d04484606461128860085461ffff1690565b6040516001600160e01b031960e086901b16815260048101939093526024830191909152604482015260640160206040518083038186803b1580156112cc57600080fd5b505afa1580156112e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113049190612417565b61ffff1690506063811061131b5750600992915050565b6061811061132c5750600892915050565b605d811061133d5750600792915050565b6057811061134e5750600692915050565b6050811061135f5750600592915050565b604781106113705750600492915050565b603d81106113815750600392915050565b603281106113925750600292915050565b602581106113a35750600192915050565b50600092915050565b50919050565b60606000825167ffffffffffffffff8111156113d0576113d06128b6565b6040519080825280602002602001820160405280156113f9578160200160208202803683370190505b50905060005b83518160ff16101561148957600d6000858360ff1681518110611424576114246128a0565b602002602001015161ffff1661ffff16815260200190815260200160002060009054906101000a900460ff16828260ff1681518110611465576114656128a0565b60ff909216602092830291909101909101528061148181612840565b9150506113ff565b5092915050565b6000546001600160a01b031633146114ba5760405162461bcd60e51b81526004016105b090612667565b6001600160a01b03811661151f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105b0565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146115a45760405162461bcd60e51b81526004016105b090612667565b600955565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115de82610a79565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166116915760405162461bcd60e51b815260206004820152602d60248201527f455243373231533a206f70657261746f7220717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016105b0565b600061169c83610a79565b9050806001600160a01b0316846001600160a01b031614806116d75750836001600160a01b03166116cc8461066b565b6001600160a01b0316145b8061170757506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661172282610a79565b6001600160a01b0316146117875760405162461bcd60e51b815260206004820152602660248201527f455243373231533a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016105b0565b6001600160a01b0382166117eb5760405162461bcd60e51b815260206004820152602560248201527f455243373231533a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016105b0565b6117f66000826115a9565b6001600160a01b038316600090815260046020526040812080546001929061181f9084906127ad565b90915550506001600160a01b038216600090815260046020526040812080546001929061184d90849061273d565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006118b982610a79565b90506118c66000836115a9565b6001600160a01b03811660009081526004602052604081208054600192906118ef9084906127ad565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60006111cd828461278e565b600c54600090600a906001600160a01b0316634ca7d0448461197a60085461ffff1690565b611984919061273d565b606461199360085461ffff1690565b6040516001600160e01b031960e086901b16815260048101939093526024830191909152604482015260640160206040518083038186803b1580156119d757600080fd5b505afa1580156119eb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a0f9190612417565b61ffff1610611a1f575033919050565b600a546000906001600160a01b0362010000909104166325bd982284611a4860085461ffff1690565b611a52919061273d565b6040518263ffffffff1660e01b8152600401611a7091815260200190565b60206040518083038186803b158015611a8857600080fd5b505afa158015611a9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ac091906120fb565b90506001600160a01b03811661058057503392915050565b610970828260405180602001604052806000815250611d01565b816001600160a01b0316836001600160a01b03161415611b545760405162461bcd60e51b815260206004820152601a60248201527f455243373231533a20617070726f766520746f2063616c6c657200000000000060448201526064016105b0565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611bcc84848461170f565b611bd884848484611d7f565b6110a75760405162461bcd60e51b81526004016105b09061269c565b6060600780546105e8906127f0565b606081611c275750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c515780611c3b81612825565b9150611c4a9050600a8361277a565b9150611c2b565b60008167ffffffffffffffff811115611c6c57611c6c6128b6565b6040519080825280601f01601f191660200182016040528015611c96576020820181803683370190505b5090505b841561170757611cab6001836127ad565b9150611cb8600a86612860565b611cc390603061273d565b60f81b818381518110611cd857611cd86128a0565b60200101906001600160f81b031916908160001a905350611cfa600a8661277a565b9450611c9a565b611d0b8383611e8c565b611d186000848484611d7f565b6108125760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016105b0565b60006001600160a01b0384163b15611e8157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611dc39033908990889088906004016124ec565b602060405180830381600087803b158015611ddd57600080fd5b505af1925050508015611e0d575060408051601f3d908101601f19168201909252611e0a91810190612394565b60015b611e67573d808015611e3b576040519150601f19603f3d011682016040523d82523d6000602084013e611e40565b606091505b508051611e5f5760405162461bcd60e51b81526004016105b09061269c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611707565b506001949350505050565b6001600160a01b038216611eec5760405162461bcd60e51b815260206004820152602160248201527f455243373231533a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016105b0565b6000818152600360205260409020546001600160a01b031615611f515760405162461bcd60e51b815260206004820152601d60248201527f455243373231533a20746f6b656e20616c7265616479206d696e74656400000060448201526064016105b0565b6001600160a01b0382166000908152600460205260408120805460019290611f7a90849061273d565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611fe4906127f0565b90600052602060002090601f016020900481019282612006576000855561204c565b82601f1061201f57805160ff191683800117855561204c565b8280016001018555821561204c579182015b8281111561204c578251825591602001919060010190612031565b5061205892915061205c565b5090565b5b80821115612058576000815560010161205d565b600067ffffffffffffffff83111561208b5761208b6128b6565b61209e601f8401601f19166020016126ef565b90508281528383830111156120b257600080fd5b828260208301376000602084830101529392505050565b803580151581146120d957600080fd5b919050565b6000602082840312156120f057600080fd5b81356111cd816128cc565b60006020828403121561210d57600080fd5b81516111cd816128cc565b6000806040838503121561212b57600080fd5b8235612136816128cc565b91506020830135612146816128cc565b809150509250929050565b60008060006060848603121561216657600080fd5b8335612171816128cc565b92506020840135612181816128cc565b91506040840135612191816128cc565b809150509250925092565b6000806000606084860312156121b157600080fd5b83356121bc816128cc565b925060208401356121cc816128cc565b929592945050506040919091013590565b600080600080608085870312156121f357600080fd5b84356121fe816128cc565b9350602085013561220e816128cc565b925060408501359150606085013567ffffffffffffffff81111561223157600080fd5b8501601f8101871361224257600080fd5b61225187823560208401612071565b91505092959194509250565b6000806040838503121561227057600080fd5b823561227b816128cc565b9150612289602084016120c9565b90509250929050565b600080604083850312156122a557600080fd5b82356122b0816128cc565b946020939093013593505050565b600060208083850312156122d157600080fd5b823567ffffffffffffffff808211156122e957600080fd5b818501915085601f8301126122fd57600080fd5b81358181111561230f5761230f6128b6565b8060051b91506123208483016126ef565b8181528481019084860184860187018a101561233b57600080fd5b600095505b8386101561236a5780359450612355856128f7565b84835260019590950194918601918601612340565b5098975050505050505050565b60006020828403121561238957600080fd5b81356111cd816128e1565b6000602082840312156123a657600080fd5b81516111cd816128e1565b6000602082840312156123c357600080fd5b813567ffffffffffffffff8111156123da57600080fd5b8201601f810184136123eb57600080fd5b61170784823560208401612071565b60006020828403121561240c57600080fd5b81356111cd816128f7565b60006020828403121561242957600080fd5b81516111cd816128f7565b60006020828403121561244657600080fd5b5035919050565b60008060006060848603121561246257600080fd5b833560ff8116811461247357600080fd5b925060208401359150612488604085016120c9565b90509250925092565b600081518084526124a98160208601602086016127c4565b601f01601f19169290920160200192915050565b600083516124cf8184602088016127c4565b8351908301906124e38183602088016127c4565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061251f90830184612491565b9695505050505050565b6001600160a01b038316815260406020808301829052835191830182905260009184820191906060850190845b8181101561257657845161ffff1683529383019391830191600101612556565b5090979650505050505050565b6020808252825182820181905260009190848201906040850190845b818110156125bb5783518352928401929184019160010161259f565b50909695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156125bb57835160ff16835292840192918401916001016125e3565b6020815260006111cd6020830184612491565b60208082526032908201527f455243373231533a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231533a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612718576127186128b6565b604052919050565b600061ffff8083168185168083038211156124e3576124e3612874565b6000821982111561275057612750612874565b500190565b600060ff821660ff84168060ff0382111561277257612772612874565b019392505050565b6000826127895761278961288a565b500490565b60008160001904831182151516156127a8576127a8612874565b500290565b6000828210156127bf576127bf612874565b500390565b60005b838110156127df5781810151838201526020016127c7565b838111156110a75750506000910152565b600181811c9082168061280457607f821691505b602082108114156113ac57634e487b7160e01b600052602260045260246000fd5b600060001982141561283957612839612874565b5060010190565b600060ff821660ff81141561285757612857612874565b60010192915050565b60008261286f5761286f61288a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461091157600080fd5b6001600160e01b03198116811461091157600080fd5b61ffff8116811461091157600080fdfea26469706673582212204ee037218c4b2311c4e08da174258fd15e31f9d288f2502b286fdc2b536b2aef64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102115760003560e01c80636cbbb4e211610125578063c87b56dd116100ad578063e2e84ea01161007c578063e2e84ea01461048b578063e985e9c5146104ab578063f2fde38b146104e7578063f4a0a528146104fa578063fc1a37b41461050d57600080fd5b8063c87b56dd14610432578063d547cfb714610445578063d7b4be241461044d578063dd1e4e111461046657600080fd5b80638da5cb5b116100f45780638da5cb5b146103e057806395d89b41146103f15780639d76ea58146103f9578063a22cb4651461040c578063b88d4fde1461041f57600080fd5b80636cbbb4e21461039f57806370a08231146103b2578063715018a6146103c55780638886e28d146103cd57600080fd5b806332cb6b0c116101a857806355f804b31161017757806355f804b31461033d5780635de6dc55146103505780636352211e146103705780636817c76c1461038357806368245fd11461038c57600080fd5b806332cb6b0c146102f057806342842e0e1461030457806342966c68146103175780634f558e791461032a57600080fd5b8063095ea7b3116101e4578063095ea7b314610293578063138a4e01146102a657806318160ddd146102c757806323b872dd146102dd57600080fd5b806301ffc9a71461021657806306421c2f1461023e57806306fdde0314610253578063081812fc14610268575b600080fd5b610229610224366004612377565b610534565b60405190151581526020015b60405180910390f35b61025161024c3660046123fa565b610586565b005b61025b6105d9565b6040516102359190612602565b61027b610276366004612434565b61066b565b6040516001600160a01b039091168152602001610235565b6102516102a1366004612292565b610700565b600a546102b49061ffff1681565b60405161ffff9091168152602001610235565b60085461ffff165b604051908152602001610235565b6102516102eb36600461219c565b610817565b6008546102b49062010000900461ffff1681565b61025161031236600461219c565b61086a565b610251610325366004612434565b610885565b610229610338366004612434565b610914565b61025161034b3660046123b1565b610933565b61036361035e3660046120de565b610974565b6040516102359190612583565b61027b61037e366004612434565b610a79565b6102cf60095481565b61025161039a3660046123fa565b610af1565b6102516103ad366004612151565b610b33565b6102cf6103c03660046120de565b610ba7565b610251610c2f565b6102516103db36600461244d565b610ca3565b6000546001600160a01b031661027b565b61025b6110ad565b600b5461027b906001600160a01b031681565b61025161041a36600461225d565b6110bc565b61025161042d3660046121dd565b6110c7565b61025b610440366004612434565b6110f9565b61025b6111d4565b600a5461027b906201000090046001600160a01b031681565b610479610474366004612434565b611262565b60405160ff9091168152602001610235565b61049e6104993660046122be565b6113b2565b60405161023591906125c7565b6102296104b9366004612118565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6102516104f53660046120de565b611490565b610251610508366004612434565b61157a565b61047961051b3660046123fa565b61ffff166000908152600d602052604090205460ff1690565b60006001600160e01b031982166380ac58cd60e01b148061056557506001600160e01b03198216635b5e139f60e01b145b8061058057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b031633146105b95760405162461bcd60e51b81526004016105b090612667565b60405180910390fd5b6008805461ffff909216620100000263ffff000019909216919091179055565b6060600180546105e8906127f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610614906127f0565b80156106615780601f1061063657610100808354040283529160200191610661565b820191906000526020600020905b81548152906001019060200180831161064457829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166106e45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105b0565b506000908152600560205260409020546001600160a01b031690565b600061070b82610a79565b9050806001600160a01b0316836001600160a01b0316141561077a5760405162461bcd60e51b815260206004820152602260248201527f455243373231533a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016105b0565b336001600160a01b0382161480610796575061079681336104b9565b6108085760405162461bcd60e51b815260206004820152603960248201527f455243373231533a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016105b0565b61081283836115a9565b505050565b600a546201000090046001600160a01b0316336001600160a01b03161461085f57610843335b82611617565b61085f5760405162461bcd60e51b81526004016105b090612615565b61081283838361170f565b610812838383604051806020016040528060008152506110c7565b6000546001600160a01b03163314806108a257506108a23361083d565b6109085760405162461bcd60e51b815260206004820152603160248201527f455243373231534275726e61626c653a2063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b60648201526084016105b0565b610911816118ae565b50565b6000818152600360205260408120546001600160a01b03161515610580565b6000546001600160a01b0316331461095d5760405162461bcd60e51b81526004016105b090612667565b8051610970906007906020840190611fd8565b5050565b6060600061098183610ba7565b9050600061099260085461ffff1690565b9050816109b057505060408051600081526020810190915292915050565b60008267ffffffffffffffff8111156109cb576109cb6128b6565b6040519080825280602002602001820160405280156109f4578160200160208202803683370190505b5090506000805b83811015610a6e576000818152600360205260409020546001600160a01b0388811691161415610a5c5780838381518110610a3857610a386128a0565b602090810291909101015281610a4d81612825565b925050848210610a5c57610a6e565b80610a6681612825565b9150506109fb565b509095945050505050565b6000818152600360205260408120546001600160a01b0316806105805760405162461bcd60e51b815260206004820152602a60248201527f455243373231533a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016105b0565b6000546001600160a01b03163314610b1b5760405162461bcd60e51b81526004016105b090612667565b600a805461ffff191661ffff92909216919091179055565b6000546001600160a01b03163314610b5d5760405162461bcd60e51b81526004016105b090612667565b600a80546001600160a01b03948516620100000262010000600160b01b0319909116179055600b80549284166001600160a01b0319938416179055600c8054919093169116179055565b60006001600160a01b038216610c135760405162461bcd60e51b815260206004820152602b60248201527f455243373231533a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016105b0565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610c595760405162461bcd60e51b81526004016105b090612667565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b323314610cdd5760405162461bcd60e51b81526020600482015260086024820152674f6e6c7920454f4160c01b60448201526064016105b0565b60085461ffff62010000820481169160ff86169116610cfc919061273d565b1115610d415760405162461bcd60e51b81526020600482015260146024820152734d6178204c696d697420546f2050726573616c6560601b60448201526064016105b0565b600a5461ffff1660ff84161115610d8b5760405162461bcd60e51b815260206004820152600e60248201526d115e18d959591cc8105b5bdd5b9d60921b60448201526064016105b0565b6009548290610d9d9060ff8616611949565b1115610ddf5760405162461bcd60e51b8152602060048201526011602482015270131bddc8141c9a58d948151bc8135a5b9d607a1b60448201526064016105b0565b600b54604051632770a7eb60e21b8152336004820152602481018490526001600160a01b0390911690639dc29fac90604401600060405180830381600087803b158015610e2b57600080fd5b505af1158015610e3f573d6000803e3d6000fd5b50505050600081610e5e57604080516000815260208101909152610ea5565b8360ff1667ffffffffffffffff811115610e7a57610e7a6128b6565b604051908082528060200260200182016040528015610ea3578160200160208202803683370190505b505b905060005b8460ff168160ff161015610ffe576000610ec68260ff16611955565b905060008260ff16610edb60085461ffff1690565b610ee5919061273d565b90506000610ef68261ffff16611262565b61ffff83166000908152600d60205260409020805460ff191660ff83161790559050336001600160a01b03841614610f7457604080513381526001600160a01b038516602082015261ffff84168183015290517f16d7cc7bfc092c6fe3ad2147bc387efc7512e8e2650f0871cf3198289301930c9181900360600190a15b858015610f8957506001600160a01b03831633145b15610fd95781858560ff1681518110610fa457610fa46128a0565b61ffff9283166020918202929092010152600a54610fd491620100009091046001600160a01b0316908416611ad8565b610fe7565b610fe7338361ffff16611ad8565b505050600181610ff79190612755565b9050610eaa565b506008546110149060ff86169061ffff16612720565b6008805461ffff191661ffff92909216919091179055818015611038575060008151115b156110a757600a54604051630fb6085b60e41b8152620100009091046001600160a01b03169063fb6085b0906110749033908590600401612529565b600060405180830381600087803b15801561108e57600080fd5b505af11580156110a2573d6000803e3d6000fd5b505050505b50505050565b6060600280546105e8906127f0565b610970338383611af2565b6110d13383611617565b6110ed5760405162461bcd60e51b81526004016105b090612615565b6110a784848484611bc1565b6000818152600360205260409020546060906001600160a01b03166111785760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105b0565b6000611182611bf4565b905060008151116111a257604051806020016040528060008152506111cd565b806111ac84611c03565b6040516020016111bd9291906124bd565b6040516020818303038152906040525b9392505050565b600780546111e1906127f0565b80601f016020809104026020016040519081016040528092919081815260200182805461120d906127f0565b801561125a5780601f1061122f5761010080835404028352916020019161125a565b820191906000526020600020905b81548152906001019060200180831161123d57829003601f168201915b505050505081565b600c5460009081906001600160a01b0316634ca7d04484606461128860085461ffff1690565b6040516001600160e01b031960e086901b16815260048101939093526024830191909152604482015260640160206040518083038186803b1580156112cc57600080fd5b505afa1580156112e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113049190612417565b61ffff1690506063811061131b5750600992915050565b6061811061132c5750600892915050565b605d811061133d5750600792915050565b6057811061134e5750600692915050565b6050811061135f5750600592915050565b604781106113705750600492915050565b603d81106113815750600392915050565b603281106113925750600292915050565b602581106113a35750600192915050565b50600092915050565b50919050565b60606000825167ffffffffffffffff8111156113d0576113d06128b6565b6040519080825280602002602001820160405280156113f9578160200160208202803683370190505b50905060005b83518160ff16101561148957600d6000858360ff1681518110611424576114246128a0565b602002602001015161ffff1661ffff16815260200190815260200160002060009054906101000a900460ff16828260ff1681518110611465576114656128a0565b60ff909216602092830291909101909101528061148181612840565b9150506113ff565b5092915050565b6000546001600160a01b031633146114ba5760405162461bcd60e51b81526004016105b090612667565b6001600160a01b03811661151f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105b0565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146115a45760405162461bcd60e51b81526004016105b090612667565b600955565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115de82610a79565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166116915760405162461bcd60e51b815260206004820152602d60248201527f455243373231533a206f70657261746f7220717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016105b0565b600061169c83610a79565b9050806001600160a01b0316846001600160a01b031614806116d75750836001600160a01b03166116cc8461066b565b6001600160a01b0316145b8061170757506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661172282610a79565b6001600160a01b0316146117875760405162461bcd60e51b815260206004820152602660248201527f455243373231533a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016105b0565b6001600160a01b0382166117eb5760405162461bcd60e51b815260206004820152602560248201527f455243373231533a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016105b0565b6117f66000826115a9565b6001600160a01b038316600090815260046020526040812080546001929061181f9084906127ad565b90915550506001600160a01b038216600090815260046020526040812080546001929061184d90849061273d565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006118b982610a79565b90506118c66000836115a9565b6001600160a01b03811660009081526004602052604081208054600192906118ef9084906127ad565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60006111cd828461278e565b600c54600090600a906001600160a01b0316634ca7d0448461197a60085461ffff1690565b611984919061273d565b606461199360085461ffff1690565b6040516001600160e01b031960e086901b16815260048101939093526024830191909152604482015260640160206040518083038186803b1580156119d757600080fd5b505afa1580156119eb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a0f9190612417565b61ffff1610611a1f575033919050565b600a546000906001600160a01b0362010000909104166325bd982284611a4860085461ffff1690565b611a52919061273d565b6040518263ffffffff1660e01b8152600401611a7091815260200190565b60206040518083038186803b158015611a8857600080fd5b505afa158015611a9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ac091906120fb565b90506001600160a01b03811661058057503392915050565b610970828260405180602001604052806000815250611d01565b816001600160a01b0316836001600160a01b03161415611b545760405162461bcd60e51b815260206004820152601a60248201527f455243373231533a20617070726f766520746f2063616c6c657200000000000060448201526064016105b0565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611bcc84848461170f565b611bd884848484611d7f565b6110a75760405162461bcd60e51b81526004016105b09061269c565b6060600780546105e8906127f0565b606081611c275750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c515780611c3b81612825565b9150611c4a9050600a8361277a565b9150611c2b565b60008167ffffffffffffffff811115611c6c57611c6c6128b6565b6040519080825280601f01601f191660200182016040528015611c96576020820181803683370190505b5090505b841561170757611cab6001836127ad565b9150611cb8600a86612860565b611cc390603061273d565b60f81b818381518110611cd857611cd86128a0565b60200101906001600160f81b031916908160001a905350611cfa600a8661277a565b9450611c9a565b611d0b8383611e8c565b611d186000848484611d7f565b6108125760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016105b0565b60006001600160a01b0384163b15611e8157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611dc39033908990889088906004016124ec565b602060405180830381600087803b158015611ddd57600080fd5b505af1925050508015611e0d575060408051601f3d908101601f19168201909252611e0a91810190612394565b60015b611e67573d808015611e3b576040519150601f19603f3d011682016040523d82523d6000602084013e611e40565b606091505b508051611e5f5760405162461bcd60e51b81526004016105b09061269c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611707565b506001949350505050565b6001600160a01b038216611eec5760405162461bcd60e51b815260206004820152602160248201527f455243373231533a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016105b0565b6000818152600360205260409020546001600160a01b031615611f515760405162461bcd60e51b815260206004820152601d60248201527f455243373231533a20746f6b656e20616c7265616479206d696e74656400000060448201526064016105b0565b6001600160a01b0382166000908152600460205260408120805460019290611f7a90849061273d565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611fe4906127f0565b90600052602060002090601f016020900481019282612006576000855561204c565b82601f1061201f57805160ff191683800117855561204c565b8280016001018555821561204c579182015b8281111561204c578251825591602001919060010190612031565b5061205892915061205c565b5090565b5b80821115612058576000815560010161205d565b600067ffffffffffffffff83111561208b5761208b6128b6565b61209e601f8401601f19166020016126ef565b90508281528383830111156120b257600080fd5b828260208301376000602084830101529392505050565b803580151581146120d957600080fd5b919050565b6000602082840312156120f057600080fd5b81356111cd816128cc565b60006020828403121561210d57600080fd5b81516111cd816128cc565b6000806040838503121561212b57600080fd5b8235612136816128cc565b91506020830135612146816128cc565b809150509250929050565b60008060006060848603121561216657600080fd5b8335612171816128cc565b92506020840135612181816128cc565b91506040840135612191816128cc565b809150509250925092565b6000806000606084860312156121b157600080fd5b83356121bc816128cc565b925060208401356121cc816128cc565b929592945050506040919091013590565b600080600080608085870312156121f357600080fd5b84356121fe816128cc565b9350602085013561220e816128cc565b925060408501359150606085013567ffffffffffffffff81111561223157600080fd5b8501601f8101871361224257600080fd5b61225187823560208401612071565b91505092959194509250565b6000806040838503121561227057600080fd5b823561227b816128cc565b9150612289602084016120c9565b90509250929050565b600080604083850312156122a557600080fd5b82356122b0816128cc565b946020939093013593505050565b600060208083850312156122d157600080fd5b823567ffffffffffffffff808211156122e957600080fd5b818501915085601f8301126122fd57600080fd5b81358181111561230f5761230f6128b6565b8060051b91506123208483016126ef565b8181528481019084860184860187018a101561233b57600080fd5b600095505b8386101561236a5780359450612355856128f7565b84835260019590950194918601918601612340565b5098975050505050505050565b60006020828403121561238957600080fd5b81356111cd816128e1565b6000602082840312156123a657600080fd5b81516111cd816128e1565b6000602082840312156123c357600080fd5b813567ffffffffffffffff8111156123da57600080fd5b8201601f810184136123eb57600080fd5b61170784823560208401612071565b60006020828403121561240c57600080fd5b81356111cd816128f7565b60006020828403121561242957600080fd5b81516111cd816128f7565b60006020828403121561244657600080fd5b5035919050565b60008060006060848603121561246257600080fd5b833560ff8116811461247357600080fd5b925060208401359150612488604085016120c9565b90509250925092565b600081518084526124a98160208601602086016127c4565b601f01601f19169290920160200192915050565b600083516124cf8184602088016127c4565b8351908301906124e38183602088016127c4565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061251f90830184612491565b9695505050505050565b6001600160a01b038316815260406020808301829052835191830182905260009184820191906060850190845b8181101561257657845161ffff1683529383019391830191600101612556565b5090979650505050505050565b6020808252825182820181905260009190848201906040850190845b818110156125bb5783518352928401929184019160010161259f565b50909695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156125bb57835160ff16835292840192918401916001016125e3565b6020815260006111cd6020830184612491565b60208082526032908201527f455243373231533a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231533a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612718576127186128b6565b604052919050565b600061ffff8083168185168083038211156124e3576124e3612874565b6000821982111561275057612750612874565b500190565b600060ff821660ff84168060ff0382111561277257612772612874565b019392505050565b6000826127895761278961288a565b500490565b60008160001904831182151516156127a8576127a8612874565b500290565b6000828210156127bf576127bf612874565b500390565b60005b838110156127df5781810151838201526020016127c7565b838111156110a75750506000910152565b600181811c9082168061280457607f821691505b602082108114156113ac57634e487b7160e01b600052602260045260246000fd5b600060001982141561283957612839612874565b5060010190565b600060ff821660ff81141561285757612857612874565b60010192915050565b60008261286f5761286f61288a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461091157600080fd5b6001600160e01b03198116811461091157600080fd5b61ffff8116811461091157600080fdfea26469706673582212204ee037218c4b2311c4e08da174258fd15e31f9d288f2502b286fdc2b536b2aef64736f6c63430008070033

Deployed Bytecode Sourcemap

692:6061:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1550:347:3;;;;;;:::i;:::-;;:::i;:::-;;;11345:14:13;;11338:22;11320:41;;11308:2;11293:18;1550:347:3;;;;;;;;1504:102:11;;;;;;:::i;:::-;;:::i;:::-;;2675:98:3;;;:::i;:::-;;;;;;;:::i;4313:295::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7947:32:13;;;7929:51;;7917:2;7902:18;4313:295:3;7783:203:13;3847:404:3;;;;;;:::i;:::-;;:::i;898:23:11:-;;;;;;;;;;;;20411:6:13;20399:19;;;20381:38;;20369:2;20354:18;898:23:11;20237:188:13;3146:96:11;3224:11;;;;3146:96;;;20576:25:13;;;20564:2;20549:18;3146:96:11;20430:177:13;2677:463:11;;;;;;:::i;:::-;;:::i;837:24::-;;;;;;;;;;;;5624:179:3;;;;;;:::i;:::-;;:::i;442:319:4:-;;;;;;:::i;:::-;;:::i;2569:102:11:-;;;;;;:::i;:::-;;:::i;1894:101::-;;;;;;:::i;:::-;;:::i;3248:791::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2299:314:3:-;;;;;;:::i;:::-;;:::i;868:24:11:-;;;;;;1395:103;;;;;;:::i;:::-;;:::i;1612:276::-;;;;;;:::i;:::-;;:::i;1957:284:3:-;;;;;;:::i;:::-;;:::i;1715:145:9:-;;;:::i;4808:1426:11:-;;;;;;:::i;:::-;;:::i;1083:85:9:-;1129:7;1155:6;-1:-1:-1;;;;;1155:6:9;1083:85;;2837:102:3;;;:::i;963:27:11:-;;;;;-1:-1:-1;;;;;963:27:11;;;4676:181:3;;;;;;:::i;:::-;;:::i;5870:355::-;;;;;;:::i;:::-;;:::i;3005:451::-;;;;;;:::i;:::-;;:::i;773:26:11:-;;;:::i;928:29::-;;;;;;;;-1:-1:-1;;;;;928:29:11;;;4045:757;;;;;;:::i;:::-;;:::i;:::-;;;21118:4:13;21106:17;;;21088:36;;21076:2;21061:18;4045:757:11;20946:184:13;2233:330:11;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;4923:206:3:-;;;;;;:::i;:::-;-1:-1:-1;;;;;5087:25:3;;;5060:4;5087:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4923:206;2009:274:9;;;;;;:::i;:::-;;:::i;1285:104:11:-;;;;;;:::i;:::-;;:::i;2118:109::-;;;;;;:::i;:::-;2201:19;;2177:5;2201:19;;;:10;:19;;;;;;;;;2118:109;1550:347:3;1694:4;-1:-1:-1;;;;;;1733:41:3;;-1:-1:-1;;;1733:41:3;;:105;;-1:-1:-1;;;;;;;1790:48:3;;-1:-1:-1;;;1790:48:3;1733:105;:157;;;-1:-1:-1;;;;;;;;;;921:41:2;;;1854:36:3;1714:176;1550:347;-1:-1:-1;;1550:347:3:o;1504:102:11:-;1129:7:9;1155:6;-1:-1:-1;;;;;1155:6:9;666:10:1;1295:23:9;1287:68;;;;-1:-1:-1;;;1287:68:9;;;;;;;:::i;:::-;;;;;;;;;1575:10:11::1;:24:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;1575:24:11;;::::1;::::0;;;::::1;::::0;;1504:102::o;2675:98:3:-;2729:13;2761:5;2754:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2675:98;:::o;4313:295::-;4429:7;7821:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7821:16:3;4452:107;;;;-1:-1:-1;;;4452:107:3;;16488:2:13;4452:107:3;;;16470:21:13;16527:2;16507:18;;;16500:30;16566:34;16546:18;;;16539:62;-1:-1:-1;;;16617:18:13;;;16610:42;16669:19;;4452:107:3;16286:408:13;4452:107:3;-1:-1:-1;4577:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;4577:24:3;;4313:295::o;3847:404::-;3927:13;3943:24;3959:7;3943:15;:24::i;:::-;3927:40;;3991:5;-1:-1:-1;;;;;3985:11:3;:2;-1:-1:-1;;;;;3985:11:3;;;3977:58;;;;-1:-1:-1;;;3977:58:3;;18089:2:13;3977:58:3;;;18071:21:13;18128:2;18108:18;;;18101:30;18167:34;18147:18;;;18140:62;-1:-1:-1;;;18218:18:13;;;18211:32;18260:19;;3977:58:3;17887:398:13;3977:58:3;666:10:1;-1:-1:-1;;;;;4067:21:3;;;;:62;;-1:-1:-1;4092:37:3;4109:5;666:10:1;4923:206:3;:::i;4092:37::-;4046:166;;;;-1:-1:-1;;;4046:166:3;;15643:2:13;4046:166:3;;;15625:21:13;15682:2;15662:18;;;15655:30;15721:34;15701:18;;;15694:62;15792:27;15772:18;;;15765:55;15837:19;;4046:166:3;15441:421:13;4046:166:3;4223:21;4232:2;4236:7;4223:8;:21::i;:::-;3917:334;3847:404;;:::o;2677:463:11:-;2917:14;;;;;-1:-1:-1;;;;;2917:14:11;666:10:1;-1:-1:-1;;;;;2901:30:11;;2897:198;;2970:41;666:10:1;2989:12:11;3003:7;2970:18;:41::i;:::-;2945:150;;;;-1:-1:-1;;;2945:150:11;;;;;;;:::i;:::-;3105:28;3115:4;3121:2;3125:7;3105:9;:28::i;5624:179:3:-;5757:39;5774:4;5780:2;5784:7;5757:39;;;;;;;;;;;;:16;:39::i;442:319:4:-;1129:7:9;1155:6;-1:-1:-1;;;;;1155:6:9;666:10:1;571:23:4;;:84;;-1:-1:-1;614:41:4;666:10:1;633:12:4;587:96:1;614:41:4;550:180;;;;-1:-1:-1;;;550:180:4;;13724:2:13;550:180:4;;;13706:21:13;13763:2;13743:18;;;13736:30;13802:34;13782:18;;;13775:62;-1:-1:-1;;;13853:18:13;;;13846:47;13910:19;;550:180:4;13522:413:13;550:180:4;740:14;746:7;740:5;:14::i;:::-;442:319;:::o;2569:102:11:-;2624:4;7821:16:3;;;:7;:16;;;;;;-1:-1:-1;;;;;7821:16:3;:30;;2647:17:11;7733:125:3;1894:101:11;1129:7:9;1155:6;-1:-1:-1;;;;;1155:6:9;666:10:1;1295:23:9;1287:68;;;;-1:-1:-1;;;1287:68:9;;;;;;;:::i;:::-;1966:22:11;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;1894:101:::0;:::o;3248:791::-;3334:16;3366:18;3387:16;3397:5;3387:9;:16::i;:::-;3366:37;;3413:14;3430:13;3224:11;;;;;3146:96;3430:13;3413:30;-1:-1:-1;3458:15:11;3454:579;;-1:-1:-1;;3496:16:11;;;3510:1;3496:16;;;;;;;;;3489:23;-1:-1:-1;;3248:791:11:o;3454:579::-;3543:23;3583:10;3569:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3569:25:11;;3543:51;;3608:19;3645:15;3675:321;3703:6;3693:7;:16;3675:321;;;3744:16;;;;:7;:16;;;;;;-1:-1:-1;;;;;3744:25:11;;;:16;;:25;3740:242;;;3815:7;3793:6;3800:11;3793:19;;;;;;;;:::i;:::-;;;;;;;;;;:29;3844:13;;;;:::i;:::-;;;;3898:10;3883:11;:25;3879:85;;3936:5;;3879:85;3711:9;;;;:::i;:::-;;;;3675:321;;;-1:-1:-1;4016:6:11;;3248:791;-1:-1:-1;;;;;3248:791:11:o;2299:314:3:-;2411:7;2450:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2450:16:3;2497:19;2476:108;;;;-1:-1:-1;;;2476:108:3;;17262:2:13;2476:108:3;;;17244:21:13;17301:2;17281:18;;;17274:30;17340:34;17320:18;;;17313:62;-1:-1:-1;;;17391:18:13;;;17384:40;17441:19;;2476:108:3;17060:406:13;1395:103:11;1129:7:9;1155:6;-1:-1:-1;;;;;1155:6:9;666:10:1;1295:23:9;1287:68;;;;-1:-1:-1;;;1287:68:9;;;;;;;:::i;:::-;1467:9:11::1;:24:::0;;-1:-1:-1;;1467:24:11::1;;::::0;;;::::1;::::0;;;::::1;::::0;;1395:103::o;1612:276::-;1129:7:9;1155:6;-1:-1:-1;;;;;1155:6:9;666:10:1;1295:23:9;1287:68;;;;-1:-1:-1;;;1287:68:9;;;;;;;:::i;:::-;1779:14:11::1;:32:::0;;-1:-1:-1;;;;;1779:32:11;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;1779:32:11;;::::1;;::::0;;1821:12:::1;:28:::0;;;;::::1;-1:-1:-1::0;;;;;;1821:28:11;;::::1;;::::0;;1859:9:::1;:22:::0;;;;;::::1;::::0;::::1;;::::0;;1612:276::o;1957:284:3:-;2069:7;-1:-1:-1;;;;;2113:19:3;;2092:109;;;;-1:-1:-1;;;2092:109:3;;14142:2:13;2092:109:3;;;14124:21:13;14181:2;14161:18;;;14154:30;14220:34;14200:18;;;14193:62;-1:-1:-1;;;14271:18:13;;;14264:41;14322:19;;2092:109:3;13940:407:13;2092:109:3;-1:-1:-1;;;;;;2218:16:3;;;;;:9;:16;;;;;;;1957:284::o;1715:145:9:-;1129:7;1155:6;-1:-1:-1;;;;;1155:6:9;666:10:1;1295:23:9;1287:68;;;;-1:-1:-1;;;1287:68:9;;;;;;;:::i;:::-;1821:1:::1;1805:6:::0;;1784:40:::1;::::0;-1:-1:-1;;;;;1805:6:9;;::::1;::::0;1784:40:::1;::::0;1821:1;;1784:40:::1;1851:1;1834:19:::0;;-1:-1:-1;;;;;;1834:19:9::1;::::0;;1715:145::o;4808:1426:11:-;4938:9;4951:10;4938:23;4930:44;;;;-1:-1:-1;;;4930:44:11;;14554:2:13;4930:44:11;;;14536:21:13;14593:1;14573:18;;;14566:29;-1:-1:-1;;;14611:18:13;;;14604:38;14659:18;;4930:44:11;14352:331:13;4930:44:11;5040:10;;;;;;;;;5005:31;;;;3224:11;5005:31;;;;:::i;:::-;:45;;4984:112;;;;-1:-1:-1;;;4984:112:11;;18492:2:13;4984:112:11;;;18474:21:13;18531:2;18511:18;;;18504:30;-1:-1:-1;;;18550:18:13;;;18543:50;18610:18;;4984:112:11;18290:344:13;4984:112:11;5133:9;;;;5114:28;;;;;5106:55;;;;-1:-1:-1;;;5106:55:11;;12153:2:13;5106:55:11;;;12135:21:13;12192:2;12172:18;;;12165:30;-1:-1:-1;;;12211:18:13;;;12204:44;12265:18;;5106:55:11;11951:338:13;5106:55:11;5180:9;;5214:7;;5180:30;;;;;:13;:30::i;:::-;:41;;5172:71;;;;-1:-1:-1;;;5172:71:11;;14890:2:13;5172:71:11;;;14872:21:13;14929:2;14909:18;;;14902:30;-1:-1:-1;;;14948:18:13;;;14941:47;15005:18;;5172:71:11;14688:341:13;5172:71:11;5259:12;;5254:44;;-1:-1:-1;;;5254:44:11;;5278:10;5254:44;;;9794:51:13;9861:18;;;9854:34;;;-1:-1:-1;;;;;5259:12:11;;;;5254:23;;9767:18:13;;5254:44:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5309:24;5336:6;:80;;5401:15;;;5414:1;5401:15;;;;;;;;5336:80;;;5370:15;5357:29;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5357:29:11;;5336:80;5309:107;;5432:7;5427:616;5449:15;5445:19;;:1;:19;;;5427:616;;;5488:17;5508:19;5525:1;5508:19;;:16;:19::i;:::-;5488:39;;5541:14;5581:1;5565:17;;:13;3224:11;;;;;3146:96;5565:13;:17;;;;:::i;:::-;5541:42;;5598:18;5619:19;5630:7;5619:19;;:10;:19::i;:::-;5652;;;;;;;:10;:19;;;;;:34;;-1:-1:-1;;5652:34:11;;;;;;;;-1:-1:-1;5718:10:11;-1:-1:-1;;;;;5705:23:11;;;5701:104;;5753:37;;;5759:10;8229:34:13;;-1:-1:-1;;;;;8299:15:13;;8294:2;8279:18;;8272:43;8363:6;8351:19;;8331:18;;;8324:47;5753:37:11;;;;;;;8179:2:13;5753:37:11;;;5701:104;5823:6;:33;;;;-1:-1:-1;;;;;;5833:23:11;;5846:10;5833:23;5823:33;5819:214;;;5890:7;5876:8;5885:1;5876:11;;;;;;;;;;:::i;:::-;:21;;;;:11;;;;;;;;;:21;5925:14;;5915:34;;5925:14;;;;-1:-1:-1;;;;;5925:14:11;;5915:34;;:9;:34::i;:::-;5819:214;;;5988:30;5998:10;6010:7;5988:30;;:9;:30::i;:::-;5474:569;;;5471:1;5466:6;;;;;:::i;:::-;;;5427:616;;;-1:-1:-1;6066:11:11;;:29;;;;;;:11;;:29;:::i;:::-;6052:11;:43;;-1:-1:-1;;6052:43:11;;;;;;;;;;;;6110:6;:29;;;;;6138:1;6120:8;:15;:19;6110:29;6106:122;;;6168:14;;6155:62;;-1:-1:-1;;;6155:62:11;;6168:14;;;;-1:-1:-1;;;;;6168:14:11;;6155:40;;:62;;6196:10;;6208:8;;6155:62;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6106:122;4920:1314;4808:1426;;;:::o;2837:102:3:-;2893:13;2925:7;2918:14;;;;;:::i;4676:181::-;4798:52;666:10:1;4831:8:3;4841;4798:18;:52::i;5870:355::-;6052:41;666:10:1;6085:7:3;6052:18;:41::i;:::-;6031:138;;;;-1:-1:-1;;;6031:138:3;;;;;;;:::i;:::-;6179:39;6193:4;6199:2;6203:7;6212:5;6179:13;:39::i;3005:451::-;7798:4;7821:16;;;:7;:16;;;;;;3118:13;;-1:-1:-1;;;;;7821:16:3;3147:110;;;;-1:-1:-1;;;3147:110:3;;17673:2:13;3147:110:3;;;17655:21:13;17712:2;17692:18;;;17685:30;17751:34;17731:18;;;17724:62;-1:-1:-1;;;17802:18:13;;;17795:45;17857:19;;3147:110:3;17471:411:13;3147:110:3;3268:21;3292:10;:8;:10::i;:::-;3268:34;;3355:1;3337:7;3331:21;:25;:118;;;;;;;;;;;;;;;;;3399:7;3408:18;:7;:16;:18::i;:::-;3382:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3331:118;3312:137;3005:451;-1:-1:-1;;;3005:451:3:o;773:26:11:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4045:757::-;4138:9;;4104:5;;;;-1:-1:-1;;;;;4138:9:11;:25;4177:8;4199:3;4216:13;3224:11;;;;;3146:96;4216:13;4138:101;;-1:-1:-1;;;;;;4138:101:11;;;;;;;;;;20824:25:13;;;;20865:18;;;20858:34;;;;20908:18;;;20901:34;20797:18;;4138:101:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4121:118;;;;4264:2;4254:6;:12;4250:546;;-1:-1:-1;4289:1:11;;4045:757;-1:-1:-1;;4045:757:11:o;4250:546::-;4321:2;4311:6;:12;4307:489;;-1:-1:-1;4346:1:11;;4045:757;-1:-1:-1;;4045:757:11:o;4307:489::-;4378:2;4368:6;:12;4364:432;;-1:-1:-1;4403:1:11;;4045:757;-1:-1:-1;;4045:757:11:o;4364:432::-;4435:2;4425:6;:12;4421:375;;-1:-1:-1;4460:1:11;;4045:757;-1:-1:-1;;4045:757:11:o;4421:375::-;4492:2;4482:6;:12;4478:318;;-1:-1:-1;4517:1:11;;4045:757;-1:-1:-1;;4045:757:11:o;4478:318::-;4549:2;4539:6;:12;4535:261;;-1:-1:-1;4574:1:11;;4045:757;-1:-1:-1;;4045:757:11:o;4535:261::-;4606:2;4596:6;:12;4592:204;;-1:-1:-1;4631:1:11;;4045:757;-1:-1:-1;;4045:757:11:o;4592:204::-;4663:2;4653:6;:12;4649:147;;-1:-1:-1;4688:1:11;;4045:757;-1:-1:-1;;4045:757:11:o;4649:147::-;4720:2;4710:6;:12;4706:90;;-1:-1:-1;4745:1:11;;4045:757;-1:-1:-1;;4045:757:11:o;4706:90::-;-1:-1:-1;4784:1:11;;4045:757;-1:-1:-1;;4045:757:11:o;4706:90::-;4111:691;4045:757;;;:::o;2233:330::-;2327:14;2357:26;2398:8;:15;2386:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2386:28:11;;2357:57;;2429:7;2424:105;2442:8;:15;2438:1;:19;;;2424:105;;;2495:10;:23;2506:8;2515:1;2506:11;;;;;;;;;;:::i;:::-;;;;;;;2495:23;;;;;;;;;;;;;;;;;;;;;;;;;2478:11;2490:1;2478:14;;;;;;;;;;:::i;:::-;:40;;;;:14;;;;;;;;;;;:40;2459:3;;;;:::i;:::-;;;;2424:105;;;-1:-1:-1;2545:11:11;2233:330;-1:-1:-1;;2233:330:11:o;2009:274:9:-;1129:7;1155:6;-1:-1:-1;;;;;1155:6:9;666:10:1;1295:23:9;1287:68;;;;-1:-1:-1;;;1287:68:9;;;;;;;:::i;:::-;-1:-1:-1;;;;;2110:22:9;::::1;2089:107;;;::::0;-1:-1:-1;;;2089:107:9;;12915:2:13;2089:107:9::1;::::0;::::1;12897:21:13::0;12954:2;12934:18;;;12927:30;12993:34;12973:18;;;12966:62;-1:-1:-1;;;13044:18:13;;;13037:36;13090:19;;2089:107:9::1;12713:402:13::0;2089:107:9::1;2232:6;::::0;;2211:38:::1;::::0;-1:-1:-1;;;;;2211:38:9;;::::1;::::0;2232:6;::::1;::::0;2211:38:::1;::::0;::::1;2259:6;:17:::0;;-1:-1:-1;;;;;;2259:17:9::1;-1:-1:-1::0;;;;;2259:17:9;;;::::1;::::0;;;::::1;::::0;;2009:274::o;1285:104:11:-;1129:7:9;1155:6;-1:-1:-1;;;;;1155:6:9;666:10:1;1295:23:9;1287:68;;;;-1:-1:-1;;;1287:68:9;;;;;;;:::i;:::-;1358:9:11::1;:24:::0;1285:104::o;11879:172:3:-;11953:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11953:29:3;-1:-1:-1;;;;;11953:29:3;;;;;;;;:24;;12006;11953;12006:15;:24::i;:::-;-1:-1:-1;;;;;11997:47:3;;;;;;;;;;;11879:172;;:::o;8016:440::-;8141:4;7821:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7821:16:3;8161:108;;;;-1:-1:-1;;;8161:108:3;;20025:2:13;8161:108:3;;;20007:21:13;20064:2;20044:18;;;20037:30;20103:34;20083:18;;;20076:62;-1:-1:-1;;;20154:18:13;;;20147:43;20207:19;;8161:108:3;19823:409:13;8161:108:3;8279:13;8295:24;8311:7;8295:15;:24::i;:::-;8279:40;;8348:5;-1:-1:-1;;;;;8337:16:3;:7;-1:-1:-1;;;;;8337:16:3;;:63;;;;8393:7;-1:-1:-1;;;;;8369:31:3;:20;8381:7;8369:11;:20::i;:::-;-1:-1:-1;;;;;8369:31:3;;8337:63;:111;;;-1:-1:-1;;;;;;5087:25:3;;;5060:4;5087:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;8416:32;8329:120;8016:440;-1:-1:-1;;;;8016:440:3:o;11126:642::-;11294:4;-1:-1:-1;;;;;11266:32:3;:24;11282:7;11266:15;:24::i;:::-;-1:-1:-1;;;;;11266:32:3;;11245:117;;;;-1:-1:-1;;;11245:117:3;;15236:2:13;11245:117:3;;;15218:21:13;15275:2;15255:18;;;15248:30;15314:34;15294:18;;;15287:62;-1:-1:-1;;;15365:18:13;;;15358:36;15411:19;;11245:117:3;15034:402:13;11245:117:3;-1:-1:-1;;;;;11380:16:3;;11372:66;;;;-1:-1:-1;;;11372:66:3;;19619:2:13;11372:66:3;;;19601:21:13;19658:2;19638:18;;;19631:30;19697:34;19677:18;;;19670:62;-1:-1:-1;;;19748:18:13;;;19741:35;19793:19;;11372:66:3;19417:401:13;11372:66:3;11550:29;11567:1;11571:7;11550:8;:29::i;:::-;-1:-1:-1;;;;;11590:15:3;;;;;;:9;:15;;;;;:20;;11609:1;;11590:15;:20;;11609:1;;11590:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11620:13:3;;;;;;:9;:13;;;;;:18;;11637:1;;11620:13;:18;;11637:1;;11620:18;:::i;:::-;;;;-1:-1:-1;;11648:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11648:21:3;-1:-1:-1;;;;;11648:21:3;;;;;;;;;11685:27;;11648:16;;11685:27;;;;;;;3917:334;3847:404;;:::o;10395:407::-;10454:13;10470:24;10486:7;10470:15;:24::i;:::-;10454:40;;10591:29;10608:1;10612:7;10591:8;:29::i;:::-;-1:-1:-1;;;;;10631:16:3;;;;;;:9;:16;;;;;:21;;10651:1;;10631:16;:21;;10651:1;;10631:21;:::i;:::-;;;;-1:-1:-1;;10669:16:3;;;;:7;:16;;;;;;10662:23;;-1:-1:-1;;;;;;10662:23:3;;;10701:36;10677:7;;10669:16;-1:-1:-1;;;;;10701:36:3;;;;;10669:16;;10701:36;1966:22:11::1;1894:101:::0;:::o;3532:96:10:-;3590:7;3616:5;3620:1;3616;:5;:::i;6240:511:11:-;6338:9;;6302:7;;6471:2;;-1:-1:-1;;;;;6338:9:11;:25;6397:4;6381:13;3224:11;;;;;3146:96;6381:13;:20;;;;:::i;:::-;6419:3;6440:13;3224:11;;;;;3146:96;6440:13;6338:129;;-1:-1:-1;;;;;;6338:129:11;;;;;;;;;;20824:25:13;;;;20865:18;;;20858:34;;;;20908:18;;;20901:34;20797:18;;6338:129:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:135;;;6321:205;;-1:-1:-1;6505:10:11;;6240:511;-1:-1:-1;6240:511:11:o;6321:205::-;6565:14;;6536:13;;-1:-1:-1;;;;;6565:14:11;;;;;6552:48;6630:4;6614:13;3224:11;;;;;3146:96;6614:13;:20;;;;:::i;:::-;6552:92;;;;;;;;;;;;;20576:25:13;;20564:2;20549:18;;20430:177;6552:92:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6536:108;-1:-1:-1;;;;;;6658:21:11;;6654:69;;-1:-1:-1;6702:10:11;;6240:511;-1:-1:-1;;6240:511:11:o;8786:108:3:-;8861:26;8871:2;8875:7;8861:26;;;;;;;;;;;;:9;:26::i;12186:308::-;12336:8;-1:-1:-1;;;;;12327:17:3;:5;-1:-1:-1;;;;;12327:17:3;;;12319:56;;;;-1:-1:-1;;;12319:56:3;;11798:2:13;12319:56:3;;;11780:21:13;11837:2;11817:18;;;11810:30;11876:28;11856:18;;;11849:56;11922:18;;12319:56:3;11596:350:13;12319:56:3;-1:-1:-1;;;;;12385:25:3;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;12385:46:3;;;;;;;;;;12446:41;;11320::13;;;12446::3;;11293:18:13;12446:41:3;;;;;;;12186:308;;;:::o;7088:342::-;7239:28;7249:4;7255:2;7259:7;7239:9;:28::i;:::-;7298:48;7321:4;7327:2;7331:7;7340:5;7298:22;:48::i;:::-;7277:146;;;;-1:-1:-1;;;7277:146:3;;;;;;;:::i;2001:111:11:-;2061:13;2093:12;2086:19;;;;;:::i;275:703:12:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:12;;;;;;;;;;;;-1:-1:-1;;;574:10:12;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:12;;-1:-1:-1;720:2:12;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:12;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:12;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:12;;;;;;;;-1:-1:-1;919:11:12;928:2;919:11;;:::i;:::-;;;791:150;;9116:311:3;9241:18;9247:2;9251:7;9241:5;:18::i;:::-;9290:54;9321:1;9325:2;9329:7;9338:5;9290:22;:54::i;:::-;9269:151;;;;-1:-1:-1;;;9269:151:3;;12496:2:13;9269:151:3;;;12478:21:13;12535:2;12515:18;;;12508:30;12574:34;12554:18;;;12547:62;-1:-1:-1;;;12625:18:13;;;12618:48;12683:19;;9269:151:3;12294:414:13;13047:951:3;13197:4;-1:-1:-1;;;;;13217:13:3;;1034:20:0;1080:8;13213:779:3;;13268:170;;-1:-1:-1;;;13268:170:3;;-1:-1:-1;;;;;13268:36:3;;;;;:170;;666:10:1;;13360:4:3;;13386:7;;13415:5;;13268:170;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13268:170:3;;;;;;;;-1:-1:-1;;13268:170:3;;;;;;;;;;;;:::i;:::-;;;13248:692;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13617:13:3;;13613:313;;13659:107;;-1:-1:-1;;;13659:107:3;;;;;;;:::i;13613:313::-;13878:6;13872:13;13863:6;13859:2;13855:15;13848:38;13248:692;-1:-1:-1;;;;;;13500:51:3;-1:-1:-1;;;13500:51:3;;-1:-1:-1;13493:58:3;;13213:779;-1:-1:-1;13977:4:3;13047:951;;;;;;:::o;9749:429::-;-1:-1:-1;;;;;9828:16:3;;9820:62;;;;-1:-1:-1;;;9820:62:3;;13322:2:13;9820:62:3;;;13304:21:13;13361:2;13341:18;;;13334:30;13400:34;13380:18;;;13373:62;-1:-1:-1;;;13451:18:13;;;13444:31;13492:19;;9820:62:3;13120:397:13;9820:62:3;7798:4;7821:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7821:16:3;:30;9892:59;;;;-1:-1:-1;;;9892:59:3;;18841:2:13;9892:59:3;;;18823:21:13;18880:2;18860:18;;;18853:30;18919:31;18899:18;;;18892:59;18968:18;;9892:59:3;18639:353:13;9892:59:3;-1:-1:-1;;;;;10018:13:3;;;;;;:9;:13;;;;;:18;;10035:1;;10018:13;:18;;10035:1;;10018:18;:::i;:::-;;;;-1:-1:-1;;10046:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10046:21:3;-1:-1:-1;;;;;10046:21:3;;;;;;;;10083:33;;10046:16;;;10083:33;;10046:16;;10083:33;1966:22:11::1;1894:101:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:13;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:13;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:160::-;490:20;;546:13;;539:21;529:32;;519:60;;575:1;572;565:12;519:60;425:160;;;:::o;590:247::-;649:6;702:2;690:9;681:7;677:23;673:32;670:52;;;718:1;715;708:12;670:52;757:9;744:23;776:31;801:5;776:31;:::i;842:251::-;912:6;965:2;953:9;944:7;940:23;936:32;933:52;;;981:1;978;971:12;933:52;1013:9;1007:16;1032:31;1057:5;1032:31;:::i;1098:388::-;1166:6;1174;1227:2;1215:9;1206:7;1202:23;1198:32;1195:52;;;1243:1;1240;1233:12;1195:52;1282:9;1269:23;1301:31;1326:5;1301:31;:::i;:::-;1351:5;-1:-1:-1;1408:2:13;1393:18;;1380:32;1421:33;1380:32;1421:33;:::i;:::-;1473:7;1463:17;;;1098:388;;;;;:::o;1491:557::-;1596:6;1604;1612;1665:2;1653:9;1644:7;1640:23;1636:32;1633:52;;;1681:1;1678;1671:12;1633:52;1720:9;1707:23;1739:31;1764:5;1739:31;:::i;:::-;1789:5;-1:-1:-1;1846:2:13;1831:18;;1818:32;1859:33;1818:32;1859:33;:::i;:::-;1911:7;-1:-1:-1;1970:2:13;1955:18;;1942:32;1983:33;1942:32;1983:33;:::i;:::-;2035:7;2025:17;;;1491:557;;;;;:::o;2053:456::-;2130:6;2138;2146;2199:2;2187:9;2178:7;2174:23;2170:32;2167:52;;;2215:1;2212;2205:12;2167:52;2254:9;2241:23;2273:31;2298:5;2273:31;:::i;:::-;2323:5;-1:-1:-1;2380:2:13;2365:18;;2352:32;2393:33;2352:32;2393:33;:::i;:::-;2053:456;;2445:7;;-1:-1:-1;;;2499:2:13;2484:18;;;;2471:32;;2053:456::o;2514:794::-;2609:6;2617;2625;2633;2686:3;2674:9;2665:7;2661:23;2657:33;2654:53;;;2703:1;2700;2693:12;2654:53;2742:9;2729:23;2761:31;2786:5;2761:31;:::i;:::-;2811:5;-1:-1:-1;2868:2:13;2853:18;;2840:32;2881:33;2840:32;2881:33;:::i;:::-;2933:7;-1:-1:-1;2987:2:13;2972:18;;2959:32;;-1:-1:-1;3042:2:13;3027:18;;3014:32;3069:18;3058:30;;3055:50;;;3101:1;3098;3091:12;3055:50;3124:22;;3177:4;3169:13;;3165:27;-1:-1:-1;3155:55:13;;3206:1;3203;3196:12;3155:55;3229:73;3294:7;3289:2;3276:16;3271:2;3267;3263:11;3229:73;:::i;:::-;3219:83;;;2514:794;;;;;;;:::o;3313:315::-;3378:6;3386;3439:2;3427:9;3418:7;3414:23;3410:32;3407:52;;;3455:1;3452;3445:12;3407:52;3494:9;3481:23;3513:31;3538:5;3513:31;:::i;:::-;3563:5;-1:-1:-1;3587:35:13;3618:2;3603:18;;3587:35;:::i;:::-;3577:45;;3313:315;;;;;:::o;3633:::-;3701:6;3709;3762:2;3750:9;3741:7;3737:23;3733:32;3730:52;;;3778:1;3775;3768:12;3730:52;3817:9;3804:23;3836:31;3861:5;3836:31;:::i;:::-;3886:5;3938:2;3923:18;;;;3910:32;;-1:-1:-1;;;3633:315:13:o;3953:1030::-;4036:6;4067:2;4110;4098:9;4089:7;4085:23;4081:32;4078:52;;;4126:1;4123;4116:12;4078:52;4166:9;4153:23;4195:18;4236:2;4228:6;4225:14;4222:34;;;4252:1;4249;4242:12;4222:34;4290:6;4279:9;4275:22;4265:32;;4335:7;4328:4;4324:2;4320:13;4316:27;4306:55;;4357:1;4354;4347:12;4306:55;4393:2;4380:16;4415:2;4411;4408:10;4405:36;;;4421:18;;:::i;:::-;4467:2;4464:1;4460:10;4450:20;;4490:28;4514:2;4510;4506:11;4490:28;:::i;:::-;4552:15;;;4583:12;;;;4615:11;;;4645;;;4641:20;;4638:33;-1:-1:-1;4635:53:13;;;4684:1;4681;4674:12;4635:53;4706:1;4697:10;;4716:237;4730:2;4727:1;4724:9;4716:237;;;4801:3;4788:17;4775:30;;4818;4842:5;4818:30;:::i;:::-;4861:18;;;4748:1;4741:9;;;;;4899:12;;;;4931;;4716:237;;;-1:-1:-1;4972:5:13;3953:1030;-1:-1:-1;;;;;;;;3953:1030:13:o;4988:245::-;5046:6;5099:2;5087:9;5078:7;5074:23;5070:32;5067:52;;;5115:1;5112;5105:12;5067:52;5154:9;5141:23;5173:30;5197:5;5173:30;:::i;5238:249::-;5307:6;5360:2;5348:9;5339:7;5335:23;5331:32;5328:52;;;5376:1;5373;5366:12;5328:52;5408:9;5402:16;5427:30;5451:5;5427:30;:::i;5492:450::-;5561:6;5614:2;5602:9;5593:7;5589:23;5585:32;5582:52;;;5630:1;5627;5620:12;5582:52;5670:9;5657:23;5703:18;5695:6;5692:30;5689:50;;;5735:1;5732;5725:12;5689:50;5758:22;;5811:4;5803:13;;5799:27;-1:-1:-1;5789:55:13;;5840:1;5837;5830:12;5789:55;5863:73;5928:7;5923:2;5910:16;5905:2;5901;5897:11;5863:73;:::i;5947:245::-;6005:6;6058:2;6046:9;6037:7;6033:23;6029:32;6026:52;;;6074:1;6071;6064:12;6026:52;6113:9;6100:23;6132:30;6156:5;6132:30;:::i;6197:249::-;6266:6;6319:2;6307:9;6298:7;6294:23;6290:32;6287:52;;;6335:1;6332;6325:12;6287:52;6367:9;6361:16;6386:30;6410:5;6386:30;:::i;6451:180::-;6510:6;6563:2;6551:9;6542:7;6538:23;6534:32;6531:52;;;6579:1;6576;6569:12;6531:52;-1:-1:-1;6602:23:13;;6451:180;-1:-1:-1;6451:180:13:o;6636:405::-;6708:6;6716;6724;6777:2;6765:9;6756:7;6752:23;6748:32;6745:52;;;6793:1;6790;6783:12;6745:52;6832:9;6819:23;6882:4;6875:5;6871:16;6864:5;6861:27;6851:55;;6902:1;6899;6892:12;6851:55;6925:5;-1:-1:-1;6977:2:13;6962:18;;6949:32;;-1:-1:-1;7000:35:13;7031:2;7016:18;;7000:35;:::i;:::-;6990:45;;6636:405;;;;;:::o;7046:257::-;7087:3;7125:5;7119:12;7152:6;7147:3;7140:19;7168:63;7224:6;7217:4;7212:3;7208:14;7201:4;7194:5;7190:16;7168:63;:::i;:::-;7285:2;7264:15;-1:-1:-1;;7260:29:13;7251:39;;;;7292:4;7247:50;;7046:257;-1:-1:-1;;7046:257:13:o;7308:470::-;7487:3;7525:6;7519:13;7541:53;7587:6;7582:3;7575:4;7567:6;7563:17;7541:53;:::i;:::-;7657:13;;7616:16;;;;7679:57;7657:13;7616:16;7713:4;7701:17;;7679:57;:::i;:::-;7752:20;;7308:470;-1:-1:-1;;;;7308:470:13:o;8382:488::-;-1:-1:-1;;;;;8651:15:13;;;8633:34;;8703:15;;8698:2;8683:18;;8676:43;8750:2;8735:18;;8728:34;;;8798:3;8793:2;8778:18;;8771:31;;;8576:4;;8819:45;;8844:19;;8836:6;8819:45;:::i;:::-;8811:53;8382:488;-1:-1:-1;;;;;;8382:488:13:o;8875:740::-;-1:-1:-1;;;;;9121:32:13;;9103:51;;9091:2;9173;9191:18;;;9184:30;;;9263:13;;9076:18;;;9285:22;;;9043:4;;9364:15;;;;9173:2;9338;9323:18;;;9043:4;9407:182;9421:6;9418:1;9415:13;9407:182;;;9486:13;;9501:6;9482:26;9470:39;;9564:15;;;;9529:12;;;;9443:1;9436:9;9407:182;;;-1:-1:-1;9606:3:13;;8875:740;-1:-1:-1;;;;;;;8875:740:13:o;9899:632::-;10070:2;10122:21;;;10192:13;;10095:18;;;10214:22;;;10041:4;;10070:2;10293:15;;;;10267:2;10252:18;;;10041:4;10336:169;10350:6;10347:1;10344:13;10336:169;;;10411:13;;10399:26;;10480:15;;;;10445:12;;;;10372:1;10365:9;10336:169;;;-1:-1:-1;10522:3:13;;9899:632;-1:-1:-1;;;;;;9899:632:13:o;10536:639::-;10703:2;10755:21;;;10825:13;;10728:18;;;10847:22;;;10674:4;;10703:2;10926:15;;;;10900:2;10885:18;;;10674:4;10969:180;10983:6;10980:1;10977:13;10969:180;;;11048:13;;11063:4;11044:24;11032:37;;11124:15;;;;11089:12;;;;11005:1;10998:9;10969:180;;11372:219;11521:2;11510:9;11503:21;11484:4;11541:44;11581:2;11570:9;11566:18;11558:6;11541:44;:::i;15867:414::-;16069:2;16051:21;;;16108:2;16088:18;;;16081:30;16147:34;16142:2;16127:18;;16120:62;-1:-1:-1;;;16213:2:13;16198:18;;16191:48;16271:3;16256:19;;15867:414::o;16699:356::-;16901:2;16883:21;;;16920:18;;;16913:30;16979:34;16974:2;16959:18;;16952:62;17046:2;17031:18;;16699:356::o;18997:415::-;19199:2;19181:21;;;19238:2;19218:18;;;19211:30;19277:34;19272:2;19257:18;;19250:62;-1:-1:-1;;;19343:2:13;19328:18;;19321:49;19402:3;19387:19;;18997:415::o;21135:275::-;21206:2;21200:9;21271:2;21252:13;;-1:-1:-1;;21248:27:13;21236:40;;21306:18;21291:34;;21327:22;;;21288:62;21285:88;;;21353:18;;:::i;:::-;21389:2;21382:22;21135:275;;-1:-1:-1;21135:275:13:o;21415:224::-;21454:3;21482:6;21515:2;21512:1;21508:10;21545:2;21542:1;21538:10;21576:3;21572:2;21568:12;21563:3;21560:21;21557:47;;;21584:18;;:::i;21644:128::-;21684:3;21715:1;21711:6;21708:1;21705:13;21702:39;;;21721:18;;:::i;:::-;-1:-1:-1;21757:9:13;;21644:128::o;21777:204::-;21815:3;21851:4;21848:1;21844:12;21883:4;21880:1;21876:12;21918:3;21912:4;21908:14;21903:3;21900:23;21897:49;;;21926:18;;:::i;:::-;21962:13;;21777:204;-1:-1:-1;;;21777:204:13:o;21986:120::-;22026:1;22052;22042:35;;22057:18;;:::i;:::-;-1:-1:-1;22091:9:13;;21986:120::o;22111:168::-;22151:7;22217:1;22213;22209:6;22205:14;22202:1;22199:21;22194:1;22187:9;22180:17;22176:45;22173:71;;;22224:18;;:::i;:::-;-1:-1:-1;22264:9:13;;22111:168::o;22284:125::-;22324:4;22352:1;22349;22346:8;22343:34;;;22357:18;;:::i;:::-;-1:-1:-1;22394:9:13;;22284:125::o;22414:258::-;22486:1;22496:113;22510:6;22507:1;22504:13;22496:113;;;22586:11;;;22580:18;22567:11;;;22560:39;22532:2;22525:10;22496:113;;;22627:6;22624:1;22621:13;22618:48;;;-1:-1:-1;;22662:1:13;22644:16;;22637:27;22414:258::o;22677:380::-;22756:1;22752:12;;;;22799;;;22820:61;;22874:4;22866:6;22862:17;22852:27;;22820:61;22927:2;22919:6;22916:14;22896:18;22893:38;22890:161;;;22973:10;22968:3;22964:20;22961:1;22954:31;23008:4;23005:1;22998:15;23036:4;23033:1;23026:15;23062:135;23101:3;-1:-1:-1;;23122:17:13;;23119:43;;;23142:18;;:::i;:::-;-1:-1:-1;23189:1:13;23178:13;;23062:135::o;23202:175::-;23239:3;23283:4;23276:5;23272:16;23312:4;23303:7;23300:17;23297:43;;;23320:18;;:::i;:::-;23369:1;23356:15;;23202:175;-1:-1:-1;;23202:175:13:o;23382:112::-;23414:1;23440;23430:35;;23445:18;;:::i;:::-;-1:-1:-1;23479:9:13;;23382:112::o;23499:127::-;23560:10;23555:3;23551:20;23548:1;23541:31;23591:4;23588:1;23581:15;23615:4;23612:1;23605:15;23631:127;23692:10;23687:3;23683:20;23680:1;23673:31;23723:4;23720:1;23713:15;23747:4;23744:1;23737:15;23763:127;23824:10;23819:3;23815:20;23812:1;23805:31;23855:4;23852:1;23845:15;23879:4;23876:1;23869:15;23895:127;23956:10;23951:3;23947:20;23944:1;23937:31;23987:4;23984:1;23977:15;24011:4;24008:1;24001:15;24027:131;-1:-1:-1;;;;;24102:31:13;;24092:42;;24082:70;;24148:1;24145;24138:12;24163:131;-1:-1:-1;;;;;;24237:32:13;;24227:43;;24217:71;;24284:1;24281;24274:12;24299:117;24384:6;24377:5;24373:18;24366:5;24363:29;24353:57;;24406:1;24403;24396:12

Swarm Source

ipfs://4ee037218c4b2311c4e08da174258fd15e31f9d288f2502b286fdc2b536b2aef
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.