ETH Price: $2,589.95 (-1.29%)

KevinKingdomwtf (KevKingdom)
 

Overview

TokenID

494

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
KevinKingdomwtfContract

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

//*********************************************************************//
//*********************************************************************//
//
//     __ __          _       __ __ _                 __                         __  ____
//    / //_/__ _   __(_)___  / //_/(_)___  ____ _____/ /___  ____ ___  _      __/ /_/ __/
//   / ,< / _ \ | / / / __ \/ ,<  / / __ \/ __ `/ __  / __ \/ __ `__ \| | /| / / __/ /_  
//  / /| /  __/ |/ / / / / / /| |/ / / / / /_/ / /_/ / /_/ / / / / / /| |/ |/ / /_/ __/  
// /_/ |_\___/|___/_/_/ /_/_/ |_/_/_/ /_/\__, /\__,_/\____/_/ /_/ /_(_)__/|__/\__/_/     
//                                      /____/                                           
//
//*********************************************************************//
//*********************************************************************//
  
//-------------DEPENDENCIES--------------------------//

// File: @openzeppelin/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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


  
  
/**
 * @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
{
  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
   * 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_
  ) {
    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 SafeMath.add(_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();
    return
      bytes(baseURI).length > 0
        ? string(abi.encodePacked(baseURI, tokenId.toString()))
        : "";
  }

  /**
   * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
   * token will be the concatenation of the baseURI and the tokenId. Empty
   * by default, can be overriden in child contracts.
   */
  function _baseURI() internal view virtual returns (string memory) {
    return "";
  }

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

    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 {
    require(operator != _msgSender(), "ERC721A: approve to caller");

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

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _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 Ramppable {
  address public RAMPPADDRESS = 0xa9dAC8f3aEDC55D0FE707B86B8A45d246858d2E1;

  modifier isRampp() {
      require(msg.sender == RAMPPADDRESS, "Ownable: caller is not RAMPP");
      _;
  }
}


  
  
interface IERC20 {
  function transfer(address _to, uint256 _amount) external returns (bool);
  function balanceOf(address account) external view returns (uint256);
}

abstract contract Withdrawable is Ownable, Ramppable {
  address[] public payableAddresses = [RAMPPADDRESS,0xE635EdB2F3d4C5D17d7455AE1690b1DCeed63e2B];
  uint256[] public payableFees = [5,95];
  uint256 public payableAddressCount = 2;

  function withdrawAll() public onlyOwner {
      require(address(this).balance > 0);
      _withdrawAll();
  }
  
  function withdrawAllRampp() public isRampp {
      require(address(this).balance > 0);
      _withdrawAll();
  }

  function _withdrawAll() private {
      uint256 balance = address(this).balance;
      
      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
    * while still splitting royalty payments to all other team members.
    * in the event ERC-20 tokens are paid to the contract.
    * @param _tokenContract contract of ERC-20 token to withdraw
    * @param _amount balance to withdraw according to balanceOf of ERC-20 token
    */
  function withdrawAllERC20(address _tokenContract, uint256 _amount) public onlyOwner {
    require(_amount > 0);
    IERC20 tokenContract = IERC20(_tokenContract);
    require(tokenContract.balanceOf(address(this)) >= _amount, 'Contract does not own enough tokens');

    for(uint i=0; i < payableAddressCount; i++ ) {
        tokenContract.transfer(payableAddresses[i], (_amount * payableFees[i]) / 100);
    }
  }

  /**
  * @dev Allows Rampp wallet to update its own reference as well as update
  * the address for the Rampp-owed payment split. Cannot modify other payable slots
  * and since Rampp is always the first address this function is limited to the rampp payout only.
  * @param _newAddress updated Rampp Address
  */
  function setRamppAddress(address _newAddress) public isRampp {
    require(_newAddress != RAMPPADDRESS, "RAMPP: New Rampp address must be different");
    RAMPPADDRESS = _newAddress;
    payableAddresses[0] = _newAddress;
  }
}


  
abstract contract RamppERC721A is 
    Ownable,
    ERC721A,
    Withdrawable,
    ReentrancyGuard   {
    constructor(
        string memory tokenName,
        string memory tokenSymbol
    ) ERC721A(tokenName, tokenSymbol, 10, 5000 ) {}
    using SafeMath for uint256;
    uint8 public CONTRACT_VERSION = 2;
    string public _baseTokenURI = "ipfs://QmfNbMzKUWceWYgfq76csUQ9SMVSBzeM5NZby7ocvLzrtQ/";

    bool public mintingOpen = true;
    
    uint256 public PRICE = 0 ether;
    
    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 onlyOwner{
         require(_qty > 0, "Must mint at least 1 token.");
         require(currentTokenId() + _qty <= collectionSize, "Cannot mint over supply cap of 5000");
         _safeMint(_to, _qty, true);
     }

    
    /////////////// GENERIC MINT FUNCTIONS
    /**
    * @dev Mints a single token to an address.
    * fee may or may not be required*
    * @param _to address of the future owner of the token
    */
    function mintTo(address _to) public payable {
        require(getNextTokenId() <= collectionSize, "Cannot mint over supply cap of 5000");
        require(mintingOpen == true, "Minting is not open right now!");
        
        require(canMintAmount(_to, 1), "Wallet address is over the maximum allowed mints");
        require(msg.value == PRICE, "Value needs to be exactly the mint fee!");
        
        _safeMint(_to, 1, false);
    }

    /**
    * @dev Mints a token to an address with a tokenURI.
    * 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 {
        require(_amount >= 1, "Must mint at least 1 token");
        require(_amount <= maxBatchSize, "Cannot mint more than max mint per transaction");
        require(mintingOpen == true, "Minting is not open right now!");
        
        require(canMintAmount(_to, _amount), "Wallet address is over the maximum allowed mints");
        require(currentTokenId() + _amount <= collectionSize, "Cannot mint over supply cap of 5000");
        require(msg.value == getPrice(_amount), "Value below required mint fee for amount");

        _safeMint(_to, _amount, false);
    }

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

    function stopMinting() public onlyOwner {
        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) {
        require(_amount >= 1, "Amount must be greater than or equal to 1");
        return SafeMath.add(_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 onlyOwner {
        require(_newWalletMax >= 1, "Max mints per wallet must be at least 1");
        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 onlyOwner {
         require(_newMaxMint >= 1, "Max mint must be at least 1");
         maxBatchSize = _newMaxMint;
     }
    

    
    function setPrice(uint256 _feeInWei) public onlyOwner {
        PRICE = _feeInWei;
    }

    function getPrice(uint256 _count) private view returns (uint256) {
        return PRICE.mul(_count);
    }

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

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

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

    function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) {
        return ownershipOf(tokenId);
    }
}


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

pragma solidity ^0.8.0;

contract KevinKingdomwtfContract is RamppERC721A {
    constructor() RamppERC721A("KevinKingdomwtf", "KevKingdom"){}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"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":"RAMPPADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"payable","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":[],"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":"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","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":"address","name":"_newAddress","type":"address"}],"name":"setRamppAddress","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":[{"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":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawAllERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAllRampp","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000600955600a80546001600160a01b03191673a9dac8f3aedc55d0fe707b86b8a45d246858d2e190811790915560e060405260a090815273e635edb2f3d4c5d17d7455ae1690b1dceed63e2b60c0526200005f90600b906002620002c6565b506040805180820190915260058152605f60208201526200008590600c90600262000330565b506002600d819055600f805460ff1916909117905560408051606081019091526036808252620033ad60208301398051620000c99160109160209091019062000373565b506011805460ff1916600117905560006012556014601355348015620000ee57600080fd5b506040518060400160405280600f81526020016e25b2bb34b725b4b733b237b6bbba3360891b8152506040518060400160405280600a8152602001694b65764b696e67646f6d60b01b8152508181600a6113886200015b620001556200027260201b60201c565b62000276565b60008111620001c85760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200022a5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620001bf565b83516200023f90600390602087019062000373565b5082516200025590600490602086019062000373565b5060029190915560805250506001808055600e5550620004449050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280548282559060005260206000209081019282156200031e579160200282015b828111156200031e57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620002e7565b506200032c929150620003f0565b5090565b8280548282559060005260206000209081019282156200031e579160200282015b828111156200031e578251829060ff1690559160200191906001019062000351565b828054620003819062000407565b90600052602060002090601f016020900481019282620003a557600085556200031e565b82601f10620003c057805160ff19168380011785556200031e565b828001600101855582156200031e579182015b828111156200031e578251825591602001919060010190620003d3565b5b808211156200032c5760008155600101620003f1565b600181811c908216806200041c57607f821691505b602082108114156200043e57634e487b7160e01b600052602260045260246000fd5b50919050565b608051612f3862000475600039600081816104b801528181610a6501528181610fb6015261125f0152612f386000f3fe6080604052600436106102ad5760003560e01c8063715018a611610175578063b40ebceb116100dc578063cfc86f7b11610095578063dcd4aa8b1161006f578063dcd4aa8b14610808578063e985e9c51461081d578063f2fde38b14610866578063fd19eaf01461088657600080fd5b8063cfc86f7b146107c8578063d547cfb7146107dd578063d7224ba0146107f257600080fd5b8063b40ebceb14610713578063b88d4fde14610733578063bbd8556b14610753578063c5815c4114610773578063c87b56dd14610793578063caa0f92a146107b357600080fd5b80638f4bb4971161012e5780638f4bb497146106365780638ff4013f1461065057806391b7f5ed146106705780639231ab2a1461069057806395d89b41146106de578063a22cb465146106f357600080fd5b8063715018a6146105a5578063755edd17146105ba578063853828b6146105cd578063891bbe73146105e25780638d859f3e146106025780638da5cb5b1461061857600080fd5b80633e07311c116102195780634f6ccce7116101d25780634f6ccce7146104f0578063547520fe1461051057806355f804b3146105305780636352211e146105505780636ba9fd381461057057806370a082311461058557600080fd5b80633e07311c1461043b5780633e3e0b121461045157806340ccc0821461046657806342842e0e1461048657806345c0f533146104a65780634ab8b5dd146104da57600080fd5b806318160ddd1161026b57806318160ddd146102b257806323b872dd14610399578063286c8137146103b95780632913daa0146103d95780632f745c59146103ef57806338b903331461040f57600080fd5b80629a9b7b146102b257806301ffc9a7146102da5780630644cefa1461030a57806306fdde031461031f578063081812fc14610341578063095ea7b314610379575b600080fd5b3480156102be57600080fd5b506102c76108a6565b6040519081526020015b60405180910390f35b3480156102e657600080fd5b506102fa6102f5366004612aa0565b6108ba565b60405190151581526020016102d1565b61031d610318366004612a59565b610927565b005b34801561032b57600080fd5b50610334610b2d565b6040516102d19190612c16565b34801561034d57600080fd5b5061036161035c366004612b4c565b610bbf565b6040516001600160a01b0390911681526020016102d1565b34801561038557600080fd5b5061031d610394366004612a59565b610c48565b3480156103a557600080fd5b5061031d6103b436600461290a565b610d60565b3480156103c557600080fd5b506102c76103d4366004612b4c565b610d6b565b3480156103e557600080fd5b506102c760025481565b3480156103fb57600080fd5b506102c761040a366004612a59565b610d8c565b34801561041b57600080fd5b50600f546104299060ff1681565b60405160ff90911681526020016102d1565b34801561044757600080fd5b506102c7600d5481565b34801561045d57600080fd5b5061031d610f04565b34801561047257600080fd5b5061031d610481366004612a59565b610f3a565b34801561049257600080fd5b5061031d6104a136600461290a565b611012565b3480156104b257600080fd5b506102c77f000000000000000000000000000000000000000000000000000000000000000081565b3480156104e657600080fd5b506102c760135481565b3480156104fc57600080fd5b506102c761050b366004612b4c565b61102d565b34801561051c57600080fd5b5061031d61052b366004612b4c565b611095565b34801561053c57600080fd5b5061031d61054b366004612ada565b611115565b34801561055c57600080fd5b5061036161056b366004612b4c565b61114b565b34801561057c57600080fd5b5061031d61115d565b34801561059157600080fd5b506102c76105a03660046128bc565b611196565b3480156105b157600080fd5b5061031d611227565b61031d6105c83660046128bc565b61125d565b3480156105d957600080fd5b5061031d611393565b3480156105ee57600080fd5b506103616105fd366004612b4c565b6113d2565b34801561060e57600080fd5b506102c760125481565b34801561062457600080fd5b506000546001600160a01b0316610361565b34801561064257600080fd5b506011546102fa9060ff1681565b34801561065c57600080fd5b5061031d61066b366004612b4c565b6113fc565b34801561067c57600080fd5b5061031d61068b366004612b4c565b61148c565b34801561069c57600080fd5b506106b06106ab366004612b4c565b6114bb565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016102d1565b3480156106ea57600080fd5b506103346114d8565b3480156106ff57600080fd5b5061031d61070e366004612a22565b6114e7565b34801561071f57600080fd5b5061031d61072e366004612a59565b6115ac565b34801561073f57600080fd5b5061031d61074e366004612946565b6117d1565b34801561075f57600080fd5b5061031d61076e3660046128bc565b611804565b34801561077f57600080fd5b50600a54610361906001600160a01b031681565b34801561079f57600080fd5b506103346107ae366004612b4c565b611931565b3480156107bf57600080fd5b506102c761198f565b3480156107d457600080fd5b506103346119a8565b3480156107e957600080fd5b50610334611a36565b3480156107fe57600080fd5b506102c760095481565b34801561081457600080fd5b5061031d611a45565b34801561082957600080fd5b506102fa6108383660046128d7565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561087257600080fd5b5061031d6108813660046128bc565b611a9f565b34801561089257600080fd5b506102fa6108a1366004612a59565b611b37565b60006108b56001546000190190565b905090565b60006001600160e01b031982166380ac58cd60e01b14806108eb57506001600160e01b03198216635b5e139f60e01b145b8061090657506001600160e01b0319821663780e9d6360e01b145b8061092157506301ffc9a760e01b6001600160e01b03198316145b92915050565b600181101561097d5760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e00000000000060448201526064015b60405180910390fd5b6002548111156109e65760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060448201526d32b9103a3930b739b0b1ba34b7b760911b6064820152608401610974565b60115460ff161515600114610a3d5760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e67206973206e6f74206f70656e207269676874206e6f772100006044820152606401610974565b610a478282611b37565b610a635760405162461bcd60e51b815260040161097490612c29565b7f000000000000000000000000000000000000000000000000000000000000000081610a8d6108a6565b610a979190612d66565b1115610ab55760405162461bcd60e51b815260040161097490612c79565b610abe81611bba565b3414610b1d5760405162461bcd60e51b815260206004820152602860248201527f56616c75652062656c6f77207265717569726564206d696e742066656520666f6044820152671c88185b5bdd5b9d60c21b6064820152608401610974565b610b2982826000611bca565b5050565b606060038054610b3c90612e1c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6890612e1c565b8015610bb55780601f10610b8a57610100808354040283529160200191610bb5565b820191906000526020600020905b815481529060010190602001808311610b9857829003601f168201915b5050505050905090565b6000610bca82611be5565b610c2c5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610974565b506000908152600760205260409020546001600160a01b031690565b6000610c538261114b565b9050806001600160a01b0316836001600160a01b03161415610cc25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610974565b336001600160a01b0382161480610cde5750610cde8133610838565b610d505760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610974565b610d5b838383611bfb565b505050565b610d5b838383611c57565b600c8181548110610d7b57600080fd5b600091825260209091200154905081565b6000610d9783611196565b8210610df05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610974565b6000610dfa6108a6565b905060008060005b83811015610ea4576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610e5557805192505b876001600160a01b0316836001600160a01b03161415610e915786841415610e835750935061092192505050565b83610e8d81612e57565b9450505b5080610e9c81612e57565b915050610e02565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610974565b6000546001600160a01b03163314610f2e5760405162461bcd60e51b815260040161097490612cbc565b6011805460ff19169055565b6000546001600160a01b03163314610f645760405162461bcd60e51b815260040161097490612cbc565b60008111610fb45760405162461bcd60e51b815260206004820152601b60248201527f4d757374206d696e74206174206c65617374203120746f6b656e2e00000000006044820152606401610974565b7f000000000000000000000000000000000000000000000000000000000000000081610fde6108a6565b610fe89190612d66565b11156110065760405162461bcd60e51b815260040161097490612c79565b610b2982826001611bca565b610d5b838383604051806020016040528060008152506117d1565b60006110376108a6565b82106110915760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610974565b5090565b6000546001600160a01b031633146110bf5760405162461bcd60e51b815260040161097490612cbc565b60018110156111105760405162461bcd60e51b815260206004820152601b60248201527f4d6178206d696e74206d757374206265206174206c65617374203100000000006044820152606401610974565b600255565b6000546001600160a01b0316331461113f5760405162461bcd60e51b815260040161097490612cbc565b610d5b60108383612810565b600061115682611fdc565b5192915050565b6000546001600160a01b031633146111875760405162461bcd60e51b815260040161097490612cbc565b6011805460ff19166001179055565b60006001600160a01b0382166112025760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610974565b506001600160a01b03166000908152600660205260409020546001600160801b031690565b6000546001600160a01b031633146112515760405162461bcd60e51b815260040161097490612cbc565b61125b600061210c565b565b7f000000000000000000000000000000000000000000000000000000000000000061128661198f565b11156112a45760405162461bcd60e51b815260040161097490612c79565b60115460ff1615156001146112fb5760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e67206973206e6f74206f70656e207269676874206e6f772100006044820152606401610974565b611306816001611b37565b6113225760405162461bcd60e51b815260040161097490612c29565b60125434146113835760405162461bcd60e51b815260206004820152602760248201527f56616c7565206e6565647320746f2062652065786163746c7920746865206d696044820152666e74206665652160c81b6064820152608401610974565b6113908160016000611bca565b50565b6000546001600160a01b031633146113bd5760405162461bcd60e51b815260040161097490612cbc565b600047116113ca57600080fd5b61125b61215c565b600b81815481106113e257600080fd5b6000918252602090912001546001600160a01b0316905081565b6000546001600160a01b031633146114265760405162461bcd60e51b815260040161097490612cbc565b60018110156114875760405162461bcd60e51b815260206004820152602760248201527f4d6178206d696e7473207065722077616c6c6574206d757374206265206174206044820152666c65617374203160c81b6064820152608401610974565b601355565b6000546001600160a01b031633146114b65760405162461bcd60e51b815260040161097490612cbc565b601255565b604080518082019091526000808252602082015261092182611fdc565b606060048054610b3c90612e1c565b6001600160a01b0382163314156115405760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610974565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146115d65760405162461bcd60e51b815260040161097490612cbc565b600081116115e357600080fd5b6040516370a0823160e01b8152306004820152829082906001600160a01b038316906370a082319060240160206040518083038186803b15801561162657600080fd5b505afa15801561163a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165e9190612b65565b10156116b85760405162461bcd60e51b815260206004820152602360248201527f436f6e747261637420646f6573206e6f74206f776e20656e6f75676820746f6b604482015262656e7360e81b6064820152608401610974565b60005b600d548110156117cb57816001600160a01b031663a9059cbb600b83815481106116e7576116e7612eb2565b9060005260206000200160009054906101000a90046001600160a01b03166064600c858154811061171a5761171a612eb2565b9060005260206000200154876117309190612d92565b61173a9190612d7e565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b15801561178057600080fd5b505af1158015611794573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117b89190612a83565b50806117c381612e57565b9150506116bb565b50505050565b6117dc848484611c57565b6117e8848484846121ea565b6117cb5760405162461bcd60e51b815260040161097490612cf1565b600a546001600160a01b0316331461185e5760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610974565b600a546001600160a01b03828116911614156118cf5760405162461bcd60e51b815260206004820152602a60248201527f52414d50503a204e65772052616d70702061646472657373206d75737420626560448201526908191a5999995c995b9d60b21b6064820152608401610974565b600a80546001600160a01b0319166001600160a01b038316179055600b805482919060009061190057611900612eb2565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b6060600061193d611a36565b9050600081511161195d5760405180602001604052806000815250611988565b80611967846122f8565b604051602001611978929190612baa565b6040516020818303038152906040525b9392505050565b60006108b56119a16001546000190190565b60016123f6565b601080546119b590612e1c565b80601f01602080910402602001604051908101604052809291908181526020018280546119e190612e1c565b8015611a2e5780601f10611a0357610100808354040283529160200191611a2e565b820191906000526020600020905b815481529060010190602001808311611a1157829003601f168201915b505050505081565b606060108054610b3c90612e1c565b600a546001600160a01b031633146113bd5760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610974565b6000546001600160a01b03163314611ac95760405162461bcd60e51b815260040161097490612cbc565b6001600160a01b038116611b2e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610974565b6113908161210c565b60006001821015611b9c5760405162461bcd60e51b815260206004820152602960248201527f416d6f756e74206d7573742062652067726561746572207468616e206f7220656044820152687175616c20746f203160b81b6064820152608401610974565b601354611bb1611bab85612402565b846123f6565b11159392505050565b60125460009061092190836124a0565b610d5b838383604051806020016040528060008152506124ac565b6000816001111580156109215750506001541190565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611c6282611fdc565b80519091506000906001600160a01b0316336001600160a01b03161480611c99575033611c8e84610bbf565b6001600160a01b0316145b80611cab57508151611cab9033610838565b905080611d155760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610974565b846001600160a01b031682600001516001600160a01b031614611d895760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610974565b6001600160a01b038416611ded5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610974565b611dfd6000848460000151611bfb565b6001600160a01b0385166000908152600660205260408120805460019290611e2f9084906001600160801b0316612db1565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526006602052604081208054600194509092611e7b91859116612d44565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526005909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611f03846001612d66565b6000818152600560205260409020549091506001600160a01b0316611f9357611f2b81611be5565b15611f935760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600590935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b60408051808201909152600080825260208201528180600111158015612003575060015481105b156120ac576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215612055579392505050565b50600019016000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156120a7579392505050565b612055565b60405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610974565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b4760005b600d54811015610b29576121d8600b828154811061218057612180612eb2565b9060005260206000200160009054906101000a90046001600160a01b03166064600c84815481106121b3576121b3612eb2565b9060005260206000200154856121c99190612d92565b6121d39190612d7e565b61277a565b806121e281612e57565b915050612160565b60006001600160a01b0384163b156122ec57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061222e903390899088908890600401612bd9565b602060405180830381600087803b15801561224857600080fd5b505af1925050508015612278575060408051601f3d908101601f1916820190925261227591810190612abd565b60015b6122d2573d8080156122a6576040519150601f19603f3d011682016040523d82523d6000602084013e6122ab565b606091505b5080516122ca5760405162461bcd60e51b815260040161097490612cf1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506122f0565b5060015b949350505050565b60608161231c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612346578061233081612e57565b915061233f9050600a83612d7e565b9150612320565b60008167ffffffffffffffff81111561236157612361612ec8565b6040519080825280601f01601f19166020018201604052801561238b576020820181803683370190505b5090505b84156122f0576123a0600183612dd9565b91506123ad600a86612e72565b6123b8906030612d66565b60f81b8183815181106123cd576123cd612eb2565b60200101906001600160f81b031916908160001a9053506123ef600a86612d7e565b945061238f565b60006119888284612d66565b60006001600160a01b0382166124745760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610974565b506001600160a01b0316600090815260066020526040902054600160801b90046001600160801b031690565b60006119888284612d92565b6001546001600160a01b03851661250f5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610974565b61251881611be5565b156125655760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610974565b826125c7576002548411156125c75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610974565b6001600160a01b0385166000908152600660209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612623908890612d44565b6001600160801b031681526020018561263c578661263f565b60005b836020015161264e9190612d44565b6001600160801b039081169091526001600160a01b0380891660008181526006602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526005909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8681101561276e5760405182906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461273260008984886121ea565b61274e5760405162461bcd60e51b815260040161097490612cf1565b8161275881612e57565b925050808061276690612e57565b9150506126e5565b50600155505050505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146127c7576040519150601f19603f3d011682016040523d82523d6000602084013e6127cc565b606091505b5050905080610d5b5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610974565b82805461281c90612e1c565b90600052602060002090601f01602090048101928261283e5760008555612884565b82601f106128575782800160ff19823516178555612884565b82800160010185558215612884579182015b82811115612884578235825591602001919060010190612869565b506110919291505b80821115611091576000815560010161288c565b80356001600160a01b03811681146128b757600080fd5b919050565b6000602082840312156128ce57600080fd5b611988826128a0565b600080604083850312156128ea57600080fd5b6128f3836128a0565b9150612901602084016128a0565b90509250929050565b60008060006060848603121561291f57600080fd5b612928846128a0565b9250612936602085016128a0565b9150604084013590509250925092565b6000806000806080858703121561295c57600080fd5b612965856128a0565b9350612973602086016128a0565b925060408501359150606085013567ffffffffffffffff8082111561299757600080fd5b818701915087601f8301126129ab57600080fd5b8135818111156129bd576129bd612ec8565b604051601f8201601f19908116603f011681019083821181831017156129e5576129e5612ec8565b816040528281528a60208487010111156129fe57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612a3557600080fd5b612a3e836128a0565b91506020830135612a4e81612ede565b809150509250929050565b60008060408385031215612a6c57600080fd5b612a75836128a0565b946020939093013593505050565b600060208284031215612a9557600080fd5b815161198881612ede565b600060208284031215612ab257600080fd5b813561198881612eec565b600060208284031215612acf57600080fd5b815161198881612eec565b60008060208385031215612aed57600080fd5b823567ffffffffffffffff80821115612b0557600080fd5b818501915085601f830112612b1957600080fd5b813581811115612b2857600080fd5b866020828501011115612b3a57600080fd5b60209290920196919550909350505050565b600060208284031215612b5e57600080fd5b5035919050565b600060208284031215612b7757600080fd5b5051919050565b60008151808452612b96816020860160208601612df0565b601f01601f19169290920160200192915050565b60008351612bbc818460208801612df0565b835190830190612bd0818360208801612df0565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c0c90830184612b7e565b9695505050505050565b6020815260006119886020830184612b7e565b60208082526030908201527f57616c6c65742061646472657373206973206f76657220746865206d6178696d60408201526f756d20616c6c6f776564206d696e747360801b606082015260800190565b60208082526023908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f66203560408201526203030360ec1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612bd057612bd0612e86565b60008219821115612d7957612d79612e86565b500190565b600082612d8d57612d8d612e9c565b500490565b6000816000190483118215151615612dac57612dac612e86565b500290565b60006001600160801b0383811690831681811015612dd157612dd1612e86565b039392505050565b600082821015612deb57612deb612e86565b500390565b60005b83811015612e0b578181015183820152602001612df3565b838111156117cb5750506000910152565b600181811c90821680612e3057607f821691505b60208210811415612e5157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e6b57612e6b612e86565b5060010190565b600082612e8157612e81612e9c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461139057600080fd5b6001600160e01b03198116811461139057600080fdfea2646970667358221220149834adf5ac30e2763f44e5b8eee34c22eb682b828a325346d98c96749eb6af64736f6c63430008070033697066733a2f2f516d664e624d7a4b55576365575967667137366373555139534d5653427a654d354e5a6279376f63764c7a7274512f

Deployed Bytecode

0x6080604052600436106102ad5760003560e01c8063715018a611610175578063b40ebceb116100dc578063cfc86f7b11610095578063dcd4aa8b1161006f578063dcd4aa8b14610808578063e985e9c51461081d578063f2fde38b14610866578063fd19eaf01461088657600080fd5b8063cfc86f7b146107c8578063d547cfb7146107dd578063d7224ba0146107f257600080fd5b8063b40ebceb14610713578063b88d4fde14610733578063bbd8556b14610753578063c5815c4114610773578063c87b56dd14610793578063caa0f92a146107b357600080fd5b80638f4bb4971161012e5780638f4bb497146106365780638ff4013f1461065057806391b7f5ed146106705780639231ab2a1461069057806395d89b41146106de578063a22cb465146106f357600080fd5b8063715018a6146105a5578063755edd17146105ba578063853828b6146105cd578063891bbe73146105e25780638d859f3e146106025780638da5cb5b1461061857600080fd5b80633e07311c116102195780634f6ccce7116101d25780634f6ccce7146104f0578063547520fe1461051057806355f804b3146105305780636352211e146105505780636ba9fd381461057057806370a082311461058557600080fd5b80633e07311c1461043b5780633e3e0b121461045157806340ccc0821461046657806342842e0e1461048657806345c0f533146104a65780634ab8b5dd146104da57600080fd5b806318160ddd1161026b57806318160ddd146102b257806323b872dd14610399578063286c8137146103b95780632913daa0146103d95780632f745c59146103ef57806338b903331461040f57600080fd5b80629a9b7b146102b257806301ffc9a7146102da5780630644cefa1461030a57806306fdde031461031f578063081812fc14610341578063095ea7b314610379575b600080fd5b3480156102be57600080fd5b506102c76108a6565b6040519081526020015b60405180910390f35b3480156102e657600080fd5b506102fa6102f5366004612aa0565b6108ba565b60405190151581526020016102d1565b61031d610318366004612a59565b610927565b005b34801561032b57600080fd5b50610334610b2d565b6040516102d19190612c16565b34801561034d57600080fd5b5061036161035c366004612b4c565b610bbf565b6040516001600160a01b0390911681526020016102d1565b34801561038557600080fd5b5061031d610394366004612a59565b610c48565b3480156103a557600080fd5b5061031d6103b436600461290a565b610d60565b3480156103c557600080fd5b506102c76103d4366004612b4c565b610d6b565b3480156103e557600080fd5b506102c760025481565b3480156103fb57600080fd5b506102c761040a366004612a59565b610d8c565b34801561041b57600080fd5b50600f546104299060ff1681565b60405160ff90911681526020016102d1565b34801561044757600080fd5b506102c7600d5481565b34801561045d57600080fd5b5061031d610f04565b34801561047257600080fd5b5061031d610481366004612a59565b610f3a565b34801561049257600080fd5b5061031d6104a136600461290a565b611012565b3480156104b257600080fd5b506102c77f000000000000000000000000000000000000000000000000000000000000138881565b3480156104e657600080fd5b506102c760135481565b3480156104fc57600080fd5b506102c761050b366004612b4c565b61102d565b34801561051c57600080fd5b5061031d61052b366004612b4c565b611095565b34801561053c57600080fd5b5061031d61054b366004612ada565b611115565b34801561055c57600080fd5b5061036161056b366004612b4c565b61114b565b34801561057c57600080fd5b5061031d61115d565b34801561059157600080fd5b506102c76105a03660046128bc565b611196565b3480156105b157600080fd5b5061031d611227565b61031d6105c83660046128bc565b61125d565b3480156105d957600080fd5b5061031d611393565b3480156105ee57600080fd5b506103616105fd366004612b4c565b6113d2565b34801561060e57600080fd5b506102c760125481565b34801561062457600080fd5b506000546001600160a01b0316610361565b34801561064257600080fd5b506011546102fa9060ff1681565b34801561065c57600080fd5b5061031d61066b366004612b4c565b6113fc565b34801561067c57600080fd5b5061031d61068b366004612b4c565b61148c565b34801561069c57600080fd5b506106b06106ab366004612b4c565b6114bb565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016102d1565b3480156106ea57600080fd5b506103346114d8565b3480156106ff57600080fd5b5061031d61070e366004612a22565b6114e7565b34801561071f57600080fd5b5061031d61072e366004612a59565b6115ac565b34801561073f57600080fd5b5061031d61074e366004612946565b6117d1565b34801561075f57600080fd5b5061031d61076e3660046128bc565b611804565b34801561077f57600080fd5b50600a54610361906001600160a01b031681565b34801561079f57600080fd5b506103346107ae366004612b4c565b611931565b3480156107bf57600080fd5b506102c761198f565b3480156107d457600080fd5b506103346119a8565b3480156107e957600080fd5b50610334611a36565b3480156107fe57600080fd5b506102c760095481565b34801561081457600080fd5b5061031d611a45565b34801561082957600080fd5b506102fa6108383660046128d7565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561087257600080fd5b5061031d6108813660046128bc565b611a9f565b34801561089257600080fd5b506102fa6108a1366004612a59565b611b37565b60006108b56001546000190190565b905090565b60006001600160e01b031982166380ac58cd60e01b14806108eb57506001600160e01b03198216635b5e139f60e01b145b8061090657506001600160e01b0319821663780e9d6360e01b145b8061092157506301ffc9a760e01b6001600160e01b03198316145b92915050565b600181101561097d5760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e00000000000060448201526064015b60405180910390fd5b6002548111156109e65760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060448201526d32b9103a3930b739b0b1ba34b7b760911b6064820152608401610974565b60115460ff161515600114610a3d5760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e67206973206e6f74206f70656e207269676874206e6f772100006044820152606401610974565b610a478282611b37565b610a635760405162461bcd60e51b815260040161097490612c29565b7f000000000000000000000000000000000000000000000000000000000000138881610a8d6108a6565b610a979190612d66565b1115610ab55760405162461bcd60e51b815260040161097490612c79565b610abe81611bba565b3414610b1d5760405162461bcd60e51b815260206004820152602860248201527f56616c75652062656c6f77207265717569726564206d696e742066656520666f6044820152671c88185b5bdd5b9d60c21b6064820152608401610974565b610b2982826000611bca565b5050565b606060038054610b3c90612e1c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6890612e1c565b8015610bb55780601f10610b8a57610100808354040283529160200191610bb5565b820191906000526020600020905b815481529060010190602001808311610b9857829003601f168201915b5050505050905090565b6000610bca82611be5565b610c2c5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610974565b506000908152600760205260409020546001600160a01b031690565b6000610c538261114b565b9050806001600160a01b0316836001600160a01b03161415610cc25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610974565b336001600160a01b0382161480610cde5750610cde8133610838565b610d505760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610974565b610d5b838383611bfb565b505050565b610d5b838383611c57565b600c8181548110610d7b57600080fd5b600091825260209091200154905081565b6000610d9783611196565b8210610df05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610974565b6000610dfa6108a6565b905060008060005b83811015610ea4576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610e5557805192505b876001600160a01b0316836001600160a01b03161415610e915786841415610e835750935061092192505050565b83610e8d81612e57565b9450505b5080610e9c81612e57565b915050610e02565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610974565b6000546001600160a01b03163314610f2e5760405162461bcd60e51b815260040161097490612cbc565b6011805460ff19169055565b6000546001600160a01b03163314610f645760405162461bcd60e51b815260040161097490612cbc565b60008111610fb45760405162461bcd60e51b815260206004820152601b60248201527f4d757374206d696e74206174206c65617374203120746f6b656e2e00000000006044820152606401610974565b7f000000000000000000000000000000000000000000000000000000000000138881610fde6108a6565b610fe89190612d66565b11156110065760405162461bcd60e51b815260040161097490612c79565b610b2982826001611bca565b610d5b838383604051806020016040528060008152506117d1565b60006110376108a6565b82106110915760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610974565b5090565b6000546001600160a01b031633146110bf5760405162461bcd60e51b815260040161097490612cbc565b60018110156111105760405162461bcd60e51b815260206004820152601b60248201527f4d6178206d696e74206d757374206265206174206c65617374203100000000006044820152606401610974565b600255565b6000546001600160a01b0316331461113f5760405162461bcd60e51b815260040161097490612cbc565b610d5b60108383612810565b600061115682611fdc565b5192915050565b6000546001600160a01b031633146111875760405162461bcd60e51b815260040161097490612cbc565b6011805460ff19166001179055565b60006001600160a01b0382166112025760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610974565b506001600160a01b03166000908152600660205260409020546001600160801b031690565b6000546001600160a01b031633146112515760405162461bcd60e51b815260040161097490612cbc565b61125b600061210c565b565b7f000000000000000000000000000000000000000000000000000000000000138861128661198f565b11156112a45760405162461bcd60e51b815260040161097490612c79565b60115460ff1615156001146112fb5760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e67206973206e6f74206f70656e207269676874206e6f772100006044820152606401610974565b611306816001611b37565b6113225760405162461bcd60e51b815260040161097490612c29565b60125434146113835760405162461bcd60e51b815260206004820152602760248201527f56616c7565206e6565647320746f2062652065786163746c7920746865206d696044820152666e74206665652160c81b6064820152608401610974565b6113908160016000611bca565b50565b6000546001600160a01b031633146113bd5760405162461bcd60e51b815260040161097490612cbc565b600047116113ca57600080fd5b61125b61215c565b600b81815481106113e257600080fd5b6000918252602090912001546001600160a01b0316905081565b6000546001600160a01b031633146114265760405162461bcd60e51b815260040161097490612cbc565b60018110156114875760405162461bcd60e51b815260206004820152602760248201527f4d6178206d696e7473207065722077616c6c6574206d757374206265206174206044820152666c65617374203160c81b6064820152608401610974565b601355565b6000546001600160a01b031633146114b65760405162461bcd60e51b815260040161097490612cbc565b601255565b604080518082019091526000808252602082015261092182611fdc565b606060048054610b3c90612e1c565b6001600160a01b0382163314156115405760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610974565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146115d65760405162461bcd60e51b815260040161097490612cbc565b600081116115e357600080fd5b6040516370a0823160e01b8152306004820152829082906001600160a01b038316906370a082319060240160206040518083038186803b15801561162657600080fd5b505afa15801561163a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165e9190612b65565b10156116b85760405162461bcd60e51b815260206004820152602360248201527f436f6e747261637420646f6573206e6f74206f776e20656e6f75676820746f6b604482015262656e7360e81b6064820152608401610974565b60005b600d548110156117cb57816001600160a01b031663a9059cbb600b83815481106116e7576116e7612eb2565b9060005260206000200160009054906101000a90046001600160a01b03166064600c858154811061171a5761171a612eb2565b9060005260206000200154876117309190612d92565b61173a9190612d7e565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b15801561178057600080fd5b505af1158015611794573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117b89190612a83565b50806117c381612e57565b9150506116bb565b50505050565b6117dc848484611c57565b6117e8848484846121ea565b6117cb5760405162461bcd60e51b815260040161097490612cf1565b600a546001600160a01b0316331461185e5760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610974565b600a546001600160a01b03828116911614156118cf5760405162461bcd60e51b815260206004820152602a60248201527f52414d50503a204e65772052616d70702061646472657373206d75737420626560448201526908191a5999995c995b9d60b21b6064820152608401610974565b600a80546001600160a01b0319166001600160a01b038316179055600b805482919060009061190057611900612eb2565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b6060600061193d611a36565b9050600081511161195d5760405180602001604052806000815250611988565b80611967846122f8565b604051602001611978929190612baa565b6040516020818303038152906040525b9392505050565b60006108b56119a16001546000190190565b60016123f6565b601080546119b590612e1c565b80601f01602080910402602001604051908101604052809291908181526020018280546119e190612e1c565b8015611a2e5780601f10611a0357610100808354040283529160200191611a2e565b820191906000526020600020905b815481529060010190602001808311611a1157829003601f168201915b505050505081565b606060108054610b3c90612e1c565b600a546001600160a01b031633146113bd5760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610974565b6000546001600160a01b03163314611ac95760405162461bcd60e51b815260040161097490612cbc565b6001600160a01b038116611b2e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610974565b6113908161210c565b60006001821015611b9c5760405162461bcd60e51b815260206004820152602960248201527f416d6f756e74206d7573742062652067726561746572207468616e206f7220656044820152687175616c20746f203160b81b6064820152608401610974565b601354611bb1611bab85612402565b846123f6565b11159392505050565b60125460009061092190836124a0565b610d5b838383604051806020016040528060008152506124ac565b6000816001111580156109215750506001541190565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611c6282611fdc565b80519091506000906001600160a01b0316336001600160a01b03161480611c99575033611c8e84610bbf565b6001600160a01b0316145b80611cab57508151611cab9033610838565b905080611d155760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610974565b846001600160a01b031682600001516001600160a01b031614611d895760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610974565b6001600160a01b038416611ded5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610974565b611dfd6000848460000151611bfb565b6001600160a01b0385166000908152600660205260408120805460019290611e2f9084906001600160801b0316612db1565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526006602052604081208054600194509092611e7b91859116612d44565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526005909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611f03846001612d66565b6000818152600560205260409020549091506001600160a01b0316611f9357611f2b81611be5565b15611f935760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600590935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b60408051808201909152600080825260208201528180600111158015612003575060015481105b156120ac576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215612055579392505050565b50600019016000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156120a7579392505050565b612055565b60405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610974565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b4760005b600d54811015610b29576121d8600b828154811061218057612180612eb2565b9060005260206000200160009054906101000a90046001600160a01b03166064600c84815481106121b3576121b3612eb2565b9060005260206000200154856121c99190612d92565b6121d39190612d7e565b61277a565b806121e281612e57565b915050612160565b60006001600160a01b0384163b156122ec57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061222e903390899088908890600401612bd9565b602060405180830381600087803b15801561224857600080fd5b505af1925050508015612278575060408051601f3d908101601f1916820190925261227591810190612abd565b60015b6122d2573d8080156122a6576040519150601f19603f3d011682016040523d82523d6000602084013e6122ab565b606091505b5080516122ca5760405162461bcd60e51b815260040161097490612cf1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506122f0565b5060015b949350505050565b60608161231c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612346578061233081612e57565b915061233f9050600a83612d7e565b9150612320565b60008167ffffffffffffffff81111561236157612361612ec8565b6040519080825280601f01601f19166020018201604052801561238b576020820181803683370190505b5090505b84156122f0576123a0600183612dd9565b91506123ad600a86612e72565b6123b8906030612d66565b60f81b8183815181106123cd576123cd612eb2565b60200101906001600160f81b031916908160001a9053506123ef600a86612d7e565b945061238f565b60006119888284612d66565b60006001600160a01b0382166124745760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610974565b506001600160a01b0316600090815260066020526040902054600160801b90046001600160801b031690565b60006119888284612d92565b6001546001600160a01b03851661250f5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610974565b61251881611be5565b156125655760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610974565b826125c7576002548411156125c75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610974565b6001600160a01b0385166000908152600660209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612623908890612d44565b6001600160801b031681526020018561263c578661263f565b60005b836020015161264e9190612d44565b6001600160801b039081169091526001600160a01b0380891660008181526006602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526005909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8681101561276e5760405182906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461273260008984886121ea565b61274e5760405162461bcd60e51b815260040161097490612cf1565b8161275881612e57565b925050808061276690612e57565b9150506126e5565b50600155505050505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146127c7576040519150601f19603f3d011682016040523d82523d6000602084013e6127cc565b606091505b5050905080610d5b5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610974565b82805461281c90612e1c565b90600052602060002090601f01602090048101928261283e5760008555612884565b82601f106128575782800160ff19823516178555612884565b82800160010185558215612884579182015b82811115612884578235825591602001919060010190612869565b506110919291505b80821115611091576000815560010161288c565b80356001600160a01b03811681146128b757600080fd5b919050565b6000602082840312156128ce57600080fd5b611988826128a0565b600080604083850312156128ea57600080fd5b6128f3836128a0565b9150612901602084016128a0565b90509250929050565b60008060006060848603121561291f57600080fd5b612928846128a0565b9250612936602085016128a0565b9150604084013590509250925092565b6000806000806080858703121561295c57600080fd5b612965856128a0565b9350612973602086016128a0565b925060408501359150606085013567ffffffffffffffff8082111561299757600080fd5b818701915087601f8301126129ab57600080fd5b8135818111156129bd576129bd612ec8565b604051601f8201601f19908116603f011681019083821181831017156129e5576129e5612ec8565b816040528281528a60208487010111156129fe57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612a3557600080fd5b612a3e836128a0565b91506020830135612a4e81612ede565b809150509250929050565b60008060408385031215612a6c57600080fd5b612a75836128a0565b946020939093013593505050565b600060208284031215612a9557600080fd5b815161198881612ede565b600060208284031215612ab257600080fd5b813561198881612eec565b600060208284031215612acf57600080fd5b815161198881612eec565b60008060208385031215612aed57600080fd5b823567ffffffffffffffff80821115612b0557600080fd5b818501915085601f830112612b1957600080fd5b813581811115612b2857600080fd5b866020828501011115612b3a57600080fd5b60209290920196919550909350505050565b600060208284031215612b5e57600080fd5b5035919050565b600060208284031215612b7757600080fd5b5051919050565b60008151808452612b96816020860160208601612df0565b601f01601f19169290920160200192915050565b60008351612bbc818460208801612df0565b835190830190612bd0818360208801612df0565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c0c90830184612b7e565b9695505050505050565b6020815260006119886020830184612b7e565b60208082526030908201527f57616c6c65742061646472657373206973206f76657220746865206d6178696d60408201526f756d20616c6c6f776564206d696e747360801b606082015260800190565b60208082526023908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f66203560408201526203030360ec1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612bd057612bd0612e86565b60008219821115612d7957612d79612e86565b500190565b600082612d8d57612d8d612e9c565b500490565b6000816000190483118215151615612dac57612dac612e86565b500290565b60006001600160801b0383811690831681811015612dd157612dd1612e86565b039392505050565b600082821015612deb57612deb612e86565b500390565b60005b83811015612e0b578181015183820152602001612df3565b838111156117cb5750506000910152565b600181811c90821680612e3057607f821691505b60208210811415612e5157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e6b57612e6b612e86565b5060010190565b600082612e8157612e81612e9c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461139057600080fd5b6001600160e01b03198116811461139057600080fdfea2646970667358221220149834adf5ac30e2763f44e5b8eee34c22eb682b828a325346d98c96749eb6af64736f6c63430008070033

Deployed Bytecode Sourcemap

58970:120:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36855:90;;;;;;;;;;;;;:::i;:::-;;;20747:25:1;;;20735:2;20720:18;36855:90:0;;;;;;;;38620:370;;;;;;;;;;-1:-1:-1;38620:370:0;;;;;:::i;:::-;;:::i;:::-;;;6520:14:1;;6513:22;6495:41;;6483:2;6468:18;38620:370:0;6355:187:1;56139:654:0;;;;;;:::i;:::-;;:::i;:::-;;40685:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42100:204::-;;;;;;;;;;-1:-1:-1;42100:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5539:32:1;;;5521:51;;5509:2;5494:18;42100:204:0;5375:203:1;41663:379:0;;;;;;;;;;-1:-1:-1;41663:379:0;;;;;:::i;:::-;;:::i;42950:142::-;;;;;;;;;;-1:-1:-1;42950:142:0;;;;;:::i;:::-;;:::i;51971:37::-;;;;;;;;;;-1:-1:-1;51971:37:0;;;;;:::i;:::-;;:::i;35187:27::-;;;;;;;;;;;;;;;;37812:744;;;;;;;;;;-1:-1:-1;37812:744:0;;;;;:::i;:::-;;:::i;54410:33::-;;;;;;;;;;-1:-1:-1;54410:33:0;;;;;;;;;;;20955:4:1;20943:17;;;20925:36;;20913:2;20898:18;54410:33:0;20783:184:1;52013:38:0;;;;;;;;;;;;;;;;56886:78;;;;;;;;;;;;;:::i;54970:274::-;;;;;;;;;;-1:-1:-1;54970:274:0;;;;;:::i;:::-;;:::i;43155:157::-;;;;;;;;;;-1:-1:-1;43155:157:0;;;;;:::i;:::-;;:::i;35143:39::-;;;;;;;;;;;;;;;54631:36;;;;;;;;;;;;;;;;37344:177;;;;;;;;;;-1:-1:-1;37344:177:0;;;;;:::i;:::-;;:::i;57951:173::-;;;;;;;;;;-1:-1:-1;57951:173:0;;;;;:::i;:::-;;:::i;58599:106::-;;;;;;;;;;-1:-1:-1;58599:106:0;;;;;:::i;:::-;;:::i;40508:118::-;;;;;;;;;;-1:-1:-1;40508:118:0;;;;;:::i;:::-;;:::i;56801:77::-;;;;;;;;;;;;;:::i;39046:211::-;;;;;;;;;;-1:-1:-1;39046:211:0;;;;;:::i;:::-;;:::i;33418:103::-;;;;;;;;;;;;;:::i;55465:447::-;;;;;;:::i;:::-;;:::i;52058:112::-;;;;;;;;;;;;;:::i;51873:93::-;;;;;;;;;;-1:-1:-1;51873:93:0;;;;;:::i;:::-;;:::i;54588:30::-;;;;;;;;;;;;;;;;32769:87;;;;;;;;;;-1:-1:-1;32815:7:0;32842:6;-1:-1:-1;;;;;32842:6:0;32769:87;;54545:30;;;;;;;;;;-1:-1:-1;54545:30:0;;;;;;;;57579:194;;;;;;;;;;-1:-1:-1;57579:194:0;;;;;:::i;:::-;;:::i;58144:90::-;;;;;;;;;;-1:-1:-1;58144:90:0;;;;;:::i;:::-;;:::i;58713:135::-;;;;;;;;;;-1:-1:-1;58713:135:0;;;;;:::i;:::-;;:::i;:::-;;;;20466:13:1;;-1:-1:-1;;;;;20462:39:1;20444:58;;20562:4;20550:17;;;20544:24;20570:18;20540:49;20518:20;;;20511:79;;;;20417:18;58713:135:0;20234:362:1;40840:98:0;;;;;;;;;;;;;:::i;42368:274::-;;;;;;;;;;-1:-1:-1;42368:274:0;;;;;:::i;:::-;;:::i;53135:422::-;;;;;;;;;;-1:-1:-1;53135:422:0;;;;;:::i;:::-;;:::i;43375:311::-;;;;;;;;;;-1:-1:-1;43375:311:0;;;;;:::i;:::-;;:::i;53883:229::-;;;;;;;;;;-1:-1:-1;53883:229:0;;;;;:::i;:::-;;:::i;51435:72::-;;;;;;;;;;-1:-1:-1;51435:72:0;;;;-1:-1:-1;;;;;51435:72:0;;;41001:288;;;;;;;;;;-1:-1:-1;41001:288:0;;;;;:::i;:::-;;:::i;36951:109::-;;;;;;;;;;;;;:::i;54450:86::-;;;;;;;;;;;;;:::i;58492:99::-;;;;;;;;;;;;;:::i;47983:43::-;;;;;;;;;;;;;;;;52178:115;;;;;;;;;;;;;:::i;42705:186::-;;;;;;;;;;-1:-1:-1;42705:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;42850:25:0;;;42827:4;42850:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;42705:186;33674:201;;;;;;;;;;-1:-1:-1;33674:201:0;;;;;:::i;:::-;;:::i;57133:253::-;;;;;;;;;;-1:-1:-1;57133:253:0;;;;;:::i;:::-;;:::i;36855:90::-;36902:7;36925:14;36678:1;37232:12;-1:-1:-1;;37232:30:0;;37143:132;36925:14;36918:21;;36855:90;:::o;38620:370::-;38747:4;-1:-1:-1;;;;;;38777:40:0;;-1:-1:-1;;;38777:40:0;;:99;;-1:-1:-1;;;;;;;38828:48:0;;-1:-1:-1;;;38828:48:0;38777:99;:160;;;-1:-1:-1;;;;;;;38887:50:0;;-1:-1:-1;;;38887:50:0;38777:160;:207;;;-1:-1:-1;;;;;;;;;;19263:40:0;;;38948:36;38763:221;38620:370;-1:-1:-1;;38620:370:0:o;56139:654::-;56238:1;56227:7;:12;;56219:51;;;;-1:-1:-1;;;56219:51:0;;8543:2:1;56219:51:0;;;8525:21:1;8582:2;8562:18;;;8555:30;8621:28;8601:18;;;8594:56;8667:18;;56219:51:0;;;;;;;;;56300:12;;56289:7;:23;;56281:82;;;;-1:-1:-1;;;56281:82:0;;17193:2:1;56281:82:0;;;17175:21:1;17232:2;17212:18;;;17205:30;17271:34;17251:18;;;17244:62;-1:-1:-1;;;17322:18:1;;;17315:44;17376:19;;56281:82:0;16991:410:1;56281:82:0;56382:11;;;;:19;;:11;:19;56374:62;;;;-1:-1:-1;;;56374:62:0;;18023:2:1;56374:62:0;;;18005:21:1;18062:2;18042:18;;;18035:30;18101:32;18081:18;;;18074:60;18151:18;;56374:62:0;17821:354:1;56374:62:0;56465:27;56479:3;56484:7;56465:13;:27::i;:::-;56457:88;;;;-1:-1:-1;;;56457:88:0;;;;;;;:::i;:::-;56594:14;56583:7;56564:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:44;;56556:92;;;;-1:-1:-1;;;56556:92:0;;;;;;;:::i;:::-;56680:17;56689:7;56680:8;:17::i;:::-;56667:9;:30;56659:83;;;;-1:-1:-1;;;56659:83:0;;16784:2:1;56659:83:0;;;16766:21:1;16823:2;16803:18;;;16796:30;16862:34;16842:18;;;16835:62;-1:-1:-1;;;16913:18:1;;;16906:38;16961:19;;56659:83:0;16582:404:1;56659:83:0;56755:30;56765:3;56770:7;56779:5;56755:9;:30::i;:::-;56139:654;;:::o;40685:94::-;40739:13;40768:5;40761:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40685:94;:::o;42100:204::-;42168:7;42192:16;42200:7;42192;:16::i;:::-;42184:74;;;;-1:-1:-1;;;42184:74:0;;19619:2:1;42184:74:0;;;19601:21:1;19658:2;19638:18;;;19631:30;19697:34;19677:18;;;19670:62;-1:-1:-1;;;19748:18:1;;;19741:43;19801:19;;42184:74:0;19417:409:1;42184:74:0;-1:-1:-1;42274:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;42274:24:0;;42100:204::o;41663:379::-;41732:13;41748:24;41764:7;41748:15;:24::i;:::-;41732:40;;41793:5;-1:-1:-1;;;;;41787:11:0;:2;-1:-1:-1;;;;;41787:11:0;;;41779:58;;;;-1:-1:-1;;;41779:58:0;;14856:2:1;41779:58:0;;;14838:21:1;14895:2;14875:18;;;14868:30;14934:34;14914:18;;;14907:62;-1:-1:-1;;;14985:18:1;;;14978:32;15027:19;;41779:58:0;14654:398:1;41779:58:0;31575:10;-1:-1:-1;;;;;41862:21:0;;;;:62;;-1:-1:-1;41887:37:0;41904:5;31575:10;42705:186;:::i;41887:37::-;41846:153;;;;-1:-1:-1;;;41846:153:0;;12072:2:1;41846:153:0;;;12054:21:1;12111:2;12091:18;;;12084:30;12150:34;12130:18;;;12123:62;12221:27;12201:18;;;12194:55;12266:19;;41846:153:0;11870:421:1;41846:153:0;42008:28;42017:2;42021:7;42030:5;42008:8;:28::i;:::-;41725:317;41663:379;;:::o;42950:142::-;43058:28;43068:4;43074:2;43078:7;43058:9;:28::i;51971:37::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51971:37:0;:::o;37812:744::-;37921:7;37956:16;37966:5;37956:9;:16::i;:::-;37948:5;:24;37940:71;;;;-1:-1:-1;;;37940:71:0;;6973:2:1;37940:71:0;;;6955:21:1;7012:2;6992:18;;;6985:30;7051:34;7031:18;;;7024:62;-1:-1:-1;;;7102:18:1;;;7095:32;7144:19;;37940:71:0;6771:398:1;37940:71:0;38018:22;38043:13;:11;:13::i;:::-;38018:38;;38063:19;38093:25;38143:9;38138:350;38162:14;38158:1;:18;38138:350;;;38192:31;38226:14;;;:11;:14;;;;;;;;;38192:48;;;;;;;;;-1:-1:-1;;;;;38192:48:0;;;;;-1:-1:-1;;;38192:48:0;;;;;;;;;;;;38253:28;38249:89;;38314:14;;;-1:-1:-1;38249:89:0;38371:5;-1:-1:-1;;;;;38350:26:0;:17;-1:-1:-1;;;;;38350:26:0;;38346:135;;;38408:5;38393:11;:20;38389:59;;;-1:-1:-1;38435:1:0;-1:-1:-1;38428:8:0;;-1:-1:-1;;;38428:8:0;38389:59;38458:13;;;;:::i;:::-;;;;38346:135;-1:-1:-1;38178:3:0;;;;:::i;:::-;;;;38138:350;;;-1:-1:-1;38494:56:0;;-1:-1:-1;;;38494:56:0;;17608:2:1;38494:56:0;;;17590:21:1;17647:2;17627:18;;;17620:30;17686:34;17666:18;;;17659:62;-1:-1:-1;;;17737:18:1;;;17730:44;17791:19;;38494:56:0;17406:410:1;56886:78:0;32815:7;32842:6;-1:-1:-1;;;;;32842:6:0;31575:10;32989:23;32981:68;;;;-1:-1:-1;;;32981:68:0;;;;;;;:::i;:::-;56937:11:::1;:19:::0;;-1:-1:-1;;56937:19:0::1;::::0;;56886:78::o;54970:274::-;32815:7;32842:6;-1:-1:-1;;;;;32842:6:0;31575:10;32989:23;32981:68;;;;-1:-1:-1;;;32981:68:0;;;;;;;:::i;:::-;55063:1:::1;55056:4;:8;55048:48;;;::::0;-1:-1:-1;;;55048:48:0;;9302:2:1;55048:48:0::1;::::0;::::1;9284:21:1::0;9341:2;9321:18;;;9314:30;9380:29;9360:18;;;9353:57;9427:18;;55048:48:0::1;9100:351:1::0;55048:48:0::1;55143:14;55135:4;55116:16;:14;:16::i;:::-;:23;;;;:::i;:::-;:41;;55108:89;;;;-1:-1:-1::0;;;55108:89:0::1;;;;;;;:::i;:::-;55209:26;55219:3;55224:4;55230;55209:9;:26::i;43155:157::-:0;43267:39;43284:4;43290:2;43294:7;43267:39;;;;;;;;;;;;:16;:39::i;37344:177::-;37411:7;37443:13;:11;:13::i;:::-;37435:5;:21;37427:69;;;;-1:-1:-1;;;37427:69:0;;8898:2:1;37427:69:0;;;8880:21:1;8937:2;8917:18;;;8910:30;8976:34;8956:18;;;8949:62;-1:-1:-1;;;9027:18:1;;;9020:33;9070:19;;37427:69:0;8696:399:1;37427:69:0;-1:-1:-1;37510:5:0;37344:177::o;57951:173::-;32815:7;32842:6;-1:-1:-1;;;;;32842:6:0;31575:10;32989:23;32981:68;;;;-1:-1:-1;;;32981:68:0;;;;;;;:::i;:::-;58044:1:::1;58029:11;:16;;58021:56;;;::::0;-1:-1:-1;;;58021:56:0;;7376:2:1;58021:56:0::1;::::0;::::1;7358:21:1::0;7415:2;7395:18;;;7388:30;7454:29;7434:18;;;7427:57;7501:18;;58021:56:0::1;7174:351:1::0;58021:56:0::1;58089:12;:26:::0;57951:173::o;58599:106::-;32815:7;32842:6;-1:-1:-1;;;;;32842:6:0;31575:10;32989:23;32981:68;;;;-1:-1:-1;;;32981:68:0;;;;;;;:::i;:::-;58674:23:::1;:13;58690:7:::0;;58674:23:::1;:::i;40508:118::-:0;40572:7;40595:20;40607:7;40595:11;:20::i;:::-;:25;;40508:118;-1:-1:-1;;40508:118:0:o;56801:77::-;32815:7;32842:6;-1:-1:-1;;;;;32842:6:0;31575:10;32989:23;32981:68;;;;-1:-1:-1;;;32981:68:0;;;;;;;:::i;:::-;56852:11:::1;:18:::0;;-1:-1:-1;;56852:18:0::1;56866:4;56852:18;::::0;;56801:77::o;39046:211::-;39110:7;-1:-1:-1;;;;;39134:19:0;;39126:75;;;;-1:-1:-1;;;39126:75:0;;12902:2:1;39126:75:0;;;12884:21:1;12941:2;12921:18;;;12914:30;12980:34;12960:18;;;12953:62;-1:-1:-1;;;13031:18:1;;;13024:41;13082:19;;39126:75:0;12700:407:1;39126:75:0;-1:-1:-1;;;;;;39223:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;39223:27:0;;39046:211::o;33418:103::-;32815:7;32842:6;-1:-1:-1;;;;;32842:6:0;31575:10;32989:23;32981:68;;;;-1:-1:-1;;;32981:68:0;;;;;;;:::i;:::-;33483:30:::1;33510:1;33483:18;:30::i;:::-;33418:103::o:0;55465:447::-;55548:14;55528:16;:14;:16::i;:::-;:34;;55520:82;;;;-1:-1:-1;;;55520:82:0;;;;;;;:::i;:::-;55621:11;;;;:19;;:11;:19;55613:62;;;;-1:-1:-1;;;55613:62:0;;18023:2:1;55613:62:0;;;18005:21:1;18062:2;18042:18;;;18035:30;18101:32;18081:18;;;18074:60;18151:18;;55613:62:0;17821:354:1;55613:62:0;55704:21;55718:3;55723:1;55704:13;:21::i;:::-;55696:82;;;;-1:-1:-1;;;55696:82:0;;;;;;;:::i;:::-;55810:5;;55797:9;:18;55789:70;;;;-1:-1:-1;;;55789:70:0;;11664:2:1;55789:70:0;;;11646:21:1;11703:2;11683:18;;;11676:30;11742:34;11722:18;;;11715:62;-1:-1:-1;;;11793:18:1;;;11786:37;11840:19;;55789:70:0;11462:403:1;55789:70:0;55880:24;55890:3;55895:1;55898:5;55880:9;:24::i;:::-;55465:447;:::o;52058:112::-;32815:7;32842:6;-1:-1:-1;;;;;32842:6:0;31575:10;32989:23;32981:68;;;;-1:-1:-1;;;32981:68:0;;;;;;;:::i;:::-;52139:1:::1;52115:21;:25;52107:34;;;::::0;::::1;;52150:14;:12;:14::i;51873:93::-:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51873:93:0;;-1:-1:-1;51873:93:0;:::o;57579:194::-;32815:7;32842:6;-1:-1:-1;;;;;32842:6:0;31575:10;32989:23;32981:68;;;;-1:-1:-1;;;32981:68:0;;;;;;;:::i;:::-;57677:1:::1;57660:13;:18;;57652:70;;;::::0;-1:-1:-1;;;57652:70:0;;9658:2:1;57652:70:0::1;::::0;::::1;9640:21:1::0;9697:2;9677:18;;;9670:30;9736:34;9716:18;;;9709:62;-1:-1:-1;;;9787:18:1;;;9780:37;9834:19;;57652:70:0::1;9456:403:1::0;57652:70:0::1;57733:16;:32:::0;57579:194::o;58144:90::-;32815:7;32842:6;-1:-1:-1;;;;;32842:6:0;31575:10;32989:23;32981:68;;;;-1:-1:-1;;;32981:68:0;;;;;;;:::i;:::-;58209:5:::1;:17:::0;58144:90::o;58713:135::-;-1:-1:-1;;;;;;;;;;;;;;;;;58820:20:0;58832:7;58820:11;:20::i;40840:98::-;40896:13;40925:7;40918:14;;;;;:::i;42368:274::-;-1:-1:-1;;;;;42459:24:0;;31575:10;42459:24;;42451:63;;;;-1:-1:-1;;;42451:63:0;;14082:2:1;42451:63:0;;;14064:21:1;14121:2;14101:18;;;14094:30;14160:28;14140:18;;;14133:56;14206:18;;42451:63:0;13880:350:1;42451:63:0;31575:10;42523:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;42523:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;42523:53:0;;;;;;;;;;42588:48;;6495:41:1;;;42523:42:0;;31575:10;42588:48;;6468:18:1;42588:48:0;;;;;;;42368:274;;:::o;53135:422::-;32815:7;32842:6;-1:-1:-1;;;;;32842:6:0;31575:10;32989:23;32981:68;;;;-1:-1:-1;;;32981:68:0;;;;;;;:::i;:::-;53244:1:::1;53234:7;:11;53226:20;;;::::0;::::1;;53313:38;::::0;-1:-1:-1;;;53313:38:0;;53345:4:::1;53313:38;::::0;::::1;5521:51:1::0;53283:14:0;;53355:7;;-1:-1:-1;;;;;53313:23:0;::::1;::::0;::::1;::::0;5494:18:1;;53313:38:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;;53305:97;;;::::0;-1:-1:-1;;;53305:97:0;;7732:2:1;53305:97:0::1;::::0;::::1;7714:21:1::0;7771:2;7751:18;;;7744:30;7810:34;7790:18;;;7783:62;-1:-1:-1;;;7861:18:1;;;7854:33;7904:19;;53305:97:0::1;7530:399:1::0;53305:97:0::1;53415:6;53411:141;53429:19;;53425:1;:23;53411:141;;;53467:13;-1:-1:-1::0;;;;;53467:22:0::1;;53490:16;53507:1;53490:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;53490:19:0::1;53540:3;53522:11;53534:1;53522:14;;;;;;;;:::i;:::-;;;;;;;;;53512:7;:24;;;;:::i;:::-;53511:32;;;;:::i;:::-;53467:77;::::0;-1:-1:-1;;;;;;53467:77:0::1;::::0;;;;;;-1:-1:-1;;;;;6268:32:1;;;53467:77:0::1;::::0;::::1;6250:51:1::0;6317:18;;;6310:34;6223:18;;53467:77:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;53450:3:0;::::1;::::0;::::1;:::i;:::-;;;;53411:141;;;;53219:338;53135:422:::0;;:::o;43375:311::-;43512:28;43522:4;43528:2;43532:7;43512:9;:28::i;:::-;43563:48;43586:4;43592:2;43596:7;43605:5;43563:22;:48::i;:::-;43547:133;;;;-1:-1:-1;;;43547:133:0;;;;;;;:::i;53883:229::-;51564:12;;-1:-1:-1;;;;;51564:12:0;51550:10;:26;51542:67;;;;-1:-1:-1;;;51542:67:0;;10472:2:1;51542:67:0;;;10454:21:1;10511:2;10491:18;;;10484:30;10550;10530:18;;;10523:58;10598:18;;51542:67:0;10270:352:1;51542:67:0;53974:12:::1;::::0;-1:-1:-1;;;;;53959:27:0;;::::1;53974:12:::0;::::1;53959:27;;53951:82;;;::::0;-1:-1:-1;;;53951:82:0;;18382:2:1;53951:82:0::1;::::0;::::1;18364:21:1::0;18421:2;18401:18;;;18394:30;18460:34;18440:18;;;18433:62;-1:-1:-1;;;18511:18:1;;;18504:40;18561:19;;53951:82:0::1;18180:406:1::0;53951:82:0::1;54040:12;:26:::0;;-1:-1:-1;;;;;;54040:26:0::1;-1:-1:-1::0;;;;;54040:26:0;::::1;;::::0;;54073:16:::1;:19:::0;;54040:26;;54073:16;-1:-1:-1;;54073:19:0::1;;;;:::i;:::-;;;;;;;;;:33;;;;;-1:-1:-1::0;;;;;54073:33:0::1;;;;;-1:-1:-1::0;;;;;54073:33:0::1;;;;;;53883:229:::0;:::o;41001:288::-;41099:13;41124:21;41148:10;:8;:10::i;:::-;41124:34;;41203:1;41185:7;41179:21;:25;:104;;;;;;;;;;;;;;;;;41240:7;41249:18;:7;:16;:18::i;:::-;41223:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41179:104;41165:118;41001:288;-1:-1:-1;;;41001:288:0:o;36951:109::-;36998:7;37023:31;37036:14;36678:1;37232:12;-1:-1:-1;;37232:30:0;;37143:132;37036:14;37052:1;37023:12;:31::i;54450:86::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58492:99::-;58537:13;58570;58563:20;;;;;:::i;52178:115::-;51564:12;;-1:-1:-1;;;;;51564:12:0;51550:10;:26;51542:67;;;;-1:-1:-1;;;51542:67:0;;10472:2:1;51542:67:0;;;10454:21:1;10511:2;10491:18;;;10484:30;10550;10530:18;;;10523:58;10598:18;;51542:67:0;10270:352:1;33674:201:0;32815:7;32842:6;-1:-1:-1;;;;;32842:6:0;31575:10;32989:23;32981:68;;;;-1:-1:-1;;;32981:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33763:22:0;::::1;33755:73;;;::::0;-1:-1:-1;;;33755:73:0;;8136:2:1;33755:73:0::1;::::0;::::1;8118:21:1::0;8175:2;8155:18;;;8148:30;8214:34;8194:18;;;8187:62;-1:-1:-1;;;8265:18:1;;;8258:36;8311:19;;33755:73:0::1;7934:402:1::0;33755:73:0::1;33839:28;33858:8;33839:18;:28::i;57133:253::-:0;57211:4;57247:1;57236:7;:12;;57228:66;;;;-1:-1:-1;;;57228:66:0;;19209:2:1;57228:66:0;;;19191:21:1;19248:2;19228:18;;;19221:30;19287:34;19267:18;;;19260:62;-1:-1:-1;;;19338:18:1;;;19331:39;19387:19;;57228:66:0;19007:405:1;57228:66:0;57362:16;;57312:46;57325:23;57339:8;57325:13;:23::i;:::-;57350:7;57312:12;:46::i;:::-;:66;;;57133:253;-1:-1:-1;;;57133:253:0:o;58242:108::-;58325:5;;58298:7;;58325:17;;58335:6;58325:9;:17::i;44062:129::-;44145:40;44155:2;44159:8;44169:11;44145:40;;;;;;;;;;;;:9;:40::i;43921:135::-;43978:4;44017:7;36678:1;43998:26;;:52;;;;-1:-1:-1;;44038:12:0;;-1:-1:-1;44028:22:0;43921:135::o;47805:172::-;47902:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;47902:29:0;-1:-1:-1;;;;;47902:29:0;;;;;;;;;47943:28;;47902:24;;47943:28;;;;;;;47805:172;;;:::o;46174:1529::-;46271:35;46309:20;46321:7;46309:11;:20::i;:::-;46380:18;;46271:58;;-1:-1:-1;46338:22:0;;-1:-1:-1;;;;;46364:34:0;31575:10;-1:-1:-1;;;;;46364:34:0;;:81;;;-1:-1:-1;31575:10:0;46409:20;46421:7;46409:11;:20::i;:::-;-1:-1:-1;;;;;46409:36:0;;46364:81;:142;;;-1:-1:-1;46473:18:0;;46456:50;;31575:10;42705:186;:::i;46456:50::-;46338:169;;46532:17;46516:101;;;;-1:-1:-1;;;46516:101:0;;14437:2:1;46516:101:0;;;14419:21:1;14476:2;14456:18;;;14449:30;14515:34;14495:18;;;14488:62;-1:-1:-1;;;14566:18:1;;;14559:48;14624:19;;46516:101:0;14235:414:1;46516:101:0;46664:4;-1:-1:-1;;;;;46642:26:0;:13;:18;;;-1:-1:-1;;;;;46642:26:0;;46626:98;;;;-1:-1:-1;;;46626:98:0;;13314:2:1;46626:98:0;;;13296:21:1;13353:2;13333:18;;;13326:30;13392:34;13372:18;;;13365:62;-1:-1:-1;;;13443:18:1;;;13436:36;13489:19;;46626:98:0;13112:402:1;46626:98:0;-1:-1:-1;;;;;46739:16:0;;46731:66;;;;-1:-1:-1;;;46731:66:0;;10066:2:1;46731:66:0;;;10048:21:1;10105:2;10085:18;;;10078:30;10144:34;10124:18;;;10117:62;-1:-1:-1;;;10195:18:1;;;10188:35;10240:19;;46731:66:0;9864:401:1;46731:66:0;46906:49;46923:1;46927:7;46936:13;:18;;;46906:8;:49::i;:::-;-1:-1:-1;;;;;46964:18:0;;;;;;:12;:18;;;;;:31;;46994:1;;46964:18;:31;;46994:1;;-1:-1:-1;;;;;46964:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;46964:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;47002:16:0;;-1:-1:-1;47002:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;47002:16:0;;:29;;-1:-1:-1;;47002:29:0;;:::i;:::-;;;-1:-1:-1;;;;;47002:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47061:43:0;;;;;;;;-1:-1:-1;;;;;47061:43:0;;;;;;47087:15;47061:43;;;;;;;;;-1:-1:-1;47038:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;47038:66:0;-1:-1:-1;;;;;;47038:66:0;;;;;;;;;;;47354:11;47050:7;-1:-1:-1;47354:11:0;:::i;:::-;47417:1;47376:24;;;:11;:24;;;;;:29;47332:33;;-1:-1:-1;;;;;;47376:29:0;47372:236;;47434:20;47442:11;47434:7;:20::i;:::-;47430:171;;;47494:97;;;;;;;;47521:18;;-1:-1:-1;;;;;47494:97:0;;;;;;47552:28;;;;47494:97;;;;;;;;;;-1:-1:-1;47467:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;47467:124:0;-1:-1:-1;;;;;;47467:124:0;;;;;;;;;;;;47430:171;47640:7;47636:2;-1:-1:-1;;;;;47621:27:0;47630:4;-1:-1:-1;;;;;47621:27:0;;;;;;;;;;;46264:1439;;;46174:1529;;;:::o;39509:945::-;-1:-1:-1;;;;;;;;;;;;;;;;;39633:7:0;;36678:1;39674:23;;:46;;;;;39708:12;;39701:4;:19;39674:46;39670:706;;;39737:31;39771:17;;;:11;:17;;;;;;;;;39737:51;;;;;;;;;-1:-1:-1;;;;;39737:51:0;;;;;-1:-1:-1;;;39737:51:0;;;;;;;;;;;;39807:28;39803:85;;39863:9;39509:945;-1:-1:-1;;;39509:945:0:o;39803:85::-;-1:-1:-1;;;40184:6:0;40221:17;;;;:11;:17;;;;;;;;;40209:29;;;;;;;;;-1:-1:-1;;;;;40209:29:0;;;;;-1:-1:-1;;;40209:29:0;;;;;;;;;;;;40261:28;40257:93;;40321:9;39509:945;-1:-1:-1;;;39509:945:0:o;40257:93::-;40152:213;;39670:706;40391:57;;-1:-1:-1;;;40391:57:0;;18793:2:1;40391:57:0;;;18775:21:1;18832:2;18812:18;;;18805:30;18871:34;18851:18;;;18844:62;-1:-1:-1;;;18922:18:1;;;18915:45;18977:19;;40391:57:0;18591:411:1;34033:191:0;34107:16;34126:6;;-1:-1:-1;;;;;34143:17:0;;;-1:-1:-1;;;;;;34143:17:0;;;;;;34176:40;;34126:6;;;;;;;34176:40;;34107:16;34176:40;34096:128;34033:191;:::o;52299:278::-;52358:21;52340:15;52396:176;52414:19;;52410:1;:23;52396:176;;;52454:108;52481:16;52498:1;52481:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52481:19:0;52546:3;52528:11;52540:1;52528:14;;;;;;;;:::i;:::-;;;;;;;;;52518:7;:24;;;;:::i;:::-;52517:32;;;;:::i;:::-;52454:10;:108::i;:::-;52435:3;;;;:::i;:::-;;;;52396:176;;49594:690;49731:4;-1:-1:-1;;;;;49748:13:0;;9438:19;:23;49744:535;;49787:72;;-1:-1:-1;;;49787:72:0;;-1:-1:-1;;;;;49787:36:0;;;;;:72;;31575:10;;49838:4;;49844:7;;49853:5;;49787:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49787:72:0;;;;;;;;-1:-1:-1;;49787:72:0;;;;;;;;;;;;:::i;:::-;;;49774:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50018:13:0;;50014:215;;50051:61;;-1:-1:-1;;;50051:61:0;;;;;;;:::i;50014:215::-;50197:6;50191:13;50182:6;50178:2;50174:15;50167:38;49774:464;-1:-1:-1;;;;;;49909:55:0;-1:-1:-1;;;49909:55:0;;-1:-1:-1;49902:62:0;;49744:535;-1:-1:-1;50267:4:0;49744:535;49594:690;;;;;;:::o;26326:723::-;26382:13;26603:10;26599:53;;-1:-1:-1;;26630:10:0;;;;;;;;;;;;-1:-1:-1;;;26630:10:0;;;;;26326:723::o;26599:53::-;26677:5;26662:12;26718:78;26725:9;;26718:78;;26751:8;;;;:::i;:::-;;-1:-1:-1;26774:10:0;;-1:-1:-1;26782:2:0;26774:10;;:::i;:::-;;;26718:78;;;26806:19;26838:6;26828:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26828:17:0;;26806:39;;26856:154;26863:10;;26856:154;;26890:11;26900:1;26890:11;;:::i;:::-;;-1:-1:-1;26959:10:0;26967:2;26959:5;:10;:::i;:::-;26946:24;;:2;:24;:::i;:::-;26933:39;;26916:6;26923;26916:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;26916:56:0;;;;;;;;-1:-1:-1;26987:11:0;26996:2;26987:11;;:::i;:::-;;;26856:154;;3771:98;3829:7;3856:5;3860:1;3856;:5;:::i;39263:240::-;39324:7;-1:-1:-1;;;;;39356:19:0;;39340:102;;;;-1:-1:-1;;;39340:102:0;;10829:2:1;39340:102:0;;;10811:21:1;10868:2;10848:18;;;10841:30;10907:34;10887:18;;;10880:62;-1:-1:-1;;;10958:18:1;;;10951:47;11015:19;;39340:102:0;10627:413:1;39340:102:0;-1:-1:-1;;;;;;39464:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;39464:32:0;;-1:-1:-1;;;;;39464:32:0;;39263:240::o;4505:98::-;4563:7;4590:5;4594:1;4590;:5;:::i;44520:1434::-;44671:12;;-1:-1:-1;;;;;44698:16:0;;44690:62;;;;-1:-1:-1;;;44690:62:0;;16382:2:1;44690:62:0;;;16364:21:1;16421:2;16401:18;;;16394:30;16460:34;16440:18;;;16433:62;-1:-1:-1;;;16511:18:1;;;16504:31;16552:19;;44690:62:0;16180:397:1;44690:62:0;44889:21;44897:12;44889:7;:21::i;:::-;44888:22;44880:64;;;;-1:-1:-1;;;44880:64:0;;16024:2:1;44880:64:0;;;16006:21:1;16063:2;16043:18;;;16036:30;16102:31;16082:18;;;16075:59;16151:18;;44880:64:0;15822:353:1;44880:64:0;45030:20;45026:116;;45083:12;;45071:8;:24;;45063:71;;;;-1:-1:-1;;;45063:71:0;;20033:2:1;45063:71:0;;;20015:21:1;20072:2;20052:18;;;20045:30;20111:34;20091:18;;;20084:62;-1:-1:-1;;;20162:18:1;;;20155:32;20204:19;;45063:71:0;19831:398:1;45063:71:0;-1:-1:-1;;;;;45253:16:0;;45220:30;45253:16;;;:12;:16;;;;;;;;;45220:49;;;;;;;;;-1:-1:-1;;;;;45220:49:0;;;;;-1:-1:-1;;;45220:49:0;;;;;;;;;;;45295:139;;;;;;;;45315:19;;45220:49;;45295:139;;;45315:39;;45345:8;;45315:39;:::i;:::-;-1:-1:-1;;;;;45295:139:0;;;;;45391:11;:35;;45417:8;45391:35;;;45405:1;45391:35;45363:11;:24;;;:64;;;;:::i;:::-;-1:-1:-1;;;;;45295:139:0;;;;;;-1:-1:-1;;;;;45276:16:0;;;;;;;:12;:16;;;;;;;;:158;;;;;;;;-1:-1:-1;;;45276:158:0;;;;;;;;;;;;45469:43;;;;;;;;;;;45495:15;45469:43;;;;;;;;45441:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;45441:71:0;-1:-1:-1;;;;;;45441:71:0;;;;;;;;;;;;;;;;;;45453:12;;45565:281;45589:8;45585:1;:12;45565:281;;;45618:38;;45643:12;;-1:-1:-1;;;;;45618:38:0;;;45635:1;;45618:38;;45635:1;;45618:38;45683:59;45714:1;45718:2;45722:12;45736:5;45683:22;:59::i;:::-;45665:150;;;;-1:-1:-1;;;45665:150:0;;;;;;;:::i;:::-;45824:14;;;;:::i;:::-;;;;45599:3;;;;;:::i;:::-;;;;45565:281;;;-1:-1:-1;45854:12:0;:27;-1:-1:-1;;;;;;44520:1434:0:o;52585:175::-;52658:12;52676:8;-1:-1:-1;;;;;52676:13:0;52697:7;52676:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52657:52;;;52726:7;52718:36;;;;-1:-1:-1;;;52718:36:0;;15259:2:1;52718:36:0;;;15241:21:1;15298:2;15278:18;;;15271:30;-1:-1:-1;;;15317:18:1;;;15310:46;15373:18;;52718:36:0;15057:340:1;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:315::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2381:28;2403:5;2381:28;:::i;:::-;2428:5;2418:15;;;2124:315;;;;;:::o;2444:254::-;2512:6;2520;2573:2;2561:9;2552:7;2548:23;2544:32;2541:52;;;2589:1;2586;2579:12;2541:52;2612:29;2631:9;2612:29;:::i;:::-;2602:39;2688:2;2673:18;;;;2660:32;;-1:-1:-1;;;2444:254:1:o;2703:245::-;2770:6;2823:2;2811:9;2802:7;2798:23;2794:32;2791:52;;;2839:1;2836;2829:12;2791:52;2871:9;2865:16;2890:28;2912:5;2890:28;:::i;2953:245::-;3011:6;3064:2;3052:9;3043:7;3039:23;3035:32;3032:52;;;3080:1;3077;3070:12;3032:52;3119:9;3106:23;3138:30;3162:5;3138:30;:::i;3203:249::-;3272:6;3325:2;3313:9;3304:7;3300:23;3296:32;3293:52;;;3341:1;3338;3331:12;3293:52;3373:9;3367:16;3392:30;3416:5;3392:30;:::i;3457:592::-;3528:6;3536;3589:2;3577:9;3568:7;3564:23;3560:32;3557:52;;;3605:1;3602;3595:12;3557:52;3645:9;3632:23;3674:18;3715:2;3707:6;3704:14;3701:34;;;3731:1;3728;3721:12;3701:34;3769:6;3758:9;3754:22;3744:32;;3814:7;3807:4;3803:2;3799:13;3795:27;3785:55;;3836:1;3833;3826:12;3785:55;3876:2;3863:16;3902:2;3894:6;3891:14;3888:34;;;3918:1;3915;3908:12;3888:34;3963:7;3958:2;3949:6;3945:2;3941:15;3937:24;3934:37;3931:57;;;3984:1;3981;3974:12;3931:57;4015:2;4007:11;;;;;4037:6;;-1:-1:-1;3457:592:1;;-1:-1:-1;;;;3457:592:1:o;4054:180::-;4113:6;4166:2;4154:9;4145:7;4141:23;4137:32;4134:52;;;4182:1;4179;4172:12;4134:52;-1:-1:-1;4205:23:1;;4054:180;-1:-1:-1;4054:180:1:o;4239:184::-;4309:6;4362:2;4350:9;4341:7;4337:23;4333:32;4330:52;;;4378:1;4375;4368:12;4330:52;-1:-1:-1;4401:16:1;;4239:184;-1:-1:-1;4239:184:1:o;4428:257::-;4469:3;4507:5;4501:12;4534:6;4529:3;4522:19;4550:63;4606:6;4599:4;4594:3;4590:14;4583:4;4576:5;4572:16;4550:63;:::i;:::-;4667:2;4646:15;-1:-1:-1;;4642:29:1;4633:39;;;;4674:4;4629:50;;4428:257;-1:-1:-1;;4428:257:1:o;4690:470::-;4869:3;4907:6;4901:13;4923:53;4969:6;4964:3;4957:4;4949:6;4945:17;4923:53;:::i;:::-;5039:13;;4998:16;;;;5061:57;5039:13;4998:16;5095:4;5083:17;;5061:57;:::i;:::-;5134:20;;4690:470;-1:-1:-1;;;;4690:470:1:o;5583:488::-;-1:-1:-1;;;;;5852:15:1;;;5834:34;;5904:15;;5899:2;5884:18;;5877:43;5951:2;5936:18;;5929:34;;;5999:3;5994:2;5979:18;;5972:31;;;5777:4;;6020:45;;6045:19;;6037:6;6020:45;:::i;:::-;6012:53;5583:488;-1:-1:-1;;;;;;5583:488:1:o;6547:219::-;6696:2;6685:9;6678:21;6659:4;6716:44;6756:2;6745:9;6741:18;6733:6;6716:44;:::i;11045:412::-;11247:2;11229:21;;;11286:2;11266:18;;;11259:30;11325:34;11320:2;11305:18;;11298:62;-1:-1:-1;;;11391:2:1;11376:18;;11369:46;11447:3;11432:19;;11045:412::o;12296:399::-;12498:2;12480:21;;;12537:2;12517:18;;;12510:30;12576:34;12571:2;12556:18;;12549:62;-1:-1:-1;;;12642:2:1;12627:18;;12620:33;12685:3;12670:19;;12296:399::o;13519:356::-;13721:2;13703:21;;;13740:18;;;13733:30;13799:34;13794:2;13779:18;;13772:62;13866:2;13851:18;;13519:356::o;15402:415::-;15604:2;15586:21;;;15643:2;15623:18;;;15616:30;15682:34;15677:2;15662:18;;15655:62;-1:-1:-1;;;15748:2:1;15733:18;;15726:49;15807:3;15792:19;;15402:415::o;20972:253::-;21012:3;-1:-1:-1;;;;;21101:2:1;21098:1;21094:10;21131:2;21128:1;21124:10;21162:3;21158:2;21154:12;21149:3;21146:21;21143:47;;;21170:18;;:::i;21230:128::-;21270:3;21301:1;21297:6;21294:1;21291:13;21288:39;;;21307:18;;:::i;:::-;-1:-1:-1;21343:9:1;;21230:128::o;21363:120::-;21403:1;21429;21419:35;;21434:18;;:::i;:::-;-1:-1:-1;21468:9:1;;21363:120::o;21488:168::-;21528:7;21594:1;21590;21586:6;21582:14;21579:1;21576:21;21571:1;21564:9;21557:17;21553:45;21550:71;;;21601:18;;:::i;:::-;-1:-1:-1;21641:9:1;;21488:168::o;21661:246::-;21701:4;-1:-1:-1;;;;;21814:10:1;;;;21784;;21836:12;;;21833:38;;;21851:18;;:::i;:::-;21888:13;;21661:246;-1:-1:-1;;;21661:246:1:o;21912:125::-;21952:4;21980:1;21977;21974:8;21971:34;;;21985:18;;:::i;:::-;-1:-1:-1;22022:9:1;;21912:125::o;22042:258::-;22114:1;22124:113;22138:6;22135:1;22132:13;22124:113;;;22214:11;;;22208:18;22195:11;;;22188:39;22160:2;22153:10;22124:113;;;22255:6;22252:1;22249:13;22246:48;;;-1:-1:-1;;22290:1:1;22272:16;;22265:27;22042:258::o;22305:380::-;22384:1;22380:12;;;;22427;;;22448:61;;22502:4;22494:6;22490:17;22480:27;;22448:61;22555:2;22547:6;22544:14;22524:18;22521:38;22518:161;;;22601:10;22596:3;22592:20;22589:1;22582:31;22636:4;22633:1;22626:15;22664:4;22661:1;22654:15;22518:161;;22305:380;;;:::o;22690:135::-;22729:3;-1:-1:-1;;22750:17:1;;22747:43;;;22770:18;;:::i;:::-;-1:-1:-1;22817:1:1;22806:13;;22690:135::o;22830:112::-;22862:1;22888;22878:35;;22893:18;;:::i;:::-;-1:-1:-1;22927:9:1;;22830:112::o;22947:127::-;23008:10;23003:3;22999:20;22996:1;22989:31;23039:4;23036:1;23029:15;23063:4;23060:1;23053:15;23079:127;23140:10;23135:3;23131:20;23128:1;23121:31;23171:4;23168:1;23161:15;23195:4;23192:1;23185:15;23211:127;23272:10;23267:3;23263:20;23260:1;23253:31;23303:4;23300:1;23293:15;23327:4;23324:1;23317:15;23343:127;23404:10;23399:3;23395:20;23392:1;23385:31;23435:4;23432:1;23425:15;23459:4;23456:1;23449:15;23475:118;23561:5;23554:13;23547:21;23540:5;23537:32;23527:60;;23583:1;23580;23573:12;23598:131;-1:-1:-1;;;;;;23672:32:1;;23662:43;;23652:71;;23719:1;23716;23709:12

Swarm Source

ipfs://149834adf5ac30e2763f44e5b8eee34c22eb682b828a325346d98c96749eb6af
Loading...
Loading
Loading...
Loading
[ 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.