ETH Price: $2,526.72 (+0.14%)

Token

FloorIsLava (FIL)
 

Overview

Max Total Supply

620 FIL

Holders

314

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 FIL
0x8feaa088c9eccaf9dfc4bc4f10775104f36fc12d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

QuarterMachine's first FEATURE DROP of 2022!

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FloorIsLava

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-05-16
*/

// SPDX-License-Identifier: UNLICENSED
// File: @openzeppelin/contracts/access/IAccessControl.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/interfaces/IERC721.sol


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

pragma solidity ^0.8.0;


// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// 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.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

// File: contracts/lib/PaymentSplitterConnector.sol


pragma solidity ^0.8.4;



contract PaymentSplitterConnector is AccessControl {

    address public PAYMENT_SPLITTER_ADDRESS;
    address public PAYMENT_DEFAULT_ADMIN;
    address public SPLITTER_ADMIN;
    bytes32 private constant SPLITTER_ADMIN_ROLE = keccak256("SPLITTER_ADMIN");

    constructor(address admin, address splitterAddress) {
        _setupRole(DEFAULT_ADMIN_ROLE, admin);
        _setupRole(SPLITTER_ADMIN_ROLE, admin);
        
        SPLITTER_ADMIN = admin;
        PAYMENT_DEFAULT_ADMIN = admin;
        PAYMENT_SPLITTER_ADDRESS = splitterAddress;
    }

    modifier onlySplitterAdmin {
        require(hasRole(SPLITTER_ADMIN_ROLE, msg.sender), "Splitter: No Splitter Role");
        _;
    }

    modifier onlyDefaultAdmin {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "Splitter: No Admin Permission");
        _;
    }

    function setSplitterAddress(address _splitterAddress) public onlySplitterAdmin {
        PAYMENT_SPLITTER_ADDRESS = _splitterAddress;
    }

    function withdraw() public {
        address payable recipient = payable(PAYMENT_SPLITTER_ADDRESS);
        uint256 balance = address(this).balance;
        
        Address.sendValue(recipient, balance);
    }

    function transferSplitterAdminRole(address admin) public onlyDefaultAdmin{
        require(SPLITTER_ADMIN != admin, "Splitter: Should be different");

        grantRole(SPLITTER_ADMIN_ROLE, admin);
        revokeRole(SPLITTER_ADMIN_ROLE, SPLITTER_ADMIN);
        SPLITTER_ADMIN = admin;
    }

    function transferDefaultAdminRole(address admin) public onlyDefaultAdmin{
        require(PAYMENT_DEFAULT_ADMIN != admin, "Splitter: Should be different");

        grantRole(DEFAULT_ADMIN_ROLE, admin);
        revokeRole(DEFAULT_ADMIN_ROLE, PAYMENT_DEFAULT_ADMIN);
        PAYMENT_DEFAULT_ADMIN = admin;
    }
}
// File: contracts/lib/ERC721A.sol


// 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 {}
}

// File: contracts/lib/ERC721ABurnable.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @title ERC721A Burnable Token
 * @dev ERC721A Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721ABurnable is ERC721A {

    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        _burn(tokenId, true);
    }
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/lib/MintStage.sol


pragma solidity ^0.8.4;




contract MintStage is Ownable {

    using SafeMath for uint256;

    struct Stage {
        uint id;
        uint totalLimit;
        uint walletLimit;
        uint256 rate;
        bool isPublic;
        bytes32 whitelistRoot;
        uint256 walletLimitCounter;
        uint256 openingTime;
        uint256 closingTime;
    }

    Stage public currentStage;

    mapping(uint => mapping(address => uint)) public walletMintCount;

    uint private constant BATCH_LIMIT = 20;

    event MintStageUpdated(
        uint indexed _stage,
        uint _stageLimit,
        uint _stageLimitPerWallet,
        uint256 _rate,
        uint256 _openingTime,
        uint256 _closingTIme
    );

    function setMintStage (
        uint _stage,
        uint _stageLimit,
        uint _stageLimitPerWallet,
        uint256 _rate,
        uint256 _openingTime,
        uint256 _closingTime,
        bytes32 _whitelistMerkleRoot,
        bool _isPublic,
        bool _resetClaimCounter
    )
        public onlyOwner
    {
        require(_openingTime < _closingTime, "Stage: Invalid duration");
        
        uint currentLimitWalletPerCounter = currentStage.walletLimitCounter;

        if (_resetClaimCounter) {
            currentLimitWalletPerCounter = currentLimitWalletPerCounter + 1;
        }

        currentStage = Stage(
            _stage,
            _stageLimit,
            _stageLimitPerWallet,
            _rate,
            _isPublic,
            _whitelistMerkleRoot,
            currentLimitWalletPerCounter,
            _openingTime,
            _closingTime
        );

        emit MintStageUpdated(_stage, _stageLimit, _stageLimitPerWallet, _rate, _openingTime, _closingTime);
    }

    function _verifyMint(bytes32[] calldata _merkleProof, uint _mintAmount, uint256 currentMintedCount, uint256 discount) internal {
        address sender = msg.sender;
        uint256 sentAmount = msg.value;
        uint256 requiredPayment = _mintAmount.mul(currentStage.rate.sub(discount));
        uint mintCount = walletMintCount[currentStage.walletLimitCounter][sender];
        
        require(_mintAmount > 0 && _mintAmount <= BATCH_LIMIT, "Stage: Mint Amount invalid");
        require(isStageOpen(), "Stage: Mint Not Open");

        require(currentMintedCount.add(_mintAmount) <= currentStage.totalLimit, "Stage: Reached Mint Stage Limit");
        require(currentStage.walletLimit == 0 || mintCount.add(_mintAmount) <= currentStage.walletLimit, "Stage: Reached Mint Wallet Limit");

        if (!currentStage.isPublic) {
            bytes32 leaf = keccak256(abi.encodePacked(sender));
            require(MerkleProof.verify(_merkleProof, currentStage.whitelistRoot, leaf), "Stage: Not in whitelist");
        }
        
        require(sentAmount >= requiredPayment, "Stage: Payment amount not enough");
    }

    function isStageOpen() public view returns (bool){
        return block.timestamp >= currentStage.openingTime && block.timestamp <= currentStage.closingTime;
    }

    function _updateWalletMintCount(address sender, uint _mintAmount) internal {
        uint mintCount = walletMintCount[currentStage.walletLimitCounter][sender];
        walletMintCount[currentStage.walletLimitCounter][sender] = mintCount.add(_mintAmount);
    }
}
// File: @openzeppelin/contracts/security/Pausable.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: contracts/FloorIsLava.sol


pragma solidity ^0.8.4;










contract FloorIsLava is ERC721A, ERC721ABurnable, Pausable, Ownable, MintStage, PaymentSplitterConnector{

    using SafeMath for uint256;
    using Strings for uint256;

    string public baseExtension = ".json";
    string public baseURI = "";

    uint public MAX_TOKEN_SUPPLY = 620;
    uint public FISHING_INTERVAL = 86400;
    uint private constant BATCH_LIMIT = 20;
    uint public FISHING_CHANCE = 5;

    bool public isFishingOpen = false;

    mapping(uint256 => uint256) public lastFishedTime;

    event Fished(
        address indexed _recipient,
        uint256 _tokenId,
        uint256 _fishedTimestamp
    );

    event AttemptedFishing(
        uint256 _tokenId,
        uint256 _fishedTimestamp
    );

    uint256 private nonce;
    
    constructor(address splitterAdmin, address splitterAddress) 
        ERC721A("FloorIsLava", "FIL")
        PaymentSplitterConnector(splitterAdmin, splitterAddress)
    {
        pauseMint();
    }

    function batchAirdrop(address[] calldata _recipients, uint[] calldata _amounts) public onlyOwner
    {
        require(_recipients.length <= BATCH_LIMIT, "QM: Batch more than limit");
        require(_recipients.length == _amounts.length, "QM: Need same length");
        
        for (uint i = 0; i < _recipients.length; i++){
            uint amount = _amounts[i];
            require(amount <= BATCH_LIMIT, "QM: Batch more than limit");

            mint(_recipients[i], amount);
        }
    }

    function claim(bytes32[] calldata _merkleProof, uint _mintAmount) public payable whenNotPaused {
        _verifyMint(_merkleProof, _mintAmount, _totalMinted(), 0);
        mint(msg.sender, _mintAmount);
        _updateWalletMintCount(msg.sender, _mintAmount);
    }

    function fish(uint[] calldata _tokenIds) public whenNotPaused returns (uint256) {

        address sender = msg.sender;
        uint256 timestamp = block.timestamp;
        uint256 fishedToken = 0;

        require(isFishingOpen, "QM: Fishing not open");
        require(_tokenIds.length <= BATCH_LIMIT, "QM: Batch more than limit");

        for (uint i = 0; i < _tokenIds.length; i++){
            uint tokenId = _tokenIds[i];

            require(ownerOf(tokenId) == sender, "QM: Need to own at least 1 FIL");
            require(timestamp - lastFishedTime[tokenId] >= FISHING_INTERVAL, "QM: Wait 24 hours");
            
            uint chance = _randomizeFishChance();

            if (chance <= FISHING_CHANCE) {
                uint fishedTokenId = mint(msg.sender, 1);
                fishedToken += 1;

                lastFishedTime[fishedTokenId] = timestamp;

                emit Fished(msg.sender, fishedTokenId, timestamp);
                emit AttemptedFishing(fishedTokenId, timestamp);
            }

            lastFishedTime[tokenId] = timestamp;
            emit AttemptedFishing(tokenId, timestamp);
        }

        return fishedToken;
    }

    function _randomizeFishChance() private returns(uint){

        uint randomnumber = uint(keccak256(abi.encodePacked(block.timestamp, msg.sender, nonce))) % 100;
        randomnumber = randomnumber + 1;
        nonce++;

        return randomnumber;
    }

    function mint(address recipient, uint mintAmount) private returns (uint256)
    {
        require(_totalMinted().add(mintAmount) <= MAX_TOKEN_SUPPLY, "QM: Max Supply reached");

        _safeMint(recipient, mintAmount);
        
        return _totalMinted();
    }

    function pauseMint() public onlyOwner {
        _pause();
    }

    function unpauseMint() public onlyOwner {
        _unpause();
    }

    function tokenURI(uint _tokenId) public view override(ERC721A) returns (string memory) {
        require(_tokenId > 0, "QM: URI requested for invalid token");
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, _tokenId.toString(), baseExtension)) : baseURI;
    }

    function totalTokensMinted() public view returns(uint256) {
        return _totalMinted();
    }

    function setBaseURI(string memory _baseURI) public onlyOwner {
        baseURI = _baseURI;
    }

    function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
        baseExtension = _newBaseExtension;
    }

    function setFishingChance(uint _fishingChance) public onlyOwner {
        FISHING_CHANCE = _fishingChance;
    }

    function setFishingInterval(uint256 _fishingInterval) public onlyOwner {
        FISHING_INTERVAL = _fishingInterval;
    }

    function setFishingOpen(bool _isFishingOpen) public onlyOwner {
        isFishingOpen = _isFishingOpen;
    }

    function _baseURI() internal view override(ERC721A) returns (string memory) {
        return baseURI;
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721A, AccessControl) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"splitterAdmin","type":"address"},{"internalType":"address","name":"splitterAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_fishedTimestamp","type":"uint256"}],"name":"AttemptedFishing","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_fishedTimestamp","type":"uint256"}],"name":"Fished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_stage","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_stageLimit","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_stageLimitPerWallet","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_rate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_openingTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_closingTIme","type":"uint256"}],"name":"MintStageUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FISHING_CHANCE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FISHING_INTERVAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKEN_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAYMENT_DEFAULT_ADMIN","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAYMENT_SPLITTER_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SPLITTER_ADMIN","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_recipients","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"batchAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"currentStage","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"totalLimit","type":"uint256"},{"internalType":"uint256","name":"walletLimit","type":"uint256"},{"internalType":"uint256","name":"rate","type":"uint256"},{"internalType":"bool","name":"isPublic","type":"bool"},{"internalType":"bytes32","name":"whitelistRoot","type":"bytes32"},{"internalType":"uint256","name":"walletLimitCounter","type":"uint256"},{"internalType":"uint256","name":"openingTime","type":"uint256"},{"internalType":"uint256","name":"closingTime","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"fish","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","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":[],"name":"isFishingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isStageOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lastFishedTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fishingChance","type":"uint256"}],"name":"setFishingChance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fishingInterval","type":"uint256"}],"name":"setFishingInterval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isFishingOpen","type":"bool"}],"name":"setFishingOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_stage","type":"uint256"},{"internalType":"uint256","name":"_stageLimit","type":"uint256"},{"internalType":"uint256","name":"_stageLimitPerWallet","type":"uint256"},{"internalType":"uint256","name":"_rate","type":"uint256"},{"internalType":"uint256","name":"_openingTime","type":"uint256"},{"internalType":"uint256","name":"_closingTime","type":"uint256"},{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"},{"internalType":"bool","name":"_isPublic","type":"bool"},{"internalType":"bool","name":"_resetClaimCounter","type":"bool"}],"name":"setMintStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_splitterAddress","type":"address"}],"name":"setSplitterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"transferDefaultAdminRole","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":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"transferSplitterAdminRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpauseMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"walletMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a0908152620000289160179190620003ba565b506040805160208101918290526000908190526200004991601891620003ba565b5061026c60195562015180601a556005601b55601c805460ff191690553480156200007357600080fd5b5060405162003d4f38038062003d4f83398101604081905262000096916200047d565b604080518082018252600b81526a466c6f6f7249734c61766160a81b60208083019182528351808501909452600384526211925360ea1b90840152815185938593929091620000e891600291620003ba565b508051620000fe906003906020840190620003ba565b50600160005550506008805460ff191690556200011b336200019f565b62000128600083620001f9565b620001547f10ec476f95b2ac17b26abe61aa04eca5036baf3b2845e79fbbb0fd495127a45883620001f9565b601680546001600160a01b039384166001600160a01b03199182168117909255601580548216909217909155601480549290931691161790556200019762000209565b5050620004f2565b600880546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200020582826200027b565b5050565b6008546001600160a01b036101009091041633146200026f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b620002796200031f565b565b60008281526013602090815260408083206001600160a01b038516845290915290205460ff16620002055760008281526013602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620002db3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60085460ff1615620003675760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640162000266565b6008805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586200039d3390565b6040516001600160a01b03909116815260200160405180910390a1565b828054620003c890620004b5565b90600052602060002090601f016020900481019282620003ec576000855562000437565b82601f106200040757805160ff191683800117855562000437565b8280016001018555821562000437579182015b82811115620004375782518255916020019190600101906200041a565b506200044592915062000449565b5090565b5b808211156200044557600081556001016200044a565b80516001600160a01b03811681146200047857600080fd5b919050565b600080604083850312156200049157600080fd5b6200049c8362000460565b9150620004ac6020840162000460565b90509250929050565b600181811c90821680620004ca57607f821691505b60208210811415620004ec57634e487b7160e01b600052602260045260246000fd5b50919050565b61384d80620005026000396000f3fe6080604052600436106103355760003560e01c80639090a631116101ab578063c6682862116100f7578063e489d51011610095578063f23442081161006f578063f2344208146109cb578063f2fde38b146109eb578063f57cd03c14610a0b578063f68605da14610a2157600080fd5b8063e489d51014610957578063e985e9c51461096d578063f0fea4c8146109b657600080fd5b8063d2d871e0116100d1578063d2d871e0146108e1578063d547741f14610901578063d99bc94414610921578063da3ef23f1461093757600080fd5b8063c668286214610897578063c87b56dd146108ac578063cd85cdb5146108cc57600080fd5b8063a2d7bebf11610164578063b7f70ac21161013e578063b7f70ac21461081d578063b816d0871461083d578063b88d4fde1461085d578063bd0104081461087d57600080fd5b8063a2d7bebf146107bd578063ae0cb910146107dd578063b69f6df9146107fd57600080fd5b80639090a631146106fb57806391d148541461071b57806395d89b411461073b5780639781398014610750578063a217fddf14610788578063a22cb4651461079d57600080fd5b806340dbdd21116102855780636352211e11610223578063715018a6116101fd578063715018a61461068a5780637a92f98f1461069f5780637d549e99146106bf5780638da5cb5b146106d857600080fd5b80636352211e146106355780636c0360eb1461065557806370a082311461066a57600080fd5b8063437a68e91161025f578063437a68e91461055f57806355f804b31461057f5780635bf5d54c1461059f5780635c975abb1461061d57600080fd5b806340dbdd21146104ff57806342842e0e1461051f57806342966c681461053f57600080fd5b80631a8bd2da116102f25780632f2ff15d116102cc5780632f2ff15d1461049757806336568abe146104b75780633b439351146104d75780633ccfd60b146104ea57600080fd5b80631a8bd2da1461043257806323b872dd14610447578063248a9ca31461046757600080fd5b806301ffc9a71461033a57806306fdde031461036f578063081812fc14610391578063095ea7b3146103c95780631526e087146103eb57806318160ddd1461040b575b600080fd5b34801561034657600080fd5b5061035a61035536600461332d565b610a4e565b60405190151581526020015b60405180910390f35b34801561037b57600080fd5b50610384610a5f565b60405161036691906135d1565b34801561039d57600080fd5b506103b16103ac3660046132f1565b610af1565b6040516001600160a01b039091168152602001610366565b3480156103d557600080fd5b506103e96103e43660046131b5565b610b35565b005b3480156103f757600080fd5b506103e9610406366004613086565b610bc3565b34801561041757600080fd5b5060015460005403600019015b604051908152602001610366565b34801561043e57600080fd5b506103e9610cc2565b34801561045357600080fd5b506103e96104623660046130d4565b610cfc565b34801561047357600080fd5b506104246104823660046132f1565b60009081526013602052604090206001015490565b3480156104a357600080fd5b506103e96104b236600461330a565b610d07565b3480156104c357600080fd5b506103e96104d236600461330a565b610d2d565b6103e96104e536600461324a565b610dab565b3480156104f657600080fd5b506103e9610dfd565b34801561050b57600080fd5b506103e961051a366004613086565b610e14565b34801561052b57600080fd5b506103e961053a3660046130d4565b610eac565b34801561054b57600080fd5b506103e961055a3660046132f1565b610ec7565b34801561056b57600080fd5b506103e961057a3660046132d6565b610ed5565b34801561058b57600080fd5b506103e961059a366004613367565b610f18565b3480156105ab57600080fd5b50600954600a54600b54600c54600d54600e54600f546010546011546105d9989796959460ff169392919089565b60408051998a5260208a0198909852968801959095526060870193909352901515608086015260a085015260c084015260e083015261010082015261012001610366565b34801561062957600080fd5b5060085460ff1661035a565b34801561064157600080fd5b506103b16106503660046132f1565b610f5b565b34801561066157600080fd5b50610384610f6d565b34801561067657600080fd5b50610424610685366004613086565b610ffb565b34801561069657600080fd5b506103e9611049565b3480156106ab57600080fd5b506103e96106ba3660046132f1565b611083565b3480156106cb57600080fd5b5060005460001901610424565b3480156106e457600080fd5b5060085461010090046001600160a01b03166103b1565b34801561070757600080fd5b506103e96107163660046132f1565b6110bd565b34801561072757600080fd5b5061035a61073636600461330a565b6110f2565b34801561074757600080fd5b5061038461111d565b34801561075c57600080fd5b5061042461076b36600461330a565b601260209081526000928352604080842090915290825290205481565b34801561079457600080fd5b50610424600081565b3480156107a957600080fd5b506103e96107b836600461318b565b61112c565b3480156107c957600080fd5b506104246107d8366004613295565b6111c2565b3480156107e957600080fd5b506103e96107f83660046133af565b611471565b34801561080957600080fd5b506016546103b1906001600160a01b031681565b34801561082957600080fd5b506103e9610838366004613086565b6115f0565b34801561084957600080fd5b506103e96108583660046131df565b611728565b34801561086957600080fd5b506103e9610878366004613110565b611854565b34801561088957600080fd5b50601c5461035a9060ff1681565b3480156108a357600080fd5b506103846118a5565b3480156108b857600080fd5b506103846108c73660046132f1565b6118b2565b3480156108d857600080fd5b506103e96119ea565b3480156108ed57600080fd5b506014546103b1906001600160a01b031681565b34801561090d57600080fd5b506103e961091c36600461330a565b611a22565b34801561092d57600080fd5b50610424601a5481565b34801561094357600080fd5b506103e9610952366004613367565b611a48565b34801561096357600080fd5b5061042460195481565b34801561097957600080fd5b5061035a6109883660046130a1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156109c257600080fd5b5061035a611a8b565b3480156109d757600080fd5b506015546103b1906001600160a01b031681565b3480156109f757600080fd5b506103e9610a06366004613086565b611aa5565b348015610a1757600080fd5b50610424601b5481565b348015610a2d57600080fd5b50610424610a3c3660046132f1565b601d6020526000908152604090205481565b6000610a5982611b43565b92915050565b606060028054610a6e9061371f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9a9061371f565b8015610ae75780601f10610abc57610100808354040283529160200191610ae7565b820191906000526020600020905b815481529060010190602001808311610aca57829003601f168201915b5050505050905090565b6000610afc82611b68565b610b19576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610b4082610f5b565b9050806001600160a01b0316836001600160a01b03161415610b755760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610b955750610b938133610988565b155b15610bb3576040516367d9dca160e11b815260040160405180910390fd5b610bbe838383611ba1565b505050565b610bce6000336110f2565b610c1f5760405162461bcd60e51b815260206004820152601d60248201527f53706c69747465723a204e6f2041646d696e205065726d697373696f6e00000060448201526064015b60405180910390fd5b6015546001600160a01b0382811691161415610c7d5760405162461bcd60e51b815260206004820152601d60248201527f53706c69747465723a2053686f756c6420626520646966666572656e740000006044820152606401610c16565b610c88600082610d07565b601554610ca0906000906001600160a01b0316611a22565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b03610100909104163314610cf25760405162461bcd60e51b8152600401610c1690613645565b610cfa611bfd565b565b610bbe838383611c90565b600082815260136020526040902060010154610d238133611e69565b610bbe8383611ecd565b6001600160a01b0381163314610d9d5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610c16565b610da78282611f53565b5050565b60085460ff1615610dce5760405162461bcd60e51b8152600401610c16906135e4565b610de8838383610de16000546000190190565b6000611fba565b610df23382612298565b50610bbe3382612314565b6014546001600160a01b031647610da78282612374565b610e3e7f10ec476f95b2ac17b26abe61aa04eca5036baf3b2845e79fbbb0fd495127a458336110f2565b610e8a5760405162461bcd60e51b815260206004820152601a60248201527f53706c69747465723a204e6f2053706c697474657220526f6c650000000000006044820152606401610c16565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b610bbe83838360405180602001604052806000815250611854565b610ed281600161248d565b50565b6008546001600160a01b03610100909104163314610f055760405162461bcd60e51b8152600401610c1690613645565b601c805460ff1916911515919091179055565b6008546001600160a01b03610100909104163314610f485760405162461bcd60e51b8152600401610c1690613645565b8051610da7906018906020840190612f01565b6000610f6682612640565b5192915050565b60188054610f7a9061371f565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa69061371f565b8015610ff35780601f10610fc857610100808354040283529160200191610ff3565b820191906000526020600020905b815481529060010190602001808311610fd657829003601f168201915b505050505081565b60006001600160a01b038216611024576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b036101009091041633146110795760405162461bcd60e51b8152600401610c1690613645565b610cfa6000612767565b6008546001600160a01b036101009091041633146110b35760405162461bcd60e51b8152600401610c1690613645565b601b55565b905090565b6008546001600160a01b036101009091041633146110ed5760405162461bcd60e51b8152600401610c1690613645565b601a55565b60009182526013602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060038054610a6e9061371f565b6001600160a01b0382163314156111565760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006111d060085460ff1690565b156111ed5760405162461bcd60e51b8152600401610c16906135e4565b601c543390429060009060ff1661123d5760405162461bcd60e51b815260206004820152601460248201527328a69d102334b9b434b733903737ba1037b832b760611b6044820152606401610c16565b601485111561125e5760405162461bcd60e51b8152600401610c169061360e565b60005b8581101561146757600087878381811061127d5761127d6137b5565b905060200201359050846001600160a01b031661129982610f5b565b6001600160a01b0316146112ef5760405162461bcd60e51b815260206004820152601e60248201527f514d3a204e65656420746f206f776e206174206c6561737420312046494c00006044820152606401610c16565b601a546000828152601d602052604090205461130b90866136c5565b101561134d5760405162461bcd60e51b8152602060048201526011602482015270514d3a205761697420323420686f75727360781b6044820152606401610c16565b60006113576127c1565b9050601b54811161140757600061136f336001612298565b905061137c60018661367a565b6000828152601d6020908152604091829020899055815184815290810189905291965033917f752087fc87bb52ad2a85a4856194b9b43eabf061f7d55fa3f355f0a9c1095295910160405180910390a260408051828152602081018890527ff7c1393f8335a47e995f12bcd707fc07b0f9d25895c451461781a5fbdc2c0acd910160405180910390a1505b6000828152601d602090815260409182902087905581518481529081018790527ff7c1393f8335a47e995f12bcd707fc07b0f9d25895c451461781a5fbdc2c0acd910160405180910390a15050808061145f9061375a565b915050611261565b5095945050505050565b6008546001600160a01b036101009091041633146114a15760405162461bcd60e51b8152600401610c1690613645565b8385106114f05760405162461bcd60e51b815260206004820152601760248201527f53746167653a20496e76616c6964206475726174696f6e0000000000000000006044820152606401610c16565b600f5481156115075761150481600161367a565b90505b60408051610120810182528b8152602081018b90528082018a9052606081018990528415156080820181905260a0820187905260c0820184905260e0820189905261010090910187905260098c9055600a8b9055600b8a9055600c899055600d805460ff19169091179055600e859055600f82905560108790556011869055518a907f1eac6b5b91b97537498543fce5db2429ccdd3b13445b508d3142bfc51c8736c7906115dc908c908c908c908c908c90948552602085019390935260408401919091526060830152608082015260a00190565b60405180910390a250505050505050505050565b6115fb6000336110f2565b6116475760405162461bcd60e51b815260206004820152601d60248201527f53706c69747465723a204e6f2041646d696e205065726d697373696f6e0000006044820152606401610c16565b6016546001600160a01b03828116911614156116a55760405162461bcd60e51b815260206004820152601d60248201527f53706c69747465723a2053686f756c6420626520646966666572656e740000006044820152606401610c16565b6116cf7f10ec476f95b2ac17b26abe61aa04eca5036baf3b2845e79fbbb0fd495127a45882610d07565b601654611706907f10ec476f95b2ac17b26abe61aa04eca5036baf3b2845e79fbbb0fd495127a458906001600160a01b0316611a22565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b036101009091041633146117585760405162461bcd60e51b8152600401610c1690613645565b60148311156117795760405162461bcd60e51b8152600401610c169061360e565b8281146117bf5760405162461bcd60e51b81526020600482015260146024820152730a29a74409ccacac840e6c2daca40d8cadccee8d60631b6044820152606401610c16565b60005b8381101561184d5760008383838181106117de576117de6137b5565b90506020020135905060148111156118085760405162461bcd60e51b8152600401610c169061360e565b61183886868481811061181d5761181d6137b5565b90506020020160208101906118329190613086565b82612298565b505080806118459061375a565b9150506117c2565b5050505050565b61185f848484611c90565b6001600160a01b0383163b15158015611881575061187f8484848461284d565b155b1561189f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60178054610f7a9061371f565b6060600082116119105760405162461bcd60e51b815260206004820152602360248201527f514d3a205552492072657175657374656420666f7220696e76616c696420746f60448201526235b2b760e91b6064820152608401610c16565b60006018805461191f9061371f565b9050116119b657601880546119339061371f565b80601f016020809104026020016040519081016040528092919081815260200182805461195f9061371f565b80156119ac5780601f10611981576101008083540402835291602001916119ac565b820191906000526020600020905b81548152906001019060200180831161198f57829003601f168201915b5050505050610a59565b60186119c183612945565b60176040516020016119d5939291906134ec565b60405160208183030381529060405292915050565b6008546001600160a01b03610100909104163314611a1a5760405162461bcd60e51b8152600401610c1690613645565b610cfa612a42565b600082815260136020526040902060010154611a3e8133611e69565b610bbe8383611f53565b6008546001600160a01b03610100909104163314611a785760405162461bcd60e51b8152600401610c1690613645565b8051610da7906017906020840190612f01565b60105460009042108015906110b857505060115442111590565b6008546001600160a01b03610100909104163314611ad55760405162461bcd60e51b8152600401610c1690613645565b6001600160a01b038116611b3a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c16565b610ed281612767565b60006001600160e01b03198216637965db0b60e01b1480610a595750610a5982612a9a565b600081600111158015611b7c575060005482105b8015610a59575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60085460ff16611c465760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610c16565b6008805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000611c9b82612640565b9050836001600160a01b031681600001516001600160a01b031614611cd25760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611cf05750611cf08533610988565b80611d0b575033611d0084610af1565b6001600160a01b0316145b905080611d2b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611d5257604051633a954ecd60e21b815260040160405180910390fd5b611d5e60008487611ba1565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611e32576000548214611e3257805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03166000805160206137f883398151915260405160405180910390a461184d565b611e7382826110f2565b610da757611e8b816001600160a01b03166014612aea565b611e96836020612aea565b604051602001611ea792919061351f565b60408051601f198184030181529082905262461bcd60e51b8252610c16916004016135d1565b611ed782826110f2565b610da75760008281526013602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611f0f3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b611f5d82826110f2565b15610da75760008281526013602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600c5433903490600090611fd990611fd29086612c85565b8790612c91565b600f5460009081526012602090815260408083206001600160a01b03881684529091529020549091508615801590612012575060148711155b61205e5760405162461bcd60e51b815260206004820152601a60248201527f53746167653a204d696e7420416d6f756e7420696e76616c69640000000000006044820152606401610c16565b612066611a8b565b6120a95760405162461bcd60e51b815260206004820152601460248201527329ba30b3b29d1026b4b73a102737ba1027b832b760611b6044820152606401610c16565b600a546120b68789612c9d565b11156121045760405162461bcd60e51b815260206004820152601f60248201527f53746167653a2052656163686564204d696e74205374616765204c696d6974006044820152606401610c16565b600b54158061211e5750600b5461211b8289612c9d565b11155b61216a5760405162461bcd60e51b815260206004820181905260248201527f53746167653a2052656163686564204d696e742057616c6c6574204c696d69746044820152606401610c16565b600d5460ff1661223d576040516bffffffffffffffffffffffff19606086901b1660208201526000906034016040516020818303038152906040528051906020012090506121ef8a8a8080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e549150849050612ca9565b61223b5760405162461bcd60e51b815260206004820152601760248201527f53746167653a204e6f7420696e2077686974656c6973740000000000000000006044820152606401610c16565b505b8183101561228d5760405162461bcd60e51b815260206004820181905260248201527f53746167653a205061796d656e7420616d6f756e74206e6f7420656e6f7567686044820152606401610c16565b505050505050505050565b60006019546122b4836122ae6000546000190190565b90612c9d565b11156122fb5760405162461bcd60e51b815260206004820152601660248201527514534e8813585e0814dd5c1c1b1e481c995858da195960521b6044820152606401610c16565b6123058383612cbf565b600054600019015b9392505050565b600f5460009081526012602090815260408083206001600160a01b03861684529091529020546123448183612c9d565b600f5460009081526012602090815260408083206001600160a01b03909716835295905293909320929092555050565b804710156123c45760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610c16565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612411576040519150601f19603f3d011682016040523d82523d6000602084013e612416565b606091505b5050905080610bbe5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610c16565b600061249883612640565b805190915082156124fe576000336001600160a01b03831614806124c157506124c18233610988565b806124dc5750336124d186610af1565b6001600160a01b0316145b9050806124fc57604051632ce44b5f60e11b815260040160405180910390fd5b505b61250a60008583611ba1565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b17855591890180845292208054919490911661260857600054821461260857805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416906000805160206137f8833981519152908390a4505060018054810190555050565b60408051606081018252600080825260208201819052918101919091528180600111158015612670575060005481105b1561274e57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061274c5780516001600160a01b0316156126e3579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612747579392505050565b6126e3565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008060644233601e546040516020016128009392919092835260609190911b6bffffffffffffffffffffffff19166020830152603482015260540190565b6040516020818303038152906040528051906020012060001c6128239190613775565b905061283081600161367a565b601e805491925060006128428361375a565b909155509092915050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612882903390899088908890600401613594565b602060405180830381600087803b15801561289c57600080fd5b505af19250505080156128cc575060408051601f3d908101601f191682019092526128c99181019061334a565b60015b612927573d8080156128fa576040519150601f19603f3d011682016040523d82523d6000602084013e6128ff565b606091505b50805161291f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816129695750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612993578061297d8161375a565b915061298c9050600a83613692565b915061296d565b6000816001600160401b038111156129ad576129ad6137cb565b6040519080825280601f01601f1916602001820160405280156129d7576020820181803683370190505b5090505b841561293d576129ec6001836136c5565b91506129f9600a86613775565b612a0490603061367a565b60f81b818381518110612a1957612a196137b5565b60200101906001600160f81b031916908160001a905350612a3b600a86613692565b94506129db565b60085460ff1615612a655760405162461bcd60e51b8152600401610c16906135e4565b6008805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611c733390565b60006001600160e01b031982166380ac58cd60e01b1480612acb57506001600160e01b03198216635b5e139f60e01b145b80610a5957506301ffc9a760e01b6001600160e01b0319831614610a59565b60606000612af98360026136a6565b612b0490600261367a565b6001600160401b03811115612b1b57612b1b6137cb565b6040519080825280601f01601f191660200182016040528015612b45576020820181803683370190505b509050600360fc1b81600081518110612b6057612b606137b5565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110612b8f57612b8f6137b5565b60200101906001600160f81b031916908160001a9053506000612bb38460026136a6565b612bbe90600161367a565b90505b6001811115612c36576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612bf257612bf26137b5565b1a60f81b828281518110612c0857612c086137b5565b60200101906001600160f81b031916908160001a90535060049490941c93612c2f81613708565b9050612bc1565b50831561230d5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610c16565b600061230d82846136c5565b600061230d82846136a6565b600061230d828461367a565b600082612cb68584612cd9565b14949350505050565b610da7828260405180602001604052806000815250612d4d565b600081815b8451811015612d45576000858281518110612cfb57612cfb6137b5565b60200260200101519050808311612d215760008381526020829052604090209250612d32565b600081815260208490526040902092505b5080612d3d8161375a565b915050612cde565b509392505050565b610bbe83838360016000546001600160a01b038516612d7e57604051622e076360e81b815260040160405180910390fd5b83612d9c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015612e4d57506001600160a01b0387163b15155b15612ec4575b60405182906001600160a01b038916906000906000805160206137f8833981519152908290a4612e8c600088848060010195508861284d565b612ea9576040516368d2bf6b60e11b815260040160405180910390fd5b80821415612e53578260005414612ebf57600080fd5b612ef8565b5b6040516001830192906001600160a01b038916906000906000805160206137f8833981519152908290a480821415612ec5575b5060005561184d565b828054612f0d9061371f565b90600052602060002090601f016020900481019282612f2f5760008555612f75565b82601f10612f4857805160ff1916838001178555612f75565b82800160010185558215612f75579182015b82811115612f75578251825591602001919060010190612f5a565b50612f81929150612f85565b5090565b5b80821115612f815760008155600101612f86565b60006001600160401b0380841115612fb457612fb46137cb565b604051601f8501601f19908116603f01168101908282118183101715612fdc57612fdc6137cb565b81604052809350858152868686011115612ff557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461302657600080fd5b919050565b60008083601f84011261303d57600080fd5b5081356001600160401b0381111561305457600080fd5b6020830191508360208260051b850101111561306f57600080fd5b9250929050565b8035801515811461302657600080fd5b60006020828403121561309857600080fd5b61230d8261300f565b600080604083850312156130b457600080fd5b6130bd8361300f565b91506130cb6020840161300f565b90509250929050565b6000806000606084860312156130e957600080fd5b6130f28461300f565b92506131006020850161300f565b9150604084013590509250925092565b6000806000806080858703121561312657600080fd5b61312f8561300f565b935061313d6020860161300f565b92506040850135915060608501356001600160401b0381111561315f57600080fd5b8501601f8101871361317057600080fd5b61317f87823560208401612f9a565b91505092959194509250565b6000806040838503121561319e57600080fd5b6131a78361300f565b91506130cb60208401613076565b600080604083850312156131c857600080fd5b6131d18361300f565b946020939093013593505050565b600080600080604085870312156131f557600080fd5b84356001600160401b038082111561320c57600080fd5b6132188883890161302b565b9096509450602087013591508082111561323157600080fd5b5061323e8782880161302b565b95989497509550505050565b60008060006040848603121561325f57600080fd5b83356001600160401b0381111561327557600080fd5b6132818682870161302b565b909790965060209590950135949350505050565b600080602083850312156132a857600080fd5b82356001600160401b038111156132be57600080fd5b6132ca8582860161302b565b90969095509350505050565b6000602082840312156132e857600080fd5b61230d82613076565b60006020828403121561330357600080fd5b5035919050565b6000806040838503121561331d57600080fd5b823591506130cb6020840161300f565b60006020828403121561333f57600080fd5b813561230d816137e1565b60006020828403121561335c57600080fd5b815161230d816137e1565b60006020828403121561337957600080fd5b81356001600160401b0381111561338f57600080fd5b8201601f810184136133a057600080fd5b61293d84823560208401612f9a565b60008060008060008060008060006101208a8c0312156133ce57600080fd5b8935985060208a0135975060408a0135965060608a0135955060808a0135945060a08a0135935060c08a0135925061340860e08b01613076565b91506134176101008b01613076565b90509295985092959850929598565b6000815180845261343e8160208601602086016136dc565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061346c57607f831692505b602080841082141561348e57634e487b7160e01b600052602260045260246000fd5b8180156134a257600181146134b3576134e0565b60ff198616895284890196506134e0565b60008881526020902060005b868110156134d85781548b8201529085019083016134bf565b505084890196505b50505050505092915050565b60006134f88286613452565b84516135088183602089016136dc565b61351481830186613452565b979650505050505050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516135578160178501602088016136dc565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516135888160288401602088016136dc565b01602801949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906135c790830184613426565b9695505050505050565b60208152600061230d6020830184613426565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526019908201527f514d3a204261746368206d6f7265207468616e206c696d697400000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561368d5761368d613789565b500190565b6000826136a1576136a161379f565b500490565b60008160001904831182151516156136c0576136c0613789565b500290565b6000828210156136d7576136d7613789565b500390565b60005b838110156136f75781810151838201526020016136df565b8381111561189f5750506000910152565b60008161371757613717613789565b506000190190565b600181811c9082168061373357607f821691505b6020821081141561375457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561376e5761376e613789565b5060010190565b6000826137845761378461379f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ed257600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220a76893fb250f4033dabd72a7b3394e4177ab4854ce157e7a7c357a24c441da5164736f6c634300080700330000000000000000000000002412c008ed3caabfbd2bf9ee73d9fdb6f2180a21000000000000000000000000ef266b129a88f503beba1ad21167c02c4f62876a

Deployed Bytecode

0x6080604052600436106103355760003560e01c80639090a631116101ab578063c6682862116100f7578063e489d51011610095578063f23442081161006f578063f2344208146109cb578063f2fde38b146109eb578063f57cd03c14610a0b578063f68605da14610a2157600080fd5b8063e489d51014610957578063e985e9c51461096d578063f0fea4c8146109b657600080fd5b8063d2d871e0116100d1578063d2d871e0146108e1578063d547741f14610901578063d99bc94414610921578063da3ef23f1461093757600080fd5b8063c668286214610897578063c87b56dd146108ac578063cd85cdb5146108cc57600080fd5b8063a2d7bebf11610164578063b7f70ac21161013e578063b7f70ac21461081d578063b816d0871461083d578063b88d4fde1461085d578063bd0104081461087d57600080fd5b8063a2d7bebf146107bd578063ae0cb910146107dd578063b69f6df9146107fd57600080fd5b80639090a631146106fb57806391d148541461071b57806395d89b411461073b5780639781398014610750578063a217fddf14610788578063a22cb4651461079d57600080fd5b806340dbdd21116102855780636352211e11610223578063715018a6116101fd578063715018a61461068a5780637a92f98f1461069f5780637d549e99146106bf5780638da5cb5b146106d857600080fd5b80636352211e146106355780636c0360eb1461065557806370a082311461066a57600080fd5b8063437a68e91161025f578063437a68e91461055f57806355f804b31461057f5780635bf5d54c1461059f5780635c975abb1461061d57600080fd5b806340dbdd21146104ff57806342842e0e1461051f57806342966c681461053f57600080fd5b80631a8bd2da116102f25780632f2ff15d116102cc5780632f2ff15d1461049757806336568abe146104b75780633b439351146104d75780633ccfd60b146104ea57600080fd5b80631a8bd2da1461043257806323b872dd14610447578063248a9ca31461046757600080fd5b806301ffc9a71461033a57806306fdde031461036f578063081812fc14610391578063095ea7b3146103c95780631526e087146103eb57806318160ddd1461040b575b600080fd5b34801561034657600080fd5b5061035a61035536600461332d565b610a4e565b60405190151581526020015b60405180910390f35b34801561037b57600080fd5b50610384610a5f565b60405161036691906135d1565b34801561039d57600080fd5b506103b16103ac3660046132f1565b610af1565b6040516001600160a01b039091168152602001610366565b3480156103d557600080fd5b506103e96103e43660046131b5565b610b35565b005b3480156103f757600080fd5b506103e9610406366004613086565b610bc3565b34801561041757600080fd5b5060015460005403600019015b604051908152602001610366565b34801561043e57600080fd5b506103e9610cc2565b34801561045357600080fd5b506103e96104623660046130d4565b610cfc565b34801561047357600080fd5b506104246104823660046132f1565b60009081526013602052604090206001015490565b3480156104a357600080fd5b506103e96104b236600461330a565b610d07565b3480156104c357600080fd5b506103e96104d236600461330a565b610d2d565b6103e96104e536600461324a565b610dab565b3480156104f657600080fd5b506103e9610dfd565b34801561050b57600080fd5b506103e961051a366004613086565b610e14565b34801561052b57600080fd5b506103e961053a3660046130d4565b610eac565b34801561054b57600080fd5b506103e961055a3660046132f1565b610ec7565b34801561056b57600080fd5b506103e961057a3660046132d6565b610ed5565b34801561058b57600080fd5b506103e961059a366004613367565b610f18565b3480156105ab57600080fd5b50600954600a54600b54600c54600d54600e54600f546010546011546105d9989796959460ff169392919089565b60408051998a5260208a0198909852968801959095526060870193909352901515608086015260a085015260c084015260e083015261010082015261012001610366565b34801561062957600080fd5b5060085460ff1661035a565b34801561064157600080fd5b506103b16106503660046132f1565b610f5b565b34801561066157600080fd5b50610384610f6d565b34801561067657600080fd5b50610424610685366004613086565b610ffb565b34801561069657600080fd5b506103e9611049565b3480156106ab57600080fd5b506103e96106ba3660046132f1565b611083565b3480156106cb57600080fd5b5060005460001901610424565b3480156106e457600080fd5b5060085461010090046001600160a01b03166103b1565b34801561070757600080fd5b506103e96107163660046132f1565b6110bd565b34801561072757600080fd5b5061035a61073636600461330a565b6110f2565b34801561074757600080fd5b5061038461111d565b34801561075c57600080fd5b5061042461076b36600461330a565b601260209081526000928352604080842090915290825290205481565b34801561079457600080fd5b50610424600081565b3480156107a957600080fd5b506103e96107b836600461318b565b61112c565b3480156107c957600080fd5b506104246107d8366004613295565b6111c2565b3480156107e957600080fd5b506103e96107f83660046133af565b611471565b34801561080957600080fd5b506016546103b1906001600160a01b031681565b34801561082957600080fd5b506103e9610838366004613086565b6115f0565b34801561084957600080fd5b506103e96108583660046131df565b611728565b34801561086957600080fd5b506103e9610878366004613110565b611854565b34801561088957600080fd5b50601c5461035a9060ff1681565b3480156108a357600080fd5b506103846118a5565b3480156108b857600080fd5b506103846108c73660046132f1565b6118b2565b3480156108d857600080fd5b506103e96119ea565b3480156108ed57600080fd5b506014546103b1906001600160a01b031681565b34801561090d57600080fd5b506103e961091c36600461330a565b611a22565b34801561092d57600080fd5b50610424601a5481565b34801561094357600080fd5b506103e9610952366004613367565b611a48565b34801561096357600080fd5b5061042460195481565b34801561097957600080fd5b5061035a6109883660046130a1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156109c257600080fd5b5061035a611a8b565b3480156109d757600080fd5b506015546103b1906001600160a01b031681565b3480156109f757600080fd5b506103e9610a06366004613086565b611aa5565b348015610a1757600080fd5b50610424601b5481565b348015610a2d57600080fd5b50610424610a3c3660046132f1565b601d6020526000908152604090205481565b6000610a5982611b43565b92915050565b606060028054610a6e9061371f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9a9061371f565b8015610ae75780601f10610abc57610100808354040283529160200191610ae7565b820191906000526020600020905b815481529060010190602001808311610aca57829003601f168201915b5050505050905090565b6000610afc82611b68565b610b19576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610b4082610f5b565b9050806001600160a01b0316836001600160a01b03161415610b755760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610b955750610b938133610988565b155b15610bb3576040516367d9dca160e11b815260040160405180910390fd5b610bbe838383611ba1565b505050565b610bce6000336110f2565b610c1f5760405162461bcd60e51b815260206004820152601d60248201527f53706c69747465723a204e6f2041646d696e205065726d697373696f6e00000060448201526064015b60405180910390fd5b6015546001600160a01b0382811691161415610c7d5760405162461bcd60e51b815260206004820152601d60248201527f53706c69747465723a2053686f756c6420626520646966666572656e740000006044820152606401610c16565b610c88600082610d07565b601554610ca0906000906001600160a01b0316611a22565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b03610100909104163314610cf25760405162461bcd60e51b8152600401610c1690613645565b610cfa611bfd565b565b610bbe838383611c90565b600082815260136020526040902060010154610d238133611e69565b610bbe8383611ecd565b6001600160a01b0381163314610d9d5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610c16565b610da78282611f53565b5050565b60085460ff1615610dce5760405162461bcd60e51b8152600401610c16906135e4565b610de8838383610de16000546000190190565b6000611fba565b610df23382612298565b50610bbe3382612314565b6014546001600160a01b031647610da78282612374565b610e3e7f10ec476f95b2ac17b26abe61aa04eca5036baf3b2845e79fbbb0fd495127a458336110f2565b610e8a5760405162461bcd60e51b815260206004820152601a60248201527f53706c69747465723a204e6f2053706c697474657220526f6c650000000000006044820152606401610c16565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b610bbe83838360405180602001604052806000815250611854565b610ed281600161248d565b50565b6008546001600160a01b03610100909104163314610f055760405162461bcd60e51b8152600401610c1690613645565b601c805460ff1916911515919091179055565b6008546001600160a01b03610100909104163314610f485760405162461bcd60e51b8152600401610c1690613645565b8051610da7906018906020840190612f01565b6000610f6682612640565b5192915050565b60188054610f7a9061371f565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa69061371f565b8015610ff35780601f10610fc857610100808354040283529160200191610ff3565b820191906000526020600020905b815481529060010190602001808311610fd657829003601f168201915b505050505081565b60006001600160a01b038216611024576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b036101009091041633146110795760405162461bcd60e51b8152600401610c1690613645565b610cfa6000612767565b6008546001600160a01b036101009091041633146110b35760405162461bcd60e51b8152600401610c1690613645565b601b55565b905090565b6008546001600160a01b036101009091041633146110ed5760405162461bcd60e51b8152600401610c1690613645565b601a55565b60009182526013602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060038054610a6e9061371f565b6001600160a01b0382163314156111565760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006111d060085460ff1690565b156111ed5760405162461bcd60e51b8152600401610c16906135e4565b601c543390429060009060ff1661123d5760405162461bcd60e51b815260206004820152601460248201527328a69d102334b9b434b733903737ba1037b832b760611b6044820152606401610c16565b601485111561125e5760405162461bcd60e51b8152600401610c169061360e565b60005b8581101561146757600087878381811061127d5761127d6137b5565b905060200201359050846001600160a01b031661129982610f5b565b6001600160a01b0316146112ef5760405162461bcd60e51b815260206004820152601e60248201527f514d3a204e65656420746f206f776e206174206c6561737420312046494c00006044820152606401610c16565b601a546000828152601d602052604090205461130b90866136c5565b101561134d5760405162461bcd60e51b8152602060048201526011602482015270514d3a205761697420323420686f75727360781b6044820152606401610c16565b60006113576127c1565b9050601b54811161140757600061136f336001612298565b905061137c60018661367a565b6000828152601d6020908152604091829020899055815184815290810189905291965033917f752087fc87bb52ad2a85a4856194b9b43eabf061f7d55fa3f355f0a9c1095295910160405180910390a260408051828152602081018890527ff7c1393f8335a47e995f12bcd707fc07b0f9d25895c451461781a5fbdc2c0acd910160405180910390a1505b6000828152601d602090815260409182902087905581518481529081018790527ff7c1393f8335a47e995f12bcd707fc07b0f9d25895c451461781a5fbdc2c0acd910160405180910390a15050808061145f9061375a565b915050611261565b5095945050505050565b6008546001600160a01b036101009091041633146114a15760405162461bcd60e51b8152600401610c1690613645565b8385106114f05760405162461bcd60e51b815260206004820152601760248201527f53746167653a20496e76616c6964206475726174696f6e0000000000000000006044820152606401610c16565b600f5481156115075761150481600161367a565b90505b60408051610120810182528b8152602081018b90528082018a9052606081018990528415156080820181905260a0820187905260c0820184905260e0820189905261010090910187905260098c9055600a8b9055600b8a9055600c899055600d805460ff19169091179055600e859055600f82905560108790556011869055518a907f1eac6b5b91b97537498543fce5db2429ccdd3b13445b508d3142bfc51c8736c7906115dc908c908c908c908c908c90948552602085019390935260408401919091526060830152608082015260a00190565b60405180910390a250505050505050505050565b6115fb6000336110f2565b6116475760405162461bcd60e51b815260206004820152601d60248201527f53706c69747465723a204e6f2041646d696e205065726d697373696f6e0000006044820152606401610c16565b6016546001600160a01b03828116911614156116a55760405162461bcd60e51b815260206004820152601d60248201527f53706c69747465723a2053686f756c6420626520646966666572656e740000006044820152606401610c16565b6116cf7f10ec476f95b2ac17b26abe61aa04eca5036baf3b2845e79fbbb0fd495127a45882610d07565b601654611706907f10ec476f95b2ac17b26abe61aa04eca5036baf3b2845e79fbbb0fd495127a458906001600160a01b0316611a22565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b036101009091041633146117585760405162461bcd60e51b8152600401610c1690613645565b60148311156117795760405162461bcd60e51b8152600401610c169061360e565b8281146117bf5760405162461bcd60e51b81526020600482015260146024820152730a29a74409ccacac840e6c2daca40d8cadccee8d60631b6044820152606401610c16565b60005b8381101561184d5760008383838181106117de576117de6137b5565b90506020020135905060148111156118085760405162461bcd60e51b8152600401610c169061360e565b61183886868481811061181d5761181d6137b5565b90506020020160208101906118329190613086565b82612298565b505080806118459061375a565b9150506117c2565b5050505050565b61185f848484611c90565b6001600160a01b0383163b15158015611881575061187f8484848461284d565b155b1561189f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60178054610f7a9061371f565b6060600082116119105760405162461bcd60e51b815260206004820152602360248201527f514d3a205552492072657175657374656420666f7220696e76616c696420746f60448201526235b2b760e91b6064820152608401610c16565b60006018805461191f9061371f565b9050116119b657601880546119339061371f565b80601f016020809104026020016040519081016040528092919081815260200182805461195f9061371f565b80156119ac5780601f10611981576101008083540402835291602001916119ac565b820191906000526020600020905b81548152906001019060200180831161198f57829003601f168201915b5050505050610a59565b60186119c183612945565b60176040516020016119d5939291906134ec565b60405160208183030381529060405292915050565b6008546001600160a01b03610100909104163314611a1a5760405162461bcd60e51b8152600401610c1690613645565b610cfa612a42565b600082815260136020526040902060010154611a3e8133611e69565b610bbe8383611f53565b6008546001600160a01b03610100909104163314611a785760405162461bcd60e51b8152600401610c1690613645565b8051610da7906017906020840190612f01565b60105460009042108015906110b857505060115442111590565b6008546001600160a01b03610100909104163314611ad55760405162461bcd60e51b8152600401610c1690613645565b6001600160a01b038116611b3a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c16565b610ed281612767565b60006001600160e01b03198216637965db0b60e01b1480610a595750610a5982612a9a565b600081600111158015611b7c575060005482105b8015610a59575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60085460ff16611c465760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610c16565b6008805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000611c9b82612640565b9050836001600160a01b031681600001516001600160a01b031614611cd25760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611cf05750611cf08533610988565b80611d0b575033611d0084610af1565b6001600160a01b0316145b905080611d2b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611d5257604051633a954ecd60e21b815260040160405180910390fd5b611d5e60008487611ba1565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611e32576000548214611e3257805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03166000805160206137f883398151915260405160405180910390a461184d565b611e7382826110f2565b610da757611e8b816001600160a01b03166014612aea565b611e96836020612aea565b604051602001611ea792919061351f565b60408051601f198184030181529082905262461bcd60e51b8252610c16916004016135d1565b611ed782826110f2565b610da75760008281526013602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611f0f3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b611f5d82826110f2565b15610da75760008281526013602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600c5433903490600090611fd990611fd29086612c85565b8790612c91565b600f5460009081526012602090815260408083206001600160a01b03881684529091529020549091508615801590612012575060148711155b61205e5760405162461bcd60e51b815260206004820152601a60248201527f53746167653a204d696e7420416d6f756e7420696e76616c69640000000000006044820152606401610c16565b612066611a8b565b6120a95760405162461bcd60e51b815260206004820152601460248201527329ba30b3b29d1026b4b73a102737ba1027b832b760611b6044820152606401610c16565b600a546120b68789612c9d565b11156121045760405162461bcd60e51b815260206004820152601f60248201527f53746167653a2052656163686564204d696e74205374616765204c696d6974006044820152606401610c16565b600b54158061211e5750600b5461211b8289612c9d565b11155b61216a5760405162461bcd60e51b815260206004820181905260248201527f53746167653a2052656163686564204d696e742057616c6c6574204c696d69746044820152606401610c16565b600d5460ff1661223d576040516bffffffffffffffffffffffff19606086901b1660208201526000906034016040516020818303038152906040528051906020012090506121ef8a8a8080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e549150849050612ca9565b61223b5760405162461bcd60e51b815260206004820152601760248201527f53746167653a204e6f7420696e2077686974656c6973740000000000000000006044820152606401610c16565b505b8183101561228d5760405162461bcd60e51b815260206004820181905260248201527f53746167653a205061796d656e7420616d6f756e74206e6f7420656e6f7567686044820152606401610c16565b505050505050505050565b60006019546122b4836122ae6000546000190190565b90612c9d565b11156122fb5760405162461bcd60e51b815260206004820152601660248201527514534e8813585e0814dd5c1c1b1e481c995858da195960521b6044820152606401610c16565b6123058383612cbf565b600054600019015b9392505050565b600f5460009081526012602090815260408083206001600160a01b03861684529091529020546123448183612c9d565b600f5460009081526012602090815260408083206001600160a01b03909716835295905293909320929092555050565b804710156123c45760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610c16565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612411576040519150601f19603f3d011682016040523d82523d6000602084013e612416565b606091505b5050905080610bbe5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610c16565b600061249883612640565b805190915082156124fe576000336001600160a01b03831614806124c157506124c18233610988565b806124dc5750336124d186610af1565b6001600160a01b0316145b9050806124fc57604051632ce44b5f60e11b815260040160405180910390fd5b505b61250a60008583611ba1565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b17855591890180845292208054919490911661260857600054821461260857805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416906000805160206137f8833981519152908390a4505060018054810190555050565b60408051606081018252600080825260208201819052918101919091528180600111158015612670575060005481105b1561274e57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061274c5780516001600160a01b0316156126e3579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612747579392505050565b6126e3565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008060644233601e546040516020016128009392919092835260609190911b6bffffffffffffffffffffffff19166020830152603482015260540190565b6040516020818303038152906040528051906020012060001c6128239190613775565b905061283081600161367a565b601e805491925060006128428361375a565b909155509092915050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612882903390899088908890600401613594565b602060405180830381600087803b15801561289c57600080fd5b505af19250505080156128cc575060408051601f3d908101601f191682019092526128c99181019061334a565b60015b612927573d8080156128fa576040519150601f19603f3d011682016040523d82523d6000602084013e6128ff565b606091505b50805161291f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816129695750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612993578061297d8161375a565b915061298c9050600a83613692565b915061296d565b6000816001600160401b038111156129ad576129ad6137cb565b6040519080825280601f01601f1916602001820160405280156129d7576020820181803683370190505b5090505b841561293d576129ec6001836136c5565b91506129f9600a86613775565b612a0490603061367a565b60f81b818381518110612a1957612a196137b5565b60200101906001600160f81b031916908160001a905350612a3b600a86613692565b94506129db565b60085460ff1615612a655760405162461bcd60e51b8152600401610c16906135e4565b6008805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611c733390565b60006001600160e01b031982166380ac58cd60e01b1480612acb57506001600160e01b03198216635b5e139f60e01b145b80610a5957506301ffc9a760e01b6001600160e01b0319831614610a59565b60606000612af98360026136a6565b612b0490600261367a565b6001600160401b03811115612b1b57612b1b6137cb565b6040519080825280601f01601f191660200182016040528015612b45576020820181803683370190505b509050600360fc1b81600081518110612b6057612b606137b5565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110612b8f57612b8f6137b5565b60200101906001600160f81b031916908160001a9053506000612bb38460026136a6565b612bbe90600161367a565b90505b6001811115612c36576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612bf257612bf26137b5565b1a60f81b828281518110612c0857612c086137b5565b60200101906001600160f81b031916908160001a90535060049490941c93612c2f81613708565b9050612bc1565b50831561230d5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610c16565b600061230d82846136c5565b600061230d82846136a6565b600061230d828461367a565b600082612cb68584612cd9565b14949350505050565b610da7828260405180602001604052806000815250612d4d565b600081815b8451811015612d45576000858281518110612cfb57612cfb6137b5565b60200260200101519050808311612d215760008381526020829052604090209250612d32565b600081815260208490526040902092505b5080612d3d8161375a565b915050612cde565b509392505050565b610bbe83838360016000546001600160a01b038516612d7e57604051622e076360e81b815260040160405180910390fd5b83612d9c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015612e4d57506001600160a01b0387163b15155b15612ec4575b60405182906001600160a01b038916906000906000805160206137f8833981519152908290a4612e8c600088848060010195508861284d565b612ea9576040516368d2bf6b60e11b815260040160405180910390fd5b80821415612e53578260005414612ebf57600080fd5b612ef8565b5b6040516001830192906001600160a01b038916906000906000805160206137f8833981519152908290a480821415612ec5575b5060005561184d565b828054612f0d9061371f565b90600052602060002090601f016020900481019282612f2f5760008555612f75565b82601f10612f4857805160ff1916838001178555612f75565b82800160010185558215612f75579182015b82811115612f75578251825591602001919060010190612f5a565b50612f81929150612f85565b5090565b5b80821115612f815760008155600101612f86565b60006001600160401b0380841115612fb457612fb46137cb565b604051601f8501601f19908116603f01168101908282118183101715612fdc57612fdc6137cb565b81604052809350858152868686011115612ff557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461302657600080fd5b919050565b60008083601f84011261303d57600080fd5b5081356001600160401b0381111561305457600080fd5b6020830191508360208260051b850101111561306f57600080fd5b9250929050565b8035801515811461302657600080fd5b60006020828403121561309857600080fd5b61230d8261300f565b600080604083850312156130b457600080fd5b6130bd8361300f565b91506130cb6020840161300f565b90509250929050565b6000806000606084860312156130e957600080fd5b6130f28461300f565b92506131006020850161300f565b9150604084013590509250925092565b6000806000806080858703121561312657600080fd5b61312f8561300f565b935061313d6020860161300f565b92506040850135915060608501356001600160401b0381111561315f57600080fd5b8501601f8101871361317057600080fd5b61317f87823560208401612f9a565b91505092959194509250565b6000806040838503121561319e57600080fd5b6131a78361300f565b91506130cb60208401613076565b600080604083850312156131c857600080fd5b6131d18361300f565b946020939093013593505050565b600080600080604085870312156131f557600080fd5b84356001600160401b038082111561320c57600080fd5b6132188883890161302b565b9096509450602087013591508082111561323157600080fd5b5061323e8782880161302b565b95989497509550505050565b60008060006040848603121561325f57600080fd5b83356001600160401b0381111561327557600080fd5b6132818682870161302b565b909790965060209590950135949350505050565b600080602083850312156132a857600080fd5b82356001600160401b038111156132be57600080fd5b6132ca8582860161302b565b90969095509350505050565b6000602082840312156132e857600080fd5b61230d82613076565b60006020828403121561330357600080fd5b5035919050565b6000806040838503121561331d57600080fd5b823591506130cb6020840161300f565b60006020828403121561333f57600080fd5b813561230d816137e1565b60006020828403121561335c57600080fd5b815161230d816137e1565b60006020828403121561337957600080fd5b81356001600160401b0381111561338f57600080fd5b8201601f810184136133a057600080fd5b61293d84823560208401612f9a565b60008060008060008060008060006101208a8c0312156133ce57600080fd5b8935985060208a0135975060408a0135965060608a0135955060808a0135945060a08a0135935060c08a0135925061340860e08b01613076565b91506134176101008b01613076565b90509295985092959850929598565b6000815180845261343e8160208601602086016136dc565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061346c57607f831692505b602080841082141561348e57634e487b7160e01b600052602260045260246000fd5b8180156134a257600181146134b3576134e0565b60ff198616895284890196506134e0565b60008881526020902060005b868110156134d85781548b8201529085019083016134bf565b505084890196505b50505050505092915050565b60006134f88286613452565b84516135088183602089016136dc565b61351481830186613452565b979650505050505050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516135578160178501602088016136dc565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516135888160288401602088016136dc565b01602801949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906135c790830184613426565b9695505050505050565b60208152600061230d6020830184613426565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526019908201527f514d3a204261746368206d6f7265207468616e206c696d697400000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561368d5761368d613789565b500190565b6000826136a1576136a161379f565b500490565b60008160001904831182151516156136c0576136c0613789565b500290565b6000828210156136d7576136d7613789565b500390565b60005b838110156136f75781810151838201526020016136df565b8381111561189f5750506000910152565b60008161371757613717613789565b506000190190565b600181811c9082168061373357607f821691505b6020821081141561375457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561376e5761376e613789565b5060010190565b6000826137845761378461379f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ed257600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220a76893fb250f4033dabd72a7b3394e4177ab4854ce157e7a7c357a24c441da5164736f6c63430008070033

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

0000000000000000000000002412c008ed3caabfbd2bf9ee73d9fdb6f2180a21000000000000000000000000ef266b129a88f503beba1ad21167c02c4f62876a

-----Decoded View---------------
Arg [0] : splitterAdmin (address): 0x2412C008ED3CAaBfBD2bF9Ee73D9fDB6F2180A21
Arg [1] : splitterAddress (address): 0xEf266B129a88F503BebA1aD21167c02c4F62876a

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000002412c008ed3caabfbd2bf9ee73d9fdb6f2180a21
Arg [1] : 000000000000000000000000ef266b129a88f503beba1ad21167c02c4f62876a


Deployed Bytecode Sourcemap

73265:5118:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78101:169;;;;;;;;;;-1:-1:-1;78101:169:0;;;;;:::i;:::-;;:::i;:::-;;;12006:14:1;;11999:22;11981:41;;11969:2;11954:18;78101:169:0;;;;;;;;49722:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;51225:204::-;;;;;;;;;;-1:-1:-1;51225:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;11304:32:1;;;11286:51;;11274:2;11259:18;51225:204:0;11140:203:1;50788:371:0;;;;;;;;;;-1:-1:-1;50788:371:0;;;;;:::i;:::-;;:::i;:::-;;42022:316;;;;;;;;;;-1:-1:-1;42022:316:0;;;;;:::i;:::-;;:::i;45858:303::-;;;;;;;;;;-1:-1:-1;78371:1:0;46112:12;45902:7;46096:13;:28;-1:-1:-1;;46096:46:0;45858:303;;;12179:25:1;;;12167:2;12152:18;45858:303:0;12033:177:1;76886:69:0;;;;;;;;;;;;;:::i;52090:170::-;;;;;;;;;;-1:-1:-1;52090:170:0;;;;;:::i;:::-;;:::i;36838:131::-;;;;;;;;;;-1:-1:-1;36838:131:0;;;;;:::i;:::-;36912:7;36939:12;;;:6;:12;;;;;:22;;;;36838:131;37231:147;;;;;;;;;;-1:-1:-1;37231:147:0;;;;;:::i;:::-;;:::i;38279:218::-;;;;;;;;;;-1:-1:-1;38279:218:0;;;;;:::i;:::-;;:::i;74779:269::-;;;;;;:::i;:::-;;:::i;41493:215::-;;;;;;;;;;;;;:::i;41344:141::-;;;;;;;;;;-1:-1:-1;41344:141:0;;;;;:::i;:::-;;:::i;52331:185::-;;;;;;;;;;-1:-1:-1;52331:185:0;;;;;:::i;:::-;;:::i;64811:85::-;;;;;;;;;;-1:-1:-1;64811:85:0;;;;;:::i;:::-;;:::i;77865:111::-;;;;;;;;;;-1:-1:-1;77865:111:0;;;;;:::i;:::-;;:::i;77368:98::-;;;;;;;;;;-1:-1:-1;77368:98:0;;;;;:::i;:::-;;:::i;67858:25::-;;;;;;;;;;-1:-1:-1;67858:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22336::1;;;22392:2;22377:18;;22370:34;;;;22420:18;;;22413:34;;;;22478:2;22463:18;;22456:34;;;;22534:14;;22527:22;22521:3;22506:19;;22499:51;22581:3;22566:19;;22559:35;22625:3;22610:19;;22603:35;22669:3;22654:19;;22647:35;22713:3;22698:19;;22691:35;22323:3;22308:19;67858:25:0;21971:761:1;71994:86:0;;;;;;;;;;-1:-1:-1;72065:7:0;;;;71994:86;;49530:125;;;;;;;;;;-1:-1:-1;49530:125:0;;;;;:::i;:::-;;:::i;73489:26::-;;;;;;;;;;;;;:::i;46978:206::-;;;;;;;;;;-1:-1:-1;46978:206:0;;;;;:::i;:::-;;:::i;66616:103::-;;;;;;;;;;;;;:::i;77610:114::-;;;;;;;;;;-1:-1:-1;77610:114:0;;;;;:::i;:::-;;:::i;77262:98::-;;;;;;;;;;-1:-1:-1;77311:7:0;46487:13;-1:-1:-1;;46487:31:0;77262:98;;65965:87;;;;;;;;;;-1:-1:-1;66038:6:0;;;;;-1:-1:-1;;;;;66038:6:0;65965:87;;77732:125;;;;;;;;;;-1:-1:-1;77732:125:0;;;;;:::i;:::-;;:::i;35707:147::-;;;;;;;;;;-1:-1:-1;35707:147:0;;;;;:::i;:::-;;:::i;49891:104::-;;;;;;;;;;;;;:::i;67892:64::-;;;;;;;;;;-1:-1:-1;67892:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;34798:49;;;;;;;;;;-1:-1:-1;34798:49:0;34843:4;34798:49;;51501:287;;;;;;;;;;-1:-1:-1;51501:287:0;;;;;:::i;:::-;;:::i;75056:1200::-;;;;;;;;;;-1:-1:-1;75056:1200:0;;;;;:::i;:::-;;:::i;68229:1040::-;;;;;;;;;;-1:-1:-1;68229:1040:0;;;;;:::i;:::-;;:::i;40633:29::-;;;;;;;;;;-1:-1:-1;40633:29:0;;;;-1:-1:-1;;;;;40633:29:0;;;41716:298;;;;;;;;;;-1:-1:-1;41716:298:0;;;;;:::i;:::-;;:::i;74262:509::-;;;;;;;;;;-1:-1:-1;74262:509:0;;;;;:::i;:::-;;:::i;52587:369::-;;;;;;;;;;-1:-1:-1;52587:369:0;;;;;:::i;:::-;;:::i;73692:33::-;;;;;;;;;;-1:-1:-1;73692:33:0;;;;;;;;73445:37;;;;;;;;;;;;;:::i;76963:291::-;;;;;;;;;;-1:-1:-1;76963:291:0;;;;;:::i;:::-;;:::i;76813:65::-;;;;;;;;;;;;;:::i;40544:39::-;;;;;;;;;;-1:-1:-1;40544:39:0;;;;-1:-1:-1;;;;;40544:39:0;;;37623:149;;;;;;;;;;-1:-1:-1;37623:149:0;;;;;:::i;:::-;;:::i;73565:36::-;;;;;;;;;;;;;;;;77474:128;;;;;;;;;;-1:-1:-1;77474:128:0;;;;;:::i;:::-;;:::i;73524:34::-;;;;;;;;;;;;;;;;51859:164;;;;;;;;;;-1:-1:-1;51859:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;51980:25:0;;;51956:4;51980:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;51859:164;70421:165;;;;;;;;;;;;;:::i;40590:36::-;;;;;;;;;;-1:-1:-1;40590:36:0;;;;-1:-1:-1;;;;;40590:36:0;;;66874:201;;;;;;;;;;-1:-1:-1;66874:201:0;;;;;:::i;:::-;;:::i;73653:30::-;;;;;;;;;;;;;;;;73734:49;;;;;;;;;;-1:-1:-1;73734:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;78101:169;78202:4;78226:36;78250:11;78226:23;:36::i;:::-;78219:43;78101:169;-1:-1:-1;;78101:169:0:o;49722:100::-;49776:13;49809:5;49802:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49722:100;:::o;51225:204::-;51293:7;51318:16;51326:7;51318;:16::i;:::-;51313:64;;51343:34;;-1:-1:-1;;;51343:34:0;;;;;;;;;;;51313:64;-1:-1:-1;51397:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;51397:24:0;;51225:204::o;50788:371::-;50861:13;50877:24;50893:7;50877:15;:24::i;:::-;50861:40;;50922:5;-1:-1:-1;;;;;50916:11:0;:2;-1:-1:-1;;;;;50916:11:0;;50912:48;;;50936:24;;-1:-1:-1;;;50936:24:0;;;;;;;;;;;50912:48;32686:10;-1:-1:-1;;;;;50977:21:0;;;;;;:63;;-1:-1:-1;51003:37:0;51020:5;32686:10;51859:164;:::i;51003:37::-;51002:38;50977:63;50973:138;;;51064:35;;-1:-1:-1;;;51064:35:0;;;;;;;;;;;50973:138;51123:28;51132:2;51136:7;51145:5;51123:8;:28::i;:::-;50850:309;50788:371;;:::o;42022:316::-;41243:39;34843:4;41271:10;41243:7;:39::i;:::-;41235:81;;;;-1:-1:-1;;;41235:81:0;;14860:2:1;41235:81:0;;;14842:21:1;14899:2;14879:18;;;14872:30;14938:31;14918:18;;;14911:59;14987:18;;41235:81:0;;;;;;;;;42113:21:::1;::::0;-1:-1:-1;;;;;42113:30:0;;::::1;:21:::0;::::1;:30;;42105:72;;;::::0;-1:-1:-1;;;42105:72:0;;16707:2:1;42105:72:0::1;::::0;::::1;16689:21:1::0;16746:2;16726:18;;;16719:30;16785:31;16765:18;;;16758:59;16834:18;;42105:72:0::1;16505:353:1::0;42105:72:0::1;42190:36;34843:4;42220:5:::0;42190:9:::1;:36::i;:::-;42268:21;::::0;42237:53:::1;::::0;34843:4:::1;::::0;-1:-1:-1;;;;;42268:21:0::1;42237:10;:53::i;:::-;42301:21;:29:::0;;-1:-1:-1;;;;;;42301:29:0::1;-1:-1:-1::0;;;;;42301:29:0;;;::::1;::::0;;;::::1;::::0;;42022:316::o;76886:69::-;66038:6;;-1:-1:-1;;;;;66038:6:0;;;;;32686:10;66185:23;66177:68;;;;-1:-1:-1;;;66177:68:0;;;;;;;:::i;:::-;76937:10:::1;:8;:10::i;:::-;76886:69::o:0;52090:170::-;52224:28;52234:4;52240:2;52244:7;52224:9;:28::i;37231:147::-;36912:7;36939:12;;;:6;:12;;;;;:22;;;35289:30;35300:4;32686:10;35289;:30::i;:::-;37345:25:::1;37356:4;37362:7;37345:10;:25::i;38279:218::-:0;-1:-1:-1;;;;;38375:23:0;;32686:10;38375:23;38367:83;;;;-1:-1:-1;;;38367:83:0;;21322:2:1;38367:83:0;;;21304:21:1;21361:2;21341:18;;;21334:30;21400:34;21380:18;;;21373:62;-1:-1:-1;;;21451:18:1;;;21444:45;21506:19;;38367:83:0;21120:411:1;38367:83:0;38463:26;38475:4;38481:7;38463:11;:26::i;:::-;38279:218;;:::o;74779:269::-;72065:7;;;;72319:9;72311:38;;;;-1:-1:-1;;;72311:38:0;;;;;;;:::i;:::-;74885:57:::1;74897:12;;74911:11;74924:14;46301:7:::0;46487:13;-1:-1:-1;;46487:31:0;;46254:283;74924:14:::1;74940:1;74885:11;:57::i;:::-;74953:29;74958:10;74970:11;74953:4;:29::i;:::-;;74993:47;75016:10;75028:11;74993:22;:47::i;41493:215::-:0;41567:24;;-1:-1:-1;;;;;41567:24:0;41621:21;41663:37;41567:24;41621:21;41663:17;:37::i;41344:141::-;41099:40;40716:27;41128:10;41099:7;:40::i;:::-;41091:79;;;;-1:-1:-1;;;41091:79:0;;18838:2:1;41091:79:0;;;18820:21:1;18877:2;18857:18;;;18850:30;18916:28;18896:18;;;18889:56;18962:18;;41091:79:0;18636:350:1;41091:79:0;41434:24:::1;:43:::0;;-1:-1:-1;;;;;;41434:43:0::1;-1:-1:-1::0;;;;;41434:43:0;;;::::1;::::0;;;::::1;::::0;;41344:141::o;52331:185::-;52469:39;52486:4;52492:2;52496:7;52469:39;;;;;;;;;;;;:16;:39::i;64811:85::-;64868:20;64874:7;64883:4;64868:5;:20::i;:::-;64811:85;:::o;77865:111::-;66038:6;;-1:-1:-1;;;;;66038:6:0;;;;;32686:10;66185:23;66177:68;;;;-1:-1:-1;;;66177:68:0;;;;;;;:::i;:::-;77938:13:::1;:30:::0;;-1:-1:-1;;77938:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;77865:111::o;77368:98::-;66038:6;;-1:-1:-1;;;;;66038:6:0;;;;;32686:10;66185:23;66177:68;;;;-1:-1:-1;;;66177:68:0;;;;;;;:::i;:::-;77440:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;49530:125::-:0;49594:7;49621:21;49634:7;49621:12;:21::i;:::-;:26;;49530:125;-1:-1:-1;;49530:125:0:o;73489:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46978:206::-;47042:7;-1:-1:-1;;;;;47066:19:0;;47062:60;;47094:28;;-1:-1:-1;;;47094:28:0;;;;;;;;;;;47062:60;-1:-1:-1;;;;;;47148:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;47148:27:0;;46978:206::o;66616:103::-;66038:6;;-1:-1:-1;;;;;66038:6:0;;;;;32686:10;66185:23;66177:68;;;;-1:-1:-1;;;66177:68:0;;;;;;;:::i;:::-;66681:30:::1;66708:1;66681:18;:30::i;77610:114::-:0;66038:6;;-1:-1:-1;;;;;66038:6:0;;;;;32686:10;66185:23;66177:68;;;;-1:-1:-1;;;66177:68:0;;;;;;;:::i;:::-;77685:14:::1;:31:::0;77610:114::o;77338:14::-;77331:21;;77262:98;:::o;77732:125::-;66038:6;;-1:-1:-1;;;;;66038:6:0;;;;;32686:10;66185:23;66177:68;;;;-1:-1:-1;;;66177:68:0;;;;;;;:::i;:::-;77814:16:::1;:35:::0;77732:125::o;35707:147::-;35793:4;35817:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;35817:29:0;;;;;;;;;;;;;;;35707:147::o;49891:104::-;49947:13;49980:7;49973:14;;;;;:::i;51501:287::-;-1:-1:-1;;;;;51600:24:0;;32686:10;51600:24;51596:54;;;51633:17;;-1:-1:-1;;;51633:17:0;;;;;;;;;;;51596:54;32686:10;51663:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;51663:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;51663:53:0;;;;;;;;;;51732:48;;11981:41:1;;;51663:42:0;;32686:10;51732:48;;11954:18:1;51732:48:0;;;;;;;51501:287;;:::o;75056:1200::-;75127:7;72320:8;72065:7;;;;;71994:86;72320:8;72319:9;72311:38;;;;-1:-1:-1;;;72311:38:0;;;;;;;:::i;:::-;75277:13:::1;::::0;75166:10:::1;::::0;75207:15:::1;::::0;75149:14:::1;::::0;75277:13:::1;;75269:46;;;::::0;-1:-1:-1;;;75269:46:0;;13351:2:1;75269:46:0::1;::::0;::::1;13333:21:1::0;13390:2;13370:18;;;13363:30;-1:-1:-1;;;13409:18:1;;;13402:50;13469:18;;75269:46:0::1;13149:344:1::0;75269:46:0::1;73644:2;75334:31:::0;::::1;;75326:69;;;;-1:-1:-1::0;;;75326:69:0::1;;;;;;;:::i;:::-;75413:6;75408:810;75425:20:::0;;::::1;75408:810;;;75466:12;75481:9;;75491:1;75481:12;;;;;;;:::i;:::-;;;;;;;75466:27;;75538:6;-1:-1:-1::0;;;;;75518:26:0::1;:16;75526:7;75518;:16::i;:::-;-1:-1:-1::0;;;;;75518:26:0::1;;75510:69;;;::::0;-1:-1:-1;;;75510:69:0;;15218:2:1;75510:69:0::1;::::0;::::1;15200:21:1::0;15257:2;15237:18;;;15230:30;15296:32;15276:18;;;15269:60;15346:18;;75510:69:0::1;15016:354:1::0;75510:69:0::1;75641:16;::::0;75614:23:::1;::::0;;;:14:::1;:23;::::0;;;;;75602:35:::1;::::0;:9;:35:::1;:::i;:::-;:55;;75594:85;;;::::0;-1:-1:-1;;;75594:85:0;;17065:2:1;75594:85:0::1;::::0;::::1;17047:21:1::0;17104:2;17084:18;;;17077:30;-1:-1:-1;;;17123:18:1;;;17116:47;17180:18;;75594:85:0::1;16863:341:1::0;75594:85:0::1;75708:11;75722:22;:20;:22::i;:::-;75708:36;;75775:14;;75765:6;:24;75761:338;;75810:18;75831:19;75836:10;75848:1;75831:4;:19::i;:::-;75810:40:::0;-1:-1:-1;75869:16:0::1;75884:1;75869:16:::0;::::1;:::i;:::-;75906:29;::::0;;;:14:::1;:29;::::0;;;;;;;;:41;;;75973:44;;21892:25:1;;;21933:18;;;21926:34;;;75869:16:0;;-1:-1:-1;75980:10:0::1;::::0;75973:44:::1;::::0;21865:18:1;75973:44:0::1;;;;;;;76041:42;::::0;;21892:25:1;;;21948:2;21933:18;;21926:34;;;76041:42:0::1;::::0;21865:18:1;76041:42:0::1;;;;;;;75791:308;75761:338;76115:23;::::0;;;:14:::1;:23;::::0;;;;;;;;:35;;;76170:36;;21892:25:1;;;21933:18;;;21926:34;;;76170:36:0::1;::::0;21865:18:1;76170:36:0::1;;;;;;;75451:767;;75447:3;;;;;:::i;:::-;;;;75408:810;;;-1:-1:-1::0;76237:11:0;75056:1200;-1:-1:-1;;;;;75056:1200:0:o;68229:1040::-;66038:6;;-1:-1:-1;;;;;66038:6:0;;;;;32686:10;66185:23;66177:68;;;;-1:-1:-1;;;66177:68:0;;;;;;;:::i;:::-;68593:12:::1;68578;:27;68570:63;;;::::0;-1:-1:-1;;;68570:63:0;;19193:2:1;68570:63:0::1;::::0;::::1;19175:21:1::0;19232:2;19212:18;;;19205:30;19271:25;19251:18;;;19244:53;19314:18;;68570:63:0::1;18991:347:1::0;68570:63:0::1;68690:31:::0;;68734:114;::::1;;;68804:32;:28:::0;68835:1:::1;68804:32;:::i;:::-;68773:63;;68734:114;68875:274;::::0;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;;;;;;::::1;;::::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68860:12:::1;:289:::0;;;;;;;;;;;;;;;;;;-1:-1:-1;;68860:289:0::1;::::0;;::::1;::::0;;;;;;;;;;;;;;;;;;69167:94;68895:6;;69167:94:::1;::::0;::::1;::::0;68916:11;;68942:20;;68977:5;;69099:12;;69126;;22996:25:1;;;23052:2;23037:18;;23030:34;;;;23095:2;23080:18;;23073:34;;;;23138:2;23123:18;;23116:34;23181:3;23166:19;;23159:35;22983:3;22968:19;;22737:463;69167:94:0::1;;;;;;;;68559:710;68229:1040:::0;;;;;;;;;:::o;41716:298::-;41243:39;34843:4;41271:10;41243:7;:39::i;:::-;41235:81;;;;-1:-1:-1;;;41235:81:0;;14860:2:1;41235:81:0;;;14842:21:1;14899:2;14879:18;;;14872:30;14938:31;14918:18;;;14911:59;14987:18;;41235:81:0;14658:353:1;41235:81:0;41808:14:::1;::::0;-1:-1:-1;;;;;41808:23:0;;::::1;:14:::0;::::1;:23;;41800:65;;;::::0;-1:-1:-1;;;41800:65:0;;16707:2:1;41800:65:0::1;::::0;::::1;16689:21:1::0;16746:2;16726:18;;;16719:30;16785:31;16765:18;;;16758:59;16834:18;;41800:65:0::1;16505:353:1::0;41800:65:0::1;41878:37;40716:27;41909:5;41878:9;:37::i;:::-;41958:14;::::0;41926:47:::1;::::0;40716:27:::1;::::0;-1:-1:-1;;;;;41958:14:0::1;41926:10;:47::i;:::-;41984:14;:22:::0;;-1:-1:-1;;;;;;41984:22:0::1;-1:-1:-1::0;;;;;41984:22:0;;;::::1;::::0;;;::::1;::::0;;41716:298::o;74262:509::-;66038:6;;-1:-1:-1;;;;;66038:6:0;;;;;32686:10;66185:23;66177:68;;;;-1:-1:-1;;;66177:68:0;;;;;;;:::i;:::-;73644:2:::1;74383:33:::0;::::1;;74375:71;;;;-1:-1:-1::0;;;74375:71:0::1;;;;;;;:::i;:::-;74465:37:::0;;::::1;74457:70;;;::::0;-1:-1:-1;;;74457:70:0;;20257:2:1;74457:70:0::1;::::0;::::1;20239:21:1::0;20296:2;20276:18;;;20269:30;-1:-1:-1;;;20315:18:1;;;20308:50;20375:18;;74457:70:0::1;20055:344:1::0;74457:70:0::1;74553:6;74548:216;74565:22:::0;;::::1;74548:216;;;74608:11;74622:8;;74631:1;74622:11;;;;;;;:::i;:::-;;;;;;;74608:25;;73644:2;74656:6;:21;;74648:59;;;;-1:-1:-1::0;;;74648:59:0::1;;;;;;;:::i;:::-;74724:28;74729:11;;74741:1;74729:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;74745:6;74724:4;:28::i;:::-;;74593:171;74589:3;;;;;:::i;:::-;;;;74548:216;;;;74262:509:::0;;;;:::o;52587:369::-;52754:28;52764:4;52770:2;52774:7;52754:9;:28::i;:::-;-1:-1:-1;;;;;52797:13:0;;6733:19;:23;;52797:76;;;;;52817:56;52848:4;52854:2;52858:7;52867:5;52817:30;:56::i;:::-;52816:57;52797:76;52793:156;;;52897:40;;-1:-1:-1;;;52897:40:0;;;;;;;;;;;52793:156;52587:369;;;;:::o;73445:37::-;;;;;;;:::i;76963:291::-;77035:13;77080:1;77069:8;:12;77061:60;;;;-1:-1:-1;;;77061:60:0;;13700:2:1;77061:60:0;;;13682:21:1;13739:2;13719:18;;;13712:30;13778:34;13758:18;;;13751:62;-1:-1:-1;;;13829:18:1;;;13822:33;13872:19;;77061:60:0;13498:399:1;77061:60:0;77163:1;77145:7;77139:21;;;;;:::i;:::-;;;:25;:107;;77239:7;77139:107;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77191:7;77200:19;:8;:17;:19::i;:::-;77221:13;77174:61;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;77132:114;76963:291;-1:-1:-1;;76963:291:0:o;76813:65::-;66038:6;;-1:-1:-1;;;;;66038:6:0;;;;;32686:10;66185:23;66177:68;;;;-1:-1:-1;;;66177:68:0;;;;;;;:::i;:::-;76862:8:::1;:6;:8::i;37623:149::-:0;36912:7;36939:12;;;:6;:12;;;;;:22;;;35289:30;35300:4;32686:10;35289;:30::i;:::-;37738:26:::1;37750:4;37756:7;37738:11;:26::i;77474:128::-:0;66038:6;;-1:-1:-1;;;;;66038:6:0;;;;;32686:10;66185:23;66177:68;;;;-1:-1:-1;;;66177:68:0;;;;;;;:::i;:::-;77561:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;70421:165::-:0;70507:24;;70465:4;;70488:15;:43;;;;:90;;-1:-1:-1;;70554:24:0;;70535:15;:43;;;70421:165::o;66874:201::-;66038:6;;-1:-1:-1;;;;;66038:6:0;;;;;32686:10;66185:23;66177:68;;;;-1:-1:-1;;;66177:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;66963:22:0;::::1;66955:73;;;::::0;-1:-1:-1;;;66955:73:0;;14104:2:1;66955:73:0::1;::::0;::::1;14086:21:1::0;14143:2;14123:18;;;14116:30;14182:34;14162:18;;;14155:62;-1:-1:-1;;;14233:18:1;;;14226:36;14279:19;;66955:73:0::1;13902:402:1::0;66955:73:0::1;67039:28;67058:8;67039:18;:28::i;35411:204::-:0;35496:4;-1:-1:-1;;;;;;35520:47:0;;-1:-1:-1;;;35520:47:0;;:87;;;35571:36;35595:11;35571:23;:36::i;53211:187::-;53268:4;53311:7;78371:1;53292:26;;:53;;;;;53332:13;;53322:7;:23;53292:53;:98;;;;-1:-1:-1;;53363:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;53363:27:0;;;;53362:28;;53211:187::o;61381:196::-;61496:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;61496:29:0;-1:-1:-1;;;;;61496:29:0;;;;;;;;;61541:28;;61496:24;;61541:28;;;;;;;61381:196;;;:::o;73053:120::-;72065:7;;;;72589:41;;;;-1:-1:-1;;;72589:41:0;;13002:2:1;72589:41:0;;;12984:21:1;13041:2;13021:18;;;13014:30;-1:-1:-1;;;13060:18:1;;;13053:50;13120:18;;72589:41:0;12800:344:1;72589:41:0;73112:7:::1;:15:::0;;-1:-1:-1;;73112:15:0::1;::::0;;73143:22:::1;32686:10:::0;73152:12:::1;73143:22;::::0;-1:-1:-1;;;;;11304:32:1;;;11286:51;;11274:2;11259:18;73143:22:0::1;;;;;;;73053:120::o:0;56324:2130::-;56439:35;56477:21;56490:7;56477:12;:21::i;:::-;56439:59;;56537:4;-1:-1:-1;;;;;56515:26:0;:13;:18;;;-1:-1:-1;;;;;56515:26:0;;56511:67;;56550:28;;-1:-1:-1;;;56550:28:0;;;;;;;;;;;56511:67;56591:22;32686:10;-1:-1:-1;;;;;56617:20:0;;;;:73;;-1:-1:-1;56654:36:0;56671:4;32686:10;51859:164;:::i;56654:36::-;56617:126;;;-1:-1:-1;32686:10:0;56707:20;56719:7;56707:11;:20::i;:::-;-1:-1:-1;;;;;56707:36:0;;56617:126;56591:153;;56762:17;56757:66;;56788:35;;-1:-1:-1;;;56788:35:0;;;;;;;;;;;56757:66;-1:-1:-1;;;;;56838:16:0;;56834:52;;56863:23;;-1:-1:-1;;;56863:23:0;;;;;;;;;;;56834:52;57007:35;57024:1;57028:7;57037:4;57007:8;:35::i;:::-;-1:-1:-1;;;;;57338:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;57338:31:0;;;-1:-1:-1;;;;;57338:31:0;;;-1:-1:-1;;57338:31:0;;;;;;;57384:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;57384:29:0;;;;;;;;;;;57464:20;;;:11;:20;;;;;;57499:18;;-1:-1:-1;;;;;;57532:49:0;;;;-1:-1:-1;;;57565:15:0;57532:49;;;;;;;;;;57855:11;;57915:24;;;;;57958:13;;57464:20;;57915:24;;57958:13;57954:384;;58168:13;;58153:11;:28;58149:174;;58206:20;;58275:28;;;;-1:-1:-1;;;;;58249:54:0;-1:-1:-1;;;58249:54:0;-1:-1:-1;;;;;;58249:54:0;;;-1:-1:-1;;;;;58206:20:0;;58249:54;;;;58149:174;57313:1036;;;58385:7;58381:2;-1:-1:-1;;;;;58366:27:0;58375:4;-1:-1:-1;;;;;58366:27:0;-1:-1:-1;;;;;;;;;;;58366:27:0;;;;;;;;;58404:42;52587:369;36144:505;36233:22;36241:4;36247:7;36233;:22::i;:::-;36228:414;;36421:41;36449:7;-1:-1:-1;;;;;36421:41:0;36459:2;36421:19;:41::i;:::-;36535:38;36563:4;36570:2;36535:19;:38::i;:::-;36326:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;36326:270:0;;;;;;;;;;-1:-1:-1;;;36272:358:0;;;;;;;:::i;39780:238::-;39864:22;39872:4;39878:7;39864;:22::i;:::-;39859:152;;39903:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;39903:29:0;;;;;;;;;:36;;-1:-1:-1;;39903:36:0;39935:4;39903:36;;;39986:12;32686:10;;32606:98;39986:12;-1:-1:-1;;;;;39959:40:0;39977:7;-1:-1:-1;;;;;39959:40:0;39971:4;39959:40;;;;;;;;;;39780:238;;:::o;40150:239::-;40234:22;40242:4;40248:7;40234;:22::i;:::-;40230:152;;;40305:5;40273:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;40273:29:0;;;;;;;;;;:37;;-1:-1:-1;;40273:37:0;;;40330:40;32686:10;;40273:12;;40330:40;;40305:5;40330:40;40150:239;;:::o;69277:1136::-;69536:17;;69432:10;;69474:9;;69415:14;;69520:48;;69536:31;;69558:8;69536:21;:31::i;:::-;69520:11;;:15;:48::i;:::-;69612:31;;69579:14;69596:48;;;:15;:48;;;;;;;;-1:-1:-1;;;;;69596:56:0;;;;;;;;;;69494:74;;-1:-1:-1;69681:15:0;;;;;:45;;;68001:2;69700:11;:26;;69681:45;69673:84;;;;-1:-1:-1;;;69673:84:0;;20967:2:1;69673:84:0;;;20949:21:1;21006:2;20986:18;;;20979:30;21045:28;21025:18;;;21018:56;21091:18;;69673:84:0;20765:350:1;69673:84:0;69776:13;:11;:13::i;:::-;69768:46;;;;-1:-1:-1;;;69768:46:0;;14511:2:1;69768:46:0;;;14493:21:1;14550:2;14530:18;;;14523:30;-1:-1:-1;;;14569:18:1;;;14562:50;14629:18;;69768:46:0;14309:344:1;69768:46:0;69874:23;;69835:35;:18;69858:11;69835:22;:35::i;:::-;:62;;69827:106;;;;-1:-1:-1;;;69827:106:0;;17763:2:1;69827:106:0;;;17745:21:1;17802:2;17782:18;;;17775:30;17841:33;17821:18;;;17814:61;17892:18;;69827:106:0;17561:355:1;69827:106:0;69952:24;;:29;;:87;;-1:-1:-1;70015:24:0;;69985:26;:9;69999:11;69985:13;:26::i;:::-;:54;;69952:87;69944:132;;;;-1:-1:-1;;;69944:132:0;;20606:2:1;69944:132:0;;;20588:21:1;;;20625:18;;;20618:30;20684:34;20664:18;;;20657:62;20736:18;;69944:132:0;20404:356:1;69944:132:0;70094:21;;;;70089:222;;70157:24;;-1:-1:-1;;9229:2:1;9225:15;;;9221:53;70157:24:0;;;9209:66:1;70132:12:0;;9291::1;;70157:24:0;;;;;;;;;;;;70147:35;;;;;;70132:50;;70205:66;70224:12;;70205:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;70238:26:0;;;-1:-1:-1;70266:4:0;;-1:-1:-1;70205:18:0;:66::i;:::-;70197:102;;;;-1:-1:-1;;;70197:102:0;;17411:2:1;70197:102:0;;;17393:21:1;17450:2;17430:18;;;17423:30;17489:25;17469:18;;;17462:53;17532:18;;70197:102:0;17209:347:1;70197:102:0;70117:194;70089:222;70353:15;70339:10;:29;;70331:74;;;;-1:-1:-1;;;70331:74:0;;19896:2:1;70331:74:0;;;19878:21:1;;;19915:18;;;19908:30;19974:34;19954:18;;;19947:62;20026:18;;70331:74:0;19694:356:1;70331:74:0;69404:1009;;;;69277:1136;;;;;:::o;76533:272::-;76600:7;76667:16;;76633:30;76652:10;76633:14;46301:7;46487:13;-1:-1:-1;;46487:31:0;;46254:283;76633:14;:18;;:30::i;:::-;:50;;76625:85;;;;-1:-1:-1;;;76625:85:0;;19545:2:1;76625:85:0;;;19527:21:1;19584:2;19564:18;;;19557:30;-1:-1:-1;;;19603:18:1;;;19596:52;19665:18;;76625:85:0;19343:346:1;76625:85:0;76723:32;76733:9;76744:10;76723:9;:32::i;:::-;46301:7;46487:13;-1:-1:-1;;46487:31:0;76783:14;76776:21;76533:272;-1:-1:-1;;;76533:272:0:o;70594:263::-;70713:31;;70680:14;70697:48;;;:15;:48;;;;;;;;-1:-1:-1;;;;;70697:56:0;;;;;;;;;;70823:26;70697:56;70837:11;70823:13;:26::i;:::-;70780:31;;70764:48;;;;:15;:48;;;;;;;;-1:-1:-1;;;;;70764:56:0;;;;;;;;;;;;:85;;;;-1:-1:-1;;70594:263:0:o;7699:317::-;7814:6;7789:21;:31;;7781:73;;;;-1:-1:-1;;;7781:73:0;;16004:2:1;7781:73:0;;;15986:21:1;16043:2;16023:18;;;16016:30;16082:31;16062:18;;;16055:59;16131:18;;7781:73:0;15802:353:1;7781:73:0;7868:12;7886:9;-1:-1:-1;;;;;7886:14:0;7908:6;7886:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7867:52;;;7938:7;7930:78;;;;-1:-1:-1;;;7930:78:0;;15577:2:1;7930:78:0;;;15559:21:1;15616:2;15596:18;;;15589:30;15655:34;15635:18;;;15628:62;15726:28;15706:18;;;15699:56;15772:19;;7930:78:0;15375:422:1;58855:2408:0;58935:35;58973:21;58986:7;58973:12;:21::i;:::-;59022:18;;58935:59;;-1:-1:-1;59053:290:0;;;;59087:22;32686:10;-1:-1:-1;;;;;59113:20:0;;;;:77;;-1:-1:-1;59154:36:0;59171:4;32686:10;51859:164;:::i;59154:36::-;59113:134;;;-1:-1:-1;32686:10:0;59211:20;59223:7;59211:11;:20::i;:::-;-1:-1:-1;;;;;59211:36:0;;59113:134;59087:161;;59270:17;59265:66;;59296:35;;-1:-1:-1;;;59296:35:0;;;;;;;;;;;59265:66;59072:271;59053:290;59471:35;59488:1;59492:7;59501:4;59471:8;:35::i;:::-;-1:-1:-1;;;;;59836:18:0;;;59802:31;59836:18;;;:12;:18;;;;;;;;59869:24;;-1:-1:-1;;;;;;;;;;59869:24:0;;;;;;;;;-1:-1:-1;;59869:24:0;;;;59908:29;;;;;59892:1;59908:29;;;;;;;;-1:-1:-1;;59908:29:0;;;;;;;;;;60070:20;;;:11;:20;;;;;;60105;;-1:-1:-1;;;;60173:15:0;60140:49;;;-1:-1:-1;;;60140:49:0;-1:-1:-1;;;;;;60140:49:0;;;;;;;;;;60204:22;-1:-1:-1;;;60204:22:0;;;60496:11;;;60556:24;;;;;60599:13;;59836:18;;60556:24;;60599:13;60595:384;;60809:13;;60794:11;:28;60790:174;;60847:20;;60916:28;;;;-1:-1:-1;;;;;60890:54:0;-1:-1:-1;;;60890:54:0;-1:-1:-1;;;;;;60890:54:0;;;-1:-1:-1;;;;;60847:20:0;;60890:54;;;;60790:174;-1:-1:-1;;61007:35:0;;61034:7;;-1:-1:-1;61030:1:0;;-1:-1:-1;;;;;;61007:35:0;;;-1:-1:-1;;;;;;;;;;;61007:35:0;61030:1;;61007:35;-1:-1:-1;;61230:12:0;:14;;;;;;-1:-1:-1;;58855:2408:0:o;48359:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;48470:7:0;;78371:1;48519:23;;:47;;;;;48553:13;;48546:4;:20;48519:47;48515:886;;;48587:31;48621:17;;;:11;:17;;;;;;;;;48587:51;;;;;;;;;-1:-1:-1;;;;;48587:51:0;;;;-1:-1:-1;;;48587:51:0;;-1:-1:-1;;;;;48587:51:0;;;;;;;;-1:-1:-1;;;48587:51:0;;;;;;;;;;;;;;48657:729;;48707:14;;-1:-1:-1;;;;;48707:28:0;;48703:101;;48771:9;48359:1109;-1:-1:-1;;;48359:1109:0:o;48703:101::-;-1:-1:-1;;;49146:6:0;49191:17;;;;:11;:17;;;;;;;;;49179:29;;;;;;;;;-1:-1:-1;;;;;49179:29:0;;;;;-1:-1:-1;;;49179:29:0;;-1:-1:-1;;;;;49179:29:0;;;;;;;;-1:-1:-1;;;49179:29:0;;;;;;;;;;;;;49239:28;49235:109;;49307:9;48359:1109;-1:-1:-1;;;48359:1109:0:o;49235:109::-;49106:261;;;48568:833;48515:886;49429:31;;-1:-1:-1;;;49429:31:0;;;;;;;;;;;67235:191;67328:6;;;-1:-1:-1;;;;;67345:17:0;;;67328:6;67345:17;;;-1:-1:-1;;;;;;67345:17:0;;;;;;67378:40;;67328:6;;;;;;;;67378:40;;67309:16;;67378:40;67298:128;67235:191;:::o;76264:261::-;76312:4;76330:17;76422:3;76382:15;76399:10;76411:5;;76365:52;;;;;;;;;10961:19:1;;;11018:2;11014:15;;;;-1:-1:-1;;11010:53:1;11005:2;10996:12;;10989:75;11089:2;11080:12;;11073:28;11126:2;11117:12;;10776:359;76365:52:0;;;;;;;;;;;;;76355:63;;;;;;76350:69;;:75;;;;:::i;:::-;76330:95;-1:-1:-1;76451:16:0;76330:95;76466:1;76451:16;:::i;:::-;76478:5;:7;;76436:31;;-1:-1:-1;76478:5:0;:7;;;:::i;:::-;;;;-1:-1:-1;76505:12:0;;76264:261;-1:-1:-1;;76264:261:0:o;62069:667::-;62253:72;;-1:-1:-1;;;62253:72:0;;62232:4;;-1:-1:-1;;;;;62253:36:0;;;;;:72;;32686:10;;62304:4;;62310:7;;62319:5;;62253:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62253:72:0;;;;;;;;-1:-1:-1;;62253:72:0;;;;;;;;;;;;:::i;:::-;;;62249:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62487:13:0;;62483:235;;62533:40;;-1:-1:-1;;;62533:40:0;;;;;;;;;;;62483:235;62676:6;62670:13;62661:6;62657:2;62653:15;62646:38;62249:480;-1:-1:-1;;;;;;62372:55:0;-1:-1:-1;;;62372:55:0;;-1:-1:-1;62249:480:0;62069:667;;;;;;:::o;3446:723::-;3502:13;3723:10;3719:53;;-1:-1:-1;;3750:10:0;;;;;;;;;;;;-1:-1:-1;;;3750:10:0;;;;;3446:723::o;3719:53::-;3797:5;3782:12;3838:78;3845:9;;3838:78;;3871:8;;;;:::i;:::-;;-1:-1:-1;3894:10:0;;-1:-1:-1;3902:2:0;3894:10;;:::i;:::-;;;3838:78;;;3926:19;3958:6;-1:-1:-1;;;;;3948:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3948:17:0;;3926:39;;3976:154;3983:10;;3976:154;;4010:11;4020:1;4010:11;;:::i;:::-;;-1:-1:-1;4079:10:0;4087:2;4079:5;:10;:::i;:::-;4066:24;;:2;:24;:::i;:::-;4053:39;;4036:6;4043;4036:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4036:56:0;;;;;;;;-1:-1:-1;4107:11:0;4116:2;4107:11;;:::i;:::-;;;3976:154;;72794:118;72065:7;;;;72319:9;72311:38;;;;-1:-1:-1;;;72311:38:0;;;;;;;:::i;:::-;72854:7:::1;:14:::0;;-1:-1:-1;;72854:14:0::1;72864:4;72854:14;::::0;;72884:20:::1;72891:12;32686:10:::0;;32606:98;46609:305;46711:4;-1:-1:-1;;;;;;46748:40:0;;-1:-1:-1;;;46748:40:0;;:105;;-1:-1:-1;;;;;;;46805:48:0;;-1:-1:-1;;;46805:48:0;46748:105;:158;;;-1:-1:-1;;;;;;;;;;16630:40:0;;;46870:36;16521:157;4747:451;4822:13;4848:19;4880:10;4884:6;4880:1;:10;:::i;:::-;:14;;4893:1;4880:14;:::i;:::-;-1:-1:-1;;;;;4870:25:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4870:25:0;;4848:47;;-1:-1:-1;;;4906:6:0;4913:1;4906:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;4906:15:0;;;;;;;;;-1:-1:-1;;;4932:6:0;4939:1;4932:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;4932:15:0;;;;;;;;-1:-1:-1;4963:9:0;4975:10;4979:6;4975:1;:10;:::i;:::-;:14;;4988:1;4975:14;:::i;:::-;4963:26;;4958:135;4995:1;4991;:5;4958:135;;;-1:-1:-1;;;5043:5:0;5051:3;5043:11;5030:25;;;;;;;:::i;:::-;;;;5018:6;5025:1;5018:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;5018:37:0;;;;;;;;-1:-1:-1;5080:1:0;5070:11;;;;;4998:3;;;:::i;:::-;;;4958:135;;;-1:-1:-1;5111:10:0;;5103:55;;;;-1:-1:-1;;;5103:55:0;;12641:2:1;5103:55:0;;;12623:21:1;;;12660:18;;;12653:30;12719:34;12699:18;;;12692:62;12771:18;;5103:55:0;12439:356:1;25754:98:0;25812:7;25839:5;25843:1;25839;:5;:::i;26111:98::-;26169:7;26196:5;26200:1;26196;:5;:::i;25373:98::-;25431:7;25458:5;25462:1;25458;:5;:::i;30461:190::-;30586:4;30639;30610:25;30623:5;30630:4;30610:12;:25::i;:::-;:33;;30461:190;-1:-1:-1;;;;30461:190:0:o;53406:104::-;53475:27;53485:2;53489:8;53475:27;;;;;;;;;;;;:9;:27::i;31013:675::-;31096:7;31139:4;31096:7;31154:497;31178:5;:12;31174:1;:16;31154:497;;;31212:20;31235:5;31241:1;31235:8;;;;;;;;:::i;:::-;;;;;;;31212:31;;31278:12;31262;:28;31258:382;;31764:13;31814:15;;;31850:4;31843:15;;;31897:4;31881:21;;31390:57;;31258:382;;;31764:13;31814:15;;;31850:4;31843:15;;;31897:4;31881:21;;31567:57;;31258:382;-1:-1:-1;31192:3:0;;;;:::i;:::-;;;;31154:497;;;-1:-1:-1;31668:12:0;31013:675;-1:-1:-1;;;31013:675:0:o;53873:163::-;53996:32;54002:2;54006:8;54016:5;54023:4;54434:20;54457:13;-1:-1:-1;;;;;54485:16:0;;54481:48;;54510:19;;-1:-1:-1;;;54510:19:0;;;;;;;;;;;54481:48;54544:13;54540:44;;54566:18;;-1:-1:-1;;;54566:18:0;;;;;;;;;;;54540:44;-1:-1:-1;;;;;54935:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;54994:49:0;;-1:-1:-1;;;;;54935:44:0;;;;;;;54994:49;;;;-1:-1:-1;;54935:44:0;;;;;;54994:49;;;;;;;;;;;;;;;;55060:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;55110:66:0;;;;-1:-1:-1;;;55160:15:0;55110:66;;;;;;;;;;55060:25;55257:23;;;55301:4;:23;;;;-1:-1:-1;;;;;;55309:13:0;;6733:19;:23;;55309:15;55297:641;;;55345:314;55376:38;;55401:12;;-1:-1:-1;;;;;55376:38:0;;;55393:1;;-1:-1:-1;;;;;;;;;;;55376:38:0;55393:1;;55376:38;55442:69;55481:1;55485:2;55489:14;;;;;;55505:5;55442:30;:69::i;:::-;55437:174;;55547:40;;-1:-1:-1;;;55547:40:0;;;;;;;;;;;55437:174;55654:3;55638:12;:19;;55345:314;;55740:12;55723:13;;:29;55719:43;;55754:8;;;55719:43;55297:641;;;55803:120;55834:40;;55859:14;;;;;-1:-1:-1;;;;;55834:40:0;;;55851:1;;-1:-1:-1;;;;;;;;;;;55834:40:0;55851:1;;55834:40;55918:3;55902:12;:19;;55803:120;;55297:641;-1:-1:-1;55952:13:0;:28;56002:60;52587:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:367::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:1;;-1:-1:-1;;;;;1028:30:1;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:160::-;1265:20;;1321:13;;1314:21;1304:32;;1294:60;;1350:1;1347;1340:12;1365:186;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;1516:29;1535:9;1516:29;:::i;1556:260::-;1624:6;1632;1685:2;1673:9;1664:7;1660:23;1656:32;1653:52;;;1701:1;1698;1691:12;1653:52;1724:29;1743:9;1724:29;:::i;:::-;1714:39;;1772:38;1806:2;1795:9;1791:18;1772:38;:::i;:::-;1762:48;;1556:260;;;;;:::o;1821:328::-;1898:6;1906;1914;1967:2;1955:9;1946:7;1942:23;1938:32;1935:52;;;1983:1;1980;1973:12;1935:52;2006:29;2025:9;2006:29;:::i;:::-;1996:39;;2054:38;2088:2;2077:9;2073:18;2054:38;:::i;:::-;2044:48;;2139:2;2128:9;2124:18;2111:32;2101:42;;1821:328;;;;;:::o;2154:666::-;2249:6;2257;2265;2273;2326:3;2314:9;2305:7;2301:23;2297:33;2294:53;;;2343:1;2340;2333:12;2294:53;2366:29;2385:9;2366:29;:::i;:::-;2356:39;;2414:38;2448:2;2437:9;2433:18;2414:38;:::i;:::-;2404:48;;2499:2;2488:9;2484:18;2471:32;2461:42;;2554:2;2543:9;2539:18;2526:32;-1:-1:-1;;;;;2573:6:1;2570:30;2567:50;;;2613:1;2610;2603:12;2567:50;2636:22;;2689:4;2681:13;;2677:27;-1:-1:-1;2667:55:1;;2718:1;2715;2708:12;2667:55;2741:73;2806:7;2801:2;2788:16;2783:2;2779;2775:11;2741:73;:::i;:::-;2731:83;;;2154:666;;;;;;;:::o;2825:254::-;2890:6;2898;2951:2;2939:9;2930:7;2926:23;2922:32;2919:52;;;2967:1;2964;2957:12;2919:52;2990:29;3009:9;2990:29;:::i;:::-;2980:39;;3038:35;3069:2;3058:9;3054:18;3038:35;:::i;3084:254::-;3152:6;3160;3213:2;3201:9;3192:7;3188:23;3184:32;3181:52;;;3229:1;3226;3219:12;3181:52;3252:29;3271:9;3252:29;:::i;:::-;3242:39;3328:2;3313:18;;;;3300:32;;-1:-1:-1;;;3084:254:1:o;3343:773::-;3465:6;3473;3481;3489;3542:2;3530:9;3521:7;3517:23;3513:32;3510:52;;;3558:1;3555;3548:12;3510:52;3598:9;3585:23;-1:-1:-1;;;;;3668:2:1;3660:6;3657:14;3654:34;;;3684:1;3681;3674:12;3654:34;3723:70;3785:7;3776:6;3765:9;3761:22;3723:70;:::i;:::-;3812:8;;-1:-1:-1;3697:96:1;-1:-1:-1;3900:2:1;3885:18;;3872:32;;-1:-1:-1;3916:16:1;;;3913:36;;;3945:1;3942;3935:12;3913:36;;3984:72;4048:7;4037:8;4026:9;4022:24;3984:72;:::i;:::-;3343:773;;;;-1:-1:-1;4075:8:1;-1:-1:-1;;;;3343:773:1:o;4121:505::-;4216:6;4224;4232;4285:2;4273:9;4264:7;4260:23;4256:32;4253:52;;;4301:1;4298;4291:12;4253:52;4341:9;4328:23;-1:-1:-1;;;;;4366:6:1;4363:30;4360:50;;;4406:1;4403;4396:12;4360:50;4445:70;4507:7;4498:6;4487:9;4483:22;4445:70;:::i;:::-;4534:8;;4419:96;;-1:-1:-1;4616:2:1;4601:18;;;;4588:32;;4121:505;-1:-1:-1;;;;4121:505:1:o;4631:437::-;4717:6;4725;4778:2;4766:9;4757:7;4753:23;4749:32;4746:52;;;4794:1;4791;4784:12;4746:52;4834:9;4821:23;-1:-1:-1;;;;;4859:6:1;4856:30;4853:50;;;4899:1;4896;4889:12;4853:50;4938:70;5000:7;4991:6;4980:9;4976:22;4938:70;:::i;:::-;5027:8;;4912:96;;-1:-1:-1;4631:437:1;-1:-1:-1;;;;4631:437:1:o;5073:180::-;5129:6;5182:2;5170:9;5161:7;5157:23;5153:32;5150:52;;;5198:1;5195;5188:12;5150:52;5221:26;5237:9;5221:26;:::i;5258:180::-;5317:6;5370:2;5358:9;5349:7;5345:23;5341:32;5338:52;;;5386:1;5383;5376:12;5338:52;-1:-1:-1;5409:23:1;;5258:180;-1:-1:-1;5258:180:1:o;5443:254::-;5511:6;5519;5572:2;5560:9;5551:7;5547:23;5543:32;5540:52;;;5588:1;5585;5578:12;5540:52;5624:9;5611:23;5601:33;;5653:38;5687:2;5676:9;5672:18;5653:38;:::i;5702:245::-;5760:6;5813:2;5801:9;5792:7;5788:23;5784:32;5781:52;;;5829:1;5826;5819:12;5781:52;5868:9;5855:23;5887:30;5911:5;5887:30;:::i;5952:249::-;6021:6;6074:2;6062:9;6053:7;6049:23;6045:32;6042:52;;;6090:1;6087;6080:12;6042:52;6122:9;6116:16;6141:30;6165:5;6141:30;:::i;6206:450::-;6275:6;6328:2;6316:9;6307:7;6303:23;6299:32;6296:52;;;6344:1;6341;6334:12;6296:52;6384:9;6371:23;-1:-1:-1;;;;;6409:6:1;6406:30;6403:50;;;6449:1;6446;6439:12;6403:50;6472:22;;6525:4;6517:13;;6513:27;-1:-1:-1;6503:55:1;;6554:1;6551;6544:12;6503:55;6577:73;6642:7;6637:2;6624:16;6619:2;6615;6611:11;6577:73;:::i;7105:730::-;7230:6;7238;7246;7254;7262;7270;7278;7286;7294;7347:3;7335:9;7326:7;7322:23;7318:33;7315:53;;;7364:1;7361;7354:12;7315:53;7400:9;7387:23;7377:33;;7457:2;7446:9;7442:18;7429:32;7419:42;;7508:2;7497:9;7493:18;7480:32;7470:42;;7559:2;7548:9;7544:18;7531:32;7521:42;;7610:3;7599:9;7595:19;7582:33;7572:43;;7662:3;7651:9;7647:19;7634:33;7624:43;;7714:3;7703:9;7699:19;7686:33;7676:43;;7738:36;7769:3;7758:9;7754:19;7738:36;:::i;:::-;7728:46;;7793:36;7824:3;7813:9;7809:19;7793:36;:::i;:::-;7783:46;;7105:730;;;;;;;;;;;:::o;7840:257::-;7881:3;7919:5;7913:12;7946:6;7941:3;7934:19;7962:63;8018:6;8011:4;8006:3;8002:14;7995:4;7988:5;7984:16;7962:63;:::i;:::-;8079:2;8058:15;-1:-1:-1;;8054:29:1;8045:39;;;;8086:4;8041:50;;7840:257;-1:-1:-1;;7840:257:1:o;8102:973::-;8187:12;;8152:3;;8242:1;8262:18;;;;8315;;;;8342:61;;8396:4;8388:6;8384:17;8374:27;;8342:61;8422:2;8470;8462:6;8459:14;8439:18;8436:38;8433:161;;;8516:10;8511:3;8507:20;8504:1;8497:31;8551:4;8548:1;8541:15;8579:4;8576:1;8569:15;8433:161;8610:18;8637:104;;;;8755:1;8750:319;;;;8603:466;;8637:104;-1:-1:-1;;8670:24:1;;8658:37;;8715:16;;;;-1:-1:-1;8637:104:1;;8750:319;23278:1;23271:14;;;23315:4;23302:18;;8844:1;8858:165;8872:6;8869:1;8866:13;8858:165;;;8950:14;;8937:11;;;8930:35;8993:16;;;;8887:10;;8858:165;;;8862:3;;9052:6;9047:3;9043:16;9036:23;;8603:466;;;;;;;8102:973;;;;:::o;9314:456::-;9535:3;9563:38;9597:3;9589:6;9563:38;:::i;:::-;9630:6;9624:13;9646:52;9691:6;9687:2;9680:4;9672:6;9668:17;9646:52;:::i;:::-;9714:50;9756:6;9752:2;9748:15;9740:6;9714:50;:::i;:::-;9707:57;9314:456;-1:-1:-1;;;;;;;9314:456:1:o;9985:786::-;10396:25;10391:3;10384:38;10366:3;10451:6;10445:13;10467:62;10522:6;10517:2;10512:3;10508:12;10501:4;10493:6;10489:17;10467:62;:::i;:::-;-1:-1:-1;;;10588:2:1;10548:16;;;10580:11;;;10573:40;10638:13;;10660:63;10638:13;10709:2;10701:11;;10694:4;10682:17;;10660:63;:::i;:::-;10743:17;10762:2;10739:26;;9985:786;-1:-1:-1;;;;9985:786:1:o;11348:488::-;-1:-1:-1;;;;;11617:15:1;;;11599:34;;11669:15;;11664:2;11649:18;;11642:43;11716:2;11701:18;;11694:34;;;11764:3;11759:2;11744:18;;11737:31;;;11542:4;;11785:45;;11810:19;;11802:6;11785:45;:::i;:::-;11777:53;11348:488;-1:-1:-1;;;;;;11348:488:1:o;12215:219::-;12364:2;12353:9;12346:21;12327:4;12384:44;12424:2;12413:9;12409:18;12401:6;12384:44;:::i;16160:340::-;16362:2;16344:21;;;16401:2;16381:18;;;16374:30;-1:-1:-1;;;16435:2:1;16420:18;;16413:46;16491:2;16476:18;;16160:340::o;17921:349::-;18123:2;18105:21;;;18162:2;18142:18;;;18135:30;18201:27;18196:2;18181:18;;18174:55;18261:2;18246:18;;17921:349::o;18275:356::-;18477:2;18459:21;;;18496:18;;;18489:30;18555:34;18550:2;18535:18;;18528:62;18622:2;18607:18;;18275:356::o;23331:128::-;23371:3;23402:1;23398:6;23395:1;23392:13;23389:39;;;23408:18;;:::i;:::-;-1:-1:-1;23444:9:1;;23331:128::o;23464:120::-;23504:1;23530;23520:35;;23535:18;;:::i;:::-;-1:-1:-1;23569:9:1;;23464:120::o;23589:168::-;23629:7;23695:1;23691;23687:6;23683:14;23680:1;23677:21;23672:1;23665:9;23658:17;23654:45;23651:71;;;23702:18;;:::i;:::-;-1:-1:-1;23742:9:1;;23589:168::o;23762:125::-;23802:4;23830:1;23827;23824:8;23821:34;;;23835:18;;:::i;:::-;-1:-1:-1;23872:9:1;;23762:125::o;23892:258::-;23964:1;23974:113;23988:6;23985:1;23982:13;23974:113;;;24064:11;;;24058:18;24045:11;;;24038:39;24010:2;24003:10;23974:113;;;24105:6;24102:1;24099:13;24096:48;;;-1:-1:-1;;24140:1:1;24122:16;;24115:27;23892:258::o;24155:136::-;24194:3;24222:5;24212:39;;24231:18;;:::i;:::-;-1:-1:-1;;;24267:18:1;;24155:136::o;24296:380::-;24375:1;24371:12;;;;24418;;;24439:61;;24493:4;24485:6;24481:17;24471:27;;24439:61;24546:2;24538:6;24535:14;24515:18;24512:38;24509:161;;;24592:10;24587:3;24583:20;24580:1;24573:31;24627:4;24624:1;24617:15;24655:4;24652:1;24645:15;24509:161;;24296:380;;;:::o;24681:135::-;24720:3;-1:-1:-1;;24741:17:1;;24738:43;;;24761:18;;:::i;:::-;-1:-1:-1;24808:1:1;24797:13;;24681:135::o;24821:112::-;24853:1;24879;24869:35;;24884:18;;:::i;:::-;-1:-1:-1;24918:9:1;;24821:112::o;24938:127::-;24999:10;24994:3;24990:20;24987:1;24980:31;25030:4;25027:1;25020:15;25054:4;25051:1;25044:15;25070:127;25131:10;25126:3;25122:20;25119:1;25112:31;25162:4;25159:1;25152:15;25186:4;25183:1;25176:15;25202:127;25263:10;25258:3;25254:20;25251:1;25244:31;25294:4;25291:1;25284:15;25318:4;25315:1;25308:15;25334:127;25395:10;25390:3;25386:20;25383:1;25376:31;25426:4;25423:1;25416:15;25450:4;25447:1;25440:15;25466:131;-1:-1:-1;;;;;;25540:32:1;;25530:43;;25520:71;;25587:1;25584;25577:12

Swarm Source

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