ETH Price: $2,517.66 (+1.90%)

Token

Doodle Orcs (DORCS)
 

Overview

Max Total Supply

105 DORCS

Holders

49

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
agmaur.eth
Balance
3 DORCS
0x23e589d571f42834f8a4e393657fd14e4bee1193
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:
Dorcs

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-22
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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);
            }
        }
    }
}

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


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

pragma solidity ^0.8.0;








/**
 * @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 {
        _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.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();
    }
}

// File: Dorcs.sol


pragma solidity >=0.7.0 <9.0.0;

/**
 * @title Dorcs contract
 * @dev Extends ERC721 Non-Fungible Token Standard basic implementation
 */







contract Dorcs is
    ERC721,
    ERC721Enumerable,
    Ownable
{
    using SafeMath for uint256;
    using Strings for uint256;

    uint256 public constant dorcsPrice = 0.069 ether;
    uint256 public constant MAX_DORCS = 5050;
    uint8 public constant INITIAL_RESERVE = 40;
    uint public constant maxDorcsPurchase = 10;
    address private constant DORCS_TEAM = 0x4D2F38C4e94b851D41F76C29B1AfB96A185760dc;

    bool public saleIsActive = false;

    string private _baseTokenURI;

    constructor() ERC721("Doodle Orcs", "DORCS") {
    }

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

    function pricePerUnit() external pure returns (uint256) {
        return dorcsPrice;
    }

    function maxUnitPurchase() external pure returns (uint256) {
        return maxDorcsPurchase;
    }

    function withdraw() external onlyOwner {
        payable(DORCS_TEAM).transfer(address(this).balance);
    }

    function reserveDorcs() public onlyOwner {        
        uint supply = totalSupply();
        uint i;
        for (i = 0; i < INITIAL_RESERVE; i++) {
            _safeMint(_msgSender(), supply + i);
        }
    }

    /**
     * @dev Function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }
    function saleState() public view onlyOwner returns (bool){
        return saleIsActive;
    }

    function mint(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale not active");
        require(numberOfTokens <= maxDorcsPurchase, "Exceeds limit of 10 tokens per txn");
        require(totalSupply().add(numberOfTokens) <= MAX_DORCS, "Not enough supply remaining");
        require(dorcsPrice.mul(numberOfTokens) <= msg.value, "Wrong ether value sent");
        
        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_DORCS) {
                _safeMint(msg.sender, mintIndex);
            }
        }
    }

    /**
     * @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 base = _baseURI();
        return string(abi.encodePacked(base, tokenId.toString()));
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"INITIAL_RESERVE","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_DORCS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dorcsPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"maxDorcsPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxUnitPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePerUnit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveDorcs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a805460ff60a01b191690553480156200001e57600080fd5b50604080518082018252600b81526a446f6f646c65204f72637360a81b602080830191825283518085019094526005845264444f52435360d81b9084015281519192916200006f91600091620000fe565b50805162000085906001906020840190620000fe565b505050620000a26200009c620000a860201b60201c565b620000ac565b620001e1565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200010c90620001a4565b90600052602060002090601f0160209004810192826200013057600085556200017b565b82601f106200014b57805160ff19168380011785556200017b565b828001600101855582156200017b579182015b828111156200017b5782518255916020019190600101906200015e565b50620001899291506200018d565b5090565b5b808211156200018957600081556001016200018e565b600181811c90821680620001b957607f821691505b60208210811415620001db57634e487b7160e01b600052602260045260246000fd5b50919050565b61212180620001f16000396000f3fe6080604052600436106101e35760003560e01c8063603f4d5211610102578063b88d4fde11610095578063e7d4c75e11610064578063e7d4c75e1461051b578063e985e9c514610542578063eb8d24441461058b578063f2fde38b146105ac57600080fd5b8063b88d4fde146104ac578063c87b56dd146104cc578063cca41e7d146104ec578063e66825c31461050157600080fd5b80638da5cb5b116100d15780638da5cb5b1461044657806395d89b4114610464578063a0712d6814610479578063a22cb4651461048c57600080fd5b8063603f4d52146103dc5780636352211e146103f157806370a0823114610411578063715018a61461043157600080fd5b8063396dd5e71161017a5780634af89705116101495780634af89705146103735780634f6ccce71461038757806355f804b3146103a75780635be99bee146103c757600080fd5b8063396dd5e71461030d5780633ccfd60b1461032357806342842e0e1461033857806342f5a60c1461035857600080fd5b806318160ddd116101b657806318160ddd1461029957806323b872dd146102b85780632f745c59146102d857806334918dfd146102f857600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b50610208610203366004611d50565b6105cc565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b506102326105dd565b6040516102149190611e84565b34801561024b57600080fd5b5061025f61025a366004611dd3565b61066f565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611d26565b610709565b005b3480156102a557600080fd5b506008545b604051908152602001610214565b3480156102c457600080fd5b506102976102d3366004611c32565b61081f565b3480156102e457600080fd5b506102aa6102f3366004611d26565b610850565b34801561030457600080fd5b506102976108e6565b34801561031957600080fd5b506102aa6113ba81565b34801561032f57600080fd5b50610297610931565b34801561034457600080fd5b50610297610353366004611c32565b61099e565b34801561036457600080fd5b506102aa66f523226980800081565b34801561037f57600080fd5b50600a6102aa565b34801561039357600080fd5b506102aa6103a2366004611dd3565b6109b9565b3480156103b357600080fd5b506102976103c2366004611d8a565b610a4c565b3480156103d357600080fd5b50610297610a8d565b3480156103e857600080fd5b50610208610af5565b3480156103fd57600080fd5b5061025f61040c366004611dd3565b610b33565b34801561041d57600080fd5b506102aa61042c366004611be4565b610baa565b34801561043d57600080fd5b50610297610c31565b34801561045257600080fd5b50600a546001600160a01b031661025f565b34801561047057600080fd5b50610232610c67565b610297610487366004611dd3565b610c76565b34801561049857600080fd5b506102976104a7366004611cea565b610e21565b3480156104b857600080fd5b506102976104c7366004611c6e565b610e2c565b3480156104d857600080fd5b506102326104e7366004611dd3565b610e64565b3480156104f857600080fd5b506102aa600a81565b34801561050d57600080fd5b5066f52322698080006102aa565b34801561052757600080fd5b50610530602881565b60405160ff9091168152602001610214565b34801561054e57600080fd5b5061020861055d366004611bff565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561059757600080fd5b50600a5461020890600160a01b900460ff1681565b3480156105b857600080fd5b506102976105c7366004611be4565b610f21565b60006105d782610fb9565b92915050565b6060600080546105ec90611ffd565b80601f016020809104026020016040519081016040528092919081815260200182805461061890611ffd565b80156106655780601f1061063a57610100808354040283529160200191610665565b820191906000526020600020905b81548152906001019060200180831161064857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106ed5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061071482610b33565b9050806001600160a01b0316836001600160a01b031614156107825760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106e4565b336001600160a01b038216148061079e575061079e813361055d565b6108105760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106e4565b61081a8383610fde565b505050565b610829338261104c565b6108455760405162461bcd60e51b81526004016106e490611f1e565b61081a838383611143565b600061085b83610baa565b82106108bd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106e4565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109105760405162461bcd60e51b81526004016106e490611ee9565b600a805460ff60a01b198116600160a01b9182900460ff1615909102179055565b600a546001600160a01b0316331461095b5760405162461bcd60e51b81526004016106e490611ee9565b604051734d2f38c4e94b851d41f76c29b1afb96a185760dc904780156108fc02916000818181858888f1935050505015801561099b573d6000803e3d6000fd5b50565b61081a83838360405180602001604052806000815250610e2c565b60006109c460085490565b8210610a275760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106e4565b60088281548110610a3a57610a3a6120a9565b90600052602060002001549050919050565b600a546001600160a01b03163314610a765760405162461bcd60e51b81526004016106e490611ee9565b8051610a8990600b906020840190611ab9565b5050565b600a546001600160a01b03163314610ab75760405162461bcd60e51b81526004016106e490611ee9565b6000610ac260085490565b905060005b6028811015610a8957610ae333610ade8385611f6f565b6112ee565b80610aed81612038565b915050610ac7565b600a546000906001600160a01b03163314610b225760405162461bcd60e51b81526004016106e490611ee9565b50600a54600160a01b900460ff1690565b6000818152600260205260408120546001600160a01b0316806105d75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106e4565b60006001600160a01b038216610c155760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106e4565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c5b5760405162461bcd60e51b81526004016106e490611ee9565b610c656000611308565b565b6060600180546105ec90611ffd565b600a54600160a01b900460ff16610cc15760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b60448201526064016106e4565b600a811115610d1d5760405162461bcd60e51b815260206004820152602260248201527f45786365656473206c696d6974206f6620313020746f6b656e732070657220746044820152613c3760f11b60648201526084016106e4565b6113ba610d3382610d2d60085490565b9061135a565b1115610d815760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420656e6f75676820737570706c792072656d61696e696e67000000000060448201526064016106e4565b34610d9366f52322698080008361136d565b1115610dda5760405162461bcd60e51b815260206004820152601660248201527515dc9bdb99c8195d1a195c881d985b1d59481cd95b9d60521b60448201526064016106e4565b60005b81811015610a89576000610df060085490565b90506113ba610dfe60085490565b1015610e0e57610e0e33826112ee565b5080610e1981612038565b915050610ddd565b610a89338383611379565b610e36338361104c565b610e525760405162461bcd60e51b81526004016106e490611f1e565b610e5e84848484611448565b50505050565b6000818152600260205260409020546060906001600160a01b0316610ee35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106e4565b6000610eed61147b565b905080610ef98461148a565b604051602001610f0a929190611e18565b604051602081830303815290604052915050919050565b600a546001600160a01b03163314610f4b5760405162461bcd60e51b81526004016106e490611ee9565b6001600160a01b038116610fb05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e4565b61099b81611308565b60006001600160e01b0319821663780e9d6360e01b14806105d757506105d782611588565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061101382610b33565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110c55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106e4565b60006110d083610b33565b9050806001600160a01b0316846001600160a01b0316148061110b5750836001600160a01b03166111008461066f565b6001600160a01b0316145b8061113b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661115682610b33565b6001600160a01b0316146111be5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106e4565b6001600160a01b0382166112205760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106e4565b61122b8383836115d8565b611236600082610fde565b6001600160a01b038316600090815260036020526040812080546001929061125f908490611fba565b90915550506001600160a01b038216600090815260036020526040812080546001929061128d908490611f6f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610a898282604051806020016040528060008152506115e3565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006113668284611f6f565b9392505050565b60006113668284611f9b565b816001600160a01b0316836001600160a01b031614156113db5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106e4565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611453848484611143565b61145f84848484611616565b610e5e5760405162461bcd60e51b81526004016106e490611e97565b6060600b80546105ec90611ffd565b6060816114ae5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114d857806114c281612038565b91506114d19050600a83611f87565b91506114b2565b60008167ffffffffffffffff8111156114f3576114f36120bf565b6040519080825280601f01601f19166020018201604052801561151d576020820181803683370190505b5090505b841561113b57611532600183611fba565b915061153f600a86612053565b61154a906030611f6f565b60f81b81838151811061155f5761155f6120a9565b60200101906001600160f81b031916908160001a905350611581600a86611f87565b9450611521565b60006001600160e01b031982166380ac58cd60e01b14806115b957506001600160e01b03198216635b5e139f60e01b145b806105d757506301ffc9a760e01b6001600160e01b03198316146105d7565b61081a838383611723565b6115ed83836117db565b6115fa6000848484611616565b61081a5760405162461bcd60e51b81526004016106e490611e97565b60006001600160a01b0384163b1561171857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061165a903390899088908890600401611e47565b602060405180830381600087803b15801561167457600080fd5b505af19250505080156116a4575060408051601f3d908101601f191682019092526116a191810190611d6d565b60015b6116fe573d8080156116d2576040519150601f19603f3d011682016040523d82523d6000602084013e6116d7565b606091505b5080516116f65760405162461bcd60e51b81526004016106e490611e97565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061113b565b506001949350505050565b6001600160a01b03831661177e5761177981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6117a1565b816001600160a01b0316836001600160a01b0316146117a1576117a18382611929565b6001600160a01b0382166117b85761081a816119c6565b826001600160a01b0316826001600160a01b03161461081a5761081a8282611a75565b6001600160a01b0382166118315760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106e4565b6000818152600260205260409020546001600160a01b0316156118965760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106e4565b6118a2600083836115d8565b6001600160a01b03821660009081526003602052604081208054600192906118cb908490611f6f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161193684610baa565b6119409190611fba565b600083815260076020526040902054909150808214611993576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906119d890600190611fba565b60008381526009602052604081205460088054939450909284908110611a0057611a006120a9565b906000526020600020015490508060088381548110611a2157611a216120a9565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611a5957611a59612093565b6001900381819060005260206000200160009055905550505050565b6000611a8083610baa565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611ac590611ffd565b90600052602060002090601f016020900481019282611ae75760008555611b2d565b82601f10611b0057805160ff1916838001178555611b2d565b82800160010185558215611b2d579182015b82811115611b2d578251825591602001919060010190611b12565b50611b39929150611b3d565b5090565b5b80821115611b395760008155600101611b3e565b600067ffffffffffffffff80841115611b6d57611b6d6120bf565b604051601f8501601f19908116603f01168101908282118183101715611b9557611b956120bf565b81604052809350858152868686011115611bae57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611bdf57600080fd5b919050565b600060208284031215611bf657600080fd5b61136682611bc8565b60008060408385031215611c1257600080fd5b611c1b83611bc8565b9150611c2960208401611bc8565b90509250929050565b600080600060608486031215611c4757600080fd5b611c5084611bc8565b9250611c5e60208501611bc8565b9150604084013590509250925092565b60008060008060808587031215611c8457600080fd5b611c8d85611bc8565b9350611c9b60208601611bc8565b925060408501359150606085013567ffffffffffffffff811115611cbe57600080fd5b8501601f81018713611ccf57600080fd5b611cde87823560208401611b52565b91505092959194509250565b60008060408385031215611cfd57600080fd5b611d0683611bc8565b915060208301358015158114611d1b57600080fd5b809150509250929050565b60008060408385031215611d3957600080fd5b611d4283611bc8565b946020939093013593505050565b600060208284031215611d6257600080fd5b8135611366816120d5565b600060208284031215611d7f57600080fd5b8151611366816120d5565b600060208284031215611d9c57600080fd5b813567ffffffffffffffff811115611db357600080fd5b8201601f81018413611dc457600080fd5b61113b84823560208401611b52565b600060208284031215611de557600080fd5b5035919050565b60008151808452611e04816020860160208601611fd1565b601f01601f19169290920160200192915050565b60008351611e2a818460208801611fd1565b835190830190611e3e818360208801611fd1565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e7a90830184611dec565b9695505050505050565b6020815260006113666020830184611dec565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611f8257611f82612067565b500190565b600082611f9657611f9661207d565b500490565b6000816000190483118215151615611fb557611fb5612067565b500290565b600082821015611fcc57611fcc612067565b500390565b60005b83811015611fec578181015183820152602001611fd4565b83811115610e5e5750506000910152565b600181811c9082168061201157607f821691505b6020821081141561203257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561204c5761204c612067565b5060010190565b6000826120625761206261207d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461099b57600080fdfea26469706673582212209502dc8ee5074108306b994fdf798edfe9965a611c001a9319a5a4f12b29bdb564736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c8063603f4d5211610102578063b88d4fde11610095578063e7d4c75e11610064578063e7d4c75e1461051b578063e985e9c514610542578063eb8d24441461058b578063f2fde38b146105ac57600080fd5b8063b88d4fde146104ac578063c87b56dd146104cc578063cca41e7d146104ec578063e66825c31461050157600080fd5b80638da5cb5b116100d15780638da5cb5b1461044657806395d89b4114610464578063a0712d6814610479578063a22cb4651461048c57600080fd5b8063603f4d52146103dc5780636352211e146103f157806370a0823114610411578063715018a61461043157600080fd5b8063396dd5e71161017a5780634af89705116101495780634af89705146103735780634f6ccce71461038757806355f804b3146103a75780635be99bee146103c757600080fd5b8063396dd5e71461030d5780633ccfd60b1461032357806342842e0e1461033857806342f5a60c1461035857600080fd5b806318160ddd116101b657806318160ddd1461029957806323b872dd146102b85780632f745c59146102d857806334918dfd146102f857600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b50610208610203366004611d50565b6105cc565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b506102326105dd565b6040516102149190611e84565b34801561024b57600080fd5b5061025f61025a366004611dd3565b61066f565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611d26565b610709565b005b3480156102a557600080fd5b506008545b604051908152602001610214565b3480156102c457600080fd5b506102976102d3366004611c32565b61081f565b3480156102e457600080fd5b506102aa6102f3366004611d26565b610850565b34801561030457600080fd5b506102976108e6565b34801561031957600080fd5b506102aa6113ba81565b34801561032f57600080fd5b50610297610931565b34801561034457600080fd5b50610297610353366004611c32565b61099e565b34801561036457600080fd5b506102aa66f523226980800081565b34801561037f57600080fd5b50600a6102aa565b34801561039357600080fd5b506102aa6103a2366004611dd3565b6109b9565b3480156103b357600080fd5b506102976103c2366004611d8a565b610a4c565b3480156103d357600080fd5b50610297610a8d565b3480156103e857600080fd5b50610208610af5565b3480156103fd57600080fd5b5061025f61040c366004611dd3565b610b33565b34801561041d57600080fd5b506102aa61042c366004611be4565b610baa565b34801561043d57600080fd5b50610297610c31565b34801561045257600080fd5b50600a546001600160a01b031661025f565b34801561047057600080fd5b50610232610c67565b610297610487366004611dd3565b610c76565b34801561049857600080fd5b506102976104a7366004611cea565b610e21565b3480156104b857600080fd5b506102976104c7366004611c6e565b610e2c565b3480156104d857600080fd5b506102326104e7366004611dd3565b610e64565b3480156104f857600080fd5b506102aa600a81565b34801561050d57600080fd5b5066f52322698080006102aa565b34801561052757600080fd5b50610530602881565b60405160ff9091168152602001610214565b34801561054e57600080fd5b5061020861055d366004611bff565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561059757600080fd5b50600a5461020890600160a01b900460ff1681565b3480156105b857600080fd5b506102976105c7366004611be4565b610f21565b60006105d782610fb9565b92915050565b6060600080546105ec90611ffd565b80601f016020809104026020016040519081016040528092919081815260200182805461061890611ffd565b80156106655780601f1061063a57610100808354040283529160200191610665565b820191906000526020600020905b81548152906001019060200180831161064857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106ed5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061071482610b33565b9050806001600160a01b0316836001600160a01b031614156107825760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106e4565b336001600160a01b038216148061079e575061079e813361055d565b6108105760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106e4565b61081a8383610fde565b505050565b610829338261104c565b6108455760405162461bcd60e51b81526004016106e490611f1e565b61081a838383611143565b600061085b83610baa565b82106108bd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106e4565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109105760405162461bcd60e51b81526004016106e490611ee9565b600a805460ff60a01b198116600160a01b9182900460ff1615909102179055565b600a546001600160a01b0316331461095b5760405162461bcd60e51b81526004016106e490611ee9565b604051734d2f38c4e94b851d41f76c29b1afb96a185760dc904780156108fc02916000818181858888f1935050505015801561099b573d6000803e3d6000fd5b50565b61081a83838360405180602001604052806000815250610e2c565b60006109c460085490565b8210610a275760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106e4565b60088281548110610a3a57610a3a6120a9565b90600052602060002001549050919050565b600a546001600160a01b03163314610a765760405162461bcd60e51b81526004016106e490611ee9565b8051610a8990600b906020840190611ab9565b5050565b600a546001600160a01b03163314610ab75760405162461bcd60e51b81526004016106e490611ee9565b6000610ac260085490565b905060005b6028811015610a8957610ae333610ade8385611f6f565b6112ee565b80610aed81612038565b915050610ac7565b600a546000906001600160a01b03163314610b225760405162461bcd60e51b81526004016106e490611ee9565b50600a54600160a01b900460ff1690565b6000818152600260205260408120546001600160a01b0316806105d75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106e4565b60006001600160a01b038216610c155760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106e4565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c5b5760405162461bcd60e51b81526004016106e490611ee9565b610c656000611308565b565b6060600180546105ec90611ffd565b600a54600160a01b900460ff16610cc15760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b60448201526064016106e4565b600a811115610d1d5760405162461bcd60e51b815260206004820152602260248201527f45786365656473206c696d6974206f6620313020746f6b656e732070657220746044820152613c3760f11b60648201526084016106e4565b6113ba610d3382610d2d60085490565b9061135a565b1115610d815760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420656e6f75676820737570706c792072656d61696e696e67000000000060448201526064016106e4565b34610d9366f52322698080008361136d565b1115610dda5760405162461bcd60e51b815260206004820152601660248201527515dc9bdb99c8195d1a195c881d985b1d59481cd95b9d60521b60448201526064016106e4565b60005b81811015610a89576000610df060085490565b90506113ba610dfe60085490565b1015610e0e57610e0e33826112ee565b5080610e1981612038565b915050610ddd565b610a89338383611379565b610e36338361104c565b610e525760405162461bcd60e51b81526004016106e490611f1e565b610e5e84848484611448565b50505050565b6000818152600260205260409020546060906001600160a01b0316610ee35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106e4565b6000610eed61147b565b905080610ef98461148a565b604051602001610f0a929190611e18565b604051602081830303815290604052915050919050565b600a546001600160a01b03163314610f4b5760405162461bcd60e51b81526004016106e490611ee9565b6001600160a01b038116610fb05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e4565b61099b81611308565b60006001600160e01b0319821663780e9d6360e01b14806105d757506105d782611588565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061101382610b33565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110c55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106e4565b60006110d083610b33565b9050806001600160a01b0316846001600160a01b0316148061110b5750836001600160a01b03166111008461066f565b6001600160a01b0316145b8061113b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661115682610b33565b6001600160a01b0316146111be5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106e4565b6001600160a01b0382166112205760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106e4565b61122b8383836115d8565b611236600082610fde565b6001600160a01b038316600090815260036020526040812080546001929061125f908490611fba565b90915550506001600160a01b038216600090815260036020526040812080546001929061128d908490611f6f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610a898282604051806020016040528060008152506115e3565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006113668284611f6f565b9392505050565b60006113668284611f9b565b816001600160a01b0316836001600160a01b031614156113db5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106e4565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611453848484611143565b61145f84848484611616565b610e5e5760405162461bcd60e51b81526004016106e490611e97565b6060600b80546105ec90611ffd565b6060816114ae5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114d857806114c281612038565b91506114d19050600a83611f87565b91506114b2565b60008167ffffffffffffffff8111156114f3576114f36120bf565b6040519080825280601f01601f19166020018201604052801561151d576020820181803683370190505b5090505b841561113b57611532600183611fba565b915061153f600a86612053565b61154a906030611f6f565b60f81b81838151811061155f5761155f6120a9565b60200101906001600160f81b031916908160001a905350611581600a86611f87565b9450611521565b60006001600160e01b031982166380ac58cd60e01b14806115b957506001600160e01b03198216635b5e139f60e01b145b806105d757506301ffc9a760e01b6001600160e01b03198316146105d7565b61081a838383611723565b6115ed83836117db565b6115fa6000848484611616565b61081a5760405162461bcd60e51b81526004016106e490611e97565b60006001600160a01b0384163b1561171857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061165a903390899088908890600401611e47565b602060405180830381600087803b15801561167457600080fd5b505af19250505080156116a4575060408051601f3d908101601f191682019092526116a191810190611d6d565b60015b6116fe573d8080156116d2576040519150601f19603f3d011682016040523d82523d6000602084013e6116d7565b606091505b5080516116f65760405162461bcd60e51b81526004016106e490611e97565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061113b565b506001949350505050565b6001600160a01b03831661177e5761177981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6117a1565b816001600160a01b0316836001600160a01b0316146117a1576117a18382611929565b6001600160a01b0382166117b85761081a816119c6565b826001600160a01b0316826001600160a01b03161461081a5761081a8282611a75565b6001600160a01b0382166118315760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106e4565b6000818152600260205260409020546001600160a01b0316156118965760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106e4565b6118a2600083836115d8565b6001600160a01b03821660009081526003602052604081208054600192906118cb908490611f6f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161193684610baa565b6119409190611fba565b600083815260076020526040902054909150808214611993576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906119d890600190611fba565b60008381526009602052604081205460088054939450909284908110611a0057611a006120a9565b906000526020600020015490508060088381548110611a2157611a216120a9565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611a5957611a59612093565b6001900381819060005260206000200160009055905550505050565b6000611a8083610baa565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611ac590611ffd565b90600052602060002090601f016020900481019282611ae75760008555611b2d565b82601f10611b0057805160ff1916838001178555611b2d565b82800160010185558215611b2d579182015b82811115611b2d578251825591602001919060010190611b12565b50611b39929150611b3d565b5090565b5b80821115611b395760008155600101611b3e565b600067ffffffffffffffff80841115611b6d57611b6d6120bf565b604051601f8501601f19908116603f01168101908282118183101715611b9557611b956120bf565b81604052809350858152868686011115611bae57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611bdf57600080fd5b919050565b600060208284031215611bf657600080fd5b61136682611bc8565b60008060408385031215611c1257600080fd5b611c1b83611bc8565b9150611c2960208401611bc8565b90509250929050565b600080600060608486031215611c4757600080fd5b611c5084611bc8565b9250611c5e60208501611bc8565b9150604084013590509250925092565b60008060008060808587031215611c8457600080fd5b611c8d85611bc8565b9350611c9b60208601611bc8565b925060408501359150606085013567ffffffffffffffff811115611cbe57600080fd5b8501601f81018713611ccf57600080fd5b611cde87823560208401611b52565b91505092959194509250565b60008060408385031215611cfd57600080fd5b611d0683611bc8565b915060208301358015158114611d1b57600080fd5b809150509250929050565b60008060408385031215611d3957600080fd5b611d4283611bc8565b946020939093013593505050565b600060208284031215611d6257600080fd5b8135611366816120d5565b600060208284031215611d7f57600080fd5b8151611366816120d5565b600060208284031215611d9c57600080fd5b813567ffffffffffffffff811115611db357600080fd5b8201601f81018413611dc457600080fd5b61113b84823560208401611b52565b600060208284031215611de557600080fd5b5035919050565b60008151808452611e04816020860160208601611fd1565b601f01601f19169290920160200192915050565b60008351611e2a818460208801611fd1565b835190830190611e3e818360208801611fd1565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e7a90830184611dec565b9695505050505050565b6020815260006113666020830184611dec565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611f8257611f82612067565b500190565b600082611f9657611f9661207d565b500490565b6000816000190483118215151615611fb557611fb5612067565b500290565b600082821015611fcc57611fcc612067565b500390565b60005b83811015611fec578181015183820152602001611fd4565b83811115610e5e5750506000910152565b600181811c9082168061201157607f821691505b6020821081141561203257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561204c5761204c612067565b5060010190565b6000826120625761206261207d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461099b57600080fdfea26469706673582212209502dc8ee5074108306b994fdf798edfe9965a611c001a9319a5a4f12b29bdb564736f6c63430008070033

Deployed Bytecode Sourcemap

51623:3287:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54678:229;;;;;;;;;;-1:-1:-1;54678:229:0;;;;;:::i;:::-;;:::i;:::-;;;5646:14:1;;5639:22;5621:41;;5609:2;5594:18;54678:229:0;;;;;;;;32787:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34346:221::-;;;;;;;;;;-1:-1:-1;34346:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4944:32:1;;;4926:51;;4914:2;4899:18;34346:221:0;4780:203:1;33869:411:0;;;;;;;;;;-1:-1:-1;33869:411:0;;;;;:::i;:::-;;:::i;:::-;;45933:113;;;;;;;;;;-1:-1:-1;46021:10:0;:17;45933:113;;;14704:25:1;;;14692:2;14677:18;45933:113:0;14558:177:1;35096:339:0;;;;;;;;;;-1:-1:-1;35096:339:0;;;;;:::i;:::-;;:::i;45601:256::-;;;;;;;;;;-1:-1:-1;45601:256:0;;;;;:::i;:::-;;:::i;53194:89::-;;;;;;;;;;;;;:::i;51820:40::-;;;;;;;;;;;;51856:4;51820:40;;52524:109;;;;;;;;;;;;;:::i;35506:185::-;;;;;;;;;;-1:-1:-1;35506:185:0;;;;;:::i;:::-;;:::i;51765:48::-;;;;;;;;;;;;51802:11;51765:48;;52415:101;;;;;;;;;;-1:-1:-1;51956:2:0;52415:101;;46123:233;;;;;;;;;;-1:-1:-1;46123:233:0;;;;;:::i;:::-;;:::i;53084:102::-;;;;;;;;;;-1:-1:-1;53084:102:0;;;;;:::i;:::-;;:::i;52641:222::-;;;;;;;;;;;;;:::i;53289:95::-;;;;;;;;;;;;;:::i;32481:239::-;;;;;;;;;;-1:-1:-1;32481:239:0;;;;;:::i;:::-;;:::i;32211:208::-;;;;;;;;;;-1:-1:-1;32211:208:0;;;;;:::i;:::-;;:::i;11757:103::-;;;;;;;;;;;;;:::i;11106:87::-;;;;;;;;;;-1:-1:-1;11179:6:0;;-1:-1:-1;;;;;11179:6:0;11106:87;;32956:104;;;;;;;;;;;;;:::i;53392:617::-;;;;;;:::i;:::-;;:::i;34639:155::-;;;;;;;;;;-1:-1:-1;34639:155:0;;;;;:::i;:::-;;:::i;35762:328::-;;;;;;;;;;-1:-1:-1;35762:328:0;;;;;:::i;:::-;;:::i;54080:295::-;;;;;;;;;;-1:-1:-1;54080:295:0;;;;;:::i;:::-;;:::i;51916:42::-;;;;;;;;;;;;51956:2;51916:42;;52315:92;;;;;;;;;;-1:-1:-1;51802:11:0;52315:92;;51867:42;;;;;;;;;;;;51907:2;51867:42;;;;;14912:4:1;14900:17;;;14882:36;;14870:2;14855:18;51867:42:0;14740:184:1;34865:164:0;;;;;;;;;;-1:-1:-1;34865:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34986:25:0;;;34962:4;34986:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34865:164;52054:32;;;;;;;;;;-1:-1:-1;52054:32:0;;;;-1:-1:-1;;;52054:32:0;;;;;;12015:201;;;;;;;;;;-1:-1:-1;12015:201:0;;;;;:::i;:::-;;:::i;54678:229::-;54834:4;54863:36;54887:11;54863:23;:36::i;:::-;54856:43;54678:229;-1:-1:-1;;54678:229:0:o;32787:100::-;32841:13;32874:5;32867:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32787:100;:::o;34346:221::-;34422:7;37689:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37689:16:0;34442:73;;;;-1:-1:-1;;;34442:73:0;;11220:2:1;34442:73:0;;;11202:21:1;11259:2;11239:18;;;11232:30;11298:34;11278:18;;;11271:62;-1:-1:-1;;;11349:18:1;;;11342:42;11401:19;;34442:73:0;;;;;;;;;-1:-1:-1;34535:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34535:24:0;;34346:221::o;33869:411::-;33950:13;33966:23;33981:7;33966:14;:23::i;:::-;33950:39;;34014:5;-1:-1:-1;;;;;34008:11:0;:2;-1:-1:-1;;;;;34008:11:0;;;34000:57;;;;-1:-1:-1;;;34000:57:0;;12820:2:1;34000:57:0;;;12802:21:1;12859:2;12839:18;;;12832:30;12898:34;12878:18;;;12871:62;-1:-1:-1;;;12949:18:1;;;12942:31;12990:19;;34000:57:0;12618:397:1;34000:57:0;9910:10;-1:-1:-1;;;;;34092:21:0;;;;:62;;-1:-1:-1;34117:37:0;34134:5;9910:10;34865:164;:::i;34117:37::-;34070:168;;;;-1:-1:-1;;;34070:168:0;;9210:2:1;34070:168:0;;;9192:21:1;9249:2;9229:18;;;9222:30;9288:34;9268:18;;;9261:62;9359:26;9339:18;;;9332:54;9403:19;;34070:168:0;9008:420:1;34070:168:0;34251:21;34260:2;34264:7;34251:8;:21::i;:::-;33939:341;33869:411;;:::o;35096:339::-;35291:41;9910:10;35324:7;35291:18;:41::i;:::-;35283:103;;;;-1:-1:-1;;;35283:103:0;;;;;;;:::i;:::-;35399:28;35409:4;35415:2;35419:7;35399:9;:28::i;45601:256::-;45698:7;45734:23;45751:5;45734:16;:23::i;:::-;45726:5;:31;45718:87;;;;-1:-1:-1;;;45718:87:0;;6099:2:1;45718:87:0;;;6081:21:1;6138:2;6118:18;;;6111:30;6177:34;6157:18;;;6150:62;-1:-1:-1;;;6228:18:1;;;6221:41;6279:19;;45718:87:0;5897:407:1;45718:87:0;-1:-1:-1;;;;;;45823:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;45601:256::o;53194:89::-;11179:6;;-1:-1:-1;;;;;11179:6:0;9910:10;11326:23;11318:68;;;;-1:-1:-1;;;11318:68:0;;;;;;;:::i;:::-;53263:12:::1;::::0;;-1:-1:-1;;;;53247:28:0;::::1;-1:-1:-1::0;;;53263:12:0;;;::::1;;;53262:13;53247:28:::0;;::::1;;::::0;;53194:89::o;52524:109::-;11179:6;;-1:-1:-1;;;;;11179:6:0;9910:10;11326:23;11318:68;;;;-1:-1:-1;;;11318:68:0;;;;;;;:::i;:::-;52574:51:::1;::::0;52003:42:::1;::::0;52603:21:::1;52574:51:::0;::::1;;;::::0;::::1;::::0;;;52603:21;52003:42;52574:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;52524:109::o:0;35506:185::-;35644:39;35661:4;35667:2;35671:7;35644:39;;;;;;;;;;;;:16;:39::i;46123:233::-;46198:7;46234:30;46021:10;:17;;45933:113;46234:30;46226:5;:38;46218:95;;;;-1:-1:-1;;;46218:95:0;;13996:2:1;46218:95:0;;;13978:21:1;14035:2;14015:18;;;14008:30;14074:34;14054:18;;;14047:62;-1:-1:-1;;;14125:18:1;;;14118:42;14177:19;;46218:95:0;13794:408:1;46218:95:0;46331:10;46342:5;46331:17;;;;;;;;:::i;:::-;;;;;;;;;46324:24;;46123:233;;;:::o;53084:102::-;11179:6;;-1:-1:-1;;;;;11179:6:0;9910:10;11326:23;11318:68;;;;-1:-1:-1;;;11318:68:0;;;;;;;:::i;:::-;53155:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53084:102:::0;:::o;52641:222::-;11179:6;;-1:-1:-1;;;;;11179:6:0;9910:10;11326:23;11318:68;;;;-1:-1:-1;;;11318:68:0;;;;;;;:::i;:::-;52701:11:::1;52715:13;46021:10:::0;:17;;45933:113;52715:13:::1;52701:27;;52739:6;52756:100;51907:2;52768:19:::0;::::1;52756:100;;;52809:35;9910:10:::0;52833::::1;52842:1:::0;52833:6;:10:::1;:::i;:::-;52809:9;:35::i;:::-;52789:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52756:100;;53289:95:::0;11179:6;;53341:4;;-1:-1:-1;;;;;11179:6:0;9910:10;11326:23;11318:68;;;;-1:-1:-1;;;11318:68:0;;;;;;;:::i;:::-;-1:-1:-1;53364:12:0::1;::::0;-1:-1:-1;;;53364:12:0;::::1;;;::::0;53289:95::o;32481:239::-;32553:7;32589:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32589:16:0;32624:19;32616:73;;;;-1:-1:-1;;;32616:73:0;;10046:2:1;32616:73:0;;;10028:21:1;10085:2;10065:18;;;10058:30;10124:34;10104:18;;;10097:62;-1:-1:-1;;;10175:18:1;;;10168:39;10224:19;;32616:73:0;9844:405:1;32211:208:0;32283:7;-1:-1:-1;;;;;32311:19:0;;32303:74;;;;-1:-1:-1;;;32303:74:0;;9635:2:1;32303:74:0;;;9617:21:1;9674:2;9654:18;;;9647:30;9713:34;9693:18;;;9686:62;-1:-1:-1;;;9764:18:1;;;9757:40;9814:19;;32303:74:0;9433:406:1;32303:74:0;-1:-1:-1;;;;;;32395:16:0;;;;;:9;:16;;;;;;;32211:208::o;11757:103::-;11179:6;;-1:-1:-1;;;;;11179:6:0;9910:10;11326:23;11318:68;;;;-1:-1:-1;;;11318:68:0;;;;;;;:::i;:::-;11822:30:::1;11849:1;11822:18;:30::i;:::-;11757:103::o:0;32956:104::-;33012:13;33045:7;33038:14;;;;;:::i;53392:617::-;53461:12;;-1:-1:-1;;;53461:12:0;;;;53453:40;;;;-1:-1:-1;;;53453:40:0;;8866:2:1;53453:40:0;;;8848:21:1;8905:2;8885:18;;;8878:30;-1:-1:-1;;;8924:18:1;;;8917:45;8979:18;;53453:40:0;8664:339:1;53453:40:0;51956:2;53512:14;:34;;53504:81;;;;-1:-1:-1;;;53504:81:0;;10817:2:1;53504:81:0;;;10799:21:1;10856:2;10836:18;;;10829:30;10895:34;10875:18;;;10868:62;-1:-1:-1;;;10946:18:1;;;10939:32;10988:19;;53504:81:0;10615:398:1;53504:81:0;51856:4;53604:33;53622:14;53604:13;46021:10;:17;;45933:113;53604:13;:17;;:33::i;:::-;:46;;53596:86;;;;-1:-1:-1;;;53596:86:0;;13640:2:1;53596:86:0;;;13622:21:1;13679:2;13659:18;;;13652:30;13718:29;13698:18;;;13691:57;13765:18;;53596:86:0;13438:351:1;53596:86:0;53735:9;53701:30;51802:11;53716:14;53701;:30::i;:::-;:43;;53693:78;;;;-1:-1:-1;;;53693:78:0;;14409:2:1;53693:78:0;;;14391:21:1;14448:2;14428:18;;;14421:30;-1:-1:-1;;;14467:18:1;;;14460:52;14529:18;;53693:78:0;14207:346:1;53693:78:0;53796:6;53792:210;53812:14;53808:1;:18;53792:210;;;53848:14;53865:13;46021:10;:17;;45933:113;53865:13;53848:30;;51856:4;53897:13;46021:10;:17;;45933:113;53897:13;:25;53893:98;;;53943:32;53953:10;53965:9;53943;:32::i;:::-;-1:-1:-1;53828:3:0;;;;:::i;:::-;;;;53792:210;;34639:155;34734:52;9910:10;34767:8;34777;34734:18;:52::i;35762:328::-;35937:41;9910:10;35970:7;35937:18;:41::i;:::-;35929:103;;;;-1:-1:-1;;;35929:103:0;;;;;;;:::i;:::-;36043:39;36057:4;36063:2;36067:7;36076:5;36043:13;:39::i;:::-;35762:328;;;;:::o;54080:295::-;37665:4;37689:16;;;:7;:16;;;;;;54153:13;;-1:-1:-1;;;;;37689:16:0;54179:76;;;;-1:-1:-1;;;54179:76:0;;12404:2:1;54179:76:0;;;12386:21:1;12443:2;12423:18;;;12416:30;12482:34;12462:18;;;12455:62;-1:-1:-1;;;12533:18:1;;;12526:45;12588:19;;54179:76:0;12202:411:1;54179:76:0;54268:18;54289:10;:8;:10::i;:::-;54268:31;;54341:4;54347:18;:7;:16;:18::i;:::-;54324:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54310:57;;;54080:295;;;:::o;12015:201::-;11179:6;;-1:-1:-1;;;;;11179:6:0;9910:10;11326:23;11318:68;;;;-1:-1:-1;;;11318:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12104:22:0;::::1;12096:73;;;::::0;-1:-1:-1;;;12096:73:0;;6930:2:1;12096:73:0::1;::::0;::::1;6912:21:1::0;6969:2;6949:18;;;6942:30;7008:34;6988:18;;;6981:62;-1:-1:-1;;;7059:18:1;;;7052:36;7105:19;;12096:73:0::1;6728:402:1::0;12096:73:0::1;12180:28;12199:8;12180:18;:28::i;45293:224::-:0;45395:4;-1:-1:-1;;;;;;45419:50:0;;-1:-1:-1;;;45419:50:0;;:90;;;45473:36;45497:11;45473:23;:36::i;41582:174::-;41657:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;41657:29:0;-1:-1:-1;;;;;41657:29:0;;;;;;;;:24;;41711:23;41657:24;41711:14;:23::i;:::-;-1:-1:-1;;;;;41702:46:0;;;;;;;;;;;41582:174;;:::o;37894:348::-;37987:4;37689:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37689:16:0;38004:73;;;;-1:-1:-1;;;38004:73:0;;8453:2:1;38004:73:0;;;8435:21:1;8492:2;8472:18;;;8465:30;8531:34;8511:18;;;8504:62;-1:-1:-1;;;8582:18:1;;;8575:42;8634:19;;38004:73:0;8251:408:1;38004:73:0;38088:13;38104:23;38119:7;38104:14;:23::i;:::-;38088:39;;38157:5;-1:-1:-1;;;;;38146:16:0;:7;-1:-1:-1;;;;;38146:16:0;;:51;;;;38190:7;-1:-1:-1;;;;;38166:31:0;:20;38178:7;38166:11;:20::i;:::-;-1:-1:-1;;;;;38166:31:0;;38146:51;:87;;;-1:-1:-1;;;;;;34986:25:0;;;34962:4;34986:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;38201:32;38138:96;37894:348;-1:-1:-1;;;;37894:348:0:o;40886:578::-;41045:4;-1:-1:-1;;;;;41018:31:0;:23;41033:7;41018:14;:23::i;:::-;-1:-1:-1;;;;;41018:31:0;;41010:85;;;;-1:-1:-1;;;41010:85:0;;11994:2:1;41010:85:0;;;11976:21:1;12033:2;12013:18;;;12006:30;12072:34;12052:18;;;12045:62;-1:-1:-1;;;12123:18:1;;;12116:39;12172:19;;41010:85:0;11792:405:1;41010:85:0;-1:-1:-1;;;;;41114:16:0;;41106:65;;;;-1:-1:-1;;;41106:65:0;;7694:2:1;41106:65:0;;;7676:21:1;7733:2;7713:18;;;7706:30;7772:34;7752:18;;;7745:62;-1:-1:-1;;;7823:18:1;;;7816:34;7867:19;;41106:65:0;7492:400:1;41106:65:0;41184:39;41205:4;41211:2;41215:7;41184:20;:39::i;:::-;41288:29;41305:1;41309:7;41288:8;:29::i;:::-;-1:-1:-1;;;;;41330:15:0;;;;;;:9;:15;;;;;:20;;41349:1;;41330:15;:20;;41349:1;;41330:20;:::i;:::-;;;;-1:-1:-1;;;;;;;41361:13:0;;;;;;:9;:13;;;;;:18;;41378:1;;41361:13;:18;;41378:1;;41361:18;:::i;:::-;;;;-1:-1:-1;;41390:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41390:21:0;-1:-1:-1;;;;;41390:21:0;;;;;;;;;41429:27;;41390:16;;41429:27;;;;;;;40886:578;;;:::o;38584:110::-;38660:26;38670:2;38674:7;38660:26;;;;;;;;;;;;:9;:26::i;12376:191::-;12469:6;;;-1:-1:-1;;;;;12486:17:0;;;-1:-1:-1;;;;;;12486:17:0;;;;;;;12519:40;;12469:6;;;12486:17;12469:6;;12519:40;;12450:16;;12519:40;12439:128;12376:191;:::o;2862:98::-;2920:7;2947:5;2951:1;2947;:5;:::i;:::-;2940:12;2862:98;-1:-1:-1;;;2862:98:0:o;3600:::-;3658:7;3685:5;3689:1;3685;:5;:::i;41898:315::-;42053:8;-1:-1:-1;;;;;42044:17:0;:5;-1:-1:-1;;;;;42044:17:0;;;42036:55;;;;-1:-1:-1;;;42036:55:0;;8099:2:1;42036:55:0;;;8081:21:1;8138:2;8118:18;;;8111:30;8177:27;8157:18;;;8150:55;8222:18;;42036:55:0;7897:349:1;42036:55:0;-1:-1:-1;;;;;42102:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;42102:46:0;;;;;;;;;;42164:41;;5621::1;;;42164::0;;5594:18:1;42164:41:0;;;;;;;41898:315;;;:::o;36972:::-;37129:28;37139:4;37145:2;37149:7;37129:9;:28::i;:::-;37176:48;37199:4;37205:2;37209:7;37218:5;37176:22;:48::i;:::-;37168:111;;;;-1:-1:-1;;;37168:111:0;;;;;;;:::i;52193:114::-;52253:13;52286;52279:20;;;;;:::i;7392:723::-;7448:13;7669:10;7665:53;;-1:-1:-1;;7696:10:0;;;;;;;;;;;;-1:-1:-1;;;7696:10:0;;;;;7392:723::o;7665:53::-;7743:5;7728:12;7784:78;7791:9;;7784:78;;7817:8;;;;:::i;:::-;;-1:-1:-1;7840:10:0;;-1:-1:-1;7848:2:0;7840:10;;:::i;:::-;;;7784:78;;;7872:19;7904:6;7894:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7894:17:0;;7872:39;;7922:154;7929:10;;7922:154;;7956:11;7966:1;7956:11;;:::i;:::-;;-1:-1:-1;8025:10:0;8033:2;8025:5;:10;:::i;:::-;8012:24;;:2;:24;:::i;:::-;7999:39;;7982:6;7989;7982:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7982:56:0;;;;;;;;-1:-1:-1;8053:11:0;8062:2;8053:11;;:::i;:::-;;;7922:154;;31842:305;31944:4;-1:-1:-1;;;;;;31981:40:0;;-1:-1:-1;;;31981:40:0;;:105;;-1:-1:-1;;;;;;;32038:48:0;;-1:-1:-1;;;32038:48:0;31981:105;:158;;;-1:-1:-1;;;;;;;;;;15496:40:0;;;32103:36;15387:157;54383:223;54553:45;54580:4;54586:2;54590:7;54553:26;:45::i;38921:321::-;39051:18;39057:2;39061:7;39051:5;:18::i;:::-;39102:54;39133:1;39137:2;39141:7;39150:5;39102:22;:54::i;:::-;39080:154;;;;-1:-1:-1;;;39080:154:0;;;;;;;:::i;42778:799::-;42933:4;-1:-1:-1;;;;;42954:13:0;;23442:20;23490:8;42950:620;;42990:72;;-1:-1:-1;;;42990:72:0;;-1:-1:-1;;;;;42990:36:0;;;;;:72;;9910:10;;43041:4;;43047:7;;43056:5;;42990:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42990:72:0;;;;;;;;-1:-1:-1;;42990:72:0;;;;;;;;;;;;:::i;:::-;;;42986:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43232:13:0;;43228:272;;43275:60;;-1:-1:-1;;;43275:60:0;;;;;;;:::i;43228:272::-;43450:6;43444:13;43435:6;43431:2;43427:15;43420:38;42986:529;-1:-1:-1;;;;;;43113:51:0;-1:-1:-1;;;43113:51:0;;-1:-1:-1;43106:58:0;;42950:620;-1:-1:-1;43554:4:0;42778:799;;;;;;:::o;46969:589::-;-1:-1:-1;;;;;47175:18:0;;47171:187;;47210:40;47242:7;48385:10;:17;;48358:24;;;;:15;:24;;;;;:44;;;48413:24;;;;;;;;;;;;48281:164;47210:40;47171:187;;;47280:2;-1:-1:-1;;;;;47272:10:0;:4;-1:-1:-1;;;;;47272:10:0;;47268:90;;47299:47;47332:4;47338:7;47299:32;:47::i;:::-;-1:-1:-1;;;;;47372:16:0;;47368:183;;47405:45;47442:7;47405:36;:45::i;47368:183::-;47478:4;-1:-1:-1;;;;;47472:10:0;:2;-1:-1:-1;;;;;47472:10:0;;47468:83;;47499:40;47527:2;47531:7;47499:27;:40::i;39578:382::-;-1:-1:-1;;;;;39658:16:0;;39650:61;;;;-1:-1:-1;;;39650:61:0;;10456:2:1;39650:61:0;;;10438:21:1;;;10475:18;;;10468:30;10534:34;10514:18;;;10507:62;10586:18;;39650:61:0;10254:356:1;39650:61:0;37665:4;37689:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37689:16:0;:30;39722:58;;;;-1:-1:-1;;;39722:58:0;;7337:2:1;39722:58:0;;;7319:21:1;7376:2;7356:18;;;7349:30;7415;7395:18;;;7388:58;7463:18;;39722:58:0;7135:352:1;39722:58:0;39793:45;39822:1;39826:2;39830:7;39793:20;:45::i;:::-;-1:-1:-1;;;;;39851:13:0;;;;;;:9;:13;;;;;:18;;39868:1;;39851:13;:18;;39868:1;;39851:18;:::i;:::-;;;;-1:-1:-1;;39880:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39880:21:0;-1:-1:-1;;;;;39880:21:0;;;;;;;;39919:33;;39880:16;;;39919:33;;39880:16;;39919:33;39578:382;;:::o;49072:988::-;49338:22;49388:1;49363:22;49380:4;49363:16;:22::i;:::-;:26;;;;:::i;:::-;49400:18;49421:26;;;:17;:26;;;;;;49338:51;;-1:-1:-1;49554:28:0;;;49550:328;;-1:-1:-1;;;;;49621:18:0;;49599:19;49621:18;;;:12;:18;;;;;;;;:34;;;;;;;;;49672:30;;;;;;:44;;;49789:30;;:17;:30;;;;;:43;;;49550:328;-1:-1:-1;49974:26:0;;;;:17;:26;;;;;;;;49967:33;;;-1:-1:-1;;;;;50018:18:0;;;;;:12;:18;;;;;:34;;;;;;;50011:41;49072:988::o;50355:1079::-;50633:10;:17;50608:22;;50633:21;;50653:1;;50633:21;:::i;:::-;50665:18;50686:24;;;:15;:24;;;;;;51059:10;:26;;50608:46;;-1:-1:-1;50686:24:0;;50608:46;;51059:26;;;;;;:::i;:::-;;;;;;;;;51037:48;;51123:11;51098:10;51109;51098:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;51203:28;;;:15;:28;;;;;;;:41;;;51375:24;;;;;51368:31;51410:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;50426:1008;;;50355:1079;:::o;47859:221::-;47944:14;47961:20;47978:2;47961:16;:20::i;:::-;-1:-1:-1;;;;;47992:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;48037:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;47859:221:0: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:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4305:470;-1:-1:-1;;;;4305:470:1:o;4988:488::-;-1:-1:-1;;;;;5257:15:1;;;5239:34;;5309:15;;5304:2;5289:18;;5282:43;5356:2;5341:18;;5334:34;;;5404:3;5399:2;5384:18;;5377:31;;;5182:4;;5425:45;;5450:19;;5442:6;5425:45;:::i;:::-;5417:53;4988:488;-1:-1:-1;;;;;;4988:488:1:o;5673:219::-;5822:2;5811:9;5804:21;5785:4;5842:44;5882:2;5871:9;5867:18;5859:6;5842:44;:::i;6309:414::-;6511:2;6493:21;;;6550:2;6530:18;;;6523:30;6589:34;6584:2;6569:18;;6562:62;-1:-1:-1;;;6655:2:1;6640:18;;6633:48;6713:3;6698:19;;6309:414::o;11431:356::-;11633:2;11615:21;;;11652:18;;;11645:30;11711:34;11706:2;11691:18;;11684:62;11778:2;11763:18;;11431:356::o;13020:413::-;13222:2;13204:21;;;13261:2;13241:18;;;13234:30;13300:34;13295:2;13280:18;;13273:62;-1:-1:-1;;;13366:2:1;13351:18;;13344:47;13423:3;13408:19;;13020:413::o;14929:128::-;14969:3;15000:1;14996:6;14993:1;14990:13;14987:39;;;15006:18;;:::i;:::-;-1:-1:-1;15042:9:1;;14929:128::o;15062:120::-;15102:1;15128;15118:35;;15133:18;;:::i;:::-;-1:-1:-1;15167:9:1;;15062:120::o;15187:168::-;15227:7;15293:1;15289;15285:6;15281:14;15278:1;15275:21;15270:1;15263:9;15256:17;15252:45;15249:71;;;15300:18;;:::i;:::-;-1:-1:-1;15340:9:1;;15187:168::o;15360:125::-;15400:4;15428:1;15425;15422:8;15419:34;;;15433:18;;:::i;:::-;-1:-1:-1;15470:9:1;;15360:125::o;15490:258::-;15562:1;15572:113;15586:6;15583:1;15580:13;15572:113;;;15662:11;;;15656:18;15643:11;;;15636:39;15608:2;15601:10;15572:113;;;15703:6;15700:1;15697:13;15694:48;;;-1:-1:-1;;15738:1:1;15720:16;;15713:27;15490:258::o;15753:380::-;15832:1;15828:12;;;;15875;;;15896:61;;15950:4;15942:6;15938:17;15928:27;;15896:61;16003:2;15995:6;15992:14;15972:18;15969:38;15966:161;;;16049:10;16044:3;16040:20;16037:1;16030:31;16084:4;16081:1;16074:15;16112:4;16109:1;16102:15;15966:161;;15753:380;;;:::o;16138:135::-;16177:3;-1:-1:-1;;16198:17:1;;16195:43;;;16218:18;;:::i;:::-;-1:-1:-1;16265:1:1;16254:13;;16138:135::o;16278:112::-;16310:1;16336;16326:35;;16341:18;;:::i;:::-;-1:-1:-1;16375:9:1;;16278:112::o;16395:127::-;16456:10;16451:3;16447:20;16444:1;16437:31;16487:4;16484:1;16477:15;16511:4;16508:1;16501:15;16527:127;16588:10;16583:3;16579:20;16576:1;16569:31;16619:4;16616:1;16609:15;16643:4;16640:1;16633:15;16659:127;16720:10;16715:3;16711:20;16708:1;16701:31;16751:4;16748:1;16741:15;16775:4;16772:1;16765:15;16791:127;16852:10;16847:3;16843:20;16840:1;16833:31;16883:4;16880:1;16873:15;16907:4;16904:1;16897:15;16923:127;16984:10;16979:3;16975:20;16972:1;16965:31;17015:4;17012:1;17005:15;17039:4;17036:1;17029:15;17055:131;-1:-1:-1;;;;;;17129:32:1;;17119:43;;17109:71;;17176:1;17173;17166:12

Swarm Source

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