ETH Price: $3,442.05 (-1.03%)
Gas: 4 Gwei

Token

SteezyGenesis ($TEEZ)
 

Overview

Max Total Supply

0 $TEEZ

Holders

198

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
gemmabear.eth
Balance
1 $TEEZ
0xdf8df10c7c4114de4eb5632e4d7107aea3abd9d0
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:
SteezyGenesis

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-28
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// 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 (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

// 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 (last updated v4.6.0) (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 overridden 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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// 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: contracts/SteezyGenesis.sol

pragma solidity ^0.8.7;

contract SteezyGenesis is ERC721Burnable, Ownable {
    uint256 public price = 0.2 ether;
    bytes32 public freemintRoot = 0x0;
    bytes32 public whitelistRoot = 0x0;
    uint16 public constant MAX_SUPPLY = 444;
    uint16 public counter = 0;
    mapping(address => bool) public addressToFreemint;
    mapping(address => bool) public addressToWhitelist;

    using Strings for uint256;
    string private baseURI;
    uint8 public saleState = 0; // 0 = paused, 1 = freemint, 2 = whitelist

    constructor() ERC721("SteezyGenesis", "$TEEZ") {
        baseURI = "http://mintsteezy.xyz/metadata/";
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        return
            bytes(baseURI).length > 0
                ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json"))
                : "";
    }

    function setBaseURI(string memory uri) external onlyOwner {
        baseURI = uri;
    }

    function setPrice(uint256 newPrice) external onlyOwner {
        require(newPrice > 0, "Price cannot be 0");
        price = newPrice;
    }

    function changeSaleState(uint8 state) external onlyOwner {
        saleState = state;
    }

    function setFreemintRoot(bytes32 root) external onlyOwner {
        freemintRoot = root;
    }

    function setWhitelistRoot(bytes32 root) external onlyOwner {
        whitelistRoot = root;
    }

    function reserveTokens(uint16 amount) external onlyOwner {
        require(amount + counter <= MAX_SUPPLY, "Maximum tokens minted");
        for (uint256 i = 0; i < amount; i++) {
            _safeMint(owner(), ++counter);
        }
    }

    function freeMint(bytes32[] calldata proof, uint8 amount) external {
        require(saleState == 1, "Freeclaim is closed");
        require(counter + amount <= MAX_SUPPLY - 1, "Maximum tokens minted");
        require(!addressToFreemint[msg.sender], "Wallet has claimed already");
        bytes32 node = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(proof, freemintRoot, node), "Address is not available for minting");

        addressToFreemint[msg.sender] = true;
        for (uint i = 0; i < amount; i++) {
            _safeMint(msg.sender, ++counter);
        }
    }

    function mint(bytes32[] calldata proof, uint8 amount) external payable {
        require(!addressToWhitelist[msg.sender], "Wallet has minted already");
        require(saleState == 2, "Whitelist currently not minting");
        require(counter + amount <= MAX_SUPPLY - 1, "Maximum tokens minted");
        require(msg.value == price * amount, "Incorrent eth sent");
        bytes32 node = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(proof, whitelistRoot, node), "Address is not available for minting");

        addressToWhitelist[msg.sender] = true;
        for (uint i = 0; i < amount; i++) {
            _safeMint(msg.sender, ++counter);
        }
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        address acct = 0x6569E6B8B90A2d9290Ea07Fe98E24aE393C71783;
        payable(acct).transfer(balance);
    }

    function burn(uint256 tokenId) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721Burnable: caller is not owner nor approved"
        );
        _burn(tokenId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressToFreemint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressToWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"state","type":"uint8"}],"name":"changeSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"counter","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freemintRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"amount","type":"uint16"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setFreemintRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setWhitelistRoot","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526702c68af0bb14000060075560006008819055600955600a805461ffff19169055600e805460ff191690553480156200003c57600080fd5b50604080518082018252600d81526c537465657a7947656e6573697360981b602080830191825283518085019094526005845264122a22a2ad60d91b9084015281519192916200008f9160009162000165565b508051620000a590600190602084019062000165565b505050620000c2620000bc6200010f60201b60201c565b62000113565b60408051808201909152601f8082527f687474703a2f2f6d696e74737465657a792e78797a2f6d657461646174612f0060209092019182526200010891600d9162000165565b5062000248565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000173906200020b565b90600052602060002090601f016020900481019282620001975760008555620001e2565b82601f10620001b257805160ff1916838001178555620001e2565b82800160010185558215620001e2579182015b82811115620001e2578251825591602001919060010190620001c5565b50620001f0929150620001f4565b5090565b5b80821115620001f05760008155600101620001f5565b600181811c908216806200022057607f821691505b602082108114156200024257634e487b7160e01b600052602260045260246000fd5b50919050565b6124cf80620002586000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063b003c2b8116100a0578063e985e9c51161006f578063e985e9c5146105af578063f2fde38b146105f8578063f5aa406d14610618578063f8226e8814610638578063f98050a71461065857600080fd5b8063b003c2b81461051f578063b88d4fde1461054f578063bcc51ed01461056f578063c87b56dd1461058f57600080fd5b806391b7f5ed116100dc57806391b7f5ed146104b457806395d89b41146104d4578063a035b1fe146104e9578063a22cb465146104ff57600080fd5b806370a0823114610441578063715018a61461046157806376cc269f146104765780638da5cb5b1461049657600080fd5b80633ccfd60b1161019057806355f804b31161015f57806355f804b3146103a4578063603f4d52146103c457806361bc221a146103f05780636352211e1461040b5780636f752c611461042b57600080fd5b80633ccfd60b1461033c5780633eee5eb81461035157806342842e0e1461036457806342966c681461038457600080fd5b806323b872dd116101cc57806323b872dd146102af5780633132c0df146102cf57806332cb6b0c146102ef578063386bfc981461031857600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611f68565b610688565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b506102486106da565b60405161022a919061216a565b34801561026157600080fd5b50610275610270366004611f4f565b61076c565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611ea1565b610806565b005b3480156102bb57600080fd5b506102ad6102ca366004611dad565b61091c565b3480156102db57600080fd5b506102ad6102ea366004611f4f565b61094e565b3480156102fb57600080fd5b506103056101bc81565b60405161ffff909116815260200161022a565b34801561032457600080fd5b5061032e60095481565b60405190815260200161022a565b34801561034857600080fd5b506102ad61097d565b6102ad61035f366004611ecb565b6109ec565b34801561037057600080fd5b506102ad61037f366004611dad565b610c4e565b34801561039057600080fd5b506102ad61039f366004611f4f565b610c69565b3480156103b057600080fd5b506102ad6103bf366004611fa2565b610ce3565b3480156103d057600080fd5b50600e546103de9060ff1681565b60405160ff909116815260200161022a565b3480156103fc57600080fd5b50600a546103059061ffff1681565b34801561041757600080fd5b50610275610426366004611f4f565b610d24565b34801561043757600080fd5b5061032e60085481565b34801561044d57600080fd5b5061032e61045c366004611d58565b610d9b565b34801561046d57600080fd5b506102ad610e22565b34801561048257600080fd5b506102ad61049136600461200f565b610e58565b3480156104a257600080fd5b506006546001600160a01b0316610275565b3480156104c057600080fd5b506102ad6104cf366004611f4f565b610e98565b3480156104e057600080fd5b50610248610f0b565b3480156104f557600080fd5b5061032e60075481565b34801561050b57600080fd5b506102ad61051a366004611e65565b610f1a565b34801561052b57600080fd5b5061021e61053a366004611d58565b600b6020526000908152604090205460ff1681565b34801561055b57600080fd5b506102ad61056a366004611de9565b610f25565b34801561057b57600080fd5b506102ad61058a366004611feb565b610f5d565b34801561059b57600080fd5b506102486105aa366004611f4f565b611008565b3480156105bb57600080fd5b5061021e6105ca366004611d7a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561060457600080fd5b506102ad610613366004611d58565b611066565b34801561062457600080fd5b506102ad610633366004611f4f565b6110fe565b34801561064457600080fd5b506102ad610653366004611ecb565b61112d565b34801561066457600080fd5b5061021e610673366004611d58565b600c6020526000908152604090205460ff1681565b60006001600160e01b031982166380ac58cd60e01b14806106b957506001600160e01b03198216635b5e139f60e01b145b806106d457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106e99061239f565b80601f01602080910402602001604051908101604052809291908181526020018280546107159061239f565b80156107625780601f1061073757610100808354040283529160200191610762565b820191906000526020600020905b81548152906001019060200180831161074557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107ea5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061081182610d24565b9050806001600160a01b0316836001600160a01b0316141561087f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107e1565b336001600160a01b038216148061089b575061089b81336105ca565b61090d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107e1565b6109178383611308565b505050565b610927335b82611376565b6109435760405162461bcd60e51b81526004016107e190612277565b61091783838361146d565b6006546001600160a01b031633146109785760405162461bcd60e51b81526004016107e190612242565b600855565b6006546001600160a01b031633146109a75760405162461bcd60e51b81526004016107e190612242565b6040514790736569e6b8b90a2d9290ea07fe98e24ae393c7178390819083156108fc029084906000818181858888f19350505050158015610917573d6000803e3d6000fd5b336000908152600c602052604090205460ff1615610a4c5760405162461bcd60e51b815260206004820152601960248201527f57616c6c657420686173206d696e74656420616c72656164790000000000000060448201526064016107e1565b600e5460ff16600214610aa15760405162461bcd60e51b815260206004820152601f60248201527f57686974656c6973742063757272656e746c79206e6f74206d696e74696e670060448201526064016107e1565b610aae60016101bc612339565b600a5461ffff91821691610ac79160ff851691166122c8565b61ffff161115610ae95760405162461bcd60e51b81526004016107e190612213565b8060ff16600754610afa919061231a565b3414610b3d5760405162461bcd60e51b8152602060048201526012602482015271125b98dbdc9c995b9d08195d1a081cd95b9d60721b60448201526064016107e1565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610bb7848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506009549150849050611609565b610bd35760405162461bcd60e51b81526004016107e1906121cf565b336000908152600c60205260408120805460ff191660011790555b8260ff16811015610c4757600a8054610c35913391600090610c139061ffff166123da565b91906101000a81548161ffff021916908361ffff160217905561ffff1661161f565b80610c3f816123fc565b915050610bee565b5050505050565b61091783838360405180602001604052806000815250610f25565b610c7233610921565b610cd75760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016107e1565b610ce081611639565b50565b6006546001600160a01b03163314610d0d5760405162461bcd60e51b81526004016107e190612242565b8051610d2090600d906020840190611c1c565b5050565b6000818152600260205260408120546001600160a01b0316806106d45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107e1565b60006001600160a01b038216610e065760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107e1565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610e4c5760405162461bcd60e51b81526004016107e190612242565b610e5660006116d4565b565b6006546001600160a01b03163314610e825760405162461bcd60e51b81526004016107e190612242565b600e805460ff191660ff92909216919091179055565b6006546001600160a01b03163314610ec25760405162461bcd60e51b81526004016107e190612242565b60008111610f065760405162461bcd60e51b8152602060048201526011602482015270050726963652063616e6e6f74206265203607c1b60448201526064016107e1565b600755565b6060600180546106e99061239f565b610d20338383611726565b610f2f3383611376565b610f4b5760405162461bcd60e51b81526004016107e190612277565b610f57848484846117f5565b50505050565b6006546001600160a01b03163314610f875760405162461bcd60e51b81526004016107e190612242565b600a546101bc90610f9c9061ffff16836122c8565b61ffff161115610fbe5760405162461bcd60e51b81526004016107e190612213565b60005b8161ffff16811015610d2057610ff6610fe26006546001600160a01b031690565b600a8054600090610c139061ffff166123da565b80611000816123fc565b915050610fc1565b60606000600d80546110199061239f565b90501161103557604051806020016040528060008152506106d4565b600d61104083611828565b604051602001611051929190612072565b60405160208183030381529060405292915050565b6006546001600160a01b031633146110905760405162461bcd60e51b81526004016107e190612242565b6001600160a01b0381166110f55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e1565b610ce0816116d4565b6006546001600160a01b031633146111285760405162461bcd60e51b81526004016107e190612242565b600955565b600e5460ff166001146111785760405162461bcd60e51b8152602060048201526013602482015272119c995958db185a5b481a5cc818db1bdcd959606a1b60448201526064016107e1565b61118560016101bc612339565b600a5461ffff9182169161119e9160ff851691166122c8565b61ffff1611156111c05760405162461bcd60e51b81526004016107e190612213565b336000908152600b602052604090205460ff16156112205760405162461bcd60e51b815260206004820152601a60248201527f57616c6c65742068617320636c61696d656420616c726561647900000000000060448201526064016107e1565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061129a848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506008549150849050611609565b6112b65760405162461bcd60e51b81526004016107e1906121cf565b336000908152600b60205260408120805460ff191660011790555b8260ff16811015610c4757600a80546112f6913391600090610c139061ffff166123da565b80611300816123fc565b9150506112d1565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061133d82610d24565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113ef5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107e1565b60006113fa83610d24565b9050806001600160a01b0316846001600160a01b0316148061144157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806114655750836001600160a01b031661145a8461076c565b6001600160a01b0316145b949350505050565b826001600160a01b031661148082610d24565b6001600160a01b0316146114e45760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016107e1565b6001600160a01b0382166115465760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107e1565b611551600082611308565b6001600160a01b038316600090815260036020526040812080546001929061157a90849061235c565b90915550506001600160a01b03821660009081526003602052604081208054600192906115a89084906122ee565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000826116168584611926565b14949350505050565b610d2082826040518060200160405280600081525061199a565b600061164482610d24565b9050611651600083611308565b6001600160a01b038116600090815260036020526040812080546001929061167a90849061235c565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156117885760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107e1565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61180084848461146d565b61180c848484846119cd565b610f575760405162461bcd60e51b81526004016107e19061217d565b60608161184c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118765780611860816123fc565b915061186f9050600a83612306565b9150611850565b60008167ffffffffffffffff8111156118915761189161246d565b6040519080825280601f01601f1916602001820160405280156118bb576020820181803683370190505b5090505b8415611465576118d060018361235c565b91506118dd600a86612417565b6118e89060306122ee565b60f81b8183815181106118fd576118fd612457565b60200101906001600160f81b031916908160001a90535061191f600a86612306565b94506118bf565b600081815b845181101561199257600085828151811061194857611948612457565b6020026020010151905080831161196e576000838152602082905260409020925061197f565b600081815260208490526040902092505b508061198a816123fc565b91505061192b565b509392505050565b6119a48383611ada565b6119b160008484846119cd565b6109175760405162461bcd60e51b81526004016107e19061217d565b60006001600160a01b0384163b15611acf57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a1190339089908890889060040161212d565b602060405180830381600087803b158015611a2b57600080fd5b505af1925050508015611a5b575060408051601f3d908101601f19168201909252611a5891810190611f85565b60015b611ab5573d808015611a89576040519150601f19603f3d011682016040523d82523d6000602084013e611a8e565b606091505b508051611aad5760405162461bcd60e51b81526004016107e19061217d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611465565b506001949350505050565b6001600160a01b038216611b305760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107e1565b6000818152600260205260409020546001600160a01b031615611b955760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107e1565b6001600160a01b0382166000908152600360205260408120805460019290611bbe9084906122ee565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611c289061239f565b90600052602060002090601f016020900481019282611c4a5760008555611c90565b82601f10611c6357805160ff1916838001178555611c90565b82800160010185558215611c90579182015b82811115611c90578251825591602001919060010190611c75565b50611c9c929150611ca0565b5090565b5b80821115611c9c5760008155600101611ca1565b600067ffffffffffffffff80841115611cd057611cd061246d565b604051601f8501601f19908116603f01168101908282118183101715611cf857611cf861246d565b81604052809350858152868686011115611d1157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611d4257600080fd5b919050565b803560ff81168114611d4257600080fd5b600060208284031215611d6a57600080fd5b611d7382611d2b565b9392505050565b60008060408385031215611d8d57600080fd5b611d9683611d2b565b9150611da460208401611d2b565b90509250929050565b600080600060608486031215611dc257600080fd5b611dcb84611d2b565b9250611dd960208501611d2b565b9150604084013590509250925092565b60008060008060808587031215611dff57600080fd5b611e0885611d2b565b9350611e1660208601611d2b565b925060408501359150606085013567ffffffffffffffff811115611e3957600080fd5b8501601f81018713611e4a57600080fd5b611e5987823560208401611cb5565b91505092959194509250565b60008060408385031215611e7857600080fd5b611e8183611d2b565b915060208301358015158114611e9657600080fd5b809150509250929050565b60008060408385031215611eb457600080fd5b611ebd83611d2b565b946020939093013593505050565b600080600060408486031215611ee057600080fd5b833567ffffffffffffffff80821115611ef857600080fd5b818601915086601f830112611f0c57600080fd5b813581811115611f1b57600080fd5b8760208260051b8501011115611f3057600080fd5b602092830195509350611f469186019050611d47565b90509250925092565b600060208284031215611f6157600080fd5b5035919050565b600060208284031215611f7a57600080fd5b8135611d7381612483565b600060208284031215611f9757600080fd5b8151611d7381612483565b600060208284031215611fb457600080fd5b813567ffffffffffffffff811115611fcb57600080fd5b8201601f81018413611fdc57600080fd5b61146584823560208401611cb5565b600060208284031215611ffd57600080fd5b813561ffff81168114611d7357600080fd5b60006020828403121561202157600080fd5b611d7382611d47565b60008151808452612042816020860160208601612373565b601f01601f19169290920160200192915050565b60008151612068818560208601612373565b9290920192915050565b600080845481600182811c91508083168061208e57607f831692505b60208084108214156120ae57634e487b7160e01b86526022600452602486fd5b8180156120c257600181146120d357612100565b60ff19861689528489019650612100565b60008b81526020902060005b868110156120f85781548b8201529085019083016120df565b505084890196505b5050505050506121246121138286612056565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121609083018461202a565b9695505050505050565b602081526000611d73602083018461202a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526024908201527f41646472657373206973206e6f7420617661696c61626c6520666f72206d696e60408201526374696e6760e01b606082015260800190565b60208082526015908201527413585e1a5b5d5b481d1bdad95b9cc81b5a5b9d1959605a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600061ffff8083168185168083038211156122e5576122e561242b565b01949350505050565b600082198211156123015761230161242b565b500190565b60008261231557612315612441565b500490565b60008160001904831182151516156123345761233461242b565b500290565b600061ffff838116908316818110156123545761235461242b565b039392505050565b60008282101561236e5761236e61242b565b500390565b60005b8381101561238e578181015183820152602001612376565b83811115610f575750506000910152565b600181811c908216806123b357607f821691505b602082108114156123d457634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff808316818114156123f2576123f261242b565b6001019392505050565b60006000198214156124105761241061242b565b5060010190565b60008261242657612426612441565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ce057600080fdfea264697066735822122046e7f6ca86329cb92e771d48eeafd26f29d028fce93b7768410dcc43e7f14bf264736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063b003c2b8116100a0578063e985e9c51161006f578063e985e9c5146105af578063f2fde38b146105f8578063f5aa406d14610618578063f8226e8814610638578063f98050a71461065857600080fd5b8063b003c2b81461051f578063b88d4fde1461054f578063bcc51ed01461056f578063c87b56dd1461058f57600080fd5b806391b7f5ed116100dc57806391b7f5ed146104b457806395d89b41146104d4578063a035b1fe146104e9578063a22cb465146104ff57600080fd5b806370a0823114610441578063715018a61461046157806376cc269f146104765780638da5cb5b1461049657600080fd5b80633ccfd60b1161019057806355f804b31161015f57806355f804b3146103a4578063603f4d52146103c457806361bc221a146103f05780636352211e1461040b5780636f752c611461042b57600080fd5b80633ccfd60b1461033c5780633eee5eb81461035157806342842e0e1461036457806342966c681461038457600080fd5b806323b872dd116101cc57806323b872dd146102af5780633132c0df146102cf57806332cb6b0c146102ef578063386bfc981461031857600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611f68565b610688565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b506102486106da565b60405161022a919061216a565b34801561026157600080fd5b50610275610270366004611f4f565b61076c565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611ea1565b610806565b005b3480156102bb57600080fd5b506102ad6102ca366004611dad565b61091c565b3480156102db57600080fd5b506102ad6102ea366004611f4f565b61094e565b3480156102fb57600080fd5b506103056101bc81565b60405161ffff909116815260200161022a565b34801561032457600080fd5b5061032e60095481565b60405190815260200161022a565b34801561034857600080fd5b506102ad61097d565b6102ad61035f366004611ecb565b6109ec565b34801561037057600080fd5b506102ad61037f366004611dad565b610c4e565b34801561039057600080fd5b506102ad61039f366004611f4f565b610c69565b3480156103b057600080fd5b506102ad6103bf366004611fa2565b610ce3565b3480156103d057600080fd5b50600e546103de9060ff1681565b60405160ff909116815260200161022a565b3480156103fc57600080fd5b50600a546103059061ffff1681565b34801561041757600080fd5b50610275610426366004611f4f565b610d24565b34801561043757600080fd5b5061032e60085481565b34801561044d57600080fd5b5061032e61045c366004611d58565b610d9b565b34801561046d57600080fd5b506102ad610e22565b34801561048257600080fd5b506102ad61049136600461200f565b610e58565b3480156104a257600080fd5b506006546001600160a01b0316610275565b3480156104c057600080fd5b506102ad6104cf366004611f4f565b610e98565b3480156104e057600080fd5b50610248610f0b565b3480156104f557600080fd5b5061032e60075481565b34801561050b57600080fd5b506102ad61051a366004611e65565b610f1a565b34801561052b57600080fd5b5061021e61053a366004611d58565b600b6020526000908152604090205460ff1681565b34801561055b57600080fd5b506102ad61056a366004611de9565b610f25565b34801561057b57600080fd5b506102ad61058a366004611feb565b610f5d565b34801561059b57600080fd5b506102486105aa366004611f4f565b611008565b3480156105bb57600080fd5b5061021e6105ca366004611d7a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561060457600080fd5b506102ad610613366004611d58565b611066565b34801561062457600080fd5b506102ad610633366004611f4f565b6110fe565b34801561064457600080fd5b506102ad610653366004611ecb565b61112d565b34801561066457600080fd5b5061021e610673366004611d58565b600c6020526000908152604090205460ff1681565b60006001600160e01b031982166380ac58cd60e01b14806106b957506001600160e01b03198216635b5e139f60e01b145b806106d457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106e99061239f565b80601f01602080910402602001604051908101604052809291908181526020018280546107159061239f565b80156107625780601f1061073757610100808354040283529160200191610762565b820191906000526020600020905b81548152906001019060200180831161074557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107ea5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061081182610d24565b9050806001600160a01b0316836001600160a01b0316141561087f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107e1565b336001600160a01b038216148061089b575061089b81336105ca565b61090d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107e1565b6109178383611308565b505050565b610927335b82611376565b6109435760405162461bcd60e51b81526004016107e190612277565b61091783838361146d565b6006546001600160a01b031633146109785760405162461bcd60e51b81526004016107e190612242565b600855565b6006546001600160a01b031633146109a75760405162461bcd60e51b81526004016107e190612242565b6040514790736569e6b8b90a2d9290ea07fe98e24ae393c7178390819083156108fc029084906000818181858888f19350505050158015610917573d6000803e3d6000fd5b336000908152600c602052604090205460ff1615610a4c5760405162461bcd60e51b815260206004820152601960248201527f57616c6c657420686173206d696e74656420616c72656164790000000000000060448201526064016107e1565b600e5460ff16600214610aa15760405162461bcd60e51b815260206004820152601f60248201527f57686974656c6973742063757272656e746c79206e6f74206d696e74696e670060448201526064016107e1565b610aae60016101bc612339565b600a5461ffff91821691610ac79160ff851691166122c8565b61ffff161115610ae95760405162461bcd60e51b81526004016107e190612213565b8060ff16600754610afa919061231a565b3414610b3d5760405162461bcd60e51b8152602060048201526012602482015271125b98dbdc9c995b9d08195d1a081cd95b9d60721b60448201526064016107e1565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610bb7848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506009549150849050611609565b610bd35760405162461bcd60e51b81526004016107e1906121cf565b336000908152600c60205260408120805460ff191660011790555b8260ff16811015610c4757600a8054610c35913391600090610c139061ffff166123da565b91906101000a81548161ffff021916908361ffff160217905561ffff1661161f565b80610c3f816123fc565b915050610bee565b5050505050565b61091783838360405180602001604052806000815250610f25565b610c7233610921565b610cd75760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016107e1565b610ce081611639565b50565b6006546001600160a01b03163314610d0d5760405162461bcd60e51b81526004016107e190612242565b8051610d2090600d906020840190611c1c565b5050565b6000818152600260205260408120546001600160a01b0316806106d45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107e1565b60006001600160a01b038216610e065760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107e1565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610e4c5760405162461bcd60e51b81526004016107e190612242565b610e5660006116d4565b565b6006546001600160a01b03163314610e825760405162461bcd60e51b81526004016107e190612242565b600e805460ff191660ff92909216919091179055565b6006546001600160a01b03163314610ec25760405162461bcd60e51b81526004016107e190612242565b60008111610f065760405162461bcd60e51b8152602060048201526011602482015270050726963652063616e6e6f74206265203607c1b60448201526064016107e1565b600755565b6060600180546106e99061239f565b610d20338383611726565b610f2f3383611376565b610f4b5760405162461bcd60e51b81526004016107e190612277565b610f57848484846117f5565b50505050565b6006546001600160a01b03163314610f875760405162461bcd60e51b81526004016107e190612242565b600a546101bc90610f9c9061ffff16836122c8565b61ffff161115610fbe5760405162461bcd60e51b81526004016107e190612213565b60005b8161ffff16811015610d2057610ff6610fe26006546001600160a01b031690565b600a8054600090610c139061ffff166123da565b80611000816123fc565b915050610fc1565b60606000600d80546110199061239f565b90501161103557604051806020016040528060008152506106d4565b600d61104083611828565b604051602001611051929190612072565b60405160208183030381529060405292915050565b6006546001600160a01b031633146110905760405162461bcd60e51b81526004016107e190612242565b6001600160a01b0381166110f55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e1565b610ce0816116d4565b6006546001600160a01b031633146111285760405162461bcd60e51b81526004016107e190612242565b600955565b600e5460ff166001146111785760405162461bcd60e51b8152602060048201526013602482015272119c995958db185a5b481a5cc818db1bdcd959606a1b60448201526064016107e1565b61118560016101bc612339565b600a5461ffff9182169161119e9160ff851691166122c8565b61ffff1611156111c05760405162461bcd60e51b81526004016107e190612213565b336000908152600b602052604090205460ff16156112205760405162461bcd60e51b815260206004820152601a60248201527f57616c6c65742068617320636c61696d656420616c726561647900000000000060448201526064016107e1565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061129a848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506008549150849050611609565b6112b65760405162461bcd60e51b81526004016107e1906121cf565b336000908152600b60205260408120805460ff191660011790555b8260ff16811015610c4757600a80546112f6913391600090610c139061ffff166123da565b80611300816123fc565b9150506112d1565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061133d82610d24565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113ef5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107e1565b60006113fa83610d24565b9050806001600160a01b0316846001600160a01b0316148061144157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806114655750836001600160a01b031661145a8461076c565b6001600160a01b0316145b949350505050565b826001600160a01b031661148082610d24565b6001600160a01b0316146114e45760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016107e1565b6001600160a01b0382166115465760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107e1565b611551600082611308565b6001600160a01b038316600090815260036020526040812080546001929061157a90849061235c565b90915550506001600160a01b03821660009081526003602052604081208054600192906115a89084906122ee565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000826116168584611926565b14949350505050565b610d2082826040518060200160405280600081525061199a565b600061164482610d24565b9050611651600083611308565b6001600160a01b038116600090815260036020526040812080546001929061167a90849061235c565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156117885760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107e1565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61180084848461146d565b61180c848484846119cd565b610f575760405162461bcd60e51b81526004016107e19061217d565b60608161184c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118765780611860816123fc565b915061186f9050600a83612306565b9150611850565b60008167ffffffffffffffff8111156118915761189161246d565b6040519080825280601f01601f1916602001820160405280156118bb576020820181803683370190505b5090505b8415611465576118d060018361235c565b91506118dd600a86612417565b6118e89060306122ee565b60f81b8183815181106118fd576118fd612457565b60200101906001600160f81b031916908160001a90535061191f600a86612306565b94506118bf565b600081815b845181101561199257600085828151811061194857611948612457565b6020026020010151905080831161196e576000838152602082905260409020925061197f565b600081815260208490526040902092505b508061198a816123fc565b91505061192b565b509392505050565b6119a48383611ada565b6119b160008484846119cd565b6109175760405162461bcd60e51b81526004016107e19061217d565b60006001600160a01b0384163b15611acf57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a1190339089908890889060040161212d565b602060405180830381600087803b158015611a2b57600080fd5b505af1925050508015611a5b575060408051601f3d908101601f19168201909252611a5891810190611f85565b60015b611ab5573d808015611a89576040519150601f19603f3d011682016040523d82523d6000602084013e611a8e565b606091505b508051611aad5760405162461bcd60e51b81526004016107e19061217d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611465565b506001949350505050565b6001600160a01b038216611b305760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107e1565b6000818152600260205260409020546001600160a01b031615611b955760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107e1565b6001600160a01b0382166000908152600360205260408120805460019290611bbe9084906122ee565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611c289061239f565b90600052602060002090601f016020900481019282611c4a5760008555611c90565b82601f10611c6357805160ff1916838001178555611c90565b82800160010185558215611c90579182015b82811115611c90578251825591602001919060010190611c75565b50611c9c929150611ca0565b5090565b5b80821115611c9c5760008155600101611ca1565b600067ffffffffffffffff80841115611cd057611cd061246d565b604051601f8501601f19908116603f01168101908282118183101715611cf857611cf861246d565b81604052809350858152868686011115611d1157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611d4257600080fd5b919050565b803560ff81168114611d4257600080fd5b600060208284031215611d6a57600080fd5b611d7382611d2b565b9392505050565b60008060408385031215611d8d57600080fd5b611d9683611d2b565b9150611da460208401611d2b565b90509250929050565b600080600060608486031215611dc257600080fd5b611dcb84611d2b565b9250611dd960208501611d2b565b9150604084013590509250925092565b60008060008060808587031215611dff57600080fd5b611e0885611d2b565b9350611e1660208601611d2b565b925060408501359150606085013567ffffffffffffffff811115611e3957600080fd5b8501601f81018713611e4a57600080fd5b611e5987823560208401611cb5565b91505092959194509250565b60008060408385031215611e7857600080fd5b611e8183611d2b565b915060208301358015158114611e9657600080fd5b809150509250929050565b60008060408385031215611eb457600080fd5b611ebd83611d2b565b946020939093013593505050565b600080600060408486031215611ee057600080fd5b833567ffffffffffffffff80821115611ef857600080fd5b818601915086601f830112611f0c57600080fd5b813581811115611f1b57600080fd5b8760208260051b8501011115611f3057600080fd5b602092830195509350611f469186019050611d47565b90509250925092565b600060208284031215611f6157600080fd5b5035919050565b600060208284031215611f7a57600080fd5b8135611d7381612483565b600060208284031215611f9757600080fd5b8151611d7381612483565b600060208284031215611fb457600080fd5b813567ffffffffffffffff811115611fcb57600080fd5b8201601f81018413611fdc57600080fd5b61146584823560208401611cb5565b600060208284031215611ffd57600080fd5b813561ffff81168114611d7357600080fd5b60006020828403121561202157600080fd5b611d7382611d47565b60008151808452612042816020860160208601612373565b601f01601f19169290920160200192915050565b60008151612068818560208601612373565b9290920192915050565b600080845481600182811c91508083168061208e57607f831692505b60208084108214156120ae57634e487b7160e01b86526022600452602486fd5b8180156120c257600181146120d357612100565b60ff19861689528489019650612100565b60008b81526020902060005b868110156120f85781548b8201529085019083016120df565b505084890196505b5050505050506121246121138286612056565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121609083018461202a565b9695505050505050565b602081526000611d73602083018461202a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526024908201527f41646472657373206973206e6f7420617661696c61626c6520666f72206d696e60408201526374696e6760e01b606082015260800190565b60208082526015908201527413585e1a5b5d5b481d1bdad95b9cc81b5a5b9d1959605a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600061ffff8083168185168083038211156122e5576122e561242b565b01949350505050565b600082198211156123015761230161242b565b500190565b60008261231557612315612441565b500490565b60008160001904831182151516156123345761233461242b565b500290565b600061ffff838116908316818110156123545761235461242b565b039392505050565b60008282101561236e5761236e61242b565b500390565b60005b8381101561238e578181015183820152602001612376565b83811115610f575750506000910152565b600181811c908216806123b357607f821691505b602082108114156123d457634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff808316818114156123f2576123f261242b565b6001019392505050565b60006000198214156124105761241061242b565b5060010190565b60008261242657612426612441565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ce057600080fdfea264697066735822122046e7f6ca86329cb92e771d48eeafd26f29d028fce93b7768410dcc43e7f14bf264736f6c63430008070033

Deployed Bytecode Sourcemap

40835:3627:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26865:305;;;;;;;;;;-1:-1:-1;26865:305:0;;;;;:::i;:::-;;:::i;:::-;;;8525:14:1;;8518:22;8500:41;;8488:2;8473:18;26865:305:0;;;;;;;;27810:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29370:221::-;;;;;;;;;;-1:-1:-1;29370:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7823:32:1;;;7805:51;;7793:2;7778:18;29370:221:0;7659:203:1;28893:411:0;;;;;;;;;;-1:-1:-1;28893:411:0;;;;;:::i;:::-;;:::i;:::-;;30120:339;;;;;;;;;;-1:-1:-1;30120:339:0;;;;;:::i;:::-;;:::i;42216:96::-;;;;;;;;;;-1:-1:-1;42216:96:0;;;;;:::i;:::-;;:::i;41012:39::-;;;;;;;;;;;;41048:3;41012:39;;;;;18376:6:1;18364:19;;;18346:38;;18334:2;18319:18;41012:39:0;18202:188:1;40971:34:0;;;;;;;;;;;;;;;;;;;8698:25:1;;;8686:2;8671:18;40971:34:0;8552:177:1;44006:207:0;;;;;;;;;;;;;:::i;43298:700::-;;;;;;:::i;:::-;;:::i;30530:185::-;;;;;;;;;;-1:-1:-1;30530:185:0;;;;;:::i;:::-;;:::i;44221:238::-;;;;;;;;;;-1:-1:-1;44221:238:0;;;;;:::i;:::-;;:::i;41866:90::-;;;;;;;;;;-1:-1:-1;41866:90:0;;;;;:::i;:::-;;:::i;41266:26::-;;;;;;;;;;-1:-1:-1;41266:26:0;;;;;;;;;;;18749:4:1;18737:17;;;18719:36;;18707:2;18692:18;41266:26:0;18577:184:1;41058:25:0;;;;;;;;;;-1:-1:-1;41058:25:0;;;;;;;;27504:239;;;;;;;;;;-1:-1:-1;27504:239:0;;;;;:::i;:::-;;:::i;40931:33::-;;;;;;;;;;;;;;;;27234:208;;;;;;;;;;-1:-1:-1;27234:208:0;;;;;:::i;:::-;;:::i;7448:103::-;;;;;;;;;;;;;:::i;42115:93::-;;;;;;;;;;-1:-1:-1;42115:93:0;;;;;:::i;:::-;;:::i;6797:87::-;;;;;;;;;;-1:-1:-1;6870:6:0;;-1:-1:-1;;;;;6870:6:0;6797:87;;41964:143;;;;;;;;;;-1:-1:-1;41964:143:0;;;;;:::i;:::-;;:::i;27979:104::-;;;;;;;;;;;;;:::i;40892:32::-;;;;;;;;;;;;;;;;29663:155;;;;;;;;;;-1:-1:-1;29663:155:0;;;;;:::i;:::-;;:::i;41090:49::-;;;;;;;;;;-1:-1:-1;41090:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30786:328;;;;;;;;;;-1:-1:-1;30786:328:0;;;;;:::i;:::-;;:::i;42426:243::-;;;;;;;;;;-1:-1:-1;42426:243:0;;;;;:::i;:::-;;:::i;41569:289::-;;;;;;;;;;-1:-1:-1;41569:289:0;;;;;:::i;:::-;;:::i;29889:164::-;;;;;;;;;;-1:-1:-1;29889:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30010:25:0;;;29986:4;30010:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29889:164;7706:201;;;;;;;;;;-1:-1:-1;7706:201:0;;;;;:::i;:::-;;:::i;42320:98::-;;;;;;;;;;-1:-1:-1;42320:98:0;;;;;:::i;:::-;;:::i;42677:613::-;;;;;;;;;;-1:-1:-1;42677:613:0;;;;;:::i;:::-;;:::i;41146:50::-;;;;;;;;;;-1:-1:-1;41146:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;26865:305;26967:4;-1:-1:-1;;;;;;27004:40:0;;-1:-1:-1;;;27004:40:0;;:105;;-1:-1:-1;;;;;;;27061:48:0;;-1:-1:-1;;;27061:48:0;27004:105;:158;;;-1:-1:-1;;;;;;;;;;19713:40:0;;;27126:36;26984:178;26865:305;-1:-1:-1;;26865:305:0:o;27810:100::-;27864:13;27897:5;27890:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27810:100;:::o;29370:221::-;29446:7;32713:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32713:16:0;29466:73;;;;-1:-1:-1;;;29466:73:0;;14983:2:1;29466:73:0;;;14965:21:1;15022:2;15002:18;;;14995:30;15061:34;15041:18;;;15034:62;-1:-1:-1;;;15112:18:1;;;15105:42;15164:19;;29466:73:0;;;;;;;;;-1:-1:-1;29559:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29559:24:0;;29370:221::o;28893:411::-;28974:13;28990:23;29005:7;28990:14;:23::i;:::-;28974:39;;29038:5;-1:-1:-1;;;;;29032:11:0;:2;-1:-1:-1;;;;;29032:11:0;;;29024:57;;;;-1:-1:-1;;;29024:57:0;;15757:2:1;29024:57:0;;;15739:21:1;15796:2;15776:18;;;15769:30;15835:34;15815:18;;;15808:62;-1:-1:-1;;;15886:18:1;;;15879:31;15927:19;;29024:57:0;15555:397:1;29024:57:0;5601:10;-1:-1:-1;;;;;29116:21:0;;;;:62;;-1:-1:-1;29141:37:0;29158:5;5601:10;29889:164;:::i;29141:37::-;29094:168;;;;-1:-1:-1;;;29094:168:0;;13026:2:1;29094:168:0;;;13008:21:1;13065:2;13045:18;;;13038:30;13104:34;13084:18;;;13077:62;13175:26;13155:18;;;13148:54;13219:19;;29094:168:0;12824:420:1;29094:168:0;29275:21;29284:2;29288:7;29275:8;:21::i;:::-;28963:341;28893:411;;:::o;30120:339::-;30315:41;5601:10;30334:12;30348:7;30315:18;:41::i;:::-;30307:103;;;;-1:-1:-1;;;30307:103:0;;;;;;;:::i;:::-;30423:28;30433:4;30439:2;30443:7;30423:9;:28::i;42216:96::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;42285:12:::1;:19:::0;42216:96::o;44006:207::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;44174:31:::1;::::0;44074:21:::1;::::0;44121:42:::1;::::0;;;44174:31;::::1;;;::::0;44074:21;;44056:15:::1;44174:31:::0;44056:15;44174:31;44074:21;44121:42;44174:31;::::1;;;;;;;;;;;;;::::0;::::1;;;;43298:700:::0;43408:10;43389:30;;;;:18;:30;;;;;;;;43388:31;43380:69;;;;-1:-1:-1;;;43380:69:0;;11854:2:1;43380:69:0;;;11836:21:1;11893:2;11873:18;;;11866:30;11932:27;11912:18;;;11905:55;11977:18;;43380:69:0;11652:349:1;43380:69:0;43468:9;;;;43481:1;43468:14;43460:58;;;;-1:-1:-1;;;43460:58:0;;17696:2:1;43460:58:0;;;17678:21:1;17735:2;17715:18;;;17708:30;17774:33;17754:18;;;17747:61;17825:18;;43460:58:0;17494:355:1;43460:58:0;43557:14;43570:1;41048:3;43557:14;:::i;:::-;43537:7;;:34;;;;;:16;;;;;;:7;:16;:::i;:::-;:34;;;;43529:68;;;;-1:-1:-1;;;43529:68:0;;;;;;;:::i;:::-;43637:6;43629:14;;:5;;:14;;;;:::i;:::-;43616:9;:27;43608:58;;;;-1:-1:-1;;;43608:58:0;;17349:2:1;43608:58:0;;;17331:21:1;17388:2;17368:18;;;17361:30;-1:-1:-1;;;17407:18:1;;;17400:48;17465:18;;43608:58:0;17147:342:1;43608:58:0;43702:28;;-1:-1:-1;;43719:10:0;6268:2:1;6264:15;6260:53;43702:28:0;;;6248:66:1;43677:12:0;;6330::1;;43702:28:0;;;;;;;;;;;;43692:39;;;;;;43677:54;;43750:46;43769:5;;43750:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;43776:13:0;;;-1:-1:-1;43791:4:0;;-1:-1:-1;43750:18:0;:46::i;:::-;43742:95;;;;-1:-1:-1;;;43742:95:0;;;;;;;:::i;:::-;43869:10;43850:30;;;;:18;:30;;;;;:37;;-1:-1:-1;;43850:37:0;43883:4;43850:37;;;43898:93;43919:6;43915:10;;:1;:10;43898:93;;;43971:7;43969:9;;43947:32;;43957:10;;43971:7;;43969:9;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;43947:32;;:9;:32::i;:::-;43927:3;;;;:::i;:::-;;;;43898:93;;;;43369:629;43298:700;;;:::o;30530:185::-;30668:39;30685:4;30691:2;30695:7;30668:39;;;;;;;;;;;;:16;:39::i;44221:238::-;44309:41;5601:10;44328:12;5521:98;44309:41;44287:139;;;;-1:-1:-1;;;44287:139:0;;16932:2:1;44287:139:0;;;16914:21:1;16971:2;16951:18;;;16944:30;17010:34;16990:18;;;16983:62;-1:-1:-1;;;17061:18:1;;;17054:46;17117:19;;44287:139:0;16730:412:1;44287:139:0;44437:14;44443:7;44437:5;:14::i;:::-;44221:238;:::o;41866:90::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;41935:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;;41866:90:::0;:::o;27504:239::-;27576:7;27612:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27612:16:0;27647:19;27639:73;;;;-1:-1:-1;;;27639:73:0;;13862:2:1;27639:73:0;;;13844:21:1;13901:2;13881:18;;;13874:30;13940:34;13920:18;;;13913:62;-1:-1:-1;;;13991:18:1;;;13984:39;14040:19;;27639:73:0;13660:405:1;27234:208:0;27306:7;-1:-1:-1;;;;;27334:19:0;;27326:74;;;;-1:-1:-1;;;27326:74:0;;13451:2:1;27326:74:0;;;13433:21:1;13490:2;13470:18;;;13463:30;13529:34;13509:18;;;13502:62;-1:-1:-1;;;13580:18:1;;;13573:40;13630:19;;27326:74:0;13249:406:1;27326:74:0;-1:-1:-1;;;;;;27418:16:0;;;;;:9;:16;;;;;;;27234:208::o;7448:103::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;7513:30:::1;7540:1;7513:18;:30::i;:::-;7448:103::o:0;42115:93::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;42183:9:::1;:17:::0;;-1:-1:-1;;42183:17:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;42115:93::o;41964:143::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;42049:1:::1;42038:8;:12;42030:42;;;::::0;-1:-1:-1;;;42030:42:0;;9160:2:1;42030:42:0::1;::::0;::::1;9142:21:1::0;9199:2;9179:18;;;9172:30;-1:-1:-1;;;9218:18:1;;;9211:47;9275:18;;42030:42:0::1;8958:341:1::0;42030:42:0::1;42083:5;:16:::0;41964:143::o;27979:104::-;28035:13;28068:7;28061:14;;;;;:::i;29663:155::-;29758:52;5601:10;29791:8;29801;29758:18;:52::i;30786:328::-;30961:41;5601:10;30994:7;30961:18;:41::i;:::-;30953:103;;;;-1:-1:-1;;;30953:103:0;;;;;;;:::i;:::-;31067:39;31081:4;31087:2;31091:7;31100:5;31067:13;:39::i;:::-;30786:328;;;;:::o;42426:243::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;42511:7:::1;::::0;41048:3:::1;::::0;42502:16:::1;::::0;:30:::1;42511:7;42502:6:::0;:16:::1;:::i;:::-;:30;;;;42494:64;;;;-1:-1:-1::0;;;42494:64:0::1;;;;;;;:::i;:::-;42574:9;42569:93;42593:6;42589:10;;:1;:10;42569:93;;;42621:29;42631:7;6870:6:::0;;-1:-1:-1;;;;;6870:6:0;;6797:87;42631:7:::1;42642;42640:9:::0;;42642:7:::1;::::0;42640:9:::1;::::0;::::1;;;:::i;42621:29::-;42601:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42569:93;;41569:289:::0;41670:13;41745:1;41727:7;41721:21;;;;;:::i;:::-;;;:25;:129;;;;;;;;;;;;;;;;;41790:7;41799:18;:7;:16;:18::i;:::-;41773:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41701:149;41569:289;-1:-1:-1;;41569:289:0:o;7706:201::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7795:22:0;::::1;7787:73;;;::::0;-1:-1:-1;;;7787:73:0;;9925:2:1;7787:73:0::1;::::0;::::1;9907:21:1::0;9964:2;9944:18;;;9937:30;10003:34;9983:18;;;9976:62;-1:-1:-1;;;10054:18:1;;;10047:36;10100:19;;7787:73:0::1;9723:402:1::0;7787:73:0::1;7871:28;7890:8;7871:18;:28::i;42320:98::-:0;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;42390:13:::1;:20:::0;42320:98::o;42677:613::-;42763:9;;;;;:14;42755:46;;;;-1:-1:-1;;;42755:46:0;;18056:2:1;42755:46:0;;;18038:21:1;18095:2;18075:18;;;18068:30;-1:-1:-1;;;18114:18:1;;;18107:49;18173:18;;42755:46:0;17854:343:1;42755:46:0;42840:14;42853:1;41048:3;42840:14;:::i;:::-;42820:7;;:34;;;;;:16;;;;;;:7;:16;:::i;:::-;:34;;;;42812:68;;;;-1:-1:-1;;;42812:68:0;;;;;;;:::i;:::-;42918:10;42900:29;;;;:17;:29;;;;;;;;42899:30;42891:69;;;;-1:-1:-1;;;42891:69:0;;16577:2:1;42891:69:0;;;16559:21:1;16616:2;16596:18;;;16589:30;16655:28;16635:18;;;16628:56;16701:18;;42891:69:0;16375:350:1;42891:69:0;42996:28;;-1:-1:-1;;43013:10:0;6268:2:1;6264:15;6260:53;42996:28:0;;;6248:66:1;42971:12:0;;6330::1;;42996:28:0;;;;;;;;;;;;42986:39;;;;;;42971:54;;43044:45;43063:5;;43044:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;43070:12:0;;;-1:-1:-1;43084:4:0;;-1:-1:-1;43044:18:0;:45::i;:::-;43036:94;;;;-1:-1:-1;;;43036:94:0;;;;;;;:::i;:::-;43161:10;43143:29;;;;:17;:29;;;;;:36;;-1:-1:-1;;43143:36:0;43175:4;43143:36;;;43190:93;43211:6;43207:10;;:1;:10;43190:93;;;43263:7;43261:9;;43239:32;;43249:10;;43263:7;;43261:9;;;;;:::i;43239:32::-;43219:3;;;;:::i;:::-;;;;43190:93;;36770:174;36845:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36845:29:0;-1:-1:-1;;;;;36845:29:0;;;;;;;;:24;;36899:23;36845:24;36899:14;:23::i;:::-;-1:-1:-1;;;;;36890:46:0;;;;;;;;;;;36770:174;;:::o;32918:348::-;33011:4;32713:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32713:16:0;33028:73;;;;-1:-1:-1;;;33028:73:0;;12208:2:1;33028:73:0;;;12190:21:1;12247:2;12227:18;;;12220:30;12286:34;12266:18;;;12259:62;-1:-1:-1;;;12337:18:1;;;12330:42;12389:19;;33028:73:0;12006:408:1;33028:73:0;33112:13;33128:23;33143:7;33128:14;:23::i;:::-;33112:39;;33181:5;-1:-1:-1;;;;;33170:16:0;:7;-1:-1:-1;;;;;33170:16:0;;:52;;;-1:-1:-1;;;;;;30010:25:0;;;29986:4;30010:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33190:32;33170:87;;;;33250:7;-1:-1:-1;;;;;33226:31:0;:20;33238:7;33226:11;:20::i;:::-;-1:-1:-1;;;;;33226:31:0;;33170:87;33162:96;32918:348;-1:-1:-1;;;;32918:348:0:o;36027:625::-;36186:4;-1:-1:-1;;;;;36159:31:0;:23;36174:7;36159:14;:23::i;:::-;-1:-1:-1;;;;;36159:31:0;;36151:81;;;;-1:-1:-1;;;36151:81:0;;10332:2:1;36151:81:0;;;10314:21:1;10371:2;10351:18;;;10344:30;10410:34;10390:18;;;10383:62;-1:-1:-1;;;10461:18:1;;;10454:35;10506:19;;36151:81:0;10130:401:1;36151:81:0;-1:-1:-1;;;;;36251:16:0;;36243:65;;;;-1:-1:-1;;;36243:65:0;;11095:2:1;36243:65:0;;;11077:21:1;11134:2;11114:18;;;11107:30;11173:34;11153:18;;;11146:62;-1:-1:-1;;;11224:18:1;;;11217:34;11268:19;;36243:65:0;10893:400:1;36243:65:0;36425:29;36442:1;36446:7;36425:8;:29::i;:::-;-1:-1:-1;;;;;36467:15:0;;;;;;:9;:15;;;;;:20;;36486:1;;36467:15;:20;;36486:1;;36467:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36498:13:0;;;;;;:9;:13;;;;;:18;;36515:1;;36498:13;:18;;36515:1;;36498:18;:::i;:::-;;;;-1:-1:-1;;36527:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36527:21:0;-1:-1:-1;;;;;36527:21:0;;;;;;;;;36566:27;;36527:16;;36566:27;;;;;;;28963:341;28893:411;;:::o;1253:190::-;1378:4;1431;1402:25;1415:5;1422:4;1402:12;:25::i;:::-;:33;;1253:190;-1:-1:-1;;;;1253:190:0:o;33608:110::-;33684:26;33694:2;33698:7;33684:26;;;;;;;;;;;;:9;:26::i;35270:420::-;35330:13;35346:23;35361:7;35346:14;:23::i;:::-;35330:39;;35471:29;35488:1;35492:7;35471:8;:29::i;:::-;-1:-1:-1;;;;;35513:16:0;;;;;;:9;:16;;;;;:21;;35533:1;;35513:16;:21;;35533:1;;35513:21;:::i;:::-;;;;-1:-1:-1;;35552:16:0;;;;:7;:16;;;;;;35545:23;;-1:-1:-1;;;;;;35545:23:0;;;35586:36;35560:7;;35552:16;-1:-1:-1;;;;;35586:36:0;;;;;35552:16;;35586:36;41935:13:::1;41866:90:::0;:::o;8067:191::-;8160:6;;;-1:-1:-1;;;;;8177:17:0;;;-1:-1:-1;;;;;;8177:17:0;;;;;;;8210:40;;8160:6;;;8177:17;8160:6;;8210:40;;8141:16;;8210:40;8130:128;8067:191;:::o;37086:315::-;37241:8;-1:-1:-1;;;;;37232:17:0;:5;-1:-1:-1;;;;;37232:17:0;;;37224:55;;;;-1:-1:-1;;;37224:55:0;;11500:2:1;37224:55:0;;;11482:21:1;11539:2;11519:18;;;11512:30;11578:27;11558:18;;;11551:55;11623:18;;37224:55:0;11298:349:1;37224:55:0;-1:-1:-1;;;;;37290:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37290:46:0;;;;;;;;;;37352:41;;8500::1;;;37352::0;;8473:18:1;37352:41:0;;;;;;;37086:315;;;:::o;31996:::-;32153:28;32163:4;32169:2;32173:7;32153:9;:28::i;:::-;32200:48;32223:4;32229:2;32233:7;32242:5;32200:22;:48::i;:::-;32192:111;;;;-1:-1:-1;;;32192:111:0;;;;;;;:::i;3083:723::-;3139:13;3360:10;3356:53;;-1:-1:-1;;3387:10:0;;;;;;;;;;;;-1:-1:-1;;;3387:10:0;;;;;3083:723::o;3356:53::-;3434:5;3419:12;3475:78;3482:9;;3475:78;;3508:8;;;;:::i;:::-;;-1:-1:-1;3531:10:0;;-1:-1:-1;3539:2:0;3531:10;;:::i;:::-;;;3475:78;;;3563:19;3595:6;3585:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3585:17:0;;3563:39;;3613:154;3620:10;;3613:154;;3647:11;3657:1;3647:11;;:::i;:::-;;-1:-1:-1;3716:10:0;3724:2;3716:5;:10;:::i;:::-;3703:24;;:2;:24;:::i;:::-;3690:39;;3673:6;3680;3673:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3673:56:0;;;;;;;;-1:-1:-1;3744:11:0;3753:2;3744:11;;:::i;:::-;;;3613:154;;1804:675;1887:7;1930:4;1887:7;1945:497;1969:5;:12;1965:1;:16;1945:497;;;2003:20;2026:5;2032:1;2026:8;;;;;;;;:::i;:::-;;;;;;;2003:31;;2069:12;2053;:28;2049:382;;2555:13;2605:15;;;2641:4;2634:15;;;2688:4;2672:21;;2181:57;;2049:382;;;2555:13;2605:15;;;2641:4;2634:15;;;2688:4;2672:21;;2358:57;;2049:382;-1:-1:-1;1983:3:0;;;;:::i;:::-;;;;1945:497;;;-1:-1:-1;2459:12:0;1804:675;-1:-1:-1;;;1804:675:0:o;33945:321::-;34075:18;34081:2;34085:7;34075:5;:18::i;:::-;34126:54;34157:1;34161:2;34165:7;34174:5;34126:22;:54::i;:::-;34104:154;;;;-1:-1:-1;;;34104:154:0;;;;;;;:::i;37966:799::-;38121:4;-1:-1:-1;;;;;38142:13:0;;9793:19;:23;38138:620;;38178:72;;-1:-1:-1;;;38178:72:0;;-1:-1:-1;;;;;38178:36:0;;;;;:72;;5601:10;;38229:4;;38235:7;;38244:5;;38178:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38178:72:0;;;;;;;;-1:-1:-1;;38178:72:0;;;;;;;;;;;;:::i;:::-;;;38174:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38420:13:0;;38416:272;;38463:60;;-1:-1:-1;;;38463:60:0;;;;;;;:::i;38416:272::-;38638:6;38632:13;38623:6;38619:2;38615:15;38608:38;38174:529;-1:-1:-1;;;;;;38301:51:0;-1:-1:-1;;;38301:51:0;;-1:-1:-1;38294:58:0;;38138:620;-1:-1:-1;38742:4:0;37966:799;;;;;;:::o;34602:439::-;-1:-1:-1;;;;;34682:16:0;;34674:61;;;;-1:-1:-1;;;34674:61:0;;14272:2:1;34674:61:0;;;14254:21:1;;;14291:18;;;14284:30;14350:34;14330:18;;;14323:62;14402:18;;34674:61:0;14070:356:1;34674:61:0;32689:4;32713:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32713:16:0;:30;34746:58;;;;-1:-1:-1;;;34746:58:0;;10738:2:1;34746:58:0;;;10720:21:1;10777:2;10757:18;;;10750:30;10816;10796:18;;;10789:58;10864:18;;34746:58:0;10536:352:1;34746:58:0;-1:-1:-1;;;;;34875:13:0;;;;;;:9;:13;;;;;:18;;34892:1;;34875:13;:18;;34892:1;;34875:18;:::i;:::-;;;;-1:-1:-1;;34904:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34904:21:0;-1:-1:-1;;;;;34904:21:0;;;;;;;;34943:33;;34904:16;;;34943:33;;34904:16;;34943:33;41935:13:::1;41866:90:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:156::-;894:20;;954:4;943:16;;933:27;;923:55;;974:1;971;964:12;989:186;1048:6;1101:2;1089:9;1080:7;1076:23;1072:32;1069:52;;;1117:1;1114;1107:12;1069:52;1140:29;1159:9;1140:29;:::i;:::-;1130:39;989:186;-1:-1:-1;;;989:186:1:o;1180:260::-;1248:6;1256;1309:2;1297:9;1288:7;1284:23;1280:32;1277:52;;;1325:1;1322;1315:12;1277:52;1348:29;1367:9;1348:29;:::i;:::-;1338:39;;1396:38;1430:2;1419:9;1415:18;1396:38;:::i;:::-;1386:48;;1180:260;;;;;:::o;1445:328::-;1522:6;1530;1538;1591:2;1579:9;1570:7;1566:23;1562:32;1559:52;;;1607:1;1604;1597:12;1559:52;1630:29;1649:9;1630:29;:::i;:::-;1620:39;;1678:38;1712:2;1701:9;1697:18;1678:38;:::i;:::-;1668:48;;1763:2;1752:9;1748:18;1735:32;1725:42;;1445:328;;;;;:::o;1778:666::-;1873:6;1881;1889;1897;1950:3;1938:9;1929:7;1925:23;1921:33;1918:53;;;1967:1;1964;1957:12;1918:53;1990:29;2009:9;1990:29;:::i;:::-;1980:39;;2038:38;2072:2;2061:9;2057:18;2038:38;:::i;:::-;2028:48;;2123:2;2112:9;2108:18;2095:32;2085:42;;2178:2;2167:9;2163:18;2150:32;2205:18;2197:6;2194:30;2191:50;;;2237:1;2234;2227:12;2191:50;2260:22;;2313:4;2305:13;;2301:27;-1:-1:-1;2291:55:1;;2342:1;2339;2332:12;2291:55;2365:73;2430:7;2425:2;2412:16;2407:2;2403;2399:11;2365:73;:::i;:::-;2355:83;;;1778:666;;;;;;;:::o;2449:347::-;2514:6;2522;2575:2;2563:9;2554:7;2550:23;2546:32;2543:52;;;2591:1;2588;2581:12;2543:52;2614:29;2633:9;2614:29;:::i;:::-;2604:39;;2693:2;2682:9;2678:18;2665:32;2740:5;2733:13;2726:21;2719:5;2716:32;2706:60;;2762:1;2759;2752:12;2706:60;2785:5;2775:15;;;2449:347;;;;;:::o;2801:254::-;2869:6;2877;2930:2;2918:9;2909:7;2905:23;2901:32;2898:52;;;2946:1;2943;2936:12;2898:52;2969:29;2988:9;2969:29;:::i;:::-;2959:39;3045:2;3030:18;;;;3017:32;;-1:-1:-1;;;2801:254:1:o;3060:691::-;3153:6;3161;3169;3222:2;3210:9;3201:7;3197:23;3193:32;3190:52;;;3238:1;3235;3228:12;3190:52;3278:9;3265:23;3307:18;3348:2;3340:6;3337:14;3334:34;;;3364:1;3361;3354:12;3334:34;3402:6;3391:9;3387:22;3377:32;;3447:7;3440:4;3436:2;3432:13;3428:27;3418:55;;3469:1;3466;3459:12;3418:55;3509:2;3496:16;3535:2;3527:6;3524:14;3521:34;;;3551:1;3548;3541:12;3521:34;3606:7;3599:4;3589:6;3586:1;3582:14;3578:2;3574:23;3570:34;3567:47;3564:67;;;3627:1;3624;3617:12;3564:67;3658:4;3650:13;;;;-1:-1:-1;3682:6:1;-1:-1:-1;3707:38:1;;3724:20;;;-1:-1:-1;3707:38:1;:::i;:::-;3697:48;;3060:691;;;;;:::o;3756:180::-;3815:6;3868:2;3856:9;3847:7;3843:23;3839:32;3836:52;;;3884:1;3881;3874:12;3836:52;-1:-1:-1;3907:23:1;;3756:180;-1:-1:-1;3756:180:1:o;3941:245::-;3999:6;4052:2;4040:9;4031:7;4027:23;4023:32;4020:52;;;4068:1;4065;4058:12;4020:52;4107:9;4094:23;4126:30;4150:5;4126:30;:::i;4191:249::-;4260:6;4313:2;4301:9;4292:7;4288:23;4284:32;4281:52;;;4329:1;4326;4319:12;4281:52;4361:9;4355:16;4380:30;4404:5;4380:30;:::i;4445:450::-;4514:6;4567:2;4555:9;4546:7;4542:23;4538:32;4535:52;;;4583:1;4580;4573:12;4535:52;4623:9;4610:23;4656:18;4648:6;4645:30;4642:50;;;4688:1;4685;4678:12;4642:50;4711:22;;4764:4;4756:13;;4752:27;-1:-1:-1;4742:55:1;;4793:1;4790;4783:12;4742:55;4816:73;4881:7;4876:2;4863:16;4858:2;4854;4850:11;4816:73;:::i;4900:272::-;4958:6;5011:2;4999:9;4990:7;4986:23;4982:32;4979:52;;;5027:1;5024;5017:12;4979:52;5066:9;5053:23;5116:6;5109:5;5105:18;5098:5;5095:29;5085:57;;5138:1;5135;5128:12;5362:182;5419:6;5472:2;5460:9;5451:7;5447:23;5443:32;5440:52;;;5488:1;5485;5478:12;5440:52;5511:27;5528:9;5511:27;:::i;5549:257::-;5590:3;5628:5;5622:12;5655:6;5650:3;5643:19;5671:63;5727:6;5720:4;5715:3;5711:14;5704:4;5697:5;5693:16;5671:63;:::i;:::-;5788:2;5767:15;-1:-1:-1;;5763:29:1;5754:39;;;;5795:4;5750:50;;5549:257;-1:-1:-1;;5549:257:1:o;5811:185::-;5853:3;5891:5;5885:12;5906:52;5951:6;5946:3;5939:4;5932:5;5928:16;5906:52;:::i;:::-;5974:16;;;;;5811:185;-1:-1:-1;;5811:185:1:o;6353:1301::-;6630:3;6659:1;6692:6;6686:13;6722:3;6744:1;6772:9;6768:2;6764:18;6754:28;;6832:2;6821:9;6817:18;6854;6844:61;;6898:4;6890:6;6886:17;6876:27;;6844:61;6924:2;6972;6964:6;6961:14;6941:18;6938:38;6935:165;;;-1:-1:-1;;;6999:33:1;;7055:4;7052:1;7045:15;7085:4;7006:3;7073:17;6935:165;7116:18;7143:104;;;;7261:1;7256:320;;;;7109:467;;7143:104;-1:-1:-1;;7176:24:1;;7164:37;;7221:16;;;;-1:-1:-1;7143:104:1;;7256:320;18839:1;18832:14;;;18876:4;18863:18;;7351:1;7365:165;7379:6;7376:1;7373:13;7365:165;;;7457:14;;7444:11;;;7437:35;7500:16;;;;7394:10;;7365:165;;;7369:3;;7559:6;7554:3;7550:16;7543:23;;7109:467;;;;;;;7592:56;7617:30;7643:3;7635:6;7617:30;:::i;:::-;-1:-1:-1;;;6061:20:1;;6106:1;6097:11;;6001:113;7592:56;7585:63;6353:1301;-1:-1:-1;;;;;6353:1301:1:o;7867:488::-;-1:-1:-1;;;;;8136:15:1;;;8118:34;;8188:15;;8183:2;8168:18;;8161:43;8235:2;8220:18;;8213:34;;;8283:3;8278:2;8263:18;;8256:31;;;8061:4;;8304:45;;8329:19;;8321:6;8304:45;:::i;:::-;8296:53;7867:488;-1:-1:-1;;;;;;7867:488:1:o;8734:219::-;8883:2;8872:9;8865:21;8846:4;8903:44;8943:2;8932:9;8928:18;8920:6;8903:44;:::i;9304:414::-;9506:2;9488:21;;;9545:2;9525:18;;;9518:30;9584:34;9579:2;9564:18;;9557:62;-1:-1:-1;;;9650:2:1;9635:18;;9628:48;9708:3;9693:19;;9304:414::o;12419:400::-;12621:2;12603:21;;;12660:2;12640:18;;;12633:30;12699:34;12694:2;12679:18;;12672:62;-1:-1:-1;;;12765:2:1;12750:18;;12743:34;12809:3;12794:19;;12419:400::o;14431:345::-;14633:2;14615:21;;;14672:2;14652:18;;;14645:30;-1:-1:-1;;;14706:2:1;14691:18;;14684:51;14767:2;14752:18;;14431:345::o;15194:356::-;15396:2;15378:21;;;15415:18;;;15408:30;15474:34;15469:2;15454:18;;15447:62;15541:2;15526:18;;15194:356::o;15957:413::-;16159:2;16141:21;;;16198:2;16178:18;;;16171:30;16237:34;16232:2;16217:18;;16210:62;-1:-1:-1;;;16303:2:1;16288:18;;16281:47;16360:3;16345:19;;15957:413::o;18892:224::-;18931:3;18959:6;18992:2;18989:1;18985:10;19022:2;19019:1;19015:10;19053:3;19049:2;19045:12;19040:3;19037:21;19034:47;;;19061:18;;:::i;:::-;19097:13;;18892:224;-1:-1:-1;;;;18892:224:1:o;19121:128::-;19161:3;19192:1;19188:6;19185:1;19182:13;19179:39;;;19198:18;;:::i;:::-;-1:-1:-1;19234:9:1;;19121:128::o;19254:120::-;19294:1;19320;19310:35;;19325:18;;:::i;:::-;-1:-1:-1;19359:9:1;;19254:120::o;19379:168::-;19419:7;19485:1;19481;19477:6;19473:14;19470:1;19467:21;19462:1;19455:9;19448:17;19444:45;19441:71;;;19492:18;;:::i;:::-;-1:-1:-1;19532:9:1;;19379:168::o;19552:217::-;19591:4;19620:6;19676:10;;;;19646;;19698:12;;;19695:38;;;19713:18;;:::i;:::-;19750:13;;19552:217;-1:-1:-1;;;19552:217:1:o;19774:125::-;19814:4;19842:1;19839;19836:8;19833:34;;;19847:18;;:::i;:::-;-1:-1:-1;19884:9:1;;19774:125::o;19904:258::-;19976:1;19986:113;20000:6;19997:1;19994:13;19986:113;;;20076:11;;;20070:18;20057:11;;;20050:39;20022:2;20015:10;19986:113;;;20117:6;20114:1;20111:13;20108:48;;;-1:-1:-1;;20152:1:1;20134:16;;20127:27;19904:258::o;20167:380::-;20246:1;20242:12;;;;20289;;;20310:61;;20364:4;20356:6;20352:17;20342:27;;20310:61;20417:2;20409:6;20406:14;20386:18;20383:38;20380:161;;;20463:10;20458:3;20454:20;20451:1;20444:31;20498:4;20495:1;20488:15;20526:4;20523:1;20516:15;20380:161;;20167:380;;;:::o;20552:197::-;20590:3;20618:6;20659:2;20652:5;20648:14;20686:2;20677:7;20674:15;20671:41;;;20692:18;;:::i;:::-;20741:1;20728:15;;20552:197;-1:-1:-1;;;20552:197:1:o;20754:135::-;20793:3;-1:-1:-1;;20814:17:1;;20811:43;;;20834:18;;:::i;:::-;-1:-1:-1;20881:1:1;20870:13;;20754:135::o;20894:112::-;20926:1;20952;20942:35;;20957:18;;:::i;:::-;-1:-1:-1;20991:9:1;;20894:112::o;21011:127::-;21072:10;21067:3;21063:20;21060:1;21053:31;21103:4;21100:1;21093:15;21127:4;21124:1;21117:15;21143:127;21204:10;21199:3;21195:20;21192:1;21185:31;21235:4;21232:1;21225:15;21259:4;21256:1;21249:15;21275:127;21336:10;21331:3;21327:20;21324:1;21317:31;21367:4;21364:1;21357:15;21391:4;21388:1;21381:15;21407:127;21468:10;21463:3;21459:20;21456:1;21449:31;21499:4;21496:1;21489:15;21523:4;21520:1;21513:15;21539:131;-1:-1:-1;;;;;;21613:32:1;;21603:43;;21593:71;;21660:1;21657;21650:12

Swarm Source

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