ETH Price: $3,395.43 (-1.19%)
Gas: 2 Gwei

Token

Meta Eagle Club (MEC)
 

Overview

Max Total Supply

12,000 MEC

Holders

5,657

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 MEC
0x7e6392B773b07B71336398EC15eAA6541871f373
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The highest collection in the metaverse.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Eagles

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-07
*/

// File: contracts/interfaces/IMintableERC721.sol


pragma solidity ^0.8.10;

interface IMintableERC721 {
	/**
	 * @notice Checks if specified token exists
	 *
	 * @dev Returns whether the specified token ID has an ownership
	 *      information associated with it
	 *
	 * @param _tokenId ID of the token to query existence for
	 * @return whether the token exists (true - exists, false - doesn't exist)
	 */
	function exists(uint256 _tokenId) external view returns(bool);

	/**
	 * @dev Creates new token with token ID specified
	 *      and assigns an ownership `_to` for this token
	 *
	 * @dev Unsafe: doesn't execute `onERC721Received` on the receiver.
	 *      Prefer the use of `saveMint` instead of `mint`.
	 *
	 * @dev Should have a restricted access handled by the implementation
	 *
	 * @param _to an address to mint token to
	 * @param _tokenId ID of the token to mint
	 */
	function mint(address _to, uint256 _tokenId) external;

	/**
	 * @dev Creates new tokens starting with token ID specified
	 *      and assigns an ownership `_to` for these tokens
	 *
	 * @dev Token IDs to be minted: [_tokenId, _tokenId + n)
	 *
	 * @dev n must be greater or equal 2: `n > 1`
	 *
	 * @dev Unsafe: doesn't execute `onERC721Received` on the receiver.
	 *      Prefer the use of `saveMintBatch` instead of `mintBatch`.
	 *
	 * @dev Should have a restricted access handled by the implementation
	 *
	 * @param _to an address to mint tokens to
	 * @param _tokenId ID of the first token to mint
	 * @param n how many tokens to mint, sequentially increasing the _tokenId
	 */
	function mintBatch(address _to, uint256 _tokenId, uint256 n) external;

	/**
	 * @dev Creates new token with token ID specified
	 *      and assigns an ownership `_to` for this token
	 *
	 * @dev Checks if `_to` is a smart contract (code size > 0). If so, it calls
	 *      `onERC721Received` on `_to` and throws if the return value is not
	 *      `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`.
	 *
	 * @dev Should have a restricted access handled by the implementation
	 *
	 * @param _to an address to mint token to
	 * @param _tokenId ID of the token to mint
	 */
	function safeMint(address _to, uint256 _tokenId) external;

	/**
	 * @dev Creates new token with token ID specified
	 *      and assigns an ownership `_to` for this token
	 *
	 * @dev Checks if `_to` is a smart contract (code size > 0). If so, it calls
	 *      `onERC721Received` on `_to` and throws if the return value is not
	 *      `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`.
	 *
	 * @dev Should have a restricted access handled by the implementation
	 *
	 * @param _to an address to mint token to
	 * @param _tokenId ID of the token to mint
	 * @param _data additional data with no specified format, sent in call to `_to`
	 */
	function safeMint(address _to, uint256 _tokenId, bytes memory _data) external;

	/**
	 * @dev Creates new tokens starting with token ID specified
	 *      and assigns an ownership `_to` for these tokens
	 *
	 * @dev Token IDs to be minted: [_tokenId, _tokenId + n)
	 *
	 * @dev n must be greater or equal 2: `n > 1`
	 *
	 * @dev Checks if `_to` is a smart contract (code size > 0). If so, it calls
	 *      `onERC721Received` on `_to` and throws if the return value is not
	 *      `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`.
	 *
	 * @dev Should have a restricted access handled by the implementation
	 *
	 * @param _to an address to mint token to
	 * @param _tokenId ID of the token to mint
	 * @param n how many tokens to mint, sequentially increasing the _tokenId
	 */
	function safeMintBatch(address _to, uint256 _tokenId, uint256 n) external;

	/**
	 * @dev Creates new tokens starting with token ID specified
	 *      and assigns an ownership `_to` for these tokens
	 *
	 * @dev Token IDs to be minted: [_tokenId, _tokenId + n)
	 *
	 * @dev n must be greater or equal 2: `n > 1`
	 *
	 * @dev Checks if `_to` is a smart contract (code size > 0). If so, it calls
	 *      `onERC721Received` on `_to` and throws if the return value is not
	 *      `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`.
	 *
	 * @dev Should have a restricted access handled by the implementation
	 *
	 * @param _to an address to mint token to
	 * @param _tokenId ID of the token to mint
	 * @param n how many tokens to mint, sequentially increasing the _tokenId
	 * @param _data additional data with no specified format, sent in call to `_to`
	 */
	function safeMintBatch(address _to, uint256 _tokenId, uint256 n, bytes memory _data) external;
}
// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

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: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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 IERC165 {
    /**
     * @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: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @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 ERC721 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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 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 ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

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);
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, 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
    mapping(uint256 => address) private _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(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: 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 {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-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 {IERC721-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 {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: 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 ERC721 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), "ERC721: 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), "ERC721: operator query for nonexistent token");
        address owner = ERC721.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-ERC721-_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), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

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

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

        emit Transfer(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 = ERC721.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);
    }

    /**
     * @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(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: 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);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.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, "ERC721: 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("ERC721: 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 {}
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/access/IAccessControl.sol


// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

// File: @openzeppelin/contracts/access/AccessControl.sol


// OpenZeppelin Contracts v4.4.1 (access/AccessControl.sol)

pragma solidity ^0.8.0;





/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: contracts/MintableERC721.sol


pragma solidity ^0.8.10;








contract MintableERC721 is ERC721, IMintableERC721, AccessControl, Ownable {
  using Address for address;
  using Strings for uint256;

  bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
  bytes32 public constant URI_MANAGER_ROLE = keccak256("URI_MANAGER_ROLE");

  uint256 public totalSupply = 0;

  // Mapping from owner to list of owned token IDs
  mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

  // Mapping from token ID to index of the owner tokens list
  mapping(uint256 => uint256) private _ownedTokensIndex;

  constructor(string memory _name, string memory _symbol)
    ERC721(_name, _symbol)
  {
    _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
    _setupRole(MINTER_ROLE, msg.sender);
    _setupRole(URI_MANAGER_ROLE, msg.sender);
  }

  string internal theBaseURI = "";

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

  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(), ".json"))
        : "";
  }

  /**
   * @dev Fired in setBaseURI()
   *
   * @param _by an address which executed update
   * @param _oldVal old _baseURI value
   * @param _newVal new _baseURI value
   */
  event BaseURIChanged(address _by, string _oldVal, string _newVal);

  /**
   * @dev Restricted access function which updates base URI used to construct
   *      ERC721Metadata.tokenURI
   *
   * @param _newBaseURI new base URI to set
   */
  function setBaseURI(string memory _newBaseURI)
    external
    onlyRole(URI_MANAGER_ROLE)
  {
    // Fire event
    emit BaseURIChanged(msg.sender, theBaseURI, _newBaseURI);

    // Update base uri
    theBaseURI = _newBaseURI;
  }

  /**
   * @inheritdoc IMintableERC721
   */
  function exists(uint256 _tokenId) external view returns (bool) {
    // Delegate to internal OpenZeppelin function
    return _exists(_tokenId);
  }

  /**
   * @inheritdoc IMintableERC721
   */
  function mint(address _to, uint256 _tokenId)
    public
    virtual
    onlyRole(MINTER_ROLE)
  {
    totalSupply++;

    // Delegate to internal OpenZeppelin function
    _mint(_to, _tokenId);
  }

  /**
   * @inheritdoc IMintableERC721
   */
  function mintBatch(
    address _to,
    uint256 _tokenId,
    uint256 _n
  ) public virtual onlyRole(MINTER_ROLE) {
    totalSupply += _n;

    for (uint256 i = 0; i < _n; i++) {
      // Delegate to internal OpenZeppelin mint function
      _mint(_to, _tokenId + i);
    }
  }

  /**
   * @inheritdoc IMintableERC721
   */
  function safeMint(
    address _to,
    uint256 _tokenId,
    bytes memory _data
  ) public onlyRole(MINTER_ROLE) {
    // Delegate to internal OpenZeppelin unsafe mint function
    _mint(_to, _tokenId);

    // If a contract, check if it can receive ERC721 tokens (safe to send)
    if (_to.isContract()) {
      bytes4 response = IERC721Receiver(_to).onERC721Received(
        msg.sender,
        address(0),
        _tokenId,
        _data
      );

      require(
        response == IERC721Receiver(_to).onERC721Received.selector,
        "Invalid onERC721Received response"
      );
    }
  }

  /**
   * @inheritdoc IMintableERC721
   */
  function safeMint(address _to, uint256 _tokenId) public {
    // Delegate to internal safe mint function (includes permission check)
    safeMint(_to, _tokenId, "");
  }

  /**
   * @inheritdoc IMintableERC721
   */
  function safeMintBatch(
    address _to,
    uint256 _tokenId,
    uint256 _n,
    bytes memory _data
  ) public {
    // Delegate to internal unsafe batch mint function (includes permission check)
    mintBatch(_to, _tokenId, _n);

    // If a contract, check if it can receive ERC721 tokens (safe to send)
    if (_to.isContract()) {
      bytes4 response = IERC721Receiver(_to).onERC721Received(
        msg.sender,
        address(0),
        _tokenId,
        _data
      );

      require(
        response == IERC721Receiver(_to).onERC721Received.selector,
        "Invalid onERC721Received response"
      );
    }
  }

  /**
   * @inheritdoc IMintableERC721
   */
  function safeMintBatch(
    address _to,
    uint256 _tokenId,
    uint256 _n
  ) external {
    // Delegate to internal safe batch mint function (includes permission check)
    safeMintBatch(_to, _tokenId, _n, "");
  }

  /**
   * @inheritdoc ERC721
   */
  function supportsInterface(bytes4 interfaceId)
    public
    view
    override(ERC721, AccessControl)
    returns (bool)
  {
    return
      interfaceId == type(IMintableERC721).interfaceId ||
      super.supportsInterface(interfaceId);
  }

  // ************************************************************************************************************************
  // The following methods are borrowed from OpenZeppelin's ERC721Enumerable contract, to make it easier to query a wallet's
  // contents without incurring the extra storage gas costs of the full ERC721Enumerable extension
  // ************************************************************************************************************************

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 tokenCount = balanceOf(_owner);

    uint256[] memory tokensId = new uint256[](tokenCount);
    for (uint256 i; i < tokenCount; i++) {
      tokensId[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokensId;
  }

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    virtual
    returns (uint256)
  {
    require(
      index < ERC721.balanceOf(owner),
      "ERC721Enumerable: owner index out of bounds"
    );
    return _ownedTokens[owner][index];
  }

  /**
   * @dev Private function to add a token to ownership-tracking data structures.
   * @param to address representing the new owner of the given token ID
   * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
   */
  function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
    uint256 length = ERC721.balanceOf(to);
    _ownedTokens[to][length] = tokenId;
    _ownedTokensIndex[tokenId] = length;
  }

  /**
   * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
   * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
   * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
   * This has O(1) time complexity, but alters the order of the _ownedTokens array.
   * @param from address representing the previous owner of the given token ID
   * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
   */
  function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId)
    private
  {
    // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
    // then delete the last slot (swap and pop).
    uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
    uint256 tokenIndex = _ownedTokensIndex[tokenId];

    // When the token to delete is the last token, the swap operation is unnecessary
    if (tokenIndex != lastTokenIndex) {
      uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

      _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
      _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
    }

    // This also deletes the contents at the last position of the array
    delete _ownedTokensIndex[tokenId];
    delete _ownedTokens[from][lastTokenIndex];
  }

  /**
   * @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` cannot be the zero address.
   * - `to` cannot be the zero address.
   *
   * 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 override {
    super._beforeTokenTransfer(from, to, tokenId);

    if (from != address(0)) {
      _removeTokenFromOwnerEnumeration(from, tokenId);
    }
    if (to != address(0)) {
      _addTokenToOwnerEnumeration(to, tokenId);
    }
  }
}

// File: contracts/Eagles.sol


pragma solidity ^0.8.10;


contract Eagles is MintableERC721 {
  uint256 public constant TOTAL_NUMBER_OF_EAGLES = 12000;

  constructor(string memory _name, string memory _symbol)
    MintableERC721(_name, _symbol)
  {}

  function mint(address _to, uint256 _tokenId) public override {
    require(
      totalSupply + 1 <= TOTAL_NUMBER_OF_EAGLES,
      "MEC: Cannot mint more than total number of EAGLES"
    );
    super.mint(_to, _tokenId);
  }

  function mintBatch(
    address _to,
    uint256 _tokenId,
    uint256 _n
  ) public override {
    require(
      totalSupply + _n <= TOTAL_NUMBER_OF_EAGLES,
      "MEC: Cannot mint more than total number of EAGLES"
    );
    super.mintBatch(_to, _tokenId, _n);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"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":false,"internalType":"address","name":"_by","type":"address"},{"indexed":false,"internalType":"string","name":"_oldVal","type":"string"},{"indexed":false,"internalType":"string","name":"_newVal","type":"string"}],"name":"BaseURIChanged","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":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_NUMBER_OF_EAGLES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"URI_MANAGER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":[{"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":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_n","type":"uint256"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","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":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_n","type":"uint256"}],"name":"safeMintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_n","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeMintBatch","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"}]

6000600881905560a0604081905260808290526200002191600b91906200021a565b503480156200002f57600080fd5b5060405162002a6938038062002a6983398101604081905262000052916200038d565b8181818181600090805190602001906200006e9291906200021a565b508051620000849060019060208401906200021a565b505050620000a16200009b6200011060201b60201c565b62000114565b620000ae60003362000166565b620000da7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a63362000166565b620001067fa70a2d8710fed9f014c8c2af50c7c2f6b25748ae4cded822e03b7beed44cf3a83362000166565b5050505062000434565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000172828262000176565b5050565b60008281526006602090815260408083206001600160a01b038516845290915290205460ff16620001725760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620001d63390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b8280546200022890620003f7565b90600052602060002090601f0160209004810192826200024c576000855562000297565b82601f106200026757805160ff191683800117855562000297565b8280016001018555821562000297579182015b82811115620002975782518255916020019190600101906200027a565b50620002a5929150620002a9565b5090565b5b80821115620002a55760008155600101620002aa565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002e857600080fd5b81516001600160401b0380821115620003055762000305620002c0565b604051601f8301601f19908116603f01168101908282118183101715620003305762000330620002c0565b816040528381526020925086838588010111156200034d57600080fd5b600091505b8382101562000371578582018301518183018401529082019062000352565b83821115620003835760008385830101525b9695505050505050565b60008060408385031215620003a157600080fd5b82516001600160401b0380821115620003b957600080fd5b620003c786838701620002d6565b93506020850151915080821115620003de57600080fd5b50620003ed85828601620002d6565b9150509250929050565b600181811c908216806200040c57607f821691505b602082108114156200042e57634e487b7160e01b600052602260045260246000fd5b50919050565b61262580620004446000396000f3fe608060405234801561001057600080fd5b506004361061021c5760003560e01c80636352211e11610125578063a217fddf116100ad578063c87b56dd1161007c578063c87b56dd146104a7578063d5391393146104ba578063d547741f146104cf578063e985e9c5146104e2578063f2fde38b1461051e57600080fd5b8063a217fddf14610466578063a22cb4651461046e578063af65e2a814610481578063b88d4fde1461049457600080fd5b80638832e6e3116100f45780638832e6e3146104145780638da5cb5b1461042757806391d148541461043857806395d89b411461044b578063a14481941461045357600080fd5b80636352211e146103bf578063682d07d9146103d257806370a08231146103f9578063715018a61461040c57600080fd5b80632f2ff15d116101a857806342842e0e1161017757806342842e0e14610353578063438b6300146103665780634f558e791461038657806355f804b31461039957806361587911146103ac57600080fd5b80632f2ff15d146103075780632f745c591461031a57806336568abe1461032d57806340c10f191461034057600080fd5b8063130fc635116101ef578063130fc6351461029e57806318160ddd146102b557806323b872dd146102be578063248a9ca3146102d15780632e81aaea146102f457600080fd5b806301ffc9a71461022157806306fdde0314610249578063081812fc1461025e578063095ea7b314610289575b600080fd5b61023461022f366004611d98565b610531565b60405190151581526020015b60405180910390f35b61025161055c565b6040516102409190611e0d565b61027161026c366004611e20565b6105ee565b6040516001600160a01b039091168152602001610240565b61029c610297366004611e55565b610688565b005b6102a7612ee081565b604051908152602001610240565b6102a760085481565b61029c6102cc366004611e7f565b61079e565b6102a76102df366004611e20565b60009081526006602052604090206001015490565b61029c610302366004611ebb565b6107cf565b61029c610315366004611eee565b610809565b6102a7610328366004611e55565b61082f565b61029c61033b366004611eee565b6108c5565b61029c61034e366004611e55565b610943565b61029c610361366004611e7f565b61097d565b610379610374366004611f1a565b610998565b6040516102409190611f35565b610234610394366004611e20565b610a3a565b61029c6103a7366004612005565b610a59565b61029c6103ba366004611ebb565b610ad3565b6102716103cd366004611e20565b610aee565b6102a77fa70a2d8710fed9f014c8c2af50c7c2f6b25748ae4cded822e03b7beed44cf3a881565b6102a7610407366004611f1a565b610b65565b61029c610bec565b61029c61042236600461206e565b610c52565b6007546001600160a01b0316610271565b610234610446366004611eee565b610d71565b610251610d9c565b61029c610461366004611e55565b610dab565b6102a7600081565b61029c61047c3660046120c5565b610dc5565b61029c61048f366004612101565b610dd0565b61029c6104a2366004612162565b610e20565b6102516104b5366004611e20565b610e52565b6102a76000805160206125d083398151915281565b61029c6104dd366004611eee565b610f2d565b6102346104f03660046121b2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61029c61052c366004611f1a565b610f53565b60006001600160e01b03198216633197b5d160e21b148061055657506105568261101e565b92915050565b60606000805461056b906121dc565b80601f0160208091040260200160405190810160405280929190818152602001828054610597906121dc565b80156105e45780601f106105b9576101008083540402835291602001916105e4565b820191906000526020600020905b8154815290600101906020018083116105c757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661066c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061069382610aee565b9050806001600160a01b0316836001600160a01b031614156107015760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610663565b336001600160a01b038216148061071d575061071d81336104f0565b61078f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610663565b6107998383611043565b505050565b6107a833826110b1565b6107c45760405162461bcd60e51b815260040161066390612217565b6107998383836111a8565b612ee0816008546107e0919061227e565b11156107fe5760405162461bcd60e51b815260040161066390612296565b610799838383611353565b60008281526006602052604090206001015461082581336113b4565b6107998383611418565b600061083a83610b65565b821061089c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610663565b506001600160a01b03919091166000908152600960209081526040808320938352929052205490565b6001600160a01b03811633146109355760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610663565b61093f828261149e565b5050565b612ee06008546001610955919061227e565b11156109735760405162461bcd60e51b815260040161066390612296565b61093f8282611505565b61079983838360405180602001604052806000815250610e20565b606060006109a583610b65565b905060008167ffffffffffffffff8111156109c2576109c2611f79565b6040519080825280602002602001820160405280156109eb578160200160208202803683370190505b50905060005b82811015610a3257610a03858261082f565b828281518110610a1557610a156122e7565b602090810291909101015280610a2a816122fd565b9150506109f1565b509392505050565b6000818152600260205260408120546001600160a01b03161515610556565b7fa70a2d8710fed9f014c8c2af50c7c2f6b25748ae4cded822e03b7beed44cf3a8610a8481336113b4565b7f92bf6a7b8937c17e6781a68d61f9fe6a5ce08604b96ca2206f311049a3a295ea33600b84604051610ab893929190612318565b60405180910390a1815161079990600b906020850190611ce9565b61079983838360405180602001604052806000815250610dd0565b6000818152600260205260408120546001600160a01b0316806105565760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610663565b60006001600160a01b038216610bd05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610663565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b03163314610c465760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610663565b610c50600061153d565b565b6000805160206125d0833981519152610c6b81336113b4565b610c75848461158f565b6001600160a01b0384163b15610d6b57604051630a85bd0160e11b81526000906001600160a01b0386169063150b7a0290610cba9033908590899089906004016123e4565b6020604051808303816000875af1158015610cd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cfd9190612421565b90506001600160e01b03198116630a85bd0160e11b14610d695760405162461bcd60e51b815260206004820152602160248201527f496e76616c6964206f6e455243373231526563656976656420726573706f6e736044820152606560f81b6064820152608401610663565b505b50505050565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606001805461056b906121dc565b61093f828260405180602001604052806000815250610c52565b61093f3383836116dd565b610ddb8484846107cf565b6001600160a01b0384163b15610d6b57604051630a85bd0160e11b81526000906001600160a01b0386169063150b7a0290610cba9033908590899088906004016123e4565b610e2a33836110b1565b610e465760405162461bcd60e51b815260040161066390612217565b610d6b848484846117ac565b6000818152600260205260409020546060906001600160a01b0316610ed15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610663565b6000610edb6117df565b90506000815111610efb5760405180602001604052806000815250610f26565b80610f05846117ee565b604051602001610f1692919061243e565b6040516020818303038152906040525b9392505050565b600082815260066020526040902060010154610f4981336113b4565b610799838361149e565b6007546001600160a01b03163314610fad5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610663565b6001600160a01b0381166110125760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610663565b61101b8161153d565b50565b60006001600160e01b03198216637965db0b60e01b14806105565750610556826118ec565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061107882610aee565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661112a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610663565b600061113583610aee565b9050806001600160a01b0316846001600160a01b031614806111705750836001600160a01b0316611165846105ee565b6001600160a01b0316145b806111a057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166111bb82610aee565b6001600160a01b0316146112235760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610663565b6001600160a01b0382166112855760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610663565b61129083838361193c565b61129b600082611043565b6001600160a01b03831660009081526003602052604081208054600192906112c490849061247d565b90915550506001600160a01b03821660009081526003602052604081208054600192906112f290849061227e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000805160206125d083398151915261136c81336113b4565b816008600082825461137e919061227e565b90915550600090505b82811015610d69576113a28561139d838761227e565b61158f565b806113ac816122fd565b915050611387565b6113be8282610d71565b61093f576113d6816001600160a01b0316601461196e565b6113e183602061196e565b6040516020016113f2929190612494565b60408051601f198184030181529082905262461bcd60e51b825261066391600401611e0d565b6114228282610d71565b61093f5760008281526006602090815260408083206001600160a01b03851684529091529020805460ff1916600117905561145a3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6114a88282610d71565b1561093f5760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000805160206125d083398151915261151e81336113b4565b6008805490600061152e836122fd565b9190505550610799838361158f565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166115e55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610663565b6000818152600260205260409020546001600160a01b03161561164a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610663565b6116566000838361193c565b6001600160a01b038216600090815260036020526040812080546001929061167f90849061227e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b0316141561173f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610663565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6117b78484846111a8565b6117c384848484611b0a565b610d6b5760405162461bcd60e51b815260040161066390612509565b6060600b805461056b906121dc565b6060816118125750506040805180820190915260018152600360fc1b602082015290565b8160005b811561183c5780611826816122fd565b91506118359050600a83612571565b9150611816565b60008167ffffffffffffffff81111561185757611857611f79565b6040519080825280601f01601f191660200182016040528015611881576020820181803683370190505b5090505b84156111a05761189660018361247d565b91506118a3600a86612585565b6118ae90603061227e565b60f81b8183815181106118c3576118c36122e7565b60200101906001600160f81b031916908160001a9053506118e5600a86612571565b9450611885565b60006001600160e01b031982166380ac58cd60e01b148061191d57506001600160e01b03198216635b5e139f60e01b145b8061055657506301ffc9a760e01b6001600160e01b0319831614610556565b6001600160a01b03831615611955576119558382611c08565b6001600160a01b03821615610799576107998282611ca5565b6060600061197d836002612599565b61198890600261227e565b67ffffffffffffffff8111156119a0576119a0611f79565b6040519080825280601f01601f1916602001820160405280156119ca576020820181803683370190505b509050600360fc1b816000815181106119e5576119e56122e7565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611a1457611a146122e7565b60200101906001600160f81b031916908160001a9053506000611a38846002612599565b611a4390600161227e565b90505b6001811115611abb576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611a7757611a776122e7565b1a60f81b828281518110611a8d57611a8d6122e7565b60200101906001600160f81b031916908160001a90535060049490941c93611ab4816125b8565b9050611a46565b508315610f265760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610663565b60006001600160a01b0384163b15611bfd57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b4e9033908990889088906004016123e4565b6020604051808303816000875af1925050508015611b89575060408051601f3d908101601f19168201909252611b8691810190612421565b60015b611be3573d808015611bb7576040519150601f19603f3d011682016040523d82523d6000602084013e611bbc565b606091505b508051611bdb5760405162461bcd60e51b815260040161066390612509565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111a0565b506001949350505050565b60006001611c1584610b65565b611c1f919061247d565b6000838152600a6020526040902054909150808214611c72576001600160a01b03841660009081526009602090815260408083208584528252808320548484528184208190558352600a90915290208190555b506000918252600a602090815260408084208490556001600160a01b039094168352600981528383209183525290812055565b6000611cb083610b65565b6001600160a01b0390931660009081526009602090815260408083208684528252808320859055938252600a9052919091209190915550565b828054611cf5906121dc565b90600052602060002090601f016020900481019282611d175760008555611d5d565b82601f10611d3057805160ff1916838001178555611d5d565b82800160010185558215611d5d579182015b82811115611d5d578251825591602001919060010190611d42565b50611d69929150611d6d565b5090565b5b80821115611d695760008155600101611d6e565b6001600160e01b03198116811461101b57600080fd5b600060208284031215611daa57600080fd5b8135610f2681611d82565b60005b83811015611dd0578181015183820152602001611db8565b83811115610d6b5750506000910152565b60008151808452611df9816020860160208601611db5565b601f01601f19169290920160200192915050565b602081526000610f266020830184611de1565b600060208284031215611e3257600080fd5b5035919050565b80356001600160a01b0381168114611e5057600080fd5b919050565b60008060408385031215611e6857600080fd5b611e7183611e39565b946020939093013593505050565b600080600060608486031215611e9457600080fd5b611e9d84611e39565b9250611eab60208501611e39565b9150604084013590509250925092565b600080600060608486031215611ed057600080fd5b611ed984611e39565b95602085013595506040909401359392505050565b60008060408385031215611f0157600080fd5b82359150611f1160208401611e39565b90509250929050565b600060208284031215611f2c57600080fd5b610f2682611e39565b6020808252825182820181905260009190848201906040850190845b81811015611f6d57835183529284019291840191600101611f51565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611faa57611faa611f79565b604051601f8501601f19908116603f01168101908282118183101715611fd257611fd2611f79565b81604052809350858152868686011115611feb57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561201757600080fd5b813567ffffffffffffffff81111561202e57600080fd5b8201601f8101841361203f57600080fd5b6111a084823560208401611f8f565b600082601f83011261205f57600080fd5b610f2683833560208501611f8f565b60008060006060848603121561208357600080fd5b61208c84611e39565b925060208401359150604084013567ffffffffffffffff8111156120af57600080fd5b6120bb8682870161204e565b9150509250925092565b600080604083850312156120d857600080fd5b6120e183611e39565b9150602083013580151581146120f657600080fd5b809150509250929050565b6000806000806080858703121561211757600080fd5b61212085611e39565b93506020850135925060408501359150606085013567ffffffffffffffff81111561214a57600080fd5b6121568782880161204e565b91505092959194509250565b6000806000806080858703121561217857600080fd5b61218185611e39565b935061218f60208601611e39565b925060408501359150606085013567ffffffffffffffff81111561214a57600080fd5b600080604083850312156121c557600080fd5b6121ce83611e39565b9150611f1160208401611e39565b600181811c908216806121f057607f821691505b6020821081141561221157634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561229157612291612268565b500190565b60208082526031908201527f4d45433a2043616e6e6f74206d696e74206d6f7265207468616e20746f74616c604082015270206e756d626572206f66204541474c455360781b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060001982141561231157612311612268565b5060010190565b60018060a01b0384168152600060206060818401526000855481600182811c91508083168061234857607f831692505b85831081141561236657634e487b7160e01b85526022600452602485fd5b60608801839052608088018180156123855760018114612396576123c1565b60ff198616825287820196506123c1565b60008c81526020902060005b868110156123bb578154848201529085019089016123a2565b83019750505b50505050505083810360408501526123d98186611de1565b979650505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061241790830184611de1565b9695505050505050565b60006020828403121561243357600080fd5b8151610f2681611d82565b60008351612450818460208801611db5565b835190830190612464818360208801611db5565b64173539b7b760d91b9101908152600501949350505050565b60008282101561248f5761248f612268565b500390565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516124cc816017850160208801611db5565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516124fd816028840160208801611db5565b01602801949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826125805761258061255b565b500490565b6000826125945761259461255b565b500690565b60008160001904831182151516156125b3576125b3612268565b500290565b6000816125c7576125c7612268565b50600019019056fe9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a2646970667358221220aee00d49435214a00dfadcbe46abca3ef215b40019cb48a35defe85781ffd4d464736f6c634300080b003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000f4d657461204561676c6520436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d45430000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061021c5760003560e01c80636352211e11610125578063a217fddf116100ad578063c87b56dd1161007c578063c87b56dd146104a7578063d5391393146104ba578063d547741f146104cf578063e985e9c5146104e2578063f2fde38b1461051e57600080fd5b8063a217fddf14610466578063a22cb4651461046e578063af65e2a814610481578063b88d4fde1461049457600080fd5b80638832e6e3116100f45780638832e6e3146104145780638da5cb5b1461042757806391d148541461043857806395d89b411461044b578063a14481941461045357600080fd5b80636352211e146103bf578063682d07d9146103d257806370a08231146103f9578063715018a61461040c57600080fd5b80632f2ff15d116101a857806342842e0e1161017757806342842e0e14610353578063438b6300146103665780634f558e791461038657806355f804b31461039957806361587911146103ac57600080fd5b80632f2ff15d146103075780632f745c591461031a57806336568abe1461032d57806340c10f191461034057600080fd5b8063130fc635116101ef578063130fc6351461029e57806318160ddd146102b557806323b872dd146102be578063248a9ca3146102d15780632e81aaea146102f457600080fd5b806301ffc9a71461022157806306fdde0314610249578063081812fc1461025e578063095ea7b314610289575b600080fd5b61023461022f366004611d98565b610531565b60405190151581526020015b60405180910390f35b61025161055c565b6040516102409190611e0d565b61027161026c366004611e20565b6105ee565b6040516001600160a01b039091168152602001610240565b61029c610297366004611e55565b610688565b005b6102a7612ee081565b604051908152602001610240565b6102a760085481565b61029c6102cc366004611e7f565b61079e565b6102a76102df366004611e20565b60009081526006602052604090206001015490565b61029c610302366004611ebb565b6107cf565b61029c610315366004611eee565b610809565b6102a7610328366004611e55565b61082f565b61029c61033b366004611eee565b6108c5565b61029c61034e366004611e55565b610943565b61029c610361366004611e7f565b61097d565b610379610374366004611f1a565b610998565b6040516102409190611f35565b610234610394366004611e20565b610a3a565b61029c6103a7366004612005565b610a59565b61029c6103ba366004611ebb565b610ad3565b6102716103cd366004611e20565b610aee565b6102a77fa70a2d8710fed9f014c8c2af50c7c2f6b25748ae4cded822e03b7beed44cf3a881565b6102a7610407366004611f1a565b610b65565b61029c610bec565b61029c61042236600461206e565b610c52565b6007546001600160a01b0316610271565b610234610446366004611eee565b610d71565b610251610d9c565b61029c610461366004611e55565b610dab565b6102a7600081565b61029c61047c3660046120c5565b610dc5565b61029c61048f366004612101565b610dd0565b61029c6104a2366004612162565b610e20565b6102516104b5366004611e20565b610e52565b6102a76000805160206125d083398151915281565b61029c6104dd366004611eee565b610f2d565b6102346104f03660046121b2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61029c61052c366004611f1a565b610f53565b60006001600160e01b03198216633197b5d160e21b148061055657506105568261101e565b92915050565b60606000805461056b906121dc565b80601f0160208091040260200160405190810160405280929190818152602001828054610597906121dc565b80156105e45780601f106105b9576101008083540402835291602001916105e4565b820191906000526020600020905b8154815290600101906020018083116105c757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661066c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061069382610aee565b9050806001600160a01b0316836001600160a01b031614156107015760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610663565b336001600160a01b038216148061071d575061071d81336104f0565b61078f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610663565b6107998383611043565b505050565b6107a833826110b1565b6107c45760405162461bcd60e51b815260040161066390612217565b6107998383836111a8565b612ee0816008546107e0919061227e565b11156107fe5760405162461bcd60e51b815260040161066390612296565b610799838383611353565b60008281526006602052604090206001015461082581336113b4565b6107998383611418565b600061083a83610b65565b821061089c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610663565b506001600160a01b03919091166000908152600960209081526040808320938352929052205490565b6001600160a01b03811633146109355760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610663565b61093f828261149e565b5050565b612ee06008546001610955919061227e565b11156109735760405162461bcd60e51b815260040161066390612296565b61093f8282611505565b61079983838360405180602001604052806000815250610e20565b606060006109a583610b65565b905060008167ffffffffffffffff8111156109c2576109c2611f79565b6040519080825280602002602001820160405280156109eb578160200160208202803683370190505b50905060005b82811015610a3257610a03858261082f565b828281518110610a1557610a156122e7565b602090810291909101015280610a2a816122fd565b9150506109f1565b509392505050565b6000818152600260205260408120546001600160a01b03161515610556565b7fa70a2d8710fed9f014c8c2af50c7c2f6b25748ae4cded822e03b7beed44cf3a8610a8481336113b4565b7f92bf6a7b8937c17e6781a68d61f9fe6a5ce08604b96ca2206f311049a3a295ea33600b84604051610ab893929190612318565b60405180910390a1815161079990600b906020850190611ce9565b61079983838360405180602001604052806000815250610dd0565b6000818152600260205260408120546001600160a01b0316806105565760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610663565b60006001600160a01b038216610bd05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610663565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b03163314610c465760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610663565b610c50600061153d565b565b6000805160206125d0833981519152610c6b81336113b4565b610c75848461158f565b6001600160a01b0384163b15610d6b57604051630a85bd0160e11b81526000906001600160a01b0386169063150b7a0290610cba9033908590899089906004016123e4565b6020604051808303816000875af1158015610cd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cfd9190612421565b90506001600160e01b03198116630a85bd0160e11b14610d695760405162461bcd60e51b815260206004820152602160248201527f496e76616c6964206f6e455243373231526563656976656420726573706f6e736044820152606560f81b6064820152608401610663565b505b50505050565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606001805461056b906121dc565b61093f828260405180602001604052806000815250610c52565b61093f3383836116dd565b610ddb8484846107cf565b6001600160a01b0384163b15610d6b57604051630a85bd0160e11b81526000906001600160a01b0386169063150b7a0290610cba9033908590899088906004016123e4565b610e2a33836110b1565b610e465760405162461bcd60e51b815260040161066390612217565b610d6b848484846117ac565b6000818152600260205260409020546060906001600160a01b0316610ed15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610663565b6000610edb6117df565b90506000815111610efb5760405180602001604052806000815250610f26565b80610f05846117ee565b604051602001610f1692919061243e565b6040516020818303038152906040525b9392505050565b600082815260066020526040902060010154610f4981336113b4565b610799838361149e565b6007546001600160a01b03163314610fad5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610663565b6001600160a01b0381166110125760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610663565b61101b8161153d565b50565b60006001600160e01b03198216637965db0b60e01b14806105565750610556826118ec565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061107882610aee565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661112a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610663565b600061113583610aee565b9050806001600160a01b0316846001600160a01b031614806111705750836001600160a01b0316611165846105ee565b6001600160a01b0316145b806111a057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166111bb82610aee565b6001600160a01b0316146112235760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610663565b6001600160a01b0382166112855760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610663565b61129083838361193c565b61129b600082611043565b6001600160a01b03831660009081526003602052604081208054600192906112c490849061247d565b90915550506001600160a01b03821660009081526003602052604081208054600192906112f290849061227e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000805160206125d083398151915261136c81336113b4565b816008600082825461137e919061227e565b90915550600090505b82811015610d69576113a28561139d838761227e565b61158f565b806113ac816122fd565b915050611387565b6113be8282610d71565b61093f576113d6816001600160a01b0316601461196e565b6113e183602061196e565b6040516020016113f2929190612494565b60408051601f198184030181529082905262461bcd60e51b825261066391600401611e0d565b6114228282610d71565b61093f5760008281526006602090815260408083206001600160a01b03851684529091529020805460ff1916600117905561145a3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6114a88282610d71565b1561093f5760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000805160206125d083398151915261151e81336113b4565b6008805490600061152e836122fd565b9190505550610799838361158f565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166115e55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610663565b6000818152600260205260409020546001600160a01b03161561164a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610663565b6116566000838361193c565b6001600160a01b038216600090815260036020526040812080546001929061167f90849061227e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b0316141561173f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610663565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6117b78484846111a8565b6117c384848484611b0a565b610d6b5760405162461bcd60e51b815260040161066390612509565b6060600b805461056b906121dc565b6060816118125750506040805180820190915260018152600360fc1b602082015290565b8160005b811561183c5780611826816122fd565b91506118359050600a83612571565b9150611816565b60008167ffffffffffffffff81111561185757611857611f79565b6040519080825280601f01601f191660200182016040528015611881576020820181803683370190505b5090505b84156111a05761189660018361247d565b91506118a3600a86612585565b6118ae90603061227e565b60f81b8183815181106118c3576118c36122e7565b60200101906001600160f81b031916908160001a9053506118e5600a86612571565b9450611885565b60006001600160e01b031982166380ac58cd60e01b148061191d57506001600160e01b03198216635b5e139f60e01b145b8061055657506301ffc9a760e01b6001600160e01b0319831614610556565b6001600160a01b03831615611955576119558382611c08565b6001600160a01b03821615610799576107998282611ca5565b6060600061197d836002612599565b61198890600261227e565b67ffffffffffffffff8111156119a0576119a0611f79565b6040519080825280601f01601f1916602001820160405280156119ca576020820181803683370190505b509050600360fc1b816000815181106119e5576119e56122e7565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611a1457611a146122e7565b60200101906001600160f81b031916908160001a9053506000611a38846002612599565b611a4390600161227e565b90505b6001811115611abb576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611a7757611a776122e7565b1a60f81b828281518110611a8d57611a8d6122e7565b60200101906001600160f81b031916908160001a90535060049490941c93611ab4816125b8565b9050611a46565b508315610f265760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610663565b60006001600160a01b0384163b15611bfd57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b4e9033908990889088906004016123e4565b6020604051808303816000875af1925050508015611b89575060408051601f3d908101601f19168201909252611b8691810190612421565b60015b611be3573d808015611bb7576040519150601f19603f3d011682016040523d82523d6000602084013e611bbc565b606091505b508051611bdb5760405162461bcd60e51b815260040161066390612509565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111a0565b506001949350505050565b60006001611c1584610b65565b611c1f919061247d565b6000838152600a6020526040902054909150808214611c72576001600160a01b03841660009081526009602090815260408083208584528252808320548484528184208190558352600a90915290208190555b506000918252600a602090815260408084208490556001600160a01b039094168352600981528383209183525290812055565b6000611cb083610b65565b6001600160a01b0390931660009081526009602090815260408083208684528252808320859055938252600a9052919091209190915550565b828054611cf5906121dc565b90600052602060002090601f016020900481019282611d175760008555611d5d565b82601f10611d3057805160ff1916838001178555611d5d565b82800160010185558215611d5d579182015b82811115611d5d578251825591602001919060010190611d42565b50611d69929150611d6d565b5090565b5b80821115611d695760008155600101611d6e565b6001600160e01b03198116811461101b57600080fd5b600060208284031215611daa57600080fd5b8135610f2681611d82565b60005b83811015611dd0578181015183820152602001611db8565b83811115610d6b5750506000910152565b60008151808452611df9816020860160208601611db5565b601f01601f19169290920160200192915050565b602081526000610f266020830184611de1565b600060208284031215611e3257600080fd5b5035919050565b80356001600160a01b0381168114611e5057600080fd5b919050565b60008060408385031215611e6857600080fd5b611e7183611e39565b946020939093013593505050565b600080600060608486031215611e9457600080fd5b611e9d84611e39565b9250611eab60208501611e39565b9150604084013590509250925092565b600080600060608486031215611ed057600080fd5b611ed984611e39565b95602085013595506040909401359392505050565b60008060408385031215611f0157600080fd5b82359150611f1160208401611e39565b90509250929050565b600060208284031215611f2c57600080fd5b610f2682611e39565b6020808252825182820181905260009190848201906040850190845b81811015611f6d57835183529284019291840191600101611f51565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611faa57611faa611f79565b604051601f8501601f19908116603f01168101908282118183101715611fd257611fd2611f79565b81604052809350858152868686011115611feb57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561201757600080fd5b813567ffffffffffffffff81111561202e57600080fd5b8201601f8101841361203f57600080fd5b6111a084823560208401611f8f565b600082601f83011261205f57600080fd5b610f2683833560208501611f8f565b60008060006060848603121561208357600080fd5b61208c84611e39565b925060208401359150604084013567ffffffffffffffff8111156120af57600080fd5b6120bb8682870161204e565b9150509250925092565b600080604083850312156120d857600080fd5b6120e183611e39565b9150602083013580151581146120f657600080fd5b809150509250929050565b6000806000806080858703121561211757600080fd5b61212085611e39565b93506020850135925060408501359150606085013567ffffffffffffffff81111561214a57600080fd5b6121568782880161204e565b91505092959194509250565b6000806000806080858703121561217857600080fd5b61218185611e39565b935061218f60208601611e39565b925060408501359150606085013567ffffffffffffffff81111561214a57600080fd5b600080604083850312156121c557600080fd5b6121ce83611e39565b9150611f1160208401611e39565b600181811c908216806121f057607f821691505b6020821081141561221157634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561229157612291612268565b500190565b60208082526031908201527f4d45433a2043616e6e6f74206d696e74206d6f7265207468616e20746f74616c604082015270206e756d626572206f66204541474c455360781b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060001982141561231157612311612268565b5060010190565b60018060a01b0384168152600060206060818401526000855481600182811c91508083168061234857607f831692505b85831081141561236657634e487b7160e01b85526022600452602485fd5b60608801839052608088018180156123855760018114612396576123c1565b60ff198616825287820196506123c1565b60008c81526020902060005b868110156123bb578154848201529085019089016123a2565b83019750505b50505050505083810360408501526123d98186611de1565b979650505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061241790830184611de1565b9695505050505050565b60006020828403121561243357600080fd5b8151610f2681611d82565b60008351612450818460208801611db5565b835190830190612464818360208801611db5565b64173539b7b760d91b9101908152600501949350505050565b60008282101561248f5761248f612268565b500390565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516124cc816017850160208801611db5565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516124fd816028840160208801611db5565b01602801949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826125805761258061255b565b500490565b6000826125945761259461255b565b500690565b60008160001904831182151516156125b3576125b3612268565b500290565b6000816125c7576125c7612268565b50600019019056fe9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a2646970667358221220aee00d49435214a00dfadcbe46abca3ef215b40019cb48a35defe85781ffd4d464736f6c634300080b0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000f4d657461204561676c6520436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d45430000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Meta Eagle Club
Arg [1] : _symbol (string): MEC

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [3] : 4d657461204561676c6520436c75620000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 4d45430000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

60815:719:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56351:251;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;56351:251:0;;;;;;;;26883:100;;;:::i;:::-;;;;;;;:::i;28442:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1847:32:1;;;1829:51;;1817:2;1802:18;28442:221:0;1683:203:1;27965:411:0;;;;;;:::i;:::-;;:::i;:::-;;60854:54;;60903:5;60854:54;;;;;2474:25:1;;;2462:2;2447:18;60854:54:0;2328:177:1;51859:30:0;;;;;;29192:339;;;;;;:::i;:::-;;:::i;47936:123::-;;;;;;:::i;:::-;48002:7;48029:12;;;:6;:12;;;;;:22;;;;47936:123;61254:277;;;;;;:::i;:::-;;:::i;48321:147::-;;;;;;:::i;:::-;;:::i;57501:281::-;;;;;;:::i;:::-;;:::i;49369:218::-;;;;;;:::i;:::-;;:::i;61018:230::-;;;;;;:::i;:::-;;:::i;29602:185::-;;;;;;:::i;:::-;;:::i;57090:335::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;53669:151::-;;;;;;:::i;:::-;;:::i;53374:241::-;;;;;;:::i;:::-;;:::i;56080:226::-;;;;;;:::i;:::-;;:::i;26577:239::-;;;;;;:::i;:::-;;:::i;51780:72::-;;51823:29;51780:72;;26307:208;;;;;;:::i;:::-;;:::i;40091:103::-;;;:::i;54477:620::-;;;;;;:::i;:::-;;:::i;39440:87::-;39513:6;;-1:-1:-1;;;;;39513:6:0;39440:87;;46821:139;;;;;;:::i;:::-;;:::i;27052:104::-;;;:::i;55151:172::-;;;;;;:::i;:::-;;:::i;45912:49::-;;45957:4;45912:49;;28735:155;;;;;;:::i;:::-;;:::i;55377:649::-;;;;;;:::i;:::-;;:::i;29858:328::-;;;;;;:::i;:::-;;:::i;52531:403::-;;;;;;:::i;:::-;;:::i;51713:62::-;;-1:-1:-1;;;;;;;;;;;51713:62:0;;48713:149;;;;;;:::i;:::-;;:::i;28961:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;29082:25:0;;;29058:4;29082:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28961:164;40349:201;;;;;;:::i;:::-;;:::i;56351:251::-;56471:4;-1:-1:-1;;;;;;56501:48:0;;-1:-1:-1;;;56501:48:0;;:95;;;56560:36;56584:11;56560:23;:36::i;:::-;56487:109;56351:251;-1:-1:-1;;56351:251:0:o;26883:100::-;26937:13;26970:5;26963:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26883:100;:::o;28442:221::-;28518:7;31785:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31785:16:0;28538:73;;;;-1:-1:-1;;;28538:73:0;;8824:2:1;28538:73:0;;;8806:21:1;8863:2;8843:18;;;8836:30;8902:34;8882:18;;;8875:62;-1:-1:-1;;;8953:18:1;;;8946:42;9005:19;;28538:73:0;;;;;;;;;-1:-1:-1;28631:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28631:24:0;;28442:221::o;27965:411::-;28046:13;28062:23;28077:7;28062:14;:23::i;:::-;28046:39;;28110:5;-1:-1:-1;;;;;28104:11:0;:2;-1:-1:-1;;;;;28104:11:0;;;28096:57;;;;-1:-1:-1;;;28096:57:0;;9237:2:1;28096:57:0;;;9219:21:1;9276:2;9256:18;;;9249:30;9315:34;9295:18;;;9288:62;-1:-1:-1;;;9366:18:1;;;9359:31;9407:19;;28096:57:0;9035:397:1;28096:57:0;24412:10;-1:-1:-1;;;;;28188:21:0;;;;:62;;-1:-1:-1;28213:37:0;28230:5;24412:10;28961:164;:::i;28213:37::-;28166:168;;;;-1:-1:-1;;;28166:168:0;;9639:2:1;28166:168:0;;;9621:21:1;9678:2;9658:18;;;9651:30;9717:34;9697:18;;;9690:62;9788:26;9768:18;;;9761:54;9832:19;;28166:168:0;9437:420:1;28166:168:0;28347:21;28356:2;28360:7;28347:8;:21::i;:::-;28035:341;27965:411;;:::o;29192:339::-;29387:41;24412:10;29420:7;29387:18;:41::i;:::-;29379:103;;;;-1:-1:-1;;;29379:103:0;;;;;;;:::i;:::-;29495:28;29505:4;29511:2;29515:7;29495:9;:28::i;61254:277::-;60903:5;61389:2;61375:11;;:16;;;;:::i;:::-;:42;;61359:125;;;;-1:-1:-1;;;61359:125:0;;;;;;;:::i;:::-;61491:34;61507:3;61512:8;61522:2;61491:15;:34::i;48321:147::-;48002:7;48029:12;;;:6;:12;;;;;:22;;;46403:30;46414:4;24412:10;46403;:30::i;:::-;48435:25:::1;48446:4;48452:7;48435:10;:25::i;57501:281::-:0;57609:7;57652:23;57669:5;57652:16;:23::i;:::-;57644:5;:31;57628:108;;;;-1:-1:-1;;;57628:108:0;;11165:2:1;57628:108:0;;;11147:21:1;11204:2;11184:18;;;11177:30;11243:34;11223:18;;;11216:62;-1:-1:-1;;;11294:18:1;;;11287:41;11345:19;;57628:108:0;10963:407:1;57628:108:0;-1:-1:-1;;;;;;57750:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;57501:281::o;49369:218::-;-1:-1:-1;;;;;49465:23:0;;24412:10;49465:23;49457:83;;;;-1:-1:-1;;;49457:83:0;;11577:2:1;49457:83:0;;;11559:21:1;11616:2;11596:18;;;11589:30;11655:34;11635:18;;;11628:62;-1:-1:-1;;;11706:18:1;;;11699:45;11761:19;;49457:83:0;11375:411:1;49457:83:0;49553:26;49565:4;49571:7;49553:11;:26::i;:::-;49369:218;;:::o;61018:230::-;60903:5;61102:11;;61116:1;61102:15;;;;:::i;:::-;:41;;61086:124;;;;-1:-1:-1;;;61086:124:0;;;;;;;:::i;:::-;61217:25;61228:3;61233:8;61217:10;:25::i;29602:185::-;29740:39;29757:4;29763:2;29767:7;29740:39;;;;;;;;;;;;:16;:39::i;57090:335::-;57165:16;57193:18;57214:17;57224:6;57214:9;:17::i;:::-;57193:38;;57240:25;57282:10;57268:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57268:25:0;;57240:53;;57305:9;57300:98;57320:10;57316:1;:14;57300:98;;;57360:30;57380:6;57388:1;57360:19;:30::i;:::-;57346:8;57355:1;57346:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;57332:3;;;;:::i;:::-;;;;57300:98;;;-1:-1:-1;57411:8:0;57090:335;-1:-1:-1;;;57090:335:0:o;53669:151::-;53726:4;31785:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31785:16:0;:30;;53797:17;31696:127;53374:241;51823:29;46403:30;51823:29;24412:10;46403;:30::i;:::-;53501:51:::1;53516:10;53528;53540:11;53501:51;;;;;;;;:::i;:::-;;;;;;;;53585:24:::0;;::::1;::::0;:10:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;56080:226::-:0;56264:36;56278:3;56283:8;56293:2;56264:36;;;;;;;;;;;;:13;:36::i;26577:239::-;26649:7;26685:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26685:16:0;26720:19;26712:73;;;;-1:-1:-1;;;26712:73:0;;13810:2:1;26712:73:0;;;13792:21:1;13849:2;13829:18;;;13822:30;13888:34;13868:18;;;13861:62;-1:-1:-1;;;13939:18:1;;;13932:39;13988:19;;26712:73:0;13608:405:1;26307:208:0;26379:7;-1:-1:-1;;;;;26407:19:0;;26399:74;;;;-1:-1:-1;;;26399:74:0;;14220:2:1;26399:74:0;;;14202:21:1;14259:2;14239:18;;;14232:30;14298:34;14278:18;;;14271:62;-1:-1:-1;;;14349:18:1;;;14342:40;14399:19;;26399:74:0;14018:406:1;26399:74:0;-1:-1:-1;;;;;;26491:16:0;;;;;:9;:16;;;;;;;26307:208::o;40091:103::-;39513:6;;-1:-1:-1;;;;;39513:6:0;24412:10;39660:23;39652:68;;;;-1:-1:-1;;;39652:68:0;;14631:2:1;39652:68:0;;;14613:21:1;;;14650:18;;;14643:30;14709:34;14689:18;;;14682:62;14761:18;;39652:68:0;14429:356:1;39652:68:0;40156:30:::1;40183:1;40156:18;:30::i;:::-;40091:103::o:0;54477:620::-;-1:-1:-1;;;;;;;;;;;46403:30:0;51751:24;24412:10;46403;:30::i;:::-;54665:20:::1;54671:3;54676:8;54665:5;:20::i;:::-;-1:-1:-1::0;;;;;54774:14:0;::::1;5869:20:::0;5917:8;54770:322:::1;;54819:123;::::0;-1:-1:-1;;;54819:123:0;;54801:15:::1;::::0;-1:-1:-1;;;;;54819:37:0;::::1;::::0;::::1;::::0;:123:::1;::::0;54867:10:::1;::::0;54801:15;;54909:8;;54928:5;;54819:123:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54801:141:::0;-1:-1:-1;;;;;;;54971:58:0;::::1;-1:-1:-1::0;;;54971:58:0::1;54953:131;;;::::0;-1:-1:-1;;;54953:131:0;;15740:2:1;54953:131:0::1;::::0;::::1;15722:21:1::0;15779:2;15759:18;;;15752:30;15818:34;15798:18;;;15791:62;-1:-1:-1;;;15869:18:1;;;15862:31;15910:19;;54953:131:0::1;15538:397:1::0;54953:131:0::1;54792:300;54770:322;54477:620:::0;;;;:::o;46821:139::-;46899:4;46923:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;46923:29:0;;;;;;;;;;;;;;;46821:139::o;27052:104::-;27108:13;27141:7;27134:14;;;;;:::i;55151:172::-;55290:27;55299:3;55304:8;55290:27;;;;;;;;;;;;:8;:27::i;28735:155::-;28830:52;24412:10;28863:8;28873;28830:18;:52::i;55377:649::-;55586:28;55596:3;55601:8;55611:2;55586:9;:28::i;:::-;-1:-1:-1;;;;;55703:14:0;;5869:20;5917:8;55699:322;;55748:123;;-1:-1:-1;;;55748:123:0;;55730:15;;-1:-1:-1;;;;;55748:37:0;;;;;:123;;55796:10;;55730:15;;55838:8;;55857:5;;55748:123;;;:::i;29858:328::-;30033:41;24412:10;30066:7;30033:18;:41::i;:::-;30025:103;;;;-1:-1:-1;;;30025:103:0;;;;;;;:::i;:::-;30139:39;30153:4;30159:2;30163:7;30172:5;30139:13;:39::i;52531:403::-;31761:4;31785:16;;;:7;:16;;;;;;52629:13;;-1:-1:-1;;;;;31785:16:0;52654:97;;;;-1:-1:-1;;;52654:97:0;;16142:2:1;52654:97:0;;;16124:21:1;16181:2;16161:18;;;16154:30;16220:34;16200:18;;;16193:62;-1:-1:-1;;;16271:18:1;;;16264:45;16326:19;;52654:97:0;15940:411:1;52654:97:0;52760:21;52784:10;:8;:10::i;:::-;52760:34;;52839:1;52821:7;52815:21;:25;:113;;;;;;;;;;;;;;;;;52876:7;52885:18;:7;:16;:18::i;:::-;52859:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52815:113;52801:127;52531:403;-1:-1:-1;;;52531:403:0:o;48713:149::-;48002:7;48029:12;;;:6;:12;;;;;:22;;;46403:30;46414:4;24412:10;46403;:30::i;:::-;48828:26:::1;48840:4;48846:7;48828:11;:26::i;40349:201::-:0;39513:6;;-1:-1:-1;;;;;39513:6:0;24412:10;39660:23;39652:68;;;;-1:-1:-1;;;39652:68:0;;14631:2:1;39652:68:0;;;14613:21:1;;;14650:18;;;14643:30;14709:34;14689:18;;;14682:62;14761:18;;39652:68:0;14429:356:1;39652:68:0;-1:-1:-1;;;;;40438:22:0;::::1;40430:73;;;::::0;-1:-1:-1;;;40430:73:0;;17200:2:1;40430:73:0::1;::::0;::::1;17182:21:1::0;17239:2;17219:18;;;17212:30;17278:34;17258:18;;;17251:62;-1:-1:-1;;;17329:18:1;;;17322:36;17375:19;;40430:73:0::1;16998:402:1::0;40430:73:0::1;40514:28;40533:8;40514:18;:28::i;:::-;40349:201:::0;:::o;46525:204::-;46610:4;-1:-1:-1;;;;;;46634:47:0;;-1:-1:-1;;;46634:47:0;;:87;;;46685:36;46709:11;46685:23;:36::i;35678:174::-;35753:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35753:29:0;-1:-1:-1;;;;;35753:29:0;;;;;;;;:24;;35807:23;35753:24;35807:14;:23::i;:::-;-1:-1:-1;;;;;35798:46:0;;;;;;;;;;;35678:174;;:::o;31990:348::-;32083:4;31785:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31785:16:0;32100:73;;;;-1:-1:-1;;;32100:73:0;;17607:2:1;32100:73:0;;;17589:21:1;17646:2;17626:18;;;17619:30;17685:34;17665:18;;;17658:62;-1:-1:-1;;;17736:18:1;;;17729:42;17788:19;;32100:73:0;17405:408:1;32100:73:0;32184:13;32200:23;32215:7;32200:14;:23::i;:::-;32184:39;;32253:5;-1:-1:-1;;;;;32242:16:0;:7;-1:-1:-1;;;;;32242:16:0;;:51;;;;32286:7;-1:-1:-1;;;;;32262:31:0;:20;32274:7;32262:11;:20::i;:::-;-1:-1:-1;;;;;32262:31:0;;32242:51;:87;;;-1:-1:-1;;;;;;29082:25:0;;;29058:4;29082:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32297:32;32234:96;31990:348;-1:-1:-1;;;;31990:348:0:o;34982:578::-;35141:4;-1:-1:-1;;;;;35114:31:0;:23;35129:7;35114:14;:23::i;:::-;-1:-1:-1;;;;;35114:31:0;;35106:85;;;;-1:-1:-1;;;35106:85:0;;18020:2:1;35106:85:0;;;18002:21:1;18059:2;18039:18;;;18032:30;18098:34;18078:18;;;18071:62;-1:-1:-1;;;18149:18:1;;;18142:39;18198:19;;35106:85:0;17818:405:1;35106:85:0;-1:-1:-1;;;;;35210:16:0;;35202:65;;;;-1:-1:-1;;;35202:65:0;;18430:2:1;35202:65:0;;;18412:21:1;18469:2;18449:18;;;18442:30;18508:34;18488:18;;;18481:62;-1:-1:-1;;;18559:18:1;;;18552:34;18603:19;;35202:65:0;18228:400:1;35202:65:0;35280:39;35301:4;35307:2;35311:7;35280:20;:39::i;:::-;35384:29;35401:1;35405:7;35384:8;:29::i;:::-;-1:-1:-1;;;;;35426:15:0;;;;;;:9;:15;;;;;:20;;35445:1;;35426:15;:20;;35445:1;;35426:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35457:13:0;;;;;;:9;:13;;;;;:18;;35474:1;;35457:13;:18;;35474:1;;35457:18;:::i;:::-;;;;-1:-1:-1;;35486:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35486:21:0;-1:-1:-1;;;;;35486:21:0;;;;;;;;;35525:27;;35486:16;;35525:27;;;;;;;34982:578;;;:::o;54134:289::-;-1:-1:-1;;;;;;;;;;;46403:30:0;51751:24;24412:10;46403;:30::i;:::-;54275:2:::1;54260:11;;:17;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;54291:9:0::1;::::0;-1:-1:-1;54286:132:0::1;54310:2;54306:1;:6;54286:132;;;54386:24;54392:3:::0;54397:12:::1;54408:1:::0;54397:8;:12:::1;:::i;:::-;54386:5;:24::i;:::-;54314:3:::0;::::1;::::0;::::1;:::i;:::-;;;;54286:132;;47250:497:::0;47331:22;47339:4;47345:7;47331;:22::i;:::-;47326:414;;47519:41;47547:7;-1:-1:-1;;;;;47519:41:0;47557:2;47519:19;:41::i;:::-;47633:38;47661:4;47668:2;47633:19;:38::i;:::-;47424:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;47424:270:0;;;;;;;;;;-1:-1:-1;;;47370:358:0;;;;;;;:::i;50870:238::-;50954:22;50962:4;50968:7;50954;:22::i;:::-;50949:152;;50993:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;50993:29:0;;;;;;;;;:36;;-1:-1:-1;;50993:36:0;51025:4;50993:36;;;51076:12;24412:10;;24332:98;51076:12;-1:-1:-1;;;;;51049:40:0;51067:7;-1:-1:-1;;;;;51049:40:0;51061:4;51049:40;;;;;;;;;;50870:238;;:::o;51240:239::-;51324:22;51332:4;51338:7;51324;:22::i;:::-;51320:152;;;51395:5;51363:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;51363:29:0;;;;;;;;;;:37;;-1:-1:-1;;51363:37:0;;;51420:40;24412:10;;51363:12;;51420:40;;51395:5;51420:40;51240:239;;:::o;53874:206::-;-1:-1:-1;;;;;;;;;;;46403:30:0;51751:24;24412:10;46403;:30::i;:::-;53981:11:::1;:13:::0;;;:11:::1;:13;::::0;::::1;:::i;:::-;;;;;;54054:20;54060:3;54065:8;54054:5;:20::i;40710:191::-:0;40803:6;;;-1:-1:-1;;;;;40820:17:0;;;-1:-1:-1;;;;;;40820:17:0;;;;;;;40853:40;;40803:6;;;40820:17;40803:6;;40853:40;;40784:16;;40853:40;40773:128;40710:191;:::o;33674:382::-;-1:-1:-1;;;;;33754:16:0;;33746:61;;;;-1:-1:-1;;;33746:61:0;;19756:2:1;33746:61:0;;;19738:21:1;;;19775:18;;;19768:30;19834:34;19814:18;;;19807:62;19886:18;;33746:61:0;19554:356:1;33746:61:0;31761:4;31785:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31785:16:0;:30;33818:58;;;;-1:-1:-1;;;33818:58:0;;20117:2:1;33818:58:0;;;20099:21:1;20156:2;20136:18;;;20129:30;20195;20175:18;;;20168:58;20243:18;;33818:58:0;19915:352:1;33818:58:0;33889:45;33918:1;33922:2;33926:7;33889:20;:45::i;:::-;-1:-1:-1;;;;;33947:13:0;;;;;;:9;:13;;;;;:18;;33964:1;;33947:13;:18;;33964:1;;33947:18;:::i;:::-;;;;-1:-1:-1;;33976:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33976:21:0;-1:-1:-1;;;;;33976:21:0;;;;;;;;34015:33;;33976:16;;;34015:33;;33976:16;;34015:33;33674:382;;:::o;35994:315::-;36149:8;-1:-1:-1;;;;;36140:17:0;:5;-1:-1:-1;;;;;36140:17:0;;;36132:55;;;;-1:-1:-1;;;36132:55:0;;20474:2:1;36132:55:0;;;20456:21:1;20513:2;20493:18;;;20486:30;20552:27;20532:18;;;20525:55;20597:18;;36132:55:0;20272:349:1;36132:55:0;-1:-1:-1;;;;;36198:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36198:46:0;;;;;;;;;;36260:41;;540::1;;;36260::0;;513:18:1;36260:41:0;;;;;;;35994:315;;;:::o;31068:::-;31225:28;31235:4;31241:2;31245:7;31225:9;:28::i;:::-;31272:48;31295:4;31301:2;31305:7;31314:5;31272:22;:48::i;:::-;31264:111;;;;-1:-1:-1;;;31264:111:0;;;;;;;:::i;52420:105::-;52480:13;52509:10;52502:17;;;;;:::i;21894:723::-;21950:13;22171:10;22167:53;;-1:-1:-1;;22198:10:0;;;;;;;;;;;;-1:-1:-1;;;22198:10:0;;;;;21894:723::o;22167:53::-;22245:5;22230:12;22286:78;22293:9;;22286:78;;22319:8;;;;:::i;:::-;;-1:-1:-1;22342:10:0;;-1:-1:-1;22350:2:0;22342:10;;:::i;:::-;;;22286:78;;;22374:19;22406:6;22396:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22396:17:0;;22374:39;;22424:154;22431:10;;22424:154;;22458:11;22468:1;22458:11;;:::i;:::-;;-1:-1:-1;22527:10:0;22535:2;22527:5;:10;:::i;:::-;22514:24;;:2;:24;:::i;:::-;22501:39;;22484:6;22491;22484:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;22484:56:0;;;;;;;;-1:-1:-1;22555:11:0;22564:2;22555:11;;:::i;:::-;;;22424:154;;25938:305;26040:4;-1:-1:-1;;;;;;26077:40:0;;-1:-1:-1;;;26077:40:0;;:105;;-1:-1:-1;;;;;;;26134:48:0;;-1:-1:-1;;;26134:48:0;26077:105;:158;;;-1:-1:-1;;;;;;;;;;21474:40:0;;;26199:36;21365:157;60385:358;-1:-1:-1;;;;;60569:18:0;;;60565:88;;60598:47;60631:4;60637:7;60598:32;:47::i;:::-;-1:-1:-1;;;;;60663:16:0;;;60659:79;;60690:40;60718:2;60722:7;60690:27;:40::i;23195:451::-;23270:13;23296:19;23328:10;23332:6;23328:1;:10;:::i;:::-;:14;;23341:1;23328:14;:::i;:::-;23318:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23318:25:0;;23296:47;;-1:-1:-1;;;23354:6:0;23361:1;23354:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;23354:15:0;;;;;;;;;-1:-1:-1;;;23380:6:0;23387:1;23380:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;23380:15:0;;;;;;;;-1:-1:-1;23411:9:0;23423:10;23427:6;23423:1;:10;:::i;:::-;:14;;23436:1;23423:14;:::i;:::-;23411:26;;23406:135;23443:1;23439;:5;23406:135;;;-1:-1:-1;;;23491:5:0;23499:3;23491:11;23478:25;;;;;;;:::i;:::-;;;;23466:6;23473:1;23466:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;23466:37:0;;;;;;;;-1:-1:-1;23528:1:0;23518:11;;;;;23446:3;;;:::i;:::-;;;23406:135;;;-1:-1:-1;23559:10:0;;23551:55;;;;-1:-1:-1;;;23551:55:0;;21935:2:1;23551:55:0;;;21917:21:1;;;21954:18;;;21947:30;22013:34;21993:18;;;21986:62;22065:18;;23551:55:0;21733:356:1;36874:799:0;37029:4;-1:-1:-1;;;;;37050:13:0;;5869:20;5917:8;37046:620;;37086:72;;-1:-1:-1;;;37086:72:0;;-1:-1:-1;;;;;37086:36:0;;;;;:72;;24412:10;;37137:4;;37143:7;;37152:5;;37086:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37086:72:0;;;;;;;;-1:-1:-1;;37086:72:0;;;;;;;;;;;;:::i;:::-;;;37082:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37328:13:0;;37324:272;;37371:60;;-1:-1:-1;;;37371:60:0;;;;;;;:::i;37324:272::-;37546:6;37540:13;37531:6;37527:2;37523:15;37516:38;37082:529;-1:-1:-1;;;;;;37209:51:0;-1:-1:-1;;;37209:51:0;;-1:-1:-1;37202:58:0;;37046:620;-1:-1:-1;37650:4:0;36874:799;;;;;;:::o;58870:934::-;59130:22;59180:1;59155:22;59172:4;59155:16;:22::i;:::-;:26;;;;:::i;:::-;59188:18;59209:26;;;:17;:26;;;;;;59130:51;;-1:-1:-1;59334:28:0;;;59330:306;;-1:-1:-1;;;;;59395:18:0;;59373:19;59395:18;;;:12;:18;;;;;;;;:34;;;;;;;;;59440:30;;;;;;:44;;;59551:30;;:17;:30;;;;;:43;;;59330:306;-1:-1:-1;59724:26:0;;;;:17;:26;;;;;;;;59717:33;;;-1:-1:-1;;;;;59764:18:0;;;;;:12;:18;;;;;:34;;;;;;;59757:41;58870:934::o;58054:207::-;58135:14;58152:20;58169:2;58152:16;:20::i;:::-;-1:-1:-1;;;;;58179:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;58220:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;58054:207:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;747:258::-;819:1;829:113;843:6;840:1;837:13;829:113;;;919:11;;;913:18;900:11;;;893:39;865:2;858:10;829:113;;;960:6;957:1;954:13;951:48;;;-1:-1:-1;;995:1:1;977:16;;970:27;747:258::o;1010:::-;1052:3;1090:5;1084:12;1117:6;1112:3;1105:19;1133:63;1189:6;1182:4;1177:3;1173:14;1166:4;1159:5;1155:16;1133:63;:::i;:::-;1250:2;1229:15;-1:-1:-1;;1225:29:1;1216:39;;;;1257:4;1212:50;;1010:258;-1:-1:-1;;1010:258:1:o;1273:220::-;1422:2;1411:9;1404:21;1385:4;1442:45;1483:2;1472:9;1468:18;1460:6;1442:45;:::i;1498:180::-;1557:6;1610:2;1598:9;1589:7;1585:23;1581:32;1578:52;;;1626:1;1623;1616:12;1578:52;-1:-1:-1;1649:23:1;;1498:180;-1:-1:-1;1498:180:1:o;1891:173::-;1959:20;;-1:-1:-1;;;;;2008:31:1;;1998:42;;1988:70;;2054:1;2051;2044:12;1988:70;1891:173;;;:::o;2069:254::-;2137:6;2145;2198:2;2186:9;2177:7;2173:23;2169:32;2166:52;;;2214:1;2211;2204:12;2166:52;2237:29;2256:9;2237:29;:::i;:::-;2227:39;2313:2;2298:18;;;;2285:32;;-1:-1:-1;;;2069:254:1:o;2510:328::-;2587:6;2595;2603;2656:2;2644:9;2635:7;2631:23;2627:32;2624:52;;;2672:1;2669;2662:12;2624:52;2695:29;2714:9;2695:29;:::i;:::-;2685:39;;2743:38;2777:2;2766:9;2762:18;2743:38;:::i;:::-;2733:48;;2828:2;2817:9;2813:18;2800:32;2790:42;;2510:328;;;;;:::o;3210:322::-;3287:6;3295;3303;3356:2;3344:9;3335:7;3331:23;3327:32;3324:52;;;3372:1;3369;3362:12;3324:52;3395:29;3414:9;3395:29;:::i;:::-;3385:39;3471:2;3456:18;;3443:32;;-1:-1:-1;3522:2:1;3507:18;;;3494:32;;3210:322;-1:-1:-1;;;3210:322:1:o;3537:254::-;3605:6;3613;3666:2;3654:9;3645:7;3641:23;3637:32;3634:52;;;3682:1;3679;3672:12;3634:52;3718:9;3705:23;3695:33;;3747:38;3781:2;3770:9;3766:18;3747:38;:::i;:::-;3737:48;;3537:254;;;;;:::o;3796:186::-;3855:6;3908:2;3896:9;3887:7;3883:23;3879:32;3876:52;;;3924:1;3921;3914:12;3876:52;3947:29;3966:9;3947:29;:::i;3987:632::-;4158:2;4210:21;;;4280:13;;4183:18;;;4302:22;;;4129:4;;4158:2;4381:15;;;;4355:2;4340:18;;;4129:4;4424:169;4438:6;4435:1;4432:13;4424:169;;;4499:13;;4487:26;;4568:15;;;;4533:12;;;;4460:1;4453:9;4424:169;;;-1:-1:-1;4610:3:1;;3987:632;-1:-1:-1;;;;;;3987:632:1:o;4624:127::-;4685:10;4680:3;4676:20;4673:1;4666:31;4716:4;4713:1;4706:15;4740:4;4737:1;4730:15;4756:632;4821:5;4851:18;4892:2;4884:6;4881:14;4878:40;;;4898:18;;:::i;:::-;4973:2;4967:9;4941:2;5027:15;;-1:-1:-1;;5023:24:1;;;5049:2;5019:33;5015:42;5003:55;;;5073:18;;;5093:22;;;5070:46;5067:72;;;5119:18;;:::i;:::-;5159:10;5155:2;5148:22;5188:6;5179:15;;5218:6;5210;5203:22;5258:3;5249:6;5244:3;5240:16;5237:25;5234:45;;;5275:1;5272;5265:12;5234:45;5325:6;5320:3;5313:4;5305:6;5301:17;5288:44;5380:1;5373:4;5364:6;5356;5352:19;5348:30;5341:41;;;;4756:632;;;;;:::o;5393:451::-;5462:6;5515:2;5503:9;5494:7;5490:23;5486:32;5483:52;;;5531:1;5528;5521:12;5483:52;5571:9;5558:23;5604:18;5596:6;5593:30;5590:50;;;5636:1;5633;5626:12;5590:50;5659:22;;5712:4;5704:13;;5700:27;-1:-1:-1;5690:55:1;;5741:1;5738;5731:12;5690:55;5764:74;5830:7;5825:2;5812:16;5807:2;5803;5799:11;5764:74;:::i;5849:221::-;5891:5;5944:3;5937:4;5929:6;5925:17;5921:27;5911:55;;5962:1;5959;5952:12;5911:55;5984:80;6060:3;6051:6;6038:20;6031:4;6023:6;6019:17;5984:80;:::i;6075:462::-;6161:6;6169;6177;6230:2;6218:9;6209:7;6205:23;6201:32;6198:52;;;6246:1;6243;6236:12;6198:52;6269:29;6288:9;6269:29;:::i;:::-;6259:39;;6345:2;6334:9;6330:18;6317:32;6307:42;;6400:2;6389:9;6385:18;6372:32;6427:18;6419:6;6416:30;6413:50;;;6459:1;6456;6449:12;6413:50;6482:49;6523:7;6514:6;6503:9;6499:22;6482:49;:::i;:::-;6472:59;;;6075:462;;;;;:::o;6542:347::-;6607:6;6615;6668:2;6656:9;6647:7;6643:23;6639:32;6636:52;;;6684:1;6681;6674:12;6636:52;6707:29;6726:9;6707:29;:::i;:::-;6697:39;;6786:2;6775:9;6771:18;6758:32;6833:5;6826:13;6819:21;6812:5;6809:32;6799:60;;6855:1;6852;6845:12;6799:60;6878:5;6868:15;;;6542:347;;;;;:::o;6894:531::-;6989:6;6997;7005;7013;7066:3;7054:9;7045:7;7041:23;7037:33;7034:53;;;7083:1;7080;7073:12;7034:53;7106:29;7125:9;7106:29;:::i;:::-;7096:39;;7182:2;7171:9;7167:18;7154:32;7144:42;;7233:2;7222:9;7218:18;7205:32;7195:42;;7288:2;7277:9;7273:18;7260:32;7315:18;7307:6;7304:30;7301:50;;;7347:1;7344;7337:12;7301:50;7370:49;7411:7;7402:6;7391:9;7387:22;7370:49;:::i;:::-;7360:59;;;6894:531;;;;;;;:::o;7430:537::-;7525:6;7533;7541;7549;7602:3;7590:9;7581:7;7577:23;7573:33;7570:53;;;7619:1;7616;7609:12;7570:53;7642:29;7661:9;7642:29;:::i;:::-;7632:39;;7690:38;7724:2;7713:9;7709:18;7690:38;:::i;:::-;7680:48;;7775:2;7764:9;7760:18;7747:32;7737:42;;7830:2;7819:9;7815:18;7802:32;7857:18;7849:6;7846:30;7843:50;;;7889:1;7886;7879:12;7972:260;8040:6;8048;8101:2;8089:9;8080:7;8076:23;8072:32;8069:52;;;8117:1;8114;8107:12;8069:52;8140:29;8159:9;8140:29;:::i;:::-;8130:39;;8188:38;8222:2;8211:9;8207:18;8188:38;:::i;8237:380::-;8316:1;8312:12;;;;8359;;;8380:61;;8434:4;8426:6;8422:17;8412:27;;8380:61;8487:2;8479:6;8476:14;8456:18;8453:38;8450:161;;;8533:10;8528:3;8524:20;8521:1;8514:31;8568:4;8565:1;8558:15;8596:4;8593:1;8586:15;8450:161;;8237:380;;;:::o;9862:413::-;10064:2;10046:21;;;10103:2;10083:18;;;10076:30;10142:34;10137:2;10122:18;;10115:62;-1:-1:-1;;;10208:2:1;10193:18;;10186:47;10265:3;10250:19;;9862:413::o;10280:127::-;10341:10;10336:3;10332:20;10329:1;10322:31;10372:4;10369:1;10362:15;10396:4;10393:1;10386:15;10412:128;10452:3;10483:1;10479:6;10476:1;10473:13;10470:39;;;10489:18;;:::i;:::-;-1:-1:-1;10525:9:1;;10412:128::o;10545:413::-;10747:2;10729:21;;;10786:2;10766:18;;;10759:30;10825:34;10820:2;10805:18;;10798:62;-1:-1:-1;;;10891:2:1;10876:18;;10869:47;10948:3;10933:19;;10545:413::o;11791:127::-;11852:10;11847:3;11843:20;11840:1;11833:31;11883:4;11880:1;11873:15;11907:4;11904:1;11897:15;11923:135;11962:3;-1:-1:-1;;11983:17:1;;11980:43;;;12003:18;;:::i;:::-;-1:-1:-1;12050:1:1;12039:13;;11923:135::o;12189:1414::-;12440:1;12436;12431:3;12427:11;12423:19;12415:6;12411:32;12400:9;12393:51;12374:4;12463:2;12501;12496;12485:9;12481:18;12474:30;12524:1;12557:6;12551:13;12587:3;12609:1;12637:9;12633:2;12629:18;12619:28;;12697:2;12686:9;12682:18;12719;12709:61;;12763:4;12755:6;12751:17;12741:27;;12709:61;12816:2;12808:6;12805:14;12785:18;12782:38;12779:165;;;-1:-1:-1;;;12843:33:1;;12899:4;12896:1;12889:15;12929:4;12850:3;12917:17;12779:165;13015:2;13000:18;;679:19;;;722:14;;;13043:18;13070:100;;;;13184:1;13179:315;;;;13036:458;;13070:100;-1:-1:-1;;13103:24:1;;13091:37;;13148:12;;;;-1:-1:-1;13070:100:1;;13179:315;12136:1;12129:14;;;12173:4;12160:18;;13274:1;13288:165;13302:6;13299:1;13296:13;13288:165;;;13380:14;;13367:11;;;13360:35;13423:16;;;;13317:10;;13288:165;;;13473:11;;;-1:-1:-1;;13036:458:1;;;;;;;13539:9;13534:3;13530:19;13525:2;13514:9;13510:18;13503:47;13567:30;13593:3;13585:6;13567:30;:::i;:::-;13559:38;12189:1414;-1:-1:-1;;;;;;;12189:1414:1:o;14790:489::-;-1:-1:-1;;;;;15059:15:1;;;15041:34;;15111:15;;15106:2;15091:18;;15084:43;15158:2;15143:18;;15136:34;;;15206:3;15201:2;15186:18;;15179:31;;;14984:4;;15227:46;;15253:19;;15245:6;15227:46;:::i;:::-;15219:54;14790:489;-1:-1:-1;;;;;;14790:489:1:o;15284:249::-;15353:6;15406:2;15394:9;15385:7;15381:23;15377:32;15374:52;;;15422:1;15419;15412:12;15374:52;15454:9;15448:16;15473:30;15497:5;15473:30;:::i;16356:637::-;16636:3;16674:6;16668:13;16690:53;16736:6;16731:3;16724:4;16716:6;16712:17;16690:53;:::i;:::-;16806:13;;16765:16;;;;16828:57;16806:13;16765:16;16862:4;16850:17;;16828:57;:::i;:::-;-1:-1:-1;;;16907:20:1;;16936:22;;;16985:1;16974:13;;16356:637;-1:-1:-1;;;;16356:637:1:o;18633:125::-;18673:4;18701:1;18698;18695:8;18692:34;;;18706:18;;:::i;:::-;-1:-1:-1;18743:9:1;;18633:125::o;18763:786::-;19174:25;19169:3;19162:38;19144:3;19229:6;19223:13;19245:62;19300:6;19295:2;19290:3;19286:12;19279:4;19271:6;19267:17;19245:62;:::i;:::-;-1:-1:-1;;;19366:2:1;19326:16;;;19358:11;;;19351:40;19416:13;;19438:63;19416:13;19487:2;19479:11;;19472:4;19460:17;;19438:63;:::i;:::-;19521:17;19540:2;19517:26;;18763:786;-1:-1:-1;;;;18763:786:1:o;20626:414::-;20828:2;20810:21;;;20867:2;20847:18;;;20840:30;20906:34;20901:2;20886:18;;20879:62;-1:-1:-1;;;20972:2:1;20957:18;;20950:48;21030:3;21015:19;;20626:414::o;21045:127::-;21106:10;21101:3;21097:20;21094:1;21087:31;21137:4;21134:1;21127:15;21161:4;21158:1;21151:15;21177:120;21217:1;21243;21233:35;;21248:18;;:::i;:::-;-1:-1:-1;21282:9:1;;21177:120::o;21302:112::-;21334:1;21360;21350:35;;21365:18;;:::i;:::-;-1:-1:-1;21399:9:1;;21302:112::o;21419:168::-;21459:7;21525:1;21521;21517:6;21513:14;21510:1;21507:21;21502:1;21495:9;21488:17;21484:45;21481:71;;;21532:18;;:::i;:::-;-1:-1:-1;21572:9:1;;21419:168::o;21592:136::-;21631:3;21659:5;21649:39;;21668:18;;:::i;:::-;-1:-1:-1;;;21704:18:1;;21592:136::o

Swarm Source

ipfs://aee00d49435214a00dfadcbe46abca3ef215b40019cb48a35defe85781ffd4d4
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.