ETH Price: $3,029.86 (+0.20%)
Gas: 3 Gwei

Token

y00ts DickButts (YDB)
 

Overview

Max Total Supply

10,000 YDB

Holders

1,283

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
hobbleddad.eth
Balance
1 YDB
0xe09A44EB4495C05dD1cB983dF39925EECE33c80b
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:
y00tsDickButts

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-13
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;



/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */



// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;

// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol)


pragma solidity ^0.8.0;



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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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



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

pragma solidity ^0.8.0;


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


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

pragma solidity ^0.8.0;

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

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

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

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

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



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

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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


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

pragma solidity ^0.8.0;


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

pragma solidity ^0.8.0;

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

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



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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;


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

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

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



pragma solidity ^0.8.0;


contract ClaimBitmap {
    uint256[] public claimedBitmap;

    /**
     * Cannot reallocate memory if initialized
     */
    error BitmapAlreadyInitialized();

    /**
     * @notice emitted when an account has claimed a token id
     */
    event ClaimedForTokenId(uint256 indexed tokenId);

    /**
     * @notice emitted when an account has used token id for Free Claim
     */
    event UsedForFreeClaimTokenId(uint256 indexed tokenId);

    /**
     * @notice initialize the claim bitmap array
     * @param maximumTokens the maximum amount of tokens
     */
    function _initializeBitmap(uint256 maximumTokens) internal {
        if (claimedBitmap.length != 0) revert BitmapAlreadyInitialized();

        uint256 bitMapSize = Math.ceilDiv(maximumTokens, 256);
        claimedBitmap = new uint256[](bitMapSize);
    }

    /**
     * @notice checks to see if a token id has been claimed
     * @param tokenId the token id
     */
    function isClaimed(uint256 tokenId) public view returns (bool) {
        uint256 claimedWordIndex = tokenId / 256;
        uint256 claimedBitIndex = tokenId % 256;
        uint256 claimedWord = claimedBitmap[claimedWordIndex];
        uint256 mask = (1 << claimedBitIndex);

        return claimedWord & mask == mask;
    }

    /**
     * @notice sets the token id as claimed
     * @param tokenId the token id
     */
    function _setClaimed(uint256 tokenId) internal {
        uint256 claimedWordIndex = tokenId / 256;
        uint256 claimedBitIndex = tokenId % 256;
        claimedBitmap[claimedWordIndex] = claimedBitmap[claimedWordIndex] | (1 << claimedBitIndex);

        emit ClaimedForTokenId(tokenId);
    }

}




pragma solidity ^0.8.0;


contract MerkleDistributorV2 {
    bytes32 public merkleRoot;
    bool private allowListActive = false;

    mapping(address => uint256) private _allowListNumMinted;

    /**
     * allow list is not active
     */
    error AllowListIsNotActive();

    /**
     * cannot mint if not on allow list
     */
    error NotOnAllowList();

    /**
     * cannot mint past number of tokens allotted
     */
    error PurchaseWouldExceedMaximumAllowListMint();

    /**
     * @dev emitted when an account has claimed some tokens
     */
    event Claimed(address indexed account, uint256 amount);

    /**
     * @dev emitted when the merkle root has changed
     */
    event MerkleRootChanged(bytes32 merkleRoot);

    /**
     * @notice throws when allow list is not active
     */
    modifier isAllowListActive() {
        if (!allowListActive) revert AllowListIsNotActive();
        _;
    }

    /**
     * @notice sets the state of the allow list
     * @param allowListActive_ the state of the allow list
     */
    function _setAllowListActive(bool allowListActive_) internal virtual {
        allowListActive = allowListActive_;
    }

    /**
     * @notice sets the merkle root
     * @param merkleRoot_ the merkle root
     */
    function _setAllowList(bytes32 merkleRoot_) internal virtual {
        merkleRoot = merkleRoot_;

        emit MerkleRootChanged(merkleRoot);
    }

    /**
     * @notice adds the number of tokens to the incoming address
     * @param to the address
     * @param numberOfTokens the number of tokens to be minted
     */
    function _setAllowListMinted(address to, uint256 numberOfTokens) internal virtual {
        _allowListNumMinted[to] += numberOfTokens;

        emit Claimed(to, numberOfTokens);
    }


}


// OpenZeppelin Contracts (last updated v4.5.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a / b + (a % b == 0 ? 0 : 1);
    }

    function floorDiv(uint256 a, uint256 b) internal pure returns (uint256){
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a / b + (a % b == 0 ? 0 : 0);
    }
}


// OpenZeppelin Contracts (last updated v4.5.0) (token/common/ERC2981.sol)

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

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;


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

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

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

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

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

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

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

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

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

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

        _revokeRole(role, account);
    }

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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


// Creator: Chiru Labs

pragma solidity ^0.8.4;


error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
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 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) {
        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) {
        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) {
        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 {
        _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 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 virtual 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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, 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 {}
}


pragma solidity ^0.8.7;

contract y00tsDickButts is ERC721A, Ownable, ReentrancyGuard,MerkleDistributorV2,ClaimBitmap,AccessControl {

    bytes32 public constant SUPPORT_ROLE = keccak256("SUPPORT");
    uint256 public MAX_PUBLIC_PER_TX = 10;
    uint256 public MAX_CLAIM_PER_TX = 5;
    uint256 public MAX_RESERVE_SUPPLY = 10;
    uint256 public MAX_PUBLIC_SUPPLY = 5000;
    uint256 public ReservedForYYCHolders = 5000;
    uint256 public maxSupply = 10000;
    uint256 public price = 0.0033 ether;
    uint256 public claimedAmount = 0;

  
    mapping(uint256 => uint256) private claimedBitMap;

    string public provenance;
    string private _baseURIextended;

    uint256 public reserveSupply = MAX_RESERVE_SUPPLY;
    uint256 public maxPublicSupply = MAX_PUBLIC_SUPPLY;

    IERC721Enumerable public immutable baseContractAddress;
    address payable public immutable shareholderAddress;
    bool public saleActive;
    bool public claimActive;

    /**
     * cannot initialize shareholder address to 0
     */
    error ShareholderAddressIsZeroAddress();

    /**
     * cannot set base contract address if not ERC721Enumerable
     */
    error ContractIsNotERC721Enumerable();

    /**
     * cannot exceed maximum supply
     */
    error PurchaseWouldExceedMaximumSupply();

    /**
     * cannot mint if public sale is not active
     */
    error PublicSaleIsNotActive();

    /**
     * cannot exceed maximum reserve supply
     */
    error ExceedMaximumReserveSupply();

     /**
     * cannot exceed maximum public supply
     */
    error ExceedMaximumPublicSupply();

    /**
     * ether value sent is not correct
     */
    error EtherValueSentIsNotCorrect();

    /**
     * no YYC left to claim
     */
    error NoYYCOwned();

    /**
     * cannot exceed maximum public mint
     */
    error PurchaseWouldExceedMaximumPublicMint();


    /**
     * cannot exceed maximum public mint
     */
    error PurchaseWouldExceedMaximumClaimMint();

    /**
     * withdraw failed
     */
    error WithdrawFailed();

    /**
     * cannot mint if mint pass claim is not active
     */
    error ClaimIsNotActive();

    /**
     * cannot claim if token id has already been claimed
     */
    error TokenIdAlreadyClaimed(uint256 tokenId);

    /**
     * cannot exceed claim supply
     */
    error PurchaseWouldExceedClaimSupply();

      /**
     * cannot exceed available claim
     */
    error PurchaseWouldExceedAvailableClaim();

    /**
     * callee is not the owner of the token id in the base contract
     */
    error NotOwnerOfMintPass(uint256 tokenId);

    /**
     * cannot set the price to 0
     */
    error SalePriceCannotBeZero();

    /**
     * cannot set supply to less than the total supply
     */
    error MaxSupplyLessThanTotalSupply();

    /**
     * cannot change states when minting is enabled
     */
    error MintingIsEnabled();

    /**
     * @notice constructor
     * @param shareholderAddress_ the shareholder address
     * @param contractAddress the contract address for mint passes
     */
    constructor(address payable shareholderAddress_, address contractAddress) ERC721A("y00ts DickButts", "YDB") {
        if (shareholderAddress_ == address(0)) revert ShareholderAddressIsZeroAddress();
        if (!IERC721Enumerable(contractAddress).supportsInterface(0x780e9d63)) revert ContractIsNotERC721Enumerable();

        // set immutable variables
        shareholderAddress = shareholderAddress_;
        baseContractAddress = IERC721Enumerable(contractAddress);

        // setup
        _initializeBitmap(IERC721Enumerable(contractAddress).totalSupply());
        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _setupRole(SUPPORT_ROLE, msg.sender);
    }

    /**
     * @notice checks to see if amount of tokens to be minted would exceed the maximum supply allowed
     * @param numberOfTokens the number of tokens to be minted
     */
    modifier supplyAvailable(uint256 numberOfTokens) {
        if (totalSupply() + numberOfTokens > maxSupply) revert PurchaseWouldExceedMaximumSupply();
        _;
    }

    /**
     * @notice checks to see whether saleActive is true
     */
    modifier isPublicSaleActive() {
        if (!saleActive) revert PublicSaleIsNotActive();
        _;
    }

    /**
     * @notice checks to see whether claimActive is true
     */
    modifier isClaimActive() {
        if (!claimActive) revert ClaimIsNotActive();
        _;
    }

    /**
     * @notice emitted when the price has been changed
     */
    event PriceChanged(uint256 newPrice);

    /**
     * @notice emitted when the max supply has been changed
     */
    event MaxSupplyChanged(uint256 newMaxSupply);

    ////////////////
    // admin
    ////////////////
    /**
     * @notice reserves a number of tokens
     * @param numberOfTokens the number of tokens to be minted
     */
    function devMint(uint256 numberOfTokens)
        external
        onlyRole(SUPPORT_ROLE)
        supplyAvailable(numberOfTokens)
        nonReentrant
    {
        uint256 reserveSupplyRemaining = reserveSupply;

        if (reserveSupplyRemaining < numberOfTokens) revert ExceedMaximumReserveSupply();
        

        reserveSupply = reserveSupplyRemaining - numberOfTokens;
        _safeMint(msg.sender, numberOfTokens);
    }
    

    /**
     * @notice allows public sale minting
     * @param state the state of the public sale
     */
    function setSaleActive(bool state) external onlyRole(SUPPORT_ROLE) {
        saleActive = state;
    }

    /**
     * @notice allows claiming of tokens
     * @param state the state of allowing claims to be made
     */
    function setClaimActive(bool state) external onlyRole(SUPPORT_ROLE) {
        claimActive = state;
    }

    /**
     * @notice set a new token price in wei
     * @param newPriceInWei the new price to set, per token, in wei
     */
    function setPrice(uint256 newPriceInWei) external onlyRole(SUPPORT_ROLE) {
       
        price = newPriceInWei;

        emit PriceChanged(price);
    }
  

    function setReserved(uint256 _MaxClaims) external onlyRole(SUPPORT_ROLE) {
       
        ReservedForYYCHolders = _MaxClaims;

    }


    /**
     * @notice set a new max supply
     * @param newMaxSupply the new max supply to set
     */
    function setMaxSupply(uint256 newMaxSupply) external onlyRole(SUPPORT_ROLE) {
     
        maxSupply = newMaxSupply;

        emit MaxSupplyChanged(maxSupply);
    }

    function setMaxPublicSupply(uint256 newMaxPublicSupply_) external onlyOwner {
        MAX_PUBLIC_SUPPLY = newMaxPublicSupply_;
    }

    function setMaxClaimPerTx(uint256 newClaimPerTx_) external onlyOwner {
        MAX_CLAIM_PER_TX = newClaimPerTx_;
    }

    ////////////////
    // allow list
    ////////////////
    /**
     * @notice allows minting from a list of clients
     * @param allowListActive the state of the allow list
     */
    function setAllowListActive(bool allowListActive) external onlyRole(SUPPORT_ROLE) {
        _setAllowListActive(allowListActive);
    }

    /**
     * @notice sets the merkle root for the allow list
     * @param merkleRoot the merkle root
     */
    function setAllowList(bytes32 merkleRoot) external onlyRole(SUPPORT_ROLE) {
        _setAllowList(merkleRoot);
    }

    ////////////////
    // tokens
    ////////////////
    /**
     * @notice sets the base uri for {_baseURI}
     * @param baseURI_ the base uri
     */
    function setBaseUri(string memory baseURI_) external onlyRole(SUPPORT_ROLE) {
        _baseURIextended = baseURI_;
    }


    function BaseURI() internal view virtual returns (string memory) {
        return _baseURIextended;
    }

     function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId),"ERC721Metadata: URI query for nonexistent token");
        string memory currentBaseURI = BaseURI();
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI,Strings.toString(_tokenId+1),".json"))
            : "";
    }

    /**
     * @notice sets the provenance hash
     * @param provenance_ the provenance hash
     */
    function setProvenance(string memory provenance_) external onlyRole(SUPPORT_ROLE) {
        provenance = provenance_;
    }

    /**
     * @notice See {IERC165-supportsInterface}.
     * @param interfaceId the interface id
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721A, AccessControl)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    /**
     * @notice See {ERC721-_burn}. This override additionally clears the royalty information for the token.
     * @param tokenId the token id to burn
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);
    }

    ////////////////
    // public
    ////////////////
    /**
     * @notice allow claims based on token ids, you can claim up to 2 tokens per mint pass
     * each mint pass can be used only once, i.e. claiming 1 token will exhaust a full mint pass
     * @param tokenIds array of token ids owned in the base contract
     * @param numberOfTokens the number of tokens to be minted
     */
    function claimByTokenIds(uint256[] memory tokenIds, uint256 numberOfTokens)
        public
        payable
        isClaimActive
        supplyAvailable(numberOfTokens)
        nonReentrant
    {
       // uint256 mintPasses = tokenIds.length;
       // uint256 mintPassesToClaim = Math.ceilDiv(numberOfTokens, 2);

        if (numberOfTokens > MAX_CLAIM_PER_TX) revert PurchaseWouldExceedMaximumClaimMint();

        uint256 y00tsYatchClubOwned = tokenIds.length;

        uint256 y00tsDickButtsAvailableToClaimFree = Math.floorDiv(y00tsYatchClubOwned, 2);

        //if(mintPassesToClaim > mintPasses) revert PurchaseWouldExceedClaimSupply();

        require((numberOfTokens <= y00tsDickButtsAvailableToClaimFree), "You don't have enough y00tsYC to claim a Dick");
        
        bool isFree = (numberOfTokens <= y00tsDickButtsAvailableToClaimFree);
       
        if (isFree)   
        {
            for (uint256 index; index < (2 * numberOfTokens); index++) {
            uint256 tokenId = tokenIds[index];
            if (baseContractAddress.ownerOf(tokenId) != msg.sender) revert NotOwnerOfMintPass(tokenId);
            if (isClaimed(tokenId)) revert TokenIdAlreadyClaimed(tokenId);

            _setClaimed(tokenId);    
           
            }

            claimedAmount += numberOfTokens;
            _safeMint(msg.sender, numberOfTokens);

        }
       
    }


     /**
     * @notice get all tokens owned in the base contract, then claims the tokens
     * @dev this will revert if any tokens have been claimed already
     * @param numberOfTokens the number of tokens to be minted
     */
    function claim(uint256 numberOfTokens) external payable {
        uint256[] memory tokenIds = ownerAvailableIdsToClaim(msg.sender);
        claimByTokenIds(tokenIds, numberOfTokens);
    }

  
    function freeY00tsDickButtsLeftToClaim(address owner) external view returns (uint256){ 
        uint256 baseBalance = baseContractAddress.balanceOf(owner);
        uint256 amountOwned;

        for (uint256 index ; index < baseBalance; index++) {
            if (!isClaimed(baseContractAddress.tokenOfOwnerByIndex(owner, index))) {
                amountOwned++;
            }
        }
      
        uint256 y00tsDickButtsAvailableToClaimFree = Math.floorDiv(amountOwned, 2);
        return y00tsDickButtsAvailableToClaimFree;
    }

    function costCheck() public view returns (uint256) {
        return price;
    }


    /**
     * @notice utility function to get available ids to claim
     * @param from the address to check
     */
    function ownerAvailableIdsToClaim(address from) public view returns (uint256[] memory) {
        uint256 totalYYC = baseContractAddress.balanceOf(from);
        uint256[] memory availableTokenIds = new uint256[](totalYYC);

        uint256 amountClaimable;

        for (uint256 index; index < totalYYC; index++) {
            uint256 tokenId = baseContractAddress.tokenOfOwnerByIndex(from, index);

            if (!isClaimed(tokenId)) {
                availableTokenIds[amountClaimable] = tokenId;
                amountClaimable++;
            }
        }

        uint256[] memory unclaimedTokenIds = new uint256[](amountClaimable);
        for (uint256 index; index < amountClaimable; index++) {
            unclaimedTokenIds[index] = availableTokenIds[index];
        }

        return unclaimedTokenIds;
    }

    
    /**
     * @notice allow public minting
     * @param numberOfTokens the number of tokens to be minted
     */
    function mint(uint256 numberOfTokens)
        external
        payable
        isPublicSaleActive
        supplyAvailable(numberOfTokens)
        nonReentrant
    {
        
        require((MAX_PUBLIC_SUPPLY >= numberOfTokens), "No more public Supply Available ");
        
        MAX_PUBLIC_SUPPLY = MAX_PUBLIC_SUPPLY - numberOfTokens;
        
        if (numberOfTokens > MAX_PUBLIC_PER_TX) revert PurchaseWouldExceedMaximumPublicMint();

        require(msg.value >= numberOfTokens * price, "Please send the exact ETH amount");
        

        _safeMint(msg.sender, numberOfTokens);
    }

    function burnDicks(uint256 tokenId) external onlyOwner nonReentrant {
        super._burn(tokenId);
    }
    /**
     * @notice withdraws ether from the contract to the shareholder address
     */
    function withdraw() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"shareholderAddress_","type":"address"},{"internalType":"address","name":"contractAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AllowListIsNotActive","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"BitmapAlreadyInitialized","type":"error"},{"inputs":[],"name":"ClaimIsNotActive","type":"error"},{"inputs":[],"name":"ContractIsNotERC721Enumerable","type":"error"},{"inputs":[],"name":"EtherValueSentIsNotCorrect","type":"error"},{"inputs":[],"name":"ExceedMaximumPublicSupply","type":"error"},{"inputs":[],"name":"ExceedMaximumReserveSupply","type":"error"},{"inputs":[],"name":"MaxSupplyLessThanTotalSupply","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintingIsEnabled","type":"error"},{"inputs":[],"name":"NoYYCOwned","type":"error"},{"inputs":[],"name":"NotOnAllowList","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"NotOwnerOfMintPass","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"PublicSaleIsNotActive","type":"error"},{"inputs":[],"name":"PurchaseWouldExceedAvailableClaim","type":"error"},{"inputs":[],"name":"PurchaseWouldExceedClaimSupply","type":"error"},{"inputs":[],"name":"PurchaseWouldExceedMaximumAllowListMint","type":"error"},{"inputs":[],"name":"PurchaseWouldExceedMaximumClaimMint","type":"error"},{"inputs":[],"name":"PurchaseWouldExceedMaximumPublicMint","type":"error"},{"inputs":[],"name":"PurchaseWouldExceedMaximumSupply","type":"error"},{"inputs":[],"name":"SalePriceCannotBeZero","type":"error"},{"inputs":[],"name":"ShareholderAddressIsZeroAddress","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"TokenIdAlreadyClaimed","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"WithdrawFailed","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":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ClaimedForTokenId","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"MaxSupplyChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"MerkleRootChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"PriceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"UsedForFreeClaimTokenId","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_CLAIM_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_RESERVE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ReservedForYYCHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUPPORT_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseContractAddress","outputs":[{"internalType":"contract IERC721Enumerable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burnDicks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"claimActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"claimByTokenIds","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"claimedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimedBitmap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costCheck","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"freeY00tsDickButtsLeftToClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"}],"name":"ownerAvailableIdsToClaim","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"allowListActive","type":"bool"}],"name":"setAllowListActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setClaimActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newClaimPerTx_","type":"uint256"}],"name":"setMaxClaimPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxPublicSupply_","type":"uint256"}],"name":"setMaxPublicSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPriceInWei","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenance_","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MaxClaims","type":"uint256"}],"name":"setReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shareholderAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052600b805460ff19169055600a600f8190556005601055601181905561138860128190556013819055612710601455660bb9551fc240006015556000601655601a91909155601b553480156200005857600080fd5b5060405162003b8f38038062003b8f8339810160408190526200007b916200056f565b604080518082018252600f81526e7930307473204469636b427574747360881b6020808301918252835180850190945260038452622ca22160e91b908401528151919291620000cd916002916200048c565b508051620000e39060039060208401906200048c565b50506000805550620000f533620002a5565b60016009556001600160a01b038216620001225760405163dd7155d760e01b815260040160405180910390fd5b6040516301ffc9a760e01b815263780e9d6360e01b60048201526001600160a01b038216906301ffc9a79060240160206040518083038186803b1580156200016957600080fd5b505afa1580156200017e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a49190620005ae565b620001c25760405163110ef54f60e31b815260040160405180910390fd5b6001600160601b0319606083811b821660a05282901b16608052604080516318160ddd60e01b8152905162000264916001600160a01b038416916318160ddd91600480820192602092909190829003018186803b1580156200022357600080fd5b505afa15801562000238573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025e9190620005d2565b620002f7565b6200027160003362000397565b6200029d7fd8acb51ff3d48f690a25887aaf234c4ae5a66ab9839243cd8e2b639cade0663b3362000397565b5050620006c3565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600d5415620003195760405163109e8c5360e11b815260040160405180910390fd5b60006200033482610100620003a760201b62001e4f1760201c565b9050806001600160401b0381111562000351576200035162000694565b6040519080825280602002602001820160405280156200037b578160200160208202803683370190505b5080516200039291600d916020909101906200051b565b505050565b620003a38282620003e8565b5050565b6000620003b5828462000667565b15620003c3576001620003c6565b60005b60ff16620003d5838562000613565b620003e19190620005ec565b9392505050565b6000828152600e602090815260408083206001600160a01b038516845290915290205460ff16620003a3576000828152600e602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620004483390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b8280546200049a906200062a565b90600052602060002090601f016020900481019282620004be576000855562000509565b82601f10620004d957805160ff191683800117855562000509565b8280016001018555821562000509579182015b8281111562000509578251825591602001919060010190620004ec565b506200051792915062000558565b5090565b82805482825590600052602060002090810192821562000509579160200282018281111562000509578251825591602001919060010190620004ec565b5b8082111562000517576000815560010162000559565b600080604083850312156200058357600080fd5b82516200059081620006aa565b6020840151909250620005a381620006aa565b809150509250929050565b600060208284031215620005c157600080fd5b81518015158114620003e157600080fd5b600060208284031215620005e557600080fd5b5051919050565b600082198211156200060e57634e487b7160e01b600052601160045260246000fd5b500190565b6000826200062557620006256200067e565b500490565b600181811c908216806200063f57607f821691505b602082108114156200066157634e487b7160e01b600052602260045260246000fd5b50919050565b6000826200067957620006796200067e565b500690565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114620006c057600080fd5b50565b60805160601c60a05160601c61347d6200071260003960006108a30152600081816106c001528181610f6701528181611340015281816113f201528181611557015261164e015261347d6000f3fe6080604052600436106103ad5760003560e01c806370892549116101e7578063a035b1fe1161010d578063d4a3a2ba116100a0578063e5bcf0631161006f578063e5bcf06314610a91578063e985e9c514610ab1578063f2fde38b14610afa578063ffe630b514610b1a57600080fd5b8063d4a3a2ba14610a1c578063d4a6a2fd14610a3c578063d547741f14610a5b578063d5abeb0114610a7b57600080fd5b8063a22cb465116100dc578063a22cb465146109a6578063a4a5e763146109c6578063b88d4fde146109dc578063c87b56dd146109fc57600080fd5b8063a035b1fe14610948578063a0712d681461095e578063a0bcfc7f14610971578063a217fddf1461099157600080fd5b806391b7f5ed1161018557806395d89b411161015457806395d89b41146108e75780639668ceb8146108fc5780639e34070f146109125780639f55252e1461093257600080fd5b806391b7f5ed1461085157806391d1485414610871578063943d40e71461089157806394b059ab146108c557600080fd5b806373417b09116101c157806373417b09146107d3578063841718a6146107f357806384584d07146108135780638da5cb5b1461083357600080fd5b8063708925491461077157806370a082311461079e578063715018a6146107be57600080fd5b80632eb4a7ab116102d757806342842e0e1161026a57806364b721881161023957806364b721881461070257806367e700fc1461071757806368428a1b146107375780636f8b44b01461075157600080fd5b806342842e0e1461066e5780635493e32b1461068e5780635f1ca701146106ae5780636352211e146106e257600080fd5b8063375a069a116102a6578063375a069a14610606578063379607f5146106265780633a73c58d146106395780633ccfd60b1461065957600080fd5b80632eb4a7ab1461059d5780632f2ff15d146105b3578063328beaff146105d357806336568abe146105e657600080fd5b80630f7309e81161034f578063248a9ca31161031e578063248a9ca31461052157806326a74d8e146105515780632a47f799146105675780632d6e71b61461057d57600080fd5b80630f7309e8146104b357806317879142146104c857806318160ddd146104e857806323b872dd1461050157600080fd5b806306fdde031161038b57806306fdde0314610421578063081812fc14610443578063095ea7b31461047b5780630e5ca0611461049d57600080fd5b806301ffc9a7146103b257806303d41eb6146103e7578063041a18061461040b575b600080fd5b3480156103be57600080fd5b506103d26103cd366004612fca565b610b3a565b60405190151581526020015b60405180910390f35b3480156103f357600080fd5b506103fd601a5481565b6040519081526020016103de565b34801561041757600080fd5b506103fd60105481565b34801561042d57600080fd5b50610436610b4b565b6040516103de91906131c6565b34801561044f57600080fd5b5061046361045e366004612f8c565b610bdd565b6040516001600160a01b0390911681526020016103de565b34801561048757600080fd5b5061049b610496366004612e93565b610c21565b005b3480156104a957600080fd5b506103fd60135481565b3480156104bf57600080fd5b50610436610caf565b3480156104d457600080fd5b5061049b6104e3366004612f8c565b610d3d565b3480156104f457600080fd5b50600154600054036103fd565b34801561050d57600080fd5b5061049b61051c366004612d9e565b610da9565b34801561052d57600080fd5b506103fd61053c366004612f8c565b6000908152600e602052604090206001015490565b34801561055d57600080fd5b506103fd601b5481565b34801561057357600080fd5b506103fd60125481565b34801561058957600080fd5b5061049b610598366004612f8c565b610db4565b3480156105a957600080fd5b506103fd600a5481565b3480156105bf57600080fd5b5061049b6105ce366004612fa5565b610dd3565b61049b6105e1366004612ebf565b610df9565b3480156105f257600080fd5b5061049b610601366004612fa5565b6110a3565b34801561061257600080fd5b5061049b610621366004612f8c565b611121565b61049b610634366004612f8c565b6111e2565b34801561064557600080fd5b5061049b610654366004612f71565b6111f9565b34801561066557600080fd5b5061049b611224565b34801561067a57600080fd5b5061049b610689366004612d9e565b611301565b34801561069a57600080fd5b506103fd6106a9366004612d2b565b61131c565b3480156106ba57600080fd5b506104637f000000000000000000000000000000000000000000000000000000000000000081565b3480156106ee57600080fd5b506104636106fd366004612f8c565b6114a9565b34801561070e57600080fd5b506015546103fd565b34801561072357600080fd5b506103fd610732366004612f8c565b6114bb565b34801561074357600080fd5b50601c546103d29060ff1681565b34801561075d57600080fd5b5061049b61076c366004612f8c565b6114dc565b34801561077d57600080fd5b5061079161078c366004612d2b565b611532565b6040516103de9190613182565b3480156107aa57600080fd5b506103fd6107b9366004612d2b565b6117bd565b3480156107ca57600080fd5b5061049b61180b565b3480156107df57600080fd5b5061049b6107ee366004612f71565b611841565b3480156107ff57600080fd5b5061049b61080e366004612f71565b611875565b34801561081f57600080fd5b5061049b61082e366004612f8c565b6118a2565b34801561083f57600080fd5b506008546001600160a01b0316610463565b34801561085d57600080fd5b5061049b61086c366004612f8c565b6118c4565b34801561087d57600080fd5b506103d261088c366004612fa5565b611912565b34801561089d57600080fd5b506104637f000000000000000000000000000000000000000000000000000000000000000081565b3480156108d157600080fd5b506103fd60008051602061340883398151915281565b3480156108f357600080fd5b5061043661193d565b34801561090857600080fd5b506103fd60165481565b34801561091e57600080fd5b506103d261092d366004612f8c565b61194c565b34801561093e57600080fd5b506103fd600f5481565b34801561095457600080fd5b506103fd60155481565b61049b61096c366004612f8c565b6119a1565b34801561097d57600080fd5b5061049b61098c366004613004565b611b1c565b34801561099d57600080fd5b506103fd600081565b3480156109b257600080fd5b5061049b6109c1366004612e5e565b611b48565b3480156109d257600080fd5b506103fd60115481565b3480156109e857600080fd5b5061049b6109f7366004612ddf565b611bde565b348015610a0857600080fd5b50610436610a17366004612f8c565b611c2f565b348015610a2857600080fd5b5061049b610a37366004612f8c565b611d04565b348015610a4857600080fd5b50601c546103d290610100900460ff1681565b348015610a6757600080fd5b5061049b610a76366004612fa5565b611d33565b348015610a8757600080fd5b506103fd60145481565b348015610a9d57600080fd5b5061049b610aac366004612f8c565b611d59565b348015610abd57600080fd5b506103d2610acc366004612d65565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610b0657600080fd5b5061049b610b15366004612d2b565b611d88565b348015610b2657600080fd5b5061049b610b35366004613004565b611e23565b6000610b4582611e81565b92915050565b606060028054610b5a9061331a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b869061331a565b8015610bd35780601f10610ba857610100808354040283529160200191610bd3565b820191906000526020600020905b815481529060010190602001808311610bb657829003601f168201915b5050505050905090565b6000610be882611ea6565b610c05576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610c2c826114a9565b9050806001600160a01b0316836001600160a01b03161415610c615760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610c815750610c7f8133610acc565b155b15610c9f576040516367d9dca160e11b815260040160405180910390fd5b610caa838383611ed1565b505050565b60188054610cbc9061331a565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce89061331a565b8015610d355780601f10610d0a57610100808354040283529160200191610d35565b820191906000526020600020905b815481529060010190602001808311610d1857829003601f168201915b505050505081565b6008546001600160a01b03163314610d705760405162461bcd60e51b8152600401610d67906131d9565b60405180910390fd5b60026009541415610d935760405162461bcd60e51b8152600401610d679061320e565b6002600955610da181611f2d565b506001600955565b610caa838383611f38565b600080516020613408833981519152610dcd8133612114565b50601355565b6000828152600e6020526040902060010154610def8133612114565b610caa8383612178565b601c54610100900460ff16610e2157604051633e640d4d60e11b815260040160405180910390fd5b8060145481610e336001546000540390565b610e3d9190613275565b1115610e5c5760405163246033a960e21b815260040160405180910390fd5b60026009541415610e7f5760405162461bcd60e51b8152600401610d679061320e565b6002600955601054821115610ea7576040516335fececb60e21b815260040160405180910390fd5b82516000610eb68260026121fe565b905080841115610f1e5760405162461bcd60e51b815260206004820152602d60248201527f596f7520646f6e2774206861766520656e6f756768207930307473594320746f60448201526c20636c61696d2061204469636b60981b6064820152608401610d67565b8084118015906110965760005b610f368660026132a1565b811015611073576000878281518110610f5157610f516133b0565b60200260200101519050336001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316636352211e836040518263ffffffff1660e01b8152600401610fb391815260200190565b60206040518083038186803b158015610fcb57600080fd5b505afa158015610fdf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110039190612d48565b6001600160a01b03161461102d5760405163be32a28560e01b815260048101829052602401610d67565b6110368161194c565b156110575760405163a648790560e01b815260048101829052602401610d67565b61106081612216565b508061106b81613355565b915050610f2b565b5084601660008282546110869190613275565b90915550611096905033866122a8565b5050600160095550505050565b6001600160a01b03811633146111135760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610d67565b61111d82826122c2565b5050565b60008051602061340883398151915261113a8133612114565b816014548161114c6001546000540390565b6111569190613275565b11156111755760405163246033a960e21b815260040160405180910390fd5b600260095414156111985760405162461bcd60e51b8152600401610d679061320e565b6002600955601a54838110156111c05760405162fde2a360e61b815260040160405180910390fd5b6111ca84826132c0565b601a556111d733856122a8565b505060016009555050565b60006111ed33611532565b905061111d8183610df9565b6000805160206134088339815191526112128133612114565b600b805460ff19168315151790555050565b6008546001600160a01b0316331461124e5760405162461bcd60e51b8152600401610d67906131d9565b600260095414156112715760405162461bcd60e51b8152600401610d679061320e565b6002600955604051600090339047908381818185875af1925050503d80600081146112b8576040519150601f19603f3d011682016040523d82523d6000602084013e6112bd565b606091505b5050905080610da15760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610d67565b610caa83838360405180602001604052806000815250611bde565b6040516370a0823160e01b81526001600160a01b03828116600483015260009182917f000000000000000000000000000000000000000000000000000000000000000016906370a082319060240160206040518083038186803b15801561138257600080fd5b505afa158015611396573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ba919061304c565b90506000805b8281101561149257604051632f745c5960e01b81526001600160a01b0386811660048301526024820183905261146e917f000000000000000000000000000000000000000000000000000000000000000090911690632f745c599060440160206040518083038186803b15801561143657600080fd5b505afa15801561144a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061092d919061304c565b611480578161147c81613355565b9250505b8061148a81613355565b9150506113c0565b5060006114a08260026121fe565b95945050505050565b60006114b482612329565b5192915050565b600d81815481106114cb57600080fd5b600091825260209091200154905081565b6000805160206134088339815191526114f58133612114565b60148290556040518281527f28a10a2e0b5582da7164754cb994f6214b8af6aa7f7e003305fbc09e7106c513906020015b60405180910390a15050565b6040516370a0823160e01b81526001600160a01b0382811660048301526060916000917f000000000000000000000000000000000000000000000000000000000000000016906370a082319060240160206040518083038186803b15801561159957600080fd5b505afa1580156115ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115d1919061304c565b90506000816001600160401b038111156115ed576115ed6133c6565b604051908082528060200260200182016040528015611616578160200160208202803683370190505b5090506000805b8381101561171857604051632f745c5960e01b81526001600160a01b038781166004830152602482018390526000917f000000000000000000000000000000000000000000000000000000000000000090911690632f745c599060440160206040518083038186803b15801561169257600080fd5b505afa1580156116a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ca919061304c565b90506116d58161194c565b61170557808484815181106116ec576116ec6133b0565b60209081029190910101528261170181613355565b9350505b508061171081613355565b91505061161d565b506000816001600160401b03811115611733576117336133c6565b60405190808252806020026020018201604052801561175c578160200160208202803683370190505b50905060005b828110156117b35783818151811061177c5761177c6133b0565b6020026020010151828281518110611796576117966133b0565b6020908102919091010152806117ab81613355565b915050611762565b5095945050505050565b60006001600160a01b0382166117e6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146118355760405162461bcd60e51b8152600401610d67906131d9565b61183f6000612443565b565b60008051602061340883398151915261185a8133612114565b50601c80549115156101000261ff0019909216919091179055565b60008051602061340883398151915261188e8133612114565b50601c805460ff1916911515919091179055565b6000805160206134088339815191526118bb8133612114565b61111d82612495565b6000805160206134088339815191526118dd8133612114565b60158290556040518281527fa6dc15bdb68da224c66db4b3838d9a2b205138e8cff6774e57d0af91e196d62290602001611526565b6000918252600e602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060038054610b5a9061331a565b60008061195b6101008461328d565b9050600061196b61010085613370565b90506000600d8381548110611982576119826133b0565b600091825260209091200154600190921b918216909114949350505050565b601c5460ff166119c45760405163e707b04f60e01b815260040160405180910390fd5b80601454816119d66001546000540390565b6119e09190613275565b11156119ff5760405163246033a960e21b815260040160405180910390fd5b60026009541415611a225760405162461bcd60e51b8152600401610d679061320e565b6002600955601254821115611a795760405162461bcd60e51b815260206004820181905260248201527f4e6f206d6f7265207075626c696320537570706c7920417661696c61626c65206044820152606401610d67565b81601254611a8791906132c0565b601255600f54821115611aad5760405163f43ca04b60e01b815260040160405180910390fd5b601554611aba90836132a1565b341015611b095760405162461bcd60e51b815260206004820181905260248201527f506c656173652073656e64207468652065786163742045544820616d6f756e746044820152606401610d67565b611b1333836122a8565b50506001600955565b600080516020613408833981519152611b358133612114565b8151610caa906019906020850190612c26565b6001600160a01b038216331415611b725760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611be9848484611f38565b6001600160a01b0383163b15158015611c0b5750611c09848484846124d0565b155b15611c29576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611c3a82611ea6565b611c9e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610d67565b6000611ca86125c8565b90506000815111611cc85760405180602001604052806000815250611cfd565b80611cdc611cd7856001613275565b6125d7565b604051602001611ced929190613091565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314611d2e5760405162461bcd60e51b8152600401610d67906131d9565b601055565b6000828152600e6020526040902060010154611d4f8133612114565b610caa83836122c2565b6008546001600160a01b03163314611d835760405162461bcd60e51b8152600401610d67906131d9565b601255565b6008546001600160a01b03163314611db25760405162461bcd60e51b8152600401610d67906131d9565b6001600160a01b038116611e175760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d67565b611e2081612443565b50565b600080516020613408833981519152611e3c8133612114565b8151610caa906018906020850190612c26565b6000611e5b8284613370565b15611e67576001611e6a565b60005b60ff16611e77838561328d565b611cfd9190613275565b60006001600160e01b03198216637965db0b60e01b1480610b455750610b45826126d4565b6000805482108015610b45575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b611e20816000612724565b6000611f4382612329565b9050836001600160a01b031681600001516001600160a01b031614611f7a5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611f985750611f988533610acc565b80611fb3575033611fa884610bdd565b6001600160a01b0316145b905080611fd357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611ffa57604051633a954ecd60e21b815260040160405180910390fd5b61200660008487611ed1565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166120da5760005482146120da57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061342883398151915260405160405180910390a45b5050505050565b61211e8282611912565b61111d57612136816001600160a01b031660146128d7565b6121418360206128d7565b6040516020016121529291906130d0565b60408051601f198184030181529082905262461bcd60e51b8252610d67916004016131c6565b6121828282611912565b61111d576000828152600e602090815260408083206001600160a01b03851684529091529020805460ff191660011790556121ba3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600061220a8284613370565b15611e67576000611e6a565b60006122246101008361328d565b9050600061223461010084613370565b9050806001901b600d838154811061224e5761224e6133b0565b906000526020600020015417600d838154811061226d5761226d6133b0565b600091825260208220019190915560405184917feeab77deeb973b30af1b626c605ff2bd375615781d7962db97712dd3c36e0ef291a2505050565b61111d828260405180602001604052806000815250612a72565b6122cc8282611912565b1561111d576000828152600e602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60408051606081018252600080825260208201819052918101919091528160005481101561242a57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906124285780516001600160a01b0316156123bf579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612423579392505050565b6123bf565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a8190556040518181527f1b930366dfeaa7eb3b325021e4ae81e36527063452ee55b86c95f85b36f4c31c9060200160405180910390a150565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612505903390899088908890600401613145565b602060405180830381600087803b15801561251f57600080fd5b505af192505050801561254f575060408051601f3d908101601f1916820190925261254c91810190612fe7565b60015b6125aa573d80801561257d576040519150601f19603f3d011682016040523d82523d6000602084013e612582565b606091505b5080516125a2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060198054610b5a9061331a565b6060816125fb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612625578061260f81613355565b915061261e9050600a8361328d565b91506125ff565b6000816001600160401b0381111561263f5761263f6133c6565b6040519080825280601f01601f191660200182016040528015612669576020820181803683370190505b5090505b84156125c05761267e6001836132c0565b915061268b600a86613370565b612696906030613275565b60f81b8183815181106126ab576126ab6133b0565b60200101906001600160f81b031916908160001a9053506126cd600a8661328d565b945061266d565b60006001600160e01b031982166380ac58cd60e01b148061270557506001600160e01b03198216635b5e139f60e01b145b80610b4557506301ffc9a760e01b6001600160e01b0319831614610b45565b600061272f83612329565b80519091508215612795576000336001600160a01b038316148061275857506127588233610acc565b8061277357503361276886610bdd565b6001600160a01b0316145b90508061279357604051632ce44b5f60e11b815260040160405180910390fd5b505b6127a160008583611ed1565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b17855591890180845292208054919490911661289f57600054821461289f57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020613428833981519152908390a4505060018054810190555050565b606060006128e68360026132a1565b6128f1906002613275565b6001600160401b03811115612908576129086133c6565b6040519080825280601f01601f191660200182016040528015612932576020820181803683370190505b509050600360fc1b8160008151811061294d5761294d6133b0565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061297c5761297c6133b0565b60200101906001600160f81b031916908160001a90535060006129a08460026132a1565b6129ab906001613275565b90505b6001811115612a23576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106129df576129df6133b0565b1a60f81b8282815181106129f5576129f56133b0565b60200101906001600160f81b031916908160001a90535060049490941c93612a1c81613303565b90506129ae565b508315611cfd5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610d67565b610caa83838360016000546001600160a01b038516612aa357604051622e076360e81b815260040160405180910390fd5b83612ac15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015612b7257506001600160a01b0387163b15155b15612be9575b60405182906001600160a01b03891690600090600080516020613428833981519152908290a4612bb160008884806001019550886124d0565b612bce576040516368d2bf6b60e11b815260040160405180910390fd5b80821415612b78578260005414612be457600080fd5b612c1d565b5b6040516001830192906001600160a01b03891690600090600080516020613428833981519152908290a480821415612bea575b5060005561210d565b828054612c329061331a565b90600052602060002090601f016020900481019282612c545760008555612c9a565b82601f10612c6d57805160ff1916838001178555612c9a565b82800160010185558215612c9a579182015b82811115612c9a578251825591602001919060010190612c7f565b50612ca6929150612caa565b5090565b5b80821115612ca65760008155600101612cab565b60006001600160401b03831115612cd857612cd86133c6565b612ceb601f8401601f1916602001613245565b9050828152838383011115612cff57600080fd5b828260208301376000602084830101529392505050565b80358015158114612d2657600080fd5b919050565b600060208284031215612d3d57600080fd5b8135611cfd816133dc565b600060208284031215612d5a57600080fd5b8151611cfd816133dc565b60008060408385031215612d7857600080fd5b8235612d83816133dc565b91506020830135612d93816133dc565b809150509250929050565b600080600060608486031215612db357600080fd5b8335612dbe816133dc565b92506020840135612dce816133dc565b929592945050506040919091013590565b60008060008060808587031215612df557600080fd5b8435612e00816133dc565b93506020850135612e10816133dc565b92506040850135915060608501356001600160401b03811115612e3257600080fd5b8501601f81018713612e4357600080fd5b612e5287823560208401612cbf565b91505092959194509250565b60008060408385031215612e7157600080fd5b8235612e7c816133dc565b9150612e8a60208401612d16565b90509250929050565b60008060408385031215612ea657600080fd5b8235612eb1816133dc565b946020939093013593505050565b60008060408385031215612ed257600080fd5b82356001600160401b0380821115612ee957600080fd5b818501915085601f830112612efd57600080fd5b8135602082821115612f1157612f116133c6565b8160051b9250612f22818401613245565b8281528181019085830185870184018b1015612f3d57600080fd5b600096505b84871015612f60578035835260019690960195918301918301612f42565b509997909101359750505050505050565b600060208284031215612f8357600080fd5b611cfd82612d16565b600060208284031215612f9e57600080fd5b5035919050565b60008060408385031215612fb857600080fd5b823591506020830135612d93816133dc565b600060208284031215612fdc57600080fd5b8135611cfd816133f1565b600060208284031215612ff957600080fd5b8151611cfd816133f1565b60006020828403121561301657600080fd5b81356001600160401b0381111561302c57600080fd5b8201601f8101841361303d57600080fd5b6125c084823560208401612cbf565b60006020828403121561305e57600080fd5b5051919050565b6000815180845261307d8160208601602086016132d7565b601f01601f19169290920160200192915050565b600083516130a38184602088016132d7565b8351908301906130b78183602088016132d7565b64173539b7b760d91b9101908152600501949350505050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516131088160178501602088016132d7565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516131398160288401602088016132d7565b01602801949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061317890830184613065565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156131ba5783518352928401929184019160010161319e565b50909695505050505050565b602081526000611cfd6020830184613065565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604051601f8201601f191681016001600160401b038111828210171561326d5761326d6133c6565b604052919050565b6000821982111561328857613288613384565b500190565b60008261329c5761329c61339a565b500490565b60008160001904831182151516156132bb576132bb613384565b500290565b6000828210156132d2576132d2613384565b500390565b60005b838110156132f25781810151838201526020016132da565b83811115611c295750506000910152565b60008161331257613312613384565b506000190190565b600181811c9082168061332e57607f821691505b6020821081141561334f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561336957613369613384565b5060010190565b60008261337f5761337f61339a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611e2057600080fd5b6001600160e01b031981168114611e2057600080fdfed8acb51ff3d48f690a25887aaf234c4ae5a66ab9839243cd8e2b639cade0663bddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212204367e287804a4ea8f0da1155e131f8f9437fc6673236ed109e19ec7de0f9445d64736f6c63430008070033000000000000000000000000c9206df4e4430073208a61faff5cbee39bfe5897000000000000000000000000705b9dbd0d5607beafe12e2fb74d64268d3ba35f

Deployed Bytecode

0x6080604052600436106103ad5760003560e01c806370892549116101e7578063a035b1fe1161010d578063d4a3a2ba116100a0578063e5bcf0631161006f578063e5bcf06314610a91578063e985e9c514610ab1578063f2fde38b14610afa578063ffe630b514610b1a57600080fd5b8063d4a3a2ba14610a1c578063d4a6a2fd14610a3c578063d547741f14610a5b578063d5abeb0114610a7b57600080fd5b8063a22cb465116100dc578063a22cb465146109a6578063a4a5e763146109c6578063b88d4fde146109dc578063c87b56dd146109fc57600080fd5b8063a035b1fe14610948578063a0712d681461095e578063a0bcfc7f14610971578063a217fddf1461099157600080fd5b806391b7f5ed1161018557806395d89b411161015457806395d89b41146108e75780639668ceb8146108fc5780639e34070f146109125780639f55252e1461093257600080fd5b806391b7f5ed1461085157806391d1485414610871578063943d40e71461089157806394b059ab146108c557600080fd5b806373417b09116101c157806373417b09146107d3578063841718a6146107f357806384584d07146108135780638da5cb5b1461083357600080fd5b8063708925491461077157806370a082311461079e578063715018a6146107be57600080fd5b80632eb4a7ab116102d757806342842e0e1161026a57806364b721881161023957806364b721881461070257806367e700fc1461071757806368428a1b146107375780636f8b44b01461075157600080fd5b806342842e0e1461066e5780635493e32b1461068e5780635f1ca701146106ae5780636352211e146106e257600080fd5b8063375a069a116102a6578063375a069a14610606578063379607f5146106265780633a73c58d146106395780633ccfd60b1461065957600080fd5b80632eb4a7ab1461059d5780632f2ff15d146105b3578063328beaff146105d357806336568abe146105e657600080fd5b80630f7309e81161034f578063248a9ca31161031e578063248a9ca31461052157806326a74d8e146105515780632a47f799146105675780632d6e71b61461057d57600080fd5b80630f7309e8146104b357806317879142146104c857806318160ddd146104e857806323b872dd1461050157600080fd5b806306fdde031161038b57806306fdde0314610421578063081812fc14610443578063095ea7b31461047b5780630e5ca0611461049d57600080fd5b806301ffc9a7146103b257806303d41eb6146103e7578063041a18061461040b575b600080fd5b3480156103be57600080fd5b506103d26103cd366004612fca565b610b3a565b60405190151581526020015b60405180910390f35b3480156103f357600080fd5b506103fd601a5481565b6040519081526020016103de565b34801561041757600080fd5b506103fd60105481565b34801561042d57600080fd5b50610436610b4b565b6040516103de91906131c6565b34801561044f57600080fd5b5061046361045e366004612f8c565b610bdd565b6040516001600160a01b0390911681526020016103de565b34801561048757600080fd5b5061049b610496366004612e93565b610c21565b005b3480156104a957600080fd5b506103fd60135481565b3480156104bf57600080fd5b50610436610caf565b3480156104d457600080fd5b5061049b6104e3366004612f8c565b610d3d565b3480156104f457600080fd5b50600154600054036103fd565b34801561050d57600080fd5b5061049b61051c366004612d9e565b610da9565b34801561052d57600080fd5b506103fd61053c366004612f8c565b6000908152600e602052604090206001015490565b34801561055d57600080fd5b506103fd601b5481565b34801561057357600080fd5b506103fd60125481565b34801561058957600080fd5b5061049b610598366004612f8c565b610db4565b3480156105a957600080fd5b506103fd600a5481565b3480156105bf57600080fd5b5061049b6105ce366004612fa5565b610dd3565b61049b6105e1366004612ebf565b610df9565b3480156105f257600080fd5b5061049b610601366004612fa5565b6110a3565b34801561061257600080fd5b5061049b610621366004612f8c565b611121565b61049b610634366004612f8c565b6111e2565b34801561064557600080fd5b5061049b610654366004612f71565b6111f9565b34801561066557600080fd5b5061049b611224565b34801561067a57600080fd5b5061049b610689366004612d9e565b611301565b34801561069a57600080fd5b506103fd6106a9366004612d2b565b61131c565b3480156106ba57600080fd5b506104637f000000000000000000000000705b9dbd0d5607beafe12e2fb74d64268d3ba35f81565b3480156106ee57600080fd5b506104636106fd366004612f8c565b6114a9565b34801561070e57600080fd5b506015546103fd565b34801561072357600080fd5b506103fd610732366004612f8c565b6114bb565b34801561074357600080fd5b50601c546103d29060ff1681565b34801561075d57600080fd5b5061049b61076c366004612f8c565b6114dc565b34801561077d57600080fd5b5061079161078c366004612d2b565b611532565b6040516103de9190613182565b3480156107aa57600080fd5b506103fd6107b9366004612d2b565b6117bd565b3480156107ca57600080fd5b5061049b61180b565b3480156107df57600080fd5b5061049b6107ee366004612f71565b611841565b3480156107ff57600080fd5b5061049b61080e366004612f71565b611875565b34801561081f57600080fd5b5061049b61082e366004612f8c565b6118a2565b34801561083f57600080fd5b506008546001600160a01b0316610463565b34801561085d57600080fd5b5061049b61086c366004612f8c565b6118c4565b34801561087d57600080fd5b506103d261088c366004612fa5565b611912565b34801561089d57600080fd5b506104637f000000000000000000000000c9206df4e4430073208a61faff5cbee39bfe589781565b3480156108d157600080fd5b506103fd60008051602061340883398151915281565b3480156108f357600080fd5b5061043661193d565b34801561090857600080fd5b506103fd60165481565b34801561091e57600080fd5b506103d261092d366004612f8c565b61194c565b34801561093e57600080fd5b506103fd600f5481565b34801561095457600080fd5b506103fd60155481565b61049b61096c366004612f8c565b6119a1565b34801561097d57600080fd5b5061049b61098c366004613004565b611b1c565b34801561099d57600080fd5b506103fd600081565b3480156109b257600080fd5b5061049b6109c1366004612e5e565b611b48565b3480156109d257600080fd5b506103fd60115481565b3480156109e857600080fd5b5061049b6109f7366004612ddf565b611bde565b348015610a0857600080fd5b50610436610a17366004612f8c565b611c2f565b348015610a2857600080fd5b5061049b610a37366004612f8c565b611d04565b348015610a4857600080fd5b50601c546103d290610100900460ff1681565b348015610a6757600080fd5b5061049b610a76366004612fa5565b611d33565b348015610a8757600080fd5b506103fd60145481565b348015610a9d57600080fd5b5061049b610aac366004612f8c565b611d59565b348015610abd57600080fd5b506103d2610acc366004612d65565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610b0657600080fd5b5061049b610b15366004612d2b565b611d88565b348015610b2657600080fd5b5061049b610b35366004613004565b611e23565b6000610b4582611e81565b92915050565b606060028054610b5a9061331a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b869061331a565b8015610bd35780601f10610ba857610100808354040283529160200191610bd3565b820191906000526020600020905b815481529060010190602001808311610bb657829003601f168201915b5050505050905090565b6000610be882611ea6565b610c05576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610c2c826114a9565b9050806001600160a01b0316836001600160a01b03161415610c615760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610c815750610c7f8133610acc565b155b15610c9f576040516367d9dca160e11b815260040160405180910390fd5b610caa838383611ed1565b505050565b60188054610cbc9061331a565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce89061331a565b8015610d355780601f10610d0a57610100808354040283529160200191610d35565b820191906000526020600020905b815481529060010190602001808311610d1857829003601f168201915b505050505081565b6008546001600160a01b03163314610d705760405162461bcd60e51b8152600401610d67906131d9565b60405180910390fd5b60026009541415610d935760405162461bcd60e51b8152600401610d679061320e565b6002600955610da181611f2d565b506001600955565b610caa838383611f38565b600080516020613408833981519152610dcd8133612114565b50601355565b6000828152600e6020526040902060010154610def8133612114565b610caa8383612178565b601c54610100900460ff16610e2157604051633e640d4d60e11b815260040160405180910390fd5b8060145481610e336001546000540390565b610e3d9190613275565b1115610e5c5760405163246033a960e21b815260040160405180910390fd5b60026009541415610e7f5760405162461bcd60e51b8152600401610d679061320e565b6002600955601054821115610ea7576040516335fececb60e21b815260040160405180910390fd5b82516000610eb68260026121fe565b905080841115610f1e5760405162461bcd60e51b815260206004820152602d60248201527f596f7520646f6e2774206861766520656e6f756768207930307473594320746f60448201526c20636c61696d2061204469636b60981b6064820152608401610d67565b8084118015906110965760005b610f368660026132a1565b811015611073576000878281518110610f5157610f516133b0565b60200260200101519050336001600160a01b03167f000000000000000000000000705b9dbd0d5607beafe12e2fb74d64268d3ba35f6001600160a01b0316636352211e836040518263ffffffff1660e01b8152600401610fb391815260200190565b60206040518083038186803b158015610fcb57600080fd5b505afa158015610fdf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110039190612d48565b6001600160a01b03161461102d5760405163be32a28560e01b815260048101829052602401610d67565b6110368161194c565b156110575760405163a648790560e01b815260048101829052602401610d67565b61106081612216565b508061106b81613355565b915050610f2b565b5084601660008282546110869190613275565b90915550611096905033866122a8565b5050600160095550505050565b6001600160a01b03811633146111135760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610d67565b61111d82826122c2565b5050565b60008051602061340883398151915261113a8133612114565b816014548161114c6001546000540390565b6111569190613275565b11156111755760405163246033a960e21b815260040160405180910390fd5b600260095414156111985760405162461bcd60e51b8152600401610d679061320e565b6002600955601a54838110156111c05760405162fde2a360e61b815260040160405180910390fd5b6111ca84826132c0565b601a556111d733856122a8565b505060016009555050565b60006111ed33611532565b905061111d8183610df9565b6000805160206134088339815191526112128133612114565b600b805460ff19168315151790555050565b6008546001600160a01b0316331461124e5760405162461bcd60e51b8152600401610d67906131d9565b600260095414156112715760405162461bcd60e51b8152600401610d679061320e565b6002600955604051600090339047908381818185875af1925050503d80600081146112b8576040519150601f19603f3d011682016040523d82523d6000602084013e6112bd565b606091505b5050905080610da15760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610d67565b610caa83838360405180602001604052806000815250611bde565b6040516370a0823160e01b81526001600160a01b03828116600483015260009182917f000000000000000000000000705b9dbd0d5607beafe12e2fb74d64268d3ba35f16906370a082319060240160206040518083038186803b15801561138257600080fd5b505afa158015611396573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ba919061304c565b90506000805b8281101561149257604051632f745c5960e01b81526001600160a01b0386811660048301526024820183905261146e917f000000000000000000000000705b9dbd0d5607beafe12e2fb74d64268d3ba35f90911690632f745c599060440160206040518083038186803b15801561143657600080fd5b505afa15801561144a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061092d919061304c565b611480578161147c81613355565b9250505b8061148a81613355565b9150506113c0565b5060006114a08260026121fe565b95945050505050565b60006114b482612329565b5192915050565b600d81815481106114cb57600080fd5b600091825260209091200154905081565b6000805160206134088339815191526114f58133612114565b60148290556040518281527f28a10a2e0b5582da7164754cb994f6214b8af6aa7f7e003305fbc09e7106c513906020015b60405180910390a15050565b6040516370a0823160e01b81526001600160a01b0382811660048301526060916000917f000000000000000000000000705b9dbd0d5607beafe12e2fb74d64268d3ba35f16906370a082319060240160206040518083038186803b15801561159957600080fd5b505afa1580156115ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115d1919061304c565b90506000816001600160401b038111156115ed576115ed6133c6565b604051908082528060200260200182016040528015611616578160200160208202803683370190505b5090506000805b8381101561171857604051632f745c5960e01b81526001600160a01b038781166004830152602482018390526000917f000000000000000000000000705b9dbd0d5607beafe12e2fb74d64268d3ba35f90911690632f745c599060440160206040518083038186803b15801561169257600080fd5b505afa1580156116a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ca919061304c565b90506116d58161194c565b61170557808484815181106116ec576116ec6133b0565b60209081029190910101528261170181613355565b9350505b508061171081613355565b91505061161d565b506000816001600160401b03811115611733576117336133c6565b60405190808252806020026020018201604052801561175c578160200160208202803683370190505b50905060005b828110156117b35783818151811061177c5761177c6133b0565b6020026020010151828281518110611796576117966133b0565b6020908102919091010152806117ab81613355565b915050611762565b5095945050505050565b60006001600160a01b0382166117e6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146118355760405162461bcd60e51b8152600401610d67906131d9565b61183f6000612443565b565b60008051602061340883398151915261185a8133612114565b50601c80549115156101000261ff0019909216919091179055565b60008051602061340883398151915261188e8133612114565b50601c805460ff1916911515919091179055565b6000805160206134088339815191526118bb8133612114565b61111d82612495565b6000805160206134088339815191526118dd8133612114565b60158290556040518281527fa6dc15bdb68da224c66db4b3838d9a2b205138e8cff6774e57d0af91e196d62290602001611526565b6000918252600e602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060038054610b5a9061331a565b60008061195b6101008461328d565b9050600061196b61010085613370565b90506000600d8381548110611982576119826133b0565b600091825260209091200154600190921b918216909114949350505050565b601c5460ff166119c45760405163e707b04f60e01b815260040160405180910390fd5b80601454816119d66001546000540390565b6119e09190613275565b11156119ff5760405163246033a960e21b815260040160405180910390fd5b60026009541415611a225760405162461bcd60e51b8152600401610d679061320e565b6002600955601254821115611a795760405162461bcd60e51b815260206004820181905260248201527f4e6f206d6f7265207075626c696320537570706c7920417661696c61626c65206044820152606401610d67565b81601254611a8791906132c0565b601255600f54821115611aad5760405163f43ca04b60e01b815260040160405180910390fd5b601554611aba90836132a1565b341015611b095760405162461bcd60e51b815260206004820181905260248201527f506c656173652073656e64207468652065786163742045544820616d6f756e746044820152606401610d67565b611b1333836122a8565b50506001600955565b600080516020613408833981519152611b358133612114565b8151610caa906019906020850190612c26565b6001600160a01b038216331415611b725760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611be9848484611f38565b6001600160a01b0383163b15158015611c0b5750611c09848484846124d0565b155b15611c29576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611c3a82611ea6565b611c9e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610d67565b6000611ca86125c8565b90506000815111611cc85760405180602001604052806000815250611cfd565b80611cdc611cd7856001613275565b6125d7565b604051602001611ced929190613091565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314611d2e5760405162461bcd60e51b8152600401610d67906131d9565b601055565b6000828152600e6020526040902060010154611d4f8133612114565b610caa83836122c2565b6008546001600160a01b03163314611d835760405162461bcd60e51b8152600401610d67906131d9565b601255565b6008546001600160a01b03163314611db25760405162461bcd60e51b8152600401610d67906131d9565b6001600160a01b038116611e175760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d67565b611e2081612443565b50565b600080516020613408833981519152611e3c8133612114565b8151610caa906018906020850190612c26565b6000611e5b8284613370565b15611e67576001611e6a565b60005b60ff16611e77838561328d565b611cfd9190613275565b60006001600160e01b03198216637965db0b60e01b1480610b455750610b45826126d4565b6000805482108015610b45575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b611e20816000612724565b6000611f4382612329565b9050836001600160a01b031681600001516001600160a01b031614611f7a5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611f985750611f988533610acc565b80611fb3575033611fa884610bdd565b6001600160a01b0316145b905080611fd357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611ffa57604051633a954ecd60e21b815260040160405180910390fd5b61200660008487611ed1565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166120da5760005482146120da57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061342883398151915260405160405180910390a45b5050505050565b61211e8282611912565b61111d57612136816001600160a01b031660146128d7565b6121418360206128d7565b6040516020016121529291906130d0565b60408051601f198184030181529082905262461bcd60e51b8252610d67916004016131c6565b6121828282611912565b61111d576000828152600e602090815260408083206001600160a01b03851684529091529020805460ff191660011790556121ba3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600061220a8284613370565b15611e67576000611e6a565b60006122246101008361328d565b9050600061223461010084613370565b9050806001901b600d838154811061224e5761224e6133b0565b906000526020600020015417600d838154811061226d5761226d6133b0565b600091825260208220019190915560405184917feeab77deeb973b30af1b626c605ff2bd375615781d7962db97712dd3c36e0ef291a2505050565b61111d828260405180602001604052806000815250612a72565b6122cc8282611912565b1561111d576000828152600e602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60408051606081018252600080825260208201819052918101919091528160005481101561242a57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906124285780516001600160a01b0316156123bf579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612423579392505050565b6123bf565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a8190556040518181527f1b930366dfeaa7eb3b325021e4ae81e36527063452ee55b86c95f85b36f4c31c9060200160405180910390a150565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612505903390899088908890600401613145565b602060405180830381600087803b15801561251f57600080fd5b505af192505050801561254f575060408051601f3d908101601f1916820190925261254c91810190612fe7565b60015b6125aa573d80801561257d576040519150601f19603f3d011682016040523d82523d6000602084013e612582565b606091505b5080516125a2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060198054610b5a9061331a565b6060816125fb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612625578061260f81613355565b915061261e9050600a8361328d565b91506125ff565b6000816001600160401b0381111561263f5761263f6133c6565b6040519080825280601f01601f191660200182016040528015612669576020820181803683370190505b5090505b84156125c05761267e6001836132c0565b915061268b600a86613370565b612696906030613275565b60f81b8183815181106126ab576126ab6133b0565b60200101906001600160f81b031916908160001a9053506126cd600a8661328d565b945061266d565b60006001600160e01b031982166380ac58cd60e01b148061270557506001600160e01b03198216635b5e139f60e01b145b80610b4557506301ffc9a760e01b6001600160e01b0319831614610b45565b600061272f83612329565b80519091508215612795576000336001600160a01b038316148061275857506127588233610acc565b8061277357503361276886610bdd565b6001600160a01b0316145b90508061279357604051632ce44b5f60e11b815260040160405180910390fd5b505b6127a160008583611ed1565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b17855591890180845292208054919490911661289f57600054821461289f57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020613428833981519152908390a4505060018054810190555050565b606060006128e68360026132a1565b6128f1906002613275565b6001600160401b03811115612908576129086133c6565b6040519080825280601f01601f191660200182016040528015612932576020820181803683370190505b509050600360fc1b8160008151811061294d5761294d6133b0565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061297c5761297c6133b0565b60200101906001600160f81b031916908160001a90535060006129a08460026132a1565b6129ab906001613275565b90505b6001811115612a23576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106129df576129df6133b0565b1a60f81b8282815181106129f5576129f56133b0565b60200101906001600160f81b031916908160001a90535060049490941c93612a1c81613303565b90506129ae565b508315611cfd5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610d67565b610caa83838360016000546001600160a01b038516612aa357604051622e076360e81b815260040160405180910390fd5b83612ac15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015612b7257506001600160a01b0387163b15155b15612be9575b60405182906001600160a01b03891690600090600080516020613428833981519152908290a4612bb160008884806001019550886124d0565b612bce576040516368d2bf6b60e11b815260040160405180910390fd5b80821415612b78578260005414612be457600080fd5b612c1d565b5b6040516001830192906001600160a01b03891690600090600080516020613428833981519152908290a480821415612bea575b5060005561210d565b828054612c329061331a565b90600052602060002090601f016020900481019282612c545760008555612c9a565b82601f10612c6d57805160ff1916838001178555612c9a565b82800160010185558215612c9a579182015b82811115612c9a578251825591602001919060010190612c7f565b50612ca6929150612caa565b5090565b5b80821115612ca65760008155600101612cab565b60006001600160401b03831115612cd857612cd86133c6565b612ceb601f8401601f1916602001613245565b9050828152838383011115612cff57600080fd5b828260208301376000602084830101529392505050565b80358015158114612d2657600080fd5b919050565b600060208284031215612d3d57600080fd5b8135611cfd816133dc565b600060208284031215612d5a57600080fd5b8151611cfd816133dc565b60008060408385031215612d7857600080fd5b8235612d83816133dc565b91506020830135612d93816133dc565b809150509250929050565b600080600060608486031215612db357600080fd5b8335612dbe816133dc565b92506020840135612dce816133dc565b929592945050506040919091013590565b60008060008060808587031215612df557600080fd5b8435612e00816133dc565b93506020850135612e10816133dc565b92506040850135915060608501356001600160401b03811115612e3257600080fd5b8501601f81018713612e4357600080fd5b612e5287823560208401612cbf565b91505092959194509250565b60008060408385031215612e7157600080fd5b8235612e7c816133dc565b9150612e8a60208401612d16565b90509250929050565b60008060408385031215612ea657600080fd5b8235612eb1816133dc565b946020939093013593505050565b60008060408385031215612ed257600080fd5b82356001600160401b0380821115612ee957600080fd5b818501915085601f830112612efd57600080fd5b8135602082821115612f1157612f116133c6565b8160051b9250612f22818401613245565b8281528181019085830185870184018b1015612f3d57600080fd5b600096505b84871015612f60578035835260019690960195918301918301612f42565b509997909101359750505050505050565b600060208284031215612f8357600080fd5b611cfd82612d16565b600060208284031215612f9e57600080fd5b5035919050565b60008060408385031215612fb857600080fd5b823591506020830135612d93816133dc565b600060208284031215612fdc57600080fd5b8135611cfd816133f1565b600060208284031215612ff957600080fd5b8151611cfd816133f1565b60006020828403121561301657600080fd5b81356001600160401b0381111561302c57600080fd5b8201601f8101841361303d57600080fd5b6125c084823560208401612cbf565b60006020828403121561305e57600080fd5b5051919050565b6000815180845261307d8160208601602086016132d7565b601f01601f19169290920160200192915050565b600083516130a38184602088016132d7565b8351908301906130b78183602088016132d7565b64173539b7b760d91b9101908152600501949350505050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516131088160178501602088016132d7565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516131398160288401602088016132d7565b01602801949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061317890830184613065565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156131ba5783518352928401929184019160010161319e565b50909695505050505050565b602081526000611cfd6020830184613065565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604051601f8201601f191681016001600160401b038111828210171561326d5761326d6133c6565b604052919050565b6000821982111561328857613288613384565b500190565b60008261329c5761329c61339a565b500490565b60008160001904831182151516156132bb576132bb613384565b500290565b6000828210156132d2576132d2613384565b500390565b60005b838110156132f25781810151838201526020016132da565b83811115611c295750506000910152565b60008161331257613312613384565b506000190190565b600181811c9082168061332e57607f821691505b6020821081141561334f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561336957613369613384565b5060010190565b60008261337f5761337f61339a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611e2057600080fd5b6001600160e01b031981168114611e2057600080fdfed8acb51ff3d48f690a25887aaf234c4ae5a66ab9839243cd8e2b639cade0663bddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212204367e287804a4ea8f0da1155e131f8f9437fc6673236ed109e19ec7de0f9445d64736f6c63430008070033

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

000000000000000000000000c9206df4e4430073208a61faff5cbee39bfe5897000000000000000000000000705b9dbd0d5607beafe12e2fb74d64268d3ba35f

-----Decoded View---------------
Arg [0] : shareholderAddress_ (address): 0xc9206dF4E4430073208A61FaFf5cBeE39BFE5897
Arg [1] : contractAddress (address): 0x705B9DBD0D5607BEAFe12E2fB74d64268d3bA35F

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000c9206df4e4430073208a61faff5cbee39bfe5897
Arg [1] : 000000000000000000000000705b9dbd0d5607beafe12e2fb74d64268d3ba35f


Deployed Bytecode Sourcemap

64295:14230:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72988:227;;;;;;;;;;-1:-1:-1;72988:227:0;;;;;:::i;:::-;;:::i;:::-;;;10357:14:1;;10350:22;10332:41;;10320:2;10305:18;72988:227:0;;;;;;;;64959:49;;;;;;;;;;;;;;;;;;;10530:25:1;;;10518:2;10503:18;64959:49:0;10384:177:1;64521:35:0;;;;;;;;;;;;;;;;49634:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;51137:204::-;;;;;;;;;;-1:-1:-1;51137:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8515:32:1;;;8497:51;;8485:2;8470:18;51137:204:0;8351:203:1;50700:371:0;;;;;;;;;;-1:-1:-1;50700:371:0;;;;;:::i;:::-;;:::i;:::-;;64654:43;;;;;;;;;;;;;;;;64888:24;;;;;;;;;;;;;:::i;78128:107::-;;;;;;;;;;-1:-1:-1;78128:107:0;;;;;:::i;:::-;;:::i;45770:303::-;;;;;;;;;;-1:-1:-1;46024:12:0;;45814:7;46008:13;:28;45770:303;;52002:170;;;;;;;;;;-1:-1:-1;52002:170:0;;;;;:::i;:::-;;:::i;35055:131::-;;;;;;;;;;-1:-1:-1;35055:131:0;;;;;:::i;:::-;35129:7;35156:12;;;:6;:12;;;;;:22;;;;35055:131;65015:50;;;;;;;;;;;;;;;;64608:39;;;;;;;;;;;;;;;;70536:137;;;;;;;;;;-1:-1:-1;70536:137:0;;;;;:::i;:::-;;:::i;25315:25::-;;;;;;;;;;;;;;;;35448:147;;;;;;;;;;-1:-1:-1;35448:147:0;;;;;:::i;:::-;;:::i;73900:1419::-;;;;;;:::i;:::-;;:::i;36496:218::-;;;;;;;;;;-1:-1:-1;36496:218:0;;;;;:::i;:::-;;:::i;69318:443::-;;;;;;;;;;-1:-1:-1;69318:443:0;;;;;:::i;:::-;;:::i;75564:191::-;;;;;;:::i;:::-;;:::i;71436:137::-;;;;;;;;;;-1:-1:-1;71436:137:0;;;;;:::i;:::-;;:::i;78336:186::-;;;;;;;;;;;;;:::i;52243:185::-;;;;;;;;;;-1:-1:-1;52243:185:0;;;;;:::i;:::-;;:::i;75767:546::-;;;;;;;;;;-1:-1:-1;75767:546:0;;;;;:::i;:::-;;:::i;65074:54::-;;;;;;;;;;;;;;;49442:125;;;;;;;;;;-1:-1:-1;49442:125:0;;;;;:::i;:::-;;:::i;76321:82::-;;;;;;;;;;-1:-1:-1;76390:5:0;;76321:82;;23550:30;;;;;;;;;;-1:-1:-1;23550:30:0;;;;;:::i;:::-;;:::i;65193:22::-;;;;;;;;;;-1:-1:-1;65193:22:0;;;;;;;;70792:171;;;;;;;;;;-1:-1:-1;70792:171:0;;;;;:::i;:::-;;:::i;76535:838::-;;;;;;;;;;-1:-1:-1;76535:838:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46890:206::-;;;;;;;;;;-1:-1:-1;46890:206:0;;;;;:::i;:::-;;:::i;30287:103::-;;;;;;;;;;;;;:::i;70119:106::-;;;;;;;;;;-1:-1:-1;70119:106:0;;;;;:::i;:::-;;:::i;69886:104::-;;;;;;;;;;-1:-1:-1;69886:104:0;;;;;:::i;:::-;;:::i;71697:118::-;;;;;;;;;;-1:-1:-1;71697:118:0;;;;;:::i;:::-;;:::i;29636:87::-;;;;;;;;;;-1:-1:-1;29709:6:0;;-1:-1:-1;;;;;29709:6:0;29636:87;;70365:159;;;;;;;;;;-1:-1:-1;70365:159:0;;;;;:::i;:::-;;:::i;33924:147::-;;;;;;;;;;-1:-1:-1;33924:147:0;;;;;:::i;:::-;;:::i;65135:51::-;;;;;;;;;;;;;;;64411:59;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;64411:59:0;;49803:104;;;;;;;;;;;;;:::i;64785:32::-;;;;;;;;;;;;;;;;24497:330;;;;;;;;;;-1:-1:-1;24497:330:0;;;;;:::i;:::-;;:::i;64477:37::-;;;;;;;;;;;;;;;;64743:35;;;;;;;;;;;;;;;;77506:614;;;;;;:::i;:::-;;:::i;71986:122::-;;;;;;;;;;-1:-1:-1;71986:122:0;;;;;:::i;:::-;;:::i;33015:49::-;;;;;;;;;;-1:-1:-1;33015:49:0;33060:4;33015:49;;51413:287;;;;;;;;;;-1:-1:-1;51413:287:0;;;;;:::i;:::-;;:::i;64563:38::-;;;;;;;;;;;;;;;;52499:369;;;;;;;;;;-1:-1:-1;52499:369:0;;;;;:::i;:::-;;:::i;72234:396::-;;;;;;;;;;-1:-1:-1;72234:396:0;;;;;:::i;:::-;;:::i;71113:121::-;;;;;;;;;;-1:-1:-1;71113:121:0;;;;;:::i;:::-;;:::i;65222:23::-;;;;;;;;;;-1:-1:-1;65222:23:0;;;;;;;;;;;35840:149;;;;;;;;;;-1:-1:-1;35840:149:0;;;;;:::i;:::-;;:::i;64704:32::-;;;;;;;;;;;;;;;;70971:134;;;;;;;;;;-1:-1:-1;70971:134:0;;;;;:::i;:::-;;:::i;51771:164::-;;;;;;;;;;-1:-1:-1;51771:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;51892:25:0;;;51868:4;51892:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;51771:164;30545:201;;;;;;;;;;-1:-1:-1;30545:201:0;;;;;:::i;:::-;;:::i;72744:125::-;;;;;;;;;;-1:-1:-1;72744:125:0;;;;;:::i;:::-;;:::i;72988:227::-;73142:4;73171:36;73195:11;73171:23;:36::i;:::-;73164:43;72988:227;-1:-1:-1;;72988:227:0:o;49634:100::-;49688:13;49721:5;49714:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49634:100;:::o;51137:204::-;51205:7;51230:16;51238:7;51230;:16::i;:::-;51225:64;;51255:34;;-1:-1:-1;;;51255:34:0;;;;;;;;;;;51225:64;-1:-1:-1;51309:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;51309:24:0;;51137:204::o;50700:371::-;50773:13;50789:24;50805:7;50789:15;:24::i;:::-;50773:40;;50834:5;-1:-1:-1;;;;;50828:11:0;:2;-1:-1:-1;;;;;50828:11:0;;50824:48;;;50848:24;;-1:-1:-1;;;50848:24:0;;;;;;;;;;;50824:48;8297:10;-1:-1:-1;;;;;50889:21:0;;;;;;:63;;-1:-1:-1;50915:37:0;50932:5;8297:10;51771:164;:::i;50915:37::-;50914:38;50889:63;50885:138;;;50976:35;;-1:-1:-1;;;50976:35:0;;;;;;;;;;;50885:138;51035:28;51044:2;51048:7;51057:5;51035:8;:28::i;:::-;50762:309;50700:371;;:::o;64888:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;78128:107::-;29709:6;;-1:-1:-1;;;;;29709:6:0;8297:10;29856:23;29848:68;;;;-1:-1:-1;;;29848:68:0;;;;;;;:::i;:::-;;;;;;;;;40360:1:::1;40958:7;;:19;;40950:63;;;;-1:-1:-1::0;;;40950:63:0::1;;;;;;;:::i;:::-;40360:1;41091:7;:18:::0;78207:20:::2;78219:7:::0;78207:11:::2;:20::i;:::-;-1:-1:-1::0;40316:1:0::1;41270:7;:22:::0;78128:107::o;52002:170::-;52136:28;52146:4;52152:2;52156:7;52136:9;:28::i;70536:137::-;-1:-1:-1;;;;;;;;;;;33506:30:0;64450:20;8297:10;33506;:30::i;:::-;-1:-1:-1;70629:21:0::1;:34:::0;70536:137::o;35448:147::-;35129:7;35156:12;;;:6;:12;;;;;:22;;;33506:30;33517:4;8297:10;33506;:30::i;:::-;35562:25:::1;35573:4;35579:7;35562:10;:25::i;73900:1419::-:0;68817:11;;;;;;;68812:43;;68837:18;;-1:-1:-1;;;68837:18:0;;;;;;;;;;;68812:43;74057:14:::1;68429:9;;68412:14;68396:13;46024:12:::0;;45814:7;46008:13;:28;;45770:303;68396:13:::1;:30;;;;:::i;:::-;:42;68392:89;;;68447:34;;-1:-1:-1::0;;;68447:34:0::1;;;;;;;;;;;68392:89;40360:1:::2;40958:7;;:19;;40950:63;;;;-1:-1:-1::0;;;40950:63:0::2;;;;;;;:::i;:::-;40360:1;41091:7;:18:::0;74255:16:::3;::::0;74238:33;::::3;74234:83;;;74280:37;;-1:-1:-1::0;;;74280:37:0::3;;;;;;;;;;;74234:83;74360:15:::0;;74330:27:::3;74433:37;74360:15:::0;74468:1:::3;74433:13;:37::i;:::-;74388:82;;74599:34;74581:14;:52;;74572:112;;;::::0;-1:-1:-1;;;74572:112:0;;11994:2:1;74572:112:0::3;::::0;::::3;11976:21:1::0;12033:2;12013:18;;;12006:30;12072:34;12052:18;;;12045:62;-1:-1:-1;;;12123:18:1;;;12116:43;12176:19;;74572:112:0::3;11792:409:1::0;74572:112:0::3;74720:52:::0;;::::3;::::0;::::3;::::0;74793:510:::3;;74837:13;74832:358;74861:18;74865:14:::0;74861:1:::3;:18;:::i;:::-;74852:5;:28;74832:358;;;74906:15;74924:8;74933:5;74924:15;;;;;;;;:::i;:::-;;;;;;;74906:33;;74998:10;-1:-1:-1::0;;;;;74958:50:0::3;:19;-1:-1:-1::0;;;;;74958:27:0::3;;74986:7;74958:36;;;;;;;;;;;;;10530:25:1::0;;10518:2;10503:18;;10384:177;74958:36:0::3;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;74958:50:0::3;;74954:90;;75017:27;::::0;-1:-1:-1;;;75017:27:0;;::::3;::::0;::::3;10530:25:1::0;;;10503:18;;75017:27:0::3;10384:177:1::0;74954:90:0::3;75063:18;75073:7;75063:9;:18::i;:::-;75059:61;;;75090:30;::::0;-1:-1:-1;;;75090:30:0;;::::3;::::0;::::3;10530:25:1::0;;;10503:18;;75090:30:0::3;10384:177:1::0;75059:61:0::3;75137:20;75149:7;75137:11;:20::i;:::-;-1:-1:-1::0;74882:7:0;::::3;::::0;::::3;:::i;:::-;;;;74832:358;;;;75223:14;75206:13;;:31;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;75252:37:0::3;::::0;-1:-1:-1;75262:10:0::3;75274:14:::0;75252:9:::3;:37::i;:::-;-1:-1:-1::0;;40316:1:0::2;41270:7;:22:::0;-1:-1:-1;;;;73900:1419:0:o;36496:218::-;-1:-1:-1;;;;;36592:23:0;;8297:10;36592:23;36584:83;;;;-1:-1:-1;;;36584:83:0;;14612:2:1;36584:83:0;;;14594:21:1;14651:2;14631:18;;;14624:30;14690:34;14670:18;;;14663:62;-1:-1:-1;;;14741:18:1;;;14734:45;14796:19;;36584:83:0;14410:411:1;36584:83:0;36680:26;36692:4;36698:7;36680:11;:26::i;:::-;36496:218;;:::o;69318:443::-;-1:-1:-1;;;;;;;;;;;33506:30:0;64450:20;8297:10;33506;:30::i;:::-;69434:14:::1;68429:9;;68412:14;68396:13;46024:12:::0;;45814:7;46008:13;:28;;45770:303;68396:13:::1;:30;;;;:::i;:::-;:42;68392:89;;;68447:34;;-1:-1:-1::0;;;68447:34:0::1;;;;;;;;;;;68392:89;40360:1:::2;40958:7;;:19;;40950:63;;;;-1:-1:-1::0;;;40950:63:0::2;;;;;;;:::i;:::-;40360:1;41091:7;:18:::0;69521:13:::3;::::0;69551:39;;::::3;69547:80;;;69599:28;;-1:-1:-1::0;;;69599:28:0::3;;;;;;;;;;;69547:80;69666:39;69691:14:::0;69666:22;:39:::3;:::i;:::-;69650:13;:55:::0;69716:37:::3;69726:10;69738:14:::0;69716:9:::3;:37::i;:::-;-1:-1:-1::0;;40316:1:0::2;41270:7;:22:::0;-1:-1:-1;;69318:443:0:o;75564:191::-;75631:25;75659:36;75684:10;75659:24;:36::i;:::-;75631:64;;75706:41;75722:8;75732:14;75706:15;:41::i;71436:137::-;-1:-1:-1;;;;;;;;;;;33506:30:0;64450:20;8297:10;33506;:30::i;:::-;26422:15;:34;;-1:-1:-1;;26422:34:0;;;;;;;36496:218;;:::o;78336:186::-;29709:6;;-1:-1:-1;;;;;29709:6:0;8297:10;29856:23;29848:68;;;;-1:-1:-1;;;29848:68:0;;;;;;;:::i;:::-;40360:1:::1;40958:7;;:19;;40950:63;;;;-1:-1:-1::0;;;40950:63:0::1;;;;;;;:::i;:::-;40360:1;41091:7;:18:::0;78418:49:::2;::::0;78400:12:::2;::::0;78418:10:::2;::::0;78441:21:::2;::::0;78400:12;78418:49;78400:12;78418:49;78441:21;78418:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78399:68;;;78486:7;78478:36;;;::::0;-1:-1:-1;;;78478:36:0;;13907:2:1;78478:36:0::2;::::0;::::2;13889:21:1::0;13946:2;13926:18;;;13919:30;-1:-1:-1;;;13965:18:1;;;13958:46;14021:18;;78478:36:0::2;13705:340:1::0;52243:185:0;52381:39;52398:4;52404:2;52408:7;52381:39;;;;;;;;;;;;:16;:39::i;75767:546::-;75886:36;;-1:-1:-1;;;75886:36:0;;-1:-1:-1;;;;;8515:32:1;;;75886:36:0;;;8497:51:1;75844:7:0;;;;75886:19;:29;;;;8470:18:1;;75886:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;75864:58;;75933:19;75970:13;75965:196;75994:11;75986:5;:19;75965:196;;;76046:53;;-1:-1:-1;;;76046:53:0;;-1:-1:-1;;;;;9468:32:1;;;76046:53:0;;;9450:51:1;9517:18;;;9510:34;;;76036:64:0;;76046:19;:39;;;;;;9423:18:1;;76046:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;76036:64::-;76031:119;;76121:13;;;;:::i;:::-;;;;76031:119;76007:7;;;;:::i;:::-;;;;75965:196;;;;76179:42;76224:29;76238:11;76251:1;76224:13;:29::i;:::-;76179:74;75767:546;-1:-1:-1;;;;;75767:546:0:o;49442:125::-;49506:7;49533:21;49546:7;49533:12;:21::i;:::-;:26;;49442:125;-1:-1:-1;;49442:125:0:o;23550:30::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23550:30:0;:::o;70792:171::-;-1:-1:-1;;;;;;;;;;;33506:30:0;64450:20;8297:10;33506;:30::i;:::-;70886:9:::1;:24:::0;;;70928:27:::1;::::0;10530:25:1;;;70928:27:0::1;::::0;10518:2:1;10503:18;70928:27:0::1;;;;;;;;70792:171:::0;;:::o;76535:838::-;76652:35;;-1:-1:-1;;;76652:35:0;;-1:-1:-1;;;;;8515:32:1;;;76652:35:0;;;8497:51:1;76604:16:0;;76633;;76652:19;:29;;;;8470:18:1;;76652:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;76633:54;;76698:34;76749:8;-1:-1:-1;;;;;76735:23:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;76735:23:0;;76698:60;;76771:23;76812:13;76807:300;76835:8;76827:5;:16;76807:300;;;76887:52;;-1:-1:-1;;;76887:52:0;;-1:-1:-1;;;;;9468:32:1;;;76887:52:0;;;9450:51:1;9517:18;;;9510:34;;;76869:15:0;;76887:19;:39;;;;;;9423:18:1;;76887:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;76869:70;;76961:18;76971:7;76961:9;:18::i;:::-;76956:140;;77037:7;77000:17;77018:15;77000:34;;;;;;;;:::i;:::-;;;;;;;;;;:44;77063:17;;;;:::i;:::-;;;;76956:140;-1:-1:-1;76845:7:0;;;;:::i;:::-;;;;76807:300;;;;77119:34;77170:15;-1:-1:-1;;;;;77156:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;77156:30:0;;77119:67;;77202:13;77197:132;77225:15;77217:5;:23;77197:132;;;77293:17;77311:5;77293:24;;;;;;;;:::i;:::-;;;;;;;77266:17;77284:5;77266:24;;;;;;;;:::i;:::-;;;;;;;;;;:51;77242:7;;;;:::i;:::-;;;;77197:132;;;-1:-1:-1;77348:17:0;76535:838;-1:-1:-1;;;;;76535:838:0:o;46890:206::-;46954:7;-1:-1:-1;;;;;46978:19:0;;46974:60;;47006:28;;-1:-1:-1;;;47006:28:0;;;;;;;;;;;46974:60;-1:-1:-1;;;;;;47060:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;47060:27:0;;46890:206::o;30287:103::-;29709:6;;-1:-1:-1;;;;;29709:6:0;8297:10;29856:23;29848:68;;;;-1:-1:-1;;;29848:68:0;;;;;;;:::i;:::-;30352:30:::1;30379:1;30352:18;:30::i;:::-;30287:103::o:0;70119:106::-;-1:-1:-1;;;;;;;;;;;33506:30:0;64450:20;8297:10;33506;:30::i;:::-;-1:-1:-1;70198:11:0::1;:19:::0;;;::::1;;;;-1:-1:-1::0;;70198:19:0;;::::1;::::0;;;::::1;::::0;;70119:106::o;69886:104::-;-1:-1:-1;;;;;;;;;;;33506:30:0;64450:20;8297:10;33506;:30::i;:::-;-1:-1:-1;69964:10:0::1;:18:::0;;-1:-1:-1;;69964:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;69886:104::o;71697:118::-;-1:-1:-1;;;;;;;;;;;33506:30:0;64450:20;8297:10;33506;:30::i;:::-;71782:25:::1;71796:10;71782:13;:25::i;70365:159::-:0;-1:-1:-1;;;;;;;;;;;33506:30:0;64450:20;8297:10;33506;:30::i;:::-;70458:5:::1;:21:::0;;;70497:19:::1;::::0;10530:25:1;;;70497:19:0::1;::::0;10518:2:1;10503:18;70497:19:0::1;10384:177:1::0;33924:147:0;34010:4;34034:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;34034:29:0;;;;;;;;;;;;;;;33924:147::o;49803:104::-;49859:13;49892:7;49885:14;;;;;:::i;24497:330::-;24554:4;;24598:13;24608:3;24598:7;:13;:::i;:::-;24571:40;-1:-1:-1;24622:23:0;24648:13;24658:3;24648:7;:13;:::i;:::-;24622:39;;24672:19;24694:13;24708:16;24694:31;;;;;;;;:::i;:::-;;;;;;;;;;;24752:1;:20;;;24793:18;;;:26;;;;24497:330;-1:-1:-1;;;;24497:330:0:o;77506:614::-;68630:10;;;;68625:47;;68649:23;;-1:-1:-1;;;68649:23:0;;;;;;;;;;;68625:47;77632:14:::1;68429:9;;68412:14;68396:13;46024:12:::0;;45814:7;46008:13;:28;;45770:303;68396:13:::1;:30;;;;:::i;:::-;:42;68392:89;;;68447:34;;-1:-1:-1::0;;;68447:34:0::1;;;;;;;;;;;68392:89;40360:1:::2;40958:7;;:19;;40950:63;;;;-1:-1:-1::0;;;40950:63:0::2;;;;;;;:::i;:::-;40360:1;41091:7;:18:::0;77705:17:::3;::::0;:35;-1:-1:-1;77705:35:0::3;77696:82;;;::::0;-1:-1:-1;;;77696:82:0;;12408:2:1;77696:82:0::3;::::0;::::3;12390:21:1::0;;;12427:18;;;12420:30;12486:34;12466:18;;;12459:62;12538:18;;77696:82:0::3;12206:356:1::0;77696:82:0::3;77839:14;77819:17;;:34;;;;:::i;:::-;77799:17;:54:::0;77895:17:::3;::::0;77878:34;::::3;77874:85;;;77921:38;;-1:-1:-1::0;;;77921:38:0::3;;;;;;;;;;;77874:85;78010:5;::::0;77993:22:::3;::::0;:14;:22:::3;:::i;:::-;77980:9;:35;;77972:80;;;::::0;-1:-1:-1;;;77972:80:0;;12769:2:1;77972:80:0::3;::::0;::::3;12751:21:1::0;;;12788:18;;;12781:30;12847:34;12827:18;;;12820:62;12899:18;;77972:80:0::3;12567:356:1::0;77972:80:0::3;78075:37;78085:10;78097:14;78075:9;:37::i;:::-;-1:-1:-1::0;;40316:1:0::2;41270:7;:22:::0;77506:614::o;71986:122::-;-1:-1:-1;;;;;;;;;;;33506:30:0;64450:20;8297:10;33506;:30::i;:::-;72073:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;51413:287::-:0;-1:-1:-1;;;;;51512:24:0;;8297:10;51512:24;51508:54;;;51545:17;;-1:-1:-1;;;51545:17:0;;;;;;;;;;;51508:54;8297:10;51575:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;51575:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;51575:53:0;;;;;;;;;;51644:48;;10332:41:1;;;51575:42:0;;8297:10;51644:48;;10305:18:1;51644:48:0;;;;;;;51413:287;;:::o;52499:369::-;52666:28;52676:4;52682:2;52686:7;52666:9;:28::i;:::-;-1:-1:-1;;;;;52709:13:0;;9905:19;:23;;52709:76;;;;;52729:56;52760:4;52766:2;52770:7;52779:5;52729:30;:56::i;:::-;52728:57;52709:76;52705:156;;;52809:40;;-1:-1:-1;;;52809:40:0;;;;;;;;;;;52705:156;52499:369;;;;:::o;72234:396::-;72308:13;72342:17;72350:8;72342:7;:17::i;:::-;72334:76;;;;-1:-1:-1;;;72334:76:0;;13491:2:1;72334:76:0;;;13473:21:1;13530:2;13510:18;;;13503:30;13569:34;13549:18;;;13542:62;-1:-1:-1;;;13620:18:1;;;13613:45;13675:19;;72334:76:0;13289:411:1;72334:76:0;72421:28;72452:9;:7;:9::i;:::-;72421:40;;72510:1;72485:14;72479:28;:32;:143;;;;;;;;;;;;;;;;;72551:14;72566:28;72583:10;:8;72592:1;72583:10;:::i;:::-;72566:16;:28::i;:::-;72534:69;;;;;;;;;:::i;:::-;;;;;;;;;;;;;72479:143;72472:150;72234:396;-1:-1:-1;;;72234:396:0:o;71113:121::-;29709:6;;-1:-1:-1;;;;;29709:6:0;8297:10;29856:23;29848:68;;;;-1:-1:-1;;;29848:68:0;;;;;;;:::i;:::-;71193:16:::1;:33:::0;71113:121::o;35840:149::-;35129:7;35156:12;;;:6;:12;;;;;:22;;;33506:30;33517:4;8297:10;33506;:30::i;:::-;35955:26:::1;35967:4;35973:7;35955:11;:26::i;70971:134::-:0;29709:6;;-1:-1:-1;;;;;29709:6:0;8297:10;29856:23;29848:68;;;;-1:-1:-1;;;29848:68:0;;;;;;;:::i;:::-;71058:17:::1;:39:::0;70971:134::o;30545:201::-;29709:6;;-1:-1:-1;;;;;29709:6:0;8297:10;29856:23;29848:68;;;;-1:-1:-1;;;29848:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30634:22:0;::::1;30626:73;;;::::0;-1:-1:-1;;;30626:73:0;;11587:2:1;30626:73:0::1;::::0;::::1;11569:21:1::0;11626:2;11606:18;;;11599:30;11665:34;11645:18;;;11638:62;-1:-1:-1;;;11716:18:1;;;11709:36;11762:19;;30626:73:0::1;11385:402:1::0;30626:73:0::1;30710:28;30729:8;30710:18;:28::i;:::-;30545:201:::0;:::o;72744:125::-;-1:-1:-1;;;;;;;;;;;33506:30:0;64450:20;8297:10;33506;:30::i;:::-;72837:24;;::::1;::::0;:10:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;28142:197::-:0;28204:7;28312:5;28316:1;28312;:5;:::i;:::-;:10;:18;;28329:1;28312:18;;;28325:1;28312:18;28303:28;;:5;28307:1;28303;:5;:::i;:::-;:28;;;;:::i;33628:204::-;33713:4;-1:-1:-1;;;;;;33737:47:0;;-1:-1:-1;;;33737:47:0;;:87;;;33788:36;33812:11;33788:23;:36::i;53123:174::-;53180:4;53244:13;;53234:7;:23;53204:85;;;;-1:-1:-1;;53262:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;53262:27:0;;;;53261:28;;53123:174::o;61280:196::-;61395:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;61395:29:0;-1:-1:-1;;;;;61395:29:0;;;;;;;;;61440:28;;61395:24;;61440:28;;;;;;;61280:196;;;:::o;58436:89::-;58496:21;58502:7;58511:5;58496;:21::i;56223:2130::-;56338:35;56376:21;56389:7;56376:12;:21::i;:::-;56338:59;;56436:4;-1:-1:-1;;;;;56414:26:0;:13;:18;;;-1:-1:-1;;;;;56414:26:0;;56410:67;;56449:28;;-1:-1:-1;;;56449:28:0;;;;;;;;;;;56410:67;56490:22;8297:10;-1:-1:-1;;;;;56516:20:0;;;;:73;;-1:-1:-1;56553:36:0;56570:4;8297:10;51771:164;:::i;56553:36::-;56516:126;;;-1:-1:-1;8297:10:0;56606:20;56618:7;56606:11;:20::i;:::-;-1:-1:-1;;;;;56606:36:0;;56516:126;56490:153;;56661:17;56656:66;;56687:35;;-1:-1:-1;;;56687:35:0;;;;;;;;;;;56656:66;-1:-1:-1;;;;;56737:16:0;;56733:52;;56762:23;;-1:-1:-1;;;56762:23:0;;;;;;;;;;;56733:52;56906:35;56923:1;56927:7;56936:4;56906:8;:35::i;:::-;-1:-1:-1;;;;;57237:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;57237:31:0;;;-1:-1:-1;;;;;57237:31:0;;;-1:-1:-1;;57237:31:0;;;;;;;57283:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;57283:29:0;;;;;;;;;;;57363:20;;;:11;:20;;;;;;57398:18;;-1:-1:-1;;;;;;57431:49:0;;;;-1:-1:-1;;;57464:15:0;57431:49;;;;;;;;;;57754:11;;57814:24;;;;;57857:13;;57363:20;;57814:24;;57857:13;57853:384;;58067:13;;58052:11;:28;58048:174;;58105:20;;58174:28;;;;-1:-1:-1;;;;;58148:54:0;-1:-1:-1;;;58148:54:0;-1:-1:-1;;;;;;58148:54:0;;;-1:-1:-1;;;;;58105:20:0;;58148:54;;;;58048:174;57212:1036;;;58284:7;58280:2;-1:-1:-1;;;;;58265:27:0;58274:4;-1:-1:-1;;;;;58265:27:0;-1:-1:-1;;;;;;;;;;;58265:27:0;;;;;;;;;58303:42;56327:2026;;56223:2130;;;:::o;34361:505::-;34450:22;34458:4;34464:7;34450;:22::i;:::-;34445:414;;34638:41;34666:7;-1:-1:-1;;;;;34638:41:0;34676:2;34638:19;:41::i;:::-;34752:38;34780:4;34787:2;34752:19;:38::i;:::-;34543:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;34543:270:0;;;;;;;;;;-1:-1:-1;;;34489:358:0;;;;;;;:::i;37997:238::-;38081:22;38089:4;38095:7;38081;:22::i;:::-;38076:152;;38120:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;38120:29:0;;;;;;;;;:36;;-1:-1:-1;;38120:36:0;38152:4;38120:36;;;38203:12;8297:10;;8217:98;38203:12;-1:-1:-1;;;;;38176:40:0;38194:7;-1:-1:-1;;;;;38176:40:0;38188:4;38176:40;;;;;;;;;;37997:238;;:::o;28347:197::-;28410:7;28517:5;28521:1;28517;:5;:::i;:::-;:10;:18;;28534:1;28517:18;;24934:301;24992:24;25019:13;25029:3;25019:7;:13;:::i;:::-;24992:40;-1:-1:-1;25043:23:0;25069:13;25079:3;25069:7;:13;:::i;:::-;25043:39;;25167:15;25162:1;:20;;25127:13;25141:16;25127:31;;;;;;;;:::i;:::-;;;;;;;;;:56;25093:13;25107:16;25093:31;;;;;;;;:::i;:::-;;;;;;;;;:90;;;;25201:26;;25219:7;;25201:26;;;24981:254;;24934:301;:::o;53305:104::-;53374:27;53384:2;53388:8;53374:27;;;;;;;;;;;;:9;:27::i;38367:239::-;38451:22;38459:4;38465:7;38451;:22::i;:::-;38447:152;;;38522:5;38490:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;38490:29:0;;;;;;;;;;:37;;-1:-1:-1;;38490:37:0;;;38547:40;8297:10;;38490:12;;38547:40;;38522:5;38547:40;38367:239;;:::o;48271:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;48382:7:0;48465:13;;48458:4;:20;48427:886;;;48499:31;48533:17;;;:11;:17;;;;;;;;;48499:51;;;;;;;;;-1:-1:-1;;;;;48499:51:0;;;;-1:-1:-1;;;48499:51:0;;-1:-1:-1;;;;;48499:51:0;;;;;;;;-1:-1:-1;;;48499:51:0;;;;;;;;;;;;;;48569:729;;48619:14;;-1:-1:-1;;;;;48619:28:0;;48615:101;;48683:9;48271:1109;-1:-1:-1;;;48271:1109:0:o;48615:101::-;-1:-1:-1;;;49058:6:0;49103:17;;;;:11;:17;;;;;;;;;49091:29;;;;;;;;;-1:-1:-1;;;;;49091:29:0;;;;;-1:-1:-1;;;49091:29:0;;-1:-1:-1;;;;;49091:29:0;;;;;;;;-1:-1:-1;;;49091:29:0;;;;;;;;;;;;;49151:28;49147:109;;49219:9;48271:1109;-1:-1:-1;;;48271:1109:0:o;49147:109::-;49018:261;;;48480:833;48427:886;49341:31;;-1:-1:-1;;;49341:31:0;;;;;;;;;;;30906:191;30999:6;;;-1:-1:-1;;;;;31016:17:0;;;-1:-1:-1;;;;;;31016:17:0;;;;;;;31049:40;;30999:6;;;31016:17;30999:6;;31049:40;;30980:16;;31049:40;30969:128;30906:191;:::o;26570:151::-;26642:10;:24;;;26684:29;;10530:25:1;;;26684:29:0;;10518:2:1;10503:18;26684:29:0;;;;;;;26570:151;:::o;61968:667::-;62152:72;;-1:-1:-1;;;62152:72:0;;62131:4;;-1:-1:-1;;;;;62152:36:0;;;;;:72;;8297:10;;62203:4;;62209:7;;62218:5;;62152:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62152:72:0;;;;;;;;-1:-1:-1;;62152:72:0;;;;;;;;;;;;:::i;:::-;;;62148:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62386:13:0;;62382:235;;62432:40;;-1:-1:-1;;;62432:40:0;;;;;;;;;;;62382:235;62575:6;62569:13;62560:6;62556:2;62552:15;62545:38;62148:480;-1:-1:-1;;;;;;62271:55:0;-1:-1:-1;;;62271:55:0;;-1:-1:-1;62148:480:0;61968:667;;;;;;:::o;72118:107::-;72168:13;72201:16;72194:23;;;;;:::i;5831:723::-;5887:13;6108:10;6104:53;;-1:-1:-1;;6135:10:0;;;;;;;;;;;;-1:-1:-1;;;6135:10:0;;;;;5831:723::o;6104:53::-;6182:5;6167:12;6223:78;6230:9;;6223:78;;6256:8;;;;:::i;:::-;;-1:-1:-1;6279:10:0;;-1:-1:-1;6287:2:0;6279:10;;:::i;:::-;;;6223:78;;;6311:19;6343:6;-1:-1:-1;;;;;6333:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6333:17:0;;6311:39;;6361:154;6368:10;;6361:154;;6395:11;6405:1;6395:11;;:::i;:::-;;-1:-1:-1;6464:10:0;6472:2;6464:5;:10;:::i;:::-;6451:24;;:2;:24;:::i;:::-;6438:39;;6421:6;6428;6421:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6421:56:0;;;;;;;;-1:-1:-1;6492:11:0;6501:2;6492:11;;:::i;:::-;;;6361:154;;46521:305;46623:4;-1:-1:-1;;;;;;46660:40:0;;-1:-1:-1;;;46660:40:0;;:105;;-1:-1:-1;;;;;;;46717:48:0;;-1:-1:-1;;;46717:48:0;46660:105;:158;;;-1:-1:-1;;;;;;;;;;5465:40:0;;;46782:36;5356:157;58754:2408;58834:35;58872:21;58885:7;58872:12;:21::i;:::-;58921:18;;58834:59;;-1:-1:-1;58952:290:0;;;;58986:22;8297:10;-1:-1:-1;;;;;59012:20:0;;;;:77;;-1:-1:-1;59053:36:0;59070:4;8297:10;51771:164;:::i;59053:36::-;59012:134;;;-1:-1:-1;8297:10:0;59110:20;59122:7;59110:11;:20::i;:::-;-1:-1:-1;;;;;59110:36:0;;59012:134;58986:161;;59169:17;59164:66;;59195:35;;-1:-1:-1;;;59195:35:0;;;;;;;;;;;59164:66;58971:271;58952:290;59370:35;59387:1;59391:7;59400:4;59370:8;:35::i;:::-;-1:-1:-1;;;;;59735:18:0;;;59701:31;59735:18;;;:12;:18;;;;;;;;59768:24;;-1:-1:-1;;;;;;;;;;59768:24:0;;;;;;;;;-1:-1:-1;;59768:24:0;;;;59807:29;;;;;59791:1;59807:29;;;;;;;;-1:-1:-1;;59807:29:0;;;;;;;;;;59969:20;;;:11;:20;;;;;;60004;;-1:-1:-1;;;;60072:15:0;60039:49;;;-1:-1:-1;;;60039:49:0;-1:-1:-1;;;;;;60039:49:0;;;;;;;;;;60103:22;-1:-1:-1;;;60103:22:0;;;60395:11;;;60455:24;;;;;60498:13;;59735:18;;60455:24;;60498:13;60494:384;;60708:13;;60693:11;:28;60689:174;;60746:20;;60815:28;;;;-1:-1:-1;;;;;60789:54:0;-1:-1:-1;;;60789:54:0;-1:-1:-1;;;;;;60789:54:0;;;-1:-1:-1;;;;;60746:20:0;;60789:54;;;;60689:174;-1:-1:-1;;60906:35:0;;60933:7;;-1:-1:-1;60929:1:0;;-1:-1:-1;;;;;;60906:35:0;;;-1:-1:-1;;;;;;;;;;;60906:35:0;60929:1;;60906:35;-1:-1:-1;;61129:12:0;:14;;;;;;-1:-1:-1;;58754:2408:0:o;7132:451::-;7207:13;7233:19;7265:10;7269:6;7265:1;:10;:::i;:::-;:14;;7278:1;7265:14;:::i;:::-;-1:-1:-1;;;;;7255:25:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7255:25:0;;7233:47;;-1:-1:-1;;;7291:6:0;7298:1;7291:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;7291:15:0;;;;;;;;;-1:-1:-1;;;7317:6:0;7324:1;7317:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;7317:15:0;;;;;;;;-1:-1:-1;7348:9:0;7360:10;7364:6;7360:1;:10;:::i;:::-;:14;;7373:1;7360:14;:::i;:::-;7348:26;;7343:135;7380:1;7376;:5;7343:135;;;-1:-1:-1;;;7428:5:0;7436:3;7428:11;7415:25;;;;;;;:::i;:::-;;;;7403:6;7410:1;7403:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;7403:37:0;;;;;;;;-1:-1:-1;7465:1:0;7455:11;;;;;7383:3;;;:::i;:::-;;;7343:135;;;-1:-1:-1;7496:10:0;;7488:55;;;;-1:-1:-1;;;7488:55:0;;11226:2:1;7488:55:0;;;11208:21:1;;;11245:18;;;11238:30;11304:34;11284:18;;;11277:62;11356:18;;7488:55:0;11024:356:1;53772:163:0;53895:32;53901:2;53905:8;53915:5;53922:4;54333:20;54356:13;-1:-1:-1;;;;;54384:16:0;;54380:48;;54409:19;;-1:-1:-1;;;54409:19:0;;;;;;;;;;;54380:48;54443:13;54439:44;;54465:18;;-1:-1:-1;;;54465:18:0;;;;;;;;;;;54439:44;-1:-1:-1;;;;;54834:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;54893:49:0;;-1:-1:-1;;;;;54834:44:0;;;;;;;54893:49;;;;-1:-1:-1;;54834:44:0;;;;;;54893:49;;;;;;;;;;;;;;;;54959:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;55009:66:0;;;;-1:-1:-1;;;55059:15:0;55009:66;;;;;;;;;;54959:25;55156:23;;;55200:4;:23;;;;-1:-1:-1;;;;;;55208:13:0;;9905:19;:23;;55208:15;55196:641;;;55244:314;55275:38;;55300:12;;-1:-1:-1;;;;;55275:38:0;;;55292:1;;-1:-1:-1;;;;;;;;;;;55275:38:0;55292:1;;55275:38;55341:69;55380:1;55384:2;55388:14;;;;;;55404:5;55341:30;:69::i;:::-;55336:174;;55446:40;;-1:-1:-1;;;55446:40:0;;;;;;;;;;;55336:174;55553:3;55537:12;:19;;55244:314;;55639:12;55622:13;;:29;55618:43;;55653:8;;;55618:43;55196:641;;;55702:120;55733:40;;55758:14;;;;;-1:-1:-1;;;;;55733:40:0;;;55750:1;;-1:-1:-1;;;;;;;;;;;55733:40:0;55750:1;;55733:40;55817:3;55801:12;:19;;55702:120;;55196:641;-1:-1:-1;55851:13:0;:28;55901:60;52499:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:160::-;490:20;;546:13;;539:21;529:32;;519:60;;575:1;572;565:12;519:60;425:160;;;:::o;590:247::-;649:6;702:2;690:9;681:7;677:23;673:32;670:52;;;718:1;715;708:12;670:52;757:9;744:23;776:31;801:5;776:31;:::i;842:251::-;912:6;965:2;953:9;944:7;940:23;936:32;933:52;;;981:1;978;971:12;933:52;1013:9;1007:16;1032:31;1057:5;1032:31;:::i;1098:388::-;1166:6;1174;1227:2;1215:9;1206:7;1202:23;1198:32;1195:52;;;1243:1;1240;1233:12;1195:52;1282:9;1269:23;1301:31;1326:5;1301:31;:::i;:::-;1351:5;-1:-1:-1;1408:2:1;1393:18;;1380:32;1421:33;1380:32;1421:33;:::i;:::-;1473:7;1463:17;;;1098:388;;;;;:::o;1491:456::-;1568:6;1576;1584;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;1692:9;1679:23;1711:31;1736:5;1711:31;:::i;:::-;1761:5;-1:-1:-1;1818:2:1;1803:18;;1790:32;1831:33;1790:32;1831:33;:::i;:::-;1491:456;;1883:7;;-1:-1:-1;;;1937:2:1;1922:18;;;;1909:32;;1491:456::o;1952:794::-;2047:6;2055;2063;2071;2124:3;2112:9;2103:7;2099:23;2095:33;2092:53;;;2141:1;2138;2131:12;2092:53;2180:9;2167:23;2199:31;2224:5;2199:31;:::i;:::-;2249:5;-1:-1:-1;2306:2:1;2291:18;;2278:32;2319:33;2278:32;2319:33;:::i;:::-;2371:7;-1:-1:-1;2425:2:1;2410:18;;2397:32;;-1:-1:-1;2480:2:1;2465:18;;2452:32;-1:-1:-1;;;;;2496:30:1;;2493:50;;;2539:1;2536;2529:12;2493:50;2562:22;;2615:4;2607:13;;2603:27;-1:-1:-1;2593:55:1;;2644:1;2641;2634:12;2593:55;2667:73;2732:7;2727:2;2714:16;2709:2;2705;2701:11;2667:73;:::i;:::-;2657:83;;;1952:794;;;;;;;:::o;2751:315::-;2816:6;2824;2877:2;2865:9;2856:7;2852:23;2848:32;2845:52;;;2893:1;2890;2883:12;2845:52;2932:9;2919:23;2951:31;2976:5;2951:31;:::i;:::-;3001:5;-1:-1:-1;3025:35:1;3056:2;3041:18;;3025:35;:::i;:::-;3015:45;;2751:315;;;;;:::o;3071:::-;3139:6;3147;3200:2;3188:9;3179:7;3175:23;3171:32;3168:52;;;3216:1;3213;3206:12;3168:52;3255:9;3242:23;3274:31;3299:5;3274:31;:::i;:::-;3324:5;3376:2;3361:18;;;;3348:32;;-1:-1:-1;;;3071:315:1:o;3391:1027::-;3484:6;3492;3545:2;3533:9;3524:7;3520:23;3516:32;3513:52;;;3561:1;3558;3551:12;3513:52;3601:9;3588:23;-1:-1:-1;;;;;3671:2:1;3663:6;3660:14;3657:34;;;3687:1;3684;3677:12;3657:34;3725:6;3714:9;3710:22;3700:32;;3770:7;3763:4;3759:2;3755:13;3751:27;3741:55;;3792:1;3789;3782:12;3741:55;3828:2;3815:16;3850:4;3873:2;3869;3866:10;3863:36;;;3879:18;;:::i;:::-;3925:2;3922:1;3918:10;3908:20;;3948:28;3972:2;3968;3964:11;3948:28;:::i;:::-;4010:15;;;4041:12;;;;4073:11;;;4103;;;4099:20;;4096:33;-1:-1:-1;4093:53:1;;;4142:1;4139;4132:12;4093:53;4164:1;4155:10;;4174:163;4188:2;4185:1;4182:9;4174:163;;;4245:17;;4233:30;;4206:1;4199:9;;;;;4283:12;;;;4315;;4174:163;;;-1:-1:-1;4356:5:1;4393:18;;;;4380:32;;-1:-1:-1;;;;;;;3391:1027:1:o;4423:180::-;4479:6;4532:2;4520:9;4511:7;4507:23;4503:32;4500:52;;;4548:1;4545;4538:12;4500:52;4571:26;4587:9;4571:26;:::i;4608:180::-;4667:6;4720:2;4708:9;4699:7;4695:23;4691:32;4688:52;;;4736:1;4733;4726:12;4688:52;-1:-1:-1;4759:23:1;;4608:180;-1:-1:-1;4608:180:1:o;4793:315::-;4861:6;4869;4922:2;4910:9;4901:7;4897:23;4893:32;4890:52;;;4938:1;4935;4928:12;4890:52;4974:9;4961:23;4951:33;;5034:2;5023:9;5019:18;5006:32;5047:31;5072:5;5047:31;:::i;5113:245::-;5171:6;5224:2;5212:9;5203:7;5199:23;5195:32;5192:52;;;5240:1;5237;5230:12;5192:52;5279:9;5266:23;5298:30;5322:5;5298:30;:::i;5363:249::-;5432:6;5485:2;5473:9;5464:7;5460:23;5456:32;5453:52;;;5501:1;5498;5491:12;5453:52;5533:9;5527:16;5552:30;5576:5;5552:30;:::i;5617:450::-;5686:6;5739:2;5727:9;5718:7;5714:23;5710:32;5707:52;;;5755:1;5752;5745:12;5707:52;5795:9;5782:23;-1:-1:-1;;;;;5820:6:1;5817:30;5814:50;;;5860:1;5857;5850:12;5814:50;5883:22;;5936:4;5928:13;;5924:27;-1:-1:-1;5914:55:1;;5965:1;5962;5955:12;5914:55;5988:73;6053:7;6048:2;6035:16;6030:2;6026;6022:11;5988:73;:::i;6257:184::-;6327:6;6380:2;6368:9;6359:7;6355:23;6351:32;6348:52;;;6396:1;6393;6386:12;6348:52;-1:-1:-1;6419:16:1;;6257:184;-1:-1:-1;6257:184:1:o;6446:257::-;6487:3;6525:5;6519:12;6552:6;6547:3;6540:19;6568:63;6624:6;6617:4;6612:3;6608:14;6601:4;6594:5;6590:16;6568:63;:::i;:::-;6685:2;6664:15;-1:-1:-1;;6660:29:1;6651:39;;;;6692:4;6647:50;;6446:257;-1:-1:-1;;6446:257:1:o;6708:637::-;6988:3;7026:6;7020:13;7042:53;7088:6;7083:3;7076:4;7068:6;7064:17;7042:53;:::i;:::-;7158:13;;7117:16;;;;7180:57;7158:13;7117:16;7214:4;7202:17;;7180:57;:::i;:::-;-1:-1:-1;;;7259:20:1;;7288:22;;;7337:1;7326:13;;6708:637;-1:-1:-1;;;;6708:637:1:o;7560:786::-;7971:25;7966:3;7959:38;7941:3;8026:6;8020:13;8042:62;8097:6;8092:2;8087:3;8083:12;8076:4;8068:6;8064:17;8042:62;:::i;:::-;-1:-1:-1;;;8163:2:1;8123:16;;;8155:11;;;8148:40;8213:13;;8235:63;8213:13;8284:2;8276:11;;8269:4;8257:17;;8235:63;:::i;:::-;8318:17;8337:2;8314:26;;7560:786;-1:-1:-1;;;;7560:786:1:o;8783:488::-;-1:-1:-1;;;;;9052:15:1;;;9034:34;;9104:15;;9099:2;9084:18;;9077:43;9151:2;9136:18;;9129:34;;;9199:3;9194:2;9179:18;;9172:31;;;8977:4;;9220:45;;9245:19;;9237:6;9220:45;:::i;:::-;9212:53;8783:488;-1:-1:-1;;;;;;8783:488:1:o;9555:632::-;9726:2;9778:21;;;9848:13;;9751:18;;;9870:22;;;9697:4;;9726:2;9949:15;;;;9923:2;9908:18;;;9697:4;9992:169;10006:6;10003:1;10000:13;9992:169;;;10067:13;;10055:26;;10136:15;;;;10101:12;;;;10028:1;10021:9;9992:169;;;-1:-1:-1;10178:3:1;;9555:632;-1:-1:-1;;;;;;9555:632:1:o;10800:219::-;10949:2;10938:9;10931:21;10912:4;10969:44;11009:2;10998:9;10994:18;10986:6;10969:44;:::i;12928:356::-;13130:2;13112:21;;;13149:18;;;13142:30;13208:34;13203:2;13188:18;;13181:62;13275:2;13260:18;;12928:356::o;14050:355::-;14252:2;14234:21;;;14291:2;14271:18;;;14264:30;14330:33;14325:2;14310:18;;14303:61;14396:2;14381:18;;14050:355::o;15008:275::-;15079:2;15073:9;15144:2;15125:13;;-1:-1:-1;;15121:27:1;15109:40;;-1:-1:-1;;;;;15164:34:1;;15200:22;;;15161:62;15158:88;;;15226:18;;:::i;:::-;15262:2;15255:22;15008:275;;-1:-1:-1;15008:275:1:o;15288:128::-;15328:3;15359:1;15355:6;15352:1;15349:13;15346:39;;;15365:18;;:::i;:::-;-1:-1:-1;15401:9:1;;15288:128::o;15421:120::-;15461:1;15487;15477:35;;15492:18;;:::i;:::-;-1:-1:-1;15526:9:1;;15421:120::o;15546:168::-;15586:7;15652:1;15648;15644:6;15640:14;15637:1;15634:21;15629:1;15622:9;15615:17;15611:45;15608:71;;;15659:18;;:::i;:::-;-1:-1:-1;15699:9:1;;15546:168::o;15719:125::-;15759:4;15787:1;15784;15781:8;15778:34;;;15792:18;;:::i;:::-;-1:-1:-1;15829:9:1;;15719:125::o;15849:258::-;15921:1;15931:113;15945:6;15942:1;15939:13;15931:113;;;16021:11;;;16015:18;16002:11;;;15995:39;15967:2;15960:10;15931:113;;;16062:6;16059:1;16056:13;16053:48;;;-1:-1:-1;;16097:1:1;16079:16;;16072:27;15849:258::o;16112:136::-;16151:3;16179:5;16169:39;;16188:18;;:::i;:::-;-1:-1:-1;;;16224:18:1;;16112:136::o;16253:380::-;16332:1;16328:12;;;;16375;;;16396:61;;16450:4;16442:6;16438:17;16428:27;;16396:61;16503:2;16495:6;16492:14;16472:18;16469:38;16466:161;;;16549:10;16544:3;16540:20;16537:1;16530:31;16584:4;16581:1;16574:15;16612:4;16609:1;16602:15;16466:161;;16253:380;;;:::o;16638:135::-;16677:3;-1:-1:-1;;16698:17:1;;16695:43;;;16718:18;;:::i;:::-;-1:-1:-1;16765:1:1;16754:13;;16638:135::o;16778:112::-;16810:1;16836;16826:35;;16841:18;;:::i;:::-;-1:-1:-1;16875:9:1;;16778:112::o;16895:127::-;16956:10;16951:3;16947:20;16944:1;16937:31;16987:4;16984:1;16977:15;17011:4;17008:1;17001:15;17027:127;17088:10;17083:3;17079:20;17076:1;17069:31;17119:4;17116:1;17109:15;17143:4;17140:1;17133:15;17159:127;17220:10;17215:3;17211:20;17208:1;17201:31;17251:4;17248:1;17241:15;17275:4;17272:1;17265:15;17291:127;17352:10;17347:3;17343:20;17340:1;17333:31;17383:4;17380:1;17373:15;17407:4;17404:1;17397:15;17423:131;-1:-1:-1;;;;;17498:31:1;;17488:42;;17478:70;;17544:1;17541;17534:12;17559:131;-1:-1:-1;;;;;;17633:32:1;;17623:43;;17613:71;;17680:1;17677;17670:12

Swarm Source

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