ETH Price: $3,270.78 (-0.75%)

Token

WILD (WLD)
 

Overview

Max Total Supply

358 WLD

Holders

112

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 WLD
0xabc3b50b3b8f78e8d416a6ef4cee1b8c9a0e94bb
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:
WILD

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-01-15
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

// File: contracts/WILD.SOL



pragma solidity >=0.7.0 <0.9.0;





contract WILD is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.075 ether;
  uint256 public maxSupply = 7777;
  uint256 public maxMintAmountPerTx = 6;
  uint256 public nftPerAddressLimit = 20;

  bool public paused = true;
  bool public revealed = false;

  bool public onlyWhitelisted = true;
  address[] public whitelistedAddresses;
  mapping(address => uint256) public addressMintedBalance;

  constructor() ERC721("WILD", "WLD") {
    setHiddenMetadataUri("ipfs:// /hidden.json");
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");


if (msg.sender != owner()) {
        if(onlyWhitelisted == true) {
            require(isWhitelisted(msg.sender), "user is not whitelisted");
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
        }
        require(msg.value >= cost * _mintAmount, "insufficient funds");
    }
    _mintLoop(msg.sender, _mintAmount);

  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }

  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 <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

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

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

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

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

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

  function withdraw() public onlyOwner {

    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    
  }

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }
      function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }
  
  function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }
    function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }
  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }
}

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":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b9160089162000213565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a9160099162000213565b5067010a741a46278000600b55611e61600c556006600d556014600e55600f805462ffffff1916620100011790553480156200008557600080fd5b50604080518082018252600481526315d2531160e21b60208083019182528351808501909452600384526215d31160ea1b908401528151919291620000cd9160009162000213565b508051620000e390600190602084019062000213565b50505062000100620000fa6200014560201b60201c565b62000149565b60408051808201909152601481527f697066733a2f2f202f68696464656e2e6a736f6e00000000000000000000000060208201526200013f906200019b565b620002f6565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001fa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200020f90600a90602084019062000213565b5050565b8280546200022190620002b9565b90600052602060002090601f01602090048101928262000245576000855562000290565b82601f106200026057805160ff191683800117855562000290565b8280016001018555821562000290579182015b828111156200029057825182559160200191906001019062000273565b506200029e929150620002a2565b5090565b5b808211156200029e5760008155600101620002a3565b600181811c90821680620002ce57607f821691505b60208210811415620002f057634e487b7160e01b600052602260045260246000fd5b50919050565b61273980620003066000396000f3fe6080604052600436106102675760003560e01c806370a0823111610144578063b88d4fde116100b6578063d5abeb011161007a578063d5abeb0114610704578063e0a808531461071a578063e985e9c51461073a578063edec5f2714610783578063efbd73f4146107a3578063f2fde38b146107c357600080fd5b8063b88d4fde1461066e578063ba4e5c491461068e578063ba7d2c76146106ae578063c87b56dd146106c4578063d0eb26b0146106e457600080fd5b806395d89b411161010857806395d89b41146105d15780639c70b512146105e6578063a0712d6814610606578063a22cb46514610619578063a45ba8e714610639578063b071401b1461064e57600080fd5b806370a0823114610548578063715018a6146105685780637ec4a6591461057d5780638da5cb5b1461059d57806394354fd0146105bb57600080fd5b80633c952764116101dd5780634fdd43cb116101a15780634fdd43cb146104a557806351830227146104c55780635503a0e8146104e45780635c975abb146104f957806362b99ad4146105135780636352211e1461052857600080fd5b80633c952764146104035780633ccfd60b1461042357806342842e0e14610438578063438b63001461045857806344a0d68a1461048557600080fd5b806316ba10e01161022f57806316ba10e01461034157806316c38b3c1461036157806318160ddd1461038157806318cae2691461039657806323b872dd146103c35780633af32abf146103e357600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57806313faede61461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004612282565b6107e3565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610835565b60405161029891906124b2565b3480156102cf57600080fd5b506102e36102de366004612305565b6108c7565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b6103163660046121c8565b610961565b005b34801561032957600080fd5b50610333600b5481565b604051908152602001610298565b34801561034d57600080fd5b5061031b61035c3660046122bc565b610a77565b34801561036d57600080fd5b5061031b61037c366004612267565b610ab8565b34801561038d57600080fd5b50610333610af5565b3480156103a257600080fd5b506103336103b1366004612098565b60116020526000908152604090205481565b3480156103cf57600080fd5b5061031b6103de3660046120e6565b610b05565b3480156103ef57600080fd5b5061028c6103fe366004612098565b610b36565b34801561040f57600080fd5b5061031b61041e366004612267565b610ba0565b34801561042f57600080fd5b5061031b610be6565b34801561044457600080fd5b5061031b6104533660046120e6565b610c84565b34801561046457600080fd5b50610478610473366004612098565b610c9f565b604051610298919061246e565b34801561049157600080fd5b5061031b6104a0366004612305565b610d80565b3480156104b157600080fd5b5061031b6104c03660046122bc565b610daf565b3480156104d157600080fd5b50600f5461028c90610100900460ff1681565b3480156104f057600080fd5b506102b6610dec565b34801561050557600080fd5b50600f5461028c9060ff1681565b34801561051f57600080fd5b506102b6610e7a565b34801561053457600080fd5b506102e3610543366004612305565b610e87565b34801561055457600080fd5b50610333610563366004612098565b610efe565b34801561057457600080fd5b5061031b610f85565b34801561058957600080fd5b5061031b6105983660046122bc565b610fbb565b3480156105a957600080fd5b506006546001600160a01b03166102e3565b3480156105c757600080fd5b50610333600d5481565b3480156105dd57600080fd5b506102b6610ff8565b3480156105f257600080fd5b50600f5461028c9062010000900460ff1681565b61031b610614366004612305565b611007565b34801561062557600080fd5b5061031b61063436600461219e565b611252565b34801561064557600080fd5b506102b661125d565b34801561065a57600080fd5b5061031b610669366004612305565b61126a565b34801561067a57600080fd5b5061031b610689366004612122565b611299565b34801561069a57600080fd5b506102e36106a9366004612305565b6112d1565b3480156106ba57600080fd5b50610333600e5481565b3480156106d057600080fd5b506102b66106df366004612305565b6112fb565b3480156106f057600080fd5b5061031b6106ff366004612305565b61147a565b34801561071057600080fd5b50610333600c5481565b34801561072657600080fd5b5061031b610735366004612267565b6114a9565b34801561074657600080fd5b5061028c6107553660046120b3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078f57600080fd5b5061031b61079e3660046121f2565b6114ed565b3480156107af57600080fd5b5061031b6107be36600461231e565b61152f565b3480156107cf57600080fd5b5061031b6107de366004612098565b611615565b60006001600160e01b031982166380ac58cd60e01b148061081457506001600160e01b03198216635b5e139f60e01b145b8061082f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546108449061262b565b80601f01602080910402602001604051908101604052809291908181526020018280546108709061262b565b80156108bd5780601f10610892576101008083540402835291602001916108bd565b820191906000526020600020905b8154815290600101906020018083116108a057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109455760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061096c82610e87565b9050806001600160a01b0316836001600160a01b031614156109da5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161093c565b336001600160a01b03821614806109f657506109f68133610755565b610a685760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161093c565b610a7283836116ad565b505050565b6006546001600160a01b03163314610aa15760405162461bcd60e51b815260040161093c90612517565b8051610ab4906009906020840190611eec565b5050565b6006546001600160a01b03163314610ae25760405162461bcd60e51b815260040161093c90612517565b600f805460ff1916911515919091179055565b6000610b0060075490565b905090565b610b0f338261171b565b610b2b5760405162461bcd60e51b815260040161093c9061254c565b610a72838383611812565b6000805b601054811015610b9757826001600160a01b031660108281548110610b6157610b616126c1565b6000918252602090912001546001600160a01b03161415610b855750600192915050565b80610b8f81612666565b915050610b3a565b50600092915050565b6006546001600160a01b03163314610bca5760405162461bcd60e51b815260040161093c90612517565b600f8054911515620100000262ff000019909216919091179055565b6006546001600160a01b03163314610c105760405162461bcd60e51b815260040161093c90612517565b6000610c246006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c6e576040519150601f19603f3d011682016040523d82523d6000602084013e610c73565b606091505b5050905080610c8157600080fd5b50565b610a7283838360405180602001604052806000815250611299565b60606000610cac83610efe565b905060008167ffffffffffffffff811115610cc957610cc96126d7565b604051908082528060200260200182016040528015610cf2578160200160208202803683370190505b509050600160005b8381108015610d0b5750600c548211155b15610d76576000610d1b83610e87565b9050866001600160a01b0316816001600160a01b03161415610d635782848381518110610d4a57610d4a6126c1565b602090810291909101015281610d5f81612666565b9250505b82610d6d81612666565b93505050610cfa565b5090949350505050565b6006546001600160a01b03163314610daa5760405162461bcd60e51b815260040161093c90612517565b600b55565b6006546001600160a01b03163314610dd95760405162461bcd60e51b815260040161093c90612517565b8051610ab490600a906020840190611eec565b60098054610df99061262b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e259061262b565b8015610e725780601f10610e4757610100808354040283529160200191610e72565b820191906000526020600020905b815481529060010190602001808311610e5557829003601f168201915b505050505081565b60088054610df99061262b565b6000818152600260205260408120546001600160a01b03168061082f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161093c565b60006001600160a01b038216610f695760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161093c565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610faf5760405162461bcd60e51b815260040161093c90612517565b610fb960006119b2565b565b6006546001600160a01b03163314610fe55760405162461bcd60e51b815260040161093c90612517565b8051610ab4906008906020840190611eec565b6060600180546108449061262b565b8060008111801561101a5750600d548111155b61105d5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161093c565b600c548161106a60075490565b611074919061259d565b11156110b95760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161093c565b600f5460ff161561110c5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161093c565b6006546001600160a01b0316331461124857600f5462010000900460ff161515600114156111f65761113d33610b36565b6111895760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161093c565b33600090815260116020526040902054600e546111a6848361259d565b11156111f45760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161093c565b505b81600b5461120491906125c9565b3410156112485760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b604482015260640161093c565b610ab43383611a04565b610ab4338383611a41565b600a8054610df99061262b565b6006546001600160a01b031633146112945760405162461bcd60e51b815260040161093c90612517565b600d55565b6112a3338361171b565b6112bf5760405162461bcd60e51b815260040161093c9061254c565b6112cb84848484611b10565b50505050565b601081815481106112e157600080fd5b6000918252602090912001546001600160a01b0316905081565b6000818152600260205260409020546060906001600160a01b031661137a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161093c565b600f54610100900460ff1661141b57600a80546113969061262b565b80601f01602080910402602001604051908101604052809291908181526020018280546113c29061262b565b801561140f5780601f106113e45761010080835404028352916020019161140f565b820191906000526020600020905b8154815290600101906020018083116113f257829003601f168201915b50505050509050919050565b6000611425611b43565b905060008151116114455760405180602001604052806000815250611473565b8061144f84611b52565b60096040516020016114639392919061236d565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146114a45760405162461bcd60e51b815260040161093c90612517565b600e55565b6006546001600160a01b031633146114d35760405162461bcd60e51b815260040161093c90612517565b600f80549115156101000261ff0019909216919091179055565b6006546001600160a01b031633146115175760405162461bcd60e51b815260040161093c90612517565b61152360106000611f70565b610a7260108383611f8e565b816000811180156115425750600d548111155b6115855760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161093c565b600c548161159260075490565b61159c919061259d565b11156115e15760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161093c565b6006546001600160a01b0316331461160b5760405162461bcd60e51b815260040161093c90612517565b610a728284611a04565b6006546001600160a01b0316331461163f5760405162461bcd60e51b815260040161093c90612517565b6001600160a01b0381166116a45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161093c565b610c81816119b2565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116e282610e87565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117945760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161093c565b600061179f83610e87565b9050806001600160a01b0316846001600160a01b031614806117da5750836001600160a01b03166117cf846108c7565b6001600160a01b0316145b8061180a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661182582610e87565b6001600160a01b03161461188d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161093c565b6001600160a01b0382166118ef5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161093c565b6118fa6000826116ad565b6001600160a01b03831660009081526003602052604081208054600192906119239084906125e8565b90915550506001600160a01b038216600090815260036020526040812080546001929061195190849061259d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610a7257611a1d600780546001019055565b611a2f83611a2a60075490565b611c50565b80611a3981612666565b915050611a07565b816001600160a01b0316836001600160a01b03161415611aa35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161093c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b1b848484611812565b611b2784848484611c6a565b6112cb5760405162461bcd60e51b815260040161093c906124c5565b6060600880546108449061262b565b606081611b765750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ba05780611b8a81612666565b9150611b999050600a836125b5565b9150611b7a565b60008167ffffffffffffffff811115611bbb57611bbb6126d7565b6040519080825280601f01601f191660200182016040528015611be5576020820181803683370190505b5090505b841561180a57611bfa6001836125e8565b9150611c07600a86612681565b611c1290603061259d565b60f81b818381518110611c2757611c276126c1565b60200101906001600160f81b031916908160001a905350611c49600a866125b5565b9450611be9565b610ab4828260405180602001604052806000815250611d77565b60006001600160a01b0384163b15611d6c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cae903390899088908890600401612431565b602060405180830381600087803b158015611cc857600080fd5b505af1925050508015611cf8575060408051601f3d908101601f19168201909252611cf59181019061229f565b60015b611d52573d808015611d26576040519150601f19603f3d011682016040523d82523d6000602084013e611d2b565b606091505b508051611d4a5760405162461bcd60e51b815260040161093c906124c5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061180a565b506001949350505050565b611d818383611daa565b611d8e6000848484611c6a565b610a725760405162461bcd60e51b815260040161093c906124c5565b6001600160a01b038216611e005760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161093c565b6000818152600260205260409020546001600160a01b031615611e655760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161093c565b6001600160a01b0382166000908152600360205260408120805460019290611e8e90849061259d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ef89061262b565b90600052602060002090601f016020900481019282611f1a5760008555611f60565b82601f10611f3357805160ff1916838001178555611f60565b82800160010185558215611f60579182015b82811115611f60578251825591602001919060010190611f45565b50611f6c929150611fe1565b5090565b5080546000825590600052602060002090810190610c819190611fe1565b828054828255906000526020600020908101928215611f60579160200282015b82811115611f605781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190611fae565b5b80821115611f6c5760008155600101611fe2565b600067ffffffffffffffff80841115612011576120116126d7565b604051601f8501601f19908116603f01168101908282118183101715612039576120396126d7565b8160405280935085815286868601111561205257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461208357600080fd5b919050565b8035801515811461208357600080fd5b6000602082840312156120aa57600080fd5b6114738261206c565b600080604083850312156120c657600080fd5b6120cf8361206c565b91506120dd6020840161206c565b90509250929050565b6000806000606084860312156120fb57600080fd5b6121048461206c565b92506121126020850161206c565b9150604084013590509250925092565b6000806000806080858703121561213857600080fd5b6121418561206c565b935061214f6020860161206c565b925060408501359150606085013567ffffffffffffffff81111561217257600080fd5b8501601f8101871361218357600080fd5b61219287823560208401611ff6565b91505092959194509250565b600080604083850312156121b157600080fd5b6121ba8361206c565b91506120dd60208401612088565b600080604083850312156121db57600080fd5b6121e48361206c565b946020939093013593505050565b6000806020838503121561220557600080fd5b823567ffffffffffffffff8082111561221d57600080fd5b818501915085601f83011261223157600080fd5b81358181111561224057600080fd5b8660208260051b850101111561225557600080fd5b60209290920196919550909350505050565b60006020828403121561227957600080fd5b61147382612088565b60006020828403121561229457600080fd5b8135611473816126ed565b6000602082840312156122b157600080fd5b8151611473816126ed565b6000602082840312156122ce57600080fd5b813567ffffffffffffffff8111156122e557600080fd5b8201601f810184136122f657600080fd5b61180a84823560208401611ff6565b60006020828403121561231757600080fd5b5035919050565b6000806040838503121561233157600080fd5b823591506120dd6020840161206c565b600081518084526123598160208601602086016125ff565b601f01601f19169290920160200192915050565b6000845160206123808285838a016125ff565b8551918401916123938184848a016125ff565b8554920191600090600181811c90808316806123b057607f831692505b8583108114156123ce57634e487b7160e01b85526022600452602485fd5b8080156123e257600181146123f357612420565b60ff19851688528388019550612420565b60008b81526020902060005b858110156124185781548a8201529084019088016123ff565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061246490830184612341565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156124a65783518352928401929184019160010161248a565b50909695505050505050565b6020815260006114736020830184612341565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156125b0576125b0612695565b500190565b6000826125c4576125c46126ab565b500490565b60008160001904831182151516156125e3576125e3612695565b500290565b6000828210156125fa576125fa612695565b500390565b60005b8381101561261a578181015183820152602001612602565b838111156112cb5750506000910152565b600181811c9082168061263f57607f821691505b6020821081141561266057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561267a5761267a612695565b5060010190565b600082612690576126906126ab565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c8157600080fdfea2646970667358221220e9c03cf33085a13256bae7718bf2320024459641ca715bf36345bf75ef3aed0b64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102675760003560e01c806370a0823111610144578063b88d4fde116100b6578063d5abeb011161007a578063d5abeb0114610704578063e0a808531461071a578063e985e9c51461073a578063edec5f2714610783578063efbd73f4146107a3578063f2fde38b146107c357600080fd5b8063b88d4fde1461066e578063ba4e5c491461068e578063ba7d2c76146106ae578063c87b56dd146106c4578063d0eb26b0146106e457600080fd5b806395d89b411161010857806395d89b41146105d15780639c70b512146105e6578063a0712d6814610606578063a22cb46514610619578063a45ba8e714610639578063b071401b1461064e57600080fd5b806370a0823114610548578063715018a6146105685780637ec4a6591461057d5780638da5cb5b1461059d57806394354fd0146105bb57600080fd5b80633c952764116101dd5780634fdd43cb116101a15780634fdd43cb146104a557806351830227146104c55780635503a0e8146104e45780635c975abb146104f957806362b99ad4146105135780636352211e1461052857600080fd5b80633c952764146104035780633ccfd60b1461042357806342842e0e14610438578063438b63001461045857806344a0d68a1461048557600080fd5b806316ba10e01161022f57806316ba10e01461034157806316c38b3c1461036157806318160ddd1461038157806318cae2691461039657806323b872dd146103c35780633af32abf146103e357600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57806313faede61461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004612282565b6107e3565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610835565b60405161029891906124b2565b3480156102cf57600080fd5b506102e36102de366004612305565b6108c7565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b6103163660046121c8565b610961565b005b34801561032957600080fd5b50610333600b5481565b604051908152602001610298565b34801561034d57600080fd5b5061031b61035c3660046122bc565b610a77565b34801561036d57600080fd5b5061031b61037c366004612267565b610ab8565b34801561038d57600080fd5b50610333610af5565b3480156103a257600080fd5b506103336103b1366004612098565b60116020526000908152604090205481565b3480156103cf57600080fd5b5061031b6103de3660046120e6565b610b05565b3480156103ef57600080fd5b5061028c6103fe366004612098565b610b36565b34801561040f57600080fd5b5061031b61041e366004612267565b610ba0565b34801561042f57600080fd5b5061031b610be6565b34801561044457600080fd5b5061031b6104533660046120e6565b610c84565b34801561046457600080fd5b50610478610473366004612098565b610c9f565b604051610298919061246e565b34801561049157600080fd5b5061031b6104a0366004612305565b610d80565b3480156104b157600080fd5b5061031b6104c03660046122bc565b610daf565b3480156104d157600080fd5b50600f5461028c90610100900460ff1681565b3480156104f057600080fd5b506102b6610dec565b34801561050557600080fd5b50600f5461028c9060ff1681565b34801561051f57600080fd5b506102b6610e7a565b34801561053457600080fd5b506102e3610543366004612305565b610e87565b34801561055457600080fd5b50610333610563366004612098565b610efe565b34801561057457600080fd5b5061031b610f85565b34801561058957600080fd5b5061031b6105983660046122bc565b610fbb565b3480156105a957600080fd5b506006546001600160a01b03166102e3565b3480156105c757600080fd5b50610333600d5481565b3480156105dd57600080fd5b506102b6610ff8565b3480156105f257600080fd5b50600f5461028c9062010000900460ff1681565b61031b610614366004612305565b611007565b34801561062557600080fd5b5061031b61063436600461219e565b611252565b34801561064557600080fd5b506102b661125d565b34801561065a57600080fd5b5061031b610669366004612305565b61126a565b34801561067a57600080fd5b5061031b610689366004612122565b611299565b34801561069a57600080fd5b506102e36106a9366004612305565b6112d1565b3480156106ba57600080fd5b50610333600e5481565b3480156106d057600080fd5b506102b66106df366004612305565b6112fb565b3480156106f057600080fd5b5061031b6106ff366004612305565b61147a565b34801561071057600080fd5b50610333600c5481565b34801561072657600080fd5b5061031b610735366004612267565b6114a9565b34801561074657600080fd5b5061028c6107553660046120b3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078f57600080fd5b5061031b61079e3660046121f2565b6114ed565b3480156107af57600080fd5b5061031b6107be36600461231e565b61152f565b3480156107cf57600080fd5b5061031b6107de366004612098565b611615565b60006001600160e01b031982166380ac58cd60e01b148061081457506001600160e01b03198216635b5e139f60e01b145b8061082f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546108449061262b565b80601f01602080910402602001604051908101604052809291908181526020018280546108709061262b565b80156108bd5780601f10610892576101008083540402835291602001916108bd565b820191906000526020600020905b8154815290600101906020018083116108a057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109455760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061096c82610e87565b9050806001600160a01b0316836001600160a01b031614156109da5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161093c565b336001600160a01b03821614806109f657506109f68133610755565b610a685760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161093c565b610a7283836116ad565b505050565b6006546001600160a01b03163314610aa15760405162461bcd60e51b815260040161093c90612517565b8051610ab4906009906020840190611eec565b5050565b6006546001600160a01b03163314610ae25760405162461bcd60e51b815260040161093c90612517565b600f805460ff1916911515919091179055565b6000610b0060075490565b905090565b610b0f338261171b565b610b2b5760405162461bcd60e51b815260040161093c9061254c565b610a72838383611812565b6000805b601054811015610b9757826001600160a01b031660108281548110610b6157610b616126c1565b6000918252602090912001546001600160a01b03161415610b855750600192915050565b80610b8f81612666565b915050610b3a565b50600092915050565b6006546001600160a01b03163314610bca5760405162461bcd60e51b815260040161093c90612517565b600f8054911515620100000262ff000019909216919091179055565b6006546001600160a01b03163314610c105760405162461bcd60e51b815260040161093c90612517565b6000610c246006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c6e576040519150601f19603f3d011682016040523d82523d6000602084013e610c73565b606091505b5050905080610c8157600080fd5b50565b610a7283838360405180602001604052806000815250611299565b60606000610cac83610efe565b905060008167ffffffffffffffff811115610cc957610cc96126d7565b604051908082528060200260200182016040528015610cf2578160200160208202803683370190505b509050600160005b8381108015610d0b5750600c548211155b15610d76576000610d1b83610e87565b9050866001600160a01b0316816001600160a01b03161415610d635782848381518110610d4a57610d4a6126c1565b602090810291909101015281610d5f81612666565b9250505b82610d6d81612666565b93505050610cfa565b5090949350505050565b6006546001600160a01b03163314610daa5760405162461bcd60e51b815260040161093c90612517565b600b55565b6006546001600160a01b03163314610dd95760405162461bcd60e51b815260040161093c90612517565b8051610ab490600a906020840190611eec565b60098054610df99061262b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e259061262b565b8015610e725780601f10610e4757610100808354040283529160200191610e72565b820191906000526020600020905b815481529060010190602001808311610e5557829003601f168201915b505050505081565b60088054610df99061262b565b6000818152600260205260408120546001600160a01b03168061082f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161093c565b60006001600160a01b038216610f695760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161093c565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610faf5760405162461bcd60e51b815260040161093c90612517565b610fb960006119b2565b565b6006546001600160a01b03163314610fe55760405162461bcd60e51b815260040161093c90612517565b8051610ab4906008906020840190611eec565b6060600180546108449061262b565b8060008111801561101a5750600d548111155b61105d5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161093c565b600c548161106a60075490565b611074919061259d565b11156110b95760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161093c565b600f5460ff161561110c5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161093c565b6006546001600160a01b0316331461124857600f5462010000900460ff161515600114156111f65761113d33610b36565b6111895760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161093c565b33600090815260116020526040902054600e546111a6848361259d565b11156111f45760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161093c565b505b81600b5461120491906125c9565b3410156112485760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b604482015260640161093c565b610ab43383611a04565b610ab4338383611a41565b600a8054610df99061262b565b6006546001600160a01b031633146112945760405162461bcd60e51b815260040161093c90612517565b600d55565b6112a3338361171b565b6112bf5760405162461bcd60e51b815260040161093c9061254c565b6112cb84848484611b10565b50505050565b601081815481106112e157600080fd5b6000918252602090912001546001600160a01b0316905081565b6000818152600260205260409020546060906001600160a01b031661137a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161093c565b600f54610100900460ff1661141b57600a80546113969061262b565b80601f01602080910402602001604051908101604052809291908181526020018280546113c29061262b565b801561140f5780601f106113e45761010080835404028352916020019161140f565b820191906000526020600020905b8154815290600101906020018083116113f257829003601f168201915b50505050509050919050565b6000611425611b43565b905060008151116114455760405180602001604052806000815250611473565b8061144f84611b52565b60096040516020016114639392919061236d565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146114a45760405162461bcd60e51b815260040161093c90612517565b600e55565b6006546001600160a01b031633146114d35760405162461bcd60e51b815260040161093c90612517565b600f80549115156101000261ff0019909216919091179055565b6006546001600160a01b031633146115175760405162461bcd60e51b815260040161093c90612517565b61152360106000611f70565b610a7260108383611f8e565b816000811180156115425750600d548111155b6115855760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161093c565b600c548161159260075490565b61159c919061259d565b11156115e15760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161093c565b6006546001600160a01b0316331461160b5760405162461bcd60e51b815260040161093c90612517565b610a728284611a04565b6006546001600160a01b0316331461163f5760405162461bcd60e51b815260040161093c90612517565b6001600160a01b0381166116a45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161093c565b610c81816119b2565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116e282610e87565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117945760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161093c565b600061179f83610e87565b9050806001600160a01b0316846001600160a01b031614806117da5750836001600160a01b03166117cf846108c7565b6001600160a01b0316145b8061180a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661182582610e87565b6001600160a01b03161461188d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161093c565b6001600160a01b0382166118ef5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161093c565b6118fa6000826116ad565b6001600160a01b03831660009081526003602052604081208054600192906119239084906125e8565b90915550506001600160a01b038216600090815260036020526040812080546001929061195190849061259d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610a7257611a1d600780546001019055565b611a2f83611a2a60075490565b611c50565b80611a3981612666565b915050611a07565b816001600160a01b0316836001600160a01b03161415611aa35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161093c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b1b848484611812565b611b2784848484611c6a565b6112cb5760405162461bcd60e51b815260040161093c906124c5565b6060600880546108449061262b565b606081611b765750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ba05780611b8a81612666565b9150611b999050600a836125b5565b9150611b7a565b60008167ffffffffffffffff811115611bbb57611bbb6126d7565b6040519080825280601f01601f191660200182016040528015611be5576020820181803683370190505b5090505b841561180a57611bfa6001836125e8565b9150611c07600a86612681565b611c1290603061259d565b60f81b818381518110611c2757611c276126c1565b60200101906001600160f81b031916908160001a905350611c49600a866125b5565b9450611be9565b610ab4828260405180602001604052806000815250611d77565b60006001600160a01b0384163b15611d6c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cae903390899088908890600401612431565b602060405180830381600087803b158015611cc857600080fd5b505af1925050508015611cf8575060408051601f3d908101601f19168201909252611cf59181019061229f565b60015b611d52573d808015611d26576040519150601f19603f3d011682016040523d82523d6000602084013e611d2b565b606091505b508051611d4a5760405162461bcd60e51b815260040161093c906124c5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061180a565b506001949350505050565b611d818383611daa565b611d8e6000848484611c6a565b610a725760405162461bcd60e51b815260040161093c906124c5565b6001600160a01b038216611e005760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161093c565b6000818152600260205260409020546001600160a01b031615611e655760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161093c565b6001600160a01b0382166000908152600360205260408120805460019290611e8e90849061259d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ef89061262b565b90600052602060002090601f016020900481019282611f1a5760008555611f60565b82601f10611f3357805160ff1916838001178555611f60565b82800160010185558215611f60579182015b82811115611f60578251825591602001919060010190611f45565b50611f6c929150611fe1565b5090565b5080546000825590600052602060002090810190610c819190611fe1565b828054828255906000526020600020908101928215611f60579160200282015b82811115611f605781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190611fae565b5b80821115611f6c5760008155600101611fe2565b600067ffffffffffffffff80841115612011576120116126d7565b604051601f8501601f19908116603f01168101908282118183101715612039576120396126d7565b8160405280935085815286868601111561205257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461208357600080fd5b919050565b8035801515811461208357600080fd5b6000602082840312156120aa57600080fd5b6114738261206c565b600080604083850312156120c657600080fd5b6120cf8361206c565b91506120dd6020840161206c565b90509250929050565b6000806000606084860312156120fb57600080fd5b6121048461206c565b92506121126020850161206c565b9150604084013590509250925092565b6000806000806080858703121561213857600080fd5b6121418561206c565b935061214f6020860161206c565b925060408501359150606085013567ffffffffffffffff81111561217257600080fd5b8501601f8101871361218357600080fd5b61219287823560208401611ff6565b91505092959194509250565b600080604083850312156121b157600080fd5b6121ba8361206c565b91506120dd60208401612088565b600080604083850312156121db57600080fd5b6121e48361206c565b946020939093013593505050565b6000806020838503121561220557600080fd5b823567ffffffffffffffff8082111561221d57600080fd5b818501915085601f83011261223157600080fd5b81358181111561224057600080fd5b8660208260051b850101111561225557600080fd5b60209290920196919550909350505050565b60006020828403121561227957600080fd5b61147382612088565b60006020828403121561229457600080fd5b8135611473816126ed565b6000602082840312156122b157600080fd5b8151611473816126ed565b6000602082840312156122ce57600080fd5b813567ffffffffffffffff8111156122e557600080fd5b8201601f810184136122f657600080fd5b61180a84823560208401611ff6565b60006020828403121561231757600080fd5b5035919050565b6000806040838503121561233157600080fd5b823591506120dd6020840161206c565b600081518084526123598160208601602086016125ff565b601f01601f19169290920160200192915050565b6000845160206123808285838a016125ff565b8551918401916123938184848a016125ff565b8554920191600090600181811c90808316806123b057607f831692505b8583108114156123ce57634e487b7160e01b85526022600452602485fd5b8080156123e257600181146123f357612420565b60ff19851688528388019550612420565b60008b81526020902060005b858110156124185781548a8201529084019088016123ff565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061246490830184612341565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156124a65783518352928401929184019160010161248a565b50909695505050505050565b6020815260006114736020830184612341565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156125b0576125b0612695565b500190565b6000826125c4576125c46126ab565b500490565b60008160001904831182151516156125e3576125e3612695565b500290565b6000828210156125fa576125fa612695565b500390565b60005b8381101561261a578181015183820152602001612602565b838111156112cb5750506000910152565b600181811c9082168061263f57607f821691505b6020821081141561266057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561267a5761267a612695565b5060010190565b600082612690576126906126ab565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c8157600080fdfea2646970667358221220e9c03cf33085a13256bae7718bf2320024459641ca715bf36345bf75ef3aed0b64736f6c63430008070033

Deployed Bytecode Sourcemap

37725:4783:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25207:305;;;;;;;;;;-1:-1:-1;25207:305:0;;;;;:::i;:::-;;:::i;:::-;;;8686:14:1;;8679:22;8661:41;;8649:2;8634:18;25207:305:0;;;;;;;;26152:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27711:221::-;;;;;;;;;;-1:-1:-1;27711:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7347:32:1;;;7329:51;;7317:2;7302:18;27711:221:0;7183:203:1;27234:411:0;;;;;;;;;;-1:-1:-1;27234:411:0;;;;;:::i;:::-;;:::i;:::-;;37984:33;;;;;;;;;;;;;;;;;;;17571:25:1;;;17559:2;17544:18;37984:33:0;17425:177:1;41243:100:0;;;;;;;;;;-1:-1:-1;41243:100:0;;;;;:::i;:::-;;:::i;41349:77::-;;;;;;;;;;-1:-1:-1;41349:77:0;;;;;:::i;:::-;;:::i;38692:89::-;;;;;;;;;;;;;:::i;38291:55::-;;;;;;;;;;-1:-1:-1;38291:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;28461:339;;;;;;;;;;-1:-1:-1;28461:339:0;;;;;:::i;:::-;;:::i;42158:239::-;;;;;;;;;;-1:-1:-1;42158:239:0;;;;;:::i;:::-;;:::i;41905:95::-;;;;;;;;;;-1:-1:-1;41905:95:0;;;;;:::i;:::-;;:::i;41432:145::-;;;;;;;;;;;;;:::i;28871:185::-;;;;;;;;;;-1:-1:-1;28871:185:0;;;;;:::i;:::-;;:::i;39555:635::-;;;;;;;;;;-1:-1:-1;39555:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;40783:74::-;;;;;;;;;;-1:-1:-1;40783:74:0;;;;;:::i;:::-;;:::i;40999:132::-;;;;;;;;;;-1:-1:-1;40999:132:0;;;;;:::i;:::-;;:::i;38175:28::-;;;;;;;;;;-1:-1:-1;38175:28:0;;;;;;;;;;;37906:33;;;;;;;;;;;;;:::i;38145:25::-;;;;;;;;;;-1:-1:-1;38145:25:0;;;;;;;;37873:28;;;;;;;;;;;;;:::i;25846:239::-;;;;;;;;;;-1:-1:-1;25846:239:0;;;;;:::i;:::-;;:::i;25576:208::-;;;;;;;;;;-1:-1:-1;25576:208:0;;;;;:::i;:::-;;:::i;6195:103::-;;;;;;;;;;;;;:::i;41137:100::-;;;;;;;;;;-1:-1:-1;41137:100:0;;;;;:::i;:::-;;:::i;5544:87::-;;;;;;;;;;-1:-1:-1;5617:6:0;;-1:-1:-1;;;;;5617:6:0;5544:87;;38058:37;;;;;;;;;;;;;;;;26321:104;;;;;;;;;;;;;:::i;38210:34::-;;;;;;;;;;-1:-1:-1;38210:34:0;;;;;;;;;;;38787:599;;;;;;:::i;:::-;;:::i;28004:155::-;;;;;;;;;;-1:-1:-1;28004:155:0;;;;;:::i;:::-;;:::i;37944:31::-;;;;;;;;;;;;;:::i;40863:130::-;;;;;;;;;;-1:-1:-1;40863:130:0;;;;;:::i;:::-;;:::i;29127:328::-;;;;;;;;;;-1:-1:-1;29127:328:0;;;;;:::i;:::-;;:::i;38249:37::-;;;;;;;;;;-1:-1:-1;38249:37:0;;;;;:::i;:::-;;:::i;38100:38::-;;;;;;;;;;;;;;;;40196:494;;;;;;;;;;-1:-1:-1;40196:494:0;;;;;:::i;:::-;;:::i;42401:104::-;;;;;;;;;;-1:-1:-1;42401:104:0;;;;;:::i;:::-;;:::i;38022:31::-;;;;;;;;;;;;;;;;40696:81;;;;;;;;;;-1:-1:-1;40696:81:0;;;;;:::i;:::-;;:::i;28230:164::-;;;;;;;;;;-1:-1:-1;28230:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28351:25:0;;;28327:4;28351:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28230:164;42008:144;;;;;;;;;;-1:-1:-1;42008:144:0;;;;;:::i;:::-;;:::i;39394:155::-;;;;;;;;;;-1:-1:-1;39394:155:0;;;;;:::i;:::-;;:::i;6453:201::-;;;;;;;;;;-1:-1:-1;6453:201:0;;;;;:::i;:::-;;:::i;25207:305::-;25309:4;-1:-1:-1;;;;;;25346:40:0;;-1:-1:-1;;;25346:40:0;;:105;;-1:-1:-1;;;;;;;25403:48:0;;-1:-1:-1;;;25403:48:0;25346:105;:158;;;-1:-1:-1;;;;;;;;;;18085:40:0;;;25468:36;25326:178;25207:305;-1:-1:-1;;25207:305:0:o;26152:100::-;26206:13;26239:5;26232:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26152:100;:::o;27711:221::-;27787:7;31054:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31054:16:0;27807:73;;;;-1:-1:-1;;;27807:73:0;;13807:2:1;27807:73:0;;;13789:21:1;13846:2;13826:18;;;13819:30;13885:34;13865:18;;;13858:62;-1:-1:-1;;;13936:18:1;;;13929:42;13988:19;;27807:73:0;;;;;;;;;-1:-1:-1;27900:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27900:24:0;;27711:221::o;27234:411::-;27315:13;27331:23;27346:7;27331:14;:23::i;:::-;27315:39;;27379:5;-1:-1:-1;;;;;27373:11:0;:2;-1:-1:-1;;;;;27373:11:0;;;27365:57;;;;-1:-1:-1;;;27365:57:0;;15759:2:1;27365:57:0;;;15741:21:1;15798:2;15778:18;;;15771:30;15837:34;15817:18;;;15810:62;-1:-1:-1;;;15888:18:1;;;15881:31;15929:19;;27365:57:0;15557:397:1;27365:57:0;4348:10;-1:-1:-1;;;;;27457:21:0;;;;:62;;-1:-1:-1;27482:37:0;27499:5;4348:10;28230:164;:::i;27482:37::-;27435:168;;;;-1:-1:-1;;;27435:168:0;;12200:2:1;27435:168:0;;;12182:21:1;12239:2;12219:18;;;12212:30;12278:34;12258:18;;;12251:62;12349:26;12329:18;;;12322:54;12393:19;;27435:168:0;11998:420:1;27435:168:0;27616:21;27625:2;27629:7;27616:8;:21::i;:::-;27304:341;27234:411;;:::o;41243:100::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;41315:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;41243:100:::0;:::o;41349:77::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;41405:6:::1;:15:::0;;-1:-1:-1;;41405:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41349:77::o;38692:89::-;38736:7;38759:16;:6;964:14;;872:114;38759:16;38752:23;;38692:89;:::o;28461:339::-;28656:41;4348:10;28689:7;28656:18;:41::i;:::-;28648:103;;;;-1:-1:-1;;;28648:103:0;;;;;;;:::i;:::-;28764:28;28774:4;28780:2;28784:7;28764:9;:28::i;42158:239::-;42217:4;;42230:143;42251:20;:27;42247:31;;42230:143;;;42325:5;-1:-1:-1;;;;;42298:32:0;:20;42319:1;42298:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;42298:23:0;:32;42294:72;;;-1:-1:-1;42352:4:0;;42158:239;-1:-1:-1;;42158:239:0:o;42294:72::-;42280:3;;;;:::i;:::-;;;;42230:143;;;-1:-1:-1;42386:5:0;;42158:239;-1:-1:-1;;42158:239:0:o;41905:95::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;41970:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;41970:24:0;;::::1;::::0;;;::::1;::::0;;41905:95::o;41432:145::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;41479:7:::1;41500;5617:6:::0;;-1:-1:-1;;;;;5617:6:0;;5544:87;41500:7:::1;-1:-1:-1::0;;;;;41492:21:0::1;41521;41492:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41478:69;;;41562:2;41554:11;;;::::0;::::1;;41469:108;41432:145::o:0;28871:185::-;29009:39;29026:4;29032:2;29036:7;29009:39;;;;;;;;;;;;:16;:39::i;39555:635::-;39630:16;39658:23;39684:17;39694:6;39684:9;:17::i;:::-;39658:43;;39708:30;39755:15;39741:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39741:30:0;-1:-1:-1;39708:63:0;-1:-1:-1;39803:1:0;39778:22;39847:309;39872:15;39854;:33;:64;;;;;39909:9;;39891:14;:27;;39854:64;39847:309;;;39929:25;39957:23;39965:14;39957:7;:23::i;:::-;39929:51;;40016:6;-1:-1:-1;;;;;39995:27:0;:17;-1:-1:-1;;;;;39995:27:0;;39991:131;;;40068:14;40035:13;40049:15;40035:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;40095:17;;;;:::i;:::-;;;;39991:131;40132:16;;;;:::i;:::-;;;;39920:236;39847:309;;;-1:-1:-1;40171:13:0;;39555:635;-1:-1:-1;;;;39555:635:0:o;40783:74::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;40839:4:::1;:12:::0;40783:74::o;40999:132::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;41087:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;37906:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37873:28::-;;;;;;;:::i;25846:239::-;25918:7;25954:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25954:16:0;25989:19;25981:73;;;;-1:-1:-1;;;25981:73:0;;13036:2:1;25981:73:0;;;13018:21:1;13075:2;13055:18;;;13048:30;13114:34;13094:18;;;13087:62;-1:-1:-1;;;13165:18:1;;;13158:39;13214:19;;25981:73:0;12834:405:1;25576:208:0;25648:7;-1:-1:-1;;;;;25676:19:0;;25668:74;;;;-1:-1:-1;;;25668:74:0;;12625:2:1;25668:74:0;;;12607:21:1;12664:2;12644:18;;;12637:30;12703:34;12683:18;;;12676:62;-1:-1:-1;;;12754:18:1;;;12747:40;12804:19;;25668:74:0;12423:406:1;25668:74:0;-1:-1:-1;;;;;;25760:16:0;;;;;:9;:16;;;;;;;25576:208::o;6195:103::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;41137:100::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;41209:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;26321:104::-:0;26377:13;26410:7;26403:14;;;;;:::i;38787:599::-;38852:11;38526:1;38512:11;:15;:52;;;;;38546:18;;38531:11;:33;;38512:52;38504:85;;;;-1:-1:-1;;;38504:85:0;;10322:2:1;38504:85:0;;;10304:21:1;10361:2;10341:18;;;10334:30;-1:-1:-1;;;10380:18:1;;;10373:50;10440:18;;38504:85:0;10120:344:1;38504:85:0;38638:9;;38623:11;38604:16;:6;964:14;;872:114;38604:16;:30;;;;:::i;:::-;:43;;38596:76;;;;-1:-1:-1;;;38596:76:0;;16161:2:1;38596:76:0;;;16143:21:1;16200:2;16180:18;;;16173:30;-1:-1:-1;;;16219:18:1;;;16212:50;16279:18;;38596:76:0;15959:344:1;38596:76:0;38881:6:::1;::::0;::::1;;38880:7;38872:43;;;::::0;-1:-1:-1;;;38872:43:0;;14581:2:1;38872:43:0::1;::::0;::::1;14563:21:1::0;14620:2;14600:18;;;14593:30;14659:25;14639:18;;;14632:53;14702:18;;38872:43:0::1;14379:347:1::0;38872:43:0::1;5617:6:::0;;-1:-1:-1;;;;;5617:6:0;38926:10:::1;:21;38922:416;;38963:15;::::0;;;::::1;;;:23;;38982:4;38963:23;38960:298;;;39011:25;39025:10;39011:13;:25::i;:::-;39003:61;;;::::0;-1:-1:-1;;;39003:61:0;;17275:2:1;39003:61:0::1;::::0;::::1;17257:21:1::0;17314:2;17294:18;;;17287:30;17353:25;17333:18;;;17326:53;17396:18;;39003:61:0::1;17073:347:1::0;39003:61:0::1;39127:10;39079:24;39106:32:::0;;;:20:::1;:32;::::0;;;;;39195:18:::1;::::0;39161:30:::1;39180:11:::0;39106:32;39161:30:::1;:::i;:::-;:52;;39153:93;;;::::0;-1:-1:-1;;;39153:93:0;;10671:2:1;39153:93:0::1;::::0;::::1;10653:21:1::0;10710:2;10690:18;;;10683:30;10749;10729:18;;;10722:58;10797:18;;39153:93:0::1;10469:352:1::0;39153:93:0::1;38988:270;38960:298;39296:11;39289:4;;:18;;;;:::i;:::-;39276:9;:31;;39268:62;;;::::0;-1:-1:-1;;;39268:62:0;;16510:2:1;39268:62:0::1;::::0;::::1;16492:21:1::0;16549:2;16529:18;;;16522:30;-1:-1:-1;;;16568:18:1;;;16561:48;16626:18;;39268:62:0::1;16308:342:1::0;39268:62:0::1;39344:34;39354:10;39366:11;39344:9;:34::i;28004:155::-:0;28099:52;4348:10;28132:8;28142;28099:18;:52::i;37944:31::-;;;;;;;:::i;40863:130::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;40947:18:::1;:40:::0;40863:130::o;29127:328::-;29302:41;4348:10;29335:7;29302:18;:41::i;:::-;29294:103;;;;-1:-1:-1;;;29294:103:0;;;;;;;:::i;:::-;29408:39;29422:4;29428:2;29432:7;29441:5;29408:13;:39::i;:::-;29127:328;;;;:::o;38249:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38249:37:0;;-1:-1:-1;38249:37:0;:::o;40196:494::-;31030:4;31054:16;;;:7;:16;;;;;;40295:13;;-1:-1:-1;;;;;31054:16:0;40320:98;;;;-1:-1:-1;;;40320:98:0;;15343:2:1;40320:98:0;;;15325:21:1;15382:2;15362:18;;;15355:30;15421:34;15401:18;;;15394:62;-1:-1:-1;;;15472:18:1;;;15465:45;15527:19;;40320:98:0;15141:411:1;40320:98:0;40431:8;;;;;;;40427:64;;40466:17;40459:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40196:494;;;:::o;40427:64::-;40499:28;40530:10;:8;:10::i;:::-;40499:41;;40585:1;40560:14;40554:28;:32;:130;;;;;;;;;;;;;;;;;40622:14;40638:19;:8;:17;:19::i;:::-;40659:9;40605:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40554:130;40547:137;40196:494;-1:-1:-1;;;40196:494:0:o;42401:104::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;42472:18:::1;:27:::0;42401:104::o;40696:81::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;40754:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;40754:17:0;;::::1;::::0;;;::::1;::::0;;40696:81::o;42008:144::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;42083:27:::1;42090:20;;42083:27;:::i;:::-;42117:29;:20;42140:6:::0;;42117:29:::1;:::i;39394:155::-:0;39480:11;38526:1;38512:11;:15;:52;;;;;38546:18;;38531:11;:33;;38512:52;38504:85;;;;-1:-1:-1;;;38504:85:0;;10322:2:1;38504:85:0;;;10304:21:1;10361:2;10341:18;;;10334:30;-1:-1:-1;;;10380:18:1;;;10373:50;10440:18;;38504:85:0;10120:344:1;38504:85:0;38638:9;;38623:11;38604:16;:6;964:14;;872:114;38604:16;:30;;;;:::i;:::-;:43;;38596:76;;;;-1:-1:-1;;;38596:76:0;;16161:2:1;38596:76:0;;;16143:21:1;16200:2;16180:18;;;16173:30;-1:-1:-1;;;16219:18:1;;;16212:50;16279:18;;38596:76:0;15959:344:1;38596:76:0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23:::1;5756:68;;;;-1:-1:-1::0;;;5756:68:0::1;;;;;;;:::i;:::-;39510:33:::2;39520:9;39531:11;39510:9;:33::i;6453:201::-:0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6542:22:0;::::1;6534:73;;;::::0;-1:-1:-1;;;6534:73:0;;9558:2:1;6534:73:0::1;::::0;::::1;9540:21:1::0;9597:2;9577:18;;;9570:30;9636:34;9616:18;;;9609:62;-1:-1:-1;;;9687:18:1;;;9680:36;9733:19;;6534:73:0::1;9356:402:1::0;6534:73:0::1;6618:28;6637:8;6618:18;:28::i;34947:174::-:0;35022:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35022:29:0;-1:-1:-1;;;;;35022:29:0;;;;;;;;:24;;35076:23;35022:24;35076:14;:23::i;:::-;-1:-1:-1;;;;;35067:46:0;;;;;;;;;;;34947:174;;:::o;31259:348::-;31352:4;31054:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31054:16:0;31369:73;;;;-1:-1:-1;;;31369:73:0;;11787:2:1;31369:73:0;;;11769:21:1;11826:2;11806:18;;;11799:30;11865:34;11845:18;;;11838:62;-1:-1:-1;;;11916:18:1;;;11909:42;11968:19;;31369:73:0;11585:408:1;31369:73:0;31453:13;31469:23;31484:7;31469:14;:23::i;:::-;31453:39;;31522:5;-1:-1:-1;;;;;31511:16:0;:7;-1:-1:-1;;;;;31511:16:0;;:51;;;;31555:7;-1:-1:-1;;;;;31531:31:0;:20;31543:7;31531:11;:20::i;:::-;-1:-1:-1;;;;;31531:31:0;;31511:51;:87;;;-1:-1:-1;;;;;;28351:25:0;;;28327:4;28351:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31566:32;31503:96;31259:348;-1:-1:-1;;;;31259:348:0:o;34251:578::-;34410:4;-1:-1:-1;;;;;34383:31:0;:23;34398:7;34383:14;:23::i;:::-;-1:-1:-1;;;;;34383:31:0;;34375:85;;;;-1:-1:-1;;;34375:85:0;;14933:2:1;34375:85:0;;;14915:21:1;14972:2;14952:18;;;14945:30;15011:34;14991:18;;;14984:62;-1:-1:-1;;;15062:18:1;;;15055:39;15111:19;;34375:85:0;14731:405:1;34375:85:0;-1:-1:-1;;;;;34479:16:0;;34471:65;;;;-1:-1:-1;;;34471:65:0;;11028:2:1;34471:65:0;;;11010:21:1;11067:2;11047:18;;;11040:30;11106:34;11086:18;;;11079:62;-1:-1:-1;;;11157:18:1;;;11150:34;11201:19;;34471:65:0;10826:400:1;34471:65:0;34653:29;34670:1;34674:7;34653:8;:29::i;:::-;-1:-1:-1;;;;;34695:15:0;;;;;;:9;:15;;;;;:20;;34714:1;;34695:15;:20;;34714:1;;34695:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34726:13:0;;;;;;:9;:13;;;;;:18;;34743:1;;34726:13;:18;;34743:1;;34726:18;:::i;:::-;;;;-1:-1:-1;;34755:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34755:21:0;-1:-1:-1;;;;;34755:21:0;;;;;;;;;34794:27;;34755:16;;34794:27;;;;;;;34251:578;;;:::o;6814:191::-;6907:6;;;-1:-1:-1;;;;;6924:17:0;;;-1:-1:-1;;;;;;6924:17:0;;;;;;;6957:40;;6907:6;;;6924:17;6907:6;;6957:40;;6888:16;;6957:40;6877:128;6814:191;:::o;41583:204::-;41663:9;41658:124;41682:11;41678:1;:15;41658:124;;;41709:18;:6;1083:19;;1101:1;1083:19;;;994:127;41709:18;41736:38;41746:9;41757:16;:6;964:14;;872:114;41757:16;41736:9;:38::i;:::-;41695:3;;;;:::i;:::-;;;;41658:124;;35263:315;35418:8;-1:-1:-1;;;;;35409:17:0;:5;-1:-1:-1;;;;;35409:17:0;;;35401:55;;;;-1:-1:-1;;;35401:55:0;;11433:2:1;35401:55:0;;;11415:21:1;11472:2;11452:18;;;11445:30;11511:27;11491:18;;;11484:55;11556:18;;35401:55:0;11231:349:1;35401:55:0;-1:-1:-1;;;;;35467:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35467:46:0;;;;;;;;;;35529:41;;8661::1;;;35529::0;;8634:18:1;35529:41:0;;;;;;;35263:315;;;:::o;30337:::-;30494:28;30504:4;30510:2;30514:7;30494:9;:28::i;:::-;30541:48;30564:4;30570:2;30574:7;30583:5;30541:22;:48::i;:::-;30533:111;;;;-1:-1:-1;;;30533:111:0;;;;;;;:::i;41793:104::-;41853:13;41882:9;41875:16;;;;;:::i;1830:723::-;1886:13;2107:10;2103:53;;-1:-1:-1;;2134:10:0;;;;;;;;;;;;-1:-1:-1;;;2134:10:0;;;;;1830:723::o;2103:53::-;2181:5;2166:12;2222:78;2229:9;;2222:78;;2255:8;;;;:::i;:::-;;-1:-1:-1;2278:10:0;;-1:-1:-1;2286:2:0;2278:10;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2332:17:0;;2310:39;;2360:154;2367:10;;2360:154;;2394:11;2404:1;2394:11;;:::i;:::-;;-1:-1:-1;2463:10:0;2471:2;2463:5;:10;:::i;:::-;2450:24;;:2;:24;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2420:56:0;;;;;;;;-1:-1:-1;2491:11:0;2500:2;2491:11;;:::i;:::-;;;2360:154;;31949:110;32025:26;32035:2;32039:7;32025:26;;;;;;;;;;;;:9;:26::i;36143:799::-;36298:4;-1:-1:-1;;;;;36319:13:0;;8155:20;8203:8;36315:620;;36355:72;;-1:-1:-1;;;36355:72:0;;-1:-1:-1;;;;;36355:36:0;;;;;:72;;4348:10;;36406:4;;36412:7;;36421:5;;36355:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36355:72:0;;;;;;;;-1:-1:-1;;36355:72:0;;;;;;;;;;;;:::i;:::-;;;36351:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36597:13:0;;36593:272;;36640:60;;-1:-1:-1;;;36640:60:0;;;;;;;:::i;36593:272::-;36815:6;36809:13;36800:6;36796:2;36792:15;36785:38;36351:529;-1:-1:-1;;;;;;36478:51:0;-1:-1:-1;;;36478:51:0;;-1:-1:-1;36471:58:0;;36315:620;-1:-1:-1;36919:4:0;36143:799;;;;;;:::o;32286:321::-;32416:18;32422:2;32426:7;32416:5;:18::i;:::-;32467:54;32498:1;32502:2;32506:7;32515:5;32467:22;:54::i;:::-;32445:154;;;;-1:-1:-1;;;32445:154:0;;;;;;;:::i;32943:382::-;-1:-1:-1;;;;;33023:16:0;;33015:61;;;;-1:-1:-1;;;33015:61:0;;13446:2:1;33015:61:0;;;13428:21:1;;;13465:18;;;13458:30;13524:34;13504:18;;;13497:62;13576:18;;33015:61:0;13244:356:1;33015:61:0;31030:4;31054:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31054:16:0;:30;33087:58;;;;-1:-1:-1;;;33087:58:0;;9965:2:1;33087:58:0;;;9947:21:1;10004:2;9984:18;;;9977:30;10043;10023:18;;;10016:58;10091:18;;33087:58:0;9763:352:1;33087:58:0;-1:-1:-1;;;;;33216:13:0;;;;;;:9;:13;;;;;:18;;33233:1;;33216:13;:18;;33233:1;;33216:18;:::i;:::-;;;;-1:-1:-1;;33245:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33245:21:0;-1:-1:-1;;;;;33245:21:0;;;;;;;;33284:33;;33245:16;;;33284:33;;33245:16;;33284:33;32943:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::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:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:615::-;3057:6;3065;3118:2;3106:9;3097:7;3093:23;3089:32;3086:52;;;3134:1;3131;3124:12;3086:52;3174:9;3161:23;3203:18;3244:2;3236:6;3233:14;3230:34;;;3260:1;3257;3250:12;3230:34;3298:6;3287:9;3283:22;3273:32;;3343:7;3336:4;3332:2;3328:13;3324:27;3314:55;;3365:1;3362;3355:12;3314:55;3405:2;3392:16;3431:2;3423:6;3420:14;3417:34;;;3447:1;3444;3437:12;3417:34;3500:7;3495:2;3485:6;3482:1;3478:14;3474:2;3470:23;3466:32;3463:45;3460:65;;;3521:1;3518;3511:12;3460:65;3552:2;3544:11;;;;;3574:6;;-1:-1:-1;2971:615:1;;-1:-1:-1;;;;2971:615:1:o;3591:180::-;3647:6;3700:2;3688:9;3679:7;3675:23;3671:32;3668:52;;;3716:1;3713;3706:12;3668:52;3739:26;3755:9;3739:26;:::i;3776:245::-;3834:6;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;3942:9;3929:23;3961:30;3985:5;3961:30;:::i;4026:249::-;4095:6;4148:2;4136:9;4127:7;4123:23;4119:32;4116:52;;;4164:1;4161;4154:12;4116:52;4196:9;4190:16;4215:30;4239:5;4215:30;:::i;4280:450::-;4349:6;4402:2;4390:9;4381:7;4377:23;4373:32;4370:52;;;4418:1;4415;4408:12;4370:52;4458:9;4445:23;4491:18;4483:6;4480:30;4477:50;;;4523:1;4520;4513:12;4477:50;4546:22;;4599:4;4591:13;;4587:27;-1:-1:-1;4577:55:1;;4628:1;4625;4618:12;4577:55;4651:73;4716:7;4711:2;4698:16;4693:2;4689;4685:11;4651:73;:::i;4735:180::-;4794:6;4847:2;4835:9;4826:7;4822:23;4818:32;4815:52;;;4863:1;4860;4853:12;4815:52;-1:-1:-1;4886:23:1;;4735:180;-1:-1:-1;4735:180:1:o;4920:254::-;4988:6;4996;5049:2;5037:9;5028:7;5024:23;5020:32;5017:52;;;5065:1;5062;5055:12;5017:52;5101:9;5088:23;5078:33;;5130:38;5164:2;5153:9;5149:18;5130:38;:::i;5179:257::-;5220:3;5258:5;5252:12;5285:6;5280:3;5273:19;5301:63;5357:6;5350:4;5345:3;5341:14;5334:4;5327:5;5323:16;5301:63;:::i;:::-;5418:2;5397:15;-1:-1:-1;;5393:29:1;5384:39;;;;5425:4;5380:50;;5179:257;-1:-1:-1;;5179:257:1:o;5441:1527::-;5665:3;5703:6;5697:13;5729:4;5742:51;5786:6;5781:3;5776:2;5768:6;5764:15;5742:51;:::i;:::-;5856:13;;5815:16;;;;5878:55;5856:13;5815:16;5900:15;;;5878:55;:::i;:::-;6022:13;;5955:20;;;5995:1;;6082;6104:18;;;;6157;;;;6184:93;;6262:4;6252:8;6248:19;6236:31;;6184:93;6325:2;6315:8;6312:16;6292:18;6289:40;6286:167;;;-1:-1:-1;;;6352:33:1;;6408:4;6405:1;6398:15;6438:4;6359:3;6426:17;6286:167;6469:18;6496:110;;;;6620:1;6615:328;;;;6462:481;;6496:110;-1:-1:-1;;6531:24:1;;6517:39;;6576:20;;;;-1:-1:-1;6496:110:1;;6615:328;17680:1;17673:14;;;17717:4;17704:18;;6710:1;6724:169;6738:8;6735:1;6732:15;6724:169;;;6820:14;;6805:13;;;6798:37;6863:16;;;;6755:10;;6724:169;;;6728:3;;6924:8;6917:5;6913:20;6906:27;;6462:481;-1:-1:-1;6959:3:1;;5441:1527;-1:-1:-1;;;;;;;;;;;5441:1527:1:o;7391:488::-;-1:-1:-1;;;;;7660:15:1;;;7642:34;;7712:15;;7707:2;7692:18;;7685:43;7759:2;7744:18;;7737:34;;;7807:3;7802:2;7787:18;;7780:31;;;7585:4;;7828:45;;7853:19;;7845:6;7828:45;:::i;:::-;7820:53;7391:488;-1:-1:-1;;;;;;7391:488:1:o;7884:632::-;8055:2;8107:21;;;8177:13;;8080:18;;;8199:22;;;8026:4;;8055:2;8278:15;;;;8252:2;8237:18;;;8026:4;8321:169;8335:6;8332:1;8329:13;8321:169;;;8396:13;;8384:26;;8465:15;;;;8430:12;;;;8357:1;8350:9;8321:169;;;-1:-1:-1;8507:3:1;;7884:632;-1:-1:-1;;;;;;7884:632:1:o;8713:219::-;8862:2;8851:9;8844:21;8825:4;8882:44;8922:2;8911:9;8907:18;8899:6;8882:44;:::i;8937:414::-;9139:2;9121:21;;;9178:2;9158:18;;;9151:30;9217:34;9212:2;9197:18;;9190:62;-1:-1:-1;;;9283:2:1;9268:18;;9261:48;9341:3;9326:19;;8937:414::o;14018:356::-;14220:2;14202:21;;;14239:18;;;14232:30;14298:34;14293:2;14278:18;;14271:62;14365:2;14350:18;;14018:356::o;16655:413::-;16857:2;16839:21;;;16896:2;16876:18;;;16869:30;16935:34;16930:2;16915:18;;16908:62;-1:-1:-1;;;17001:2:1;16986:18;;16979:47;17058:3;17043:19;;16655:413::o;17733:128::-;17773:3;17804:1;17800:6;17797:1;17794:13;17791:39;;;17810:18;;:::i;:::-;-1:-1:-1;17846:9:1;;17733:128::o;17866:120::-;17906:1;17932;17922:35;;17937:18;;:::i;:::-;-1:-1:-1;17971:9:1;;17866:120::o;17991:168::-;18031:7;18097:1;18093;18089:6;18085:14;18082:1;18079:21;18074:1;18067:9;18060:17;18056:45;18053:71;;;18104:18;;:::i;:::-;-1:-1:-1;18144:9:1;;17991:168::o;18164:125::-;18204:4;18232:1;18229;18226:8;18223:34;;;18237:18;;:::i;:::-;-1:-1:-1;18274:9:1;;18164:125::o;18294:258::-;18366:1;18376:113;18390:6;18387:1;18384:13;18376:113;;;18466:11;;;18460:18;18447:11;;;18440:39;18412:2;18405:10;18376:113;;;18507:6;18504:1;18501:13;18498:48;;;-1:-1:-1;;18542:1:1;18524:16;;18517:27;18294:258::o;18557:380::-;18636:1;18632:12;;;;18679;;;18700:61;;18754:4;18746:6;18742:17;18732:27;;18700:61;18807:2;18799:6;18796:14;18776:18;18773:38;18770:161;;;18853:10;18848:3;18844:20;18841:1;18834:31;18888:4;18885:1;18878:15;18916:4;18913:1;18906:15;18770:161;;18557:380;;;:::o;18942:135::-;18981:3;-1:-1:-1;;19002:17:1;;18999:43;;;19022:18;;:::i;:::-;-1:-1:-1;19069:1:1;19058:13;;18942:135::o;19082:112::-;19114:1;19140;19130:35;;19145:18;;:::i;:::-;-1:-1:-1;19179:9:1;;19082:112::o;19199:127::-;19260:10;19255:3;19251:20;19248:1;19241:31;19291:4;19288:1;19281:15;19315:4;19312:1;19305:15;19331:127;19392:10;19387:3;19383:20;19380:1;19373:31;19423:4;19420:1;19413:15;19447:4;19444:1;19437:15;19463:127;19524:10;19519:3;19515:20;19512:1;19505:31;19555:4;19552:1;19545:15;19579:4;19576:1;19569:15;19595:127;19656:10;19651:3;19647:20;19644:1;19637:31;19687:4;19684:1;19677:15;19711:4;19708:1;19701:15;19727:131;-1:-1:-1;;;;;;19801:32:1;;19791:43;;19781:71;;19848:1;19845;19838:12

Swarm Source

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