ETH Price: $3,386.93 (-1.44%)
Gas: 3 Gwei

Token

EverydayMutants (EMU)
 

Overview

Max Total Supply

863 EMU

Holders

167

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 EMU
0x469eceb3d8a52277ecc1fcff34a62e757291468f
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:
EverydayMutants

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 2021-10-09
*/

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



pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/contracts/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 no longer needed starting with Solidity 0.8. 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/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



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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


// File: @openzeppelin/contracts/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/token/ERC721/IERC721.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/utils/Strings.sol



pragma solidity ^0.8.0;

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

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

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

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

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


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



pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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);
            }
        }
    }
}



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


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



pragma solidity ^0.8.0;




// File: @openzeppelin/contracts/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/token/ERC721/IERC721Receiver.sol





/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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 Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: 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 virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/EverydayApes.sol

pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

// File: @openzeppelin/contracts/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 tokenId);

    /**
     * @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/ERC721Enumerable.sol


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


pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


pragma solidity ^0.8.0;






contract EverydayMutants is ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    using Counters for Counters.Counter;
    using Strings for uint256;
    Counters.Counter private _tokenIds;

    string public baseTokenURI;
    uint256 public cost = 0.02 ether;
    uint256 public maxSupply = 2200;
    uint256 public maxMintAmount = 50;
    bool public paused = false;

    event CreateMutant(uint256 indexed id);

    constructor() public ERC721("EverydayMutants", "EMU") {
        pause(true);
    }
    
    
    function reserveMutants() public onlyOwner {        
        mint(msg.sender, 200); //reserve for community giveaways
    }

    function _totalSupply() internal view returns (uint) {
        return _tokenIds.current();
    }

    function totalMint() public view returns (uint256) {
        return _totalSupply();
    }

    function mint(address _to, uint256 _mintAmount) public payable {
        uint256 supply = _totalSupply();
        
        require(_mintAmount > 0);
        require(supply + _mintAmount <= maxSupply, "Sale End");

        if (msg.sender != owner()) {
            require(!paused, "Sale must be active to mint");
            require(msg.value >= cost * _mintAmount, "Value below cost");
            require(_mintAmount <= maxMintAmount, "Exceeds number");
        }

        for (uint256 i = 0; i < _mintAmount; i++) {
            _mintAnElement(_to);
        }
    }

    function _mintAnElement(address _to) private {
        uint id = _totalSupply();
        _tokenIds.increment();
        _safeMint(_to, id);
        emit CreateMutant(id);
    }

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

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

    function walletOfOwner(address _owner) external view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokensId;
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }


    function setCost(uint256 _newCost) public onlyOwner() {
        cost = _newCost;
    }

    function setMaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() {
        maxMintAmount = _newmaxMintAmount;
    }
    
    function setMaxSupply(uint256 _newMaxSupply) public onlyOwner() {
        maxSupply = _newMaxSupply;
    }


    function withdraw() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

}

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":"uint256","name":"id","type":"uint256"}],"name":"CreateMutant","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":[{"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":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveMutants","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":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setMaxSupply","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":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405266470de4df820000600d55610898600e556032600f556010805460ff191690553480156200003157600080fd5b50604080518082018252600f81526e45766572796461794d7574616e747360881b602080830191825283518085019094526003845262454d5560e81b908401528151919291620000849160009162000191565b5080516200009a90600190602084019062000191565b505050620000b7620000b1620000c960201b60201c565b620000cd565b620000c360016200011f565b62000274565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b031633146200017e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b6010805460ff1916911515919091179055565b8280546200019f9062000237565b90600052602060002090601f016020900481019282620001c357600085556200020e565b82601f10620001de57805160ff19168380011785556200020e565b828001600101855582156200020e579182015b828111156200020e578251825591602001919060010190620001f1565b506200021c92915062000220565b5090565b5b808211156200021c576000815560010162000221565b600181811c908216806200024c57607f821691505b602082108114156200026e57634e487b7160e01b600052602260045260246000fd5b50919050565b61231180620002846000396000f3fe6080604052600436106101f95760003560e01c80634f6ccce71161010d5780638da5cb5b116100a0578063c87b56dd1161006f578063c87b56dd14610572578063d547cfb714610592578063d5abeb01146105a7578063e985e9c5146105bd578063f2fde38b1461060657600080fd5b80638da5cb5b146104ff57806395d89b411461051d578063a22cb46514610532578063b88d4fde1461055257600080fd5b80636352211e116100dc5780636352211e1461048a5780636f8b44b0146104aa57806370a08231146104ca578063715018a6146104ea57600080fd5b80634f6ccce71461041b57806355f804b31461043b57806359a7715a1461045b5780635c975abb1461047057600080fd5b806318160ddd116101905780633ccfd60b1161015f5780633ccfd60b1461039357806340c10f191461039b57806342842e0e146103ae578063438b6300146103ce57806344a0d68a146103fb57600080fd5b806318160ddd14610328578063239c70ae1461033d57806323b872dd146103535780632f745c591461037357600080fd5b8063088a4ed0116101cc578063088a4ed0146102af578063095ea7b3146102cf57806309c8699d146102ef57806313faede61461030457600080fd5b806301ffc9a7146101fe57806302329a291461023357806306fdde0314610255578063081812fc14610277575b600080fd5b34801561020a57600080fd5b5061021e610219366004611efc565b610626565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061025361024e366004611ee1565b610651565b005b34801561026157600080fd5b5061026a610697565b60405161022a9190612074565b34801561028357600080fd5b50610297610292366004611f7f565b610729565b6040516001600160a01b03909116815260200161022a565b3480156102bb57600080fd5b506102536102ca366004611f7f565b6107be565b3480156102db57600080fd5b506102536102ea366004611eb7565b6107ed565b3480156102fb57600080fd5b50610253610903565b34801561031057600080fd5b5061031a600d5481565b60405190815260200161022a565b34801561033457600080fd5b5060085461031a565b34801561034957600080fd5b5061031a600f5481565b34801561035f57600080fd5b5061025361036e366004611dd5565b61093a565b34801561037f57600080fd5b5061031a61038e366004611eb7565b61096b565b610253610a01565b6102536103a9366004611eb7565b610a4f565b3480156103ba57600080fd5b506102536103c9366004611dd5565b610bd2565b3480156103da57600080fd5b506103ee6103e9366004611d87565b610bed565b60405161022a9190612030565b34801561040757600080fd5b50610253610416366004611f7f565b610c8f565b34801561042757600080fd5b5061031a610436366004611f7f565b610cbe565b34801561044757600080fd5b50610253610456366004611f36565b610d51565b34801561046757600080fd5b5061031a610d92565b34801561047c57600080fd5b5060105461021e9060ff1681565b34801561049657600080fd5b506102976104a5366004611f7f565b610da1565b3480156104b657600080fd5b506102536104c5366004611f7f565b610e18565b3480156104d657600080fd5b5061031a6104e5366004611d87565b610e47565b3480156104f657600080fd5b50610253610ece565b34801561050b57600080fd5b50600a546001600160a01b0316610297565b34801561052957600080fd5b5061026a610f02565b34801561053e57600080fd5b5061025361054d366004611e8d565b610f11565b34801561055e57600080fd5b5061025361056d366004611e11565b610fd6565b34801561057e57600080fd5b5061026a61058d366004611f7f565b611008565b34801561059e57600080fd5b5061026a6110e3565b3480156105b357600080fd5b5061031a600e5481565b3480156105c957600080fd5b5061021e6105d8366004611da2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561061257600080fd5b50610253610621366004611d87565b611171565b60006001600160e01b0319821663780e9d6360e01b148061064b575061064b8261120c565b92915050565b600a546001600160a01b031633146106845760405162461bcd60e51b815260040161067b906120d9565b60405180910390fd5b6010805460ff1916911515919091179055565b6060600080546106a6906121ed565b80601f01602080910402602001604051908101604052809291908181526020018280546106d2906121ed565b801561071f5780601f106106f45761010080835404028352916020019161071f565b820191906000526020600020905b81548152906001019060200180831161070257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107a25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161067b565b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b031633146107e85760405162461bcd60e51b815260040161067b906120d9565b600f55565b60006107f882610da1565b9050806001600160a01b0316836001600160a01b031614156108665760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161067b565b336001600160a01b0382161480610882575061088281336105d8565b6108f45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161067b565b6108fe838361125c565b505050565b600a546001600160a01b0316331461092d5760405162461bcd60e51b815260040161067b906120d9565b6109383360c8610a4f565b565b61094433826112ca565b6109605760405162461bcd60e51b815260040161067b9061210e565b6108fe8383836113c1565b600061097683610e47565b82106109d85760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161067b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610a2b5760405162461bcd60e51b815260040161067b906120d9565b60405133904780156108fc02916000818181858888f1935050505061093857600080fd5b6000610a5961156c565b905060008211610a6857600080fd5b600e54610a75838361215f565b1115610aae5760405162461bcd60e51b815260206004820152600860248201526714d85b1948115b9960c21b604482015260640161067b565b600a546001600160a01b03163314610ba65760105460ff1615610b135760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604482015260640161067b565b81600d54610b21919061218b565b341015610b635760405162461bcd60e51b815260206004820152601060248201526f15985b1d594818995b1bddc818dbdcdd60821b604482015260640161067b565b600f54821115610ba65760405162461bcd60e51b815260206004820152600e60248201526d22bc31b2b2b23990373ab6b132b960911b604482015260640161067b565b60005b82811015610bcc57610bba84611577565b80610bc481612228565b915050610ba9565b50505050565b6108fe83838360405180602001604052806000815250610fd6565b60606000610bfa83610e47565b905060008167ffffffffffffffff811115610c1757610c176122af565b604051908082528060200260200182016040528015610c40578160200160208202803683370190505b50905060005b82811015610c8757610c58858261096b565b828281518110610c6a57610c6a612299565b602090810291909101015280610c7f81612228565b915050610c46565b509392505050565b600a546001600160a01b03163314610cb95760405162461bcd60e51b815260040161067b906120d9565b600d55565b6000610cc960085490565b8210610d2c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161067b565b60088281548110610d3f57610d3f612299565b90600052602060002001549050919050565b600a546001600160a01b03163314610d7b5760405162461bcd60e51b815260040161067b906120d9565b8051610d8e90600c906020840190611c4c565b5050565b6000610d9c61156c565b905090565b6000818152600260205260408120546001600160a01b03168061064b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161067b565b600a546001600160a01b03163314610e425760405162461bcd60e51b815260040161067b906120d9565b600e55565b60006001600160a01b038216610eb25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161067b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610ef85760405162461bcd60e51b815260040161067b906120d9565b61093860006115ca565b6060600180546106a6906121ed565b6001600160a01b038216331415610f6a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161067b565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610fe033836112ca565b610ffc5760405162461bcd60e51b815260040161067b9061210e565b610bcc8484848461161c565b6000818152600260205260409020546060906001600160a01b03166110875760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161067b565b600061109161164f565b905060008151116110b157604051806020016040528060008152506110dc565b806110bb8461165e565b6040516020016110cc929190611fc4565b6040516020818303038152906040525b9392505050565b600c80546110f0906121ed565b80601f016020809104026020016040519081016040528092919081815260200182805461111c906121ed565b80156111695780601f1061113e57610100808354040283529160200191611169565b820191906000526020600020905b81548152906001019060200180831161114c57829003601f168201915b505050505081565b600a546001600160a01b0316331461119b5760405162461bcd60e51b815260040161067b906120d9565b6001600160a01b0381166112005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161067b565b611209816115ca565b50565b60006001600160e01b031982166380ac58cd60e01b148061123d57506001600160e01b03198216635b5e139f60e01b145b8061064b57506301ffc9a760e01b6001600160e01b031983161461064b565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061129182610da1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113435760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161067b565b600061134e83610da1565b9050806001600160a01b0316846001600160a01b031614806113895750836001600160a01b031661137e84610729565b6001600160a01b0316145b806113b957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113d482610da1565b6001600160a01b03161461143c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161067b565b6001600160a01b03821661149e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161067b565b6114a983838361175c565b6114b460008261125c565b6001600160a01b03831660009081526003602052604081208054600192906114dd9084906121aa565b90915550506001600160a01b038216600090815260036020526040812080546001929061150b90849061215f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000610d9c600b5490565b600061158161156c565b9050611591600b80546001019055565b61159b8282611814565b60405181907f9243df0beb5d82661ce7a431020bc965a1772cc7275f7658e9d723df575db2df90600090a25050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6116278484846113c1565b6116338484848461182e565b610bcc5760405162461bcd60e51b815260040161067b90612087565b6060600c80546106a6906121ed565b6060816116825750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116ac578061169681612228565b91506116a59050600a83612177565b9150611686565b60008167ffffffffffffffff8111156116c7576116c76122af565b6040519080825280601f01601f1916602001820160405280156116f1576020820181803683370190505b5090505b84156113b9576117066001836121aa565b9150611713600a86612243565b61171e90603061215f565b60f81b81838151811061173357611733612299565b60200101906001600160f81b031916908160001a905350611755600a86612177565b94506116f5565b6001600160a01b0383166117b7576117b281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6117da565b816001600160a01b0316836001600160a01b0316146117da576117da838261193b565b6001600160a01b0382166117f1576108fe816119d8565b826001600160a01b0316826001600160a01b0316146108fe576108fe8282611a87565b610d8e828260405180602001604052806000815250611acb565b60006001600160a01b0384163b1561193057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611872903390899088908890600401611ff3565b602060405180830381600087803b15801561188c57600080fd5b505af19250505080156118bc575060408051601f3d908101601f191682019092526118b991810190611f19565b60015b611916573d8080156118ea576040519150601f19603f3d011682016040523d82523d6000602084013e6118ef565b606091505b50805161190e5760405162461bcd60e51b815260040161067b90612087565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113b9565b506001949350505050565b6000600161194884610e47565b61195291906121aa565b6000838152600760205260409020549091508082146119a5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906119ea906001906121aa565b60008381526009602052604081205460088054939450909284908110611a1257611a12612299565b906000526020600020015490508060088381548110611a3357611a33612299565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611a6b57611a6b612283565b6001900381819060005260206000200160009055905550505050565b6000611a9283610e47565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b611ad58383611afe565b611ae2600084848461182e565b6108fe5760405162461bcd60e51b815260040161067b90612087565b6001600160a01b038216611b545760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161067b565b6000818152600260205260409020546001600160a01b031615611bb95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161067b565b611bc56000838361175c565b6001600160a01b0382166000908152600360205260408120805460019290611bee90849061215f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611c58906121ed565b90600052602060002090601f016020900481019282611c7a5760008555611cc0565b82601f10611c9357805160ff1916838001178555611cc0565b82800160010185558215611cc0579182015b82811115611cc0578251825591602001919060010190611ca5565b50611ccc929150611cd0565b5090565b5b80821115611ccc5760008155600101611cd1565b600067ffffffffffffffff80841115611d0057611d006122af565b604051601f8501601f19908116603f01168101908282118183101715611d2857611d286122af565b81604052809350858152868686011115611d4157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611d7257600080fd5b919050565b80358015158114611d7257600080fd5b600060208284031215611d9957600080fd5b6110dc82611d5b565b60008060408385031215611db557600080fd5b611dbe83611d5b565b9150611dcc60208401611d5b565b90509250929050565b600080600060608486031215611dea57600080fd5b611df384611d5b565b9250611e0160208501611d5b565b9150604084013590509250925092565b60008060008060808587031215611e2757600080fd5b611e3085611d5b565b9350611e3e60208601611d5b565b925060408501359150606085013567ffffffffffffffff811115611e6157600080fd5b8501601f81018713611e7257600080fd5b611e8187823560208401611ce5565b91505092959194509250565b60008060408385031215611ea057600080fd5b611ea983611d5b565b9150611dcc60208401611d77565b60008060408385031215611eca57600080fd5b611ed383611d5b565b946020939093013593505050565b600060208284031215611ef357600080fd5b6110dc82611d77565b600060208284031215611f0e57600080fd5b81356110dc816122c5565b600060208284031215611f2b57600080fd5b81516110dc816122c5565b600060208284031215611f4857600080fd5b813567ffffffffffffffff811115611f5f57600080fd5b8201601f81018413611f7057600080fd5b6113b984823560208401611ce5565b600060208284031215611f9157600080fd5b5035919050565b60008151808452611fb08160208601602086016121c1565b601f01601f19169290920160200192915050565b60008351611fd68184602088016121c1565b835190830190611fea8183602088016121c1565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061202690830184611f98565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120685783518352928401929184019160010161204c565b50909695505050505050565b6020815260006110dc6020830184611f98565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561217257612172612257565b500190565b6000826121865761218661226d565b500490565b60008160001904831182151516156121a5576121a5612257565b500290565b6000828210156121bc576121bc612257565b500390565b60005b838110156121dc5781810151838201526020016121c4565b83811115610bcc5750506000910152565b600181811c9082168061220157607f821691505b6020821081141561222257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561223c5761223c612257565b5060010190565b6000826122525761225261226d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461120957600080fdfea26469706673582212203c1f6cadf7315bdc1de721b6b22d6109543ccbff2a15eed6ab0a6fe21f31c5da64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80634f6ccce71161010d5780638da5cb5b116100a0578063c87b56dd1161006f578063c87b56dd14610572578063d547cfb714610592578063d5abeb01146105a7578063e985e9c5146105bd578063f2fde38b1461060657600080fd5b80638da5cb5b146104ff57806395d89b411461051d578063a22cb46514610532578063b88d4fde1461055257600080fd5b80636352211e116100dc5780636352211e1461048a5780636f8b44b0146104aa57806370a08231146104ca578063715018a6146104ea57600080fd5b80634f6ccce71461041b57806355f804b31461043b57806359a7715a1461045b5780635c975abb1461047057600080fd5b806318160ddd116101905780633ccfd60b1161015f5780633ccfd60b1461039357806340c10f191461039b57806342842e0e146103ae578063438b6300146103ce57806344a0d68a146103fb57600080fd5b806318160ddd14610328578063239c70ae1461033d57806323b872dd146103535780632f745c591461037357600080fd5b8063088a4ed0116101cc578063088a4ed0146102af578063095ea7b3146102cf57806309c8699d146102ef57806313faede61461030457600080fd5b806301ffc9a7146101fe57806302329a291461023357806306fdde0314610255578063081812fc14610277575b600080fd5b34801561020a57600080fd5b5061021e610219366004611efc565b610626565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061025361024e366004611ee1565b610651565b005b34801561026157600080fd5b5061026a610697565b60405161022a9190612074565b34801561028357600080fd5b50610297610292366004611f7f565b610729565b6040516001600160a01b03909116815260200161022a565b3480156102bb57600080fd5b506102536102ca366004611f7f565b6107be565b3480156102db57600080fd5b506102536102ea366004611eb7565b6107ed565b3480156102fb57600080fd5b50610253610903565b34801561031057600080fd5b5061031a600d5481565b60405190815260200161022a565b34801561033457600080fd5b5060085461031a565b34801561034957600080fd5b5061031a600f5481565b34801561035f57600080fd5b5061025361036e366004611dd5565b61093a565b34801561037f57600080fd5b5061031a61038e366004611eb7565b61096b565b610253610a01565b6102536103a9366004611eb7565b610a4f565b3480156103ba57600080fd5b506102536103c9366004611dd5565b610bd2565b3480156103da57600080fd5b506103ee6103e9366004611d87565b610bed565b60405161022a9190612030565b34801561040757600080fd5b50610253610416366004611f7f565b610c8f565b34801561042757600080fd5b5061031a610436366004611f7f565b610cbe565b34801561044757600080fd5b50610253610456366004611f36565b610d51565b34801561046757600080fd5b5061031a610d92565b34801561047c57600080fd5b5060105461021e9060ff1681565b34801561049657600080fd5b506102976104a5366004611f7f565b610da1565b3480156104b657600080fd5b506102536104c5366004611f7f565b610e18565b3480156104d657600080fd5b5061031a6104e5366004611d87565b610e47565b3480156104f657600080fd5b50610253610ece565b34801561050b57600080fd5b50600a546001600160a01b0316610297565b34801561052957600080fd5b5061026a610f02565b34801561053e57600080fd5b5061025361054d366004611e8d565b610f11565b34801561055e57600080fd5b5061025361056d366004611e11565b610fd6565b34801561057e57600080fd5b5061026a61058d366004611f7f565b611008565b34801561059e57600080fd5b5061026a6110e3565b3480156105b357600080fd5b5061031a600e5481565b3480156105c957600080fd5b5061021e6105d8366004611da2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561061257600080fd5b50610253610621366004611d87565b611171565b60006001600160e01b0319821663780e9d6360e01b148061064b575061064b8261120c565b92915050565b600a546001600160a01b031633146106845760405162461bcd60e51b815260040161067b906120d9565b60405180910390fd5b6010805460ff1916911515919091179055565b6060600080546106a6906121ed565b80601f01602080910402602001604051908101604052809291908181526020018280546106d2906121ed565b801561071f5780601f106106f45761010080835404028352916020019161071f565b820191906000526020600020905b81548152906001019060200180831161070257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107a25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161067b565b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b031633146107e85760405162461bcd60e51b815260040161067b906120d9565b600f55565b60006107f882610da1565b9050806001600160a01b0316836001600160a01b031614156108665760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161067b565b336001600160a01b0382161480610882575061088281336105d8565b6108f45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161067b565b6108fe838361125c565b505050565b600a546001600160a01b0316331461092d5760405162461bcd60e51b815260040161067b906120d9565b6109383360c8610a4f565b565b61094433826112ca565b6109605760405162461bcd60e51b815260040161067b9061210e565b6108fe8383836113c1565b600061097683610e47565b82106109d85760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161067b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610a2b5760405162461bcd60e51b815260040161067b906120d9565b60405133904780156108fc02916000818181858888f1935050505061093857600080fd5b6000610a5961156c565b905060008211610a6857600080fd5b600e54610a75838361215f565b1115610aae5760405162461bcd60e51b815260206004820152600860248201526714d85b1948115b9960c21b604482015260640161067b565b600a546001600160a01b03163314610ba65760105460ff1615610b135760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604482015260640161067b565b81600d54610b21919061218b565b341015610b635760405162461bcd60e51b815260206004820152601060248201526f15985b1d594818995b1bddc818dbdcdd60821b604482015260640161067b565b600f54821115610ba65760405162461bcd60e51b815260206004820152600e60248201526d22bc31b2b2b23990373ab6b132b960911b604482015260640161067b565b60005b82811015610bcc57610bba84611577565b80610bc481612228565b915050610ba9565b50505050565b6108fe83838360405180602001604052806000815250610fd6565b60606000610bfa83610e47565b905060008167ffffffffffffffff811115610c1757610c176122af565b604051908082528060200260200182016040528015610c40578160200160208202803683370190505b50905060005b82811015610c8757610c58858261096b565b828281518110610c6a57610c6a612299565b602090810291909101015280610c7f81612228565b915050610c46565b509392505050565b600a546001600160a01b03163314610cb95760405162461bcd60e51b815260040161067b906120d9565b600d55565b6000610cc960085490565b8210610d2c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161067b565b60088281548110610d3f57610d3f612299565b90600052602060002001549050919050565b600a546001600160a01b03163314610d7b5760405162461bcd60e51b815260040161067b906120d9565b8051610d8e90600c906020840190611c4c565b5050565b6000610d9c61156c565b905090565b6000818152600260205260408120546001600160a01b03168061064b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161067b565b600a546001600160a01b03163314610e425760405162461bcd60e51b815260040161067b906120d9565b600e55565b60006001600160a01b038216610eb25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161067b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610ef85760405162461bcd60e51b815260040161067b906120d9565b61093860006115ca565b6060600180546106a6906121ed565b6001600160a01b038216331415610f6a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161067b565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610fe033836112ca565b610ffc5760405162461bcd60e51b815260040161067b9061210e565b610bcc8484848461161c565b6000818152600260205260409020546060906001600160a01b03166110875760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161067b565b600061109161164f565b905060008151116110b157604051806020016040528060008152506110dc565b806110bb8461165e565b6040516020016110cc929190611fc4565b6040516020818303038152906040525b9392505050565b600c80546110f0906121ed565b80601f016020809104026020016040519081016040528092919081815260200182805461111c906121ed565b80156111695780601f1061113e57610100808354040283529160200191611169565b820191906000526020600020905b81548152906001019060200180831161114c57829003601f168201915b505050505081565b600a546001600160a01b0316331461119b5760405162461bcd60e51b815260040161067b906120d9565b6001600160a01b0381166112005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161067b565b611209816115ca565b50565b60006001600160e01b031982166380ac58cd60e01b148061123d57506001600160e01b03198216635b5e139f60e01b145b8061064b57506301ffc9a760e01b6001600160e01b031983161461064b565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061129182610da1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113435760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161067b565b600061134e83610da1565b9050806001600160a01b0316846001600160a01b031614806113895750836001600160a01b031661137e84610729565b6001600160a01b0316145b806113b957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113d482610da1565b6001600160a01b03161461143c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161067b565b6001600160a01b03821661149e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161067b565b6114a983838361175c565b6114b460008261125c565b6001600160a01b03831660009081526003602052604081208054600192906114dd9084906121aa565b90915550506001600160a01b038216600090815260036020526040812080546001929061150b90849061215f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000610d9c600b5490565b600061158161156c565b9050611591600b80546001019055565b61159b8282611814565b60405181907f9243df0beb5d82661ce7a431020bc965a1772cc7275f7658e9d723df575db2df90600090a25050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6116278484846113c1565b6116338484848461182e565b610bcc5760405162461bcd60e51b815260040161067b90612087565b6060600c80546106a6906121ed565b6060816116825750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116ac578061169681612228565b91506116a59050600a83612177565b9150611686565b60008167ffffffffffffffff8111156116c7576116c76122af565b6040519080825280601f01601f1916602001820160405280156116f1576020820181803683370190505b5090505b84156113b9576117066001836121aa565b9150611713600a86612243565b61171e90603061215f565b60f81b81838151811061173357611733612299565b60200101906001600160f81b031916908160001a905350611755600a86612177565b94506116f5565b6001600160a01b0383166117b7576117b281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6117da565b816001600160a01b0316836001600160a01b0316146117da576117da838261193b565b6001600160a01b0382166117f1576108fe816119d8565b826001600160a01b0316826001600160a01b0316146108fe576108fe8282611a87565b610d8e828260405180602001604052806000815250611acb565b60006001600160a01b0384163b1561193057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611872903390899088908890600401611ff3565b602060405180830381600087803b15801561188c57600080fd5b505af19250505080156118bc575060408051601f3d908101601f191682019092526118b991810190611f19565b60015b611916573d8080156118ea576040519150601f19603f3d011682016040523d82523d6000602084013e6118ef565b606091505b50805161190e5760405162461bcd60e51b815260040161067b90612087565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113b9565b506001949350505050565b6000600161194884610e47565b61195291906121aa565b6000838152600760205260409020549091508082146119a5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906119ea906001906121aa565b60008381526009602052604081205460088054939450909284908110611a1257611a12612299565b906000526020600020015490508060088381548110611a3357611a33612299565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611a6b57611a6b612283565b6001900381819060005260206000200160009055905550505050565b6000611a9283610e47565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b611ad58383611afe565b611ae2600084848461182e565b6108fe5760405162461bcd60e51b815260040161067b90612087565b6001600160a01b038216611b545760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161067b565b6000818152600260205260409020546001600160a01b031615611bb95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161067b565b611bc56000838361175c565b6001600160a01b0382166000908152600360205260408120805460019290611bee90849061215f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611c58906121ed565b90600052602060002090601f016020900481019282611c7a5760008555611cc0565b82601f10611c9357805160ff1916838001178555611cc0565b82800160010185558215611cc0579182015b82811115611cc0578251825591602001919060010190611ca5565b50611ccc929150611cd0565b5090565b5b80821115611ccc5760008155600101611cd1565b600067ffffffffffffffff80841115611d0057611d006122af565b604051601f8501601f19908116603f01168101908282118183101715611d2857611d286122af565b81604052809350858152868686011115611d4157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611d7257600080fd5b919050565b80358015158114611d7257600080fd5b600060208284031215611d9957600080fd5b6110dc82611d5b565b60008060408385031215611db557600080fd5b611dbe83611d5b565b9150611dcc60208401611d5b565b90509250929050565b600080600060608486031215611dea57600080fd5b611df384611d5b565b9250611e0160208501611d5b565b9150604084013590509250925092565b60008060008060808587031215611e2757600080fd5b611e3085611d5b565b9350611e3e60208601611d5b565b925060408501359150606085013567ffffffffffffffff811115611e6157600080fd5b8501601f81018713611e7257600080fd5b611e8187823560208401611ce5565b91505092959194509250565b60008060408385031215611ea057600080fd5b611ea983611d5b565b9150611dcc60208401611d77565b60008060408385031215611eca57600080fd5b611ed383611d5b565b946020939093013593505050565b600060208284031215611ef357600080fd5b6110dc82611d77565b600060208284031215611f0e57600080fd5b81356110dc816122c5565b600060208284031215611f2b57600080fd5b81516110dc816122c5565b600060208284031215611f4857600080fd5b813567ffffffffffffffff811115611f5f57600080fd5b8201601f81018413611f7057600080fd5b6113b984823560208401611ce5565b600060208284031215611f9157600080fd5b5035919050565b60008151808452611fb08160208601602086016121c1565b601f01601f19169290920160200192915050565b60008351611fd68184602088016121c1565b835190830190611fea8183602088016121c1565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061202690830184611f98565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120685783518352928401929184019160010161204c565b50909695505050505050565b6020815260006110dc6020830184611f98565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561217257612172612257565b500190565b6000826121865761218661226d565b500490565b60008160001904831182151516156121a5576121a5612257565b500290565b6000828210156121bc576121bc612257565b500390565b60005b838110156121dc5781810151838201526020016121c4565b83811115610bcc5750506000910152565b600181811c9082168061220157607f821691505b6020821081141561222257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561223c5761223c612257565b5060010190565b6000826122525761225261226d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461120957600080fdfea26469706673582212203c1f6cadf7315bdc1de721b6b22d6109543ccbff2a15eed6ab0a6fe21f31c5da64736f6c63430008070033

Deployed Bytecode Sourcemap

52273:2816:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46086:224;;;;;;;;;;-1:-1:-1;46086:224:0;;;;;:::i;:::-;;:::i;:::-;;;6540:14:1;;6533:22;6515:41;;6503:2;6488:18;46086:224:0;;;;;;;;54525:79;;;;;;;;;;-1:-1:-1;54525:79:0;;;;;:::i;:::-;;:::i;:::-;;32253:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33812:221::-;;;;;;;;;;-1:-1:-1;33812:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5201:32:1;;;5183:51;;5171:2;5156:18;33812:221:0;5037:203:1;54710:124:0;;;;;;;;;;-1:-1:-1;54710:124:0;;;;;:::i;:::-;;:::i;33335:411::-;;;;;;;;;;-1:-1:-1;33335:411:0;;;;;:::i;:::-;;:::i;52818:125::-;;;;;;;;;;;;;:::i;52517:32::-;;;;;;;;;;;;;;;;;;;15524:25:1;;;15512:2;15497:18;52517:32:0;15378:177:1;46726:113:0;;;;;;;;;;-1:-1:-1;46814:10:0;:17;46726:113;;52594:33;;;;;;;;;;;;;;;;34702:339;;;;;;;;;;-1:-1:-1;34702:339:0;;;;;:::i;:::-;;:::i;46394:256::-;;;;;;;;;;-1:-1:-1;46394:256:0;;;;;:::i;:::-;;:::i;54964:120::-;;;:::i;53156:581::-;;;;;;:::i;:::-;;:::i;35112:185::-;;;;;;;;;;-1:-1:-1;35112:185:0;;;;;:::i;:::-;;:::i;54164:353::-;;;;;;;;;;-1:-1:-1;54164:353:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;54614:88::-;;;;;;;;;;-1:-1:-1;54614:88:0;;;;;:::i;:::-;;:::i;46916:233::-;;;;;;;;;;-1:-1:-1;46916:233:0;;;;;:::i;:::-;;:::i;54055:101::-;;;;;;;;;;-1:-1:-1;54055:101:0;;;;;:::i;:::-;;:::i;53057:91::-;;;;;;;;;;;;;:::i;52634:26::-;;;;;;;;;;-1:-1:-1;52634:26:0;;;;;;;;31947:239;;;;;;;;;;-1:-1:-1;31947:239:0;;;;;:::i;:::-;;:::i;54846:108::-;;;;;;;;;;-1:-1:-1;54846:108:0;;;;;:::i;:::-;;:::i;31677:208::-;;;;;;;;;;-1:-1:-1;31677:208:0;;;;;:::i;:::-;;:::i;10853:94::-;;;;;;;;;;;;;:::i;10202:87::-;;;;;;;;;;-1:-1:-1;10275:6:0;;-1:-1:-1;;;;;10275:6:0;10202:87;;32422:104;;;;;;;;;;;;;:::i;34105:295::-;;;;;;;;;;-1:-1:-1;34105:295:0;;;;;:::i;:::-;;:::i;35368:328::-;;;;;;;;;;-1:-1:-1;35368:328:0;;;;;:::i;:::-;;:::i;32597:334::-;;;;;;;;;;-1:-1:-1;32597:334:0;;;;;:::i;:::-;;:::i;52484:26::-;;;;;;;;;;;;;:::i;52556:31::-;;;;;;;;;;;;;;;;34471:164;;;;;;;;;;-1:-1:-1;34471:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34592:25:0;;;34568:4;34592:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34471:164;11102:192;;;;;;;;;;-1:-1:-1;11102:192:0;;;;;:::i;:::-;;:::i;46086:224::-;46188:4;-1:-1:-1;;;;;;46212:50:0;;-1:-1:-1;;;46212:50:0;;:90;;;46266:36;46290:11;46266:23;:36::i;:::-;46205:97;46086:224;-1:-1:-1;;46086:224:0:o;54525:79::-;10275:6;;-1:-1:-1;;;;;10275:6:0;9072:10;10422:23;10414:68;;;;-1:-1:-1;;;10414:68:0;;;;;;;:::i;:::-;;;;;;;;;54581:6:::1;:15:::0;;-1:-1:-1;;54581:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54525:79::o;32253:100::-;32307:13;32340:5;32333:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32253:100;:::o;33812:221::-;33888:7;37295:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37295:16:0;33908:73;;;;-1:-1:-1;;;33908:73:0;;12411:2:1;33908:73:0;;;12393:21:1;12450:2;12430:18;;;12423:30;12489:34;12469:18;;;12462:62;-1:-1:-1;;;12540:18:1;;;12533:42;12592:19;;33908:73:0;12209:408:1;33908:73:0;-1:-1:-1;34001:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34001:24:0;;33812:221::o;54710:124::-;10275:6;;-1:-1:-1;;;;;10275:6:0;9072:10;10422:23;10414:68;;;;-1:-1:-1;;;10414:68:0;;;;;;;:::i;:::-;54793:13:::1;:33:::0;54710:124::o;33335:411::-;33416:13;33432:23;33447:7;33432:14;:23::i;:::-;33416:39;;33480:5;-1:-1:-1;;;;;33474:11:0;:2;-1:-1:-1;;;;;33474:11:0;;;33466:57;;;;-1:-1:-1;;;33466:57:0;;14011:2:1;33466:57:0;;;13993:21:1;14050:2;14030:18;;;14023:30;14089:34;14069:18;;;14062:62;-1:-1:-1;;;14140:18:1;;;14133:31;14181:19;;33466:57:0;13809:397:1;33466:57:0;9072:10;-1:-1:-1;;;;;33558:21:0;;;;:62;;-1:-1:-1;33583:37:0;33600:5;9072:10;34471:164;:::i;33583:37::-;33536:168;;;;-1:-1:-1;;;33536:168:0;;10804:2:1;33536:168:0;;;10786:21:1;10843:2;10823:18;;;10816:30;10882:34;10862:18;;;10855:62;10953:26;10933:18;;;10926:54;10997:19;;33536:168:0;10602:420:1;33536:168:0;33717:21;33726:2;33730:7;33717:8;:21::i;:::-;33405:341;33335:411;;:::o;52818:125::-;10275:6;;-1:-1:-1;;;;;10275:6:0;9072:10;10422:23;10414:68;;;;-1:-1:-1;;;10414:68:0;;;;;;;:::i;:::-;52880:21:::1;52885:10;52897:3;52880:4;:21::i;:::-;52818:125::o:0;34702:339::-;34897:41;9072:10;34930:7;34897:18;:41::i;:::-;34889:103;;;;-1:-1:-1;;;34889:103:0;;;;;;;:::i;:::-;35005:28;35015:4;35021:2;35025:7;35005:9;:28::i;46394:256::-;46491:7;46527:23;46544:5;46527:16;:23::i;:::-;46519:5;:31;46511:87;;;;-1:-1:-1;;;46511:87:0;;7681:2:1;46511:87:0;;;7663:21:1;7720:2;7700:18;;;7693:30;7759:34;7739:18;;;7732:62;-1:-1:-1;;;7810:18:1;;;7803:41;7861:19;;46511:87:0;7479:407:1;46511:87:0;-1:-1:-1;;;;;;46616:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;46394:256::o;54964:120::-;10275:6;;-1:-1:-1;;;;;10275:6:0;9072:10;10422:23;10414:68;;;;-1:-1:-1;;;10414:68:0;;;;;;;:::i;:::-;55028:47:::1;::::0;55036:10:::1;::::0;55053:21:::1;55028:47:::0;::::1;;;::::0;::::1;::::0;;;55053:21;55036:10;55028:47;::::1;;;;;;55020:56;;;::::0;::::1;53156:581:::0;53230:14;53247;:12;:14::i;:::-;53230:31;;53304:1;53290:11;:15;53282:24;;;;;;53349:9;;53325:20;53334:11;53325:6;:20;:::i;:::-;:33;;53317:54;;;;-1:-1:-1;;;53317:54:0;;14413:2:1;53317:54:0;;;14395:21:1;14452:1;14432:18;;;14425:29;-1:-1:-1;;;14470:18:1;;;14463:38;14518:18;;53317:54:0;14211:331:1;53317:54:0;10275:6;;-1:-1:-1;;;;;10275:6:0;53388:10;:21;53384:246;;53435:6;;;;53434:7;53426:47;;;;-1:-1:-1;;;53426:47:0;;10035:2:1;53426:47:0;;;10017:21:1;10074:2;10054:18;;;10047:30;10113:29;10093:18;;;10086:57;10160:18;;53426:47:0;9833:351:1;53426:47:0;53516:11;53509:4;;:18;;;;:::i;:::-;53496:9;:31;;53488:60;;;;-1:-1:-1;;;53488:60:0;;6993:2:1;53488:60:0;;;6975:21:1;7032:2;7012:18;;;7005:30;-1:-1:-1;;;7051:18:1;;;7044:46;7107:18;;53488:60:0;6791:340:1;53488:60:0;53586:13;;53571:11;:28;;53563:55;;;;-1:-1:-1;;;53563:55:0;;7338:2:1;53563:55:0;;;7320:21:1;7377:2;7357:18;;;7350:30;-1:-1:-1;;;7396:18:1;;;7389:44;7450:18;;53563:55:0;7136:338:1;53563:55:0;53647:9;53642:88;53666:11;53662:1;:15;53642:88;;;53699:19;53714:3;53699:14;:19::i;:::-;53679:3;;;;:::i;:::-;;;;53642:88;;;;53219:518;53156:581;;:::o;35112:185::-;35250:39;35267:4;35273:2;35277:7;35250:39;;;;;;;;;;;;:16;:39::i;54164:353::-;54226:16;54255:18;54276:17;54286:6;54276:9;:17::i;:::-;54255:38;;54306:25;54348:10;54334:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54334:25:0;;54306:53;;54375:9;54370:112;54394:10;54390:1;:14;54370:112;;;54440:30;54460:6;54468:1;54440:19;:30::i;:::-;54426:8;54435:1;54426:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;54406:3;;;;:::i;:::-;;;;54370:112;;;-1:-1:-1;54501:8:0;54164:353;-1:-1:-1;;;54164:353:0:o;54614:88::-;10275:6;;-1:-1:-1;;;;;10275:6:0;9072:10;10422:23;10414:68;;;;-1:-1:-1;;;10414:68:0;;;;;;;:::i;:::-;54679:4:::1;:15:::0;54614:88::o;46916:233::-;46991:7;47027:30;46814:10;:17;;46726:113;47027:30;47019:5;:38;47011:95;;;;-1:-1:-1;;;47011:95:0;;15167:2:1;47011:95:0;;;15149:21:1;15206:2;15186:18;;;15179:30;15245:34;15225:18;;;15218:62;-1:-1:-1;;;15296:18:1;;;15289:42;15348:19;;47011:95:0;14965:408:1;47011:95:0;47124:10;47135:5;47124:17;;;;;;;;:::i;:::-;;;;;;;;;47117:24;;46916:233;;;:::o;54055:101::-;10275:6;;-1:-1:-1;;;;;10275:6:0;9072:10;10422:23;10414:68;;;;-1:-1:-1;;;10414:68:0;;;;;;;:::i;:::-;54126:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;54055:101:::0;:::o;53057:91::-;53099:7;53126:14;:12;:14::i;:::-;53119:21;;53057:91;:::o;31947:239::-;32019:7;32055:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32055:16:0;32090:19;32082:73;;;;-1:-1:-1;;;32082:73:0;;11640:2:1;32082:73:0;;;11622:21:1;11679:2;11659:18;;;11652:30;11718:34;11698:18;;;11691:62;-1:-1:-1;;;11769:18:1;;;11762:39;11818:19;;32082:73:0;11438:405:1;54846:108:0;10275:6;;-1:-1:-1;;;;;10275:6:0;9072:10;10422:23;10414:68;;;;-1:-1:-1;;;10414:68:0;;;;;;;:::i;:::-;54921:9:::1;:25:::0;54846:108::o;31677:208::-;31749:7;-1:-1:-1;;;;;31777:19:0;;31769:74;;;;-1:-1:-1;;;31769:74:0;;11229:2:1;31769:74:0;;;11211:21:1;11268:2;11248:18;;;11241:30;11307:34;11287:18;;;11280:62;-1:-1:-1;;;11358:18:1;;;11351:40;11408:19;;31769:74:0;11027:406:1;31769:74:0;-1:-1:-1;;;;;;31861:16:0;;;;;:9;:16;;;;;;;31677:208::o;10853:94::-;10275:6;;-1:-1:-1;;;;;10275:6:0;9072:10;10422:23;10414:68;;;;-1:-1:-1;;;10414:68:0;;;;;;;:::i;:::-;10918:21:::1;10936:1;10918:9;:21::i;32422:104::-:0;32478:13;32511:7;32504:14;;;;;:::i;34105:295::-;-1:-1:-1;;;;;34208:24:0;;9072:10;34208:24;;34200:62;;;;-1:-1:-1;;;34200:62:0;;9681:2:1;34200:62:0;;;9663:21:1;9720:2;9700:18;;;9693:30;9759:27;9739:18;;;9732:55;9804:18;;34200:62:0;9479:349:1;34200:62:0;9072:10;34275:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34275:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34275:53:0;;;;;;;;;;34344:48;;6515:41:1;;;34275:42:0;;9072:10;34344:48;;6488:18:1;34344:48:0;;;;;;;34105:295;;:::o;35368:328::-;35543:41;9072:10;35576:7;35543:18;:41::i;:::-;35535:103;;;;-1:-1:-1;;;35535:103:0;;;;;;;:::i;:::-;35649:39;35663:4;35669:2;35673:7;35682:5;35649:13;:39::i;32597:334::-;37271:4;37295:16;;;:7;:16;;;;;;32670:13;;-1:-1:-1;;;;;37295:16:0;32696:76;;;;-1:-1:-1;;;32696:76:0;;13595:2:1;32696:76:0;;;13577:21:1;13634:2;13614:18;;;13607:30;13673:34;13653:18;;;13646:62;-1:-1:-1;;;13724:18:1;;;13717:45;13779:19;;32696:76:0;13393:411:1;32696:76:0;32785:21;32809:10;:8;:10::i;:::-;32785:34;;32861:1;32843:7;32837:21;:25;:86;;;;;;;;;;;;;;;;;32889:7;32898:18;:7;:16;:18::i;:::-;32872:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32837:86;32830:93;32597:334;-1:-1:-1;;;32597:334:0:o;52484:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11102:192::-;10275:6;;-1:-1:-1;;;;;10275:6:0;9072:10;10422:23;10414:68;;;;-1:-1:-1;;;10414:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11191:22:0;::::1;11183:73;;;::::0;-1:-1:-1;;;11183:73:0;;8512:2:1;11183:73:0::1;::::0;::::1;8494:21:1::0;8551:2;8531:18;;;8524:30;8590:34;8570:18;;;8563:62;-1:-1:-1;;;8641:18:1;;;8634:36;8687:19;;11183:73:0::1;8310:402:1::0;11183:73:0::1;11267:19;11277:8;11267:9;:19::i;:::-;11102:192:::0;:::o;31308:305::-;31410:4;-1:-1:-1;;;;;;31447:40:0;;-1:-1:-1;;;31447:40:0;;:105;;-1:-1:-1;;;;;;;31504:48:0;;-1:-1:-1;;;31504:48:0;31447:105;:158;;;-1:-1:-1;;;;;;;;;;13319:40:0;;;31569:36;13210:157;41188:174;41263:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;41263:29:0;-1:-1:-1;;;;;41263:29:0;;;;;;;;:24;;41317:23;41263:24;41317:14;:23::i;:::-;-1:-1:-1;;;;;41308:46:0;;;;;;;;;;;41188:174;;:::o;37500:348::-;37593:4;37295:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37295:16:0;37610:73;;;;-1:-1:-1;;;37610:73:0;;10391:2:1;37610:73:0;;;10373:21:1;10430:2;10410:18;;;10403:30;10469:34;10449:18;;;10442:62;-1:-1:-1;;;10520:18:1;;;10513:42;10572:19;;37610:73:0;10189:408:1;37610:73:0;37694:13;37710:23;37725:7;37710:14;:23::i;:::-;37694:39;;37763:5;-1:-1:-1;;;;;37752:16:0;:7;-1:-1:-1;;;;;37752:16:0;;:51;;;;37796:7;-1:-1:-1;;;;;37772:31:0;:20;37784:7;37772:11;:20::i;:::-;-1:-1:-1;;;;;37772:31:0;;37752:51;:87;;;-1:-1:-1;;;;;;34592:25:0;;;34568:4;34592:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;37807:32;37744:96;37500:348;-1:-1:-1;;;;37500:348:0:o;40492:578::-;40651:4;-1:-1:-1;;;;;40624:31:0;:23;40639:7;40624:14;:23::i;:::-;-1:-1:-1;;;;;40624:31:0;;40616:85;;;;-1:-1:-1;;;40616:85:0;;13185:2:1;40616:85:0;;;13167:21:1;13224:2;13204:18;;;13197:30;13263:34;13243:18;;;13236:62;-1:-1:-1;;;13314:18:1;;;13307:39;13363:19;;40616:85:0;12983:405:1;40616:85:0;-1:-1:-1;;;;;40720:16:0;;40712:65;;;;-1:-1:-1;;;40712:65:0;;9276:2:1;40712:65:0;;;9258:21:1;9315:2;9295:18;;;9288:30;9354:34;9334:18;;;9327:62;-1:-1:-1;;;9405:18:1;;;9398:34;9449:19;;40712:65:0;9074:400:1;40712:65:0;40790:39;40811:4;40817:2;40821:7;40790:20;:39::i;:::-;40894:29;40911:1;40915:7;40894:8;:29::i;:::-;-1:-1:-1;;;;;40936:15:0;;;;;;:9;:15;;;;;:20;;40955:1;;40936:15;:20;;40955:1;;40936:20;:::i;:::-;;;;-1:-1:-1;;;;;;;40967:13:0;;;;;;:9;:13;;;;;:18;;40984:1;;40967:13;:18;;40984:1;;40967:18;:::i;:::-;;;;-1:-1:-1;;40996:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40996:21:0;-1:-1:-1;;;;;40996:21:0;;;;;;;;;41035:27;;40996:16;;41035:27;;;;;;;40492:578;;;:::o;52951:98::-;52998:4;53022:19;:9;909:14;;817:114;53745:181;53801:7;53811:14;:12;:14::i;:::-;53801:24;;53836:21;:9;1028:19;;1046:1;1028:19;;;939:127;53836:21;53868:18;53878:3;53883:2;53868:9;:18::i;:::-;53902:16;;53915:2;;53902:16;;;;;53790:136;53745:181;:::o;11302:173::-;11377:6;;;-1:-1:-1;;;;;11394:17:0;;;-1:-1:-1;;;;;;11394:17:0;;;;;;;11427:40;;11377:6;;;11394:17;11377:6;;11427:40;;11358:16;;11427:40;11347:128;11302:173;:::o;36578:315::-;36735:28;36745:4;36751:2;36755:7;36735:9;:28::i;:::-;36782:48;36805:4;36811:2;36815:7;36824:5;36782:22;:48::i;:::-;36774:111;;;;-1:-1:-1;;;36774:111:0;;;;;;;:::i;53934:113::-;53994:13;54027:12;54020:19;;;;;:::i;13685:723::-;13741:13;13962:10;13958:53;;-1:-1:-1;;13989:10:0;;;;;;;;;;;;-1:-1:-1;;;13989:10:0;;;;;13685:723::o;13958:53::-;14036:5;14021:12;14077:78;14084:9;;14077:78;;14110:8;;;;:::i;:::-;;-1:-1:-1;14133:10:0;;-1:-1:-1;14141:2:0;14133:10;;:::i;:::-;;;14077:78;;;14165:19;14197:6;14187:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14187:17:0;;14165:39;;14215:154;14222:10;;14215:154;;14249:11;14259:1;14249:11;;:::i;:::-;;-1:-1:-1;14318:10:0;14326:2;14318:5;:10;:::i;:::-;14305:24;;:2;:24;:::i;:::-;14292:39;;14275:6;14282;14275:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;14275:56:0;;;;;;;;-1:-1:-1;14346:11:0;14355:2;14346:11;;:::i;:::-;;;14215:154;;47762:589;-1:-1:-1;;;;;47968:18:0;;47964:187;;48003:40;48035:7;49178:10;:17;;49151:24;;;;:15;:24;;;;;:44;;;49206:24;;;;;;;;;;;;49074:164;48003:40;47964:187;;;48073:2;-1:-1:-1;;;;;48065:10:0;:4;-1:-1:-1;;;;;48065:10:0;;48061:90;;48092:47;48125:4;48131:7;48092:32;:47::i;:::-;-1:-1:-1;;;;;48165:16:0;;48161:183;;48198:45;48235:7;48198:36;:45::i;48161:183::-;48271:4;-1:-1:-1;;;;;48265:10:0;:2;-1:-1:-1;;;;;48265:10:0;;48261:83;;48292:40;48320:2;48324:7;48292:27;:40::i;38190:110::-;38266:26;38276:2;38280:7;38266:26;;;;;;;;;;;;:9;:26::i;41927:799::-;42082:4;-1:-1:-1;;;;;42103:13:0;;16535:20;16583:8;42099:620;;42139:72;;-1:-1:-1;;;42139:72:0;;-1:-1:-1;;;;;42139:36:0;;;;;:72;;9072:10;;42190:4;;42196:7;;42205:5;;42139:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42139:72:0;;;;;;;;-1:-1:-1;;42139:72:0;;;;;;;;;;;;:::i;:::-;;;42135:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42381:13:0;;42377:272;;42424:60;;-1:-1:-1;;;42424:60:0;;;;;;;:::i;42377:272::-;42599:6;42593:13;42584:6;42580:2;42576:15;42569:38;42135:529;-1:-1:-1;;;;;;42262:51:0;-1:-1:-1;;;42262:51:0;;-1:-1:-1;42255:58:0;;42099:620;-1:-1:-1;42703:4:0;41927:799;;;;;;:::o;49865:988::-;50131:22;50181:1;50156:22;50173:4;50156:16;:22::i;:::-;:26;;;;:::i;:::-;50193:18;50214:26;;;:17;:26;;;;;;50131:51;;-1:-1:-1;50347:28:0;;;50343:328;;-1:-1:-1;;;;;50414:18:0;;50392:19;50414:18;;;:12;:18;;;;;;;;:34;;;;;;;;;50465:30;;;;;;:44;;;50582:30;;:17;:30;;;;;:43;;;50343:328;-1:-1:-1;50767:26:0;;;;:17;:26;;;;;;;;50760:33;;;-1:-1:-1;;;;;50811:18:0;;;;;:12;:18;;;;;:34;;;;;;;50804:41;49865:988::o;51148:1079::-;51426:10;:17;51401:22;;51426:21;;51446:1;;51426:21;:::i;:::-;51458:18;51479:24;;;:15;:24;;;;;;51852:10;:26;;51401:46;;-1:-1:-1;51479:24:0;;51401:46;;51852:26;;;;;;:::i;:::-;;;;;;;;;51830:48;;51916:11;51891:10;51902;51891:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;51996:28;;;:15;:28;;;;;;;:41;;;52168:24;;;;;52161:31;52203:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;51219:1008;;;51148:1079;:::o;48652:221::-;48737:14;48754:20;48771:2;48754:16;:20::i;:::-;-1:-1:-1;;;;;48785:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;48830:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;48652:221:0:o;38527:321::-;38657:18;38663:2;38667:7;38657:5;:18::i;:::-;38708:54;38739:1;38743:2;38747:7;38756:5;38708:22;:54::i;:::-;38686:154;;;;-1:-1:-1;;;38686:154:0;;;;;;;:::i;39184:382::-;-1:-1:-1;;;;;39264:16:0;;39256:61;;;;-1:-1:-1;;;39256:61:0;;12050:2:1;39256:61:0;;;12032:21:1;;;12069:18;;;12062:30;12128:34;12108:18;;;12101:62;12180:18;;39256:61:0;11848:356:1;39256:61:0;37271:4;37295:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37295:16:0;:30;39328:58;;;;-1:-1:-1;;;39328:58:0;;8919:2:1;39328:58:0;;;8901:21:1;8958:2;8938:18;;;8931:30;8997;8977:18;;;8970:58;9045:18;;39328:58:0;8717:352:1;39328:58:0;39399:45;39428:1;39432:2;39436:7;39399:20;:45::i;:::-;-1:-1:-1;;;;;39457:13:0;;;;;;:9;:13;;;;;:18;;39474:1;;39457:13;:18;;39474:1;;39457:18;:::i;:::-;;;;-1:-1:-1;;39486:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39486:21:0;-1:-1:-1;;;;;39486:21:0;;;;;;;;39525:33;;39486:16;;;39525:33;;39486:16;;39525:33;39184:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:470::-;4741:3;4779:6;4773:13;4795:53;4841:6;4836:3;4829:4;4821:6;4817:17;4795:53;:::i;:::-;4911:13;;4870:16;;;;4933:57;4911:13;4870:16;4967:4;4955:17;;4933:57;:::i;:::-;5006:20;;4562:470;-1:-1:-1;;;;4562:470:1:o;5245:488::-;-1:-1:-1;;;;;5514:15:1;;;5496:34;;5566:15;;5561:2;5546:18;;5539:43;5613:2;5598:18;;5591:34;;;5661:3;5656:2;5641:18;;5634:31;;;5439:4;;5682:45;;5707:19;;5699:6;5682:45;:::i;:::-;5674:53;5245:488;-1:-1:-1;;;;;;5245:488:1:o;5738:632::-;5909:2;5961:21;;;6031:13;;5934:18;;;6053:22;;;5880:4;;5909:2;6132:15;;;;6106:2;6091:18;;;5880:4;6175:169;6189:6;6186:1;6183:13;6175:169;;;6250:13;;6238:26;;6319:15;;;;6284:12;;;;6211:1;6204:9;6175:169;;;-1:-1:-1;6361:3:1;;5738:632;-1:-1:-1;;;;;;5738:632:1:o;6567:219::-;6716:2;6705:9;6698:21;6679:4;6736:44;6776:2;6765:9;6761:18;6753:6;6736:44;:::i;7891:414::-;8093:2;8075:21;;;8132:2;8112:18;;;8105:30;8171:34;8166:2;8151:18;;8144:62;-1:-1:-1;;;8237:2:1;8222:18;;8215:48;8295:3;8280:19;;7891:414::o;12622:356::-;12824:2;12806:21;;;12843:18;;;12836:30;12902:34;12897:2;12882:18;;12875:62;12969:2;12954:18;;12622:356::o;14547:413::-;14749:2;14731:21;;;14788:2;14768:18;;;14761:30;14827:34;14822:2;14807:18;;14800:62;-1:-1:-1;;;14893:2:1;14878:18;;14871:47;14950:3;14935:19;;14547:413::o;15560:128::-;15600:3;15631:1;15627:6;15624:1;15621:13;15618:39;;;15637:18;;:::i;:::-;-1:-1:-1;15673:9:1;;15560:128::o;15693:120::-;15733:1;15759;15749:35;;15764:18;;:::i;:::-;-1:-1:-1;15798:9:1;;15693:120::o;15818:168::-;15858:7;15924:1;15920;15916:6;15912:14;15909:1;15906:21;15901:1;15894:9;15887:17;15883:45;15880:71;;;15931:18;;:::i;:::-;-1:-1:-1;15971:9:1;;15818:168::o;15991:125::-;16031:4;16059:1;16056;16053:8;16050:34;;;16064:18;;:::i;:::-;-1:-1:-1;16101:9:1;;15991:125::o;16121:258::-;16193:1;16203:113;16217:6;16214:1;16211:13;16203:113;;;16293:11;;;16287:18;16274:11;;;16267:39;16239:2;16232:10;16203:113;;;16334:6;16331:1;16328:13;16325:48;;;-1:-1:-1;;16369:1:1;16351:16;;16344:27;16121:258::o;16384:380::-;16463:1;16459:12;;;;16506;;;16527:61;;16581:4;16573:6;16569:17;16559:27;;16527:61;16634:2;16626:6;16623:14;16603:18;16600:38;16597:161;;;16680:10;16675:3;16671:20;16668:1;16661:31;16715:4;16712:1;16705:15;16743:4;16740:1;16733:15;16597:161;;16384:380;;;:::o;16769:135::-;16808:3;-1:-1:-1;;16829:17:1;;16826:43;;;16849:18;;:::i;:::-;-1:-1:-1;16896:1:1;16885:13;;16769:135::o;16909:112::-;16941:1;16967;16957:35;;16972:18;;:::i;:::-;-1:-1:-1;17006:9:1;;16909:112::o;17026:127::-;17087:10;17082:3;17078:20;17075:1;17068:31;17118:4;17115:1;17108:15;17142:4;17139:1;17132:15;17158:127;17219:10;17214:3;17210:20;17207:1;17200:31;17250:4;17247:1;17240:15;17274:4;17271:1;17264:15;17290:127;17351:10;17346:3;17342:20;17339:1;17332:31;17382:4;17379:1;17372:15;17406:4;17403:1;17396:15;17422:127;17483:10;17478:3;17474:20;17471:1;17464:31;17514:4;17511:1;17504:15;17538:4;17535:1;17528:15;17554:127;17615:10;17610:3;17606:20;17603:1;17596:31;17646:4;17643:1;17636:15;17670:4;17667:1;17660:15;17686:131;-1:-1:-1;;;;;;17760:32:1;;17750:43;;17740:71;;17807:1;17804;17797:12

Swarm Source

ipfs://3c1f6cadf7315bdc1de721b6b22d6109543ccbff2a15eed6ab0a6fe21f31c5da
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.