ETH Price: $3,050.66 (+2.36%)
Gas: 1 Gwei

Token

DMT GODS (DMT)
 

Overview

Max Total Supply

66 DMT

Holders

42

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DMT
0x78387dae0367743e77137e100c94a2edd182a2e4
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:
DmtGods

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-07-12
*/

// SPDX-License-Identifier: MIT

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

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

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}


/*
 * @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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


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


/**
 * @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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


/**
 * @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, Ownable {
    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) internal _owners;

    // Mapping owner address to token count
    mapping(address => uint256) internal _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}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

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

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

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

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

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

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

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

    function _batchMint(address to, uint256[] memory tokenIds)
        internal
        virtual
    {
        require(to != address(0), "ERC721: mint to the zero address");
        _balances[to] += tokenIds.length;

        for (uint256 i; i < tokenIds.length; i++) {
            require(!_exists(tokenIds[i]), "ERC721: token already minted");

            _beforeTokenTransfer(address(0), to, tokenIds[i]);

            _owners[tokenIds[i]] = to;

            emit Transfer(address(0), to, tokenIds[i]);
        }
    }

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}



contract DmtGods is ERC721 {

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    modifier mintCompliance(uint256 _mintAmount) {
     require(availableTokens.length >= _mintAmount, "No tokens left to be claimed");
        _;
    }

    modifier claimStarted() {
        require( startClaim, "You are too early" );
        _;
    }

    bool private startClaim = false;
    uint256 private claimPrice =  0.15 ether;
    uint256 private totalTokens = 99;
    uint256 private totalMintedTokens = 0; 
    uint128 private resNFTs = 8;
    uint256 private totalReserved = 0;
    string private baseURI = "ipfs://QmZcQ4PRMgDxmRgvEs58gnXh1mx8w7JCzsVtzhbQ5cTBiH/";


    uint16[] availableTokens;

    constructor() ERC721("DMT GODS", "DMT") {}

    /**
     * @dev Allows to withdraw the Ether in the contract and split it among the collaborators
     */
    function withdraw() external onlyOwner {
        uint256 totalBalance = address(this).balance;

        (bool devOk, ) = payable(0xC0E8Cd57e13a5213bC4FcEe838A244D6d0e870Ce).call{
            value: (totalBalance * 30) / 100
        }("");
        require(devOk);
        
         (bool ownerOk, ) = payable(msg.sender).call{
            value: (totalBalance * 70) / 100
        }("");
        require(ownerOk);
    }

    /**
     * @dev Sets the base URI for the API that provides the NFT data.
     */
    function setBaseTokenURI(string memory _uri) external onlyOwner {
        baseURI = _uri;
    }

    /**
     * @dev Sets the claim price for each token
     */
    function setClaimPrice(uint256 _claimPrice) external onlyOwner {
        claimPrice = _claimPrice;
    }

    /**
     * @dev Populates the available tokens
     */
    function addAvailableTokens(uint16 from, uint16 to)
        external
        onlyOwner
    {
       for (uint16 i = from; i <= to; i++) {
            availableTokens.push(i);
        }
    }

    /**
     * @dev enable it so that users can start claiming tokens
     */
    function toggleStartClaim()
        external
        onlyOwner
    {
        startClaim = !startClaim;
    }

 
    function reserveNFTs(uint256 amount) external onlyOwner mintCompliance(amount) {  
        require(totalReserved+amount <= resNFTs,"you can not reserve more");
        uint256[] memory tokenIds = new uint256[](amount);

        totalMintedTokens += amount;
		      totalReserved += amount;

        for (uint256 i; i < amount; i++) {
            tokenIds[i] = getTokenToBeClaimed();
        }
        _batchMint(msg.sender, tokenIds);
    }

    /**
     * @dev Claim up to 10 tokens at once
     */
    function claimTokens(uint256 amount)
        external
        payable
        callerIsUser
        claimStarted
        mintCompliance(amount)
    {
        require(totalMintedTokens+amount <= totalTokens,"you can not mint more");
        require(
            msg.value >= claimPrice * amount,
            "Not enough Ether to claim the tokens"
        );
        require(
            amount>0 && amount<=10,
            "Token amount is not valid"
        );


        require(availableTokens.length >= amount, "No tokens left to be claimed");

        uint256[] memory tokenIds = new uint256[](amount);

        totalMintedTokens += amount;

        for (uint256 i; i < amount; i++) {
            tokenIds[i] = getTokenToBeClaimed();
        }

        _batchMint(msg.sender, tokenIds);
    }

    /**
     * @dev Returns the tokenId by index
     */
    function tokenByIndex(uint256 tokenId) external view returns (uint256) {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );

        return tokenId;
    }

    /**
     * @dev Returns the base URI for the tokens API.
     */
    function baseTokenURI() external view returns (string memory) {
        return baseURI;
    }

    /**
     * @dev Returns how many tokens are still available to be claimed
     */
    function getAvailableTokens() external view returns (uint256) {
        return availableTokens.length;
    }

    /**
     * @dev Returns the claim price
     */
    function getClaimPrice() external view returns (uint256) {
        return claimPrice;
    }

    /**
     * @dev Returns the total supply
     */
    function totalSupply() external view virtual returns (uint256) {
        return totalMintedTokens;
    }

    // Private and Internal functions

    /**
     * @dev Returns a random available token to be claimed
     */
    function getTokenToBeClaimed() private returns (uint256) {
        uint256 random = _getRandomNumber(availableTokens.length);
        uint256 tokenId = uint256(availableTokens[random]);

        availableTokens[random] = availableTokens[availableTokens.length - 1];
        availableTokens.pop();

        return tokenId;
    }

    /**
     * @dev Generates a pseudo-random number.
     */
    function _getRandomNumber(uint256 _upper) private view returns (uint256) {
        uint256 random = uint256(
            keccak256(
                abi.encodePacked(
                    availableTokens.length,
                    blockhash(block.number - 1),
                    block.coinbase,
                    block.difficulty,
                    msg.sender
                )
            )
        );

        return random % _upper;
    }

    /**
     * @dev See {ERC721}.
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (
            ownedTokenIndex < ownerTokenCount && currentTokenId <= 99
        ) {
            if( _exists(currentTokenId)){
                address currentTokenOwner = ownerOf(currentTokenId);

                if (currentTokenOwner == _owner) {
                    ownedTokenIds[ownedTokenIndex] = currentTokenId;

                    ownedTokenIndex++;
                }
            }

            currentTokenId++;
        }

        return ownedTokenIds;
    }
}

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":[{"internalType":"uint16","name":"from","type":"uint16"},{"internalType":"uint16","name":"to","type":"uint16"}],"name":"addAvailableTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAvailableTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserveNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_claimPrice","type":"uint256"}],"name":"setClaimPrice","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":[],"name":"toggleStartClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6007805460ff19169055670214e8348c4f0000600890815560636009556000600a819055600b80546001600160801b031916909217909155600c5560e060405260366080818152906200265b60a03980516200006491600d9160209091019062000144565b503480156200007257600080fd5b5060405180604001604052806008815260200167444d5420474f445360c01b8152506040518060400160405280600381526020016211135560ea1b8152506000620000c26200014060201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35081516200012190600190602085019062000144565b5080516200013790600290602084019062000144565b50505062000227565b3390565b8280546200015290620001ea565b90600052602060002090601f016020900481019282620001765760008555620001c1565b82601f106200019157805160ff1916838001178555620001c1565b82800160010185558215620001c1579182015b82811115620001c1578251825591602001919060010190620001a4565b50620001cf929150620001d3565b5090565b5b80821115620001cf5760008155600101620001d4565b600181811c90821680620001ff57607f821691505b602082108114156200022157634e487b7160e01b600052602260045260246000fd5b50919050565b61242480620002376000396000f3fe6080604052600436106101c25760003560e01c8063585526b4116100f7578063b88d4fde11610095578063e35568cb11610064578063e35568cb146104d3578063e985e9c5146104e8578063efb3d00814610531578063f2fde38b1461055157600080fd5b8063b88d4fde1461045e578063bc7df0911461047e578063c87b56dd1461049e578063d547cfb7146104be57600080fd5b8063715018a6116100d1578063715018a6146103f65780638da5cb5b1461040b57806395d89b4114610429578063a22cb4651461043e57600080fd5b8063585526b4146103a15780636352211e146103b657806370a08231146103d657600080fd5b806330176e1311610164578063438b63001161013e578063438b63001461032157806346e04a2f1461034e5780634f6ccce71461036157806351f468c01461038157600080fd5b806330176e13146102cc5780633ccfd60b146102ec57806342842e0e1461030157600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806321f6d5871461029757806323b872dd146102ac57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611f3d565b610571565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105c3565b6040516101f391906120df565b34801561022a57600080fd5b5061023e610239366004611fea565b610655565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611f13565b6106e2565b005b34801561028457600080fd5b50600a545b6040519081526020016101f3565b3480156102a357600080fd5b50600854610289565b3480156102b857600080fd5b506102766102c7366004611e1f565b6107f8565b3480156102d857600080fd5b506102766102e7366004611f77565b610829565b3480156102f857600080fd5b5061027661086a565b34801561030d57600080fd5b5061027661031c366004611e1f565b61097b565b34801561032d57600080fd5b5061034161033c366004611dd1565b610996565b6040516101f3919061209b565b61027661035c366004611fea565b610a85565b34801561036d57600080fd5b5061028961037c366004611fea565b610d29565b34801561038d57600080fd5b5061027661039c366004611fea565b610d54565b3480156103ad57600080fd5b50610276610d83565b3480156103c257600080fd5b5061023e6103d1366004611fea565b610dc1565b3480156103e257600080fd5b506102896103f1366004611dd1565b610e38565b34801561040257600080fd5b50610276610ebf565b34801561041757600080fd5b506000546001600160a01b031661023e565b34801561043557600080fd5b50610211610f33565b34801561044a57600080fd5b50610276610459366004611ed7565b610f42565b34801561046a57600080fd5b50610276610479366004611e5b565b611007565b34801561048a57600080fd5b50610276610499366004611fea565b61103f565b3480156104aa57600080fd5b506102116104b9366004611fea565b6111bb565b3480156104ca57600080fd5b50610211611286565b3480156104df57600080fd5b50600e54610289565b3480156104f457600080fd5b506101e7610503366004611dec565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561053d57600080fd5b5061027661054c366004611fc0565b611295565b34801561055d57600080fd5b5061027661056c366004611dd1565b61133a565b60006001600160e01b031982166380ac58cd60e01b14806105a257506001600160e01b03198216635b5e139f60e01b145b806105bd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105d2906122db565b80601f01602080910402602001604051908101604052809291908181526020018280546105fe906122db565b801561064b5780601f106106205761010080835404028352916020019161064b565b820191906000526020600020905b81548152906001019060200180831161062e57829003601f168201915b5050505050905090565b600061066082611424565b6106c65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106ed82610dc1565b9050806001600160a01b0316836001600160a01b0316141561075b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106bd565b336001600160a01b038216148061077757506107778133610503565b6107e95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106bd565b6107f38383611441565b505050565b61080233826114af565b61081e5760405162461bcd60e51b81526004016106bd906121fc565b6107f3838383611554565b6000546001600160a01b031633146108535760405162461bcd60e51b81526004016106bd906121c7565b805161086690600d906020840190611c9d565b5050565b6000546001600160a01b031633146108945760405162461bcd60e51b81526004016106bd906121c7565b47600073c0e8cd57e13a5213bc4fcee838a244d6d0e870ce60646108b984601e612279565b6108c39190612265565b604051600081818185875af1925050503d80600081146108ff576040519150601f19603f3d011682016040523d82523d6000602084013e610904565b606091505b505090508061091257600080fd5b6000336064610922856046612279565b61092c9190612265565b604051600081818185875af1925050503d8060008114610968576040519150601f19603f3d011682016040523d82523d6000602084013e61096d565b606091505b50509050806107f357600080fd5b6107f383838360405180602001604052806000815250611007565b606060006109a383610e38565b905060008167ffffffffffffffff8111156109c0576109c06123bf565b6040519080825280602002602001820160405280156109e9578160200160208202803683370190505b509050600160005b8381108015610a01575060638211155b15610a7b57610a0f82611424565b15610a69576000610a1f83610dc1565b9050866001600160a01b0316816001600160a01b03161415610a675782848381518110610a4e57610a4e6123a9565b602090810291909101015281610a6381612338565b9250505b505b81610a7381612338565b9250506109f1565b5090949350505050565b323314610ad45760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016106bd565b60075460ff16610b1a5760405162461bcd60e51b8152602060048201526011602482015270596f752061726520746f6f206561726c7960781b60448201526064016106bd565b600e548190811115610b3e5760405162461bcd60e51b81526004016106bd90612144565b60095482600a54610b4f919061224d565b1115610b955760405162461bcd60e51b8152602060048201526015602482015274796f752063616e206e6f74206d696e74206d6f726560581b60448201526064016106bd565b81600854610ba39190612279565b341015610bfe5760405162461bcd60e51b8152602060048201526024808201527f4e6f7420656e6f75676820457468657220746f20636c61696d2074686520746f6044820152636b656e7360e01b60648201526084016106bd565b600082118015610c0f5750600a8211155b610c5b5760405162461bcd60e51b815260206004820152601960248201527f546f6b656e20616d6f756e74206973206e6f742076616c69640000000000000060448201526064016106bd565b600e54821115610c7d5760405162461bcd60e51b81526004016106bd90612144565b60008267ffffffffffffffff811115610c9857610c986123bf565b604051908082528060200260200182016040528015610cc1578160200160208202803683370190505b50905082600a6000828254610cd6919061224d565b90915550600090505b83811015610d1e57610cef6116f4565b828281518110610d0157610d016123a9565b602090810291909101015280610d1681612338565b915050610cdf565b506107f33382611813565b6000610d3482611424565b610d505760405162461bcd60e51b81526004016106bd9061217b565b5090565b6000546001600160a01b03163314610d7e5760405162461bcd60e51b81526004016106bd906121c7565b600855565b6000546001600160a01b03163314610dad5760405162461bcd60e51b81526004016106bd906121c7565b6007805460ff19811660ff90911615179055565b6000818152600360205260408120546001600160a01b0316806105bd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106bd565b60006001600160a01b038216610ea35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106bd565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610ee95760405162461bcd60e51b81526004016106bd906121c7565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6060600280546105d2906122db565b6001600160a01b038216331415610f9b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106bd565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61101133836114af565b61102d5760405162461bcd60e51b81526004016106bd906121fc565b611039848484846119ea565b50505050565b6000546001600160a01b031633146110695760405162461bcd60e51b81526004016106bd906121c7565b600e54819081111561108d5760405162461bcd60e51b81526004016106bd90612144565b600b54600c546fffffffffffffffffffffffffffffffff909116906110b390849061224d565b11156111015760405162461bcd60e51b815260206004820152601860248201527f796f752063616e206e6f742072657365727665206d6f7265000000000000000060448201526064016106bd565b60008267ffffffffffffffff81111561111c5761111c6123bf565b604051908082528060200260200182016040528015611145578160200160208202803683370190505b50905082600a600082825461115a919061224d565b9250508190555082600c6000828254611173919061224d565b90915550600090505b83811015610d1e5761118c6116f4565b82828151811061119e5761119e6123a9565b6020908102919091010152806111b381612338565b91505061117c565b60606111c682611424565b61122a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106bd565b6000611234611286565b90506000815111611254576040518060200160405280600081525061127f565b8061125e84611a1d565b60405160200161126f92919061202f565b6040516020818303038152906040525b9392505050565b6060600d80546105d2906122db565b6000546001600160a01b031633146112bf5760405162461bcd60e51b81526004016106bd906121c7565b815b8161ffff168161ffff16116107f357600e80546001810182556000919091527fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd60108204018054600f9092166002026101000a61ffff81810219909316928416029190911790558061133281612316565b9150506112c1565b6000546001600160a01b031633146113645760405162461bcd60e51b81526004016106bd906121c7565b6001600160a01b0381166113c95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106bd565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000908152600360205260409020546001600160a01b0316151590565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061147682610dc1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006114ba82611424565b6114d65760405162461bcd60e51b81526004016106bd9061217b565b60006114e183610dc1565b9050806001600160a01b0316846001600160a01b0316148061151c5750836001600160a01b031661151184610655565b6001600160a01b0316145b8061154c57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661156782610dc1565b6001600160a01b0316146115cf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106bd565b6001600160a01b0382166116315760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106bd565b61163c600082611441565b6001600160a01b0383166000908152600460205260408120805460019290611665908490612298565b90915550506001600160a01b038216600090815260046020526040812080546001929061169390849061224d565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080611705600e80549050611b1b565b90506000600e828154811061171c5761171c6123a9565b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff169050600e6001600e8054905061175a9190612298565b8154811061176a5761176a6123a9565b90600052602060002090601091828204019190066002029054906101000a900461ffff16600e83815481106117a1576117a16123a9565b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550600e8054806117e1576117e1612393565b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a0219169055905592915050565b6001600160a01b0382166118695760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106bd565b80516001600160a01b0383166000908152600460205260408120805490919061189390849061224d565b90915550600090505b81518110156107f3576118c78282815181106118ba576118ba6123a9565b6020026020010151611424565b156119145760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106bd565b61192c600084848481518110611039576110396123a9565b8260036000848481518110611943576119436123a9565b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b0316021790555081818151811061198f5761198f6123a9565b6020026020010151836001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4806119e281612338565b91505061189c565b6119f5848484611554565b611a0184848484611b90565b6110395760405162461bcd60e51b81526004016106bd906120f2565b606081611a415750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a6b5780611a5581612338565b9150611a649050600a83612265565b9150611a45565b60008167ffffffffffffffff811115611a8657611a866123bf565b6040519080825280601f01601f191660200182016040528015611ab0576020820181803683370190505b5090505b841561154c57611ac5600183612298565b9150611ad2600a86612353565b611add90603061224d565b60f81b818381518110611af257611af26123a9565b60200101906001600160f81b031916908160001a905350611b14600a86612265565b9450611ab4565b600e546000908190611b2e600143612298565b6040805160208101939093529040908201526bffffffffffffffffffffffff1941606090811b82168184015244607484015233901b16609482015260a80160408051601f198184030181529190528051602090910120905061127f8382612353565b60006001600160a01b0384163b15611c9257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bd490339089908890889060040161205e565b602060405180830381600087803b158015611bee57600080fd5b505af1925050508015611c1e575060408051601f3d908101601f19168201909252611c1b91810190611f5a565b60015b611c78573d808015611c4c576040519150601f19603f3d011682016040523d82523d6000602084013e611c51565b606091505b508051611c705760405162461bcd60e51b81526004016106bd906120f2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061154c565b506001949350505050565b828054611ca9906122db565b90600052602060002090601f016020900481019282611ccb5760008555611d11565b82601f10611ce457805160ff1916838001178555611d11565b82800160010185558215611d11579182015b82811115611d11578251825591602001919060010190611cf6565b50610d509291505b80821115610d505760008155600101611d19565b600067ffffffffffffffff80841115611d4857611d486123bf565b604051601f8501601f19908116603f01168101908282118183101715611d7057611d706123bf565b81604052809350858152868686011115611d8957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611dba57600080fd5b919050565b803561ffff81168114611dba57600080fd5b600060208284031215611de357600080fd5b61127f82611da3565b60008060408385031215611dff57600080fd5b611e0883611da3565b9150611e1660208401611da3565b90509250929050565b600080600060608486031215611e3457600080fd5b611e3d84611da3565b9250611e4b60208501611da3565b9150604084013590509250925092565b60008060008060808587031215611e7157600080fd5b611e7a85611da3565b9350611e8860208601611da3565b925060408501359150606085013567ffffffffffffffff811115611eab57600080fd5b8501601f81018713611ebc57600080fd5b611ecb87823560208401611d2d565b91505092959194509250565b60008060408385031215611eea57600080fd5b611ef383611da3565b915060208301358015158114611f0857600080fd5b809150509250929050565b60008060408385031215611f2657600080fd5b611f2f83611da3565b946020939093013593505050565b600060208284031215611f4f57600080fd5b813561127f816123d5565b600060208284031215611f6c57600080fd5b815161127f816123d5565b600060208284031215611f8957600080fd5b813567ffffffffffffffff811115611fa057600080fd5b8201601f81018413611fb157600080fd5b61154c84823560208401611d2d565b60008060408385031215611fd357600080fd5b611fdc83611dbf565b9150611e1660208401611dbf565b600060208284031215611ffc57600080fd5b5035919050565b6000815180845261201b8160208601602086016122af565b601f01601f19169290920160200192915050565b600083516120418184602088016122af565b8351908301906120558183602088016122af565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061209190830184612003565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120d3578351835292840192918401916001016120b7565b50909695505050505050565b60208152600061127f6020830184612003565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601c908201527f4e6f20746f6b656e73206c65667420746f20626520636c61696d656400000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561226057612260612367565b500190565b6000826122745761227461237d565b500490565b600081600019048311821515161561229357612293612367565b500290565b6000828210156122aa576122aa612367565b500390565b60005b838110156122ca5781810151838201526020016122b2565b838111156110395750506000910152565b600181811c908216806122ef57607f821691505b6020821081141561231057634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff8083168181141561232e5761232e612367565b6001019392505050565b600060001982141561234c5761234c612367565b5060010190565b6000826123625761236261237d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146123eb57600080fd5b5056fea2646970667358221220e277554d22fdb49da23fa169c642f3e6db7a4cc84236e0f04171f02a90beb31664736f6c63430008070033697066733a2f2f516d5a63513450524d6744786d52677645733538676e5868316d783877374a437a7356747a6862513563544269482f

Deployed Bytecode

0x6080604052600436106101c25760003560e01c8063585526b4116100f7578063b88d4fde11610095578063e35568cb11610064578063e35568cb146104d3578063e985e9c5146104e8578063efb3d00814610531578063f2fde38b1461055157600080fd5b8063b88d4fde1461045e578063bc7df0911461047e578063c87b56dd1461049e578063d547cfb7146104be57600080fd5b8063715018a6116100d1578063715018a6146103f65780638da5cb5b1461040b57806395d89b4114610429578063a22cb4651461043e57600080fd5b8063585526b4146103a15780636352211e146103b657806370a08231146103d657600080fd5b806330176e1311610164578063438b63001161013e578063438b63001461032157806346e04a2f1461034e5780634f6ccce71461036157806351f468c01461038157600080fd5b806330176e13146102cc5780633ccfd60b146102ec57806342842e0e1461030157600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806321f6d5871461029757806323b872dd146102ac57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611f3d565b610571565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105c3565b6040516101f391906120df565b34801561022a57600080fd5b5061023e610239366004611fea565b610655565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611f13565b6106e2565b005b34801561028457600080fd5b50600a545b6040519081526020016101f3565b3480156102a357600080fd5b50600854610289565b3480156102b857600080fd5b506102766102c7366004611e1f565b6107f8565b3480156102d857600080fd5b506102766102e7366004611f77565b610829565b3480156102f857600080fd5b5061027661086a565b34801561030d57600080fd5b5061027661031c366004611e1f565b61097b565b34801561032d57600080fd5b5061034161033c366004611dd1565b610996565b6040516101f3919061209b565b61027661035c366004611fea565b610a85565b34801561036d57600080fd5b5061028961037c366004611fea565b610d29565b34801561038d57600080fd5b5061027661039c366004611fea565b610d54565b3480156103ad57600080fd5b50610276610d83565b3480156103c257600080fd5b5061023e6103d1366004611fea565b610dc1565b3480156103e257600080fd5b506102896103f1366004611dd1565b610e38565b34801561040257600080fd5b50610276610ebf565b34801561041757600080fd5b506000546001600160a01b031661023e565b34801561043557600080fd5b50610211610f33565b34801561044a57600080fd5b50610276610459366004611ed7565b610f42565b34801561046a57600080fd5b50610276610479366004611e5b565b611007565b34801561048a57600080fd5b50610276610499366004611fea565b61103f565b3480156104aa57600080fd5b506102116104b9366004611fea565b6111bb565b3480156104ca57600080fd5b50610211611286565b3480156104df57600080fd5b50600e54610289565b3480156104f457600080fd5b506101e7610503366004611dec565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561053d57600080fd5b5061027661054c366004611fc0565b611295565b34801561055d57600080fd5b5061027661056c366004611dd1565b61133a565b60006001600160e01b031982166380ac58cd60e01b14806105a257506001600160e01b03198216635b5e139f60e01b145b806105bd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105d2906122db565b80601f01602080910402602001604051908101604052809291908181526020018280546105fe906122db565b801561064b5780601f106106205761010080835404028352916020019161064b565b820191906000526020600020905b81548152906001019060200180831161062e57829003601f168201915b5050505050905090565b600061066082611424565b6106c65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106ed82610dc1565b9050806001600160a01b0316836001600160a01b0316141561075b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106bd565b336001600160a01b038216148061077757506107778133610503565b6107e95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106bd565b6107f38383611441565b505050565b61080233826114af565b61081e5760405162461bcd60e51b81526004016106bd906121fc565b6107f3838383611554565b6000546001600160a01b031633146108535760405162461bcd60e51b81526004016106bd906121c7565b805161086690600d906020840190611c9d565b5050565b6000546001600160a01b031633146108945760405162461bcd60e51b81526004016106bd906121c7565b47600073c0e8cd57e13a5213bc4fcee838a244d6d0e870ce60646108b984601e612279565b6108c39190612265565b604051600081818185875af1925050503d80600081146108ff576040519150601f19603f3d011682016040523d82523d6000602084013e610904565b606091505b505090508061091257600080fd5b6000336064610922856046612279565b61092c9190612265565b604051600081818185875af1925050503d8060008114610968576040519150601f19603f3d011682016040523d82523d6000602084013e61096d565b606091505b50509050806107f357600080fd5b6107f383838360405180602001604052806000815250611007565b606060006109a383610e38565b905060008167ffffffffffffffff8111156109c0576109c06123bf565b6040519080825280602002602001820160405280156109e9578160200160208202803683370190505b509050600160005b8381108015610a01575060638211155b15610a7b57610a0f82611424565b15610a69576000610a1f83610dc1565b9050866001600160a01b0316816001600160a01b03161415610a675782848381518110610a4e57610a4e6123a9565b602090810291909101015281610a6381612338565b9250505b505b81610a7381612338565b9250506109f1565b5090949350505050565b323314610ad45760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016106bd565b60075460ff16610b1a5760405162461bcd60e51b8152602060048201526011602482015270596f752061726520746f6f206561726c7960781b60448201526064016106bd565b600e548190811115610b3e5760405162461bcd60e51b81526004016106bd90612144565b60095482600a54610b4f919061224d565b1115610b955760405162461bcd60e51b8152602060048201526015602482015274796f752063616e206e6f74206d696e74206d6f726560581b60448201526064016106bd565b81600854610ba39190612279565b341015610bfe5760405162461bcd60e51b8152602060048201526024808201527f4e6f7420656e6f75676820457468657220746f20636c61696d2074686520746f6044820152636b656e7360e01b60648201526084016106bd565b600082118015610c0f5750600a8211155b610c5b5760405162461bcd60e51b815260206004820152601960248201527f546f6b656e20616d6f756e74206973206e6f742076616c69640000000000000060448201526064016106bd565b600e54821115610c7d5760405162461bcd60e51b81526004016106bd90612144565b60008267ffffffffffffffff811115610c9857610c986123bf565b604051908082528060200260200182016040528015610cc1578160200160208202803683370190505b50905082600a6000828254610cd6919061224d565b90915550600090505b83811015610d1e57610cef6116f4565b828281518110610d0157610d016123a9565b602090810291909101015280610d1681612338565b915050610cdf565b506107f33382611813565b6000610d3482611424565b610d505760405162461bcd60e51b81526004016106bd9061217b565b5090565b6000546001600160a01b03163314610d7e5760405162461bcd60e51b81526004016106bd906121c7565b600855565b6000546001600160a01b03163314610dad5760405162461bcd60e51b81526004016106bd906121c7565b6007805460ff19811660ff90911615179055565b6000818152600360205260408120546001600160a01b0316806105bd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106bd565b60006001600160a01b038216610ea35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106bd565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610ee95760405162461bcd60e51b81526004016106bd906121c7565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6060600280546105d2906122db565b6001600160a01b038216331415610f9b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106bd565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61101133836114af565b61102d5760405162461bcd60e51b81526004016106bd906121fc565b611039848484846119ea565b50505050565b6000546001600160a01b031633146110695760405162461bcd60e51b81526004016106bd906121c7565b600e54819081111561108d5760405162461bcd60e51b81526004016106bd90612144565b600b54600c546fffffffffffffffffffffffffffffffff909116906110b390849061224d565b11156111015760405162461bcd60e51b815260206004820152601860248201527f796f752063616e206e6f742072657365727665206d6f7265000000000000000060448201526064016106bd565b60008267ffffffffffffffff81111561111c5761111c6123bf565b604051908082528060200260200182016040528015611145578160200160208202803683370190505b50905082600a600082825461115a919061224d565b9250508190555082600c6000828254611173919061224d565b90915550600090505b83811015610d1e5761118c6116f4565b82828151811061119e5761119e6123a9565b6020908102919091010152806111b381612338565b91505061117c565b60606111c682611424565b61122a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106bd565b6000611234611286565b90506000815111611254576040518060200160405280600081525061127f565b8061125e84611a1d565b60405160200161126f92919061202f565b6040516020818303038152906040525b9392505050565b6060600d80546105d2906122db565b6000546001600160a01b031633146112bf5760405162461bcd60e51b81526004016106bd906121c7565b815b8161ffff168161ffff16116107f357600e80546001810182556000919091527fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd60108204018054600f9092166002026101000a61ffff81810219909316928416029190911790558061133281612316565b9150506112c1565b6000546001600160a01b031633146113645760405162461bcd60e51b81526004016106bd906121c7565b6001600160a01b0381166113c95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106bd565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000908152600360205260409020546001600160a01b0316151590565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061147682610dc1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006114ba82611424565b6114d65760405162461bcd60e51b81526004016106bd9061217b565b60006114e183610dc1565b9050806001600160a01b0316846001600160a01b0316148061151c5750836001600160a01b031661151184610655565b6001600160a01b0316145b8061154c57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661156782610dc1565b6001600160a01b0316146115cf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106bd565b6001600160a01b0382166116315760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106bd565b61163c600082611441565b6001600160a01b0383166000908152600460205260408120805460019290611665908490612298565b90915550506001600160a01b038216600090815260046020526040812080546001929061169390849061224d565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080611705600e80549050611b1b565b90506000600e828154811061171c5761171c6123a9565b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff169050600e6001600e8054905061175a9190612298565b8154811061176a5761176a6123a9565b90600052602060002090601091828204019190066002029054906101000a900461ffff16600e83815481106117a1576117a16123a9565b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550600e8054806117e1576117e1612393565b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a0219169055905592915050565b6001600160a01b0382166118695760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106bd565b80516001600160a01b0383166000908152600460205260408120805490919061189390849061224d565b90915550600090505b81518110156107f3576118c78282815181106118ba576118ba6123a9565b6020026020010151611424565b156119145760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106bd565b61192c600084848481518110611039576110396123a9565b8260036000848481518110611943576119436123a9565b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b0316021790555081818151811061198f5761198f6123a9565b6020026020010151836001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4806119e281612338565b91505061189c565b6119f5848484611554565b611a0184848484611b90565b6110395760405162461bcd60e51b81526004016106bd906120f2565b606081611a415750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a6b5780611a5581612338565b9150611a649050600a83612265565b9150611a45565b60008167ffffffffffffffff811115611a8657611a866123bf565b6040519080825280601f01601f191660200182016040528015611ab0576020820181803683370190505b5090505b841561154c57611ac5600183612298565b9150611ad2600a86612353565b611add90603061224d565b60f81b818381518110611af257611af26123a9565b60200101906001600160f81b031916908160001a905350611b14600a86612265565b9450611ab4565b600e546000908190611b2e600143612298565b6040805160208101939093529040908201526bffffffffffffffffffffffff1941606090811b82168184015244607484015233901b16609482015260a80160408051601f198184030181529190528051602090910120905061127f8382612353565b60006001600160a01b0384163b15611c9257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bd490339089908890889060040161205e565b602060405180830381600087803b158015611bee57600080fd5b505af1925050508015611c1e575060408051601f3d908101601f19168201909252611c1b91810190611f5a565b60015b611c78573d808015611c4c576040519150601f19603f3d011682016040523d82523d6000602084013e611c51565b606091505b508051611c705760405162461bcd60e51b81526004016106bd906120f2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061154c565b506001949350505050565b828054611ca9906122db565b90600052602060002090601f016020900481019282611ccb5760008555611d11565b82601f10611ce457805160ff1916838001178555611d11565b82800160010185558215611d11579182015b82811115611d11578251825591602001919060010190611cf6565b50610d509291505b80821115610d505760008155600101611d19565b600067ffffffffffffffff80841115611d4857611d486123bf565b604051601f8501601f19908116603f01168101908282118183101715611d7057611d706123bf565b81604052809350858152868686011115611d8957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611dba57600080fd5b919050565b803561ffff81168114611dba57600080fd5b600060208284031215611de357600080fd5b61127f82611da3565b60008060408385031215611dff57600080fd5b611e0883611da3565b9150611e1660208401611da3565b90509250929050565b600080600060608486031215611e3457600080fd5b611e3d84611da3565b9250611e4b60208501611da3565b9150604084013590509250925092565b60008060008060808587031215611e7157600080fd5b611e7a85611da3565b9350611e8860208601611da3565b925060408501359150606085013567ffffffffffffffff811115611eab57600080fd5b8501601f81018713611ebc57600080fd5b611ecb87823560208401611d2d565b91505092959194509250565b60008060408385031215611eea57600080fd5b611ef383611da3565b915060208301358015158114611f0857600080fd5b809150509250929050565b60008060408385031215611f2657600080fd5b611f2f83611da3565b946020939093013593505050565b600060208284031215611f4f57600080fd5b813561127f816123d5565b600060208284031215611f6c57600080fd5b815161127f816123d5565b600060208284031215611f8957600080fd5b813567ffffffffffffffff811115611fa057600080fd5b8201601f81018413611fb157600080fd5b61154c84823560208401611d2d565b60008060408385031215611fd357600080fd5b611fdc83611dbf565b9150611e1660208401611dbf565b600060208284031215611ffc57600080fd5b5035919050565b6000815180845261201b8160208601602086016122af565b601f01601f19169290920160200192915050565b600083516120418184602088016122af565b8351908301906120558183602088016122af565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061209190830184612003565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120d3578351835292840192918401916001016120b7565b50909695505050505050565b60208152600061127f6020830184612003565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601c908201527f4e6f20746f6b656e73206c65667420746f20626520636c61696d656400000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561226057612260612367565b500190565b6000826122745761227461237d565b500490565b600081600019048311821515161561229357612293612367565b500290565b6000828210156122aa576122aa612367565b500390565b60005b838110156122ca5781810151838201526020016122b2565b838111156110395750506000910152565b600181811c908216806122ef57607f821691505b6020821081141561231057634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff8083168181141561232e5761232e612367565b6001019392505050565b600060001982141561234c5761234c612367565b5060010190565b6000826123625761236261237d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146123eb57600080fd5b5056fea2646970667358221220e277554d22fdb49da23fa169c642f3e6db7a4cc84236e0f04171f02a90beb31664736f6c63430008070033

Deployed Bytecode Sourcemap

36529:6570:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22868:355;;;;;;;;;;-1:-1:-1;22868:355:0;;;;;:::i;:::-;;:::i;:::-;;;7469:14:1;;7462:22;7444:41;;7432:2;7417:18;22868:355:0;;;;;;;;24037:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25643:308::-;;;;;;;;;;-1:-1:-1;25643:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6130:32:1;;;6112:51;;6100:2;6085:18;25643:308:0;5966:203:1;25142:435:0;;;;;;;;;;-1:-1:-1;25142:435:0;;;;;:::i;:::-;;:::i;:::-;;41013:106;;;;;;;;;;-1:-1:-1;41094:17:0;;41013:106;;;16772:25:1;;;16760:2;16745:18;41013:106:0;16626:177:1;40856:93:0;;;;;;;;;;-1:-1:-1;40931:10:0;;40856:93;;26702:376;;;;;;;;;;-1:-1:-1;26702:376:0;;;;;:::i;:::-;;:::i;38015:97::-;;;;;;;;;;-1:-1:-1;38015:97:0;;;;;:::i;:::-;;:::i;37489:429::-;;;;;;;;;;;;;:::i;27149:185::-;;;;;;;;;;-1:-1:-1;27149:185:0;;;;;:::i;:::-;;:::i;42282:814::-;;;;;;;;;;-1:-1:-1;42282:814:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;39293:823::-;;;;;;:::i;:::-;;:::i;40184:227::-;;;;;;;;;;-1:-1:-1;40184:227:0;;;;;:::i;:::-;;:::i;38187:106::-;;;;;;;;;;-1:-1:-1;38187:106:0;;;;;:::i;:::-;;:::i;38649:113::-;;;;;;;;;;;;;:::i;23644:326::-;;;;;;;;;;-1:-1:-1;23644:326:0;;;;;:::i;:::-;;:::i;23287:295::-;;;;;;;;;;-1:-1:-1;23287:295:0;;;;;:::i;:::-;;:::i;21074:148::-;;;;;;;;;;;;;:::i;20423:87::-;;;;;;;;;;-1:-1:-1;20469:7:0;20496:6;-1:-1:-1;;;;;20496:6:0;20423:87;;24206:104;;;;;;;;;;;;;:::i;26023:327::-;;;;;;;;;;-1:-1:-1;26023:327:0;;;;;:::i;:::-;;:::i;27405:365::-;;;;;;;;;;-1:-1:-1;27405:365:0;;;;;:::i;:::-;;:::i;38773:451::-;;;;;;;;;;-1:-1:-1;38773:451:0;;;;;:::i;:::-;;:::i;24381:468::-;;;;;;;;;;-1:-1:-1;24381:468:0;;;;;:::i;:::-;;:::i;40491:95::-;;;;;;;;;;;;;:::i;40683:110::-;;;;;;;;;;-1:-1:-1;40763:15:0;:22;40683:110;;26421:214;;;;;;;;;;-1:-1:-1;26421:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;26592:25:0;;;26563:4;26592:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26421:214;38363:197;;;;;;;;;;-1:-1:-1;38363:197:0;;;;;:::i;:::-;;:::i;21377:244::-;;;;;;;;;;-1:-1:-1;21377:244:0;;;;;:::i;:::-;;:::i;22868:355::-;23015:4;-1:-1:-1;;;;;;23057:40:0;;-1:-1:-1;;;23057:40:0;;:105;;-1:-1:-1;;;;;;;23114:48:0;;-1:-1:-1;;;23114:48:0;23057:105;:158;;;-1:-1:-1;;;;;;;;;;1619:40:0;;;23179:36;23037:178;22868:355;-1:-1:-1;;22868:355:0:o;24037:100::-;24091:13;24124:5;24117:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24037:100;:::o;25643:308::-;25764:7;25811:16;25819:7;25811;:16::i;:::-;25789:110;;;;-1:-1:-1;;;25789:110:0;;13649:2:1;25789:110:0;;;13631:21:1;13688:2;13668:18;;;13661:30;13727:34;13707:18;;;13700:62;-1:-1:-1;;;13778:18:1;;;13771:42;13830:19;;25789:110:0;;;;;;;;;-1:-1:-1;25919:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25919:24:0;;25643:308::o;25142:435::-;25223:13;25239:23;25254:7;25239:14;:23::i;:::-;25223:39;;25287:5;-1:-1:-1;;;;;25281:11:0;:2;-1:-1:-1;;;;;25281:11:0;;;25273:57;;;;-1:-1:-1;;;25273:57:0;;15249:2:1;25273:57:0;;;15231:21:1;15288:2;15268:18;;;15261:30;15327:34;15307:18;;;15300:62;-1:-1:-1;;;15378:18:1;;;15371:31;15419:19;;25273:57:0;15047:397:1;25273:57:0;4274:10;-1:-1:-1;;;;;25365:21:0;;;;:86;;-1:-1:-1;25407:44:0;25431:5;4274:10;26421:214;:::i;25407:44::-;25343:192;;;;-1:-1:-1;;;25343:192:0;;11696:2:1;25343:192:0;;;11678:21:1;11735:2;11715:18;;;11708:30;11774:34;11754:18;;;11747:62;11845:26;11825:18;;;11818:54;11889:19;;25343:192:0;11494:420:1;25343:192:0;25548:21;25557:2;25561:7;25548:8;:21::i;:::-;25212:365;25142:435;;:::o;26702:376::-;26911:41;4274:10;26944:7;26911:18;:41::i;:::-;26889:140;;;;-1:-1:-1;;;26889:140:0;;;;;;;:::i;:::-;27042:28;27052:4;27058:2;27062:7;27042:9;:28::i;38015:97::-;20469:7;20496:6;-1:-1:-1;;;;;20496:6:0;4274:10;20643:23;20635:68;;;;-1:-1:-1;;;20635:68:0;;;;;;;:::i;:::-;38090:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;:::-;;38015:97:::0;:::o;37489:429::-;20469:7;20496:6;-1:-1:-1;;;;;20496:6:0;4274:10;20643:23;20635:68;;;;-1:-1:-1;;;20635:68:0;;;;;;;:::i;:::-;37562:21:::1;37539:20;37621:42;37713:3;37692:17;37562:21:::0;37707:2:::1;37692:17;:::i;:::-;37691:25;;;;:::i;:::-;37613:118;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37596:135;;;37750:5;37742:14;;;::::0;::::1;;37779:12;37805:10;37865:3;37844:17;:12:::0;37859:2:::1;37844:17;:::i;:::-;37843:25;;;;:::i;:::-;37797:86;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37778:105;;;37902:7;37894:16;;;::::0;::::1;27149:185:::0;27287:39;27304:4;27310:2;27314:7;27287:39;;;;;;;;;;;;:16;:39::i;42282:814::-;42369:16;42403:23;42429:17;42439:6;42429:9;:17::i;:::-;42403:43;;42457:30;42504:15;42490:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42490:30:0;-1:-1:-1;42457:63:0;-1:-1:-1;42556:1:0;42531:22;42608:448;42647:15;42629;:33;:57;;;;;42684:2;42666:14;:20;;42629:57;42608:448;;;42717:23;42725:14;42717:7;:23::i;:::-;42713:299;;;42760:25;42788:23;42796:14;42788:7;:23::i;:::-;42760:51;;42857:6;-1:-1:-1;;;;;42836:27:0;:17;-1:-1:-1;;;;;42836:27:0;;42832:165;;;42921:14;42888:13;42902:15;42888:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;42960:17;;;;:::i;:::-;;;;42832:165;42741:271;42713:299;43028:16;;;;:::i;:::-;;;;42608:448;;;-1:-1:-1;43075:13:0;;42282:814;-1:-1:-1;;;;42282:814:0:o;39293:823::-;36608:9;36621:10;36608:23;36600:66;;;;-1:-1:-1;;;36600:66:0;;11337:2:1;36600:66:0;;;11319:21:1;11376:2;11356:18;;;11349:30;11415:32;11395:18;;;11388:60;11465:18;;36600:66:0;11135:354:1;36600:66:0;36897:10:::1;::::0;::::1;;36888:42;;;::::0;-1:-1:-1;;;36888:42:0;;12121:2:1;36888:42:0::1;::::0;::::1;12103:21:1::0;12160:2;12140:18;;;12133:30;-1:-1:-1;;;12179:18:1;;;12172:47;12236:18;;36888:42:0::1;11919:341:1::0;36888:42:0::1;36755:15:::2;:22:::0;39433:6;;36755:37;-1:-1:-1;36755:37:0::2;36747:78;;;;-1:-1:-1::0;;;36747:78:0::2;;;;;;;:::i;:::-;39493:11:::3;;39483:6;39465:17;;:24;;;;:::i;:::-;:39;;39457:72;;;::::0;-1:-1:-1;;;39457:72:0;;9462:2:1;39457:72:0::3;::::0;::::3;9444:21:1::0;9501:2;9481:18;;;9474:30;-1:-1:-1;;;9520:18:1;;;9513:51;9581:18;;39457:72:0::3;9260:345:1::0;39457:72:0::3;39588:6;39575:10;;:19;;;;:::i;:::-;39562:9;:32;;39540:118;;;::::0;-1:-1:-1;;;39540:118:0;;16005:2:1;39540:118:0::3;::::0;::::3;15987:21:1::0;16044:2;16024:18;;;16017:30;16083:34;16063:18;;;16056:62;-1:-1:-1;;;16134:18:1;;;16127:34;16178:19;;39540:118:0::3;15803:400:1::0;39540:118:0::3;39698:1;39691:6;:8;:22;;;;;39711:2;39703:6;:10;;39691:22;39669:97;;;::::0;-1:-1:-1;;;39669:97:0;;15651:2:1;39669:97:0::3;::::0;::::3;15633:21:1::0;15690:2;15670:18;;;15663:30;15729:27;15709:18;;;15702:55;15774:18;;39669:97:0::3;15449:349:1::0;39669:97:0::3;39789:15;:22:::0;:32;-1:-1:-1;39789:32:0::3;39781:73;;;;-1:-1:-1::0;;;39781:73:0::3;;;;;;;:::i;:::-;39867:25;39909:6;39895:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;39895:21:0::3;;39867:49;;39950:6;39929:17;;:27;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;39974:9:0::3;::::0;-1:-1:-1;39969:95:0::3;39989:6;39985:1;:10;39969:95;;;40031:21;:19;:21::i;:::-;40017:8;40026:1;40017:11;;;;;;;;:::i;:::-;;::::0;;::::3;::::0;;;;;:35;39997:3;::::3;::::0;::::3;:::i;:::-;;;;39969:95;;;;40076:32;40087:10;40099:8;40076:10;:32::i;40184:227::-:0;40246:7;40288:16;40296:7;40288;:16::i;:::-;40266:110;;;;-1:-1:-1;;;40266:110:0;;;;;;;:::i;:::-;-1:-1:-1;40396:7:0;40184:227::o;38187:106::-;20469:7;20496:6;-1:-1:-1;;;;;20496:6:0;4274:10;20643:23;20635:68;;;;-1:-1:-1;;;20635:68:0;;;;;;;:::i;:::-;38261:10:::1;:24:::0;38187:106::o;38649:113::-;20469:7;20496:6;-1:-1:-1;;;;;20496:6:0;4274:10;20643:23;20635:68;;;;-1:-1:-1;;;20635:68:0;;;;;;;:::i;:::-;38744:10:::1;::::0;;-1:-1:-1;;38730:24:0;::::1;38744:10;::::0;;::::1;38743:11;38730:24;::::0;;38649:113::o;23644:326::-;23761:7;23802:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23802:16:0;23851:19;23829:110;;;;-1:-1:-1;;;23829:110:0;;12878:2:1;23829:110:0;;;12860:21:1;12917:2;12897:18;;;12890:30;12956:34;12936:18;;;12929:62;-1:-1:-1;;;13007:18:1;;;13000:39;13056:19;;23829:110:0;12676:405:1;23287:295:0;23404:7;-1:-1:-1;;;;;23451:19:0;;23429:111;;;;-1:-1:-1;;;23429:111:0;;12467:2:1;23429:111:0;;;12449:21:1;12506:2;12486:18;;;12479:30;12545:34;12525:18;;;12518:62;-1:-1:-1;;;12596:18:1;;;12589:40;12646:19;;23429:111:0;12265:406:1;23429:111:0;-1:-1:-1;;;;;;23558:16:0;;;;;:9;:16;;;;;;;23287:295::o;21074:148::-;20469:7;20496:6;-1:-1:-1;;;;;20496:6:0;4274:10;20643:23;20635:68;;;;-1:-1:-1;;;20635:68:0;;;;;;;:::i;:::-;21181:1:::1;21165:6:::0;;21144:40:::1;::::0;-1:-1:-1;;;;;21165:6:0;;::::1;::::0;21144:40:::1;::::0;21181:1;;21144:40:::1;21212:1;21195:19:::0;;-1:-1:-1;;;;;;21195:19:0::1;::::0;;21074:148::o;24206:104::-;24262:13;24295:7;24288:14;;;;;:::i;26023:327::-;-1:-1:-1;;;;;26158:24:0;;4274:10;26158:24;;26150:62;;;;-1:-1:-1;;;26150:62:0;;10570:2:1;26150:62:0;;;10552:21:1;10609:2;10589:18;;;10582:30;10648:27;10628:18;;;10621:55;10693:18;;26150:62:0;10368:349:1;26150:62:0;4274:10;26225:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26225:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26225:53:0;;;;;;;;;;26294:48;;7444:41:1;;;26225:42:0;;4274:10;26294:48;;7417:18:1;26294:48:0;;;;;;;26023:327;;:::o;27405:365::-;27594:41;4274:10;27627:7;27594:18;:41::i;:::-;27572:140;;;;-1:-1:-1;;;27572:140:0;;;;;;;:::i;:::-;27723:39;27737:4;27743:2;27747:7;27756:5;27723:13;:39::i;:::-;27405:365;;;;:::o;38773:451::-;20469:7;20496:6;-1:-1:-1;;;;;20496:6:0;4274:10;20643:23;20635:68;;;;-1:-1:-1;;;20635:68:0;;;;;;;:::i;:::-;36755:15:::1;:22:::0;38844:6;;36755:37;-1:-1:-1;36755:37:0::1;36747:78;;;;-1:-1:-1::0;;;36747:78:0::1;;;;;;;:::i;:::-;38897:7:::2;::::0;38873:13:::2;::::0;38897:7:::2;::::0;;::::2;::::0;38873:20:::2;::::0;38887:6;;38873:20:::2;:::i;:::-;:31;;38865:67;;;::::0;-1:-1:-1;;;38865:67:0;;9812:2:1;38865:67:0::2;::::0;::::2;9794:21:1::0;9851:2;9831:18;;;9824:30;9890:26;9870:18;;;9863:54;9934:18;;38865:67:0::2;9610:348:1::0;38865:67:0::2;38943:25;38985:6;38971:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;38971:21:0::2;;38943:49;;39026:6;39005:17;;:27;;;;;;;:::i;:::-;;;;;;;;39060:6;39043:13;;:23;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;39084:9:0::2;::::0;-1:-1:-1;39079:95:0::2;39099:6;39095:1;:10;39079:95;;;39141:21;:19;:21::i;:::-;39127:8;39136:1;39127:11;;;;;;;;:::i;:::-;;::::0;;::::2;::::0;;;;;:35;39107:3;::::2;::::0;::::2;:::i;:::-;;;;39079:95;;24381:468:::0;24499:13;24552:16;24560:7;24552;:16::i;:::-;24530:113;;;;-1:-1:-1;;;24530:113:0;;14833:2:1;24530:113:0;;;14815:21:1;14872:2;14852:18;;;14845:30;14911:34;14891:18;;;14884:62;-1:-1:-1;;;14962:18:1;;;14955:45;15017:19;;24530:113:0;14631:411:1;24530:113:0;24656:21;24680:10;:8;:10::i;:::-;24656:34;;24745:1;24727:7;24721:21;:25;:120;;;;;;;;;;;;;;;;;24790:7;24799:18;:7;:16;:18::i;:::-;24773:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24721:120;24701:140;24381:468;-1:-1:-1;;;24381:468:0:o;40491:95::-;40538:13;40571:7;40564:14;;;;;:::i;38363:197::-;20469:7;20496:6;-1:-1:-1;;;;;20496:6:0;4274:10;20643:23;20635:68;;;;-1:-1:-1;;;20635:68:0;;;;;;;:::i;:::-;38483:4;38467:86:::1;38494:2;38489:7;;:1;:7;;;38467:86;;38518:15;:23:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;38518:23:0;;;;;::::1;::::0;::::1;;::::0;;;;;;::::1;;;;;::::0;;::::1;;::::0;;::::1;::::0;;::::1;;::::0;;;::::1;::::0;;;38498:3:::1;38518:23:::0;38498:3:::1;:::i;:::-;;;;38467:86;;21377:244:::0;20469:7;20496:6;-1:-1:-1;;;;;20496:6:0;4274:10;20643:23;20635:68;;;;-1:-1:-1;;;20635:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21466:22:0;::::1;21458:73;;;::::0;-1:-1:-1;;;21458:73:0;;8698:2:1;21458:73:0::1;::::0;::::1;8680:21:1::0;8737:2;8717:18;;;8710:30;8776:34;8756:18;;;8749:62;-1:-1:-1;;;8827:18:1;;;8820:36;8873:19;;21458:73:0::1;8496:402:1::0;21458:73:0::1;21568:6;::::0;;21547:38:::1;::::0;-1:-1:-1;;;;;21547:38:0;;::::1;::::0;21568:6;::::1;::::0;21547:38:::1;::::0;::::1;21596:6;:17:::0;;-1:-1:-1;;;;;;21596:17:0::1;-1:-1:-1::0;;;;;21596:17:0;;;::::1;::::0;;;::::1;::::0;;21377:244::o;29317:127::-;29382:4;29406:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29406:16:0;:30;;;29317:127::o;33987:174::-;34062:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34062:29:0;-1:-1:-1;;;;;34062:29:0;;;;;;;;:24;;34116:23;34062:24;34116:14;:23::i;:::-;-1:-1:-1;;;;;34107:46:0;;;;;;;;;;;33987:174;;:::o;29611:459::-;29740:4;29784:16;29792:7;29784;:16::i;:::-;29762:110;;;;-1:-1:-1;;;29762:110:0;;;;;;;:::i;:::-;29883:13;29899:23;29914:7;29899:14;:23::i;:::-;29883:39;;29952:5;-1:-1:-1;;;;;29941:16:0;:7;-1:-1:-1;;;;;29941:16:0;;:64;;;;29998:7;-1:-1:-1;;;;;29974:31:0;:20;29986:7;29974:11;:20::i;:::-;-1:-1:-1;;;;;29974:31:0;;29941:64;:120;;;-1:-1:-1;;;;;;26592:25:0;;;26563:4;26592:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30022:39;29933:129;29611:459;-1:-1:-1;;;;29611:459:0:o;33254:615::-;33427:4;-1:-1:-1;;;;;33400:31:0;:23;33415:7;33400:14;:23::i;:::-;-1:-1:-1;;;;;33400:31:0;;33378:122;;;;-1:-1:-1;;;33378:122:0;;14423:2:1;33378:122:0;;;14405:21:1;14462:2;14442:18;;;14435:30;14501:34;14481:18;;;14474:62;-1:-1:-1;;;14552:18:1;;;14545:39;14601:19;;33378:122:0;14221:405:1;33378:122:0;-1:-1:-1;;;;;33519:16:0;;33511:65;;;;-1:-1:-1;;;33511:65:0;;10165:2:1;33511:65:0;;;10147:21:1;10204:2;10184:18;;;10177:30;10243:34;10223:18;;;10216:62;-1:-1:-1;;;10294:18:1;;;10287:34;10338:19;;33511:65:0;9963:400:1;33511:65:0;33693:29;33710:1;33714:7;33693:8;:29::i;:::-;-1:-1:-1;;;;;33735:15:0;;;;;;:9;:15;;;;;:20;;33754:1;;33735:15;:20;;33754:1;;33735:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33766:13:0;;;;;;:9;:13;;;;;:18;;33783:1;;33766:13;:18;;33783:1;;33766:18;:::i;:::-;;;;-1:-1:-1;;33795:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33795:21:0;-1:-1:-1;;;;;33795:21:0;;;;;;;;;33834:27;;33795:16;;33834:27;;;;;;;33254:615;;;:::o;41246:335::-;41294:7;41314:14;41331:40;41348:15;:22;;;;41331:16;:40::i;:::-;41314:57;;41382:15;41408;41424:6;41408:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;41400:32;;41382:50;;41471:15;41512:1;41487:15;:22;;;;:26;;;;:::i;:::-;41471:43;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;41445:15;41461:6;41445:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:69;;;;;;;;;;;;;;;;;;41525:15;:21;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;41525:21:0;;;;;;;;;;;;;;;;;;;;;;;;41566:7;41246:335;-1:-1:-1;;41246:335:0:o;31796:532::-;-1:-1:-1;;;;;31914:16:0;;31906:61;;;;-1:-1:-1;;;31906:61:0;;13288:2:1;31906:61:0;;;13270:21:1;;;13307:18;;;13300:30;13366:34;13346:18;;;13339:62;13418:18;;31906:61:0;13086:356:1;31906:61:0;31995:15;;-1:-1:-1;;;;;31978:13:0;;;;;;:9;:13;;;;;:32;;:13;;;:32;;31995:15;;31978:32;:::i;:::-;;;;-1:-1:-1;32028:9:0;;-1:-1:-1;32023:298:0;32043:8;:15;32039:1;:19;32023:298;;;32089:20;32097:8;32106:1;32097:11;;;;;;;;:::i;:::-;;;;;;;32089:7;:20::i;:::-;32088:21;32080:62;;;;-1:-1:-1;;;32080:62:0;;9105:2:1;32080:62:0;;;9087:21:1;9144:2;9124:18;;;9117:30;9183;9163:18;;;9156:58;9231:18;;32080:62:0;8903:352:1;32080:62:0;32159:49;32188:1;32192:2;32196:8;32205:1;32196:11;;;;;;;;:::i;32159:49::-;32248:2;32225:7;:20;32233:8;32242:1;32233:11;;;;;;;;:::i;:::-;;;;;;;32225:20;;;;;;;;;;;;:25;;;;;-1:-1:-1;;;;;32225:25:0;;;;;-1:-1:-1;;;;;32225:25:0;;;;;;32297:8;32306:1;32297:11;;;;;;;;:::i;:::-;;;;;;;32293:2;-1:-1:-1;;;;;32272:37:0;32289:1;-1:-1:-1;;;;;32272:37:0;;;;;;;;;;;32060:3;;;;:::i;:::-;;;;32023:298;;28652:352;28809:28;28819:4;28825:2;28829:7;28809:9;:28::i;:::-;28870:48;28893:4;28899:2;28903:7;28912:5;28870:22;:48::i;:::-;28848:148;;;;-1:-1:-1;;;28848:148:0;;;;;;;:::i;1896:723::-;1952:13;2173:10;2169:53;;-1:-1:-1;;2200:10:0;;;;;;;;;;;;-1:-1:-1;;;2200:10:0;;;;;1896:723::o;2169:53::-;2247:5;2232:12;2288:78;2295:9;;2288:78;;2321:8;;;;:::i;:::-;;-1:-1:-1;2344:10:0;;-1:-1:-1;2352:2:0;2344:10;;:::i;:::-;;;2288:78;;;2376:19;2408:6;2398:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2398:17:0;;2376:39;;2426:154;2433:10;;2426:154;;2460:11;2470:1;2460:11;;:::i;:::-;;-1:-1:-1;2529:10:0;2537:2;2529:5;:10;:::i;:::-;2516:24;;:2;:24;:::i;:::-;2503:39;;2486:6;2493;2486:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2486:56:0;;;;;;;;-1:-1:-1;2557:11:0;2566:2;2557:11;;:::i;:::-;;;2426:154;;41654:459;41844:15;:22;41718:7;;;;41899:16;41914:1;41899:12;:16;:::i;:::-;41805:239;;;;;;5672:19:1;;;;41889:27:0;;5707:12:1;;;5700:28;-1:-1:-1;;41939:14:0;5816:2:1;5812:15;;;5808:24;;5794:12;;;5787:46;41976:16:0;5849:12:1;;;5842:28;42015:10:0;5905:15:1;;5901:24;5886:13;;;5879:47;5942:13;;41805:239:0;;;-1:-1:-1;;41805:239:0;;;;;;;;;41777:282;;41805:239;41777:282;;;;;-1:-1:-1;42090:15:0;42099:6;41777:282;42090:15;:::i;34726:1053::-;34881:4;-1:-1:-1;;;;;34902:13:0;;5592:20;5631:8;34898:874;;34955:175;;-1:-1:-1;;;34955:175:0;;-1:-1:-1;;;;;34955:36:0;;;;;:175;;4274:10;;35049:4;;35076:7;;35106:5;;34955:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34955:175:0;;;;;;;;-1:-1:-1;;34955:175:0;;;;;;;;;;;;:::i;:::-;;;34934:783;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35317:13:0;;35313:389;;35360:108;;-1:-1:-1;;;35360:108:0;;;;;;;:::i;35313:389::-;35652:6;35646:13;35637:6;35633:2;35629:15;35622:38;34934:783;-1:-1:-1;;;;;;35194:55:0;-1:-1:-1;;;35194:55:0;;-1:-1:-1;35187:62:0;;34898:874;-1:-1:-1;35756:4:0;34726:1053;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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:159::-;895:20;;955:6;944:18;;934:29;;924:57;;977:1;974;967:12;992:186;1051:6;1104:2;1092:9;1083:7;1079:23;1075:32;1072:52;;;1120:1;1117;1110:12;1072:52;1143:29;1162:9;1143:29;:::i;1183:260::-;1251:6;1259;1312:2;1300:9;1291:7;1287:23;1283:32;1280:52;;;1328:1;1325;1318:12;1280:52;1351:29;1370:9;1351:29;:::i;:::-;1341:39;;1399:38;1433:2;1422:9;1418:18;1399:38;:::i;:::-;1389:48;;1183:260;;;;;:::o;1448:328::-;1525:6;1533;1541;1594:2;1582:9;1573:7;1569:23;1565:32;1562:52;;;1610:1;1607;1600:12;1562:52;1633:29;1652:9;1633:29;:::i;:::-;1623:39;;1681:38;1715:2;1704:9;1700:18;1681:38;:::i;:::-;1671:48;;1766:2;1755:9;1751:18;1738:32;1728:42;;1448:328;;;;;:::o;1781:666::-;1876:6;1884;1892;1900;1953:3;1941:9;1932:7;1928:23;1924:33;1921:53;;;1970:1;1967;1960:12;1921:53;1993:29;2012:9;1993:29;:::i;:::-;1983:39;;2041:38;2075:2;2064:9;2060:18;2041:38;:::i;:::-;2031:48;;2126:2;2115:9;2111:18;2098:32;2088:42;;2181:2;2170:9;2166:18;2153:32;2208:18;2200:6;2197:30;2194:50;;;2240:1;2237;2230:12;2194:50;2263:22;;2316:4;2308:13;;2304:27;-1:-1:-1;2294:55:1;;2345:1;2342;2335:12;2294:55;2368:73;2433:7;2428:2;2415:16;2410:2;2406;2402:11;2368:73;:::i;:::-;2358:83;;;1781:666;;;;;;;:::o;2452:347::-;2517:6;2525;2578:2;2566:9;2557:7;2553:23;2549:32;2546:52;;;2594:1;2591;2584:12;2546:52;2617:29;2636:9;2617:29;:::i;:::-;2607:39;;2696:2;2685:9;2681:18;2668:32;2743:5;2736:13;2729:21;2722:5;2719:32;2709:60;;2765:1;2762;2755:12;2709:60;2788:5;2778:15;;;2452:347;;;;;:::o;2804:254::-;2872:6;2880;2933:2;2921:9;2912:7;2908:23;2904:32;2901:52;;;2949:1;2946;2939:12;2901:52;2972:29;2991:9;2972:29;:::i;:::-;2962:39;3048:2;3033:18;;;;3020:32;;-1:-1:-1;;;2804:254:1:o;3063:245::-;3121:6;3174:2;3162:9;3153:7;3149:23;3145:32;3142:52;;;3190:1;3187;3180:12;3142:52;3229:9;3216:23;3248:30;3272:5;3248:30;:::i;3313:249::-;3382:6;3435:2;3423:9;3414:7;3410:23;3406:32;3403:52;;;3451:1;3448;3441:12;3403:52;3483:9;3477:16;3502:30;3526:5;3502:30;:::i;3567:450::-;3636:6;3689:2;3677:9;3668:7;3664:23;3660:32;3657:52;;;3705:1;3702;3695:12;3657:52;3745:9;3732:23;3778:18;3770:6;3767:30;3764:50;;;3810:1;3807;3800:12;3764:50;3833:22;;3886:4;3878:13;;3874:27;-1:-1:-1;3864:55:1;;3915:1;3912;3905:12;3864:55;3938:73;4003:7;3998:2;3985:16;3980:2;3976;3972:11;3938:73;:::i;4022:256::-;4088:6;4096;4149:2;4137:9;4128:7;4124:23;4120:32;4117:52;;;4165:1;4162;4155:12;4117:52;4188:28;4206:9;4188:28;:::i;:::-;4178:38;;4235:37;4268:2;4257:9;4253:18;4235:37;:::i;4283:180::-;4342:6;4395:2;4383:9;4374:7;4370:23;4366:32;4363:52;;;4411:1;4408;4401:12;4363:52;-1:-1:-1;4434:23:1;;4283:180;-1:-1:-1;4283:180:1:o;4468:257::-;4509:3;4547:5;4541:12;4574:6;4569:3;4562:19;4590:63;4646:6;4639:4;4634:3;4630:14;4623:4;4616:5;4612:16;4590:63;:::i;:::-;4707:2;4686:15;-1:-1:-1;;4682:29:1;4673:39;;;;4714:4;4669:50;;4468:257;-1:-1:-1;;4468:257:1:o;4730:470::-;4909:3;4947:6;4941:13;4963:53;5009:6;5004:3;4997:4;4989:6;4985:17;4963:53;:::i;:::-;5079:13;;5038:16;;;;5101:57;5079:13;5038:16;5135:4;5123:17;;5101:57;:::i;:::-;5174:20;;4730:470;-1:-1:-1;;;;4730:470:1:o;6174:488::-;-1:-1:-1;;;;;6443:15:1;;;6425:34;;6495:15;;6490:2;6475:18;;6468:43;6542:2;6527:18;;6520:34;;;6590:3;6585:2;6570:18;;6563:31;;;6368:4;;6611:45;;6636:19;;6628:6;6611:45;:::i;:::-;6603:53;6174:488;-1:-1:-1;;;;;;6174:488:1:o;6667:632::-;6838:2;6890:21;;;6960:13;;6863:18;;;6982:22;;;6809:4;;6838:2;7061:15;;;;7035:2;7020:18;;;6809:4;7104:169;7118:6;7115:1;7112:13;7104:169;;;7179:13;;7167:26;;7248:15;;;;7213:12;;;;7140:1;7133:9;7104:169;;;-1:-1:-1;7290:3:1;;6667:632;-1:-1:-1;;;;;;6667:632:1:o;7496:219::-;7645:2;7634:9;7627:21;7608:4;7665:44;7705:2;7694:9;7690:18;7682:6;7665:44;:::i;7720:414::-;7922:2;7904:21;;;7961:2;7941:18;;;7934:30;8000:34;7995:2;7980:18;;7973:62;-1:-1:-1;;;8066:2:1;8051:18;;8044:48;8124:3;8109:19;;7720:414::o;8139:352::-;8341:2;8323:21;;;8380:2;8360:18;;;8353:30;8419;8414:2;8399:18;;8392:58;8482:2;8467:18;;8139:352::o;10722:408::-;10924:2;10906:21;;;10963:2;10943:18;;;10936:30;11002:34;10997:2;10982:18;;10975:62;-1:-1:-1;;;11068:2:1;11053:18;;11046:42;11120:3;11105:19;;10722:408::o;13860:356::-;14062:2;14044:21;;;14081:18;;;14074:30;14140:34;14135:2;14120:18;;14113:62;14207:2;14192:18;;13860:356::o;16208:413::-;16410:2;16392:21;;;16449:2;16429:18;;;16422:30;16488:34;16483:2;16468:18;;16461:62;-1:-1:-1;;;16554:2:1;16539:18;;16532:47;16611:3;16596:19;;16208:413::o;16808:128::-;16848:3;16879:1;16875:6;16872:1;16869:13;16866:39;;;16885:18;;:::i;:::-;-1:-1:-1;16921:9:1;;16808:128::o;16941:120::-;16981:1;17007;16997:35;;17012:18;;:::i;:::-;-1:-1:-1;17046:9:1;;16941:120::o;17066:168::-;17106:7;17172:1;17168;17164:6;17160:14;17157:1;17154:21;17149:1;17142:9;17135:17;17131:45;17128:71;;;17179:18;;:::i;:::-;-1:-1:-1;17219:9:1;;17066:168::o;17239:125::-;17279:4;17307:1;17304;17301:8;17298:34;;;17312:18;;:::i;:::-;-1:-1:-1;17349:9:1;;17239:125::o;17369:258::-;17441:1;17451:113;17465:6;17462:1;17459:13;17451:113;;;17541:11;;;17535:18;17522:11;;;17515:39;17487:2;17480:10;17451:113;;;17582:6;17579:1;17576:13;17573:48;;;-1:-1:-1;;17617:1:1;17599:16;;17592:27;17369:258::o;17632:380::-;17711:1;17707:12;;;;17754;;;17775:61;;17829:4;17821:6;17817:17;17807:27;;17775:61;17882:2;17874:6;17871:14;17851:18;17848:38;17845:161;;;17928:10;17923:3;17919:20;17916:1;17909:31;17963:4;17960:1;17953:15;17991:4;17988:1;17981:15;17845:161;;17632:380;;;:::o;18017:197::-;18055:3;18083:6;18124:2;18117:5;18113:14;18151:2;18142:7;18139:15;18136:41;;;18157:18;;:::i;:::-;18206:1;18193:15;;18017:197;-1:-1:-1;;;18017:197:1:o;18219:135::-;18258:3;-1:-1:-1;;18279:17:1;;18276:43;;;18299:18;;:::i;:::-;-1:-1:-1;18346:1:1;18335:13;;18219:135::o;18359:112::-;18391:1;18417;18407:35;;18422:18;;:::i;:::-;-1:-1:-1;18456:9:1;;18359:112::o;18476:127::-;18537:10;18532:3;18528:20;18525:1;18518:31;18568:4;18565:1;18558:15;18592:4;18589:1;18582:15;18608:127;18669:10;18664:3;18660:20;18657:1;18650:31;18700:4;18697:1;18690:15;18724:4;18721:1;18714:15;18740:127;18801:10;18796:3;18792:20;18789:1;18782:31;18832:4;18829:1;18822:15;18856:4;18853:1;18846:15;18872:127;18933:10;18928:3;18924:20;18921:1;18914:31;18964:4;18961:1;18954:15;18988:4;18985:1;18978:15;19004:127;19065:10;19060:3;19056:20;19053:1;19046:31;19096:4;19093:1;19086:15;19120:4;19117:1;19110:15;19136:131;-1:-1:-1;;;;;;19210:32:1;;19200:43;;19190:71;;19257:1;19254;19247:12;19190:71;19136:131;:::o

Swarm Source

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