ETH Price: $3,486.47 (+2.30%)
Gas: 11 Gwei

Token

REXBITS (RXBT)
 

Overview

Max Total Supply

4,321 RXBT

Holders

1,282

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
firerus.eth
Balance
7 RXBT
0xb6ed0d1b01e577a7e02f9a084e54aafc6ab38d20
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
RexbitsContract

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-27
*/

//*********************************************************************//
//*********************************************************************//
//
//
// ██████  ███████ ██   ██ ██████  ██ ████████ ███████ 
// ██   ██ ██       ██ ██  ██   ██ ██    ██    ██      
// ██████  █████     ███   ██████  ██    ██    ███████ 
// ██   ██ ██       ██ ██  ██   ██ ██    ██         ██ 
// ██   ██ ███████ ██   ██ ██████  ██    ██    ███████ 
//                                                     
//                                                     
//
//
//*********************************************************************//
//*********************************************************************//
  
//-------------DEPENDENCIES--------------------------//

// 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/IERC721Enumerable.sol


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/utils/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/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// 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/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.
     */
    function _onlyOwner() private view {
       require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    modifier onlyOwner() {
        _onlyOwner();
        _;
    }

    /**
     * @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/OperatorFilter/IOperatorFilterRegistry.sol
pragma solidity ^0.8.9;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

// File contracts/OperatorFilter/OperatorFilterer.sol
pragma solidity ^0.8.9;

abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    function _onlyAllowedOperator(address from) private view {
      if (
          !(
              operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
              && operatorFilterRegistry.isOperatorAllowed(address(this), from)
          )
      ) {
          revert OperatorNotAllowed(msg.sender);
      }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            _onlyAllowedOperator(from);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (!operatorFilterRegistry.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

//-------------END DEPENDENCIES------------------------//


  
error TransactionCapExceeded();
error PublicMintingClosed();
error ExcessiveOwnedMints();
error MintZeroQuantity();
error InvalidPayment();
error CapExceeded();
error IsAlreadyUnveiled();
error ValueCannotBeZero();
error CannotBeNullAddress();
error NoStateChange();

error PublicMintClosed();
error AllowlistMintClosed();

error AddressNotAllowlisted();
error AllowlistDropTimeHasNotPassed();
error PublicDropTimeHasNotPassed();
error DropTimeNotInFuture();

error OnlyERC20MintingEnabled();
error ERC20TokenNotApproved();
error ERC20InsufficientBalance();
error ERC20InsufficientAllowance();
error ERC20TransferFailed();

error ClaimModeDisabled();
error IneligibleRedemptionContract();
error TokenAlreadyRedeemed();
error InvalidOwnerForRedemption();
error InvalidApprovalForRedemption();

error ERC721RestrictedApprovalAddressRestricted();
error NotMaintainer();
  
  
// Rampp Contracts v2.1 (Teams.sol)

error InvalidTeamAddress();
error DuplicateTeamAddress();
pragma solidity ^0.8.0;

/**
* Teams is a contract implementation to extend upon Ownable that allows multiple controllers
* of a single contract to modify specific mint settings but not have overall ownership of the contract.
* This will easily allow cross-collaboration via Mintplex.xyz.
**/
abstract contract Teams is Ownable{
  mapping (address => bool) internal team;

  /**
  * @dev Adds an address to the team. Allows them to execute protected functions
  * @param _address the ETH address to add, cannot be 0x and cannot be in team already
  **/
  function addToTeam(address _address) public onlyOwner {
    if(_address == address(0)) revert InvalidTeamAddress();
    if(inTeam(_address)) revert DuplicateTeamAddress();
  
    team[_address] = true;
  }

  /**
  * @dev Removes an address to the team.
  * @param _address the ETH address to remove, cannot be 0x and must be in team
  **/
  function removeFromTeam(address _address) public onlyOwner {
    if(_address == address(0)) revert InvalidTeamAddress();
    if(!inTeam(_address)) revert InvalidTeamAddress();
  
    team[_address] = false;
  }

  /**
  * @dev Check if an address is valid and active in the team
  * @param _address ETH address to check for truthiness
  **/
  function inTeam(address _address)
    public
    view
    returns (bool)
  {
    if(_address == address(0)) revert InvalidTeamAddress();
    return team[_address] == true;
  }

  /**
  * @dev Throws if called by any account other than the owner or team member.
  */
  function _onlyTeamOrOwner() private view {
    bool _isOwner = owner() == _msgSender();
    bool _isTeam = inTeam(_msgSender());
    require(_isOwner || _isTeam, "Team: caller is not the owner or in Team.");
  }

  modifier onlyTeamOrOwner() {
    _onlyTeamOrOwner();
    _;
  }
}


  
  
/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable 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 the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable,
  Teams
  , OperatorFilterer
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex;

  uint256 public immutable collectionSize;
  uint256 public maxBatchSize;

  // 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) private _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;

  /* @dev Mapping of restricted operator approvals set by contract Owner
  * This serves as an optional addition to ERC-721 so
  * that the contract owner can elect to prevent specific addresses/contracts
  * from being marked as the approver for a token. The reason for this
  * is that some projects may want to retain control of where their tokens can/can not be listed
  * either due to ethics, loyalty, or wanting trades to only occur on their personal marketplace.
  * By default, there are no restrictions. The contract owner must deliberatly block an address 
  */
  mapping(address => bool) public restrictedApprovalAddresses;

  /**
   * @dev
   * maxBatchSize refers to how much a minter can mint at a time.
   * collectionSize_ refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) OperatorFilterer(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6, true) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
    currentIndex = _startTokenId();
  }

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

  /**
   * @dev See {IERC721Enumerable-totalSupply}.
   */
  function totalSupply() public view override returns (uint256) {
    return _totalMinted();
  }

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

  function getNextTokenId() public view returns (uint256) {
      return _totalMinted() + 1;
  }

  /**
  * Returns the total amount of tokens minted in the contract.
  */
  function _totalMinted() internal view returns (uint256) {
    unchecked {
      return currentIndex - _startTokenId();
    }
  }

  /**
   * @dev See {IERC721Enumerable-tokenByIndex}.
   */
  function tokenByIndex(uint256 index) public view override returns (uint256) {
    require(index < totalSupply(), "ERC721A: global index out of bounds");
    return index;
  }

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @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 ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

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

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  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.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("ERC721A: unable to determine the owner of token");
  }

  /**
   * @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)
  {
    string memory baseURI = _baseURI();
    string memory extension = _baseURIExtension();
    return
      bytes(baseURI).length > 0
        ? string(abi.encodePacked(baseURI, tokenId.toString(), extension))
        : "";
  }

  /**
   * @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 Base URI extension used for computing {tokenURI}. If set, the resulting URI for each
   * token will be the concatenation of the baseURI, tokenId, and this value. Empty
   * by default, can be overriden in child contracts.
   */
  function _baseURIExtension() internal view virtual returns (string memory) {
    return "";
  }

  /**
   * @dev Sets the value for an address to be in the restricted approval address pool.
   * Setting an address to true will disable token owners from being able to mark the address
   * for approval for trading. This would be used in theory to prevent token owners from listing
   * on specific marketplaces or protcols. Only modifible by the contract owner/team.
   * @param _address the marketplace/user to modify restriction status of
   * @param _isRestricted restriction status of the _address to be set. true => Restricted, false => Open
   */
  function setApprovalRestriction(address _address, bool _isRestricted) public onlyTeamOrOwner {
    restrictedApprovalAddresses[_address] = _isRestricted;
  }

  /**
   * @dev See {IERC721-approve}.
   */
  function approve(address to, uint256 tokenId) public override onlyAllowedOperatorApproval(to) {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");
    if(restrictedApprovalAddresses[to]) revert ERC721RestrictedApprovalAddressRestricted();

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
    require(operator != _msgSender(), "ERC721A: approve to caller");
    if(restrictedApprovalAddresses[operator]) revert ERC721RestrictedApprovalAddressRestricted();

    _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 override onlyAllowedOperator(from) {
    _transfer(from, to, tokenId);
  }

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override onlyAllowedOperator(from) {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

  /**
   * @dev Returns whether tokenId exists.
   *
   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
   *
   * Tokens start existing when they are minted (_mint),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return _startTokenId() <= tokenId && tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity, bool isAdminMint) internal {
    _safeMint(to, quantity, isAdminMint, "");
  }

  /**
   * @dev Mints quantity tokens and transfers them to to.
   *
   * Requirements:
   *
   * - there must be quantity tokens remaining unminted in the total collection.
   * - to cannot be the zero address.
   * - quantity cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bool isAdminMint,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");

    // For admin mints we do not want to enforce the maxBatchSize limit
    if (isAdminMint == false) {
        require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");
    }

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

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + (isAdminMint ? 0 : uint128(quantity))
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers tokenId from from to to.
   *
   * Requirements:
   *
   * - to cannot be the zero address.
   * - tokenId token must be owned by from.
   *
   * Emits a {Transfer} event.
   */
  function _transfer(
    address from,
    address to,
    uint256 tokenId
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set owners to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    if (currentIndex == _startTokenId()) revert('No Tokens Minted Yet');

    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * 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.
   */
  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.
   *
   * 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 and to are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}

abstract contract ProviderFees is Context {
  address private constant PROVIDER = 0xa9dAC8f3aEDC55D0FE707B86B8A45d246858d2E1;
  uint256 public PROVIDER_FEE = 0.000777 ether;  

  function sendProviderFee() internal {
    payable(PROVIDER).transfer(PROVIDER_FEE);
  }

  function setProviderFee(uint256 _fee) public {
    if(_msgSender() != PROVIDER) revert NotMaintainer();
    PROVIDER_FEE = _fee;
  }
}



  
  
interface IERC20 {
  function allowance(address owner, address spender) external view returns (uint256);
  function transfer(address _to, uint256 _amount) external returns (bool);
  function balanceOf(address account) external view returns (uint256);
  function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

// File: WithdrawableV2
// This abstract allows the contract to be able to mint and ingest ERC-20 payments for mints.
// ERC-20 Payouts are limited to a single payout address. This feature 
// will charge a small flat fee in native currency that is not subject to regular rev sharing.
// This contract also covers the normal functionality of accepting native base currency rev-sharing
abstract contract WithdrawableV2 is Teams {
  struct acceptedERC20 {
    bool isActive;
    uint256 chargeAmount;
  }

  
  mapping(address => acceptedERC20) private allowedTokenContracts;
  address[] public payableAddresses = [0x5cCa867939aA9CBbd8757339659bfDbf3948091B,0x678469cA566BEE59C2eE779B09976B8072B572BB];
  address public erc20Payable = 0x678469cA566BEE59C2eE779B09976B8072B572BB;
  uint256[] public payableFees = [2,98];
  uint256 public payableAddressCount = 2;
  bool public onlyERC20MintingMode;
  

  function withdrawAll() public onlyTeamOrOwner {
      if(address(this).balance == 0) revert ValueCannotBeZero();
      _withdrawAll(address(this).balance);
  }

  function _withdrawAll(uint256 balance) private {
      for(uint i=0; i < payableAddressCount; i++ ) {
          _widthdraw(
              payableAddresses[i],
              (balance * payableFees[i]) / 100
          );
      }
  }
  
  function _widthdraw(address _address, uint256 _amount) private {
      (bool success, ) = _address.call{value: _amount}("");
      require(success, "Transfer failed.");
  }

  /**
  * @dev Allow contract owner to withdraw ERC-20 balance from contract
  * in the event ERC-20 tokens are paid to the contract for mints.
  * @param _tokenContract contract of ERC-20 token to withdraw
  * @param _amountToWithdraw balance to withdraw according to balanceOf of ERC-20 token in wei
  */
  function withdrawERC20(address _tokenContract, uint256 _amountToWithdraw) public onlyTeamOrOwner {
    if(_amountToWithdraw == 0) revert ValueCannotBeZero();
    IERC20 tokenContract = IERC20(_tokenContract);
    if(tokenContract.balanceOf(address(this)) < _amountToWithdraw) revert ERC20InsufficientBalance();
    tokenContract.transfer(erc20Payable, _amountToWithdraw); // Payout ERC-20 tokens to recipient
  }

  /**
  * @dev check if an ERC-20 contract is a valid payable contract for executing a mint.
  * @param _erc20TokenContract address of ERC-20 contract in question
  */
  function isApprovedForERC20Payments(address _erc20TokenContract) public view returns(bool) {
    return allowedTokenContracts[_erc20TokenContract].isActive == true;
  }

  /**
  * @dev get the value of tokens to transfer for user of an ERC-20
  * @param _erc20TokenContract address of ERC-20 contract in question
  */
  function chargeAmountForERC20(address _erc20TokenContract) public view returns(uint256) {
    if(!isApprovedForERC20Payments(_erc20TokenContract)) revert ERC20TokenNotApproved();
    return allowedTokenContracts[_erc20TokenContract].chargeAmount;
  }

  /**
  * @dev Explicity sets and ERC-20 contract as an allowed payment method for minting
  * @param _erc20TokenContract address of ERC-20 contract in question
  * @param _isActive default status of if contract should be allowed to accept payments
  * @param _chargeAmountInTokens fee (in tokens) to charge for mints for this specific ERC-20 token
  */
  function addOrUpdateERC20ContractAsPayment(address _erc20TokenContract, bool _isActive, uint256 _chargeAmountInTokens) public onlyTeamOrOwner {
    allowedTokenContracts[_erc20TokenContract].isActive = _isActive;
    allowedTokenContracts[_erc20TokenContract].chargeAmount = _chargeAmountInTokens;
  }

  /**
  * @dev Add an ERC-20 contract as being a valid payment method. If passed a contract which has not been added
  * it will assume the default value of zero. This should not be used to create new payment tokens.
  * @param _erc20TokenContract address of ERC-20 contract in question
  */
  function enableERC20ContractAsPayment(address _erc20TokenContract) public onlyTeamOrOwner {
    allowedTokenContracts[_erc20TokenContract].isActive = true;
  }

  /**
  * @dev Disable an ERC-20 contract as being a valid payment method. If passed a contract which has not been added
  * it will assume the default value of zero. This should not be used to create new payment tokens.
  * @param _erc20TokenContract address of ERC-20 contract in question
  */
  function disableERC20ContractAsPayment(address _erc20TokenContract) public onlyTeamOrOwner {
    allowedTokenContracts[_erc20TokenContract].isActive = false;
  }

  /**
  * @dev Enable only ERC-20 payments for minting on this contract
  */
  function enableERC20OnlyMinting() public onlyTeamOrOwner {
    onlyERC20MintingMode = true;
  }

  /**
  * @dev Disable only ERC-20 payments for minting on this contract
  */
  function disableERC20OnlyMinting() public onlyTeamOrOwner {
    onlyERC20MintingMode = false;
  }

  /**
  * @dev Set the payout of the ERC-20 token payout to a specific address
  * @param _newErc20Payable new payout addresses of ERC-20 tokens
  */
  function setERC20PayableAddress(address _newErc20Payable) public onlyTeamOrOwner {
    if(_newErc20Payable == address(0)) revert CannotBeNullAddress();
    if(_newErc20Payable == erc20Payable) revert NoStateChange();
    erc20Payable = _newErc20Payable;
  }
}


  
  
/* File: Tippable.sol
/* @dev Allows owner to set strict enforcement of payment to mint price.
/* Would then allow buyers to pay _more_ than the mint fee - consider it as a tip
/* when doing a free mint with opt-in pricing.
/* When strict pricing is enabled => msg.value must extactly equal the expected value
/* when strict pricing is disabled => msg.value must be _at least_ the expected value.
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/* Pros - can take in gratituity payments during a mint. 
/* Cons - However if you decrease pricing during mint txn settlement 
/* it can result in mints landing who technically now have overpaid.
*/
abstract contract Tippable is Teams {
  bool public strictPricing = true;

  function setStrictPricing(bool _newStatus) public onlyTeamOrOwner {
    strictPricing = _newStatus;
  }

  // @dev check if msg.value is correct according to pricing enforcement
  // @param _msgValue -> passed in msg.value of tx
  // @param _expectedPrice -> result of getPrice(...args)
  function priceIsRight(uint256 _msgValue, uint256 _expectedPrice) internal view returns (bool) {
    return strictPricing ? 
      _msgValue == _expectedPrice : 
      _msgValue >= _expectedPrice;
  }
}

  
  
// File: EarlyMintIncentive.sol
// Allows the contract to have the first x tokens minted for a wallet at a discount or
// zero fee that can be calculated on the fly.
abstract contract EarlyMintIncentive is Teams, ERC721A, ProviderFees {
  uint256 public PRICE = 0.005 ether;
  uint256 public EARLY_MINT_PRICE = 0 ether;
  uint256 public earlyMintOwnershipCap = 1;
  bool public usingEarlyMintIncentive = true;

  function enableEarlyMintIncentive() public onlyTeamOrOwner {
    usingEarlyMintIncentive = true;
  }

  function disableEarlyMintIncentive() public onlyTeamOrOwner {
    usingEarlyMintIncentive = false;
  }

  /**
  * @dev Set the max token ID in which the cost incentive will be applied.
  * @param _newCap max number of tokens wallet may mint for incentive price
  */
  function setEarlyMintOwnershipCap(uint256 _newCap) public onlyTeamOrOwner {
    if(_newCap == 0) revert ValueCannotBeZero();
    earlyMintOwnershipCap = _newCap;
  }

  /**
  * @dev Set the incentive mint price
  * @param _feeInWei new price per token when in incentive range
  */
  function setEarlyIncentivePrice(uint256 _feeInWei) public onlyTeamOrOwner {
    EARLY_MINT_PRICE = _feeInWei;
  }

  /**
  * @dev Set the primary mint price - the base price when not under incentive
  * @param _feeInWei new price per token
  */
  function setPrice(uint256 _feeInWei) public onlyTeamOrOwner {
    PRICE = _feeInWei;
  }

  /**
  * @dev Get the correct price for the mint for qty and person minting
  * @param _count amount of tokens to calc for mint
  * @param _to the address which will be minting these tokens, passed explicitly
  */
  function getPrice(uint256 _count, address _to) public view returns (uint256) {
    if(_count == 0) revert ValueCannotBeZero();

    // short circuit function if we dont need to even calc incentive pricing
    // short circuit if the current wallet mint qty is also already over cap
    if(
      usingEarlyMintIncentive == false ||
      _numberMinted(_to) > earlyMintOwnershipCap
    ) {
      return (PRICE * _count) + PROVIDER_FEE;
    }

    uint256 endingTokenQty = _numberMinted(_to) + _count;
    // If qty to mint results in a final qty less than or equal to the cap then
    // the entire qty is within incentive mint.
    if(endingTokenQty  <= earlyMintOwnershipCap) {
      return (EARLY_MINT_PRICE * _count) + PROVIDER_FEE;
    }

    // If the current token qty is less than the incentive cap
    // and the ending token qty is greater than the incentive cap
    // we will be straddling the cap so there will be some amount
    // that are incentive and some that are regular fee.
    uint256 incentiveTokenCount = earlyMintOwnershipCap - _numberMinted(_to);
    uint256 outsideIncentiveCount = endingTokenQty - earlyMintOwnershipCap;

    return (EARLY_MINT_PRICE * incentiveTokenCount) + (PRICE * outsideIncentiveCount) + PROVIDER_FEE;
  }
}

  
abstract contract ERC721APlus is 
    Ownable,
    Teams,
    ERC721A,
    WithdrawableV2,
    ReentrancyGuard 
    , EarlyMintIncentive, Tippable 
     
    
{
  constructor(
    string memory tokenName,
    string memory tokenSymbol
  ) ERC721A(tokenName, tokenSymbol, 20, 4321) { }
    uint8 constant public CONTRACT_VERSION = 2;
    string public _baseTokenURI = "ipfs://bafybeidlscib42wvnwh5tt2aove652xgafufi2yuvd2vqjs4bksaby7jvq/";
    string public _baseTokenExtension = ".json";

    bool public mintingOpen = false;
    bool public isRevealed;
    
    uint256 public MAX_WALLET_MINTS = 20;

  
    /////////////// Admin Mint Functions
    /**
     * @dev Mints a token to an address with a tokenURI.
     * This is owner only and allows a fee-free drop
     * @param _to address of the future owner of the token
     * @param _qty amount of tokens to drop the owner
     */
     function mintToAdminV2(address _to, uint256 _qty) public onlyTeamOrOwner{
         if(_qty == 0) revert MintZeroQuantity();
         if(currentTokenId() + _qty > collectionSize) revert CapExceeded();
         _safeMint(_to, _qty, true);
     }

  
    /////////////// PUBLIC MINT FUNCTIONS
    /**
    * @dev Mints tokens to an address in batch.
    * fee may or may not be required*
    * @param _to address of the future owner of the token
    * @param _amount number of tokens to mint
    */
    function mintToMultiple(address _to, uint256 _amount) public payable {
        if(onlyERC20MintingMode) revert OnlyERC20MintingEnabled();
        if(_amount == 0) revert MintZeroQuantity();
        if(_amount > maxBatchSize) revert TransactionCapExceeded();
        if(!mintingOpen) revert PublicMintClosed();
        
        
        if(!canMintAmount(_to, _amount)) revert ExcessiveOwnedMints();
        if(currentTokenId() + _amount > collectionSize) revert CapExceeded();
        if(!priceIsRight(msg.value, getPrice(_amount, _to))) revert InvalidPayment();
        sendProviderFee();
        _safeMint(_to, _amount, false);
    }

    /**
     * @dev Mints tokens to an address in batch using an ERC-20 token for payment
     * fee may or may not be required*
     * @param _to address of the future owner of the token
     * @param _amount number of tokens to mint
     * @param _erc20TokenContract erc-20 token contract to mint with
     */
    function mintToMultipleERC20(address _to, uint256 _amount, address _erc20TokenContract) public payable {
      if(_amount == 0) revert MintZeroQuantity();
      if(_amount > maxBatchSize) revert TransactionCapExceeded();
      if(!mintingOpen) revert PublicMintClosed();
      if(currentTokenId() + _amount > collectionSize) revert CapExceeded();
      
      
      if(!canMintAmount(_to, _amount)) revert ExcessiveOwnedMints();
      if(msg.value != PROVIDER_FEE) revert InvalidPayment();

      // ERC-20 Specific pre-flight checks
      if(!isApprovedForERC20Payments(_erc20TokenContract)) revert ERC20TokenNotApproved();
      uint256 tokensQtyToTransfer = chargeAmountForERC20(_erc20TokenContract) * _amount;
      IERC20 payableToken = IERC20(_erc20TokenContract);

      if(payableToken.balanceOf(_to) < tokensQtyToTransfer) revert ERC20InsufficientBalance();
      if(payableToken.allowance(_to, address(this)) < tokensQtyToTransfer) revert ERC20InsufficientAllowance();

      bool transferComplete = payableToken.transferFrom(_to, address(this), tokensQtyToTransfer);
      if(!transferComplete) revert ERC20TransferFailed();

      sendProviderFee();
      _safeMint(_to, _amount, false);
    }

    function openMinting() public onlyTeamOrOwner {
        mintingOpen = true;
    }

    function stopMinting() public onlyTeamOrOwner {
        mintingOpen = false;
    }

  

  
    /**
    * @dev Check if wallet over MAX_WALLET_MINTS
    * @param _address address in question to check if minted count exceeds max
    */
    function canMintAmount(address _address, uint256 _amount) public view returns(bool) {
        if(_amount == 0) revert ValueCannotBeZero();
        return (_numberMinted(_address) + _amount) <= MAX_WALLET_MINTS;
    }

    /**
    * @dev Update the maximum amount of tokens that can be minted by a unique wallet
    * @param _newWalletMax the new max of tokens a wallet can mint. Must be >= 1
    */
    function setWalletMax(uint256 _newWalletMax) public onlyTeamOrOwner {
        if(_newWalletMax == 0) revert ValueCannotBeZero();
        MAX_WALLET_MINTS = _newWalletMax;
    }
    

  
    /**
     * @dev Allows owner to set Max mints per tx
     * @param _newMaxMint maximum amount of tokens allowed to mint per tx. Must be >= 1
     */
     function setMaxMint(uint256 _newMaxMint) public onlyTeamOrOwner {
         if(_newMaxMint == 0) revert ValueCannotBeZero();
         maxBatchSize = _newMaxMint;
     }
    

  
    function unveil(string memory _updatedTokenURI) public onlyTeamOrOwner {
        if(isRevealed) revert IsAlreadyUnveiled();
        _baseTokenURI = _updatedTokenURI;
        isRevealed = true;
    }
    
  
  
  function contractURI() public pure returns (string memory) {
    return "https://metadata.mintplex.xyz/LCYo5vH4YKY23anyjFsx/contract-metadata";
  }
  

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

  function _baseURIExtension() internal view virtual override returns(string memory) {
    return _baseTokenExtension;
  }

  function baseTokenURI() public view returns(string memory) {
    return _baseTokenURI;
  }

  function setBaseURI(string calldata baseURI) external onlyTeamOrOwner {
    _baseTokenURI = baseURI;
  }

  function setBaseTokenExtension(string calldata baseExtension) external onlyTeamOrOwner {
    _baseTokenExtension = baseExtension;
  }
}


  
// File: contracts/RexbitsContract.sol
//SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

contract RexbitsContract is ERC721APlus {
    constructor() ERC721APlus("REXBITS", "RXBT"){}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"CannotBeNullAddress","type":"error"},{"inputs":[],"name":"CapExceeded","type":"error"},{"inputs":[],"name":"DuplicateTeamAddress","type":"error"},{"inputs":[],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[],"name":"ERC20TokenNotApproved","type":"error"},{"inputs":[],"name":"ERC20TransferFailed","type":"error"},{"inputs":[],"name":"ERC721RestrictedApprovalAddressRestricted","type":"error"},{"inputs":[],"name":"ExcessiveOwnedMints","type":"error"},{"inputs":[],"name":"InvalidPayment","type":"error"},{"inputs":[],"name":"InvalidTeamAddress","type":"error"},{"inputs":[],"name":"IsAlreadyUnveiled","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NoStateChange","type":"error"},{"inputs":[],"name":"NotMaintainer","type":"error"},{"inputs":[],"name":"OnlyERC20MintingEnabled","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"PublicMintClosed","type":"error"},{"inputs":[],"name":"TransactionCapExceeded","type":"error"},{"inputs":[],"name":"ValueCannotBeZero","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CONTRACT_VERSION","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EARLY_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WALLET_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVIDER_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20TokenContract","type":"address"},{"internalType":"bool","name":"_isActive","type":"bool"},{"internalType":"uint256","name":"_chargeAmountInTokens","type":"uint256"}],"name":"addOrUpdateERC20ContractAsPayment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addToTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"canMintAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"chargeAmountForERC20","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"currentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"disableERC20ContractAsPayment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableERC20OnlyMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableEarlyMintIncentive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earlyMintOwnershipCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"enableERC20ContractAsPayment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableERC20OnlyMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableEarlyMintIncentive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"erc20Payable","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"inTeam","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"isApprovedForERC20Payments","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"mintToAdminV2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintToMultiple","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"mintToMultipleERC20","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyERC20MintingMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openMinting","outputs":[],"stateMutability":"nonpayable","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":"payableAddressCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payableAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payableFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeFromTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"restrictedApprovalAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isRestricted","type":"bool"}],"name":"setApprovalRestriction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseExtension","type":"string"}],"name":"setBaseTokenExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newErc20Payable","type":"address"}],"name":"setERC20PayableAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feeInWei","type":"uint256"}],"name":"setEarlyIncentivePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCap","type":"uint256"}],"name":"setEarlyMintOwnershipCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feeInWei","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setProviderFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_newStatus","type":"bool"}],"name":"setStrictPricing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWalletMax","type":"uint256"}],"name":"setWalletMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"strictPricing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_updatedTokenURI","type":"string"}],"name":"unveil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"usingEarlyMintIncentive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"uint256","name":"_amountToWithdraw","type":"uint256"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000600b5560e0604052735cca867939aa9cbbd8757339659bfdbf3948091b60a090815273678469ca566bee59c2ee779b09976b8072b572bb60c0526200004b90600d90600262000470565b50600e80546001600160a01b03191673678469ca566bee59c2ee779b09976b8072b572bb179055604080518082019091526002808252606260208301526200009691600f91620004da565b5060026010556602c2ad68fd90006013556611c37937e08000601455600060155560016016556017805461ffff1916610101179055604080516080810190915260438082526200422d60208301398051620000fa916018916020909101906200051d565b5060408051808201909152600580825264173539b7b760d91b602090920191825262000129916019916200051d565b50601a805460ff191690556014601b553480156200014657600080fd5b50604051806040016040528060078152602001665245584249545360c81b815250604051806040016040528060048152602001631496109560e21b815250818160146110e1733cc6cdda760b79bafa08df41ecfa224f810dceb66001620001bc620001b66200041c60201b60201c565b62000420565b6daaeb6d7670e522a718067333cd4e3b15620003015780156200024f57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200023057600080fd5b505af115801562000245573d6000803e3d6000fd5b5050505062000301565b6001600160a01b03821615620002a05760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000215565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620002e757600080fd5b505af1158015620002fc573d6000803e3d6000fd5b505050505b505060008111620003705760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620003d25760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000367565b8351620003e79060049060208701906200051d565b508251620003fd9060059060208601906200051d565b5060039190915560805250506001600281905560125550620005ee9050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054828255906000526020600020908101928215620004c8579160200282015b82811115620004c857825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000491565b50620004d69291506200059a565b5090565b828054828255906000526020600020908101928215620004c8579160200282015b82811115620004c8578251829060ff16905591602001919060010190620004fb565b8280546200052b90620005b1565b90600052602060002090601f0160209004810192826200054f5760008555620004c8565b82601f106200056a57805160ff1916838001178555620004c8565b82800160010185558215620004c8579182015b82811115620004c85782518255916020019190600101906200057d565b5b80821115620004d657600081556001016200059b565b600181811c90821680620005c657607f821691505b60208210811415620005e857634e487b7160e01b600052602260045260246000fd5b50919050565b608051613c0e6200061f6000396000818161070501528181610e94015281816114d901526117560152613c0e6000f3fe6080604052600436106104515760003560e01c8063891bbe731161023f578063c87b56dd11610139578063e8a3d485116100b6578063f4637a151161007a578063f4637a1514610cd3578063f623bb8b14610ced578063fd19eaf014610d03578063fe6757a114610d23578063ff33274514610d4257600080fd5b8063e8a3d48514610c20578063e985e9c514610c35578063ec34082614610c7e578063ed77e19f14610c93578063f2fde38b14610cb357600080fd5b8063d266f3a9116100fd578063d266f3a914610b95578063d547cfb714610bb5578063d7224ba014610bca578063d83ae33214610be0578063dfdedf6914610c0057600080fd5b8063c87b56dd14610b0b578063caa0f92a14610b2b578063cacf084214610b40578063cfc86f7b14610b60578063cff4492314610b7557600080fd5b8063a1af10ca116101c7578063aff3e10b1161018b578063aff3e10b14610a81578063b4835e0714610aa1578063b88d4fde14610ac1578063b94b237614610ae1578063c54826ab14610af657600080fd5b8063a1af10ca146109e1578063a1db978214610a01578063a22cb46514610a21578063a7593fb714610a41578063a91bd1a914610a6157600080fd5b80638f4bb4971161020e5780638f4bb4971461095c5780638ff4013f1461097657806391b7f5ed1461099657806395d89b41146109b6578063a030fd8f146109cb57600080fd5b8063891bbe73146108f357806389f26d58146109135780638d859f3e146109285780638da5cb5b1461093e57600080fd5b806343696f181161035057806360986a71116102d8578063715018a61161029c578063715018a6146108745780637fb8c6d314610889578063817c0d9c146108a957806383c81c41146108be578063853828b6146108de57600080fd5b806360986a71146107f65780636352211e1461080957806367dec678146108295780636ba9fd381461083f57806370a082311461085457600080fd5b80634ab8b5dd1161031f5780634ab8b5dd146107615780634f6ccce71461077757806354214f6914610797578063547520fe146107b657806355f804b3146107d657600080fd5b806343696f18146106d357806345c0f533146106f3578063464c34281461072757806346f41ed51461074757600080fd5b8063286c8137116103de5780633d3f9c57116103a25780633d3f9c571461062a5780633e07311c146106685780633e3e0b121461067e57806340ccc0821461069357806342842e0e146106b357600080fd5b8063286c81371461058d5780632913daa0146105ad5780632b57cfbb146105c35780632f745c59146105e357806338b903331461060357600080fd5b806306fdde031161042557806306fdde03146104f3578063081812fc14610515578063095ea7b31461054d57806318160ddd1461045657806323b872dd1461056d57600080fd5b80629a9b7b1461045657806301ffc9a71461047e578063043a2a40146104ae5780630644cefa146104de575b600080fd5b34801561046257600080fd5b5061046b610d62565b6040519081526020015b60405180910390f35b34801561048a57600080fd5b5061049e6104993660046134e3565b610d76565b6040519015158152602001610475565b3480156104ba57600080fd5b5061049e6104c936600461351c565b600a6020526000908152604090205460ff1681565b6104f16104ec366004613537565b610de3565b005b3480156104ff57600080fd5b50610508610f2d565b60405161047591906135b9565b34801561052157600080fd5b506105356105303660046135cc565b610fbf565b6040516001600160a01b039091168152602001610475565b34801561055957600080fd5b506104f1610568366004613537565b61104d565b34801561057957600080fd5b506104f16105883660046135e5565b6111aa565b34801561059957600080fd5b5061046b6105a83660046135cc565b6111f5565b3480156105b957600080fd5b5061046b60035481565b3480156105cf57600080fd5b5061046b6105de366004613621565b611216565b3480156105ef57600080fd5b5061046b6105fe366004613537565b611325565b34801561060f57600080fd5b50610618600281565b60405160ff9091168152602001610475565b34801561063657600080fd5b5061049e61064536600461351c565b6001600160a01b03166000908152600c602052604090205460ff16151560011490565b34801561067457600080fd5b5061046b60105481565b34801561068a57600080fd5b506104f161149d565b34801561069f57600080fd5b506104f16106ae366004613537565b6114b1565b3480156106bf57600080fd5b506104f16106ce3660046135e5565b611536565b3480156106df57600080fd5b506104f16106ee36600461351c565b61159c565b3480156106ff57600080fd5b5061046b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561073357600080fd5b506104f161074236600461351c565b611618565b34801561075357600080fd5b5060115461049e9060ff1681565b34801561076d57600080fd5b5061046b601b5481565b34801561078357600080fd5b5061046b6107923660046135cc565b611644565b3480156107a357600080fd5b50601a5461049e90610100900460ff1681565b3480156107c257600080fd5b506104f16107d13660046135cc565b6116ac565b3480156107e257600080fd5b506104f16107f136600461364d565b6116d7565b6104f16108043660046136bf565b6116f0565b34801561081557600080fd5b506105356108243660046135cc565b611a53565b34801561083557600080fd5b5061046b60155481565b34801561084b57600080fd5b506104f1611a65565b34801561086057600080fd5b5061046b61086f36600461351c565b611a7c565b34801561088057600080fd5b506104f1611b0d565b34801561089557600080fd5b50600e54610535906001600160a01b031681565b3480156108b557600080fd5b506104f1611b21565b3480156108ca57600080fd5b506104f16108d9366004613709565b611b38565b3480156108ea57600080fd5b506104f1611b6b565b3480156108ff57600080fd5b5061053561090e3660046135cc565b611b9a565b34801561091f57600080fd5b506104f1611bc4565b34801561093457600080fd5b5061046b60145481565b34801561094a57600080fd5b506000546001600160a01b0316610535565b34801561096857600080fd5b50601a5461049e9060ff1681565b34801561098257600080fd5b506104f16109913660046135cc565b611bdb565b3480156109a257600080fd5b506104f16109b13660046135cc565b611c06565b3480156109c257600080fd5b50610508611c13565b3480156109d757600080fd5b5061046b60165481565b3480156109ed57600080fd5b5061049e6109fc36600461351c565b611c22565b348015610a0d57600080fd5b506104f1610a1c366004613537565b611c6f565b348015610a2d57600080fd5b506104f1610a3c366004613709565b611db5565b348015610a4d57600080fd5b506104f1610a5c3660046135cc565b611ebf565b348015610a6d57600080fd5b506104f1610a7c36600461351c565b611ef8565b348015610a8d57600080fd5b506104f1610a9c36600461364d565b611f78565b348015610aad57600080fd5b506104f1610abc3660046135cc565b611f8c565b348015610acd57600080fd5b506104f1610adc3660046137cc565b611f99565b348015610aed57600080fd5b506104f161203b565b348015610b0257600080fd5b506104f161204f565b348015610b1757600080fd5b50610508610b263660046135cc565b612063565b348015610b3757600080fd5b5061046b6120d0565b348015610b4c57600080fd5b506104f1610b5b36600461351c565b6120ea565b348015610b6c57600080fd5b50610508612113565b348015610b8157600080fd5b506104f1610b90366004613848565b6121a1565b348015610ba157600080fd5b5061046b610bb036600461351c565b6121f8565b348015610bc157600080fd5b5061050861225d565b348015610bd657600080fd5b5061046b600b5481565b348015610bec57600080fd5b506104f1610bfb366004613891565b61226c565b348015610c0c57600080fd5b506104f1610c1b36600461351c565b6122a3565b348015610c2c57600080fd5b50610508612317565b348015610c4157600080fd5b5061049e610c503660046138d0565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b348015610c8a57600080fd5b50610508612337565b348015610c9f57600080fd5b506104f1610cae3660046138fa565b612344565b348015610cbf57600080fd5b506104f1610cce36600461351c565b612366565b348015610cdf57600080fd5b5060175461049e9060ff1681565b348015610cf957600080fd5b5061046b60135481565b348015610d0f57600080fd5b5061049e610d1e366004613537565b6123df565b348015610d2f57600080fd5b5060175461049e90610100900460ff1681565b348015610d4e57600080fd5b506104f1610d5d3660046135cc565b61241f565b6000610d716002546000190190565b905090565b60006001600160e01b031982166380ac58cd60e01b1480610da757506001600160e01b03198216635b5e139f60e01b145b80610dc257506001600160e01b0319821663780e9d6360e01b145b80610ddd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60115460ff1615610e075760405163380ea98360e21b815260040160405180910390fd5b80610e255760405163b562e8dd60e01b815260040160405180910390fd5b600354811115610e48576040516393eeb41560e01b815260040160405180910390fd5b601a5460ff16610e6b576040516316851fc760e11b815260040160405180910390fd5b610e7582826123df565b610e92576040516366be767160e11b815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081610ebc610d62565b610ec6919061392d565b1115610ee55760405163a4875a4960e01b815260040160405180910390fd5b610ef834610ef38385611216565b61244a565b610f155760405163078d696560e31b815260040160405180910390fd5b610f1d612470565b610f29828260006124b2565b5050565b606060048054610f3c90613945565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6890613945565b8015610fb55780601f10610f8a57610100808354040283529160200191610fb5565b820191906000526020600020905b815481529060010190602001808311610f9857829003601f168201915b5050505050905090565b6000610fca826124cd565b6110315760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600860205260409020546001600160a01b031690565b81611057816124e3565b600061106283611a53565b9050806001600160a01b0316846001600160a01b031614156110d15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401611028565b6001600160a01b0384166000908152600a602052604090205460ff161561110b5760405163d947c35f60e01b815260040160405180910390fd5b336001600160a01b038216148061112757506111278133610c50565b6111995760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401611028565b6111a48484836125ab565b50505050565b826daaeb6d7670e522a718067333cd4e3b156111ea576001600160a01b0381163314156111e1576111dc848484612607565b6111a4565b6111ea81612989565b6111a4848484612607565b600f818154811061120557600080fd5b600091825260209091200154905081565b600082611236576040516363868c5560e11b815260040160405180910390fd5b60175460ff161580611251575060165461124f83612abc565b115b1561127857601354836014546112679190613980565b611271919061392d565b9050610ddd565b60008361128484612abc565b61128e919061392d565b905060165481116112bc57601354846015546112aa9190613980565b6112b4919061392d565b915050610ddd565b60006112c784612abc565b6016546112d4919061399f565b90506000601654836112e6919061399f565b9050601354816014546112f99190613980565b836015546113079190613980565b611311919061392d565b61131b919061392d565b9695505050505050565b600061133083611a7c565b82106113895760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401611028565b6000611393610d62565b905060008060005b8381101561143d576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156113ee57805192505b876001600160a01b0316836001600160a01b0316141561142a578684141561141c57509350610ddd92505050565b83611426816139b6565b9450505b5080611435816139b6565b91505061139b565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401611028565b6114a5612b5a565b601a805460ff19169055565b6114b9612b5a565b806114d75760405163b562e8dd60e01b815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081611501610d62565b61150b919061392d565b111561152a5760405163a4875a4960e01b815260040160405180910390fd5b610f29828260016124b2565b826daaeb6d7670e522a718067333cd4e3b15611581576001600160a01b038116331415611578576111dc84848460405180602001604052806000815250611f99565b61158181612989565b6111a484848460405180602001604052806000815250611f99565b6115a4612bdf565b6001600160a01b0381166115ca5760405162afb37360e31b815260040160405180910390fd5b6115d381611c22565b156115f157604051631002377360e01b815260040160405180910390fd5b6001600160a01b03166000908152600160208190526040909120805460ff19169091179055565b611620612b5a565b6001600160a01b03166000908152600c60205260409020805460ff19166001179055565b600061164e610d62565b82106116a85760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401611028565b5090565b6116b4612b5a565b806116d2576040516363868c5560e11b815260040160405180910390fd5b600355565b6116df612b5a565b6116eb601883836133c4565b505050565b8161170e5760405163b562e8dd60e01b815260040160405180910390fd5b600354821115611731576040516393eeb41560e01b815260040160405180910390fd5b601a5460ff16611754576040516316851fc760e11b815260040160405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008261177e610d62565b611788919061392d565b11156117a75760405163a4875a4960e01b815260040160405180910390fd5b6117b183836123df565b6117ce576040516366be767160e11b815260040160405180910390fd5b60135434146117f05760405163078d696560e31b815260040160405180910390fd5b611817816001600160a01b03166000908152600c602052604090205460ff16151560011490565b61183457604051636c501c9960e11b815260040160405180910390fd5b600082611840836121f8565b61184a9190613980565b6040516370a0823160e01b81526001600160a01b03868116600483015291925083918391908316906370a082319060240160206040518083038186803b15801561189357600080fd5b505afa1580156118a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118cb91906139d1565b10156118ea57604051631642df1760e21b815260040160405180910390fd5b604051636eb1769f60e11b81526001600160a01b03868116600483015230602483015283919083169063dd62ed3e9060440160206040518083038186803b15801561193457600080fd5b505afa158015611948573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061196c91906139d1565b101561198b5760405163017e286b60e51b815260040160405180910390fd5b6040516323b872dd60e01b81526001600160a01b03868116600483015230602483015260448201849052600091908316906323b872dd90606401602060405180830381600087803b1580156119df57600080fd5b505af11580156119f3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a1791906139ea565b905080611a3757604051633c9fd93960e21b815260040160405180910390fd5b611a3f612470565b611a4b868660006124b2565b505050505050565b6000611a5e82612c39565b5192915050565b611a6d612b5a565b601a805460ff19166001179055565b60006001600160a01b038216611ae85760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401611028565b506001600160a01b03166000908152600760205260409020546001600160801b031690565b611b15612bdf565b611b1f6000612d69565b565b611b29612b5a565b6017805460ff19166001179055565b611b40612b5a565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b611b73612b5a565b47611b91576040516363868c5560e11b815260040160405180910390fd5b611b1f47612db9565b600d8181548110611baa57600080fd5b6000918252602090912001546001600160a01b0316905081565b611bcc612b5a565b6011805460ff19166001179055565b611be3612b5a565b80611c01576040516363868c5560e11b815260040160405180910390fd5b601b55565b611c0e612b5a565b601455565b606060058054610f3c90613945565b60006001600160a01b038216611c4a5760405162afb37360e31b815260040160405180910390fd5b506001600160a01b031660009081526001602081905260409091205460ff1615151490565b611c77612b5a565b80611c95576040516363868c5560e11b815260040160405180910390fd5b6040516370a0823160e01b8152306004820152829082906001600160a01b038316906370a082319060240160206040518083038186803b158015611cd857600080fd5b505afa158015611cec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d1091906139d1565b1015611d2f57604051631642df1760e21b815260040160405180910390fd5b600e5460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018490529082169063a9059cbb90604401602060405180830381600087803b158015611d7d57600080fd5b505af1158015611d91573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111a491906139ea565b81611dbf816124e3565b6001600160a01b038316331415611e185760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401611028565b6001600160a01b0383166000908152600a602052604090205460ff1615611e525760405163d947c35f60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03881680855290835292819020805460ff191687151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b3373a9dac8f3aedc55d0fe707b86b8a45d246858d2e114611ef357604051639b96b05160e01b815260040160405180910390fd5b601355565b611f00612b5a565b6001600160a01b038116611f27576040516322646a9760e21b815260040160405180910390fd5b600e546001600160a01b0382811691161415611f565760405163a28a88c160e01b815260040160405180910390fd5b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b611f80612b5a565b6116eb601983836133c4565b611f94612b5a565b601555565b836daaeb6d7670e522a718067333cd4e3b15612001576001600160a01b038116331415611ff857611fcb858585612607565b611fd785858585612e46565b611ff35760405162461bcd60e51b815260040161102890613a07565b612034565b61200181612989565b61200c858585612607565b61201885858585612e46565b6120345760405162461bcd60e51b815260040161102890613a07565b5050505050565b612043612b5a565b6011805460ff19169055565b612057612b5a565b6017805460ff19169055565b6060600061206f61225d565b9050600061207b612f53565b9050600082511161209b57604051806020016040528060008152506120c8565b816120a585612f62565b826040516020016120b893929190613a5a565b6040516020818303038152906040525b949350505050565b60006120df6002546000190190565b610d7190600161392d565b6120f2612b5a565b6001600160a01b03166000908152600c60205260409020805460ff19169055565b6018805461212090613945565b80601f016020809104026020016040519081016040528092919081815260200182805461214c90613945565b80156121995780601f1061216e57610100808354040283529160200191612199565b820191906000526020600020905b81548152906001019060200180831161217c57829003601f168201915b505050505081565b6121a9612b5a565b601a54610100900460ff16156121d257604051635431b2e560e11b815260040160405180910390fd5b80516121e5906018906020840190613444565b5050601a805461ff001916610100179055565b6000612221826001600160a01b03166000908152600c602052604090205460ff16151560011490565b61223e57604051636c501c9960e11b815260040160405180910390fd5b506001600160a01b03166000908152600c602052604090206001015490565b606060188054610f3c90613945565b612274612b5a565b6001600160a01b03929092166000908152600c60205260409020805460ff191691151591909117815560010155565b6122ab612bdf565b6001600160a01b0381166122d15760405162afb37360e31b815260040160405180910390fd5b6122da81611c22565b6122f65760405162afb37360e31b815260040160405180910390fd5b6001600160a01b03166000908152600160205260409020805460ff19169055565b6060604051806080016040528060448152602001613b9560449139905090565b6019805461212090613945565b61234c612b5a565b601780549115156101000261ff0019909216919091179055565b61236e612bdf565b6001600160a01b0381166123d35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611028565b6123dc81612d69565b50565b6000816123ff576040516363868c5560e11b815260040160405180910390fd5b601b548261240c85612abc565b612416919061392d565b11159392505050565b612427612b5a565b80612445576040516363868c5560e11b815260040160405180910390fd5b601655565b601754600090610100900460ff166124655781831015612469565b8183145b9392505050565b60135460405173a9dac8f3aedc55d0fe707b86b8a45d246858d2e19180156108fc02916000818181858888f193505050501580156123dc573d6000803e3d6000fd5b6116eb83838360405180602001604052806000815250613060565b600081600111158015610ddd5750506002541190565b6daaeb6d7670e522a718067333cd4e3b156123dc57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b15801561254b57600080fd5b505afa15801561255f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061258391906139ea565b6123dc57604051633b79c77360e21b81526001600160a01b0382166004820152602401611028565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061261282612c39565b80519091506000906001600160a01b0316336001600160a01b0316148061264957503361263e84610fbf565b6001600160a01b0316145b8061265b5750815161265b9033610c50565b9050806126c55760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401611028565b846001600160a01b031682600001516001600160a01b0316146127395760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401611028565b6001600160a01b03841661279d5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401611028565b6127ad60008484600001516125ab565b6001600160a01b03851660009081526007602052604081208054600192906127df9084906001600160801b0316613a9d565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600760205260408120805460019450909261282b91859116613ac5565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526006909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556128b384600161392d565b6000818152600660205260409020549091506001600160a01b0316612943576128db816124cd565b156129435760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600690935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a4b565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b1580156129d357600080fd5b505afa1580156129e7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a0b91906139ea565b8015612a9d5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b158015612a6557600080fd5b505afa158015612a79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a9d91906139ea565b6123dc57604051633b79c77360e21b8152336004820152602401611028565b60006001600160a01b038216612b2e5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401611028565b506001600160a01b0316600090815260076020526040902054600160801b90046001600160801b031690565b600080546001600160a01b0316339081149190612b7690611c22565b90508180612b815750805b610f295760405162461bcd60e51b815260206004820152602960248201527f5465616d3a2063616c6c6572206973206e6f7420746865206f776e6572206f726044820152681034b7102a32b0b69760b91b6064820152608401611028565b6000546001600160a01b03163314611b1f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611028565b60408051808201909152600080825260208201528180600111158015612c60575060025481105b15612d09576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215612cb2579392505050565b50600019016000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215612d04579392505050565b612cb2565b60405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401611028565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60005b601054811015610f2957612e34600d8281548110612ddc57612ddc613af0565b9060005260206000200160009054906101000a90046001600160a01b03166064600f8481548110612e0f57612e0f613af0565b906000526020600020015485612e259190613980565b612e2f9190613b1c565b61332e565b80612e3e816139b6565b915050612dbc565b60006001600160a01b0384163b15612f4857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612e8a903390899088908890600401613b30565b602060405180830381600087803b158015612ea457600080fd5b505af1925050508015612ed4575060408051601f3d908101601f19168201909252612ed191810190613b63565b60015b612f2e573d808015612f02576040519150601f19603f3d011682016040523d82523d6000602084013e612f07565b606091505b508051612f265760405162461bcd60e51b815260040161102890613a07565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120c8565b506001949350505050565b606060198054610f3c90613945565b606081612f865750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612fb05780612f9a816139b6565b9150612fa99050600a83613b1c565b9150612f8a565b60008167ffffffffffffffff811115612fcb57612fcb613740565b6040519080825280601f01601f191660200182016040528015612ff5576020820181803683370190505b5090505b84156120c85761300a60018361399f565b9150613017600a86613b80565b61302290603061392d565b60f81b81838151811061303757613037613af0565b60200101906001600160f81b031916908160001a905350613059600a86613b1c565b9450612ff9565b6002546001600160a01b0385166130c35760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401611028565b6130cc816124cd565b156131195760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401611028565b8261317b5760035484111561317b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401611028565b6001600160a01b0385166000908152600760209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906131d7908890613ac5565b6001600160801b03168152602001856131f057866131f3565b60005b83602001516132029190613ac5565b6001600160801b039081169091526001600160a01b0380891660008181526007602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526006909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b868110156133225760405182906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46132e66000898488612e46565b6133025760405162461bcd60e51b815260040161102890613a07565b8161330c816139b6565b925050808061331a906139b6565b915050613299565b50600255505050505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461337b576040519150601f19603f3d011682016040523d82523d6000602084013e613380565b606091505b50509050806116eb5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401611028565b8280546133d090613945565b90600052602060002090601f0160209004810192826133f25760008555613438565b82601f1061340b5782800160ff19823516178555613438565b82800160010185558215613438579182015b8281111561343857823582559160200191906001019061341d565b506116a89291506134b8565b82805461345090613945565b90600052602060002090601f0160209004810192826134725760008555613438565b82601f1061348b57805160ff1916838001178555613438565b82800160010185558215613438579182015b8281111561343857825182559160200191906001019061349d565b5b808211156116a857600081556001016134b9565b6001600160e01b0319811681146123dc57600080fd5b6000602082840312156134f557600080fd5b8135612469816134cd565b80356001600160a01b038116811461351757600080fd5b919050565b60006020828403121561352e57600080fd5b61246982613500565b6000806040838503121561354a57600080fd5b61355383613500565b946020939093013593505050565b60005b8381101561357c578181015183820152602001613564565b838111156111a45750506000910152565b600081518084526135a5816020860160208601613561565b601f01601f19169290920160200192915050565b602081526000612469602083018461358d565b6000602082840312156135de57600080fd5b5035919050565b6000806000606084860312156135fa57600080fd5b61360384613500565b925061361160208501613500565b9150604084013590509250925092565b6000806040838503121561363457600080fd5b8235915061364460208401613500565b90509250929050565b6000806020838503121561366057600080fd5b823567ffffffffffffffff8082111561367857600080fd5b818501915085601f83011261368c57600080fd5b81358181111561369b57600080fd5b8660208285010111156136ad57600080fd5b60209290920196919550909350505050565b6000806000606084860312156136d457600080fd5b6136dd84613500565b9250602084013591506136f260408501613500565b90509250925092565b80151581146123dc57600080fd5b6000806040838503121561371c57600080fd5b61372583613500565b91506020830135613735816136fb565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561377157613771613740565b604051601f8501601f19908116603f0116810190828211818310171561379957613799613740565b816040528093508581528686860111156137b257600080fd5b858560208301376000602087830101525050509392505050565b600080600080608085870312156137e257600080fd5b6137eb85613500565b93506137f960208601613500565b925060408501359150606085013567ffffffffffffffff81111561381c57600080fd5b8501601f8101871361382d57600080fd5b61383c87823560208401613756565b91505092959194509250565b60006020828403121561385a57600080fd5b813567ffffffffffffffff81111561387157600080fd5b8201601f8101841361388257600080fd5b6120c884823560208401613756565b6000806000606084860312156138a657600080fd5b6138af84613500565b925060208401356138bf816136fb565b929592945050506040919091013590565b600080604083850312156138e357600080fd5b6138ec83613500565b915061364460208401613500565b60006020828403121561390c57600080fd5b8135612469816136fb565b634e487b7160e01b600052601160045260246000fd5b6000821982111561394057613940613917565b500190565b600181811c9082168061395957607f821691505b6020821081141561397a57634e487b7160e01b600052602260045260246000fd5b50919050565b600081600019048311821515161561399a5761399a613917565b500290565b6000828210156139b1576139b1613917565b500390565b60006000198214156139ca576139ca613917565b5060010190565b6000602082840312156139e357600080fd5b5051919050565b6000602082840312156139fc57600080fd5b8151612469816136fb565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008451613a6c818460208901613561565b845190830190613a80818360208901613561565b8451910190613a93818360208801613561565b0195945050505050565b60006001600160801b0383811690831681811015613abd57613abd613917565b039392505050565b60006001600160801b03808316818516808303821115613ae757613ae7613917565b01949350505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b600082613b2b57613b2b613b06565b500490565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061131b9083018461358d565b600060208284031215613b7557600080fd5b8151612469816134cd565b600082613b8f57613b8f613b06565b50069056fe68747470733a2f2f6d657461646174612e6d696e74706c65782e78797a2f4c43596f35764834594b593233616e796a4673782f636f6e74726163742d6d65746164617461a2646970667358221220e0f2e979188af5bb81f39417c38d1e9f6676da9e065ffb9e85c0a2b772ba899364736f6c63430008090033697066733a2f2f62616679626569646c73636962343277766e776835747432616f76653635327867616675666932797576643276716a7334626b73616279376a76712f

Deployed Bytecode

0x6080604052600436106104515760003560e01c8063891bbe731161023f578063c87b56dd11610139578063e8a3d485116100b6578063f4637a151161007a578063f4637a1514610cd3578063f623bb8b14610ced578063fd19eaf014610d03578063fe6757a114610d23578063ff33274514610d4257600080fd5b8063e8a3d48514610c20578063e985e9c514610c35578063ec34082614610c7e578063ed77e19f14610c93578063f2fde38b14610cb357600080fd5b8063d266f3a9116100fd578063d266f3a914610b95578063d547cfb714610bb5578063d7224ba014610bca578063d83ae33214610be0578063dfdedf6914610c0057600080fd5b8063c87b56dd14610b0b578063caa0f92a14610b2b578063cacf084214610b40578063cfc86f7b14610b60578063cff4492314610b7557600080fd5b8063a1af10ca116101c7578063aff3e10b1161018b578063aff3e10b14610a81578063b4835e0714610aa1578063b88d4fde14610ac1578063b94b237614610ae1578063c54826ab14610af657600080fd5b8063a1af10ca146109e1578063a1db978214610a01578063a22cb46514610a21578063a7593fb714610a41578063a91bd1a914610a6157600080fd5b80638f4bb4971161020e5780638f4bb4971461095c5780638ff4013f1461097657806391b7f5ed1461099657806395d89b41146109b6578063a030fd8f146109cb57600080fd5b8063891bbe73146108f357806389f26d58146109135780638d859f3e146109285780638da5cb5b1461093e57600080fd5b806343696f181161035057806360986a71116102d8578063715018a61161029c578063715018a6146108745780637fb8c6d314610889578063817c0d9c146108a957806383c81c41146108be578063853828b6146108de57600080fd5b806360986a71146107f65780636352211e1461080957806367dec678146108295780636ba9fd381461083f57806370a082311461085457600080fd5b80634ab8b5dd1161031f5780634ab8b5dd146107615780634f6ccce71461077757806354214f6914610797578063547520fe146107b657806355f804b3146107d657600080fd5b806343696f18146106d357806345c0f533146106f3578063464c34281461072757806346f41ed51461074757600080fd5b8063286c8137116103de5780633d3f9c57116103a25780633d3f9c571461062a5780633e07311c146106685780633e3e0b121461067e57806340ccc0821461069357806342842e0e146106b357600080fd5b8063286c81371461058d5780632913daa0146105ad5780632b57cfbb146105c35780632f745c59146105e357806338b903331461060357600080fd5b806306fdde031161042557806306fdde03146104f3578063081812fc14610515578063095ea7b31461054d57806318160ddd1461045657806323b872dd1461056d57600080fd5b80629a9b7b1461045657806301ffc9a71461047e578063043a2a40146104ae5780630644cefa146104de575b600080fd5b34801561046257600080fd5b5061046b610d62565b6040519081526020015b60405180910390f35b34801561048a57600080fd5b5061049e6104993660046134e3565b610d76565b6040519015158152602001610475565b3480156104ba57600080fd5b5061049e6104c936600461351c565b600a6020526000908152604090205460ff1681565b6104f16104ec366004613537565b610de3565b005b3480156104ff57600080fd5b50610508610f2d565b60405161047591906135b9565b34801561052157600080fd5b506105356105303660046135cc565b610fbf565b6040516001600160a01b039091168152602001610475565b34801561055957600080fd5b506104f1610568366004613537565b61104d565b34801561057957600080fd5b506104f16105883660046135e5565b6111aa565b34801561059957600080fd5b5061046b6105a83660046135cc565b6111f5565b3480156105b957600080fd5b5061046b60035481565b3480156105cf57600080fd5b5061046b6105de366004613621565b611216565b3480156105ef57600080fd5b5061046b6105fe366004613537565b611325565b34801561060f57600080fd5b50610618600281565b60405160ff9091168152602001610475565b34801561063657600080fd5b5061049e61064536600461351c565b6001600160a01b03166000908152600c602052604090205460ff16151560011490565b34801561067457600080fd5b5061046b60105481565b34801561068a57600080fd5b506104f161149d565b34801561069f57600080fd5b506104f16106ae366004613537565b6114b1565b3480156106bf57600080fd5b506104f16106ce3660046135e5565b611536565b3480156106df57600080fd5b506104f16106ee36600461351c565b61159c565b3480156106ff57600080fd5b5061046b7f00000000000000000000000000000000000000000000000000000000000010e181565b34801561073357600080fd5b506104f161074236600461351c565b611618565b34801561075357600080fd5b5060115461049e9060ff1681565b34801561076d57600080fd5b5061046b601b5481565b34801561078357600080fd5b5061046b6107923660046135cc565b611644565b3480156107a357600080fd5b50601a5461049e90610100900460ff1681565b3480156107c257600080fd5b506104f16107d13660046135cc565b6116ac565b3480156107e257600080fd5b506104f16107f136600461364d565b6116d7565b6104f16108043660046136bf565b6116f0565b34801561081557600080fd5b506105356108243660046135cc565b611a53565b34801561083557600080fd5b5061046b60155481565b34801561084b57600080fd5b506104f1611a65565b34801561086057600080fd5b5061046b61086f36600461351c565b611a7c565b34801561088057600080fd5b506104f1611b0d565b34801561089557600080fd5b50600e54610535906001600160a01b031681565b3480156108b557600080fd5b506104f1611b21565b3480156108ca57600080fd5b506104f16108d9366004613709565b611b38565b3480156108ea57600080fd5b506104f1611b6b565b3480156108ff57600080fd5b5061053561090e3660046135cc565b611b9a565b34801561091f57600080fd5b506104f1611bc4565b34801561093457600080fd5b5061046b60145481565b34801561094a57600080fd5b506000546001600160a01b0316610535565b34801561096857600080fd5b50601a5461049e9060ff1681565b34801561098257600080fd5b506104f16109913660046135cc565b611bdb565b3480156109a257600080fd5b506104f16109b13660046135cc565b611c06565b3480156109c257600080fd5b50610508611c13565b3480156109d757600080fd5b5061046b60165481565b3480156109ed57600080fd5b5061049e6109fc36600461351c565b611c22565b348015610a0d57600080fd5b506104f1610a1c366004613537565b611c6f565b348015610a2d57600080fd5b506104f1610a3c366004613709565b611db5565b348015610a4d57600080fd5b506104f1610a5c3660046135cc565b611ebf565b348015610a6d57600080fd5b506104f1610a7c36600461351c565b611ef8565b348015610a8d57600080fd5b506104f1610a9c36600461364d565b611f78565b348015610aad57600080fd5b506104f1610abc3660046135cc565b611f8c565b348015610acd57600080fd5b506104f1610adc3660046137cc565b611f99565b348015610aed57600080fd5b506104f161203b565b348015610b0257600080fd5b506104f161204f565b348015610b1757600080fd5b50610508610b263660046135cc565b612063565b348015610b3757600080fd5b5061046b6120d0565b348015610b4c57600080fd5b506104f1610b5b36600461351c565b6120ea565b348015610b6c57600080fd5b50610508612113565b348015610b8157600080fd5b506104f1610b90366004613848565b6121a1565b348015610ba157600080fd5b5061046b610bb036600461351c565b6121f8565b348015610bc157600080fd5b5061050861225d565b348015610bd657600080fd5b5061046b600b5481565b348015610bec57600080fd5b506104f1610bfb366004613891565b61226c565b348015610c0c57600080fd5b506104f1610c1b36600461351c565b6122a3565b348015610c2c57600080fd5b50610508612317565b348015610c4157600080fd5b5061049e610c503660046138d0565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b348015610c8a57600080fd5b50610508612337565b348015610c9f57600080fd5b506104f1610cae3660046138fa565b612344565b348015610cbf57600080fd5b506104f1610cce36600461351c565b612366565b348015610cdf57600080fd5b5060175461049e9060ff1681565b348015610cf957600080fd5b5061046b60135481565b348015610d0f57600080fd5b5061049e610d1e366004613537565b6123df565b348015610d2f57600080fd5b5060175461049e90610100900460ff1681565b348015610d4e57600080fd5b506104f1610d5d3660046135cc565b61241f565b6000610d716002546000190190565b905090565b60006001600160e01b031982166380ac58cd60e01b1480610da757506001600160e01b03198216635b5e139f60e01b145b80610dc257506001600160e01b0319821663780e9d6360e01b145b80610ddd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60115460ff1615610e075760405163380ea98360e21b815260040160405180910390fd5b80610e255760405163b562e8dd60e01b815260040160405180910390fd5b600354811115610e48576040516393eeb41560e01b815260040160405180910390fd5b601a5460ff16610e6b576040516316851fc760e11b815260040160405180910390fd5b610e7582826123df565b610e92576040516366be767160e11b815260040160405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000010e181610ebc610d62565b610ec6919061392d565b1115610ee55760405163a4875a4960e01b815260040160405180910390fd5b610ef834610ef38385611216565b61244a565b610f155760405163078d696560e31b815260040160405180910390fd5b610f1d612470565b610f29828260006124b2565b5050565b606060048054610f3c90613945565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6890613945565b8015610fb55780601f10610f8a57610100808354040283529160200191610fb5565b820191906000526020600020905b815481529060010190602001808311610f9857829003601f168201915b5050505050905090565b6000610fca826124cd565b6110315760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600860205260409020546001600160a01b031690565b81611057816124e3565b600061106283611a53565b9050806001600160a01b0316846001600160a01b031614156110d15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401611028565b6001600160a01b0384166000908152600a602052604090205460ff161561110b5760405163d947c35f60e01b815260040160405180910390fd5b336001600160a01b038216148061112757506111278133610c50565b6111995760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401611028565b6111a48484836125ab565b50505050565b826daaeb6d7670e522a718067333cd4e3b156111ea576001600160a01b0381163314156111e1576111dc848484612607565b6111a4565b6111ea81612989565b6111a4848484612607565b600f818154811061120557600080fd5b600091825260209091200154905081565b600082611236576040516363868c5560e11b815260040160405180910390fd5b60175460ff161580611251575060165461124f83612abc565b115b1561127857601354836014546112679190613980565b611271919061392d565b9050610ddd565b60008361128484612abc565b61128e919061392d565b905060165481116112bc57601354846015546112aa9190613980565b6112b4919061392d565b915050610ddd565b60006112c784612abc565b6016546112d4919061399f565b90506000601654836112e6919061399f565b9050601354816014546112f99190613980565b836015546113079190613980565b611311919061392d565b61131b919061392d565b9695505050505050565b600061133083611a7c565b82106113895760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401611028565b6000611393610d62565b905060008060005b8381101561143d576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156113ee57805192505b876001600160a01b0316836001600160a01b0316141561142a578684141561141c57509350610ddd92505050565b83611426816139b6565b9450505b5080611435816139b6565b91505061139b565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401611028565b6114a5612b5a565b601a805460ff19169055565b6114b9612b5a565b806114d75760405163b562e8dd60e01b815260040160405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000010e181611501610d62565b61150b919061392d565b111561152a5760405163a4875a4960e01b815260040160405180910390fd5b610f29828260016124b2565b826daaeb6d7670e522a718067333cd4e3b15611581576001600160a01b038116331415611578576111dc84848460405180602001604052806000815250611f99565b61158181612989565b6111a484848460405180602001604052806000815250611f99565b6115a4612bdf565b6001600160a01b0381166115ca5760405162afb37360e31b815260040160405180910390fd5b6115d381611c22565b156115f157604051631002377360e01b815260040160405180910390fd5b6001600160a01b03166000908152600160208190526040909120805460ff19169091179055565b611620612b5a565b6001600160a01b03166000908152600c60205260409020805460ff19166001179055565b600061164e610d62565b82106116a85760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401611028565b5090565b6116b4612b5a565b806116d2576040516363868c5560e11b815260040160405180910390fd5b600355565b6116df612b5a565b6116eb601883836133c4565b505050565b8161170e5760405163b562e8dd60e01b815260040160405180910390fd5b600354821115611731576040516393eeb41560e01b815260040160405180910390fd5b601a5460ff16611754576040516316851fc760e11b815260040160405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000010e18261177e610d62565b611788919061392d565b11156117a75760405163a4875a4960e01b815260040160405180910390fd5b6117b183836123df565b6117ce576040516366be767160e11b815260040160405180910390fd5b60135434146117f05760405163078d696560e31b815260040160405180910390fd5b611817816001600160a01b03166000908152600c602052604090205460ff16151560011490565b61183457604051636c501c9960e11b815260040160405180910390fd5b600082611840836121f8565b61184a9190613980565b6040516370a0823160e01b81526001600160a01b03868116600483015291925083918391908316906370a082319060240160206040518083038186803b15801561189357600080fd5b505afa1580156118a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118cb91906139d1565b10156118ea57604051631642df1760e21b815260040160405180910390fd5b604051636eb1769f60e11b81526001600160a01b03868116600483015230602483015283919083169063dd62ed3e9060440160206040518083038186803b15801561193457600080fd5b505afa158015611948573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061196c91906139d1565b101561198b5760405163017e286b60e51b815260040160405180910390fd5b6040516323b872dd60e01b81526001600160a01b03868116600483015230602483015260448201849052600091908316906323b872dd90606401602060405180830381600087803b1580156119df57600080fd5b505af11580156119f3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a1791906139ea565b905080611a3757604051633c9fd93960e21b815260040160405180910390fd5b611a3f612470565b611a4b868660006124b2565b505050505050565b6000611a5e82612c39565b5192915050565b611a6d612b5a565b601a805460ff19166001179055565b60006001600160a01b038216611ae85760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401611028565b506001600160a01b03166000908152600760205260409020546001600160801b031690565b611b15612bdf565b611b1f6000612d69565b565b611b29612b5a565b6017805460ff19166001179055565b611b40612b5a565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b611b73612b5a565b47611b91576040516363868c5560e11b815260040160405180910390fd5b611b1f47612db9565b600d8181548110611baa57600080fd5b6000918252602090912001546001600160a01b0316905081565b611bcc612b5a565b6011805460ff19166001179055565b611be3612b5a565b80611c01576040516363868c5560e11b815260040160405180910390fd5b601b55565b611c0e612b5a565b601455565b606060058054610f3c90613945565b60006001600160a01b038216611c4a5760405162afb37360e31b815260040160405180910390fd5b506001600160a01b031660009081526001602081905260409091205460ff1615151490565b611c77612b5a565b80611c95576040516363868c5560e11b815260040160405180910390fd5b6040516370a0823160e01b8152306004820152829082906001600160a01b038316906370a082319060240160206040518083038186803b158015611cd857600080fd5b505afa158015611cec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d1091906139d1565b1015611d2f57604051631642df1760e21b815260040160405180910390fd5b600e5460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018490529082169063a9059cbb90604401602060405180830381600087803b158015611d7d57600080fd5b505af1158015611d91573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111a491906139ea565b81611dbf816124e3565b6001600160a01b038316331415611e185760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401611028565b6001600160a01b0383166000908152600a602052604090205460ff1615611e525760405163d947c35f60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03881680855290835292819020805460ff191687151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b3373a9dac8f3aedc55d0fe707b86b8a45d246858d2e114611ef357604051639b96b05160e01b815260040160405180910390fd5b601355565b611f00612b5a565b6001600160a01b038116611f27576040516322646a9760e21b815260040160405180910390fd5b600e546001600160a01b0382811691161415611f565760405163a28a88c160e01b815260040160405180910390fd5b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b611f80612b5a565b6116eb601983836133c4565b611f94612b5a565b601555565b836daaeb6d7670e522a718067333cd4e3b15612001576001600160a01b038116331415611ff857611fcb858585612607565b611fd785858585612e46565b611ff35760405162461bcd60e51b815260040161102890613a07565b612034565b61200181612989565b61200c858585612607565b61201885858585612e46565b6120345760405162461bcd60e51b815260040161102890613a07565b5050505050565b612043612b5a565b6011805460ff19169055565b612057612b5a565b6017805460ff19169055565b6060600061206f61225d565b9050600061207b612f53565b9050600082511161209b57604051806020016040528060008152506120c8565b816120a585612f62565b826040516020016120b893929190613a5a565b6040516020818303038152906040525b949350505050565b60006120df6002546000190190565b610d7190600161392d565b6120f2612b5a565b6001600160a01b03166000908152600c60205260409020805460ff19169055565b6018805461212090613945565b80601f016020809104026020016040519081016040528092919081815260200182805461214c90613945565b80156121995780601f1061216e57610100808354040283529160200191612199565b820191906000526020600020905b81548152906001019060200180831161217c57829003601f168201915b505050505081565b6121a9612b5a565b601a54610100900460ff16156121d257604051635431b2e560e11b815260040160405180910390fd5b80516121e5906018906020840190613444565b5050601a805461ff001916610100179055565b6000612221826001600160a01b03166000908152600c602052604090205460ff16151560011490565b61223e57604051636c501c9960e11b815260040160405180910390fd5b506001600160a01b03166000908152600c602052604090206001015490565b606060188054610f3c90613945565b612274612b5a565b6001600160a01b03929092166000908152600c60205260409020805460ff191691151591909117815560010155565b6122ab612bdf565b6001600160a01b0381166122d15760405162afb37360e31b815260040160405180910390fd5b6122da81611c22565b6122f65760405162afb37360e31b815260040160405180910390fd5b6001600160a01b03166000908152600160205260409020805460ff19169055565b6060604051806080016040528060448152602001613b9560449139905090565b6019805461212090613945565b61234c612b5a565b601780549115156101000261ff0019909216919091179055565b61236e612bdf565b6001600160a01b0381166123d35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611028565b6123dc81612d69565b50565b6000816123ff576040516363868c5560e11b815260040160405180910390fd5b601b548261240c85612abc565b612416919061392d565b11159392505050565b612427612b5a565b80612445576040516363868c5560e11b815260040160405180910390fd5b601655565b601754600090610100900460ff166124655781831015612469565b8183145b9392505050565b60135460405173a9dac8f3aedc55d0fe707b86b8a45d246858d2e19180156108fc02916000818181858888f193505050501580156123dc573d6000803e3d6000fd5b6116eb83838360405180602001604052806000815250613060565b600081600111158015610ddd5750506002541190565b6daaeb6d7670e522a718067333cd4e3b156123dc57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b15801561254b57600080fd5b505afa15801561255f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061258391906139ea565b6123dc57604051633b79c77360e21b81526001600160a01b0382166004820152602401611028565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061261282612c39565b80519091506000906001600160a01b0316336001600160a01b0316148061264957503361263e84610fbf565b6001600160a01b0316145b8061265b5750815161265b9033610c50565b9050806126c55760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401611028565b846001600160a01b031682600001516001600160a01b0316146127395760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401611028565b6001600160a01b03841661279d5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401611028565b6127ad60008484600001516125ab565b6001600160a01b03851660009081526007602052604081208054600192906127df9084906001600160801b0316613a9d565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600760205260408120805460019450909261282b91859116613ac5565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526006909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556128b384600161392d565b6000818152600660205260409020549091506001600160a01b0316612943576128db816124cd565b156129435760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600690935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a4b565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b1580156129d357600080fd5b505afa1580156129e7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a0b91906139ea565b8015612a9d5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b158015612a6557600080fd5b505afa158015612a79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a9d91906139ea565b6123dc57604051633b79c77360e21b8152336004820152602401611028565b60006001600160a01b038216612b2e5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401611028565b506001600160a01b0316600090815260076020526040902054600160801b90046001600160801b031690565b600080546001600160a01b0316339081149190612b7690611c22565b90508180612b815750805b610f295760405162461bcd60e51b815260206004820152602960248201527f5465616d3a2063616c6c6572206973206e6f7420746865206f776e6572206f726044820152681034b7102a32b0b69760b91b6064820152608401611028565b6000546001600160a01b03163314611b1f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611028565b60408051808201909152600080825260208201528180600111158015612c60575060025481105b15612d09576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215612cb2579392505050565b50600019016000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215612d04579392505050565b612cb2565b60405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401611028565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60005b601054811015610f2957612e34600d8281548110612ddc57612ddc613af0565b9060005260206000200160009054906101000a90046001600160a01b03166064600f8481548110612e0f57612e0f613af0565b906000526020600020015485612e259190613980565b612e2f9190613b1c565b61332e565b80612e3e816139b6565b915050612dbc565b60006001600160a01b0384163b15612f4857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612e8a903390899088908890600401613b30565b602060405180830381600087803b158015612ea457600080fd5b505af1925050508015612ed4575060408051601f3d908101601f19168201909252612ed191810190613b63565b60015b612f2e573d808015612f02576040519150601f19603f3d011682016040523d82523d6000602084013e612f07565b606091505b508051612f265760405162461bcd60e51b815260040161102890613a07565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120c8565b506001949350505050565b606060198054610f3c90613945565b606081612f865750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612fb05780612f9a816139b6565b9150612fa99050600a83613b1c565b9150612f8a565b60008167ffffffffffffffff811115612fcb57612fcb613740565b6040519080825280601f01601f191660200182016040528015612ff5576020820181803683370190505b5090505b84156120c85761300a60018361399f565b9150613017600a86613b80565b61302290603061392d565b60f81b81838151811061303757613037613af0565b60200101906001600160f81b031916908160001a905350613059600a86613b1c565b9450612ff9565b6002546001600160a01b0385166130c35760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401611028565b6130cc816124cd565b156131195760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401611028565b8261317b5760035484111561317b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401611028565b6001600160a01b0385166000908152600760209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906131d7908890613ac5565b6001600160801b03168152602001856131f057866131f3565b60005b83602001516132029190613ac5565b6001600160801b039081169091526001600160a01b0380891660008181526007602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526006909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b868110156133225760405182906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46132e66000898488612e46565b6133025760405162461bcd60e51b815260040161102890613a07565b8161330c816139b6565b925050808061331a906139b6565b915050613299565b50600255505050505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461337b576040519150601f19603f3d011682016040523d82523d6000602084013e613380565b606091505b50509050806116eb5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401611028565b8280546133d090613945565b90600052602060002090601f0160209004810192826133f25760008555613438565b82601f1061340b5782800160ff19823516178555613438565b82800160010185558215613438579182015b8281111561343857823582559160200191906001019061341d565b506116a89291506134b8565b82805461345090613945565b90600052602060002090601f0160209004810192826134725760008555613438565b82601f1061348b57805160ff1916838001178555613438565b82800160010185558215613438579182015b8281111561343857825182559160200191906001019061349d565b5b808211156116a857600081556001016134b9565b6001600160e01b0319811681146123dc57600080fd5b6000602082840312156134f557600080fd5b8135612469816134cd565b80356001600160a01b038116811461351757600080fd5b919050565b60006020828403121561352e57600080fd5b61246982613500565b6000806040838503121561354a57600080fd5b61355383613500565b946020939093013593505050565b60005b8381101561357c578181015183820152602001613564565b838111156111a45750506000910152565b600081518084526135a5816020860160208601613561565b601f01601f19169290920160200192915050565b602081526000612469602083018461358d565b6000602082840312156135de57600080fd5b5035919050565b6000806000606084860312156135fa57600080fd5b61360384613500565b925061361160208501613500565b9150604084013590509250925092565b6000806040838503121561363457600080fd5b8235915061364460208401613500565b90509250929050565b6000806020838503121561366057600080fd5b823567ffffffffffffffff8082111561367857600080fd5b818501915085601f83011261368c57600080fd5b81358181111561369b57600080fd5b8660208285010111156136ad57600080fd5b60209290920196919550909350505050565b6000806000606084860312156136d457600080fd5b6136dd84613500565b9250602084013591506136f260408501613500565b90509250925092565b80151581146123dc57600080fd5b6000806040838503121561371c57600080fd5b61372583613500565b91506020830135613735816136fb565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561377157613771613740565b604051601f8501601f19908116603f0116810190828211818310171561379957613799613740565b816040528093508581528686860111156137b257600080fd5b858560208301376000602087830101525050509392505050565b600080600080608085870312156137e257600080fd5b6137eb85613500565b93506137f960208601613500565b925060408501359150606085013567ffffffffffffffff81111561381c57600080fd5b8501601f8101871361382d57600080fd5b61383c87823560208401613756565b91505092959194509250565b60006020828403121561385a57600080fd5b813567ffffffffffffffff81111561387157600080fd5b8201601f8101841361388257600080fd5b6120c884823560208401613756565b6000806000606084860312156138a657600080fd5b6138af84613500565b925060208401356138bf816136fb565b929592945050506040919091013590565b600080604083850312156138e357600080fd5b6138ec83613500565b915061364460208401613500565b60006020828403121561390c57600080fd5b8135612469816136fb565b634e487b7160e01b600052601160045260246000fd5b6000821982111561394057613940613917565b500190565b600181811c9082168061395957607f821691505b6020821081141561397a57634e487b7160e01b600052602260045260246000fd5b50919050565b600081600019048311821515161561399a5761399a613917565b500290565b6000828210156139b1576139b1613917565b500390565b60006000198214156139ca576139ca613917565b5060010190565b6000602082840312156139e357600080fd5b5051919050565b6000602082840312156139fc57600080fd5b8151612469816136fb565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008451613a6c818460208901613561565b845190830190613a80818360208901613561565b8451910190613a93818360208801613561565b0195945050505050565b60006001600160801b0383811690831681811015613abd57613abd613917565b039392505050565b60006001600160801b03808316818516808303821115613ae757613ae7613917565b01949350505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b600082613b2b57613b2b613b06565b500490565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061131b9083018461358d565b600060208284031215613b7557600080fd5b8151612469816134cd565b600082613b8f57613b8f613b06565b50069056fe68747470733a2f2f6d657461646174612e6d696e74706c65782e78797a2f4c43596f35764834594b593233616e796a4673782f636f6e74726163742d6d65746164617461a2646970667358221220e0f2e979188af5bb81f39417c38d1e9f6676da9e065ffb9e85c0a2b772ba899364736f6c63430008090033

Deployed Bytecode Sourcemap

71036:96:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38587:90;;;;;;;;;;;;;:::i;:::-;;;160:25:1;;;148:2;133:18;38587:90:0;;;;;;;;40339:370;;;;;;;;;;-1:-1:-1;40339:370:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;40339:370:0;582:187:1;37476:59:0;;;;;;;;;;-1:-1:-1;37476:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;66451:647;;;;;;:::i;:::-;;:::i;:::-;;42404:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;45089:204::-;;;;;;;;;;-1:-1:-1;45089:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2502:32:1;;;2484:51;;2472:2;2457:18;45089:204:0;2338:203:1;44527:504:0;;;;;;;;;;-1:-1:-1;44527:504:0;;;;;:::i;:::-;;:::i;46076:168::-;;;;;;;;;;-1:-1:-1;46076:168:0;;;;;:::i;:::-;;:::i;56176:37::-;;;;;;;;;;-1:-1:-1;56176:37:0;;;;;:::i;:::-;;:::i;36205:27::-;;;;;;;;;;;;;;;;63725:1282;;;;;;;;;;-1:-1:-1;63725:1282:0;;;;;:::i;:::-;;:::i;39531:744::-;;;;;;;;;;-1:-1:-1;39531:744:0;;;;;:::i;:::-;;:::i;65321:42::-;;;;;;;;;;;;65362:1;65321:42;;;;;3310:4:1;3298:17;;;3280:36;;3268:2;3253:18;65321:42:0;3138:184:1;57806:170:0;;;;;;;;;;-1:-1:-1;57806:170:0;;;;;:::i;:::-;-1:-1:-1;;;;;57911:42:0;57891:4;57911:42;;;:21;:42;;;;;:51;;;:59;;:51;:59;;57806:170;56218:38;;;;;;;;;;;;;;;;68753:84;;;;;;;;;;;;;:::i;65938:247::-;;;;;;;;;;-1:-1:-1;65938:247:0;;;;;:::i;:::-;;:::i;46307:183::-;;;;;;;;;;-1:-1:-1;46307:183:0;;;;;:::i;:::-;;:::i;33995:210::-;;;;;;;;;;-1:-1:-1;33995:210:0;;;;;:::i;:::-;;:::i;36161:39::-;;;;;;;;;;;;;;;59360:161;;;;;;;;;;-1:-1:-1;59360:161:0;;;;;:::i;:::-;;:::i;56261:32::-;;;;;;;;;;-1:-1:-1;56261:32:0;;;;;;;;65601:36;;;;;;;;;;;;;;;;39063:177;;;;;;;;;;-1:-1:-1;39063:177:0;;;;;:::i;:::-;;:::i;65566:22::-;;;;;;;;;;-1:-1:-1;65566:22:0;;;;;;;;;;;69769:170;;;;;;;;;;-1:-1:-1;69769:170:0;;;;;:::i;:::-;;:::i;70675:106::-;;;;;;;;;;-1:-1:-1;70675:106:0;;;;;:::i;:::-;;:::i;67425:1229::-;;;;;;:::i;:::-;;:::i;42227:118::-;;;;;;;;;;-1:-1:-1;42227:118:0;;;;;:::i;:::-;;:::i;62338:41::-;;;;;;;;;;;;;;;;68662:83;;;;;;;;;;;;;:::i;40765:211::-;;;;;;;;;;-1:-1:-1;40765:211:0;;;;;:::i;:::-;;:::i;26639:103::-;;;;;;;;;;;;;:::i;56099:72::-;;;;;;;;;;-1:-1:-1;56099:72:0;;;;-1:-1:-1;;;;;56099:72:0;;;62478:102;;;;;;;;;;;;;:::i;44314:159::-;;;;;;;;;;-1:-1:-1;44314:159:0;;;;;:::i;:::-;;:::i;56304:162::-;;;;;;;;;;;;;:::i;55971:123::-;;;;;;;;;;-1:-1:-1;55971:123:0;;;;;:::i;:::-;;:::i;60077:97::-;;;;;;;;;;;;;:::i;62299:34::-;;;;;;;;;;;;;;;;25917:87;;;;;;;;;;-1:-1:-1;25963:7:0;25990:6;-1:-1:-1;;;;;25990:6:0;25917:87;;65528:31;;;;;;;;;;-1:-1:-1;65528:31:0;;;;;;;;69414:179;;;;;;;;;;-1:-1:-1;69414:179:0;;;;;:::i;:::-;;:::i;63409:90::-;;;;;;;;;;-1:-1:-1;63409:90:0;;;;;:::i;:::-;;:::i;42559:98::-;;;;;;;;;;;;;:::i;62384:40::-;;;;;;;;;;;;;;;;34702:182;;;;;;;;;;-1:-1:-1;34702:182:0;;;;;:::i;:::-;;:::i;57211:417::-;;;;;;;;;;-1:-1:-1;57211:417:0;;;;;:::i;:::-;;:::i;45357:411::-;;;;;;;;;;-1:-1:-1;45357:411:0;;;;;:::i;:::-;;:::i;54876:135::-;;;;;;;;;;-1:-1:-1;54876:135:0;;;;;:::i;:::-;;:::i;60520:261::-;;;;;;;;;;-1:-1:-1;60520:261:0;;;;;:::i;:::-;;:::i;70787:135::-;;;;;;;;;;-1:-1:-1;70787:135:0;;;;;:::i;:::-;;:::i;63154:115::-;;;;;;;;;;-1:-1:-1;63154:115:0;;;;;:::i;:::-;;:::i;46553:337::-;;;;;;;;;;-1:-1:-1;46553:337:0;;;;;:::i;:::-;;:::i;60261:99::-;;;;;;;;;;;;;:::i;62586:104::-;;;;;;;;;;;;;:::i;42720:351::-;;;;;;;;;;-1:-1:-1;42720:351:0;;;;;:::i;:::-;;:::i;38683:96::-;;;;;;;;;;;;;:::i;59828:163::-;;;;;;;;;;-1:-1:-1;59828:163:0;;;;;:::i;:::-;;:::i;65370:99::-;;;;;;;;;;;;;:::i;69957:202::-;;;;;;;;;;-1:-1:-1;69957:202:0;;;;;:::i;:::-;;:::i;58134:253::-;;;;;;;;;;-1:-1:-1;58134:253:0;;;;;:::i;:::-;;:::i;70577:92::-;;;;;;;;;;;;;:::i;51187:43::-;;;;;;;;;;;;;;;;58753:304;;;;;;;;;;-1:-1:-1;58753:304:0;;;;;:::i;:::-;;:::i;34348:215::-;;;;;;;;;;-1:-1:-1;34348:215:0;;;;;:::i;:::-;;:::i;70177:149::-;;;;;;;;;;;;;:::i;45831:186::-;;;;;;;;;;-1:-1:-1;45831:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;45976:25:0;;;45953:4;45976:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;45831:186;65476:43;;;;;;;;;;;;;:::i;61542:105::-;;;;;;;;;;-1:-1:-1;61542:105:0;;;;;:::i;:::-;;:::i;26895:201::-;;;;;;;;;;-1:-1:-1;26895:201:0;;;;;:::i;:::-;;:::i;62429:42::-;;;;;;;;;;-1:-1:-1;62429:42:0;;;;;;;;54728:44;;;;;;;;;;;;;;;;69002:219;;;;;;;;;;-1:-1:-1;69002:219:0;;;;;:::i;:::-;;:::i;61503:32::-;;;;;;;;;;-1:-1:-1;61503:32:0;;;;;;;;;;;62862:168;;;;;;;;;;-1:-1:-1;62862:168:0;;;;;:::i;:::-;;:::i;38587:90::-;38634:7;38657:14;38951:12;;-1:-1:-1;;38951:30:0;;38862:132;38657:14;38650:21;;38587:90;:::o;40339:370::-;40466:4;-1:-1:-1;;;;;;40496:40:0;;-1:-1:-1;;;40496:40:0;;:99;;-1:-1:-1;;;;;;;40547:48:0;;-1:-1:-1;;;40547:48:0;40496:99;:160;;;-1:-1:-1;;;;;;;40606:50:0;;-1:-1:-1;;;40606:50:0;40496:160;:207;;;-1:-1:-1;;;;;;;;;;12411:40:0;;;40667:36;40482:221;40339:370;-1:-1:-1;;40339:370:0:o;66451:647::-;66534:20;;;;66531:57;;;66563:25;;-1:-1:-1;;;66563:25:0;;;;;;;;;;;66531:57;66602:12;66599:42;;66623:18;;-1:-1:-1;;;66623:18:0;;;;;;;;;;;66599:42;66665:12;;66655:7;:22;66652:58;;;66686:24;;-1:-1:-1;;;66686:24:0;;;;;;;;;;;66652:58;66725:11;;;;66721:42;;66745:18;;-1:-1:-1;;;66745:18:0;;;;;;;;;;;66721:42;66798:27;66812:3;66817:7;66798:13;:27::i;:::-;66794:61;;66834:21;;-1:-1:-1;;;66834:21:0;;;;;;;;;;;66794:61;66898:14;66888:7;66869:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:43;66866:68;;;66921:13;;-1:-1:-1;;;66921:13:0;;;;;;;;;;;66866:68;66949:47;66962:9;66973:22;66982:7;66991:3;66973:8;:22::i;:::-;66949:12;:47::i;:::-;66945:76;;67005:16;;-1:-1:-1;;;67005:16:0;;;;;;;;;;;66945:76;67032:17;:15;:17::i;:::-;67060:30;67070:3;67075:7;67084:5;67060:9;:30::i;:::-;66451:647;;:::o;42404:94::-;42458:13;42487:5;42480:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42404:94;:::o;45089:204::-;45157:7;45181:16;45189:7;45181;:16::i;:::-;45173:74;;;;-1:-1:-1;;;45173:74:0;;8345:2:1;45173:74:0;;;8327:21:1;8384:2;8364:18;;;8357:30;8423:34;8403:18;;;8396:62;-1:-1:-1;;;8474:18:1;;;8467:43;8527:19;;45173:74:0;;;;;;;;;-1:-1:-1;45263:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;45263:24:0;;45089:204::o;44527:504::-;44617:2;31872:30;31893:8;31872:20;:30::i;:::-;44628:13:::1;44644:24;44660:7;44644:15;:24::i;:::-;44628:40;;44689:5;-1:-1:-1::0;;;;;44683:11:0::1;:2;-1:-1:-1::0;;;;;44683:11:0::1;;;44675:58;;;::::0;-1:-1:-1;;;44675:58:0;;8759:2:1;44675:58:0::1;::::0;::::1;8741:21:1::0;8798:2;8778:18;;;8771:30;8837:34;8817:18;;;8810:62;-1:-1:-1;;;8888:18:1;;;8881:32;8930:19;;44675:58:0::1;8557:398:1::0;44675:58:0::1;-1:-1:-1::0;;;;;44743:31:0;::::1;;::::0;;;:27:::1;:31;::::0;;;;;::::1;;44740:86;;;44783:43;;-1:-1:-1::0;;;44783:43:0::1;;;;;;;;;;;44740:86;24723:10:::0;-1:-1:-1;;;;;44851:21:0;::::1;;::::0;:62:::1;;-1:-1:-1::0;44876:37:0::1;44893:5:::0;24723:10;45831:186;:::i;44876:37::-:1;44835:153;;;::::0;-1:-1:-1;;;44835:153:0;;9162:2:1;44835:153:0::1;::::0;::::1;9144:21:1::0;9201:2;9181:18;;;9174:30;9240:34;9220:18;;;9213:62;9311:27;9291:18;;;9284:55;9356:19;;44835:153:0::1;8960:421:1::0;44835:153:0::1;44997:28;45006:2;45010:7;45019:5;44997:8;:28::i;:::-;44621:410;44527:504:::0;;;:::o;46076:168::-;46197:4;29874:42;31359:43;:47;31355:416;;-1:-1:-1;;;;;31638:18:0;;31646:10;31638:18;31634:85;;;46210:28:::1;46220:4;46226:2;46230:7;46210:9;:28::i;:::-;31697:7:::0;;31634:85;31733:26;31754:4;31733:20;:26::i;:::-;46210:28:::1;46220:4;46226:2;46230:7;46210:9;:28::i;56176:37::-:0;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56176:37:0;:::o;63725:1282::-;63793:7;63812:11;63809:42;;63832:19;;-1:-1:-1;;;63832:19:0;;;;;;;;;;;63809:42;64027:23;;;;:32;;:85;;;64091:21;;64070:18;64084:3;64070:13;:18::i;:::-;:42;64027:85;64016:159;;;64155:12;;64145:6;64137:5;;:14;;;;:::i;:::-;64136:31;;;;:::i;:::-;64129:38;;;;64016:159;64183:22;64229:6;64208:18;64222:3;64208:13;:18::i;:::-;:27;;;;:::i;:::-;64183:52;;64394:21;;64375:14;:40;64372:111;;64463:12;;64453:6;64434:16;;:25;;;;:::i;:::-;64433:42;;;;:::i;:::-;64426:49;;;;;64372:111;64747:27;64801:18;64815:3;64801:13;:18::i;:::-;64777:21;;:42;;;;:::i;:::-;64747:72;;64826:29;64875:21;;64858:14;:38;;;;:::i;:::-;64826:70;;64989:12;;64964:21;64956:5;;:29;;;;:::i;:::-;64932:19;64913:16;;:38;;;;:::i;:::-;64912:74;;;;:::i;:::-;:89;;;;:::i;:::-;64905:96;63725:1282;-1:-1:-1;;;;;;63725:1282:0:o;39531:744::-;39640:7;39675:16;39685:5;39675:9;:16::i;:::-;39667:5;:24;39659:71;;;;-1:-1:-1;;;39659:71:0;;9891:2:1;39659:71:0;;;9873:21:1;9930:2;9910:18;;;9903:30;9969:34;9949:18;;;9942:62;-1:-1:-1;;;10020:18:1;;;10013:32;10062:19;;39659:71:0;9689:398:1;39659:71:0;39737:22;39762:13;:11;:13::i;:::-;39737:38;;39782:19;39812:25;39862:9;39857:350;39881:14;39877:1;:18;39857:350;;;39911:31;39945:14;;;:11;:14;;;;;;;;;39911:48;;;;;;;;;-1:-1:-1;;;;;39911:48:0;;;;;-1:-1:-1;;;39911:48:0;;;;;;;;;;;;39972:28;39968:89;;40033:14;;;-1:-1:-1;39968:89:0;40090:5;-1:-1:-1;;;;;40069:26:0;:17;-1:-1:-1;;;;;40069:26:0;;40065:135;;;40127:5;40112:11;:20;40108:59;;;-1:-1:-1;40154:1:0;-1:-1:-1;40147:8:0;;-1:-1:-1;;;40147:8:0;40108:59;40177:13;;;;:::i;:::-;;;;40065:135;-1:-1:-1;39897:3:0;;;;:::i;:::-;;;;39857:350;;;-1:-1:-1;40213:56:0;;-1:-1:-1;;;40213:56:0;;10434:2:1;40213:56:0;;;10416:21:1;10473:2;10453:18;;;10446:30;10512:34;10492:18;;;10485:62;-1:-1:-1;;;10563:18:1;;;10556:44;10617:19;;40213:56:0;10232:410:1;68753:84:0;35237:18;:16;:18::i;:::-;68810:11:::1;:19:::0;;-1:-1:-1;;68810:19:0::1;::::0;;68753:84::o;65938:247::-;35237:18;:16;:18::i;:::-;66025:9;66022:39:::1;;66043:18;;-1:-1:-1::0;;;66043:18:0::1;;;;;;;;;;;66022:39;66102:14;66095:4;66076:16;:14;:16::i;:::-;:23;;;;:::i;:::-;:40;66073:65;;;66125:13;;-1:-1:-1::0;;;66125:13:0::1;;;;;;;;;;;66073:65;66150:26;66160:3;66165:4;66171;66150:9;:26::i;46307:183::-:0;46432:4;29874:42;31359:43;:47;31355:416;;-1:-1:-1;;;;;31638:18:0;;31646:10;31638:18;31634:85;;;46445:39:::1;46462:4;46468:2;46472:7;46445:39;;;;;;;;;;;::::0;:16:::1;:39::i;31634:85::-:0;31733:26;31754:4;31733:20;:26::i;:::-;46445:39:::1;46462:4;46468:2;46472:7;46445:39;;;;;;;;;;;::::0;:16:::1;:39::i;33995:210::-:0;26258:12;:10;:12::i;:::-;-1:-1:-1;;;;;34059:22:0;::::1;34056:54;;34090:20;;-1:-1:-1::0;;;34090:20:0::1;;;;;;;;;;;34056:54;34120:16;34127:8;34120:6;:16::i;:::-;34117:50;;;34145:22;;-1:-1:-1::0;;;34145:22:0::1;;;;;;;;;;;34117:50;-1:-1:-1::0;;;;;34178:14:0::1;;::::0;;;34195:4:::1;34178:14;::::0;;;;;;;:21;;-1:-1:-1;;34178:21:0::1;::::0;;::::1;::::0;;33995:210::o;59360:161::-;35237:18;:16;:18::i;:::-;-1:-1:-1;;;;;59457:42:0::1;;::::0;;;:21:::1;:42;::::0;;;;:58;;-1:-1:-1;;59457:58:0::1;59511:4;59457:58;::::0;;59360:161::o;39063:177::-;39130:7;39162:13;:11;:13::i;:::-;39154:5;:21;39146:69;;;;-1:-1:-1;;;39146:69:0;;10849:2:1;39146:69:0;;;10831:21:1;10888:2;10868:18;;;10861:30;10927:34;10907:18;;;10900:62;-1:-1:-1;;;10978:18:1;;;10971:33;11021:19;;39146:69:0;10647:399:1;39146:69:0;-1:-1:-1;39229:5:0;39063:177::o;69769:170::-;35237:18;:16;:18::i;:::-;69848:16;69845:47:::1;;69873:19;;-1:-1:-1::0;;;69873:19:0::1;;;;;;;;;;;69845:47;69904:12;:26:::0;69769:170::o;70675:106::-;35237:18;:16;:18::i;:::-;70752:23:::1;:13;70768:7:::0;;70752:23:::1;:::i;:::-;;70675:106:::0;;:::o;67425:1229::-;67540:12;67537:42;;67561:18;;-1:-1:-1;;;67561:18:0;;;;;;;;;;;67537:42;67601:12;;67591:7;:22;67588:58;;;67622:24;;-1:-1:-1;;;67622:24:0;;;;;;;;;;;67588:58;67659:11;;;;67655:42;;67679:18;;-1:-1:-1;;;67679:18:0;;;;;;;;;;;67655:42;67738:14;67728:7;67709:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:43;67706:68;;;67761:13;;-1:-1:-1;;;67761:13:0;;;;;;;;;;;67706:68;67803:27;67817:3;67822:7;67803:13;:27::i;:::-;67799:61;;67839:21;;-1:-1:-1;;;67839:21:0;;;;;;;;;;;67799:61;67885:12;;67872:9;:25;67869:53;;67906:16;;-1:-1:-1;;;67906:16:0;;;;;;;;;;;67869:53;67981:47;68008:19;-1:-1:-1;;;;;57911:42:0;57891:4;57911:42;;;:21;:42;;;;;:51;;;:59;;:51;:59;;57806:170;67981:47;67977:83;;68037:23;;-1:-1:-1;;;68037:23:0;;;;;;;;;;;67977:83;68069:27;68143:7;68099:41;68120:19;68099:20;:41::i;:::-;:51;;;;:::i;:::-;68222:27;;-1:-1:-1;;;68222:27:0;;-1:-1:-1;;;;;2502:32:1;;;68222:27:0;;;2484:51:1;68069:81:0;;-1:-1:-1;68188:19:0;;68069:81;;68222:22;;;;;;2457:18:1;;68222:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;68219:87;;;68280:26;;-1:-1:-1;;;68280:26:0;;;;;;;;;;;68219:87;68318:42;;-1:-1:-1;;;68318:42:0;;-1:-1:-1;;;;;11470:15:1;;;68318:42:0;;;11452:34:1;68354:4:0;11502:18:1;;;11495:43;68363:19:0;;68318:22;;;;;;11387:18:1;;68318:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:64;68315:104;;;68391:28;;-1:-1:-1;;;68391:28:0;;;;;;;;;;;68315:104;68454:66;;-1:-1:-1;;;68454:66:0;;-1:-1:-1;;;;;11807:15:1;;;68454:66:0;;;11789:34:1;68493:4:0;11839:18:1;;;11832:43;11891:18;;;11884:34;;;68430:21:0;;68454:25;;;;;;11724:18:1;;68454:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68430:90;;68533:16;68529:50;;68558:21;;-1:-1:-1;;;68558:21:0;;;;;;;;;;;68529:50;68590:17;:15;:17::i;:::-;68616:30;68626:3;68631:7;68640:5;68616:9;:30::i;:::-;67528:1126;;;67425:1229;;;:::o;42227:118::-;42291:7;42314:20;42326:7;42314:11;:20::i;:::-;:25;;42227:118;-1:-1:-1;;42227:118:0:o;68662:83::-;35237:18;:16;:18::i;:::-;68719:11:::1;:18:::0;;-1:-1:-1;;68719:18:0::1;68733:4;68719:18;::::0;;68662:83::o;40765:211::-;40829:7;-1:-1:-1;;;;;40853:19:0;;40845:75;;;;-1:-1:-1;;;40845:75:0;;12381:2:1;40845:75:0;;;12363:21:1;12420:2;12400:18;;;12393:30;12459:34;12439:18;;;12432:62;-1:-1:-1;;;12510:18:1;;;12503:41;12561:19;;40845:75:0;12179:407:1;40845:75:0;-1:-1:-1;;;;;;40942:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;40942:27:0;;40765:211::o;26639:103::-;26258:12;:10;:12::i;:::-;26704:30:::1;26731:1;26704:18;:30::i;:::-;26639:103::o:0;62478:102::-;35237:18;:16;:18::i;:::-;62544:23:::1;:30:::0;;-1:-1:-1;;62544:30:0::1;62570:4;62544:30;::::0;;62478:102::o;44314:159::-;35237:18;:16;:18::i;:::-;-1:-1:-1;;;;;44414:37:0;;;::::1;;::::0;;;:27:::1;:37;::::0;;;;:53;;-1:-1:-1;;44414:53:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44314:159::o;56304:162::-;35237:18;:16;:18::i;:::-;56362:21:::1;56359:57;;56397:19;;-1:-1:-1::0;;;56397:19:0::1;;;;;;;;;;;56359:57;56425:35;56438:21;56425:12;:35::i;55971:123::-:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55971:123:0;;-1:-1:-1;55971:123:0;:::o;60077:97::-;35237:18;:16;:18::i;:::-;60141:20:::1;:27:::0;;-1:-1:-1;;60141:27:0::1;60164:4;60141:27;::::0;;60077:97::o;69414:179::-;35237:18;:16;:18::i;:::-;69496;69493:49:::1;;69523:19;;-1:-1:-1::0;;;69523:19:0::1;;;;;;;;;;;69493:49;69553:16;:32:::0;69414:179::o;63409:90::-;35237:18;:16;:18::i;:::-;63476:5:::1;:17:::0;63409:90::o;42559:98::-;42615:13;42644:7;42637:14;;;;;:::i;34702:182::-;34772:4;-1:-1:-1;;;;;34791:22:0;;34788:54;;34822:20;;-1:-1:-1;;;34822:20:0;;;;;;;;;;;34788:54;-1:-1:-1;;;;;;34856:14:0;;;;;:4;:14;;;;;;;;;;;:22;;;;34702:182::o;57211:417::-;35237:18;:16;:18::i;:::-;57318:22;57315:53:::1;;57349:19;;-1:-1:-1::0;;;57349:19:0::1;;;;;;;;;;;57315:53;57430:38;::::0;-1:-1:-1;;;57430:38:0;;57462:4:::1;57430:38;::::0;::::1;2484:51:1::0;57405:14:0;;57471:17;;-1:-1:-1;;;;;57430:23:0;::::1;::::0;::::1;::::0;2457:18:1;;57430:38:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:58;57427:96;;;57497:26;;-1:-1:-1::0;;;57497:26:0::1;;;;;;;;;;;57427:96;57553:12;::::0;57530:55:::1;::::0;-1:-1:-1;;;57530:55:0;;-1:-1:-1;;;;;57553:12:0;;::::1;57530:55;::::0;::::1;12765:51:1::0;12832:18;;;12825:34;;;57530:22:0;;::::1;::::0;::::1;::::0;12738:18:1;;57530:55:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;45357:411::-:0;45461:8;31872:30;31893:8;31872:20;:30::i;:::-;-1:-1:-1;;;;;45486:24:0;::::1;24723:10:::0;45486:24:::1;;45478:63;;;::::0;-1:-1:-1;;;45478:63:0;;13072:2:1;45478:63:0::1;::::0;::::1;13054:21:1::0;13111:2;13091:18;;;13084:30;13150:28;13130:18;;;13123:56;13196:18;;45478:63:0::1;12870:350:1::0;45478:63:0::1;-1:-1:-1::0;;;;;45551:37:0;::::1;;::::0;;;:27:::1;:37;::::0;;;;;::::1;;45548:92;;;45597:43;;-1:-1:-1::0;;;45597:43:0::1;;;;;;;;;;;45548:92;24723:10:::0;45649:32:::1;::::0;;;:18:::1;:32;::::0;;;;;;;-1:-1:-1;;;;;45649:42:0;::::1;::::0;;;;;;;;;;:53;;-1:-1:-1;;45649:53:0::1;::::0;::::1;;::::0;;::::1;::::0;;;45714:48;;722:41:1;;;45649:42:0;;24723:10;45714:48:::1;::::0;695:18:1;45714:48:0::1;;;;;;;45357:411:::0;;;:::o;54876:135::-;24723:10;54681:42;54931:24;54928:51;;54964:15;;-1:-1:-1;;;54964:15:0;;;;;;;;;;;54928:51;54986:12;:19;54876:135::o;60520:261::-;35237:18;:16;:18::i;:::-;-1:-1:-1;;;;;60611:30:0;::::1;60608:63;;60650:21;;-1:-1:-1::0;;;60650:21:0::1;;;;;;;;;;;60608:63;60701:12;::::0;-1:-1:-1;;;;;60681:32:0;;::::1;60701:12:::0;::::1;60681:32;60678:59;;;60722:15;;-1:-1:-1::0;;;60722:15:0::1;;;;;;;;;;;60678:59;60744:12;:31:::0;;-1:-1:-1;;;;;;60744:31:0::1;-1:-1:-1::0;;;;;60744:31:0;;;::::1;::::0;;;::::1;::::0;;60520:261::o;70787:135::-;35237:18;:16;:18::i;:::-;70881:35:::1;:19;70903:13:::0;;70881:35:::1;:::i;63154:115::-:0;35237:18;:16;:18::i;:::-;63235:16:::1;:28:::0;63154:115::o;46553:337::-;46703:4;29874:42;31359:43;:47;31355:416;;-1:-1:-1;;;;;31638:18:0;;31646:10;31638:18;31634:85;;;46716:28:::1;46726:4;46732:2;46736:7;46716:9;:28::i;:::-;46767:48;46790:4;46796:2;46800:7;46809:5;46767:22;:48::i;:::-;46751:133;;;;-1:-1:-1::0;;;46751:133:0::1;;;;;;;:::i;:::-;31697:7:::0;;31634:85;31733:26;31754:4;31733:20;:26::i;:::-;46716:28:::1;46726:4;46732:2;46736:7;46716:9;:28::i;:::-;46767:48;46790:4;46796:2;46800:7;46809:5;46767:22;:48::i;:::-;46751:133;;;;-1:-1:-1::0;;;46751:133:0::1;;;;;;;:::i;:::-;46553:337:::0;;;;;:::o;60261:99::-;35237:18;:16;:18::i;:::-;60326:20:::1;:28:::0;;-1:-1:-1;;60326:28:0::1;::::0;;60261:99::o;62586:104::-;35237:18;:16;:18::i;:::-;62653:23:::1;:31:::0;;-1:-1:-1;;62653:31:0::1;::::0;;62586:104::o;42720:351::-;42818:13;42843:21;42867:10;:8;:10::i;:::-;42843:34;;42884:23;42910:19;:17;:19::i;:::-;42884:45;;42974:1;42956:7;42950:21;:25;:115;;;;;;;;;;;;;;;;;43011:7;43020:18;:7;:16;:18::i;:::-;43040:9;42994:56;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42950:115;42936:129;42720:351;-1:-1:-1;;;;42720:351:0:o;38683:96::-;38730:7;38755:14;38951:12;;-1:-1:-1;;38951:30:0;;38862:132;38755:14;:18;;38772:1;38755:18;:::i;59828:163::-;35237:18;:16;:18::i;:::-;-1:-1:-1;;;;;59926:42:0::1;59980:5;59926:42:::0;;;:21:::1;:42;::::0;;;;:59;;-1:-1:-1;;59926:59:0::1;::::0;;59828:163::o;65370:99::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;69957:202::-;35237:18;:16;:18::i;:::-;70042:10:::1;::::0;::::1;::::0;::::1;;;70039:41;;;70061:19;;-1:-1:-1::0;;;70061:19:0::1;;;;;;;;;;;70039:41;70091:32:::0;;::::1;::::0;:13:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;;70134:10:0::1;:17:::0;;-1:-1:-1;;70134:17:0::1;;;::::0;;69957:202::o;58134:253::-;58213:7;58233:47;58260:19;-1:-1:-1;;;;;57911:42:0;57891:4;57911:42;;;:21;:42;;;;;:51;;;:59;;:51;:59;;57806:170;58233:47;58229:83;;58289:23;;-1:-1:-1;;;58289:23:0;;;;;;;;;;;58229:83;-1:-1:-1;;;;;;58326:42:0;;;;;:21;:42;;;;;:55;;;;58134:253::o;70577:92::-;70621:13;70650;70643:20;;;;;:::i;58753:304::-;35237:18;:16;:18::i;:::-;-1:-1:-1;;;;;58902:42:0;;;::::1;;::::0;;;:21:::1;:42;::::0;;;;:63;;-1:-1:-1;;58902:63:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;58972:55:0::1;:79:::0;58753:304::o;34348:215::-;26258:12;:10;:12::i;:::-;-1:-1:-1;;;;;34417:22:0;::::1;34414:54;;34448:20;;-1:-1:-1::0;;;34448:20:0::1;;;;;;;;;;;34414:54;34479:16;34486:8;34479:6;:16::i;:::-;34475:49;;34504:20;;-1:-1:-1::0;;;34504:20:0::1;;;;;;;;;;;34475:49;-1:-1:-1::0;;;;;34535:14:0::1;34552:5;34535:14:::0;;;:4:::1;:14;::::0;;;;:22;;-1:-1:-1;;34535:22:0::1;::::0;;34348:215::o;70177:149::-;70221:13;70243:77;;;;;;;;;;;;;;;;;;;70177:149;:::o;65476:43::-;;;;;;;:::i;61542:105::-;35237:18;:16;:18::i;:::-;61615:13:::1;:26:::0;;;::::1;;;;-1:-1:-1::0;;61615:26:0;;::::1;::::0;;;::::1;::::0;;61542:105::o;26895:201::-;26258:12;:10;:12::i;:::-;-1:-1:-1;;;;;26984:22:0;::::1;26976:73;;;::::0;-1:-1:-1;;;26976:73:0;;14516:2:1;26976:73:0::1;::::0;::::1;14498:21:1::0;14555:2;14535:18;;;14528:30;14594:34;14574:18;;;14567:62;-1:-1:-1;;;14645:18:1;;;14638:36;14691:19;;26976:73:0::1;14314:402:1::0;26976:73:0::1;27060:28;27079:8;27060:18;:28::i;:::-;26895:201:::0;:::o;69002:219::-;69080:4;69100:12;69097:43;;69121:19;;-1:-1:-1;;;69121:19:0;;;;;;;;;;;69097:43;69197:16;;69185:7;69159:23;69173:8;69159:13;:23::i;:::-;:33;;;;:::i;:::-;69158:55;;;69002:219;-1:-1:-1;;;69002:219:0:o;62862:168::-;35237:18;:16;:18::i;:::-;62946:12;62943:43:::1;;62967:19;;-1:-1:-1::0;;;62967:19:0::1;;;;;;;;;;;62943:43;62993:21;:31:::0;62862:168::o;61838:203::-;61946:13;;61926:4;;61946:13;;;;;:89;;62021:14;62008:9;:27;;61946:89;;;61983:14;61970:9;:27;61946:89;61939:96;61838:203;-1:-1:-1;;;61838:203:0:o;54781:89::-;54851:12;;54824:40;;54681:42;;54824:40;;;;;;;;;54851:12;54681:42;54824:40;;;;;;;;;;;;;;;;;;;47266:129;47349:40;47359:2;47363:8;47373:11;47349:40;;;;;;;;;;;;:9;:40::i;47125:135::-;47182:4;47221:7;38410:1;47202:26;;:52;;;;-1:-1:-1;;47242:12:0;;-1:-1:-1;47232:22:0;47125:135::o;31930:415::-;29874:42;32121:43;:47;32117:221;;32190:65;;-1:-1:-1;;;32190:65:0;;32239:4;32190:65;;;11452:34:1;-1:-1:-1;;;;;11522:15:1;;11502:18;;;11495:43;29874:42:0;;32190:40;;11387:18:1;;32190:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32185:142;;32283:28;;-1:-1:-1;;;32283:28:0;;-1:-1:-1;;;;;2502:32:1;;32283:28:0;;;2484:51:1;2457:18;;32283:28:0;2338:203:1;51009:172:0;51106:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;51106:29:0;-1:-1:-1;;;;;51106:29:0;;;;;;;;;51147:28;;51106:24;;51147:28;;;;;;;51009:172;;;:::o;49378:1529::-;49475:35;49513:20;49525:7;49513:11;:20::i;:::-;49584:18;;49475:58;;-1:-1:-1;49542:22:0;;-1:-1:-1;;;;;49568:34:0;24723:10;-1:-1:-1;;;;;49568:34:0;;:81;;;-1:-1:-1;24723:10:0;49613:20;49625:7;49613:11;:20::i;:::-;-1:-1:-1;;;;;49613:36:0;;49568:81;:142;;;-1:-1:-1;49677:18:0;;49660:50;;24723:10;45831:186;:::i;49660:50::-;49542:169;;49736:17;49720:101;;;;-1:-1:-1;;;49720:101:0;;14923:2:1;49720:101:0;;;14905:21:1;14962:2;14942:18;;;14935:30;15001:34;14981:18;;;14974:62;-1:-1:-1;;;15052:18:1;;;15045:48;15110:19;;49720:101:0;14721:414:1;49720:101:0;49868:4;-1:-1:-1;;;;;49846:26:0;:13;:18;;;-1:-1:-1;;;;;49846:26:0;;49830:98;;;;-1:-1:-1;;;49830:98:0;;15342:2:1;49830:98:0;;;15324:21:1;15381:2;15361:18;;;15354:30;15420:34;15400:18;;;15393:62;-1:-1:-1;;;15471:18:1;;;15464:36;15517:19;;49830:98:0;15140:402:1;49830:98:0;-1:-1:-1;;;;;49943:16:0;;49935:66;;;;-1:-1:-1;;;49935:66:0;;15749:2:1;49935:66:0;;;15731:21:1;15788:2;15768:18;;;15761:30;15827:34;15807:18;;;15800:62;-1:-1:-1;;;15878:18:1;;;15871:35;15923:19;;49935:66:0;15547:401:1;49935:66:0;50110:49;50127:1;50131:7;50140:13;:18;;;50110:8;:49::i;:::-;-1:-1:-1;;;;;50168:18:0;;;;;;:12;:18;;;;;:31;;50198:1;;50168:18;:31;;50198:1;;-1:-1:-1;;;;;50168:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;50168:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;50206:16:0;;-1:-1:-1;50206:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;50206:16:0;;:29;;-1:-1:-1;;50206:29:0;;:::i;:::-;;;-1:-1:-1;;;;;50206:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50265:43:0;;;;;;;;-1:-1:-1;;;;;50265:43:0;;;;;;50291:15;50265:43;;;;;;;;;-1:-1:-1;50242:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;50242:66:0;-1:-1:-1;;;;;;50242:66:0;;;;;;;;;;;50558:11;50254:7;-1:-1:-1;50558:11:0;:::i;:::-;50621:1;50580:24;;;:11;:24;;;;;:29;50536:33;;-1:-1:-1;;;;;;50580:29:0;50576:236;;50638:20;50646:11;50638:7;:20::i;:::-;50634:171;;;50698:97;;;;;;;;50725:18;;-1:-1:-1;;;;;50698:97:0;;;;;;50756:28;;;;50698:97;;;;;;;;;;-1:-1:-1;50671:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;50671:124:0;-1:-1:-1;;;;;;50671:124:0;;;;;;;;;;;;50634:171;50844:7;50840:2;-1:-1:-1;;;;;50825:27:0;50834:4;-1:-1:-1;;;;;50825:27:0;;;;;;;;;;;50859:42;44527:504;30842:337;30942:67;;-1:-1:-1;;;30942:67:0;;30991:4;30942:67;;;11452:34:1;30998:10:0;11502:18:1;;;11495:43;29874:42:0;;30942:40;;11387:18:1;;30942:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:147;;;;-1:-1:-1;31028:61:0;;-1:-1:-1;;;31028:61:0;;31077:4;31028:61;;;11452:34:1;-1:-1:-1;;;;;11522:15:1;;11502:18;;;11495:43;29874:42:0;;31028:40;;11387:18:1;;31028:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30908:264;;31132:30;;-1:-1:-1;;;31132:30:0;;31151:10;31132:30;;;2484:51:1;2457:18;;31132:30:0;2338:203:1;40982:240:0;41043:7;-1:-1:-1;;;;;41075:19:0;;41059:102;;;;-1:-1:-1;;;41059:102:0;;16664:2:1;41059:102:0;;;16646:21:1;16703:2;16683:18;;;16676:30;16742:34;16722:18;;;16715:62;-1:-1:-1;;;16793:18:1;;;16786:47;16850:19;;41059:102:0;16462:413:1;41059:102:0;-1:-1:-1;;;;;;41183:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;41183:32:0;;-1:-1:-1;;;;;41183:32:0;;40982:240::o;34982:215::-;35030:13;25990:6;;-1:-1:-1;;;;;25990:6:0;24723:10;35046:23;;;;35030:13;35091:20;;34702:182;:::i;35091:20::-;35076:35;;35126:8;:19;;;;35138:7;35126:19;35118:73;;;;-1:-1:-1;;;35118:73:0;;17082:2:1;35118:73:0;;;17064:21:1;17121:2;17101:18;;;17094:30;17160:34;17140:18;;;17133:62;-1:-1:-1;;;17211:18:1;;;17204:39;17260:19;;35118:73:0;16880:405:1;26097:121:0;25963:7;25990:6;-1:-1:-1;;;;;25990:6:0;24723:10;26150:23;26142:68;;;;-1:-1:-1;;;26142:68:0;;17492:2:1;26142:68:0;;;17474:21:1;;;17511:18;;;17504:30;17570:34;17550:18;;;17543:62;17622:18;;26142:68:0;17290:356:1;41228:945:0;-1:-1:-1;;;;;;;;;;;;;;;;;41352:7:0;;38410:1;41393:23;;:46;;;;;41427:12;;41420:4;:19;41393:46;41389:706;;;41456:31;41490:17;;;:11;:17;;;;;;;;;41456:51;;;;;;;;;-1:-1:-1;;;;;41456:51:0;;;;;-1:-1:-1;;;41456:51:0;;;;;;;;;;;;41526:28;41522:85;;41582:9;41228:945;-1:-1:-1;;;41228:945:0:o;41522:85::-;-1:-1:-1;;;41903:6:0;41940:17;;;;:11;:17;;;;;;;;;41928:29;;;;;;;;;-1:-1:-1;;;;;41928:29:0;;;;;-1:-1:-1;;;41928:29:0;;;;;;;;;;;;41980:28;41976:93;;42040:9;41228:945;-1:-1:-1;;;41228:945:0:o;41976:93::-;41871:213;;41389:706;42110:57;;-1:-1:-1;;;42110:57:0;;17853:2:1;42110:57:0;;;17835:21:1;17892:2;17872:18;;;17865:30;17931:34;17911:18;;;17904:62;-1:-1:-1;;;17982:18:1;;;17975:45;18037:19;;42110:57:0;17651:411:1;27254:191:0;27328:16;27347:6;;-1:-1:-1;;;;;27364:17:0;;;-1:-1:-1;;;;;;27364:17:0;;;;;;27397:40;;27347:6;;;;;;;27397:40;;27328:16;27397:40;27317:128;27254:191;:::o;56472:237::-;56532:6;56528:176;56546:19;;56542:1;:23;56528:176;;;56586:108;56613:16;56630:1;56613:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;56613:19:0;56678:3;56660:11;56672:1;56660:14;;;;;;;;:::i;:::-;;;;;;;;;56650:7;:24;;;;:::i;:::-;56649:32;;;;:::i;:::-;56586:10;:108::i;:::-;56567:3;;;;:::i;:::-;;;;56528:176;;52798:690;52935:4;-1:-1:-1;;;;;52952:13:0;;2586:19;:23;52948:535;;52991:72;;-1:-1:-1;;;52991:72:0;;-1:-1:-1;;;;;52991:36:0;;;;;:72;;24723:10;;53042:4;;53048:7;;53057:5;;52991:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52991:72:0;;;;;;;;-1:-1:-1;;52991:72:0;;;;;;;;;;;;:::i;:::-;;;52978:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53222:13:0;;53218:215;;53255:61;;-1:-1:-1;;;53255:61:0;;;;;;;:::i;53218:215::-;53401:6;53395:13;53386:6;53382:2;53378:15;53371:38;52978:464;-1:-1:-1;;;;;;53113:55:0;-1:-1:-1;;;53113:55:0;;-1:-1:-1;53106:62:0;;52948:535;-1:-1:-1;53471:4:0;52798:690;;;;;;:::o;70449:122::-;70517:13;70546:19;70539:26;;;;;:::i;19474:723::-;19530:13;19751:10;19747:53;;-1:-1:-1;;19778:10:0;;;;;;;;;;;;-1:-1:-1;;;19778:10:0;;;;;19474:723::o;19747:53::-;19825:5;19810:12;19866:78;19873:9;;19866:78;;19899:8;;;;:::i;:::-;;-1:-1:-1;19922:10:0;;-1:-1:-1;19930:2:0;19922:10;;:::i;:::-;;;19866:78;;;19954:19;19986:6;19976:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19976:17:0;;19954:39;;20004:154;20011:10;;20004:154;;20038:11;20048:1;20038:11;;:::i;:::-;;-1:-1:-1;20107:10:0;20115:2;20107:5;:10;:::i;:::-;20094:24;;:2;:24;:::i;:::-;20081:39;;20064:6;20071;20064:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;20064:56:0;;;;;;;;-1:-1:-1;20135:11:0;20144:2;20135:11;;:::i;:::-;;;20004:154;;47724:1434;47875:12;;-1:-1:-1;;;;;47902:16:0;;47894:62;;;;-1:-1:-1;;;47894:62:0;;19523:2:1;47894:62:0;;;19505:21:1;19562:2;19542:18;;;19535:30;19601:34;19581:18;;;19574:62;-1:-1:-1;;;19652:18:1;;;19645:31;19693:19;;47894:62:0;19321:397:1;47894:62:0;48093:21;48101:12;48093:7;:21::i;:::-;48092:22;48084:64;;;;-1:-1:-1;;;48084:64:0;;19925:2:1;48084:64:0;;;19907:21:1;19964:2;19944:18;;;19937:30;20003:31;19983:18;;;19976:59;20052:18;;48084:64:0;19723:353:1;48084:64:0;48234:20;48230:116;;48287:12;;48275:8;:24;;48267:71;;;;-1:-1:-1;;;48267:71:0;;20283:2:1;48267:71:0;;;20265:21:1;20322:2;20302:18;;;20295:30;20361:34;20341:18;;;20334:62;-1:-1:-1;;;20412:18:1;;;20405:32;20454:19;;48267:71:0;20081:398:1;48267:71:0;-1:-1:-1;;;;;48457:16:0;;48424:30;48457:16;;;:12;:16;;;;;;;;;48424:49;;;;;;;;;-1:-1:-1;;;;;48424:49:0;;;;;-1:-1:-1;;;48424:49:0;;;;;;;;;;;48499:139;;;;;;;;48519:19;;48424:49;;48499:139;;;48519:39;;48549:8;;48519:39;:::i;:::-;-1:-1:-1;;;;;48499:139:0;;;;;48595:11;:35;;48621:8;48595:35;;;48609:1;48595:35;48567:11;:24;;;:64;;;;:::i;:::-;-1:-1:-1;;;;;48499:139:0;;;;;;-1:-1:-1;;;;;48480:16:0;;;;;;;:12;:16;;;;;;;;:158;;;;;;;;-1:-1:-1;;;48480:158:0;;;;;;;;;;;;48673:43;;;;;;;;;;;48699:15;48673:43;;;;;;;;48645:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;48645:71:0;-1:-1:-1;;;;;;48645:71:0;;;;;;;;;;;;;;;;;;48657:12;;48769:281;48793:8;48789:1;:12;48769:281;;;48822:38;;48847:12;;-1:-1:-1;;;;;48822:38:0;;;48839:1;;48822:38;;48839:1;;48822:38;48887:59;48918:1;48922:2;48926:12;48940:5;48887:22;:59::i;:::-;48869:150;;;;-1:-1:-1;;;48869:150:0;;;;;;;:::i;:::-;49028:14;;;;:::i;:::-;;;;48803:3;;;;;:::i;:::-;;;;48769:281;;;-1:-1:-1;49058:12:0;:27;-1:-1:-1;;;;;;47724:1434:0:o;56717:175::-;56790:12;56808:8;-1:-1:-1;;;;;56808:13:0;56829:7;56808:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56789:52;;;56858:7;56850:36;;;;-1:-1:-1;;;56850:36:0;;20896:2:1;56850:36:0;;;20878:21:1;20935:2;20915:18;;;20908:30;-1:-1:-1;;;20954:18:1;;;20947:46;21010:18;;56850:36:0;20694:340:1;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;774:173::-;842:20;;-1:-1:-1;;;;;891:31:1;;881:42;;871:70;;937:1;934;927:12;871:70;774:173;;;:::o;952:186::-;1011:6;1064:2;1052:9;1043:7;1039:23;1035:32;1032:52;;;1080:1;1077;1070:12;1032:52;1103:29;1122:9;1103:29;:::i;1143:254::-;1211:6;1219;1272:2;1260:9;1251:7;1247:23;1243:32;1240:52;;;1288:1;1285;1278:12;1240:52;1311:29;1330:9;1311:29;:::i;:::-;1301:39;1387:2;1372:18;;;;1359:32;;-1:-1:-1;;;1143:254:1:o;1402:258::-;1474:1;1484:113;1498:6;1495:1;1492:13;1484:113;;;1574:11;;;1568:18;1555:11;;;1548:39;1520:2;1513:10;1484:113;;;1615:6;1612:1;1609:13;1606:48;;;-1:-1:-1;;1650:1:1;1632:16;;1625:27;1402:258::o;1665:::-;1707:3;1745:5;1739:12;1772:6;1767:3;1760:19;1788:63;1844:6;1837:4;1832:3;1828:14;1821:4;1814:5;1810:16;1788:63;:::i;:::-;1905:2;1884:15;-1:-1:-1;;1880:29:1;1871:39;;;;1912:4;1867:50;;1665:258;-1:-1:-1;;1665:258:1:o;1928:220::-;2077:2;2066:9;2059:21;2040:4;2097:45;2138:2;2127:9;2123:18;2115:6;2097:45;:::i;2153:180::-;2212:6;2265:2;2253:9;2244:7;2240:23;2236:32;2233:52;;;2281:1;2278;2271:12;2233:52;-1:-1:-1;2304:23:1;;2153:180;-1:-1:-1;2153:180:1:o;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;2879:254::-;2947:6;2955;3008:2;2996:9;2987:7;2983:23;2979:32;2976:52;;;3024:1;3021;3014:12;2976:52;3060:9;3047:23;3037:33;;3089:38;3123:2;3112:9;3108:18;3089:38;:::i;:::-;3079:48;;2879:254;;;;;:::o;3327:592::-;3398:6;3406;3459:2;3447:9;3438:7;3434:23;3430:32;3427:52;;;3475:1;3472;3465:12;3427:52;3515:9;3502:23;3544:18;3585:2;3577:6;3574:14;3571:34;;;3601:1;3598;3591:12;3571:34;3639:6;3628:9;3624:22;3614:32;;3684:7;3677:4;3673:2;3669:13;3665:27;3655:55;;3706:1;3703;3696:12;3655:55;3746:2;3733:16;3772:2;3764:6;3761:14;3758:34;;;3788:1;3785;3778:12;3758:34;3833:7;3828:2;3819:6;3815:2;3811:15;3807:24;3804:37;3801:57;;;3854:1;3851;3844:12;3801:57;3885:2;3877:11;;;;;3907:6;;-1:-1:-1;3327:592:1;;-1:-1:-1;;;;3327:592:1:o;3924:328::-;4001:6;4009;4017;4070:2;4058:9;4049:7;4045:23;4041:32;4038:52;;;4086:1;4083;4076:12;4038:52;4109:29;4128:9;4109:29;:::i;:::-;4099:39;;4185:2;4174:9;4170:18;4157:32;4147:42;;4208:38;4242:2;4231:9;4227:18;4208:38;:::i;:::-;4198:48;;3924:328;;;;;:::o;4257:118::-;4343:5;4336:13;4329:21;4322:5;4319:32;4309:60;;4365:1;4362;4355:12;4380:315;4445:6;4453;4506:2;4494:9;4485:7;4481:23;4477:32;4474:52;;;4522:1;4519;4512:12;4474:52;4545:29;4564:9;4545:29;:::i;:::-;4535:39;;4624:2;4613:9;4609:18;4596:32;4637:28;4659:5;4637:28;:::i;:::-;4684:5;4674:15;;;4380:315;;;;;:::o;4700:127::-;4761:10;4756:3;4752:20;4749:1;4742:31;4792:4;4789:1;4782:15;4816:4;4813:1;4806:15;4832:631;4896:5;4926:18;4967:2;4959:6;4956:14;4953:40;;;4973:18;;:::i;:::-;5048:2;5042:9;5016:2;5102:15;;-1:-1:-1;;5098:24:1;;;5124:2;5094:33;5090:42;5078:55;;;5148:18;;;5168:22;;;5145:46;5142:72;;;5194:18;;:::i;:::-;5234:10;5230:2;5223:22;5263:6;5254:15;;5293:6;5285;5278:22;5333:3;5324:6;5319:3;5315:16;5312:25;5309:45;;;5350:1;5347;5340:12;5309:45;5400:6;5395:3;5388:4;5380:6;5376:17;5363:44;5455:1;5448:4;5439:6;5431;5427:19;5423:30;5416:41;;;;4832:631;;;;;:::o;5468:666::-;5563:6;5571;5579;5587;5640:3;5628:9;5619:7;5615:23;5611:33;5608:53;;;5657:1;5654;5647:12;5608:53;5680:29;5699:9;5680:29;:::i;:::-;5670:39;;5728:38;5762:2;5751:9;5747:18;5728:38;:::i;:::-;5718:48;;5813:2;5802:9;5798:18;5785:32;5775:42;;5868:2;5857:9;5853:18;5840:32;5895:18;5887:6;5884:30;5881:50;;;5927:1;5924;5917:12;5881:50;5950:22;;6003:4;5995:13;;5991:27;-1:-1:-1;5981:55:1;;6032:1;6029;6022:12;5981:55;6055:73;6120:7;6115:2;6102:16;6097:2;6093;6089:11;6055:73;:::i;:::-;6045:83;;;5468:666;;;;;;;:::o;6139:450::-;6208:6;6261:2;6249:9;6240:7;6236:23;6232:32;6229:52;;;6277:1;6274;6267:12;6229:52;6317:9;6304:23;6350:18;6342:6;6339:30;6336:50;;;6382:1;6379;6372:12;6336:50;6405:22;;6458:4;6450:13;;6446:27;-1:-1:-1;6436:55:1;;6487:1;6484;6477:12;6436:55;6510:73;6575:7;6570:2;6557:16;6552:2;6548;6544:11;6510:73;:::i;6594:383::-;6668:6;6676;6684;6737:2;6725:9;6716:7;6712:23;6708:32;6705:52;;;6753:1;6750;6743:12;6705:52;6776:29;6795:9;6776:29;:::i;:::-;6766:39;;6855:2;6844:9;6840:18;6827:32;6868:28;6890:5;6868:28;:::i;:::-;6594:383;;6915:5;;-1:-1:-1;;;6967:2:1;6952:18;;;;6939:32;;6594:383::o;6982:260::-;7050:6;7058;7111:2;7099:9;7090:7;7086:23;7082:32;7079:52;;;7127:1;7124;7117:12;7079:52;7150:29;7169:9;7150:29;:::i;:::-;7140:39;;7198:38;7232:2;7221:9;7217:18;7198:38;:::i;7247:241::-;7303:6;7356:2;7344:9;7335:7;7331:23;7327:32;7324:52;;;7372:1;7369;7362:12;7324:52;7411:9;7398:23;7430:28;7452:5;7430:28;:::i;7493:127::-;7554:10;7549:3;7545:20;7542:1;7535:31;7585:4;7582:1;7575:15;7609:4;7606:1;7599:15;7625:128;7665:3;7696:1;7692:6;7689:1;7686:13;7683:39;;;7702:18;;:::i;:::-;-1:-1:-1;7738:9:1;;7625:128::o;7758:380::-;7837:1;7833:12;;;;7880;;;7901:61;;7955:4;7947:6;7943:17;7933:27;;7901:61;8008:2;8000:6;7997:14;7977:18;7974:38;7971:161;;;8054:10;8049:3;8045:20;8042:1;8035:31;8089:4;8086:1;8079:15;8117:4;8114:1;8107:15;7971:161;;7758:380;;;:::o;9386:168::-;9426:7;9492:1;9488;9484:6;9480:14;9477:1;9474:21;9469:1;9462:9;9455:17;9451:45;9448:71;;;9499:18;;:::i;:::-;-1:-1:-1;9539:9:1;;9386:168::o;9559:125::-;9599:4;9627:1;9624;9621:8;9618:34;;;9632:18;;:::i;:::-;-1:-1:-1;9669:9:1;;9559:125::o;10092:135::-;10131:3;-1:-1:-1;;10152:17:1;;10149:43;;;10172:18;;:::i;:::-;-1:-1:-1;10219:1:1;10208:13;;10092:135::o;11051:184::-;11121:6;11174:2;11162:9;11153:7;11149:23;11145:32;11142:52;;;11190:1;11187;11180:12;11142:52;-1:-1:-1;11213:16:1;;11051:184;-1:-1:-1;11051:184:1:o;11929:245::-;11996:6;12049:2;12037:9;12028:7;12024:23;12020:32;12017:52;;;12065:1;12062;12055:12;12017:52;12097:9;12091:16;12116:28;12138:5;12116:28;:::i;13225:415::-;13427:2;13409:21;;;13466:2;13446:18;;;13439:30;13505:34;13500:2;13485:18;;13478:62;-1:-1:-1;;;13571:2:1;13556:18;;13549:49;13630:3;13615:19;;13225:415::o;13645:664::-;13872:3;13910:6;13904:13;13926:53;13972:6;13967:3;13960:4;13952:6;13948:17;13926:53;:::i;:::-;14042:13;;14001:16;;;;14064:57;14042:13;14001:16;14098:4;14086:17;;14064:57;:::i;:::-;14188:13;;14143:20;;;14210:57;14188:13;14143:20;14244:4;14232:17;;14210:57;:::i;:::-;14283:20;;13645:664;-1:-1:-1;;;;;13645:664:1:o;15953:246::-;15993:4;-1:-1:-1;;;;;16106:10:1;;;;16076;;16128:12;;;16125:38;;;16143:18;;:::i;:::-;16180:13;;15953:246;-1:-1:-1;;;15953:246:1:o;16204:253::-;16244:3;-1:-1:-1;;;;;16333:2:1;16330:1;16326:10;16363:2;16360:1;16356:10;16394:3;16390:2;16386:12;16381:3;16378:21;16375:47;;;16402:18;;:::i;:::-;16438:13;;16204:253;-1:-1:-1;;;;16204:253:1:o;18067:127::-;18128:10;18123:3;18119:20;18116:1;18109:31;18159:4;18156:1;18149:15;18183:4;18180:1;18173:15;18199:127;18260:10;18255:3;18251:20;18248:1;18241:31;18291:4;18288:1;18281:15;18315:4;18312:1;18305:15;18331:120;18371:1;18397;18387:35;;18402:18;;:::i;:::-;-1:-1:-1;18436:9:1;;18331:120::o;18456:489::-;-1:-1:-1;;;;;18725:15:1;;;18707:34;;18777:15;;18772:2;18757:18;;18750:43;18824:2;18809:18;;18802:34;;;18872:3;18867:2;18852:18;;18845:31;;;18650:4;;18893:46;;18919:19;;18911:6;18893:46;:::i;18950:249::-;19019:6;19072:2;19060:9;19051:7;19047:23;19043:32;19040:52;;;19088:1;19085;19078:12;19040:52;19120:9;19114:16;19139:30;19163:5;19139:30;:::i;19204:112::-;19236:1;19262;19252:35;;19267:18;;:::i;:::-;-1:-1:-1;19301:9:1;;19204:112::o

Swarm Source

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