ETH Price: $2,407.11 (+1.45%)

Token

Meta Hooligans (MH)
 

Overview

Max Total Supply

3,333 MH

Holders

759

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 MH
0x5cadccfd488e2b919596e2430a7ec3a6cc1cf2ea
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
MhNFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-17
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

/**
 * @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);
    }
}

/**
 * @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;
    }
}

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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);
            }
        }
    }
}

/**
 * @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);
}

/**
 * @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);
}

/**
 * @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;
    }
}

/**
 * @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;
}

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

/**
 * @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);
}

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

contract MhNFT is ERC721A {
    using Strings for uint256;

    string public baseURI; //base url of the token uri
    address public owner; // owner of the contract
    uint256 public mintPrice; // normal mint price
    uint256 public maxSupply; //maximum supply
    bool public isMintActive;

    // reveal related variables
    bool public isRevealed;
    string public placeholderURI; // placeholder uri when unrevealed

    // Payment
    uint256 private maxShares;
    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    uint256 private _totalShares;
    uint256 private _totalReleased;
    address[] private _activeShareAddresses;
    bool private _lockedShares;

    // Mint
    uint256 public maxBatch;
    uint256 public publicMintable;

    // Staking
    mapping(uint256 => bool) private _staking;

    constructor(string memory _baseUri, string memory _placeholderURI) ERC721A("Meta Hooligans", "MH") {
        //init variables
        maxShares = 1000;
        owner = msg.sender;
        maxSupply = 8888;

        maxBatch = 11;

        // Second round of tokens
        mintPrice = 0.15 ether;
        isMintActive = false;
        publicMintable = 1500;

        // Max reserved tokens for owner
        _setAux(owner, 888);
        baseURI = _baseUri;
        placeholderURI = _placeholderURI;

        // Prep initial Payees
        _totalShares = maxShares;
        
        // A
        _shares[address(0xcc39e35310Cfd6288B1207F17c35Fb286dF31cCb)] = 125;
        _activeShareAddresses.push(address(0xcc39e35310Cfd6288B1207F17c35Fb286dF31cCb));

        // I
        _shares[address(0x91fec88ACf5951d76ABbb6f0C49e539499eB40fe)] = 40;
        _activeShareAddresses.push(address(0x91fec88ACf5951d76ABbb6f0C49e539499eB40fe));

        // D
        _shares[address(0x230a9d302205c8Ea21cC51834EcA3cBFCEEDB3Fb)] = 420;
        _activeShareAddresses.push(address(0x230a9d302205c8Ea21cC51834EcA3cBFCEEDB3Fb));

        // B
        _shares[address(0x00b08925e0FbE084329D0695c246676318E1030F)] = 415;
        _activeShareAddresses.push(address(0x00b08925e0FbE084329D0695c246676318E1030F));

        // // Donations
        // _shares[address(0xE4838f37145f4066714867E224D16050441fAcA6)] = 0;
        // _activeShareAddresses.push(address(0xE4838f37145f4066714867E224D16050441fAcA6));

        // // Marketing
        // _shares[address(0x8C32aA65108b8efE92A436D97e573330AdaDd5F0)] = 0;
        // _activeShareAddresses.push(address(0x8C32aA65108b8efE92A436D97e573330AdaDd5F0));
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    ///////////////////////////////////////////////
    // owner related
    ///////////////////////////////////////////////
    modifier ownerOnly () {
        require(msg.sender == owner, "Only owner");
        _;
    }

    function setOwner(address _owner) external ownerOnly{
        owner = _owner;
    }
    function withdrawAll() public ownerOnly {
        uint256 balance = address(this).balance;
        require(balance > 0, "Nothing to withdraw");
        _released[msg.sender] += balance; 
        _totalReleased += balance;
        payable(msg.sender).transfer(balance);
    }
    function withdrawToAddress(address _address) public ownerOnly {
        require(_address != address(0), "Cannot be address 0");
        require(_address != address(this), "Cannot be address the contract");
        uint256 balance = address(this).balance;
        require(balance > 0, "Nothing to withdraw");
        _released[msg.sender] += balance; 
        _totalReleased += balance;
        payable(msg.sender).transfer(balance);
    }
    function withdraw() public ownerOnly {
        require(_activeShareAddresses.length > 0, "No shares to process");
        uint256 balance = address(this).balance;
        require(balance > 0, "Nothing to withdraw");
        uint256 remainingBalance = balance;
        for(uint256 i=0; i<_activeShareAddresses.length; i++){
            uint256 shareBalance = 0;
            if(i == _activeShareAddresses.length-1){
                shareBalance = remainingBalance;
            } else {
                shareBalance = _shares[_activeShareAddresses[i]] * balance / _totalShares;
            }
            require(shareBalance > 0, "Error splitting shares");
            _released[_activeShareAddresses[i]] += shareBalance;
            _totalReleased += shareBalance;
            remainingBalance -= shareBalance;
            payable(_activeShareAddresses[i]).transfer(shareBalance);
        }
    }
    function ownerMintable() public ownerOnly view returns (uint64) {
        return _getAux(msg.sender);
    }

    ///////////////////////////////////////////////
    // payment related
    ///////////////////////////////////////////////
    receive() external payable { }
    function addPayee(address _address, uint256 _sharesToGive) external ownerOnly {
        require(!_lockedShares, "Shares are locked");
        require(_totalShares + _sharesToGive <= maxShares, "Cannot exceed 100% shares");
        require(_shares[_address] == 0, "Shares already exist for payee");
        
        _shares[_address] = _sharesToGive;
        _totalShares += _sharesToGive;
        _activeShareAddresses.push(_address);
    }
    function removePayee(address _address) external ownerOnly {
        require(!_lockedShares, "Shares are locked");
        require(_shares[_address] > 0, "Not a payee");
        _totalShares -= _shares[_address];
        _shares[_address] = 0;

        address[] memory newArray = new address[](_activeShareAddresses.length-1);
        uint256 count = 0;
        for(uint256 i=0; i < _activeShareAddresses.length; i++){
            if(_activeShareAddresses[i] != _address){
                newArray[count] = _activeShareAddresses[i];
                count += 1;
            }
        }

        _activeShareAddresses = newArray;
    }
    function modifyPayee(address _address, uint256 _sharesToGive) external ownerOnly {
        require(!_lockedShares, "Shares are locked");
        require(_shares[_address] > 0, "Not a payee");
        require(_sharesToGive > 0, "Shares has to greather than 0");
        require(_totalShares - _shares[_address] + _sharesToGive <= maxShares, "Shares cannot exceed 100");
        
        _totalShares = _totalShares - _shares[_address] + _sharesToGive;
        _shares[_address] = _sharesToGive;
    }
    function shares() public view returns (uint) {
        if(msg.sender == owner){
            return maxShares;
        }
        return _shares[msg.sender];
    }
    function released() public view returns (uint) {
        return _released[msg.sender];
    }
    function totalShares() public ownerOnly view returns (uint) {
        return _totalShares;
    }
    function releasedForAddress(address _address) public ownerOnly view returns (uint) {
        return _released[_address];
    }
    function sharesForAddress(address _address) public ownerOnly view returns (uint) {
        if(_address == owner){
            return maxShares;
        }
        return _shares[_address];
    }
    function lockShares() public ownerOnly {
        _lockedShares = true;
    }

    ///////////////////////////////////////////////
    // base url related
    ///////////////////////////////////////////////
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    function setBaseURI(string memory uri) public ownerOnly{
        baseURI = uri;
    }
    function setIsRevealed(bool _isRevealed) public ownerOnly{
        isRevealed=_isRevealed;
    }
    function setPlaceholderUri(string memory uri) public ownerOnly{
        placeholderURI = uri;
    }
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        if(!isRevealed){
            return bytes(placeholderURI).length !=0 ? string(abi.encodePacked(placeholderURI)) : '';
        } else {
            return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
        }
    }

    ///////////////////////////////////////////////
    // mint related
    ///////////////////////////////////////////////
    event TokenMinted(uint256);
    event TokenAirDropped(address, uint256);

    function setPublicMintable(uint256 _amount) external ownerOnly {
        require(_amount + totalSupply() + ownerMintable() <= maxSupply, "Cannot be more than max");
        publicMintable = _amount;
    }
    function setPublicMintableWithPrice(uint256 _amount, uint256 _price) external ownerOnly {
        require(_amount + totalSupply() <= maxSupply, "Cannot be more than max");
        publicMintable = _amount;
        mintPrice = _price;
    }
    function setMaxMintBatch(uint256 _amount) external ownerOnly {
        require(_amount > 0, "Needs to be more than 0");
        maxBatch = _amount;
    }
    function setMintPrice(uint256 _price) external ownerOnly{
        mintPrice = _price;
    }
    function setMintActive(bool _active) external ownerOnly{
        isMintActive = _active;
    }
    function mint(uint64 _amount) external payable {
        // Owner with value or public mints
        if(msg.sender != owner || msg.value > 0){
            require(isMintActive, "Public mint is not active");
            require(mintPrice > 0, "Public mint price is not set");
            require(_amount <= maxBatch, "Cannot mint more than maxBatch");
            require(publicMintable - _amount >= 0, "Not enough tokens available for public");
            require(msg.value >= mintPrice * _amount, "Price is not met");
            publicMintable = publicMintable - _amount;
        }

        // Owner reserved tokens
        if(msg.sender == owner && msg.value == 0) {
            // Is owner
            uint64 ownerMintableTokens = ownerMintable();
            require(ownerMintableTokens >= _amount , "Not enough token left for owner");
            _setAux(owner, ownerMintableTokens - _amount);
        }

        _safeMint(msg.sender, _amount);
    }
    ///////////////////////////////////////////////
    // Stake functionality with overrides
    ///////////////////////////////////////////////
    event Stake(uint256 indexed tokenId);
    event UnStake(uint256 indexed tokenId);

    function stake(uint256 tokenId) public {
        require(ownerOf(tokenId) == msg.sender, "Only owner of token can stake");
        require(_staking[tokenId] == false, "Token already staking");
        _staking[tokenId] = true;

        emit Stake(tokenId);
    }
    function unstake(uint256 tokenId) public {
        require(ownerOf(tokenId) == msg.sender, "Only owner of token can unstake");
        require(_staking[tokenId] == true, "Token not staking");
        _staking[tokenId] = false;

         emit UnStake(tokenId);
    }
    function isStaking(uint256 tokenId) public view returns (bool) {
        return _staking[tokenId];
    }

    ///////////////////////////////////////////////
    // Transfers
    ///////////////////////////////////////////////
    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        require(isStaking(tokenId) == false, "Token is staking");
        ERC721A.transferFrom(from, to, tokenId);
    }
    function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
        require(isStaking(tokenId) == false, "Token is staking");
        ERC721A.safeTransferFrom(from, to, tokenId, "");
    }
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
        require(isStaking(tokenId) == false, "Token is staking");
        ERC721A.safeTransferFrom(from, to, tokenId, _data);
    }
    function approve(address to, uint256 tokenId) public override {
        require(isStaking(tokenId) == false, "Token is staking");
        ERC721A.approve(to, tokenId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"},{"internalType":"string","name":"_placeholderURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"AuxQueryForZeroAddress","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Stake","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"TokenAirDropped","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"TokenMinted","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"UnStake","type":"event"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_sharesToGive","type":"uint256"}],"name":"addPayee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isStaking","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockShares","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxBatch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"_amount","type":"uint64"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_sharesToGive","type":"uint256"}],"name":"modifyPayee","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":[],"name":"ownerMintable","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"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":"placeholderURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"releasedForAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removePayee","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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isRevealed","type":"bool"}],"name":"setIsRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxMintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_active","type":"bool"}],"name":"setMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"setOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setPlaceholderUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setPublicMintable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicMintableWithPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"sharesForAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"stake","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":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"tokenId","type":"uint256"}],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"withdrawToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b506040516200371138038062003711833981016040819052620000349162000457565b6040518060400160405280600e81526020016d4d65746120486f6f6c6967616e7360901b8152506040518060400160405280600281526020016109a960f31b81525081600290805190602001906200008e929190620002fe565b508051620000a4906003906020840190620002fe565b50600160005550506103e8600e55600980546001600160a01b031916339081179091556122b8600b908155601555670214e8348c4f0000600a55600c805460ff191690556105dc601655620000fc9061037862000297565b815162000111906008906020850190620002fe565b5080516200012790600d906020840190620002fe565b5050600e5460115550600f602052607d7f1ca8959b02be85bed2533bf7dbc6bf3ca51f73fb38502cfddd2ab12ef2fa82c25560138054600181810183557f66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a09091820180546001600160a01b031990811673cc39e35310cfd6288b1207f17c35fb286df31ccb1790915560287fe58cfaa97457e5460517502b5739547d1240f7524b10243fd1fd6e5db128aa7555835480830185558301805482167391fec88acf5951d76abbb6f0c49e539499eb40fe1790556101a47fdfbc6386c8b0820eb9f337ef49ca8abaa11c57e4efa9dc5f787c57c63dd1bf74558354808301855583018054821673230a9d302205c8ea21cc51834eca3cbfceedb3fb17905561019f7f62ae4c4c039a44fd759431541edfd44b072ae5448792391e20f10607686819ad558354918201845560009390935201805490911672b08925e0fbe084329d0695c246676318e1030f17905562000511565b6001600160a01b038216620002bf5760405163561b93dd60e11b815260040160405180910390fd5b6001600160a01b03909116600090815260056020526040902080546001600160401b03909216600160c01b026001600160c01b03909216919091179055565b8280546200030c90620004be565b90600052602060002090601f0160209004810192826200033057600085556200037b565b82601f106200034b57805160ff19168380011785556200037b565b828001600101855582156200037b579182015b828111156200037b5782518255916020019190600101906200035e565b50620003899291506200038d565b5090565b5b808211156200038957600081556001016200038e565b600082601f830112620003b5578081fd5b81516001600160401b0380821115620003d257620003d2620004fb565b604051601f8301601f19908116603f01168101908282118183101715620003fd57620003fd620004fb565b8160405283815260209250868385880101111562000419578485fd5b8491505b838210156200043c57858201830151818301840152908201906200041d565b838211156200044d57848385830101525b9695505050505050565b600080604083850312156200046a578182fd5b82516001600160401b038082111562000481578384fd5b6200048f86838701620003a4565b93506020850151915080821115620004a5578283fd5b50620004b485828601620003a4565b9150509250929050565b600181811c90821680620004d357607f821691505b60208210811415620004f557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6131f080620005216000396000f3fe6080604052600436106102b25760003560e01c806361a5477a11610175578063a22cb465116100dc578063c87b56dd11610095578063e985e9c51161006f578063e985e9c514610832578063ee1cc9441461087b578063f4a0a5281461089b578063fb9d09c8146108bb57600080fd5b8063c87b56dd146107dc578063d5abeb01146107fc578063dc6d11891461081257600080fd5b8063a22cb46514610727578063a5805c6d14610747578063a694fc3a14610767578063a92bd72c14610787578063b75c2068146107a7578063b88d4fde146107bc57600080fd5b806370a082311161012e57806370a08231146106865780637313cba9146106a6578063853828b6146106bb5780638da5cb5b146106d057806395d89b41146106f0578063961325211461070557600080fd5b806361a5477a146105e55780636352211e1461060557806367765b87146106255780636817c76c1461063b5780636afd4ba2146106515780636c0360eb1461067157600080fd5b80632ea3916a1161021957806342842e0e116101d257806342842e0e1461051c578063451ea5631461053c57806349a5980a1461056c57806354214f691461058c57806355f804b3146105ab5780635b92ac0d146105cb57600080fd5b80632ea3916a1461046f57806330b4e61e1461049c57806337827e70146104b25780633a98ef39146104d25780633ccfd60b146104e75780633ed35855146104fc57600080fd5b80630f31c1eb1161026b5780630f31c1eb146103b257806313af4035146103d257806318160ddd146103f257806318f9b0231461040f57806323b872dd1461042f5780632e17de781461044f57600080fd5b806301ffc9a7146102be57806303314efa146102f357806306fdde031461031657806307be2db714610338578063081812fc1461035a578063095ea7b31461039257600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102de6102d9366004612d7a565b6108ce565b60405190151581526020015b60405180910390f35b3480156102ff57600080fd5b50610308610920565b6040519081526020016102ea565b34801561032257600080fd5b5061032b610951565b6040516102ea9190612f89565b34801561034457600080fd5b50610358610353366004612e0f565b6109e3565b005b34801561036657600080fd5b5061037a610375366004612df7565b610a81565b6040516001600160a01b0390911681526020016102ea565b34801561039e57600080fd5b506103586103ad366004612d37565b610ac5565b3480156103be57600080fd5b506103586103cd366004612d37565b610b02565b3480156103de57600080fd5b506103586103ed366004612c08565b610cc4565b3480156103fe57600080fd5b506001546000540360001901610308565b34801561041b57600080fd5b5061035861042a366004612d37565b610d10565b34801561043b57600080fd5b5061035861044a366004612c5b565b610ea8565b34801561045b57600080fd5b5061035861046a366004612df7565b610ee7565b34801561047b57600080fd5b50610484610fde565b6040516001600160401b0390911681526020016102ea565b3480156104a857600080fd5b5061030860165481565b3480156104be57600080fd5b506103086104cd366004612c08565b611019565b3480156104de57600080fd5b50610308611066565b3480156104f357600080fd5b5061035861109a565b34801561050857600080fd5b50610358610517366004612c08565b6112ff565b34801561052857600080fd5b50610358610537366004612c5b565b61154f565b34801561054857600080fd5b506102de610557366004612df7565b60009081526017602052604090205460ff1690565b34801561057857600080fd5b50610358610587366004612d60565b611599565b34801561059857600080fd5b50600c546102de90610100900460ff1681565b3480156105b757600080fd5b506103586105c6366004612db2565b6115dd565b3480156105d757600080fd5b50600c546102de9060ff1681565b3480156105f157600080fd5b50610358610600366004612df7565b61161a565b34801561061157600080fd5b5061037a610620366004612df7565b6116cc565b34801561063157600080fd5b5061030860155481565b34801561064757600080fd5b50610308600a5481565b34801561065d57600080fd5b5061035861066c366004612db2565b6116de565b34801561067d57600080fd5b5061032b61171b565b34801561069257600080fd5b506103086106a1366004612c08565b6117a9565b3480156106b257600080fd5b5061032b6117f7565b3480156106c757600080fd5b50610358611804565b3480156106dc57600080fd5b5060095461037a906001600160a01b031681565b3480156106fc57600080fd5b5061032b6118b6565b34801561071157600080fd5b5033600090815260106020526040902054610308565b34801561073357600080fd5b50610358610742366004612d0e565b6118c5565b34801561075357600080fd5b50610308610762366004612c08565b61195b565b34801561077357600080fd5b50610358610782366004612df7565b6119c2565b34801561079357600080fd5b506103586107a2366004612c08565b611abc565b3480156107b357600080fd5b50610358611c13565b3480156107c857600080fd5b506103586107d7366004612c96565b611c4c565b3480156107e857600080fd5b5061032b6107f7366004612df7565b611c87565b34801561080857600080fd5b50610308600b5481565b34801561081e57600080fd5b5061035861082d366004612df7565b611d55565b34801561083e57600080fd5b506102de61084d366004612c29565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561088757600080fd5b50610358610896366004612d60565b611dd4565b3480156108a757600080fd5b506103586108b6366004612df7565b611e11565b6103586108c9366004612e30565b611e40565b60006001600160e01b031982166380ac58cd60e01b14806108ff57506001600160e01b03198216635b5e139f60e01b145b8061091a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6009546000906001600160a01b031633141561093d5750600e5490565b50336000908152600f602052604090205490565b606060028054610960906130f8565b80601f016020809104026020016040519081016040528092919081815260200182805461098c906130f8565b80156109d95780601f106109ae576101008083540402835291602001916109d9565b820191906000526020600020905b8154815290600101906020018083116109bc57829003601f168201915b5050505050905090565b6009546001600160a01b03163314610a165760405162461bcd60e51b8152600401610a0d90612f9c565b60405180910390fd5b600b546001546000540360001901610a2e9084613042565b1115610a765760405162461bcd60e51b8152602060048201526017602482015276086c2dcdcdee840c4ca40dadee4ca40e8d0c2dc40dac2f604b1b6044820152606401610a0d565b601691909155600a55565b6000610a8c8261210a565b610aa9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60008181526017602052604090205460ff1615610af45760405162461bcd60e51b8152600401610a0d90613018565b610afe8282612143565b5050565b6009546001600160a01b03163314610b2c5760405162461bcd60e51b8152600401610a0d90612f9c565b60145460ff1615610b4f5760405162461bcd60e51b8152600401610a0d90612fed565b6001600160a01b0382166000908152600f6020526040902054610ba25760405162461bcd60e51b815260206004820152600b60248201526a4e6f74206120706179656560a81b6044820152606401610a0d565b60008111610bf25760405162461bcd60e51b815260206004820152601d60248201527f5368617265732068617320746f206772656174686572207468616e20300000006044820152606401610a0d565b600e546001600160a01b0383166000908152600f60205260409020546011548391610c1c9161308d565b610c269190613042565b1115610c745760405162461bcd60e51b815260206004820152601860248201527f5368617265732063616e6e6f74206578636565642031303000000000000000006044820152606401610a0d565b6001600160a01b0382166000908152600f60205260409020546011548291610c9b9161308d565b610ca59190613042565b6011556001600160a01b039091166000908152600f6020526040902055565b6009546001600160a01b03163314610cee5760405162461bcd60e51b8152600401610a0d90612f9c565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6009546001600160a01b03163314610d3a5760405162461bcd60e51b8152600401610a0d90612f9c565b60145460ff1615610d5d5760405162461bcd60e51b8152600401610a0d90612fed565b600e5481601154610d6e9190613042565b1115610dbc5760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f7420657863656564203130302520736861726573000000000000006044820152606401610a0d565b6001600160a01b0382166000908152600f602052604090205415610e225760405162461bcd60e51b815260206004820152601e60248201527f53686172657320616c726561647920657869737420666f7220706179656500006044820152606401610a0d565b6001600160a01b0382166000908152600f6020526040812082905560118054839290610e4f908490613042565b9091555050601380546001810182556000919091527f66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a0900180546001600160a01b0319166001600160a01b03939093169290921790915550565b60008181526017602052604090205460ff1615610ed75760405162461bcd60e51b8152600401610a0d90613018565b610ee28383836121cc565b505050565b33610ef1826116cc565b6001600160a01b031614610f475760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c79206f776e6572206f6620746f6b656e2063616e20756e7374616b65006044820152606401610a0d565b60008181526017602052604090205460ff161515600114610f9e5760405162461bcd60e51b8152602060048201526011602482015270546f6b656e206e6f74207374616b696e6760781b6044820152606401610a0d565b600081815260176020526040808220805460ff191690555182917f603af6cb36e852311201ebb828cda2d49c5dc06d9d14a04ecd5e4211308625aa91a250565b6009546000906001600160a01b0316331461100b5760405162461bcd60e51b8152600401610a0d90612f9c565b611014336121d7565b905090565b6009546000906001600160a01b031633146110465760405162461bcd60e51b8152600401610a0d90612f9c565b506001600160a01b0381166000908152601060205260409020545b919050565b6009546000906001600160a01b031633146110935760405162461bcd60e51b8152600401610a0d90612f9c565b5060115490565b6009546001600160a01b031633146110c45760405162461bcd60e51b8152600401610a0d90612f9c565b60135461110a5760405162461bcd60e51b81526020600482015260146024820152734e6f2073686172657320746f2070726f6365737360601b6044820152606401610a0d565b47806111285760405162461bcd60e51b8152600401610a0d90612fc0565b8060005b601354811015610ee2576013546000906111489060019061308d565b8214156111565750816111bb565b60115484600f60006013868154811061117f57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020546111ae919061306e565b6111b8919061305a565b90505b600081116112045760405162461bcd60e51b81526020600482015260166024820152754572726f722073706c697474696e672073686172657360501b6044820152606401610a0d565b80601060006013858154811061122a57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040018120805490919061125e908490613042565b9250508190555080601260008282546112779190613042565b909155506112879050818461308d565b9250601382815481106112aa57634e487b7160e01b600052603260045260246000fd5b60009182526020822001546040516001600160a01b039091169183156108fc02918491818181858888f193505050501580156112ea573d6000803e3d6000fd5b505080806112f790613133565b91505061112c565b6009546001600160a01b031633146113295760405162461bcd60e51b8152600401610a0d90612f9c565b60145460ff161561134c5760405162461bcd60e51b8152600401610a0d90612fed565b6001600160a01b0381166000908152600f602052604090205461139f5760405162461bcd60e51b815260206004820152600b60248201526a4e6f74206120706179656560a81b6044820152606401610a0d565b6001600160a01b0381166000908152600f602052604081205460118054919290916113cb90849061308d565b90915550506001600160a01b0381166000908152600f602052604081208190556013546113fa9060019061308d565b6001600160401b0381111561141f57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611448578160200160208202803683370190505b5090506000805b60135481101561153557836001600160a01b03166013828154811061148457634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161461152357601381815481106114bf57634e487b7160e01b600052603260045260246000fd5b9060005260206000200160009054906101000a90046001600160a01b03168383815181106114fd57634e487b7160e01b600052603260045260246000fd5b6001600160a01b0390921660209283029190910190910152611520600183613042565b91505b8061152d81613133565b91505061144f565b508151611549906013906020850190612a7e565b50505050565b60008181526017602052604090205460ff161561157e5760405162461bcd60e51b8152600401610a0d90613018565b610ee28383836040518060200160405280600081525061222c565b6009546001600160a01b031633146115c35760405162461bcd60e51b8152600401610a0d90612f9c565b600c80549115156101000261ff0019909216919091179055565b6009546001600160a01b031633146116075760405162461bcd60e51b8152600401610a0d90612f9c565b8051610afe906008906020840190612ae3565b6009546001600160a01b031633146116445760405162461bcd60e51b8152600401610a0d90612f9c565b600b5461164f610fde565b6001600160401b031661166b6001546000546000199190030190565b6116759084613042565b61167f9190613042565b11156116c75760405162461bcd60e51b8152602060048201526017602482015276086c2dcdcdee840c4ca40dadee4ca40e8d0c2dc40dac2f604b1b6044820152606401610a0d565b601655565b60006116d782612277565b5192915050565b6009546001600160a01b031633146117085760405162461bcd60e51b8152600401610a0d90612f9c565b8051610afe90600d906020840190612ae3565b60088054611728906130f8565b80601f0160208091040260200160405190810160405280929190818152602001828054611754906130f8565b80156117a15780601f10611776576101008083540402835291602001916117a1565b820191906000526020600020905b81548152906001019060200180831161178457829003601f168201915b505050505081565b60006001600160a01b0382166117d2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b600d8054611728906130f8565b6009546001600160a01b0316331461182e5760405162461bcd60e51b8152600401610a0d90612f9c565b478061184c5760405162461bcd60e51b8152600401610a0d90612fc0565b336000908152601060205260408120805483929061186b908490613042565b9250508190555080601260008282546118849190613042565b9091555050604051339082156108fc029083906000818181858888f19350505050158015610afe573d6000803e3d6000fd5b606060038054610960906130f8565b6001600160a01b0382163314156118ef5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6009546000906001600160a01b031633146119885760405162461bcd60e51b8152600401610a0d90612f9c565b6009546001600160a01b03838116911614156119a6575050600e5490565b506001600160a01b03166000908152600f602052604090205490565b336119cc826116cc565b6001600160a01b031614611a225760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79206f776e6572206f6620746f6b656e2063616e207374616b650000006044820152606401610a0d565b60008181526017602052604090205460ff1615611a795760405162461bcd60e51b8152602060048201526015602482015274546f6b656e20616c7265616479207374616b696e6760581b6044820152606401610a0d565b600081815260176020526040808220805460ff191660011790555182917f227a473b70d2f893cc7659219575c030a63b5743024fe1e0c1a680e708b1525a91a250565b6009546001600160a01b03163314611ae65760405162461bcd60e51b8152600401610a0d90612f9c565b6001600160a01b038116611b325760405162461bcd60e51b8152602060048201526013602482015272043616e6e6f742062652061646472657373203606c1b6044820152606401610a0d565b6001600160a01b038116301415611b8b5760405162461bcd60e51b815260206004820152601e60248201527f43616e6e6f7420626520616464726573732074686520636f6e747261637400006044820152606401610a0d565b4780611ba95760405162461bcd60e51b8152600401610a0d90612fc0565b3360009081526010602052604081208054839290611bc8908490613042565b925050819055508060126000828254611be19190613042565b9091555050604051339082156108fc029083906000818181858888f19350505050158015610ee2573d6000803e3d6000fd5b6009546001600160a01b03163314611c3d5760405162461bcd60e51b8152600401610a0d90612f9c565b6014805460ff19166001179055565b60008281526017602052604090205460ff1615611c7b5760405162461bcd60e51b8152600401610a0d90613018565b6115498484848461222c565b6060611c928261210a565b611caf57604051630a14c4b560e41b815260040160405180910390fd5b600c54610100900460ff16611d0f57600d8054611ccb906130f8565b15159050611ce8576040518060200160405280600081525061091a565b600d604051602001611cfa9190612f1b565b60405160208183030381529060405292915050565b60088054611d1c906130f8565b15159050611d39576040518060200160405280600081525061091a565b6008611d448361239e565b604051602001611cfa929190612f27565b6009546001600160a01b03163314611d7f5760405162461bcd60e51b8152600401610a0d90612f9c565b60008111611dcf5760405162461bcd60e51b815260206004820152601760248201527f4e6565647320746f206265206d6f7265207468616e20300000000000000000006044820152606401610a0d565b601555565b6009546001600160a01b03163314611dfe5760405162461bcd60e51b8152600401610a0d90612f9c565b600c805460ff1916911515919091179055565b6009546001600160a01b03163314611e3b5760405162461bcd60e51b8152600401610a0d90612f9c565b600a55565b6009546001600160a01b031633141580611e5a5750600034115b1561204857600c5460ff16611eb15760405162461bcd60e51b815260206004820152601960248201527f5075626c6963206d696e74206973206e6f7420616374697665000000000000006044820152606401610a0d565b6000600a5411611f035760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74207072696365206973206e6f7420736574000000006044820152606401610a0d565b601554816001600160401b03161115611f5e5760405162461bcd60e51b815260206004820152601e60248201527f43616e6e6f74206d696e74206d6f7265207468616e206d6178426174636800006044820152606401610a0d565b6000816001600160401b0316601654611f77919061308d565b1015611fd45760405162461bcd60e51b815260206004820152602660248201527f4e6f7420656e6f75676820746f6b656e7320617661696c61626c6520666f72206044820152657075626c696360d01b6064820152608401610a0d565b806001600160401b0316600a54611feb919061306e565b34101561202d5760405162461bcd60e51b815260206004820152601060248201526f141c9a58d9481a5cc81b9bdd081b595d60821b6044820152606401610a0d565b806001600160401b0316601654612044919061308d565b6016555b6009546001600160a01b031633148015612060575034155b156120f457600061206f610fde565b9050816001600160401b0316816001600160401b031610156120d35760405162461bcd60e51b815260206004820152601f60248201527f4e6f7420656e6f75676820746f6b656e206c65667420666f72206f776e6572006044820152606401610a0d565b6009546120f2906001600160a01b03166120ed84846130a4565b6124bf565b505b61210733826001600160401b0316612525565b50565b60008160011115801561211e575060005482105b801561091a575050600090815260046020526040902054600160e01b900460ff161590565b600061214e826116cc565b9050806001600160a01b0316836001600160a01b031614156121835760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906121a357506121a1813361084d565b155b156121c1576040516367d9dca160e11b815260040160405180910390fd5b610ee283838361253f565b610ee283838361259b565b60006001600160a01b0382166122005760405163561b93dd60e11b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160c01b90046001600160401b031690565b61223784848461259b565b6001600160a01b0383163b151580156122595750612257848484846127af565b155b15611549576040516368d2bf6b60e11b815260040160405180910390fd5b604080516060810182526000808252602082018190529181019190915281806001111580156122a7575060005481105b1561238557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906123835780516001600160a01b03161561231a579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561237e579392505050565b61231a565b505b604051636f96cda160e11b815260040160405180910390fd5b6060816123c25750506040805180820190915260018152600360fc1b602082015290565b8160005b81156123ec57806123d681613133565b91506123e59050600a8361305a565b91506123c6565b6000816001600160401b0381111561241457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561243e576020820181803683370190505b5090505b84156124b75761245360018361308d565b9150612460600a8661314e565b61246b906030613042565b60f81b81838151811061248e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506124b0600a8661305a565b9450612442565b949350505050565b6001600160a01b0382166124e65760405163561b93dd60e11b815260040160405180910390fd5b6001600160a01b03909116600090815260056020526040902080546001600160401b03909216600160c01b026001600160c01b03909216919091179055565b610afe8282604051806020016040528060008152506128a6565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006125a682612277565b80519091506000906001600160a01b0316336001600160a01b031614806125d4575081516125d4903361084d565b806125ef5750336125e484610a81565b6001600160a01b0316145b90508061260f57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146126445760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661266b57604051633a954ecd60e21b815260040160405180910390fd5b61267b600084846000015161253f565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166127655760005481101561276557825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906127e4903390899088908890600401612f4c565b602060405180830381600087803b1580156127fe57600080fd5b505af192505050801561282e575060408051601f3d908101601f1916820190925261282b91810190612d96565b60015b612889573d80801561285c576040519150601f19603f3d011682016040523d82523d6000602084013e612861565b606091505b508051612881576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b610ee283838360016000546001600160a01b0385166128d757604051622e076360e81b815260040160405180910390fd5b836128f55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156129a657506001600160a01b0387163b15155b15612a2f575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46129f760008884806001019550886127af565b612a14576040516368d2bf6b60e11b815260040160405180910390fd5b808214156129ac578260005414612a2a57600080fd5b612a75565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612a30575b506000556127a8565b828054828255906000526020600020908101928215612ad3579160200282015b82811115612ad357825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190612a9e565b50612adf929150612b57565b5090565b828054612aef906130f8565b90600052602060002090601f016020900481019282612b115760008555612ad3565b82601f10612b2a57805160ff1916838001178555612ad3565b82800160010185558215612ad3579182015b82811115612ad3578251825591602001919060010190612b3c565b5b80821115612adf5760008155600101612b58565b60006001600160401b0380841115612b8657612b8661318e565b604051601f8501601f19908116603f01168101908282118183101715612bae57612bae61318e565b81604052809350858152868686011115612bc757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461106157600080fd5b8035801515811461106157600080fd5b600060208284031215612c19578081fd5b612c2282612be1565b9392505050565b60008060408385031215612c3b578081fd5b612c4483612be1565b9150612c5260208401612be1565b90509250929050565b600080600060608486031215612c6f578081fd5b612c7884612be1565b9250612c8660208501612be1565b9150604084013590509250925092565b60008060008060808587031215612cab578081fd5b612cb485612be1565b9350612cc260208601612be1565b92506040850135915060608501356001600160401b03811115612ce3578182fd5b8501601f81018713612cf3578182fd5b612d0287823560208401612b6c565b91505092959194509250565b60008060408385031215612d20578182fd5b612d2983612be1565b9150612c5260208401612bf8565b60008060408385031215612d49578182fd5b612d5283612be1565b946020939093013593505050565b600060208284031215612d71578081fd5b612c2282612bf8565b600060208284031215612d8b578081fd5b8135612c22816131a4565b600060208284031215612da7578081fd5b8151612c22816131a4565b600060208284031215612dc3578081fd5b81356001600160401b03811115612dd8578182fd5b8201601f81018413612de8578182fd5b6124b784823560208401612b6c565b600060208284031215612e08578081fd5b5035919050565b60008060408385031215612e21578182fd5b50508035926020909101359150565b600060208284031215612e41578081fd5b81356001600160401b0381168114612c22578182fd5b60008151808452612e6f8160208601602086016130cc565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680612e9d57607f831692505b6020808410821415612ebd57634e487b7160e01b86526022600452602486fd5b818015612ed15760018114612ee257612f0f565b60ff19861689528489019650612f0f565b60008881526020902060005b86811015612f075781548b820152908501908301612eee565b505084890196505b50505050505092915050565b6000612c228284612e83565b6000612f338285612e83565b8351612f438183602088016130cc565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f7f90830184612e57565b9695505050505050565b602081526000612c226020830184612e57565b6020808252600a908201526927b7363c9037bbb732b960b11b604082015260600190565b6020808252601390820152724e6f7468696e6720746f20776974686472617760681b604082015260600190565b60208082526011908201527014da185c995cc8185c99481b1bd8dad959607a1b604082015260600190565b60208082526010908201526f546f6b656e206973207374616b696e6760801b604082015260600190565b6000821982111561305557613055613162565b500190565b60008261306957613069613178565b500490565b600081600019048311821515161561308857613088613162565b500290565b60008282101561309f5761309f613162565b500390565b60006001600160401b03838116908316818110156130c4576130c4613162565b039392505050565b60005b838110156130e75781810151838201526020016130cf565b838111156115495750506000910152565b600181811c9082168061310c57607f821691505b6020821081141561312d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561314757613147613162565b5060010190565b60008261315d5761315d613178565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461210757600080fdfea264697066735822122084ef1e2c9f1d52d0f575e38dd0b3d4c7499c39bdf25912bdfb4e4f9679931a5b64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000002868747470733a2f2f6d696e742e6d657461686f6f6c6967616e732e636f6d2f6e66742f6d6574612f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a68747470733a2f2f6d696e742e6d657461686f6f6c6967616e732e636f6d2f6e66742f706c616365686f6c6465722f706c616365686f6c646572000000000000

Deployed Bytecode

0x6080604052600436106102b25760003560e01c806361a5477a11610175578063a22cb465116100dc578063c87b56dd11610095578063e985e9c51161006f578063e985e9c514610832578063ee1cc9441461087b578063f4a0a5281461089b578063fb9d09c8146108bb57600080fd5b8063c87b56dd146107dc578063d5abeb01146107fc578063dc6d11891461081257600080fd5b8063a22cb46514610727578063a5805c6d14610747578063a694fc3a14610767578063a92bd72c14610787578063b75c2068146107a7578063b88d4fde146107bc57600080fd5b806370a082311161012e57806370a08231146106865780637313cba9146106a6578063853828b6146106bb5780638da5cb5b146106d057806395d89b41146106f0578063961325211461070557600080fd5b806361a5477a146105e55780636352211e1461060557806367765b87146106255780636817c76c1461063b5780636afd4ba2146106515780636c0360eb1461067157600080fd5b80632ea3916a1161021957806342842e0e116101d257806342842e0e1461051c578063451ea5631461053c57806349a5980a1461056c57806354214f691461058c57806355f804b3146105ab5780635b92ac0d146105cb57600080fd5b80632ea3916a1461046f57806330b4e61e1461049c57806337827e70146104b25780633a98ef39146104d25780633ccfd60b146104e75780633ed35855146104fc57600080fd5b80630f31c1eb1161026b5780630f31c1eb146103b257806313af4035146103d257806318160ddd146103f257806318f9b0231461040f57806323b872dd1461042f5780632e17de781461044f57600080fd5b806301ffc9a7146102be57806303314efa146102f357806306fdde031461031657806307be2db714610338578063081812fc1461035a578063095ea7b31461039257600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102de6102d9366004612d7a565b6108ce565b60405190151581526020015b60405180910390f35b3480156102ff57600080fd5b50610308610920565b6040519081526020016102ea565b34801561032257600080fd5b5061032b610951565b6040516102ea9190612f89565b34801561034457600080fd5b50610358610353366004612e0f565b6109e3565b005b34801561036657600080fd5b5061037a610375366004612df7565b610a81565b6040516001600160a01b0390911681526020016102ea565b34801561039e57600080fd5b506103586103ad366004612d37565b610ac5565b3480156103be57600080fd5b506103586103cd366004612d37565b610b02565b3480156103de57600080fd5b506103586103ed366004612c08565b610cc4565b3480156103fe57600080fd5b506001546000540360001901610308565b34801561041b57600080fd5b5061035861042a366004612d37565b610d10565b34801561043b57600080fd5b5061035861044a366004612c5b565b610ea8565b34801561045b57600080fd5b5061035861046a366004612df7565b610ee7565b34801561047b57600080fd5b50610484610fde565b6040516001600160401b0390911681526020016102ea565b3480156104a857600080fd5b5061030860165481565b3480156104be57600080fd5b506103086104cd366004612c08565b611019565b3480156104de57600080fd5b50610308611066565b3480156104f357600080fd5b5061035861109a565b34801561050857600080fd5b50610358610517366004612c08565b6112ff565b34801561052857600080fd5b50610358610537366004612c5b565b61154f565b34801561054857600080fd5b506102de610557366004612df7565b60009081526017602052604090205460ff1690565b34801561057857600080fd5b50610358610587366004612d60565b611599565b34801561059857600080fd5b50600c546102de90610100900460ff1681565b3480156105b757600080fd5b506103586105c6366004612db2565b6115dd565b3480156105d757600080fd5b50600c546102de9060ff1681565b3480156105f157600080fd5b50610358610600366004612df7565b61161a565b34801561061157600080fd5b5061037a610620366004612df7565b6116cc565b34801561063157600080fd5b5061030860155481565b34801561064757600080fd5b50610308600a5481565b34801561065d57600080fd5b5061035861066c366004612db2565b6116de565b34801561067d57600080fd5b5061032b61171b565b34801561069257600080fd5b506103086106a1366004612c08565b6117a9565b3480156106b257600080fd5b5061032b6117f7565b3480156106c757600080fd5b50610358611804565b3480156106dc57600080fd5b5060095461037a906001600160a01b031681565b3480156106fc57600080fd5b5061032b6118b6565b34801561071157600080fd5b5033600090815260106020526040902054610308565b34801561073357600080fd5b50610358610742366004612d0e565b6118c5565b34801561075357600080fd5b50610308610762366004612c08565b61195b565b34801561077357600080fd5b50610358610782366004612df7565b6119c2565b34801561079357600080fd5b506103586107a2366004612c08565b611abc565b3480156107b357600080fd5b50610358611c13565b3480156107c857600080fd5b506103586107d7366004612c96565b611c4c565b3480156107e857600080fd5b5061032b6107f7366004612df7565b611c87565b34801561080857600080fd5b50610308600b5481565b34801561081e57600080fd5b5061035861082d366004612df7565b611d55565b34801561083e57600080fd5b506102de61084d366004612c29565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561088757600080fd5b50610358610896366004612d60565b611dd4565b3480156108a757600080fd5b506103586108b6366004612df7565b611e11565b6103586108c9366004612e30565b611e40565b60006001600160e01b031982166380ac58cd60e01b14806108ff57506001600160e01b03198216635b5e139f60e01b145b8061091a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6009546000906001600160a01b031633141561093d5750600e5490565b50336000908152600f602052604090205490565b606060028054610960906130f8565b80601f016020809104026020016040519081016040528092919081815260200182805461098c906130f8565b80156109d95780601f106109ae576101008083540402835291602001916109d9565b820191906000526020600020905b8154815290600101906020018083116109bc57829003601f168201915b5050505050905090565b6009546001600160a01b03163314610a165760405162461bcd60e51b8152600401610a0d90612f9c565b60405180910390fd5b600b546001546000540360001901610a2e9084613042565b1115610a765760405162461bcd60e51b8152602060048201526017602482015276086c2dcdcdee840c4ca40dadee4ca40e8d0c2dc40dac2f604b1b6044820152606401610a0d565b601691909155600a55565b6000610a8c8261210a565b610aa9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60008181526017602052604090205460ff1615610af45760405162461bcd60e51b8152600401610a0d90613018565b610afe8282612143565b5050565b6009546001600160a01b03163314610b2c5760405162461bcd60e51b8152600401610a0d90612f9c565b60145460ff1615610b4f5760405162461bcd60e51b8152600401610a0d90612fed565b6001600160a01b0382166000908152600f6020526040902054610ba25760405162461bcd60e51b815260206004820152600b60248201526a4e6f74206120706179656560a81b6044820152606401610a0d565b60008111610bf25760405162461bcd60e51b815260206004820152601d60248201527f5368617265732068617320746f206772656174686572207468616e20300000006044820152606401610a0d565b600e546001600160a01b0383166000908152600f60205260409020546011548391610c1c9161308d565b610c269190613042565b1115610c745760405162461bcd60e51b815260206004820152601860248201527f5368617265732063616e6e6f74206578636565642031303000000000000000006044820152606401610a0d565b6001600160a01b0382166000908152600f60205260409020546011548291610c9b9161308d565b610ca59190613042565b6011556001600160a01b039091166000908152600f6020526040902055565b6009546001600160a01b03163314610cee5760405162461bcd60e51b8152600401610a0d90612f9c565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6009546001600160a01b03163314610d3a5760405162461bcd60e51b8152600401610a0d90612f9c565b60145460ff1615610d5d5760405162461bcd60e51b8152600401610a0d90612fed565b600e5481601154610d6e9190613042565b1115610dbc5760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f7420657863656564203130302520736861726573000000000000006044820152606401610a0d565b6001600160a01b0382166000908152600f602052604090205415610e225760405162461bcd60e51b815260206004820152601e60248201527f53686172657320616c726561647920657869737420666f7220706179656500006044820152606401610a0d565b6001600160a01b0382166000908152600f6020526040812082905560118054839290610e4f908490613042565b9091555050601380546001810182556000919091527f66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a0900180546001600160a01b0319166001600160a01b03939093169290921790915550565b60008181526017602052604090205460ff1615610ed75760405162461bcd60e51b8152600401610a0d90613018565b610ee28383836121cc565b505050565b33610ef1826116cc565b6001600160a01b031614610f475760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c79206f776e6572206f6620746f6b656e2063616e20756e7374616b65006044820152606401610a0d565b60008181526017602052604090205460ff161515600114610f9e5760405162461bcd60e51b8152602060048201526011602482015270546f6b656e206e6f74207374616b696e6760781b6044820152606401610a0d565b600081815260176020526040808220805460ff191690555182917f603af6cb36e852311201ebb828cda2d49c5dc06d9d14a04ecd5e4211308625aa91a250565b6009546000906001600160a01b0316331461100b5760405162461bcd60e51b8152600401610a0d90612f9c565b611014336121d7565b905090565b6009546000906001600160a01b031633146110465760405162461bcd60e51b8152600401610a0d90612f9c565b506001600160a01b0381166000908152601060205260409020545b919050565b6009546000906001600160a01b031633146110935760405162461bcd60e51b8152600401610a0d90612f9c565b5060115490565b6009546001600160a01b031633146110c45760405162461bcd60e51b8152600401610a0d90612f9c565b60135461110a5760405162461bcd60e51b81526020600482015260146024820152734e6f2073686172657320746f2070726f6365737360601b6044820152606401610a0d565b47806111285760405162461bcd60e51b8152600401610a0d90612fc0565b8060005b601354811015610ee2576013546000906111489060019061308d565b8214156111565750816111bb565b60115484600f60006013868154811061117f57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020546111ae919061306e565b6111b8919061305a565b90505b600081116112045760405162461bcd60e51b81526020600482015260166024820152754572726f722073706c697474696e672073686172657360501b6044820152606401610a0d565b80601060006013858154811061122a57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040018120805490919061125e908490613042565b9250508190555080601260008282546112779190613042565b909155506112879050818461308d565b9250601382815481106112aa57634e487b7160e01b600052603260045260246000fd5b60009182526020822001546040516001600160a01b039091169183156108fc02918491818181858888f193505050501580156112ea573d6000803e3d6000fd5b505080806112f790613133565b91505061112c565b6009546001600160a01b031633146113295760405162461bcd60e51b8152600401610a0d90612f9c565b60145460ff161561134c5760405162461bcd60e51b8152600401610a0d90612fed565b6001600160a01b0381166000908152600f602052604090205461139f5760405162461bcd60e51b815260206004820152600b60248201526a4e6f74206120706179656560a81b6044820152606401610a0d565b6001600160a01b0381166000908152600f602052604081205460118054919290916113cb90849061308d565b90915550506001600160a01b0381166000908152600f602052604081208190556013546113fa9060019061308d565b6001600160401b0381111561141f57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611448578160200160208202803683370190505b5090506000805b60135481101561153557836001600160a01b03166013828154811061148457634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161461152357601381815481106114bf57634e487b7160e01b600052603260045260246000fd5b9060005260206000200160009054906101000a90046001600160a01b03168383815181106114fd57634e487b7160e01b600052603260045260246000fd5b6001600160a01b0390921660209283029190910190910152611520600183613042565b91505b8061152d81613133565b91505061144f565b508151611549906013906020850190612a7e565b50505050565b60008181526017602052604090205460ff161561157e5760405162461bcd60e51b8152600401610a0d90613018565b610ee28383836040518060200160405280600081525061222c565b6009546001600160a01b031633146115c35760405162461bcd60e51b8152600401610a0d90612f9c565b600c80549115156101000261ff0019909216919091179055565b6009546001600160a01b031633146116075760405162461bcd60e51b8152600401610a0d90612f9c565b8051610afe906008906020840190612ae3565b6009546001600160a01b031633146116445760405162461bcd60e51b8152600401610a0d90612f9c565b600b5461164f610fde565b6001600160401b031661166b6001546000546000199190030190565b6116759084613042565b61167f9190613042565b11156116c75760405162461bcd60e51b8152602060048201526017602482015276086c2dcdcdee840c4ca40dadee4ca40e8d0c2dc40dac2f604b1b6044820152606401610a0d565b601655565b60006116d782612277565b5192915050565b6009546001600160a01b031633146117085760405162461bcd60e51b8152600401610a0d90612f9c565b8051610afe90600d906020840190612ae3565b60088054611728906130f8565b80601f0160208091040260200160405190810160405280929190818152602001828054611754906130f8565b80156117a15780601f10611776576101008083540402835291602001916117a1565b820191906000526020600020905b81548152906001019060200180831161178457829003601f168201915b505050505081565b60006001600160a01b0382166117d2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b600d8054611728906130f8565b6009546001600160a01b0316331461182e5760405162461bcd60e51b8152600401610a0d90612f9c565b478061184c5760405162461bcd60e51b8152600401610a0d90612fc0565b336000908152601060205260408120805483929061186b908490613042565b9250508190555080601260008282546118849190613042565b9091555050604051339082156108fc029083906000818181858888f19350505050158015610afe573d6000803e3d6000fd5b606060038054610960906130f8565b6001600160a01b0382163314156118ef5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6009546000906001600160a01b031633146119885760405162461bcd60e51b8152600401610a0d90612f9c565b6009546001600160a01b03838116911614156119a6575050600e5490565b506001600160a01b03166000908152600f602052604090205490565b336119cc826116cc565b6001600160a01b031614611a225760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79206f776e6572206f6620746f6b656e2063616e207374616b650000006044820152606401610a0d565b60008181526017602052604090205460ff1615611a795760405162461bcd60e51b8152602060048201526015602482015274546f6b656e20616c7265616479207374616b696e6760581b6044820152606401610a0d565b600081815260176020526040808220805460ff191660011790555182917f227a473b70d2f893cc7659219575c030a63b5743024fe1e0c1a680e708b1525a91a250565b6009546001600160a01b03163314611ae65760405162461bcd60e51b8152600401610a0d90612f9c565b6001600160a01b038116611b325760405162461bcd60e51b8152602060048201526013602482015272043616e6e6f742062652061646472657373203606c1b6044820152606401610a0d565b6001600160a01b038116301415611b8b5760405162461bcd60e51b815260206004820152601e60248201527f43616e6e6f7420626520616464726573732074686520636f6e747261637400006044820152606401610a0d565b4780611ba95760405162461bcd60e51b8152600401610a0d90612fc0565b3360009081526010602052604081208054839290611bc8908490613042565b925050819055508060126000828254611be19190613042565b9091555050604051339082156108fc029083906000818181858888f19350505050158015610ee2573d6000803e3d6000fd5b6009546001600160a01b03163314611c3d5760405162461bcd60e51b8152600401610a0d90612f9c565b6014805460ff19166001179055565b60008281526017602052604090205460ff1615611c7b5760405162461bcd60e51b8152600401610a0d90613018565b6115498484848461222c565b6060611c928261210a565b611caf57604051630a14c4b560e41b815260040160405180910390fd5b600c54610100900460ff16611d0f57600d8054611ccb906130f8565b15159050611ce8576040518060200160405280600081525061091a565b600d604051602001611cfa9190612f1b565b60405160208183030381529060405292915050565b60088054611d1c906130f8565b15159050611d39576040518060200160405280600081525061091a565b6008611d448361239e565b604051602001611cfa929190612f27565b6009546001600160a01b03163314611d7f5760405162461bcd60e51b8152600401610a0d90612f9c565b60008111611dcf5760405162461bcd60e51b815260206004820152601760248201527f4e6565647320746f206265206d6f7265207468616e20300000000000000000006044820152606401610a0d565b601555565b6009546001600160a01b03163314611dfe5760405162461bcd60e51b8152600401610a0d90612f9c565b600c805460ff1916911515919091179055565b6009546001600160a01b03163314611e3b5760405162461bcd60e51b8152600401610a0d90612f9c565b600a55565b6009546001600160a01b031633141580611e5a5750600034115b1561204857600c5460ff16611eb15760405162461bcd60e51b815260206004820152601960248201527f5075626c6963206d696e74206973206e6f7420616374697665000000000000006044820152606401610a0d565b6000600a5411611f035760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74207072696365206973206e6f7420736574000000006044820152606401610a0d565b601554816001600160401b03161115611f5e5760405162461bcd60e51b815260206004820152601e60248201527f43616e6e6f74206d696e74206d6f7265207468616e206d6178426174636800006044820152606401610a0d565b6000816001600160401b0316601654611f77919061308d565b1015611fd45760405162461bcd60e51b815260206004820152602660248201527f4e6f7420656e6f75676820746f6b656e7320617661696c61626c6520666f72206044820152657075626c696360d01b6064820152608401610a0d565b806001600160401b0316600a54611feb919061306e565b34101561202d5760405162461bcd60e51b815260206004820152601060248201526f141c9a58d9481a5cc81b9bdd081b595d60821b6044820152606401610a0d565b806001600160401b0316601654612044919061308d565b6016555b6009546001600160a01b031633148015612060575034155b156120f457600061206f610fde565b9050816001600160401b0316816001600160401b031610156120d35760405162461bcd60e51b815260206004820152601f60248201527f4e6f7420656e6f75676820746f6b656e206c65667420666f72206f776e6572006044820152606401610a0d565b6009546120f2906001600160a01b03166120ed84846130a4565b6124bf565b505b61210733826001600160401b0316612525565b50565b60008160011115801561211e575060005482105b801561091a575050600090815260046020526040902054600160e01b900460ff161590565b600061214e826116cc565b9050806001600160a01b0316836001600160a01b031614156121835760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906121a357506121a1813361084d565b155b156121c1576040516367d9dca160e11b815260040160405180910390fd5b610ee283838361253f565b610ee283838361259b565b60006001600160a01b0382166122005760405163561b93dd60e11b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160c01b90046001600160401b031690565b61223784848461259b565b6001600160a01b0383163b151580156122595750612257848484846127af565b155b15611549576040516368d2bf6b60e11b815260040160405180910390fd5b604080516060810182526000808252602082018190529181019190915281806001111580156122a7575060005481105b1561238557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906123835780516001600160a01b03161561231a579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561237e579392505050565b61231a565b505b604051636f96cda160e11b815260040160405180910390fd5b6060816123c25750506040805180820190915260018152600360fc1b602082015290565b8160005b81156123ec57806123d681613133565b91506123e59050600a8361305a565b91506123c6565b6000816001600160401b0381111561241457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561243e576020820181803683370190505b5090505b84156124b75761245360018361308d565b9150612460600a8661314e565b61246b906030613042565b60f81b81838151811061248e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506124b0600a8661305a565b9450612442565b949350505050565b6001600160a01b0382166124e65760405163561b93dd60e11b815260040160405180910390fd5b6001600160a01b03909116600090815260056020526040902080546001600160401b03909216600160c01b026001600160c01b03909216919091179055565b610afe8282604051806020016040528060008152506128a6565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006125a682612277565b80519091506000906001600160a01b0316336001600160a01b031614806125d4575081516125d4903361084d565b806125ef5750336125e484610a81565b6001600160a01b0316145b90508061260f57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146126445760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661266b57604051633a954ecd60e21b815260040160405180910390fd5b61267b600084846000015161253f565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166127655760005481101561276557825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906127e4903390899088908890600401612f4c565b602060405180830381600087803b1580156127fe57600080fd5b505af192505050801561282e575060408051601f3d908101601f1916820190925261282b91810190612d96565b60015b612889573d80801561285c576040519150601f19603f3d011682016040523d82523d6000602084013e612861565b606091505b508051612881576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b610ee283838360016000546001600160a01b0385166128d757604051622e076360e81b815260040160405180910390fd5b836128f55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156129a657506001600160a01b0387163b15155b15612a2f575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46129f760008884806001019550886127af565b612a14576040516368d2bf6b60e11b815260040160405180910390fd5b808214156129ac578260005414612a2a57600080fd5b612a75565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612a30575b506000556127a8565b828054828255906000526020600020908101928215612ad3579160200282015b82811115612ad357825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190612a9e565b50612adf929150612b57565b5090565b828054612aef906130f8565b90600052602060002090601f016020900481019282612b115760008555612ad3565b82601f10612b2a57805160ff1916838001178555612ad3565b82800160010185558215612ad3579182015b82811115612ad3578251825591602001919060010190612b3c565b5b80821115612adf5760008155600101612b58565b60006001600160401b0380841115612b8657612b8661318e565b604051601f8501601f19908116603f01168101908282118183101715612bae57612bae61318e565b81604052809350858152868686011115612bc757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461106157600080fd5b8035801515811461106157600080fd5b600060208284031215612c19578081fd5b612c2282612be1565b9392505050565b60008060408385031215612c3b578081fd5b612c4483612be1565b9150612c5260208401612be1565b90509250929050565b600080600060608486031215612c6f578081fd5b612c7884612be1565b9250612c8660208501612be1565b9150604084013590509250925092565b60008060008060808587031215612cab578081fd5b612cb485612be1565b9350612cc260208601612be1565b92506040850135915060608501356001600160401b03811115612ce3578182fd5b8501601f81018713612cf3578182fd5b612d0287823560208401612b6c565b91505092959194509250565b60008060408385031215612d20578182fd5b612d2983612be1565b9150612c5260208401612bf8565b60008060408385031215612d49578182fd5b612d5283612be1565b946020939093013593505050565b600060208284031215612d71578081fd5b612c2282612bf8565b600060208284031215612d8b578081fd5b8135612c22816131a4565b600060208284031215612da7578081fd5b8151612c22816131a4565b600060208284031215612dc3578081fd5b81356001600160401b03811115612dd8578182fd5b8201601f81018413612de8578182fd5b6124b784823560208401612b6c565b600060208284031215612e08578081fd5b5035919050565b60008060408385031215612e21578182fd5b50508035926020909101359150565b600060208284031215612e41578081fd5b81356001600160401b0381168114612c22578182fd5b60008151808452612e6f8160208601602086016130cc565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680612e9d57607f831692505b6020808410821415612ebd57634e487b7160e01b86526022600452602486fd5b818015612ed15760018114612ee257612f0f565b60ff19861689528489019650612f0f565b60008881526020902060005b86811015612f075781548b820152908501908301612eee565b505084890196505b50505050505092915050565b6000612c228284612e83565b6000612f338285612e83565b8351612f438183602088016130cc565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f7f90830184612e57565b9695505050505050565b602081526000612c226020830184612e57565b6020808252600a908201526927b7363c9037bbb732b960b11b604082015260600190565b6020808252601390820152724e6f7468696e6720746f20776974686472617760681b604082015260600190565b60208082526011908201527014da185c995cc8185c99481b1bd8dad959607a1b604082015260600190565b60208082526010908201526f546f6b656e206973207374616b696e6760801b604082015260600190565b6000821982111561305557613055613162565b500190565b60008261306957613069613178565b500490565b600081600019048311821515161561308857613088613162565b500290565b60008282101561309f5761309f613162565b500390565b60006001600160401b03838116908316818110156130c4576130c4613162565b039392505050565b60005b838110156130e75781810151838201526020016130cf565b838111156115495750506000910152565b600181811c9082168061310c57607f821691505b6020821081141561312d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561314757613147613162565b5060010190565b60008261315d5761315d613178565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461210757600080fdfea264697066735822122084ef1e2c9f1d52d0f575e38dd0b3d4c7499c39bdf25912bdfb4e4f9679931a5b64736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000002868747470733a2f2f6d696e742e6d657461686f6f6c6967616e732e636f6d2f6e66742f6d6574612f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a68747470733a2f2f6d696e742e6d657461686f6f6c6967616e732e636f6d2f6e66742f706c616365686f6c6465722f706c616365686f6c646572000000000000

-----Decoded View---------------
Arg [0] : _baseUri (string): https://mint.metahooligans.com/nft/meta/
Arg [1] : _placeholderURI (string): https://mint.metahooligans.com/nft/placeholder/placeholder

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000028
Arg [3] : 68747470733a2f2f6d696e742e6d657461686f6f6c6967616e732e636f6d2f6e
Arg [4] : 66742f6d6574612f000000000000000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000003a
Arg [6] : 68747470733a2f2f6d696e742e6d657461686f6f6c6967616e732e636f6d2f6e
Arg [7] : 66742f706c616365686f6c6465722f706c616365686f6c646572000000000000


Deployed Bytecode Sourcemap

41665:12338:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24194:305;;;;;;;;;;-1:-1:-1;24194:305:0;;;;;:::i;:::-;;:::i;:::-;;;7717:14:1;;7710:22;7692:41;;7680:2;7665:18;24194:305:0;;;;;;;;48282:166;;;;;;;;;;;;;:::i;:::-;;;16963:25:1;;;16951:2;16936:18;48282:166:0;16918:76:1;27579:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;50494:243::-;;;;;;;;;;-1:-1:-1;50494:243:0;;;;;:::i;:::-;;:::i;:::-;;29090:204;;;;;;;;;;-1:-1:-1;29090:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7015:32:1;;;6997:51;;6985:2;6970:18;29090:204:0;6952:102:1;53824:176:0;;;;;;;;;;-1:-1:-1;53824:176:0;;;;;:::i;:::-;;:::i;47769:507::-;;;;;;;;;;-1:-1:-1;47769:507:0;;;;;:::i;:::-;;:::i;44630:85::-;;;;;;;;;;-1:-1:-1;44630:85:0;;;;;:::i;:::-;;:::i;23443:303::-;;;;;;;;;;-1:-1:-1;44382:1:0;23697:12;23487:7;23681:13;:28;-1:-1:-1;;23681:46:0;23443:303;;46660:448;;;;;;;;;;-1:-1:-1;46660:448:0;;;;;:::i;:::-;;:::i;53117:214::-;;;;;;;;;;-1:-1:-1;53117:214:0;;;;;:::i;:::-;;:::i;52602:271::-;;;;;;;;;;-1:-1:-1;52602:271:0;;;;;:::i;:::-;;:::i;46377:109::-;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;17161:31:1;;;17143:50;;17131:2;17116:18;46377:109:0;17098:101:1;42453:29:0;;;;;;;;;;;;;;;;48658:128;;;;;;;;;;-1:-1:-1;48658:128:0;;;;;:::i;:::-;;:::i;48554:98::-;;;;;;;;;;;;;:::i;45459:912::-;;;;;;;;;;;;;:::i;47114:649::-;;;;;;;;;;-1:-1:-1;47114:649:0;;;;;:::i;:::-;;:::i;53337:226::-;;;;;;;;;;-1:-1:-1;53337:226:0;;;;;:::i;:::-;;:::i;52879:106::-;;;;;;;;;;-1:-1:-1;52879:106:0;;;;;:::i;:::-;52936:4;52960:17;;;:8;:17;;;;;;;;;52879:106;49420:98;;;;;;;;;;-1:-1:-1;49420:98:0;;;;;:::i;:::-;;:::i;42006:22::-;;;;;;;;;;-1:-1:-1;42006:22:0;;;;;;;;;;;49327:87;;;;;;;;;;-1:-1:-1;49327:87:0;;;;;:::i;:::-;;:::i;41940:24::-;;;;;;;;;;-1:-1:-1;41940:24:0;;;;;;;;50281:207;;;;;;;;;;-1:-1:-1;50281:207:0;;;;;:::i;:::-;;:::i;27388:124::-;;;;;;;;;;-1:-1:-1;27388:124:0;;;;;:::i;:::-;;:::i;42423:23::-;;;;;;;;;;;;;;;;41840:24;;;;;;;;;;;;;;;;49524:101;;;;;;;;;;-1:-1:-1;49524:101:0;;;;;:::i;:::-;;:::i;41732:21::-;;;;;;;;;;;;;:::i;24563:206::-;;;;;;;;;;-1:-1:-1;24563:206:0;;;;;:::i;:::-;;:::i;42035:28::-;;;;;;;;;;;;;:::i;44721:280::-;;;;;;;;;;;;;:::i;41788:20::-;;;;;;;;;;-1:-1:-1;41788:20:0;;;;-1:-1:-1;;;;;41788:20:0;;;27748:104;;;;;;;;;;;;;:::i;48454:94::-;;;;;;;;;;-1:-1:-1;48529:10:0;48495:4;48519:21;;;:9;:21;;;;;;48454:94;;29366:279;;;;;;;;;;-1:-1:-1;29366:279:0;;;;;:::i;:::-;;:::i;48792:198::-;;;;;;;;;;-1:-1:-1;48792:198:0;;;;;:::i;:::-;;:::i;52328:268::-;;;;;;;;;;-1:-1:-1;52328:268:0;;;;;:::i;:::-;;:::i;45007:446::-;;;;;;;;;;-1:-1:-1;45007:446:0;;;;;:::i;:::-;;:::i;48996:78::-;;;;;;;;;;;;;:::i;53569:249::-;;;;;;;;;;-1:-1:-1;53569:249:0;;;;;:::i;:::-;;:::i;49631:434::-;;;;;;;;;;-1:-1:-1;49631:434:0;;;;;:::i;:::-;;:::i;41892:24::-;;;;;;;;;;;;;;;;50743:156;;;;;;;;;;-1:-1:-1;50743:156:0;;;;;:::i;:::-;;:::i;29716:164::-;;;;;;;;;;-1:-1:-1;29716:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29837:25:0;;;29813:4;29837:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29716:164;51004:96;;;;;;;;;;-1:-1:-1;51004:96:0;;;;;:::i;:::-;;:::i;50905:93::-;;;;;;;;;;-1:-1:-1;50905:93:0;;;;;:::i;:::-;;:::i;51106:977::-;;;;;;:::i;:::-;;:::i;24194:305::-;24296:4;-1:-1:-1;;;;;;24333:40:0;;-1:-1:-1;;;24333:40:0;;:105;;-1:-1:-1;;;;;;;24390:48:0;;-1:-1:-1;;;24390:48:0;24333:105;:158;;;-1:-1:-1;;;;;;;;;;13567:40:0;;;24455:36;24313:178;24194:305;-1:-1:-1;;24194:305:0:o;48282:166::-;48355:5;;48321:4;;-1:-1:-1;;;;;48355:5:0;48341:10;:19;48338:66;;;-1:-1:-1;48383:9:0;;;48282:166::o;48338:66::-;-1:-1:-1;48429:10:0;48421:19;;;;:7;:19;;;;;;;48282:166::o;27579:100::-;27633:13;27666:5;27659:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27579:100;:::o;50494:243::-;44582:5;;-1:-1:-1;;;;;44582:5:0;44568:10;:19;44560:42;;;;-1:-1:-1;;;44560:42:0;;;;;;;:::i;:::-;;;;;;;;;50628:9:::1;::::0;44382:1;23697:12;23487:7;23681:13;:28;-1:-1:-1;;23681:46:0;50601:23:::1;::::0;:7;:23:::1;:::i;:::-;:36;;50593:72;;;::::0;-1:-1:-1;;;50593:72:0;;12744:2:1;50593:72:0::1;::::0;::::1;12726:21:1::0;12783:2;12763:18;;;12756:30;-1:-1:-1;;;12802:18:1;;;12795:53;12865:18;;50593:72:0::1;12716:173:1::0;50593:72:0::1;50676:14;:24:::0;;;;50711:9:::1;:18:::0;50494:243::o;29090:204::-;29158:7;29183:16;29191:7;29183;:16::i;:::-;29178:64;;29208:34;;-1:-1:-1;;;29208:34:0;;;;;;;;;;;29178:64;-1:-1:-1;29262:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29262:24:0;;29090:204::o;53824:176::-;52936:4;52960:17;;;:8;:17;;;;;;;;53905:27;53897:56;;;;-1:-1:-1;;;53897:56:0;;;;;;;:::i;:::-;53964:28;53980:2;53984:7;53964:15;:28::i;:::-;53824:176;;:::o;47769:507::-;44582:5;;-1:-1:-1;;;;;44582:5:0;44568:10;:19;44560:42;;;;-1:-1:-1;;;44560:42:0;;;;;;;:::i;:::-;47870:13:::1;::::0;::::1;;47869:14;47861:44;;;;-1:-1:-1::0;;;47861:44:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47924:17:0;::::1;47944:1;47924:17:::0;;;:7:::1;:17;::::0;;;;;47916:45:::1;;;::::0;-1:-1:-1;;;47916:45:0;;15618:2:1;47916:45:0::1;::::0;::::1;15600:21:1::0;15657:2;15637:18;;;15630:30;-1:-1:-1;;;15676:18:1;;;15669:41;15727:18;;47916:45:0::1;15590:161:1::0;47916:45:0::1;47996:1;47980:13;:17;47972:59;;;::::0;-1:-1:-1;;;47972:59:0;;12032:2:1;47972:59:0::1;::::0;::::1;12014:21:1::0;12071:2;12051:18;;;12044:30;12110:31;12090:18;;;12083:59;12159:18;;47972:59:0::1;12004:179:1::0;47972:59:0::1;48102:9;::::0;-1:-1:-1;;;;;48065:17:0;::::1;;::::0;;;:7:::1;:17;::::0;;;;;48050:12:::1;::::0;48085:13;;48050:32:::1;::::0;::::1;:::i;:::-;:48;;;;:::i;:::-;:61;;48042:98;;;::::0;-1:-1:-1;;;48042:98:0;;11333:2:1;48042:98:0::1;::::0;::::1;11315:21:1::0;11372:2;11352:18;;;11345:30;11411:26;11391:18;;;11384:54;11455:18;;48042:98:0::1;11305:174:1::0;48042:98:0::1;-1:-1:-1::0;;;;;48191:17:0;::::1;;::::0;;;:7:::1;:17;::::0;;;;;48176:12:::1;::::0;48211:13;;48176:32:::1;::::0;::::1;:::i;:::-;:48;;;;:::i;:::-;48161:12;:63:::0;-1:-1:-1;;;;;48235:17:0;;::::1;;::::0;;;:7:::1;:17;::::0;;;;:33;47769:507::o;44630:85::-;44582:5;;-1:-1:-1;;;;;44582:5:0;44568:10;:19;44560:42;;;;-1:-1:-1;;;44560:42:0;;;;;;;:::i;:::-;44693:5:::1;:14:::0;;-1:-1:-1;;;;;;44693:14:0::1;-1:-1:-1::0;;;;;44693:14:0;;;::::1;::::0;;;::::1;::::0;;44630:85::o;46660:448::-;44582:5;;-1:-1:-1;;;;;44582:5:0;44568:10;:19;44560:42;;;;-1:-1:-1;;;44560:42:0;;;;;;;:::i;:::-;46758:13:::1;::::0;::::1;;46757:14;46749:44;;;;-1:-1:-1::0;;;46749:44:0::1;;;;;;;:::i;:::-;46844:9;;46827:13;46812:12;;:28;;;;:::i;:::-;:41;;46804:79;;;::::0;-1:-1:-1;;;46804:79:0;;12390:2:1;46804:79:0::1;::::0;::::1;12372:21:1::0;12429:2;12409:18;;;12402:30;12468:27;12448:18;;;12441:55;12513:18;;46804:79:0::1;12362:175:1::0;46804:79:0::1;-1:-1:-1::0;;;;;46902:17:0;::::1;;::::0;;;:7:::1;:17;::::0;;;;;:22;46894:65:::1;;;::::0;-1:-1:-1;;;46894:65:0;;13096:2:1;46894:65:0::1;::::0;::::1;13078:21:1::0;13135:2;13115:18;;;13108:30;13174:32;13154:18;;;13147:60;13224:18;;46894:65:0::1;13068:180:1::0;46894:65:0::1;-1:-1:-1::0;;;;;46980:17:0;::::1;;::::0;;;:7:::1;:17;::::0;;;;:33;;;47024:12:::1;:29:::0;;47000:13;;46980:17;47024:29:::1;::::0;47000:13;;47024:29:::1;:::i;:::-;::::0;;;-1:-1:-1;;47064:21:0::1;:36:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;47064:36:0;;;;;::::1;::::0;;-1:-1:-1;;;;;;47064:36:0::1;-1:-1:-1::0;;;;;47064:36:0;;;::::1;::::0;;;::::1;::::0;;;-1:-1:-1;46660:448:0:o;53117:214::-;52936:4;52960:17;;;:8;:17;;;;;;;;53225:27;53217:56;;;;-1:-1:-1;;;53217:56:0;;;;;;;:::i;:::-;53284:39;53305:4;53311:2;53315:7;53284:20;:39::i;:::-;53117:214;;;:::o;52602:271::-;52682:10;52662:16;52670:7;52662;:16::i;:::-;-1:-1:-1;;;;;52662:30:0;;52654:74;;;;-1:-1:-1;;;52654:74:0;;15258:2:1;52654:74:0;;;15240:21:1;15297:2;15277:18;;;15270:30;15336:33;15316:18;;;15309:61;15387:18;;52654:74:0;15230:181:1;52654:74:0;52747:17;;;;:8;:17;;;;;;;;:25;;:17;:25;52739:55;;;;-1:-1:-1;;;52739:55:0;;11686:2:1;52739:55:0;;;11668:21:1;11725:2;11705:18;;;11698:30;-1:-1:-1;;;11744:18:1;;;11737:47;11801:18;;52739:55:0;11658:167:1;52739:55:0;52825:5;52805:17;;;:8;:17;;;;;;:25;;-1:-1:-1;;52805:25:0;;;52849:16;52814:7;;52849:16;;;52602:271;:::o;46377:109::-;44582:5;;46433:6;;-1:-1:-1;;;;;44582:5:0;44568:10;:19;44560:42;;;;-1:-1:-1;;;44560:42:0;;;;;;;:::i;:::-;46459:19:::1;46467:10;46459:7;:19::i;:::-;46452:26;;46377:109:::0;:::o;48658:128::-;44582:5;;48735:4;;-1:-1:-1;;;;;44582:5:0;44568:10;:19;44560:42;;;;-1:-1:-1;;;44560:42:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;48759:19:0;::::1;;::::0;;;:9:::1;:19;::::0;;;;;44613:1:::1;48658:128:::0;;;:::o;48554:98::-;44582:5;;48608:4;;-1:-1:-1;;;;;44582:5:0;44568:10;:19;44560:42;;;;-1:-1:-1;;;44560:42:0;;;;;;;:::i;:::-;-1:-1:-1;48632:12:0::1;::::0;48554:98;:::o;45459:912::-;44582:5;;-1:-1:-1;;;;;44582:5:0;44568:10;:19;44560:42;;;;-1:-1:-1;;;44560:42:0;;;;;;;:::i;:::-;45515:21:::1;:28:::0;45507:65:::1;;;::::0;-1:-1:-1;;;45507:65:0;;8170:2:1;45507:65:0::1;::::0;::::1;8152:21:1::0;8209:2;8189:18;;;8182:30;-1:-1:-1;;;8228:18:1;;;8221:50;8288:18;;45507:65:0::1;8142:170:1::0;45507:65:0::1;45601:21;45641:11:::0;45633:43:::1;;;;-1:-1:-1::0;;;45633:43:0::1;;;;;;;:::i;:::-;45714:7:::0;45687:24:::1;45732:632;45751:21;:28:::0;45749:30;::::1;45732:632;;;45847:21;:28:::0;45800:20:::1;::::0;45847:30:::1;::::0;45876:1:::1;::::0;45847:30:::1;:::i;:::-;45842:1;:35;45839:219;;;-1:-1:-1::0;45912:16:0;45839:219:::1;;;46030:12;;46020:7;45984;:33;45992:21;46014:1;45992:24;;;;;;-1:-1:-1::0;;;45992:24:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;45992:24:0::1;45984:33:::0;;;::::1;::::0;;;;;;;;;:43:::1;::::0;;::::1;:::i;:::-;:58;;;;:::i;:::-;45969:73;;45839:219;46095:1;46080:12;:16;46072:51;;;::::0;-1:-1:-1;;;46072:51:0;;9908:2:1;46072:51:0::1;::::0;::::1;9890:21:1::0;9947:2;9927:18;;;9920:30;-1:-1:-1;;;9966:18:1;;;9959:52;10028:18;;46072:51:0::1;9880:172:1::0;46072:51:0::1;46177:12;46138:9;:35;46148:21;46170:1;46148:24;;;;;;-1:-1:-1::0;;;46148:24:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;46148:24:0::1;46138:35:::0;;;::::1;::::0;;;;;;;;:51;;:35;;46148:24;46138:51:::1;::::0;;;::::1;:::i;:::-;;;;;;;;46222:12;46204:14;;:30;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;46249:32:0::1;::::0;-1:-1:-1;46269:12:0;46249:32;::::1;:::i;:::-;;;46304:21;46326:1;46304:24;;;;;;-1:-1:-1::0;;;46304:24:0::1;;;;;;;;;;::::0;;;::::1;::::0;;::::1;::::0;46296:56:::1;::::0;-1:-1:-1;;;;;46304:24:0;;::::1;::::0;46296:56;::::1;;;::::0;46339:12;;46296:56;46304:24;46296:56;46339:12;46304:24;46296:56;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;45732:632;45781:3;;;;;:::i;:::-;;;;45732:632;;47114:649:::0;44582:5;;-1:-1:-1;;;;;44582:5:0;44568:10;:19;44560:42;;;;-1:-1:-1;;;44560:42:0;;;;;;;:::i;:::-;47192:13:::1;::::0;::::1;;47191:14;47183:44;;;;-1:-1:-1::0;;;47183:44:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47246:17:0;::::1;47266:1;47246:17:::0;;;:7:::1;:17;::::0;;;;;47238:45:::1;;;::::0;-1:-1:-1;;;47238:45:0;;15618:2:1;47238:45:0::1;::::0;::::1;15600:21:1::0;15657:2;15637:18;;;15630:30;-1:-1:-1;;;15676:18:1;;;15669:41;15727:18;;47238:45:0::1;15590:161:1::0;47238:45:0::1;-1:-1:-1::0;;;;;47310:17:0;::::1;;::::0;;;:7:::1;:17;::::0;;;;;47294:12:::1;:33:::0;;47310:17;;47294:12;;:33:::1;::::0;47310:17;;47294:33:::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;47338:17:0;::::1;47358:1;47338:17:::0;;;:7:::1;:17;::::0;;;;:21;;;47414::::1;:28:::0;:30:::1;::::0;47443:1:::1;::::0;47414:30:::1;:::i;:::-;-1:-1:-1::0;;;;;47400:45:0::1;;;;;-1:-1:-1::0;;;47400:45:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;47400:45:0::1;;47372:73;;47456:13;47488:9:::0;47484:227:::1;47505:21;:28:::0;47501:32;::::1;47484:227;;;47585:8;-1:-1:-1::0;;;;;47557:36:0::1;:21;47579:1;47557:24;;;;;;-1:-1:-1::0;;;47557:24:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;47557:24:0::1;:36;47554:146;;47631:21;47653:1;47631:24;;;;;;-1:-1:-1::0;;;47631:24:0::1;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;47631:24:0::1;47613:8;47622:5;47613:15;;;;;;-1:-1:-1::0;;;47613:15:0::1;;;;;;;;;-1:-1:-1::0;;;;;47613:42:0;;::::1;:15;::::0;;::::1;::::0;;;;;;;:42;47674:10:::1;47683:1;47674:10:::0;::::1;:::i;:::-;;;47554:146;47535:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47484:227;;;-1:-1:-1::0;47723:32:0;;::::1;::::0;:21:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;;44613:1;;47114:649:::0;:::o;53337:226::-;52936:4;52960:17;;;:8;:17;;;;;;;;53449:27;53441:56;;;;-1:-1:-1;;;53441:56:0;;;;;;;:::i;:::-;53508:47;53533:4;53539:2;53543:7;53508:47;;;;;;;;;;;;:24;:47::i;49420:98::-;44582:5;;-1:-1:-1;;;;;44582:5:0;44568:10;:19;44560:42;;;;-1:-1:-1;;;44560:42:0;;;;;;;:::i;:::-;49488:10:::1;:22:::0;;;::::1;;;;-1:-1:-1::0;;49488:22:0;;::::1;::::0;;;::::1;::::0;;49420:98::o;49327:87::-;44582:5;;-1:-1:-1;;;;;44582:5:0;44568:10;:19;44560:42;;;;-1:-1:-1;;;44560:42:0;;;;;;;:::i;:::-;49393:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;50281:207::-:0;44582:5;;-1:-1:-1;;;;;44582:5:0;44568:10;:19;44560:42;;;;-1:-1:-1;;;44560:42:0;;;;;;;:::i;:::-;50408:9:::1;;50389:15;:13;:15::i;:::-;-1:-1:-1::0;;;;;50363:41:0::1;50373:13;44382:1:::0;23697:12;23487:7;23681:13;-1:-1:-1;;23681:28:0;;;:46;;23443:303;50373:13:::1;50363:23;::::0;:7;:23:::1;:::i;:::-;:41;;;;:::i;:::-;:54;;50355:90;;;::::0;-1:-1:-1;;;50355:90:0;;12744:2:1;50355:90:0::1;::::0;::::1;12726:21:1::0;12783:2;12763:18;;;12756:30;-1:-1:-1;;;12802:18:1;;;12795:53;12865:18;;50355:90:0::1;12716:173:1::0;50355:90:0::1;50456:14;:24:::0;50281:207::o;27388:124::-;27452:7;27479:20;27491:7;27479:11;:20::i;:::-;:25;;27388:124;-1:-1:-1;;27388:124:0:o;49524:101::-;44582:5;;-1:-1:-1;;;;;44582:5:0;44568:10;:19;44560:42;;;;-1:-1:-1;;;44560:42:0;;;;;;;:::i;:::-;49597:20;;::::1;::::0;:14:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;41732:21::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24563:206::-;24627:7;-1:-1:-1;;;;;24651:19:0;;24647:60;;24679:28;;-1:-1:-1;;;24679:28:0;;;;;;;;;;;24647:60;-1:-1:-1;;;;;;24733:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;24733:27:0;;24563:206::o;42035:28::-;;;;;;;:::i;44721:280::-;44582:5;;-1:-1:-1;;;;;44582:5:0;44568:10;:19;44560:42;;;;-1:-1:-1;;;44560:42:0;;;;;;;:::i;:::-;44790:21:::1;44830:11:::0;44822:43:::1;;;;-1:-1:-1::0;;;44822:43:0::1;;;;;;;:::i;:::-;44886:10;44876:21;::::0;;;:9:::1;:21;::::0;;;;:32;;44901:7;;44876:21;:32:::1;::::0;44901:7;;44876:32:::1;:::i;:::-;;;;;;;;44938:7;44920:14;;:25;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;44956:37:0::1;::::0;44964:10:::1;::::0;44956:37;::::1;;;::::0;44985:7;;44956:37:::1;::::0;;;44985:7;44964:10;44956:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;27748:104:::0;27804:13;27837:7;27830:14;;;;;:::i;29366:279::-;-1:-1:-1;;;;;29457:24:0;;2665:10;29457:24;29453:54;;;29490:17;;-1:-1:-1;;;29490:17:0;;;;;;;;;;;29453:54;2665:10;29520:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29520:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29520:53:0;;;;;;;;;;29589:48;;7692:41:1;;;29520:42:0;;2665:10;29589:48;;7665:18:1;29589:48:0;;;;;;;29366:279;;:::o;48792:198::-;44582:5;;48867:4;;-1:-1:-1;;;;;44582:5:0;44568:10;:19;44560:42;;;;-1:-1:-1;;;44560:42:0;;;;;;;:::i;:::-;48899:5:::1;::::0;-1:-1:-1;;;;;48887:17:0;;::::1;48899:5:::0;::::1;48887:17;48884:64;;;-1:-1:-1::0;;48927:9:0::1;::::0;;48658:128::o;48884:64::-:1;-1:-1:-1::0;;;;;;48965:17:0::1;;::::0;;;:7:::1;:17;::::0;;;;;;48792:198::o;52328:268::-;52406:10;52386:16;52394:7;52386;:16::i;:::-;-1:-1:-1;;;;;52386:30:0;;52378:72;;;;-1:-1:-1;;;52378:72:0;;10616:2:1;52378:72:0;;;10598:21:1;10655:2;10635:18;;;10628:30;10694:31;10674:18;;;10667:59;10743:18;;52378:72:0;10588:179:1;52378:72:0;52469:17;;;;:8;:17;;;;;;;;:26;52461:60;;;;-1:-1:-1;;;52461:60:0;;9210:2:1;52461:60:0;;;9192:21:1;9249:2;9229:18;;;9222:30;-1:-1:-1;;;9268:18:1;;;9261:51;9329:18;;52461:60:0;9182:171:1;52461:60:0;52532:17;;;;:8;:17;;;;;;:24;;-1:-1:-1;;52532:24:0;52552:4;52532:24;;;52574:14;52541:7;;52574:14;;;52328:268;:::o;45007:446::-;44582:5;;-1:-1:-1;;;;;44582:5:0;44568:10;:19;44560:42;;;;-1:-1:-1;;;44560:42:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45088:22:0;::::1;45080:54;;;::::0;-1:-1:-1;;;45080:54:0;;16671:2:1;45080:54:0::1;::::0;::::1;16653:21:1::0;16710:2;16690:18;;;16683:30;-1:-1:-1;;;16729:18:1;;;16722:49;16788:18;;45080:54:0::1;16643:169:1::0;45080:54:0::1;-1:-1:-1::0;;;;;45153:25:0;::::1;45173:4;45153:25;;45145:68;;;::::0;-1:-1:-1;;;45145:68:0;;15958:2:1;45145:68:0::1;::::0;::::1;15940:21:1::0;15997:2;15977:18;;;15970:30;16036:32;16016:18;;;16009:60;16086:18;;45145:68:0::1;15930:180:1::0;45145:68:0::1;45242:21;45282:11:::0;45274:43:::1;;;;-1:-1:-1::0;;;45274:43:0::1;;;;;;;:::i;:::-;45338:10;45328:21;::::0;;;:9:::1;:21;::::0;;;;:32;;45353:7;;45328:21;:32:::1;::::0;45353:7;;45328:32:::1;:::i;:::-;;;;;;;;45390:7;45372:14;;:25;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;45408:37:0::1;::::0;45416:10:::1;::::0;45408:37;::::1;;;::::0;45437:7;;45408:37:::1;::::0;;;45437:7;45416:10;45408:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;48996:78:::0;44582:5;;-1:-1:-1;;;;;44582:5:0;44568:10;:19;44560:42;;;;-1:-1:-1;;;44560:42:0;;;;;;;:::i;:::-;49046:13:::1;:20:::0;;-1:-1:-1;;49046:20:0::1;49062:4;49046:20;::::0;;48996:78::o;53569:249::-;52936:4;52960:17;;;:8;:17;;;;;;;;53701:27;53693:56;;;;-1:-1:-1;;;53693:56:0;;;;;;;:::i;:::-;53760:50;53785:4;53791:2;53795:7;53804:5;53760:24;:50::i;49631:434::-;49704:13;49735:16;49743:7;49735;:16::i;:::-;49730:59;;49760:29;;-1:-1:-1;;;49760:29:0;;;;;;;;;;;49730:59;49806:10;;;;;;;49802:256;;49845:14;49839:28;;;;;:::i;:::-;:32;;;-1:-1:-1;49839:80:0;;;;;;;;;;;;;;;;;49898:14;49881:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;49832:87;49631:434;-1:-1:-1;;49631:434:0:o;49802:256::-;49965:7;49959:21;;;;;:::i;:::-;:26;;;-1:-1:-1;49959:87:0;;;;;;;;;;;;;;;;;50012:7;50021:18;:7;:16;:18::i;:::-;49995:45;;;;;;;;;:::i;50743:156::-;44582:5;;-1:-1:-1;;;;;44582:5:0;44568:10;:19;44560:42;;;;-1:-1:-1;;;44560:42:0;;;;;;;:::i;:::-;50833:1:::1;50823:7;:11;50815:47;;;::::0;-1:-1:-1;;;50815:47:0;;8519:2:1;50815:47:0::1;::::0;::::1;8501:21:1::0;8558:2;8538:18;;;8531:30;8597:25;8577:18;;;8570:53;8640:18;;50815:47:0::1;8491:173:1::0;50815:47:0::1;50873:8;:18:::0;50743:156::o;51004:96::-;44582:5;;-1:-1:-1;;;;;44582:5:0;44568:10;:19;44560:42;;;;-1:-1:-1;;;44560:42:0;;;;;;;:::i;:::-;51070:12:::1;:22:::0;;-1:-1:-1;;51070:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51004:96::o;50905:93::-;44582:5;;-1:-1:-1;;;;;44582:5:0;44568:10;:19;44560:42;;;;-1:-1:-1;;;44560:42:0;;;;;;;:::i;:::-;50972:9:::1;:18:::0;50905:93::o;51106:977::-;51226:5;;-1:-1:-1;;;;;51226:5:0;51212:10;:19;;;:36;;;51247:1;51235:9;:13;51212:36;51209:490;;;51272:12;;;;51264:50;;;;-1:-1:-1;;;51264:50:0;;16317:2:1;51264:50:0;;;16299:21:1;16356:2;16336:18;;;16329:30;16395:27;16375:18;;;16368:55;16440:18;;51264:50:0;16289:175:1;51264:50:0;51349:1;51337:9;;:13;51329:54;;;;-1:-1:-1;;;51329:54:0;;10259:2:1;51329:54:0;;;10241:21:1;10298:2;10278:18;;;10271:30;10337;10317:18;;;10310:58;10385:18;;51329:54:0;10231:178:1;51329:54:0;51417:8;;51406:7;-1:-1:-1;;;;;51406:19:0;;;51398:62;;;;-1:-1:-1;;;51398:62:0;;10974:2:1;51398:62:0;;;10956:21:1;11013:2;10993:18;;;10986:30;11052:32;11032:18;;;11025:60;11102:18;;51398:62:0;10946:180:1;51398:62:0;51511:1;51500:7;-1:-1:-1;;;;;51483:24:0;:14;;:24;;;;:::i;:::-;:29;;51475:80;;;;-1:-1:-1;;;51475:80:0;;14506:2:1;51475:80:0;;;14488:21:1;14545:2;14525:18;;;14518:30;14584:34;14564:18;;;14557:62;-1:-1:-1;;;14635:18:1;;;14628:36;14681:19;;51475:80:0;14478:228:1;51475:80:0;51603:7;-1:-1:-1;;;;;51591:19:0;:9;;:19;;;;:::i;:::-;51578:9;:32;;51570:61;;;;-1:-1:-1;;;51570:61:0;;14161:2:1;51570:61:0;;;14143:21:1;14200:2;14180:18;;;14173:30;-1:-1:-1;;;14219:18:1;;;14212:46;14275:18;;51570:61:0;14133:166:1;51570:61:0;51680:7;-1:-1:-1;;;;;51663:24:0;:14;;:24;;;;:::i;:::-;51646:14;:41;51209:490;51762:5;;-1:-1:-1;;;;;51762:5:0;51748:10;:19;:37;;;;-1:-1:-1;51771:9:0;:14;51748:37;51745:288;;;51827:26;51856:15;:13;:15::i;:::-;51827:44;;51917:7;-1:-1:-1;;;;;51894:30:0;:19;-1:-1:-1;;;;;51894:30:0;;;51886:75;;;;-1:-1:-1;;;51886:75:0;;13455:2:1;51886:75:0;;;13437:21:1;13494:2;13474:18;;;13467:30;13533:33;13513:18;;;13506:61;13584:18;;51886:75:0;13427:181:1;51886:75:0;51984:5;;51976:45;;-1:-1:-1;;;;;51984:5:0;51991:29;52013:7;51991:19;:29;:::i;:::-;51976:7;:45::i;:::-;51745:288;;52045:30;52055:10;52067:7;-1:-1:-1;;;;;52045:30:0;:9;:30::i;:::-;51106:977;:::o;31068:187::-;31125:4;31168:7;44382:1;31149:26;;:53;;;;;31189:13;;31179:7;:23;31149:53;:98;;;;-1:-1:-1;;31220:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31220:27:0;;;;31219:28;;31068:187::o;28645:379::-;28726:13;28742:24;28758:7;28742:15;:24::i;:::-;28726:40;;28787:5;-1:-1:-1;;;;;28781:11:0;:2;-1:-1:-1;;;;;28781:11:0;;28777:48;;;28801:24;;-1:-1:-1;;;28801:24:0;;;;;;;;;;;28777:48;2665:10;-1:-1:-1;;;;;28842:21:0;;;;;;:63;;-1:-1:-1;28868:37:0;28885:5;2665:10;29716:164;:::i;28868:37::-;28867:38;28842:63;28838:138;;;28929:35;;-1:-1:-1;;;28929:35:0;;;;;;;;;;;28838:138;28988:28;28997:2;29001:7;29010:5;28988:8;:28::i;29947:170::-;30081:28;30091:4;30097:2;30101:7;30081:9;:28::i;25481:179::-;25536:6;-1:-1:-1;;;;;25559:19:0;;25555:56;;25587:24;;-1:-1:-1;;;25587:24:0;;;;;;;;;;;25555:56;-1:-1:-1;;;;;;25629:19:0;;;;;:12;:19;;;;;:23;-1:-1:-1;;;25629:23:0;;-1:-1:-1;;;;;25629:23:0;;25481:179::o;30444:369::-;30611:28;30621:4;30627:2;30631:7;30611:9;:28::i;:::-;-1:-1:-1;;;;;30654:13:0;;4173:19;:23;;30654:76;;;;;30674:56;30705:4;30711:2;30715:7;30724:5;30674:30;:56::i;:::-;30673:57;30654:76;30650:156;;;30754:40;;-1:-1:-1;;;30754:40:0;;;;;;;;;;;26218:1108;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26328:7:0;;44382:1;26377:23;;:47;;;;;26411:13;;26404:4;:20;26377:47;26373:886;;;26445:31;26479:17;;;:11;:17;;;;;;;;;26445:51;;;;;;;;;-1:-1:-1;;;;;26445:51:0;;;;-1:-1:-1;;;26445:51:0;;-1:-1:-1;;;;;26445:51:0;;;;;;;;-1:-1:-1;;;26445:51:0;;;;;;;;;;;;;;26515:729;;26565:14;;-1:-1:-1;;;;;26565:28:0;;26561:101;;26629:9;26218:1108;-1:-1:-1;;;26218:1108:0:o;26561:101::-;-1:-1:-1;;;27004:6:0;27049:17;;;;:11;:17;;;;;;;;;27037:29;;;;;;;;;-1:-1:-1;;;;;27037:29:0;;;;;-1:-1:-1;;;27037:29:0;;-1:-1:-1;;;;;27037:29:0;;;;;;;;-1:-1:-1;;;27037:29:0;;;;;;;;;;;;;27097:28;27093:109;;27165:9;26218:1108;-1:-1:-1;;;26218:1108:0:o;27093:109::-;26964:261;;;26373:886;;27287:31;;-1:-1:-1;;;27287:31:0;;;;;;;;;;;286:723;342:13;563:10;559:53;;-1:-1:-1;;590:10:0;;;;;;;;;;;;-1:-1:-1;;;590:10:0;;;;;286:723::o;559:53::-;637:5;622:12;678:78;685:9;;678:78;;711:8;;;;:::i;:::-;;-1:-1:-1;734:10:0;;-1:-1:-1;742:2:0;734:10;;:::i;:::-;;;678:78;;;766:19;798:6;-1:-1:-1;;;;;788:17:0;;;;;-1:-1:-1;;;788:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;788:17:0;;766:39;;816:154;823:10;;816:154;;850:11;860:1;850:11;;:::i;:::-;;-1:-1:-1;919:10:0;927:2;919:5;:10;:::i;:::-;906:24;;:2;:24;:::i;:::-;893:39;;876:6;883;876:14;;;;;;-1:-1:-1;;;876:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;876:56:0;;;;;;;;-1:-1:-1;947:11:0;956:2;947:11;;:::i;:::-;;;816:154;;;994:6;286:723;-1:-1:-1;;;;286:723:0:o;25848:168::-;-1:-1:-1;;;;;25916:19:0;;25912:56;;25944:24;;-1:-1:-1;;;25944:24:0;;;;;;;;;;;25912:56;-1:-1:-1;;;;;25979:19:0;;;;;;;:12;:19;;;;;:29;;-1:-1:-1;;;;;25979:29:0;;;-1:-1:-1;;;25979:29:0;-1:-1:-1;;;;;25979:29:0;;;;;;;;;25848:168::o;31263:104::-;31332:27;31342:2;31346:8;31332:27;;;;;;;;;;;;:9;:27::i;38679:196::-;38794:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;38794:29:0;-1:-1:-1;;;;;38794:29:0;;;;;;;;;38839:28;;38794:24;;38839:28;;;;;;;38679:196;;;:::o;34181:2112::-;34296:35;34334:20;34346:7;34334:11;:20::i;:::-;34409:18;;34296:58;;-1:-1:-1;34367:22:0;;-1:-1:-1;;;;;34393:34:0;2665:10;-1:-1:-1;;;;;34393:34:0;;:101;;;-1:-1:-1;34461:18:0;;34444:50;;2665:10;29716:164;:::i;34444:50::-;34393:154;;;-1:-1:-1;2665:10:0;34511:20;34523:7;34511:11;:20::i;:::-;-1:-1:-1;;;;;34511:36:0;;34393:154;34367:181;;34566:17;34561:66;;34592:35;;-1:-1:-1;;;34592:35:0;;;;;;;;;;;34561:66;34664:4;-1:-1:-1;;;;;34642:26:0;:13;:18;;;-1:-1:-1;;;;;34642:26:0;;34638:67;;34677:28;;-1:-1:-1;;;34677:28:0;;;;;;;;;;;34638:67;-1:-1:-1;;;;;34720:16:0;;34716:52;;34745:23;;-1:-1:-1;;;34745:23:0;;;;;;;;;;;34716:52;34889:49;34906:1;34910:7;34919:13;:18;;;34889:8;:49::i;:::-;-1:-1:-1;;;;;35234:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35234:31:0;;;-1:-1:-1;;;;;35234:31:0;;;-1:-1:-1;;35234:31:0;;;;;;;35280:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35280:29:0;;;;;;;;;;;35326:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;35371:61:0;;;;-1:-1:-1;;;35416:15:0;35371:61;;;;;;;;;;;35706:11;;;35736:24;;;;;:29;35706:11;;35736:29;35732:445;;35961:13;;35947:11;:27;35943:219;;;36031:18;;;35999:24;;;:11;:24;;;;;;;;:50;;36114:28;;;;-1:-1:-1;;;;;36072:70:0;-1:-1:-1;;;36072:70:0;-1:-1:-1;;;;;;36072:70:0;;;-1:-1:-1;;;;;35999:50:0;;;36072:70;;;;;;;35943:219;34181:2112;36224:7;36220:2;-1:-1:-1;;;;;36205:27:0;36214:4;-1:-1:-1;;;;;36205:27:0;;;;;;;;;;;36243:42;34181:2112;;;;;:::o;39367:667::-;39551:72;;-1:-1:-1;;;39551:72:0;;39530:4;;-1:-1:-1;;;;;39551:36:0;;;;;:72;;2665:10;;39602:4;;39608:7;;39617:5;;39551:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39551:72:0;;;;;;;;-1:-1:-1;;39551:72:0;;;;;;;;;;;;:::i;:::-;;;39547:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39785:13:0;;39781:235;;39831:40;;-1:-1:-1;;;39831:40:0;;;;;;;;;;;39781:235;39974:6;39968:13;39959:6;39955:2;39951:15;39944:38;39547:480;-1:-1:-1;;;;;;39670:55:0;-1:-1:-1;;;39670:55:0;;-1:-1:-1;39367:667:0;;;;;;:::o;31730:163::-;31853:32;31859:2;31863:8;31873:5;31880:4;32291:20;32314:13;-1:-1:-1;;;;;32342:16:0;;32338:48;;32367:19;;-1:-1:-1;;;32367:19:0;;;;;;;;;;;32338:48;32401:13;32397:44;;32423:18;;-1:-1:-1;;;32423:18:0;;;;;;;;;;;32397:44;-1:-1:-1;;;;;32792:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32851:49:0;;-1:-1:-1;;;;;32792:44:0;;;;;;;32851:49;;;;-1:-1:-1;;32792:44:0;;;;;;32851:49;;;;;;;;;;;;;;;;32917:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;32967:66:0;;;;-1:-1:-1;;;33017:15:0;32967:66;;;;;;;;;;32917:25;33114:23;;;33158:4;:23;;;;-1:-1:-1;;;;;;33166:13:0;;4173:19;:23;;33166:15;33154:641;;;33202:314;33233:38;;33258:12;;-1:-1:-1;;;;;33233:38:0;;;33250:1;;33233:38;;33250:1;;33233:38;33299:69;33338:1;33342:2;33346:14;;;;;;33362:5;33299:30;:69::i;:::-;33294:174;;33404:40;;-1:-1:-1;;;33404:40:0;;;;;;;;;;;33294:174;33511:3;33495:12;:19;;33202:314;;33597:12;33580:13;;:29;33576:43;;33611:8;;;33576:43;33154:641;;;33660:120;33691:40;;33716:14;;;;;-1:-1:-1;;;;;33691:40:0;;;33708:1;;33691:40;;33708:1;;33691:40;33775:3;33759:12;:19;;33660:120;;33154:641;-1:-1:-1;33809:13:0;:28;33859:60;47114:649;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;828:160;893:20;;949:13;;942:21;932:32;;922:2;;978:1;975;968:12;993:196;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:2;;;1126:6;1118;1111:22;1073:2;1154:29;1173:9;1154:29;:::i;:::-;1144:39;1063:126;-1:-1:-1;;;1063:126:1:o;1194:270::-;1262:6;1270;1323:2;1311:9;1302:7;1298:23;1294:32;1291:2;;;1344:6;1336;1329:22;1291:2;1372:29;1391:9;1372:29;:::i;:::-;1362:39;;1420:38;1454:2;1443:9;1439:18;1420:38;:::i;:::-;1410:48;;1281:183;;;;;:::o;1469:338::-;1546:6;1554;1562;1615:2;1603:9;1594:7;1590:23;1586:32;1583:2;;;1636:6;1628;1621:22;1583:2;1664:29;1683:9;1664:29;:::i;:::-;1654:39;;1712:38;1746:2;1735:9;1731:18;1712:38;:::i;:::-;1702:48;;1797:2;1786:9;1782:18;1769:32;1759:42;;1573:234;;;;;:::o;1812:696::-;1907:6;1915;1923;1931;1984:3;1972:9;1963:7;1959:23;1955:33;1952:2;;;2006:6;1998;1991:22;1952:2;2034:29;2053:9;2034:29;:::i;:::-;2024:39;;2082:38;2116:2;2105:9;2101:18;2082:38;:::i;:::-;2072:48;;2167:2;2156:9;2152:18;2139:32;2129:42;;2222:2;2211:9;2207:18;2194:32;-1:-1:-1;;;;;2241:6:1;2238:30;2235:2;;;2286:6;2278;2271:22;2235:2;2314:22;;2367:4;2359:13;;2355:27;-1:-1:-1;2345:2:1;;2401:6;2393;2386:22;2345:2;2429:73;2494:7;2489:2;2476:16;2471:2;2467;2463:11;2429:73;:::i;:::-;2419:83;;;1942:566;;;;;;;:::o;2513:264::-;2578:6;2586;2639:2;2627:9;2618:7;2614:23;2610:32;2607:2;;;2660:6;2652;2645:22;2607:2;2688:29;2707:9;2688:29;:::i;:::-;2678:39;;2736:35;2767:2;2756:9;2752:18;2736:35;:::i;2782:264::-;2850:6;2858;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:29;2979:9;2960:29;:::i;:::-;2950:39;3036:2;3021:18;;;;3008:32;;-1:-1:-1;;;2869:177:1:o;3051:190::-;3107:6;3160:2;3148:9;3139:7;3135:23;3131:32;3128:2;;;3181:6;3173;3166:22;3128:2;3209:26;3225:9;3209:26;:::i;3246:255::-;3304:6;3357:2;3345:9;3336:7;3332:23;3328:32;3325:2;;;3378:6;3370;3363:22;3325:2;3422:9;3409:23;3441:30;3465:5;3441:30;:::i;3506:259::-;3575:6;3628:2;3616:9;3607:7;3603:23;3599:32;3596:2;;;3649:6;3641;3634:22;3596:2;3686:9;3680:16;3705:30;3729:5;3705:30;:::i;3770:480::-;3839:6;3892:2;3880:9;3871:7;3867:23;3863:32;3860:2;;;3913:6;3905;3898:22;3860:2;3958:9;3945:23;-1:-1:-1;;;;;3983:6:1;3980:30;3977:2;;;4028:6;4020;4013:22;3977:2;4056:22;;4109:4;4101:13;;4097:27;-1:-1:-1;4087:2:1;;4143:6;4135;4128:22;4087:2;4171:73;4236:7;4231:2;4218:16;4213:2;4209;4205:11;4171:73;:::i;4255:190::-;4314:6;4367:2;4355:9;4346:7;4342:23;4338:32;4335:2;;;4388:6;4380;4373:22;4335:2;-1:-1:-1;4416:23:1;;4325:120;-1:-1:-1;4325:120:1:o;4450:258::-;4518:6;4526;4579:2;4567:9;4558:7;4554:23;4550:32;4547:2;;;4600:6;4592;4585:22;4547:2;-1:-1:-1;;4628:23:1;;;4698:2;4683:18;;;4670:32;;-1:-1:-1;4537:171:1:o;4713:304::-;4771:6;4824:2;4812:9;4803:7;4799:23;4795:32;4792:2;;;4845:6;4837;4830:22;4792:2;4889:9;4876:23;-1:-1:-1;;;;;4932:5:1;4928:30;4921:5;4918:41;4908:2;;4978:6;4970;4963:22;5022:257;5063:3;5101:5;5095:12;5128:6;5123:3;5116:19;5144:63;5200:6;5193:4;5188:3;5184:14;5177:4;5170:5;5166:16;5144:63;:::i;:::-;5261:2;5240:15;-1:-1:-1;;5236:29:1;5227:39;;;;5268:4;5223:50;;5071:208;-1:-1:-1;;5071:208:1:o;5284:979::-;5369:12;;5334:3;;5426:1;5446:18;;;;5499;;;;5526:2;;5580:4;5572:6;5568:17;5558:27;;5526:2;5606;5654;5646:6;5643:14;5623:18;5620:38;5617:2;;;-1:-1:-1;;;5681:33:1;;5737:4;5734:1;5727:15;5767:4;5688:3;5755:17;5617:2;5798:18;5825:104;;;;5943:1;5938:319;;;;5791:466;;5825:104;-1:-1:-1;;5858:24:1;;5846:37;;5903:16;;;;-1:-1:-1;5825:104:1;;5938:319;17251:4;17270:17;;;17320:4;17304:21;;6032:1;6046:165;6060:6;6057:1;6054:13;6046:165;;;6138:14;;6125:11;;;6118:35;6181:16;;;;6075:10;;6046:165;;;6050:3;;6240:6;6235:3;6231:16;6224:23;;5791:466;;;;;;;5342:921;;;;:::o;6268:197::-;6396:3;6421:38;6455:3;6447:6;6421:38;:::i;6470:376::-;6646:3;6674:38;6708:3;6700:6;6674:38;:::i;:::-;6741:6;6735:13;6757:52;6802:6;6798:2;6791:4;6783:6;6779:17;6757:52;:::i;:::-;6825:15;;6654:192;-1:-1:-1;;;;6654:192:1:o;7059:488::-;-1:-1:-1;;;;;7328:15:1;;;7310:34;;7380:15;;7375:2;7360:18;;7353:43;7427:2;7412:18;;7405:34;;;7475:3;7470:2;7455:18;;7448:31;;;7253:4;;7496:45;;7521:19;;7513:6;7496:45;:::i;:::-;7488:53;7262:285;-1:-1:-1;;;;;;7262:285:1:o;7744:219::-;7893:2;7882:9;7875:21;7856:4;7913:44;7953:2;7942:9;7938:18;7930:6;7913:44;:::i;8669:334::-;8871:2;8853:21;;;8910:2;8890:18;;;8883:30;-1:-1:-1;;;8944:2:1;8929:18;;8922:40;8994:2;8979:18;;8843:160::o;9358:343::-;9560:2;9542:21;;;9599:2;9579:18;;;9572:30;-1:-1:-1;;;9633:2:1;9618:18;;9611:49;9692:2;9677:18;;9532:169::o;13613:341::-;13815:2;13797:21;;;13854:2;13834:18;;;13827:30;-1:-1:-1;;;13888:2:1;13873:18;;13866:47;13945:2;13930:18;;13787:167::o;14711:340::-;14913:2;14895:21;;;14952:2;14932:18;;;14925:30;-1:-1:-1;;;14986:2:1;14971:18;;14964:46;15042:2;15027:18;;14885:166::o;17336:128::-;17376:3;17407:1;17403:6;17400:1;17397:13;17394:2;;;17413:18;;:::i;:::-;-1:-1:-1;17449:9:1;;17384:80::o;17469:120::-;17509:1;17535;17525:2;;17540:18;;:::i;:::-;-1:-1:-1;17574:9:1;;17515:74::o;17594:168::-;17634:7;17700:1;17696;17692:6;17688:14;17685:1;17682:21;17677:1;17670:9;17663:17;17659:45;17656:2;;;17707:18;;:::i;:::-;-1:-1:-1;17747:9:1;;17646:116::o;17767:125::-;17807:4;17835:1;17832;17829:8;17826:2;;;17840:18;;:::i;:::-;-1:-1:-1;17877:9:1;;17816:76::o;17897:229::-;17936:4;-1:-1:-1;;;;;18033:10:1;;;;18003;;18055:12;;;18052:2;;;18070:18;;:::i;:::-;18107:13;;17945:181;-1:-1:-1;;;17945:181:1:o;18131:258::-;18203:1;18213:113;18227:6;18224:1;18221:13;18213:113;;;18303:11;;;18297:18;18284:11;;;18277:39;18249:2;18242:10;18213:113;;;18344:6;18341:1;18338:13;18335:2;;;-1:-1:-1;;18379:1:1;18361:16;;18354:27;18184:205::o;18394:380::-;18473:1;18469:12;;;;18516;;;18537:2;;18591:4;18583:6;18579:17;18569:27;;18537:2;18644;18636:6;18633:14;18613:18;18610:38;18607:2;;;18690:10;18685:3;18681:20;18678:1;18671:31;18725:4;18722:1;18715:15;18753:4;18750:1;18743:15;18607:2;;18449:325;;;:::o;18779:135::-;18818:3;-1:-1:-1;;18839:17:1;;18836:2;;;18859:18;;:::i;:::-;-1:-1:-1;18906:1:1;18895:13;;18826:88::o;18919:112::-;18951:1;18977;18967:2;;18982:18;;:::i;:::-;-1:-1:-1;19016:9:1;;18957:74::o;19036:127::-;19097:10;19092:3;19088:20;19085:1;19078:31;19128:4;19125:1;19118:15;19152:4;19149:1;19142:15;19168:127;19229:10;19224:3;19220:20;19217:1;19210:31;19260:4;19257:1;19250:15;19284:4;19281:1;19274:15;19300:127;19361:10;19356:3;19352:20;19349:1;19342:31;19392:4;19389:1;19382:15;19416:4;19413:1;19406:15;19432:131;-1:-1:-1;;;;;;19506:32:1;;19496:43;;19486:2;;19553:1;19550;19543:12

Swarm Source

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