ETH Price: $3,830.42 (+4.98%)

Token

ContemporaryMettiThree (ContemporaryMettiThree)
 

Overview

Max Total Supply

8 ContemporaryMettiThree

Holders

8

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
eggy.evilempire.eth
Balance
1 ContemporaryMettiThree
0xbd6ebc277890dbf41283427f64b568906d5a96ec
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:
ContemporaryMettiThree

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-26
*/

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

// Contemporary Metti Three consists of eight unique artworks from contemporary artist Pumpametti, a contemporary response to respond to Édouard Manet’s Le Déjeuner sur l’herbe (1863), inspired by the Jeffery Deitch show: https://deitch.com/los-angeles/exhibitions/luncheon-on-the-grass
// They will be raffled to Metti Art Patrons via Twitter.
// The Contemporary Metti Three raffle will be held on Pumpametti Twitter and picked via https://twitterpicker.com/. The artworks will only be sent to raffle winners who are Metti Art Patrons. 
// You can only win one Contemporary Metti artwork from each series. 
// If you are an artist and wish to use this smart contract for your artworks, you can find Tutorial at MettiForArtists: https://www.pumpametti.com/mettiforartists
// You can read about the art practice of Pumpametti via: https://www.pumpametti.com/
// Current Pumpametti art that's minting now: MettiApe and Metti Team Six:
// https://www.pumpametti.com/metti-ape
// https://www.pumpametti.com/metti-team-six

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


pragma solidity ^0.8.9;



abstract contract Royalties {
    mapping(uint256 => address payable) internal _tokenRoyaltyReceiver;
    mapping(uint256 => uint256) internal _tokenRoyaltyBPS;

    function _existsRoyalties(uint256 tokenId)
        internal
        view
        virtual
        returns (bool);

    /**
     *  @dev Rarible: RoyaltiesV1
     *
     *  bytes4(keccak256('getFeeRecipients(uint256)')) == 0xb9c4d9fb
     *  bytes4(keccak256('getFeeBps(uint256)')) == 0x0ebd4c7f
     *
     *  => 0xb9c4d9fb ^ 0x0ebd4c7f = 0xb7799584
     */
    bytes4 private constant _INTERFACE_ID_ROYALTIES_RARIBLE = 0xb7799584;

    /**
     *  @dev Foundation
     *
     *  bytes4(keccak256('getFees(uint256)')) == 0xd5a06d4c
     *
     *  => 0xd5a06d4c = 0xd5a06d4c
     */
    bytes4 private constant _INTERFACE_ID_ROYALTIES_FOUNDATION = 0xd5a06d4c;

    /**
     *  @dev EIP-2981
     *
     * bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a
     *
     * => 0x2a55205a = 0x2a55205a
     */
    bytes4 private constant _INTERFACE_ID_ROYALTIES_EIP2981 = 0x2a55205a;

    function _setRoyalties(
        uint256 tokenId,
        address payable receiver,
        uint256 basisPoints
    ) internal {
        require(basisPoints > 0);
        _tokenRoyaltyReceiver[tokenId] = receiver;
        _tokenRoyaltyBPS[tokenId] = basisPoints;
    }

    /**
     * @dev 3rd party Marketplace Royalty Support
     */

    /**
     * @dev IFoundation
     */
    function getFees(uint256 tokenId)
        external
        view
        virtual
        returns (address payable[] memory, uint256[] memory)
    {
        require(_existsRoyalties(tokenId), "Nonexistent token");

        address payable[] memory receivers = new address payable[](1);
        uint256[] memory bps = new uint256[](1);
        receivers[0] = _getReceiver(tokenId);
        bps[0] = _getBps(tokenId);
        return (receivers, bps);
    }

    /**
     * @dev IRaribleV1
     */
    function getFeeRecipients(uint256 tokenId)
        external
        view
        virtual
        returns (address payable[] memory)
    {
        require(_existsRoyalties(tokenId), "Nonexistent token");

        address payable[] memory receivers = new address payable[](1);
        receivers[0] = _getReceiver(tokenId);
        return receivers;
    }

    function getFeeBps(uint256 tokenId)
        external
        view
        virtual
        returns (uint256[] memory)
    {
        require(_existsRoyalties(tokenId), "Nonexistent token");

        uint256[] memory bps = new uint256[](1);
        bps[0] = _getBps(tokenId);
        return bps;
    }

    /**
     * @dev EIP-2981
     * Returns primary receiver i.e. receivers[0]
     */
    function royaltyInfo(uint256 tokenId, uint256 value)
        external
        view
        virtual
        returns (address, uint256)
    {
        require(_existsRoyalties(tokenId), "Nonexistent token");
        return _getRoyaltyInfo(tokenId, value);
    }

    function _getRoyaltyInfo(uint256 tokenId, uint256 value)
        internal
        view
        returns (address receiver, uint256 amount)
    {
        address _receiver = _getReceiver(tokenId);
        return (_receiver, (_tokenRoyaltyBPS[tokenId] * value) / 10000);
    }

    function _getBps(uint256 tokenId) internal view returns (uint256) {
        return _tokenRoyaltyBPS[tokenId];
    }

    function _getReceiver(uint256 tokenId)
        internal
        view
        returns (address payable)
    {
        uint256 bps = _getBps(tokenId);
        address payable receiver = _tokenRoyaltyReceiver[tokenId];
        if (bps == 0 || receiver == address(0)) {
            /**
             * @dev: If bps is 0 the receiver was never set
             * Fall back to this contract so badly behaved
             * marketplaces have somewhere to send money to
             */
            return (_getRoyaltyFallback());
        }

        return receiver;
    }

    function _getRoyaltyFallback()
        internal
        view
        virtual
        returns (address payable);

    function _supportsRoyaltyInterfaces(bytes4 interfaceId)
        public
        pure
        returns (bool)
    {
        return
            interfaceId == _INTERFACE_ID_ROYALTIES_RARIBLE ||
            interfaceId == _INTERFACE_ID_ROYALTIES_FOUNDATION ||
            interfaceId == _INTERFACE_ID_ROYALTIES_EIP2981;
    }
}

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


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

pragma solidity ^0.8.0;



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

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


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

pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

// File: contracts/ContemporaryMettiThree.sol



// Contemporary Metti Three consists of eight unique artworks from contemporary artist Pumpametti, a contemporary response to respond to Édouard Manet’s Le Déjeuner sur l’herbe (1863), inspired by the Jeffery Deitch show: https://deitch.com/los-angeles/exhibitions/luncheon-on-the-grass
// They will be raffled to Metti Art Patrons via Twitter.
// The Contemporary Metti Three raffle will be held on Pumpametti Twitter and picked via https://twitterpicker.com/. The artworks will only be sent to raffle winners who are Metti Art Patrons. 
// You can only win one Contemporary Metti artwork from each series. 
// If you are an artist and wish to use this smart contract for your artworks, you can find Tutorial at MettiForArtists: https://www.pumpametti.com/mettiforartists
// You can read about the art practice of Pumpametti via: https://www.pumpametti.com/
// Current Pumpametti art that's minting now: MettiApe and Metti Team Six:
// https://www.pumpametti.com/metti-ape
// https://www.pumpametti.com/metti-team-six

pragma solidity ^0.8.9;









contract ContemporaryMettiThree is ERC721, ERC721URIStorage, ERC721Burnable, ERC721Enumerable, Ownable, Royalties {  
     using SafeMath for uint256;
     using Strings for uint256;
   
    // Freeze OS Metadata to make artwork irrevocable
    event PermanentURI(string _value, uint256 indexed _id);

    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;
    string private _baseURIextended;
    uint256 private _MAX_UniqueWork = 10;
    
    //Here you can set smart contract name and token symbol

    constructor() ERC721("ContemporaryMettiThree", "ContemporaryMettiThree") {}

    function mintUniqueWork(
        address to,
        string memory _tokenURI,
        address payable receiver,
        uint256 basisPoints
    ) public onlyOwner {
        require(basisPoints < 10000, "Total royalties should not exceed 100%");
        uint256 tokenId = getNextTokenId();
        require(
            tokenId < _MAX_UniqueWork,
            "Maximum number of unique artworks exceeded"
        );

        _mintUniqueWork(to, tokenId, _tokenURI, receiver, basisPoints);
        _tokenIdCounter.increment();
    }

    function getNextTokenId() public view returns (uint256) {
        return _tokenIdCounter.current() + 1;
    }

    function _mintUniqueWork(
        address to,
        uint256 tokenId,
        string memory _tokenURI,
        address payable receiver,
        uint256 basisPoints
    ) internal {
        _safeMint(to, tokenId);
        _setTokenURI(tokenId, _tokenURI);
        if (basisPoints > 0) {
            _setRoyalties(tokenId, receiver, basisPoints);
        }
        emit PermanentURI(tokenURI(tokenId), tokenId);
    }

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

    function _burn(uint256 tokenId)
        internal
        override(ERC721, ERC721URIStorage)
    {
        super._burn(tokenId);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        return super.tokenURI(tokenId);
    }

    function _existsRoyalties(uint256 tokenId)
        internal
        view
        virtual
        override(Royalties)
        returns (bool)
    {
        return super._exists(tokenId);
    }

    function _getRoyaltyFallback()
        internal
        view
        override
        returns (address payable)
    {
        return payable(owner());
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return
            super.supportsInterface(interfaceId) ||
            _supportsRoyaltyInterfaces(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":false,"internalType":"string","name":"_value","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"PermanentURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"_supportsRoyaltyInterfaces","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","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":"uint256","name":"tokenId","type":"uint256"}],"name":"getFeeBps","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFeeRecipients","outputs":[{"internalType":"address payable[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFees","outputs":[{"internalType":"address payable[]","name":"","type":"address[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"_tokenURI","type":"string"},{"internalType":"address payable","name":"receiver","type":"address"},{"internalType":"uint256","name":"basisPoints","type":"uint256"}],"name":"mintUniqueWork","outputs":[],"stateMutability":"nonpayable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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"}]

6080604052600a6010553480156200001657600080fd5b5060408051808201825260168082527f436f6e74656d706f726172794d657474695468726565000000000000000000006020808401828152855180870190965292855284015281519192916200006f91600091620000fe565b50805162000085906001906020840190620000fe565b505050620000a26200009c620000a860201b60201c565b620000ac565b620001e1565b3390565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200010c90620001a4565b90600052602060002090601f0160209004810192826200013057600085556200017b565b82601f106200014b57805160ff19168380011785556200017b565b828001600101855582156200017b579182015b828111156200017b5782518255916020019190600101906200015e565b50620001899291506200018d565b5090565b5b808211156200018957600081556001016200018e565b600181811c90821680620001b957607f821691505b60208210811415620001db57634e487b7160e01b600052602260045260246000fd5b50919050565b61261180620001f16000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c80636352211e116100f9578063b9c4d9fb11610097578063d5a06d4c11610071578063d5a06d4c146103a9578063df709c37146103ca578063e985e9c5146103dd578063f2fde38b1461041957600080fd5b8063b9c4d9fb1461036e578063c87b56dd1461038e578063caa0f92a146103a157600080fd5b80638da5cb5b116100d35780638da5cb5b1461032f57806395d89b4114610340578063a22cb46514610348578063b88d4fde1461035b57600080fd5b80636352211e1461030157806370a0823114610314578063715018a61461032757600080fd5b806318160ddd116101665780632f745c59116101405780632f745c59146102b557806342842e0e146102c857806342966c68146102db5780634f6ccce7146102ee57600080fd5b806318160ddd1461025e57806323b872dd146102705780632a55205a1461028357600080fd5b806301ffc9a7146101ae57806306fdde03146101d6578063081812fc146101eb578063095ea7b3146102165780630ebd4c7f1461022b578063152fcb2e1461024b575b600080fd5b6101c16101bc366004611f0b565b61042c565b60405190151581526020015b60405180910390f35b6101de61044c565b6040516101cd9190611f80565b6101fe6101f9366004611f93565b6104de565b6040516001600160a01b0390911681526020016101cd565b610229610224366004611fc1565b61056b565b005b61023e610239366004611f93565b610681565b6040516101cd9190612028565b6101c1610259366004611f0b565b6106fe565b6009545b6040519081526020016101cd565b61022961027e36600461203b565b61074f565b61029661029136600461207c565b610781565b604080516001600160a01b0390931683526020830191909152016101cd565b6102626102c3366004611fc1565b6107be565b6102296102d636600461203b565b610854565b6102296102e9366004611f93565b61086f565b6102626102fc366004611f93565b6108e9565b6101fe61030f366004611f93565b61097c565b61026261032236600461209e565b6109f3565b610229610a7a565b600b546001600160a01b03166101fe565b6101de610ab0565b6102296103563660046120bb565b610abf565b610229610369366004612185565b610ace565b61038161037c366004611f93565b610b06565b6040516101cd919061223e565b6101de61039c366004611f93565b610b89565b610262610b94565b6103bc6103b7366004611f93565b610baf565b6040516101cd929190612251565b6102296103d836600461227f565b610c86565b6101c16103eb3660046122fd565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61022961042736600461209e565b610da2565b600061043782610e3a565b806104465750610446826106fe565b92915050565b60606000805461045b9061232b565b80601f01602080910402602001604051908101604052809291908181526020018280546104879061232b565b80156104d45780601f106104a9576101008083540402835291602001916104d4565b820191906000526020600020905b8154815290600101906020018083116104b757829003601f168201915b5050505050905090565b60006104e982610e5f565b61054f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105768261097c565b9050806001600160a01b0316836001600160a01b031614156105e45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610546565b336001600160a01b0382161480610600575061060081336103eb565b6106725760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610546565b61067c8383610e7c565b505050565b606061068c82610eea565b6106a85760405162461bcd60e51b815260040161054690612366565b60408051600180825281830190925260009160208083019080368337019050506000848152600d6020526040902054909150816000815181106106ed576106ed612391565b602090810291909101015292915050565b60006001600160e01b03198216632dde656160e21b148061072f57506001600160e01b031982166335681b5360e21b145b8061044657506001600160e01b0319821663152a902d60e11b1492915050565b61075a335b82610ef5565b6107765760405162461bcd60e51b8152600401610546906123a7565b61067c838383610fdf565b60008061078d84610eea565b6107a95760405162461bcd60e51b815260040161054690612366565b6107b3848461118a565b915091509250929050565b60006107c9836109f3565b821061082b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610546565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b61067c83838360405180602001604052806000815250610ace565b61087833610754565b6108dd5760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610546565b6108e6816111d1565b50565b60006108f460095490565b82106109575760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610546565b6009828154811061096a5761096a612391565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610546565b60006001600160a01b038216610a5e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610546565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610aa45760405162461bcd60e51b8152600401610546906123f8565b610aae60006111da565b565b60606001805461045b9061232b565b610aca33838361122c565b5050565b610ad83383610ef5565b610af45760405162461bcd60e51b8152600401610546906123a7565b610b00848484846112fb565b50505050565b6060610b1182610eea565b610b2d5760405162461bcd60e51b815260040161054690612366565b60408051600180825281830190925260009160208083019080368337019050509050610b588361132e565b81600081518110610b6b57610b6b612391565b6001600160a01b039092166020928302919091019091015292915050565b606061044682611379565b6000610b9f600e5490565b610baa906001612443565b905090565b606080610bbb83610eea565b610bd75760405162461bcd60e51b815260040161054690612366565b604080516001808252818301909252600091602080830190803683375050604080516001808252818301909252929350600092915060208083019080368337019050509050610c258561132e565b82600081518110610c3857610c38612391565b6001600160a01b039092166020928302919091018201526000868152600d909152604090205481600081518110610c7157610c71612391565b60209081029190910101529094909350915050565b600b546001600160a01b03163314610cb05760405162461bcd60e51b8152600401610546906123f8565b6127108110610d105760405162461bcd60e51b815260206004820152602660248201527f546f74616c20726f79616c746965732073686f756c64206e6f7420657863656560448201526564203130302560d01b6064820152608401610546565b6000610d1a610b94565b90506010548110610d805760405162461bcd60e51b815260206004820152602a60248201527f4d6178696d756d206e756d626572206f6620756e6971756520617274776f726b6044820152691cc8195e18d95959195960b21b6064820152608401610546565b610d8d85828686866114e8565b610d9b600e80546001019055565b5050505050565b600b546001600160a01b03163314610dcc5760405162461bcd60e51b8152600401610546906123f8565b6001600160a01b038116610e315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610546565b6108e6816111da565b60006001600160e01b0319821663780e9d6360e01b1480610446575061044682611554565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610eb18261097c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061044682610e5f565b6000610f0082610e5f565b610f615760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610546565b6000610f6c8361097c565b9050806001600160a01b0316846001600160a01b03161480610fa75750836001600160a01b0316610f9c846104de565b6001600160a01b0316145b80610fd757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610ff28261097c565b6001600160a01b03161461105a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610546565b6001600160a01b0382166110bc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610546565b6110c78383836115a4565b6110d2600082610e7c565b6001600160a01b03831660009081526003602052604081208054600192906110fb90849061245b565b90915550506001600160a01b0382166000908152600360205260408120805460019290611129908490612443565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008060006111988561132e565b6000868152600d60205260409020549091508190612710906111bb908790612472565b6111c591906124a7565b92509250509250929050565b6108e6816115af565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561128e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610546565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611306848484610fdf565b611312848484846115ef565b610b005760405162461bcd60e51b8152600401610546906124bb565b6000818152600d6020908152604080832054600c9092528220546001600160a01b031681158061136557506001600160a01b038116155b1561137257610fd76116ed565b9392505050565b606061138482610e5f565b6113ea5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610546565b600082815260066020526040812080546114039061232b565b80601f016020809104026020016040519081016040528092919081815260200182805461142f9061232b565b801561147c5780601f106114515761010080835404028352916020019161147c565b820191906000526020600020905b81548152906001019060200180831161145f57829003601f168201915b50505050509050600061149a60408051602081019091526000815290565b90508051600014156114ad575092915050565b8151156114df5780826040516020016114c792919061250d565b60405160208183030381529060405292505050919050565b610fd784611701565b6114f285856117d8565b6114fc84846117f2565b801561150d5761150d84838361187d565b837fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b5565720761153886610b89565b6040516115459190611f80565b60405180910390a25050505050565b60006001600160e01b031982166380ac58cd60e01b148061158557506001600160e01b03198216635b5e139f60e01b145b8061044657506301ffc9a760e01b6001600160e01b0319831614610446565b61067c8383836118c3565b6115b88161197b565b600081815260066020526040902080546115d19061232b565b1590506108e65760008181526006602052604081206108e691611e22565b60006001600160a01b0384163b156116e257604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061163390339089908890889060040161253c565b6020604051808303816000875af192505050801561166e575060408051601f3d908101601f1916820190925261166b91810190612579565b60015b6116c8573d80801561169c576040519150601f19603f3d011682016040523d82523d6000602084013e6116a1565b606091505b5080516116c05760405162461bcd60e51b8152600401610546906124bb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fd7565b506001949350505050565b6000610baa600b546001600160a01b031690565b606061170c82610e5f565b6117705760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610546565b600061178760408051602081019091526000815290565b905060008151116117a75760405180602001604052806000815250611372565b806117b184611a22565b6040516020016117c292919061250d565b6040516020818303038152906040529392505050565b610aca828260405180602001604052806000815250611b20565b6117fb82610e5f565b61185e5760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610546565b6000828152600660209081526040909120825161067c92840190611e5c565b6000811161188a57600080fd5b6000928352600c6020908152604080852080546001600160a01b0319166001600160a01b039590951694909417909355600d9052912055565b6001600160a01b03831661191e5761191981600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611941565b816001600160a01b0316836001600160a01b031614611941576119418382611b53565b6001600160a01b0382166119585761067c81611bf0565b826001600160a01b0316826001600160a01b03161461067c5761067c8282611c9f565b60006119868261097c565b9050611994816000846115a4565b61199f600083610e7c565b6001600160a01b03811660009081526003602052604081208054600192906119c890849061245b565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b606081611a465750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a705780611a5a81612596565b9150611a699050600a836124a7565b9150611a4a565b60008167ffffffffffffffff811115611a8b57611a8b6120f9565b6040519080825280601f01601f191660200182016040528015611ab5576020820181803683370190505b5090505b8415610fd757611aca60018361245b565b9150611ad7600a866125b1565b611ae2906030612443565b60f81b818381518110611af757611af7612391565b60200101906001600160f81b031916908160001a905350611b19600a866124a7565b9450611ab9565b611b2a8383611ce3565b611b3760008484846115ef565b61067c5760405162461bcd60e51b8152600401610546906124bb565b60006001611b60846109f3565b611b6a919061245b565b600083815260086020526040902054909150808214611bbd576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611c029060019061245b565b6000838152600a602052604081205460098054939450909284908110611c2a57611c2a612391565b906000526020600020015490508060098381548110611c4b57611c4b612391565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611c8357611c836125c5565b6001900381819060005260206000200160009055905550505050565b6000611caa836109f3565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b038216611d395760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610546565b611d4281610e5f565b15611d8f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610546565b611d9b600083836115a4565b6001600160a01b0382166000908152600360205260408120805460019290611dc4908490612443565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b508054611e2e9061232b565b6000825580601f10611e3e575050565b601f0160209004906000526020600020908101906108e69190611ee0565b828054611e689061232b565b90600052602060002090601f016020900481019282611e8a5760008555611ed0565b82601f10611ea357805160ff1916838001178555611ed0565b82800160010185558215611ed0579182015b82811115611ed0578251825591602001919060010190611eb5565b50611edc929150611ee0565b5090565b5b80821115611edc5760008155600101611ee1565b6001600160e01b0319811681146108e657600080fd5b600060208284031215611f1d57600080fd5b813561137281611ef5565b60005b83811015611f43578181015183820152602001611f2b565b83811115610b005750506000910152565b60008151808452611f6c816020860160208601611f28565b601f01601f19169290920160200192915050565b6020815260006113726020830184611f54565b600060208284031215611fa557600080fd5b5035919050565b6001600160a01b03811681146108e657600080fd5b60008060408385031215611fd457600080fd5b8235611fdf81611fac565b946020939093013593505050565b600081518084526020808501945080840160005b8381101561201d57815187529582019590820190600101612001565b509495945050505050565b6020815260006113726020830184611fed565b60008060006060848603121561205057600080fd5b833561205b81611fac565b9250602084013561206b81611fac565b929592945050506040919091013590565b6000806040838503121561208f57600080fd5b50508035926020909101359150565b6000602082840312156120b057600080fd5b813561137281611fac565b600080604083850312156120ce57600080fd5b82356120d981611fac565b9150602083013580151581146120ee57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561212a5761212a6120f9565b604051601f8501601f19908116603f01168101908282118183101715612152576121526120f9565b8160405280935085815286868601111561216b57600080fd5b858560208301376000602087830101525050509392505050565b6000806000806080858703121561219b57600080fd5b84356121a681611fac565b935060208501356121b681611fac565b925060408501359150606085013567ffffffffffffffff8111156121d957600080fd5b8501601f810187136121ea57600080fd5b6121f98782356020840161210f565b91505092959194509250565b600081518084526020808501945080840160005b8381101561201d5781516001600160a01b031687529582019590820190600101612219565b6020815260006113726020830184612205565b6040815260006122646040830185612205565b82810360208401526122768185611fed565b95945050505050565b6000806000806080858703121561229557600080fd5b84356122a081611fac565b9350602085013567ffffffffffffffff8111156122bc57600080fd5b8501601f810187136122cd57600080fd5b6122dc8782356020840161210f565b93505060408501356122ed81611fac565b9396929550929360600135925050565b6000806040838503121561231057600080fd5b823561231b81611fac565b915060208301356120ee81611fac565b600181811c9082168061233f57607f821691505b6020821081141561236057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601190820152702737b732bc34b9ba32b73a103a37b5b2b760791b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156124565761245661242d565b500190565b60008282101561246d5761246d61242d565b500390565b600081600019048311821515161561248c5761248c61242d565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826124b6576124b6612491565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000835161251f818460208801611f28565b835190830190612533818360208801611f28565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061256f90830184611f54565b9695505050505050565b60006020828403121561258b57600080fd5b815161137281611ef5565b60006000198214156125aa576125aa61242d565b5060010190565b6000826125c0576125c0612491565b500690565b634e487b7160e01b600052603160045260246000fdfea264697066735822122094b7c1b13fbc4b012c2758140862a4a53996be728260df71d11f69c6ad7d8d5a64736f6c634300080c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c80636352211e116100f9578063b9c4d9fb11610097578063d5a06d4c11610071578063d5a06d4c146103a9578063df709c37146103ca578063e985e9c5146103dd578063f2fde38b1461041957600080fd5b8063b9c4d9fb1461036e578063c87b56dd1461038e578063caa0f92a146103a157600080fd5b80638da5cb5b116100d35780638da5cb5b1461032f57806395d89b4114610340578063a22cb46514610348578063b88d4fde1461035b57600080fd5b80636352211e1461030157806370a0823114610314578063715018a61461032757600080fd5b806318160ddd116101665780632f745c59116101405780632f745c59146102b557806342842e0e146102c857806342966c68146102db5780634f6ccce7146102ee57600080fd5b806318160ddd1461025e57806323b872dd146102705780632a55205a1461028357600080fd5b806301ffc9a7146101ae57806306fdde03146101d6578063081812fc146101eb578063095ea7b3146102165780630ebd4c7f1461022b578063152fcb2e1461024b575b600080fd5b6101c16101bc366004611f0b565b61042c565b60405190151581526020015b60405180910390f35b6101de61044c565b6040516101cd9190611f80565b6101fe6101f9366004611f93565b6104de565b6040516001600160a01b0390911681526020016101cd565b610229610224366004611fc1565b61056b565b005b61023e610239366004611f93565b610681565b6040516101cd9190612028565b6101c1610259366004611f0b565b6106fe565b6009545b6040519081526020016101cd565b61022961027e36600461203b565b61074f565b61029661029136600461207c565b610781565b604080516001600160a01b0390931683526020830191909152016101cd565b6102626102c3366004611fc1565b6107be565b6102296102d636600461203b565b610854565b6102296102e9366004611f93565b61086f565b6102626102fc366004611f93565b6108e9565b6101fe61030f366004611f93565b61097c565b61026261032236600461209e565b6109f3565b610229610a7a565b600b546001600160a01b03166101fe565b6101de610ab0565b6102296103563660046120bb565b610abf565b610229610369366004612185565b610ace565b61038161037c366004611f93565b610b06565b6040516101cd919061223e565b6101de61039c366004611f93565b610b89565b610262610b94565b6103bc6103b7366004611f93565b610baf565b6040516101cd929190612251565b6102296103d836600461227f565b610c86565b6101c16103eb3660046122fd565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61022961042736600461209e565b610da2565b600061043782610e3a565b806104465750610446826106fe565b92915050565b60606000805461045b9061232b565b80601f01602080910402602001604051908101604052809291908181526020018280546104879061232b565b80156104d45780601f106104a9576101008083540402835291602001916104d4565b820191906000526020600020905b8154815290600101906020018083116104b757829003601f168201915b5050505050905090565b60006104e982610e5f565b61054f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105768261097c565b9050806001600160a01b0316836001600160a01b031614156105e45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610546565b336001600160a01b0382161480610600575061060081336103eb565b6106725760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610546565b61067c8383610e7c565b505050565b606061068c82610eea565b6106a85760405162461bcd60e51b815260040161054690612366565b60408051600180825281830190925260009160208083019080368337019050506000848152600d6020526040902054909150816000815181106106ed576106ed612391565b602090810291909101015292915050565b60006001600160e01b03198216632dde656160e21b148061072f57506001600160e01b031982166335681b5360e21b145b8061044657506001600160e01b0319821663152a902d60e11b1492915050565b61075a335b82610ef5565b6107765760405162461bcd60e51b8152600401610546906123a7565b61067c838383610fdf565b60008061078d84610eea565b6107a95760405162461bcd60e51b815260040161054690612366565b6107b3848461118a565b915091509250929050565b60006107c9836109f3565b821061082b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610546565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b61067c83838360405180602001604052806000815250610ace565b61087833610754565b6108dd5760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610546565b6108e6816111d1565b50565b60006108f460095490565b82106109575760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610546565b6009828154811061096a5761096a612391565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610546565b60006001600160a01b038216610a5e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610546565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610aa45760405162461bcd60e51b8152600401610546906123f8565b610aae60006111da565b565b60606001805461045b9061232b565b610aca33838361122c565b5050565b610ad83383610ef5565b610af45760405162461bcd60e51b8152600401610546906123a7565b610b00848484846112fb565b50505050565b6060610b1182610eea565b610b2d5760405162461bcd60e51b815260040161054690612366565b60408051600180825281830190925260009160208083019080368337019050509050610b588361132e565b81600081518110610b6b57610b6b612391565b6001600160a01b039092166020928302919091019091015292915050565b606061044682611379565b6000610b9f600e5490565b610baa906001612443565b905090565b606080610bbb83610eea565b610bd75760405162461bcd60e51b815260040161054690612366565b604080516001808252818301909252600091602080830190803683375050604080516001808252818301909252929350600092915060208083019080368337019050509050610c258561132e565b82600081518110610c3857610c38612391565b6001600160a01b039092166020928302919091018201526000868152600d909152604090205481600081518110610c7157610c71612391565b60209081029190910101529094909350915050565b600b546001600160a01b03163314610cb05760405162461bcd60e51b8152600401610546906123f8565b6127108110610d105760405162461bcd60e51b815260206004820152602660248201527f546f74616c20726f79616c746965732073686f756c64206e6f7420657863656560448201526564203130302560d01b6064820152608401610546565b6000610d1a610b94565b90506010548110610d805760405162461bcd60e51b815260206004820152602a60248201527f4d6178696d756d206e756d626572206f6620756e6971756520617274776f726b6044820152691cc8195e18d95959195960b21b6064820152608401610546565b610d8d85828686866114e8565b610d9b600e80546001019055565b5050505050565b600b546001600160a01b03163314610dcc5760405162461bcd60e51b8152600401610546906123f8565b6001600160a01b038116610e315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610546565b6108e6816111da565b60006001600160e01b0319821663780e9d6360e01b1480610446575061044682611554565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610eb18261097c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061044682610e5f565b6000610f0082610e5f565b610f615760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610546565b6000610f6c8361097c565b9050806001600160a01b0316846001600160a01b03161480610fa75750836001600160a01b0316610f9c846104de565b6001600160a01b0316145b80610fd757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610ff28261097c565b6001600160a01b03161461105a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610546565b6001600160a01b0382166110bc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610546565b6110c78383836115a4565b6110d2600082610e7c565b6001600160a01b03831660009081526003602052604081208054600192906110fb90849061245b565b90915550506001600160a01b0382166000908152600360205260408120805460019290611129908490612443565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008060006111988561132e565b6000868152600d60205260409020549091508190612710906111bb908790612472565b6111c591906124a7565b92509250509250929050565b6108e6816115af565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561128e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610546565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611306848484610fdf565b611312848484846115ef565b610b005760405162461bcd60e51b8152600401610546906124bb565b6000818152600d6020908152604080832054600c9092528220546001600160a01b031681158061136557506001600160a01b038116155b1561137257610fd76116ed565b9392505050565b606061138482610e5f565b6113ea5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610546565b600082815260066020526040812080546114039061232b565b80601f016020809104026020016040519081016040528092919081815260200182805461142f9061232b565b801561147c5780601f106114515761010080835404028352916020019161147c565b820191906000526020600020905b81548152906001019060200180831161145f57829003601f168201915b50505050509050600061149a60408051602081019091526000815290565b90508051600014156114ad575092915050565b8151156114df5780826040516020016114c792919061250d565b60405160208183030381529060405292505050919050565b610fd784611701565b6114f285856117d8565b6114fc84846117f2565b801561150d5761150d84838361187d565b837fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b5565720761153886610b89565b6040516115459190611f80565b60405180910390a25050505050565b60006001600160e01b031982166380ac58cd60e01b148061158557506001600160e01b03198216635b5e139f60e01b145b8061044657506301ffc9a760e01b6001600160e01b0319831614610446565b61067c8383836118c3565b6115b88161197b565b600081815260066020526040902080546115d19061232b565b1590506108e65760008181526006602052604081206108e691611e22565b60006001600160a01b0384163b156116e257604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061163390339089908890889060040161253c565b6020604051808303816000875af192505050801561166e575060408051601f3d908101601f1916820190925261166b91810190612579565b60015b6116c8573d80801561169c576040519150601f19603f3d011682016040523d82523d6000602084013e6116a1565b606091505b5080516116c05760405162461bcd60e51b8152600401610546906124bb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fd7565b506001949350505050565b6000610baa600b546001600160a01b031690565b606061170c82610e5f565b6117705760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610546565b600061178760408051602081019091526000815290565b905060008151116117a75760405180602001604052806000815250611372565b806117b184611a22565b6040516020016117c292919061250d565b6040516020818303038152906040529392505050565b610aca828260405180602001604052806000815250611b20565b6117fb82610e5f565b61185e5760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610546565b6000828152600660209081526040909120825161067c92840190611e5c565b6000811161188a57600080fd5b6000928352600c6020908152604080852080546001600160a01b0319166001600160a01b039590951694909417909355600d9052912055565b6001600160a01b03831661191e5761191981600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611941565b816001600160a01b0316836001600160a01b031614611941576119418382611b53565b6001600160a01b0382166119585761067c81611bf0565b826001600160a01b0316826001600160a01b03161461067c5761067c8282611c9f565b60006119868261097c565b9050611994816000846115a4565b61199f600083610e7c565b6001600160a01b03811660009081526003602052604081208054600192906119c890849061245b565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b606081611a465750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a705780611a5a81612596565b9150611a699050600a836124a7565b9150611a4a565b60008167ffffffffffffffff811115611a8b57611a8b6120f9565b6040519080825280601f01601f191660200182016040528015611ab5576020820181803683370190505b5090505b8415610fd757611aca60018361245b565b9150611ad7600a866125b1565b611ae2906030612443565b60f81b818381518110611af757611af7612391565b60200101906001600160f81b031916908160001a905350611b19600a866124a7565b9450611ab9565b611b2a8383611ce3565b611b3760008484846115ef565b61067c5760405162461bcd60e51b8152600401610546906124bb565b60006001611b60846109f3565b611b6a919061245b565b600083815260086020526040902054909150808214611bbd576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611c029060019061245b565b6000838152600a602052604081205460098054939450909284908110611c2a57611c2a612391565b906000526020600020015490508060098381548110611c4b57611c4b612391565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611c8357611c836125c5565b6001900381819060005260206000200160009055905550505050565b6000611caa836109f3565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b038216611d395760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610546565b611d4281610e5f565b15611d8f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610546565b611d9b600083836115a4565b6001600160a01b0382166000908152600360205260408120805460019290611dc4908490612443565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b508054611e2e9061232b565b6000825580601f10611e3e575050565b601f0160209004906000526020600020908101906108e69190611ee0565b828054611e689061232b565b90600052602060002090601f016020900481019282611e8a5760008555611ed0565b82601f10611ea357805160ff1916838001178555611ed0565b82800160010185558215611ed0579182015b82811115611ed0578251825591602001919060010190611eb5565b50611edc929150611ee0565b5090565b5b80821115611edc5760008155600101611ee1565b6001600160e01b0319811681146108e657600080fd5b600060208284031215611f1d57600080fd5b813561137281611ef5565b60005b83811015611f43578181015183820152602001611f2b565b83811115610b005750506000910152565b60008151808452611f6c816020860160208601611f28565b601f01601f19169290920160200192915050565b6020815260006113726020830184611f54565b600060208284031215611fa557600080fd5b5035919050565b6001600160a01b03811681146108e657600080fd5b60008060408385031215611fd457600080fd5b8235611fdf81611fac565b946020939093013593505050565b600081518084526020808501945080840160005b8381101561201d57815187529582019590820190600101612001565b509495945050505050565b6020815260006113726020830184611fed565b60008060006060848603121561205057600080fd5b833561205b81611fac565b9250602084013561206b81611fac565b929592945050506040919091013590565b6000806040838503121561208f57600080fd5b50508035926020909101359150565b6000602082840312156120b057600080fd5b813561137281611fac565b600080604083850312156120ce57600080fd5b82356120d981611fac565b9150602083013580151581146120ee57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561212a5761212a6120f9565b604051601f8501601f19908116603f01168101908282118183101715612152576121526120f9565b8160405280935085815286868601111561216b57600080fd5b858560208301376000602087830101525050509392505050565b6000806000806080858703121561219b57600080fd5b84356121a681611fac565b935060208501356121b681611fac565b925060408501359150606085013567ffffffffffffffff8111156121d957600080fd5b8501601f810187136121ea57600080fd5b6121f98782356020840161210f565b91505092959194509250565b600081518084526020808501945080840160005b8381101561201d5781516001600160a01b031687529582019590820190600101612219565b6020815260006113726020830184612205565b6040815260006122646040830185612205565b82810360208401526122768185611fed565b95945050505050565b6000806000806080858703121561229557600080fd5b84356122a081611fac565b9350602085013567ffffffffffffffff8111156122bc57600080fd5b8501601f810187136122cd57600080fd5b6122dc8782356020840161210f565b93505060408501356122ed81611fac565b9396929550929360600135925050565b6000806040838503121561231057600080fd5b823561231b81611fac565b915060208301356120ee81611fac565b600181811c9082168061233f57607f821691505b6020821081141561236057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601190820152702737b732bc34b9ba32b73a103a37b5b2b760791b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156124565761245661242d565b500190565b60008282101561246d5761246d61242d565b500390565b600081600019048311821515161561248c5761248c61242d565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826124b6576124b6612491565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000835161251f818460208801611f28565b835190830190612533818360208801611f28565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061256f90830184611f54565b9695505050505050565b60006020828403121561258b57600080fd5b815161137281611ef5565b60006000198214156125aa576125aa61242d565b5060010190565b6000826125c0576125c0612491565b500690565b634e487b7160e01b600052603160045260246000fdfea264697066735822122094b7c1b13fbc4b012c2758140862a4a53996be728260df71d11f69c6ad7d8d5a64736f6c634300080c0033

Deployed Bytecode Sourcemap

62457:2979:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65152:281;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;65152:281:0;;;;;;;;35286:100;;;:::i;:::-;;;;;;;:::i;36845:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;36845:221:0;1528:203:1;36368:411:0;;;;;;:::i;:::-;;:::i;:::-;;49232:309;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;51037:329::-;;;;;;:::i;:::-;;:::i;53024:113::-;53112:10;:17;53024:113;;;3044:25:1;;;3032:2;3017:18;53024:113:0;2898:177:1;37595:339:0;;;;;;:::i;:::-;;:::i;49640:266::-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3986:32:1;;;3968:51;;4050:2;4035:18;;4028:34;;;;3941:18;49640:266:0;3794:274:1;52692:256:0;;;;;;:::i;:::-;;:::i;38005:185::-;;;;;;:::i;:::-;;:::i;59068:245::-;;;;;;:::i;:::-;;:::i;53214:233::-;;;;;;:::i;:::-;;:::i;34980:239::-;;;;;;:::i;:::-;;:::i;34710:208::-;;;;;;:::i;:::-;;:::i;14256:103::-;;;:::i;13605:87::-;13678:6;;-1:-1:-1;;;;;13678:6:0;13605:87;;35455:104;;;:::i;37138:155::-;;;;;;:::i;:::-;;:::i;38261:328::-;;;;;;:::i;:::-;;:::i;48861:363::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;64571:196::-;;;;;;:::i;:::-;;:::i;63645:111::-;;;:::i;48346:465::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;63094:543::-;;;;;;:::i;:::-;;:::i;37364:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;37485:25:0;;;37461:4;37485:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37364:164;14514:201;;;;;;:::i;:::-;;:::i;65152:281::-;65291:4;65333:36;65357:11;65333:23;:36::i;:::-;:92;;;;65386:39;65413:11;65386:26;:39::i;:::-;65313:112;65152:281;-1:-1:-1;;65152:281:0:o;35286:100::-;35340:13;35373:5;35366:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35286:100;:::o;36845:221::-;36921:7;36949:16;36957:7;36949;:16::i;:::-;36941:73;;;;-1:-1:-1;;;36941:73:0;;9359:2:1;36941:73:0;;;9341:21:1;9398:2;9378:18;;;9371:30;9437:34;9417:18;;;9410:62;-1:-1:-1;;;9488:18:1;;;9481:42;9540:19;;36941:73:0;;;;;;;;;-1:-1:-1;37034:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37034:24:0;;36845:221::o;36368:411::-;36449:13;36465:23;36480:7;36465:14;:23::i;:::-;36449:39;;36513:5;-1:-1:-1;;;;;36507:11:0;:2;-1:-1:-1;;;;;36507:11:0;;;36499:57;;;;-1:-1:-1;;;36499:57:0;;9772:2:1;36499:57:0;;;9754:21:1;9811:2;9791:18;;;9784:30;9850:34;9830:18;;;9823:62;-1:-1:-1;;;9901:18:1;;;9894:31;9942:19;;36499:57:0;9570:397:1;36499:57:0;12409:10;-1:-1:-1;;;;;36591:21:0;;;;:62;;-1:-1:-1;36616:37:0;36633:5;12409:10;37364:164;:::i;36616:37::-;36569:168;;;;-1:-1:-1;;;36569:168:0;;10174:2:1;36569:168:0;;;10156:21:1;10213:2;10193:18;;;10186:30;10252:34;10232:18;;;10225:62;10323:26;10303:18;;;10296:54;10367:19;;36569:168:0;9972:420:1;36569:168:0;36750:21;36759:2;36763:7;36750:8;:21::i;:::-;36438:341;36368:411;;:::o;49232:309::-;49335:16;49377:25;49394:7;49377:16;:25::i;:::-;49369:55;;;;-1:-1:-1;;;49369:55:0;;;;;;;:::i;:::-;49460:16;;;49474:1;49460:16;;;;;;;;;49437:20;;49460:16;;;;;;;;;;;-1:-1:-1;;50259:7:0;50286:25;;;:16;:25;;;;;;49437:39;;-1:-1:-1;49487:3:0;49491:1;49487:6;;;;;;;;:::i;:::-;;;;;;;;;;:25;49530:3;49232:309;-1:-1:-1;;49232:309:0:o;51037:329::-;51141:4;-1:-1:-1;;;;;;51183:46:0;;-1:-1:-1;;;51183:46:0;;:112;;-1:-1:-1;;;;;;;51246:49:0;;-1:-1:-1;;;51246:49:0;51183:112;:175;;;-1:-1:-1;;;;;;;51312:46:0;;-1:-1:-1;;;51312:46:0;51163:195;51037:329;-1:-1:-1;;51037:329:0:o;37595:339::-;37790:41;12409:10;37809:12;37823:7;37790:18;:41::i;:::-;37782:103;;;;-1:-1:-1;;;37782:103:0;;;;;;;:::i;:::-;37898:28;37908:4;37914:2;37918:7;37898:9;:28::i;49640:266::-;49760:7;49769;49802:25;49819:7;49802:16;:25::i;:::-;49794:55;;;;-1:-1:-1;;;49794:55:0;;;;;;;:::i;:::-;49867:31;49883:7;49892:5;49867:15;:31::i;:::-;49860:38;;;;49640:266;;;;;:::o;52692:256::-;52789:7;52825:23;52842:5;52825:16;:23::i;:::-;52817:5;:31;52809:87;;;;-1:-1:-1;;;52809:87:0;;11495:2:1;52809:87:0;;;11477:21:1;11534:2;11514:18;;;11507:30;11573:34;11553:18;;;11546:62;-1:-1:-1;;;11624:18:1;;;11617:41;11675:19;;52809:87:0;11293:407:1;52809:87:0;-1:-1:-1;;;;;;52914:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;52692:256::o;38005:185::-;38143:39;38160:4;38166:2;38170:7;38143:39;;;;;;;;;;;;:16;:39::i;59068:245::-;59186:41;12409:10;59205:12;12329:98;59186:41;59178:102;;;;-1:-1:-1;;;59178:102:0;;11907:2:1;59178:102:0;;;11889:21:1;11946:2;11926:18;;;11919:30;11985:34;11965:18;;;11958:62;-1:-1:-1;;;12036:18:1;;;12029:46;12092:19;;59178:102:0;11705:412:1;59178:102:0;59291:14;59297:7;59291:5;:14::i;:::-;59068:245;:::o;53214:233::-;53289:7;53325:30;53112:10;:17;;53024:113;53325:30;53317:5;:38;53309:95;;;;-1:-1:-1;;;53309:95:0;;12324:2:1;53309:95:0;;;12306:21:1;12363:2;12343:18;;;12336:30;12402:34;12382:18;;;12375:62;-1:-1:-1;;;12453:18:1;;;12446:42;12505:19;;53309:95:0;12122:408:1;53309:95:0;53422:10;53433:5;53422:17;;;;;;;;:::i;:::-;;;;;;;;;53415:24;;53214:233;;;:::o;34980:239::-;35052:7;35088:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35088:16:0;35123:19;35115:73;;;;-1:-1:-1;;;35115:73:0;;12737:2:1;35115:73:0;;;12719:21:1;12776:2;12756:18;;;12749:30;12815:34;12795:18;;;12788:62;-1:-1:-1;;;12866:18:1;;;12859:39;12915:19;;35115:73:0;12535:405:1;34710:208:0;34782:7;-1:-1:-1;;;;;34810:19:0;;34802:74;;;;-1:-1:-1;;;34802:74:0;;13147:2:1;34802:74:0;;;13129:21:1;13186:2;13166:18;;;13159:30;13225:34;13205:18;;;13198:62;-1:-1:-1;;;13276:18:1;;;13269:40;13326:19;;34802:74:0;12945:406:1;34802:74:0;-1:-1:-1;;;;;;34894:16:0;;;;;:9;:16;;;;;;;34710:208::o;14256:103::-;13678:6;;-1:-1:-1;;;;;13678:6:0;12409:10;13825:23;13817:68;;;;-1:-1:-1;;;13817:68:0;;;;;;;:::i;:::-;14321:30:::1;14348:1;14321:18;:30::i;:::-;14256:103::o:0;35455:104::-;35511:13;35544:7;35537:14;;;;;:::i;37138:155::-;37233:52;12409:10;37266:8;37276;37233:18;:52::i;:::-;37138:155;;:::o;38261:328::-;38436:41;12409:10;38469:7;38436:18;:41::i;:::-;38428:103;;;;-1:-1:-1;;;38428:103:0;;;;;;;:::i;:::-;38542:39;38556:4;38562:2;38566:7;38575:5;38542:13;:39::i;:::-;38261:328;;;;:::o;48861:363::-;48971:24;49021:25;49038:7;49021:16;:25::i;:::-;49013:55;;;;-1:-1:-1;;;49013:55:0;;;;;;;:::i;:::-;49118:24;;;49140:1;49118:24;;;;;;;;;49081:34;;49118:24;;;;;;;;;;;-1:-1:-1;49118:24:0;49081:61;;49168:21;49181:7;49168:12;:21::i;:::-;49153:9;49163:1;49153:12;;;;;;;;:::i;:::-;-1:-1:-1;;;;;49153:36:0;;;:12;;;;;;;;;;;:36;49207:9;48861:363;-1:-1:-1;;48861:363:0:o;64571:196::-;64698:13;64736:23;64751:7;64736:14;:23::i;63645:111::-;63692:7;63719:25;:15;9025:14;;8933:114;63719:25;:29;;63747:1;63719:29;:::i;:::-;63712:36;;63645:111;:::o;48346:465::-;48447:24;48473:16;48515:25;48532:7;48515:16;:25::i;:::-;48507:55;;;;-1:-1:-1;;;48507:55:0;;;;;;;:::i;:::-;48612:24;;;48634:1;48612:24;;;;;;;;;48575:34;;48612:24;;;;;;;;;-1:-1:-1;;48670:16:0;;;48684:1;48670:16;;;;;;;;;48575:61;;-1:-1:-1;48647:20:0;;48670:16;-1:-1:-1;48670:16:0;;;;;;;;;;;-1:-1:-1;48670:16:0;48647:39;;48712:21;48725:7;48712:12;:21::i;:::-;48697:9;48707:1;48697:12;;;;;;;;:::i;:::-;-1:-1:-1;;;;;48697:36:0;;;:12;;;;;;;;;;:36;50259:7;50286:25;;;:16;:25;;;;;;;48744:3;48748:1;48744:6;;;;;;;;:::i;:::-;;;;;;;;;;:25;48788:9;;48799:3;;-1:-1:-1;48346:465:0;-1:-1:-1;;48346:465:0:o;63094:543::-;13678:6;;-1:-1:-1;;;;;13678:6:0;12409:10;13825:23;13817:68;;;;-1:-1:-1;;;13817:68:0;;;;;;;:::i;:::-;63295:5:::1;63281:11;:19;63273:70;;;::::0;-1:-1:-1;;;63273:70:0;;14184:2:1;63273:70:0::1;::::0;::::1;14166:21:1::0;14223:2;14203:18;;;14196:30;14262:34;14242:18;;;14235:62;-1:-1:-1;;;14313:18:1;;;14306:36;14359:19;;63273:70:0::1;13982:402:1::0;63273:70:0::1;63354:15;63372:16;:14;:16::i;:::-;63354:34;;63431:15;;63421:7;:25;63399:117;;;::::0;-1:-1:-1;;;63399:117:0;;14591:2:1;63399:117:0::1;::::0;::::1;14573:21:1::0;14630:2;14610:18;;;14603:30;14669:34;14649:18;;;14642:62;-1:-1:-1;;;14720:18:1;;;14713:40;14770:19;;63399:117:0::1;14389:406:1::0;63399:117:0::1;63529:62;63545:2;63549:7;63558:9;63569:8;63579:11;63529:15;:62::i;:::-;63602:27;:15;9144:19:::0;;9162:1;9144:19;;;9055:127;63602:27:::1;63262:375;63094:543:::0;;;;:::o;14514:201::-;13678:6;;-1:-1:-1;;;;;13678:6:0;12409:10;13825:23;13817:68;;;;-1:-1:-1;;;13817:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14603:22:0;::::1;14595:73;;;::::0;-1:-1:-1;;;14595:73:0;;15002:2:1;14595:73:0::1;::::0;::::1;14984:21:1::0;15041:2;15021:18;;;15014:30;15080:34;15060:18;;;15053:62;-1:-1:-1;;;15131:18:1;;;15124:36;15177:19;;14595:73:0::1;14800:402:1::0;14595:73:0::1;14679:28;14698:8;14679:18;:28::i;52384:224::-:0;52486:4;-1:-1:-1;;;;;;52510:50:0;;-1:-1:-1;;;52510:50:0;;:90;;;52564:36;52588:11;52564:23;:36::i;40099:127::-;40164:4;40188:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40188:16:0;:30;;;40099:127::o;44081:174::-;44156:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;44156:29:0;-1:-1:-1;;;;;44156:29:0;;;;;;;;:24;;44210:23;44156:24;44210:14;:23::i;:::-;-1:-1:-1;;;;;44201:46:0;;;;;;;;;;;44081:174;;:::o;64775:198::-;64914:4;64943:22;64957:7;64943:13;:22::i;40393:348::-;40486:4;40511:16;40519:7;40511;:16::i;:::-;40503:73;;;;-1:-1:-1;;;40503:73:0;;15409:2:1;40503:73:0;;;15391:21:1;15448:2;15428:18;;;15421:30;15487:34;15467:18;;;15460:62;-1:-1:-1;;;15538:18:1;;;15531:42;15590:19;;40503:73:0;15207:408:1;40503:73:0;40587:13;40603:23;40618:7;40603:14;:23::i;:::-;40587:39;;40656:5;-1:-1:-1;;;;;40645:16:0;:7;-1:-1:-1;;;;;40645:16:0;;:51;;;;40689:7;-1:-1:-1;;;;;40665:31:0;:20;40677:7;40665:11;:20::i;:::-;-1:-1:-1;;;;;40665:31:0;;40645:51;:87;;;-1:-1:-1;;;;;;37485:25:0;;;37461:4;37485:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;40700:32;40637:96;40393:348;-1:-1:-1;;;;40393:348:0:o;43385:578::-;43544:4;-1:-1:-1;;;;;43517:31:0;:23;43532:7;43517:14;:23::i;:::-;-1:-1:-1;;;;;43517:31:0;;43509:85;;;;-1:-1:-1;;;43509:85:0;;15822:2:1;43509:85:0;;;15804:21:1;15861:2;15841:18;;;15834:30;15900:34;15880:18;;;15873:62;-1:-1:-1;;;15951:18:1;;;15944:39;16000:19;;43509:85:0;15620:405:1;43509:85:0;-1:-1:-1;;;;;43613:16:0;;43605:65;;;;-1:-1:-1;;;43605:65:0;;16232:2:1;43605:65:0;;;16214:21:1;16271:2;16251:18;;;16244:30;16310:34;16290:18;;;16283:62;-1:-1:-1;;;16361:18:1;;;16354:34;16405:19;;43605:65:0;16030:400:1;43605:65:0;43683:39;43704:4;43710:2;43714:7;43683:20;:39::i;:::-;43787:29;43804:1;43808:7;43787:8;:29::i;:::-;-1:-1:-1;;;;;43829:15:0;;;;;;:9;:15;;;;;:20;;43848:1;;43829:15;:20;;43848:1;;43829:20;:::i;:::-;;;;-1:-1:-1;;;;;;;43860:13:0;;;;;;:9;:13;;;;;:18;;43877:1;;43860:13;:18;;43877:1;;43860:18;:::i;:::-;;;;-1:-1:-1;;43889:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;43889:21:0;-1:-1:-1;;;;;43889:21:0;;;;;;;;;43928:27;;43889:16;;43928:27;;;;;;;43385:578;;;:::o;49914:280::-;50021:16;50039:14;50071:17;50091:21;50104:7;50091:12;:21::i;:::-;50143:25;;;;:16;:25;;;;;;50071:41;;-1:-1:-1;50071:41:0;;50180:5;;50143:33;;50171:5;;50143:33;:::i;:::-;50142:43;;;;:::i;:::-;50123:63;;;;;49914:280;;;;;:::o;64425:138::-;64535:20;64547:7;64535:11;:20::i;14875:191::-;14968:6;;;-1:-1:-1;;;;;14985:17:0;;;-1:-1:-1;;;;;;14985:17:0;;;;;;;15018:40;;14968:6;;;14985:17;14968:6;;15018:40;;14949:16;;15018:40;14938:128;14875:191;:::o;44397:315::-;44552:8;-1:-1:-1;;;;;44543:17:0;:5;-1:-1:-1;;;;;44543:17:0;;;44535:55;;;;-1:-1:-1;;;44535:55:0;;17197:2:1;44535:55:0;;;17179:21:1;17236:2;17216:18;;;17209:30;17275:27;17255:18;;;17248:55;17320:18;;44535:55:0;16995:349:1;44535:55:0;-1:-1:-1;;;;;44601:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;44601:46:0;;;;;;;;;;44663:41;;540::1;;;44663::0;;513:18:1;44663:41:0;;;;;;;44397:315;;;:::o;39471:::-;39628:28;39638:4;39644:2;39648:7;39628:9;:28::i;:::-;39675:48;39698:4;39704:2;39708:7;39717:5;39675:22;:48::i;:::-;39667:111;;;;-1:-1:-1;;;39667:111:0;;;;;;;:::i;50327:579::-;50416:15;50286:25;;;:16;:25;;;;;;;;;50517:21;:30;;;;;;-1:-1:-1;;;;;50517:30:0;50562:8;;;:34;;-1:-1:-1;;;;;;50574:22:0;;;50562:34;50558:313;;;50837:21;:19;:21::i;50558:313::-;50890:8;50327:579;-1:-1:-1;;;50327:579:0:o;59831:679::-;59904:13;59938:16;59946:7;59938;:16::i;:::-;59930:78;;;;-1:-1:-1;;;59930:78:0;;17970:2:1;59930:78:0;;;17952:21:1;18009:2;17989:18;;;17982:30;18048:34;18028:18;;;18021:62;-1:-1:-1;;;18099:18:1;;;18092:47;18156:19;;59930:78:0;17768:413:1;59930:78:0;60021:23;60047:19;;;:10;:19;;;;;60021:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60077:18;60098:10;36289:9;;;;;;;;;-1:-1:-1;36289:9:0;;;36212:94;60098:10;60077:31;;60190:4;60184:18;60206:1;60184:23;60180:72;;;-1:-1:-1;60231:9:0;59831:679;-1:-1:-1;;59831:679:0:o;60180:72::-;60356:23;;:27;60352:108;;60431:4;60437:9;60414:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60400:48;;;;59831:679;;;:::o;60352:108::-;60479:23;60494:7;60479:14;:23::i;63764:430::-;63962:22;63972:2;63976:7;63962:9;:22::i;:::-;63995:32;64008:7;64017:9;63995:12;:32::i;:::-;64042:15;;64038:93;;64074:45;64088:7;64097:8;64107:11;64074:13;:45::i;:::-;64178:7;64146:40;64159:17;64168:7;64159:8;:17::i;:::-;64146:40;;;;;;:::i;:::-;;;;;;;;63764:430;;;;;:::o;34341:305::-;34443:4;-1:-1:-1;;;;;;34480:40:0;;-1:-1:-1;;;34480:40:0;;:105;;-1:-1:-1;;;;;;;34537:48:0;;-1:-1:-1;;;34537:48:0;34480:105;:158;;;-1:-1:-1;;;;;;;;;;26146:40:0;;;34602:36;26037:157;64202:215;64364:45;64391:4;64397:2;64401:7;64364:26;:45::i;61112:206::-;61181:20;61193:7;61181:11;:20::i;:::-;61224:19;;;;:10;:19;;;;;61218:33;;;;;:::i;:::-;:38;;-1:-1:-1;61214:97:0;;61280:19;;;;:10;:19;;;;;61273:26;;;:::i;45277:799::-;45432:4;-1:-1:-1;;;;;45453:13:0;;16216:20;16264:8;45449:620;;45489:72;;-1:-1:-1;;;45489:72:0;;-1:-1:-1;;;;;45489:36:0;;;;;:72;;12409:10;;45540:4;;45546:7;;45555:5;;45489:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45489:72:0;;;;;;;;-1:-1:-1;;45489:72:0;;;;;;;;;;;;:::i;:::-;;;45485:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45731:13:0;;45727:272;;45774:60;;-1:-1:-1;;;45774:60:0;;;;;;;:::i;45727:272::-;45949:6;45943:13;45934:6;45930:2;45926:15;45919:38;45485:529;-1:-1:-1;;;;;;45612:51:0;-1:-1:-1;;;45612:51:0;;-1:-1:-1;45605:58:0;;45449:620;-1:-1:-1;46053:4:0;45277:799;;;;;;:::o;64981:163::-;65080:15;65128:7;13678:6;;-1:-1:-1;;;;;13678:6:0;;13605:87;35630:334;35703:13;35737:16;35745:7;35737;:16::i;:::-;35729:76;;;;-1:-1:-1;;;35729:76:0;;19611:2:1;35729:76:0;;;19593:21:1;19650:2;19630:18;;;19623:30;19689:34;19669:18;;;19662:62;-1:-1:-1;;;19740:18:1;;;19733:45;19795:19;;35729:76:0;19409:411:1;35729:76:0;35818:21;35842:10;36289:9;;;;;;;;;-1:-1:-1;36289:9:0;;;36212:94;35842:10;35818:34;;35894:1;35876:7;35870:21;:25;:86;;;;;;;;;;;;;;;;;35922:7;35931:18;:7;:16;:18::i;:::-;35905:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35863:93;35630:334;-1:-1:-1;;;35630:334:0:o;41083:110::-;41159:26;41169:2;41173:7;41159:26;;;;;;;;;;;;:9;:26::i;60666:217::-;60766:16;60774:7;60766;:16::i;:::-;60758:75;;;;-1:-1:-1;;;60758:75:0;;20027:2:1;60758:75:0;;;20009:21:1;20066:2;20046:18;;;20039:30;20105:34;20085:18;;;20078:62;-1:-1:-1;;;20156:18:1;;;20149:44;20210:19;;60758:75:0;19825:410:1;60758:75:0;60844:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;47949:275::-;48112:1;48098:11;:15;48090:24;;;;;;48125:30;;;;:21;:30;;;;;;;;:41;;-1:-1:-1;;;;;;48125:41:0;-1:-1:-1;;;;;48125:41:0;;;;;;;;;;;48177:16;:25;;;;:39;47949:275::o;54060:589::-;-1:-1:-1;;;;;54266:18:0;;54262:187;;54301:40;54333:7;55476:10;:17;;55449:24;;;;:15;:24;;;;;:44;;;55504:24;;;;;;;;;;;;55372:164;54301:40;54262:187;;;54371:2;-1:-1:-1;;;;;54363:10:0;:4;-1:-1:-1;;;;;54363:10:0;;54359:90;;54390:47;54423:4;54429:7;54390:32;:47::i;:::-;-1:-1:-1;;;;;54463:16:0;;54459:183;;54496:45;54533:7;54496:36;:45::i;54459:183::-;54569:4;-1:-1:-1;;;;;54563:10:0;:2;-1:-1:-1;;;;;54563:10:0;;54559:83;;54590:40;54618:2;54622:7;54590:27;:40::i;42688:360::-;42748:13;42764:23;42779:7;42764:14;:23::i;:::-;42748:39;;42800:48;42821:5;42836:1;42840:7;42800:20;:48::i;:::-;42889:29;42906:1;42910:7;42889:8;:29::i;:::-;-1:-1:-1;;;;;42931:16:0;;;;;;:9;:16;;;;;:21;;42951:1;;42931:16;:21;;42951:1;;42931:21;:::i;:::-;;;;-1:-1:-1;;42970:16:0;;;;:7;:16;;;;;;42963:23;;-1:-1:-1;;;;;;42963:23:0;;;43004:36;42978:7;;42970:16;-1:-1:-1;;;;;43004:36:0;;;;;42970:16;;43004:36;42737:311;42688:360;:::o;9891:723::-;9947:13;10168:10;10164:53;;-1:-1:-1;;10195:10:0;;;;;;;;;;;;-1:-1:-1;;;10195:10:0;;;;;9891:723::o;10164:53::-;10242:5;10227:12;10283:78;10290:9;;10283:78;;10316:8;;;;:::i;:::-;;-1:-1:-1;10339:10:0;;-1:-1:-1;10347:2:0;10339:10;;:::i;:::-;;;10283:78;;;10371:19;10403:6;10393:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10393:17:0;;10371:39;;10421:154;10428:10;;10421:154;;10455:11;10465:1;10455:11;;:::i;:::-;;-1:-1:-1;10524:10:0;10532:2;10524:5;:10;:::i;:::-;10511:24;;:2;:24;:::i;:::-;10498:39;;10481:6;10488;10481:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;10481:56:0;;;;;;;;-1:-1:-1;10552:11:0;10561:2;10552:11;;:::i;:::-;;;10421:154;;41420:321;41550:18;41556:2;41560:7;41550:5;:18::i;:::-;41601:54;41632:1;41636:2;41640:7;41649:5;41601:22;:54::i;:::-;41579:154;;;;-1:-1:-1;;;41579:154:0;;;;;;;:::i;56163:988::-;56429:22;56479:1;56454:22;56471:4;56454:16;:22::i;:::-;:26;;;;:::i;:::-;56491:18;56512:26;;;:17;:26;;;;;;56429:51;;-1:-1:-1;56645:28:0;;;56641:328;;-1:-1:-1;;;;;56712:18:0;;56690:19;56712:18;;;:12;:18;;;;;;;;:34;;;;;;;;;56763:30;;;;;;:44;;;56880:30;;:17;:30;;;;;:43;;;56641:328;-1:-1:-1;57065:26:0;;;;:17;:26;;;;;;;;57058:33;;;-1:-1:-1;;;;;57109:18:0;;;;;:12;:18;;;;;:34;;;;;;;57102:41;56163:988::o;57446:1079::-;57724:10;:17;57699:22;;57724:21;;57744:1;;57724:21;:::i;:::-;57756:18;57777:24;;;:15;:24;;;;;;58150:10;:26;;57699:46;;-1:-1:-1;57777:24:0;;57699:46;;58150:26;;;;;;:::i;:::-;;;;;;;;;58128:48;;58214:11;58189:10;58200;58189:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;58294:28;;;:15;:28;;;;;;;:41;;;58466:24;;;;;58459:31;58501:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;57517:1008;;;57446:1079;:::o;54950:221::-;55035:14;55052:20;55069:2;55052:16;:20::i;:::-;-1:-1:-1;;;;;55083:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;55128:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;54950:221:0:o;42077:382::-;-1:-1:-1;;;;;42157:16:0;;42149:61;;;;-1:-1:-1;;;42149:61:0;;20831:2:1;42149:61:0;;;20813:21:1;;;20850:18;;;20843:30;20909:34;20889:18;;;20882:62;20961:18;;42149:61:0;20629:356:1;42149:61:0;42230:16;42238:7;42230;:16::i;:::-;42229:17;42221:58;;;;-1:-1:-1;;;42221:58:0;;21192:2:1;42221:58:0;;;21174:21:1;21231:2;21211:18;;;21204:30;21270;21250:18;;;21243:58;21318:18;;42221:58:0;20990:352:1;42221:58:0;42292:45;42321:1;42325:2;42329:7;42292:20;:45::i;:::-;-1:-1:-1;;;;;42350:13:0;;;;;;:9;:13;;;;;:18;;42367:1;;42350:13;:18;;42367:1;;42350:18;:::i;:::-;;;;-1:-1:-1;;42379:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42379:21:0;-1:-1:-1;;;;;42379:21:0;;;;;;;;42418:33;;42379:16;;;42418:33;;42379:16;;42418:33;42077:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:131::-;-1:-1:-1;;;;;1811:31:1;;1801:42;;1791:70;;1857:1;1854;1847:12;1872:315;1940:6;1948;2001:2;1989:9;1980:7;1976:23;1972:32;1969:52;;;2017:1;2014;2007:12;1969:52;2056:9;2043:23;2075:31;2100:5;2075:31;:::i;:::-;2125:5;2177:2;2162:18;;;;2149:32;;-1:-1:-1;;;1872:315:1:o;2192:435::-;2245:3;2283:5;2277:12;2310:6;2305:3;2298:19;2336:4;2365:2;2360:3;2356:12;2349:19;;2402:2;2395:5;2391:14;2423:1;2433:169;2447:6;2444:1;2441:13;2433:169;;;2508:13;;2496:26;;2542:12;;;;2577:15;;;;2469:1;2462:9;2433:169;;;-1:-1:-1;2618:3:1;;2192:435;-1:-1:-1;;;;;2192:435:1:o;2632:261::-;2811:2;2800:9;2793:21;2774:4;2831:56;2883:2;2872:9;2868:18;2860:6;2831:56;:::i;3080:456::-;3157:6;3165;3173;3226:2;3214:9;3205:7;3201:23;3197:32;3194:52;;;3242:1;3239;3232:12;3194:52;3281:9;3268:23;3300:31;3325:5;3300:31;:::i;:::-;3350:5;-1:-1:-1;3407:2:1;3392:18;;3379:32;3420:33;3379:32;3420:33;:::i;:::-;3080:456;;3472:7;;-1:-1:-1;;;3526:2:1;3511:18;;;;3498:32;;3080:456::o;3541:248::-;3609:6;3617;3670:2;3658:9;3649:7;3645:23;3641:32;3638:52;;;3686:1;3683;3676:12;3638:52;-1:-1:-1;;3709:23:1;;;3779:2;3764:18;;;3751:32;;-1:-1:-1;3541:248:1:o;4073:247::-;4132:6;4185:2;4173:9;4164:7;4160:23;4156:32;4153:52;;;4201:1;4198;4191:12;4153:52;4240:9;4227:23;4259:31;4284:5;4259:31;:::i;4325:416::-;4390:6;4398;4451:2;4439:9;4430:7;4426:23;4422:32;4419:52;;;4467:1;4464;4457:12;4419:52;4506:9;4493:23;4525:31;4550:5;4525:31;:::i;:::-;4575:5;-1:-1:-1;4632:2:1;4617:18;;4604:32;4674:15;;4667:23;4655:36;;4645:64;;4705:1;4702;4695:12;4645:64;4728:7;4718:17;;;4325:416;;;;;:::o;4746:127::-;4807:10;4802:3;4798:20;4795:1;4788:31;4838:4;4835:1;4828:15;4862:4;4859:1;4852:15;4878:631;4942:5;4972:18;5013:2;5005:6;5002:14;4999:40;;;5019:18;;:::i;:::-;5094:2;5088:9;5062:2;5148:15;;-1:-1:-1;;5144:24:1;;;5170:2;5140:33;5136:42;5124:55;;;5194:18;;;5214:22;;;5191:46;5188:72;;;5240:18;;:::i;:::-;5280:10;5276:2;5269:22;5309:6;5300:15;;5339:6;5331;5324:22;5379:3;5370:6;5365:3;5361:16;5358:25;5355:45;;;5396:1;5393;5386:12;5355:45;5446:6;5441:3;5434:4;5426:6;5422:17;5409:44;5501:1;5494:4;5485:6;5477;5473:19;5469:30;5462:41;;;;4878:631;;;;;:::o;5514:794::-;5609:6;5617;5625;5633;5686:3;5674:9;5665:7;5661:23;5657:33;5654:53;;;5703:1;5700;5693:12;5654:53;5742:9;5729:23;5761:31;5786:5;5761:31;:::i;:::-;5811:5;-1:-1:-1;5868:2:1;5853:18;;5840:32;5881:33;5840:32;5881:33;:::i;:::-;5933:7;-1:-1:-1;5987:2:1;5972:18;;5959:32;;-1:-1:-1;6042:2:1;6027:18;;6014:32;6069:18;6058:30;;6055:50;;;6101:1;6098;6091:12;6055:50;6124:22;;6177:4;6169:13;;6165:27;-1:-1:-1;6155:55:1;;6206:1;6203;6196:12;6155:55;6229:73;6294:7;6289:2;6276:16;6271:2;6267;6263:11;6229:73;:::i;:::-;6219:83;;;5514:794;;;;;;;:::o;6313:469::-;6374:3;6412:5;6406:12;6439:6;6434:3;6427:19;6465:4;6494:2;6489:3;6485:12;6478:19;;6531:2;6524:5;6520:14;6552:1;6562:195;6576:6;6573:1;6570:13;6562:195;;;6641:13;;-1:-1:-1;;;;;6637:39:1;6625:52;;6697:12;;;;6732:15;;;;6673:1;6591:9;6562:195;;6787:285;6982:2;6971:9;6964:21;6945:4;7002:64;7062:2;7051:9;7047:18;7039:6;7002:64;:::i;7077:489::-;7350:2;7339:9;7332:21;7313:4;7376:64;7436:2;7425:9;7421:18;7413:6;7376:64;:::i;:::-;7488:9;7480:6;7476:22;7471:2;7460:9;7456:18;7449:50;7516:44;7553:6;7545;7516:44;:::i;:::-;7508:52;7077:489;-1:-1:-1;;;;;7077:489:1:o;7571:803::-;7675:6;7683;7691;7699;7752:3;7740:9;7731:7;7727:23;7723:33;7720:53;;;7769:1;7766;7759:12;7720:53;7808:9;7795:23;7827:31;7852:5;7827:31;:::i;:::-;7877:5;-1:-1:-1;7933:2:1;7918:18;;7905:32;7960:18;7949:30;;7946:50;;;7992:1;7989;7982:12;7946:50;8015:22;;8068:4;8060:13;;8056:27;-1:-1:-1;8046:55:1;;8097:1;8094;8087:12;8046:55;8120:73;8185:7;8180:2;8167:16;8162:2;8158;8154:11;8120:73;:::i;:::-;8110:83;;;8245:2;8234:9;8230:18;8217:32;8258:33;8283:7;8258:33;:::i;:::-;7571:803;;;;-1:-1:-1;8310:7:1;;8364:2;8349:18;8336:32;;-1:-1:-1;;7571:803:1:o;8379:388::-;8447:6;8455;8508:2;8496:9;8487:7;8483:23;8479:32;8476:52;;;8524:1;8521;8514:12;8476:52;8563:9;8550:23;8582:31;8607:5;8582:31;:::i;:::-;8632:5;-1:-1:-1;8689:2:1;8674:18;;8661:32;8702:33;8661:32;8702:33;:::i;8772:380::-;8851:1;8847:12;;;;8894;;;8915:61;;8969:4;8961:6;8957:17;8947:27;;8915:61;9022:2;9014:6;9011:14;8991:18;8988:38;8985:161;;;9068:10;9063:3;9059:20;9056:1;9049:31;9103:4;9100:1;9093:15;9131:4;9128:1;9121:15;8985:161;;8772:380;;;:::o;10397:341::-;10599:2;10581:21;;;10638:2;10618:18;;;10611:30;-1:-1:-1;;;10672:2:1;10657:18;;10650:47;10729:2;10714:18;;10397:341::o;10743:127::-;10804:10;10799:3;10795:20;10792:1;10785:31;10835:4;10832:1;10825:15;10859:4;10856:1;10849:15;10875:413;11077:2;11059:21;;;11116:2;11096:18;;;11089:30;11155:34;11150:2;11135:18;;11128:62;-1:-1:-1;;;11221:2:1;11206:18;;11199:47;11278:3;11263:19;;10875:413::o;13356:356::-;13558:2;13540:21;;;13577:18;;;13570:30;13636:34;13631:2;13616:18;;13609:62;13703:2;13688:18;;13356:356::o;13717:127::-;13778:10;13773:3;13769:20;13766:1;13759:31;13809:4;13806:1;13799:15;13833:4;13830:1;13823:15;13849:128;13889:3;13920:1;13916:6;13913:1;13910:13;13907:39;;;13926:18;;:::i;:::-;-1:-1:-1;13962:9:1;;13849:128::o;16435:125::-;16475:4;16503:1;16500;16497:8;16494:34;;;16508:18;;:::i;:::-;-1:-1:-1;16545:9:1;;16435:125::o;16565:168::-;16605:7;16671:1;16667;16663:6;16659:14;16656:1;16653:21;16648:1;16641:9;16634:17;16630:45;16627:71;;;16678:18;;:::i;:::-;-1:-1:-1;16718:9:1;;16565:168::o;16738:127::-;16799:10;16794:3;16790:20;16787:1;16780:31;16830:4;16827:1;16820:15;16854:4;16851:1;16844:15;16870:120;16910:1;16936;16926:35;;16941:18;;:::i;:::-;-1:-1:-1;16975:9:1;;16870:120::o;17349:414::-;17551:2;17533:21;;;17590:2;17570:18;;;17563:30;17629:34;17624:2;17609:18;;17602:62;-1:-1:-1;;;17695:2:1;17680:18;;17673:48;17753:3;17738:19;;17349:414::o;18186:470::-;18365:3;18403:6;18397:13;18419:53;18465:6;18460:3;18453:4;18445:6;18441:17;18419:53;:::i;:::-;18535:13;;18494:16;;;;18557:57;18535:13;18494:16;18591:4;18579:17;;18557:57;:::i;:::-;18630:20;;18186:470;-1:-1:-1;;;;18186:470:1:o;18661:489::-;-1:-1:-1;;;;;18930:15:1;;;18912:34;;18982:15;;18977:2;18962:18;;18955:43;19029:2;19014:18;;19007:34;;;19077:3;19072:2;19057:18;;19050:31;;;18855:4;;19098:46;;19124:19;;19116:6;19098:46;:::i;:::-;19090:54;18661:489;-1:-1:-1;;;;;;18661:489:1:o;19155:249::-;19224:6;19277:2;19265:9;19256:7;19252:23;19248:32;19245:52;;;19293:1;19290;19283:12;19245:52;19325:9;19319:16;19344:30;19368:5;19344:30;:::i;20240:135::-;20279:3;-1:-1:-1;;20300:17:1;;20297:43;;;20320:18;;:::i;:::-;-1:-1:-1;20367:1:1;20356:13;;20240:135::o;20380:112::-;20412:1;20438;20428:35;;20443:18;;:::i;:::-;-1:-1:-1;20477:9:1;;20380:112::o;20497:127::-;20558:10;20553:3;20549:20;20546:1;20539:31;20589:4;20586:1;20579:15;20613:4;20610:1;20603:15

Swarm Source

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