ETH Price: $3,535.08 (-1.52%)
Gas: 20 Gwei

Token

Mutant Floki (MF)
 

Overview

Max Total Supply

4,200 MF

Holders

1,460

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 MF
0x22b0cd01f0C1F9a43557EF5f1D9F5ee1d93646Dc
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:
MutantFloki

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-21
*/

// SPDX-License-Identifier: MIT

/*
Mutant Floki by Will Jack
*/

pragma solidity ^0.8.4;

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

pragma solidity ^0.8.4;

/**
 * @dev Contract module which provides access control
 *
 * the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * mapped to 
 * `onlyOwner`
 */
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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

pragma solidity ^0.8.4;

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

pragma solidity ^0.8.4;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

pragma solidity ^0.8.4;

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

pragma solidity ^0.8.4;

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

pragma solidity ^0.8.4;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

pragma solidity ^0.8.4;

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

pragma solidity ^0.8.4;

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


pragma solidity ^0.8.4;

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


pragma solidity ^0.8.4;

/**
 * @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;
    }
}
pragma solidity ^0.8.4;

abstract contract ERC721P is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    string private _name;
    string private _symbol;
    address[] internal _owners;
    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
        interfaceId == type(IERC721).interfaceId ||
        interfaceId == type(IERC721Metadata).interfaceId ||
        super.supportsInterface(interfaceId);
    }
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        uint count = 0;
        uint length = _owners.length;
        for( uint i = 0; i < length; ++i ){
            if( owner == _owners[i] ){
                ++count;
            }
        }
        delete length;
        return count;
    }
    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;
    }
    function name() public view virtual override returns (string memory) {
        return _name;
    }
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721P.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);
    }
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }
    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);
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }
    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);
    }
    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");
    }
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721P.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }
    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"
        );
    }
    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);
        _owners.push(to);

        emit Transfer(address(0), to, tokenId);
    }
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721P.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721P.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);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721P.ownerOf(tokenId), to, tokenId);
    }
    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;
        }
    }
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

pragma solidity ^0.8.4;

abstract contract ERC721Enum is ERC721P, IERC721Enumerable {
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721P) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256 tokenId) {
        require(index < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint count;
        for( uint i; i < _owners.length; ++i ){
            if( owner == _owners[i] ){
                if( count == index )
                    return i;
                else
                    ++count;
            }
        }
        require(false, "ERC721Enum: owner ioob");
    }
    function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        require(0 < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 tokenCount = balanceOf(owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokenIds;
    }
    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enum.totalSupply(), "ERC721Enum: global ioob");
        return index;
    }
}

pragma solidity ^0.8.4;

interface IWatcher {
    function watchTransfer(address _from, address _to, uint256 _tokenId) external;
}

contract MutantFloki is ERC721Enum, Ownable, ReentrancyGuard {
    using Strings for uint256;

    //sale settings
    uint256 constant private MAX_SUPPLY = 4200;
    uint256 constant private MAX_PRESALE_MINT = 2;
    uint256 private TEAM_RESERVE_AVAILABLE_MINTS = 50;
    uint256 private COST = 0.069 ether;
    uint256 private MAX_SALE_MINT = 5;
    address public _trustedContract = 0x0000000000000000000000000000000000000000;

    bool public isPresaleActive = false;
    bool public isSaleActive = false;

    //presale settings
    mapping(address => bool) public presaleWhitelist;
    mapping(address => uint256) public presaleWhitelistMints;

    string private baseURI;

    constructor(
        string memory _name,
        string memory _symbol
    ) ERC721P(_name, _symbol) {}

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

    function _publicSupply() internal view virtual returns (uint256) {
        return MAX_SUPPLY - TEAM_RESERVE_AVAILABLE_MINTS;
    }

    function _transferNotice(address _from, address _to, uint256 _tokenId) internal {
        if (_trustedContract != address(0)) {
            IWatcher(_trustedContract).watchTransfer(_from, _to, _tokenId);
        }
    }

    // external
    function isWhitelisted (address _address) external view returns (bool) {
        return presaleWhitelist[_address];
    }

    function setTrustedContract(address _contractAddress) public onlyOwner {
        _trustedContract = _contractAddress;
    }

    function flipPresaleState() external onlyOwner {
        isPresaleActive = !isPresaleActive;
    }

    function flipSaleState() external onlyOwner {
        isSaleActive = !isSaleActive;
    }

    function mint(uint256 _mintAmount) external payable {
        require(isSaleActive, "Sale is not active");
        require(_mintAmount > 0, "Minted amount should be positive" );
        require(_mintAmount <= MAX_SALE_MINT, "Minted amount exceeds sale limit" );

        uint256 totalSupply = totalSupply();

        require(totalSupply + _mintAmount <= _publicSupply(), "The requested amount exceeds the remaining supply" );
        require(msg.value >= COST * _mintAmount);

        for (uint256 i = 0; i < _mintAmount; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }
    }

    function mintPresale(uint256 _mintAmount) external payable {
        require(isPresaleActive, "Presale is not active");
        require(presaleWhitelist[msg.sender], "Caller is not whitelisted");

        uint256 totalSupply = totalSupply();
        uint256 availableMints = MAX_PRESALE_MINT - presaleWhitelistMints[msg.sender];

        require(_mintAmount <= availableMints, "Too many mints requested");
        require(totalSupply + _mintAmount <= _publicSupply(), "The requested amount exceeds the remaining supply");
        require(msg.value >= COST * _mintAmount , "Wrong amount provided");

        presaleWhitelistMints[msg.sender] += _mintAmount;

        for(uint256 i = 0; i < _mintAmount; i++){
            _safeMint(msg.sender, totalSupply + i);
        }
    }

    function withdraw() external onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

    function addToWhitelist(address[] calldata _addresses) external onlyOwner {
        for (uint256 i = 0; i < _addresses.length; i++) {
            require(_addresses[i] != address(0), "Null address is not allowed");
            presaleWhitelist[_addresses[i]] = true;
            presaleWhitelistMints[_addresses[i]] > 0 ? presaleWhitelistMints[_addresses[i]] : 0;
        }
    }

    function setCost(uint256 _newCost) external onlyOwner {
        COST = _newCost;
    }

    function setMaxMintAmount(uint256 _newMaxMintAmount) external onlyOwner {
        MAX_SALE_MINT = _newMaxMintAmount;
    }

    function tokenURI(uint256 _tokenId) external view virtual override returns (string memory) {
        require(_exists(_tokenId), "ERC721Metadata: Nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json")) : "";
    }

    // admin minting
     function reserve(address _to, uint256 _reserveAmount) public onlyOwner {
        uint256 supply = totalSupply();
        require(
            _reserveAmount > 0 && _reserveAmount <= TEAM_RESERVE_AVAILABLE_MINTS,
            "Not enough reserve left for team"
        );
        for (uint256 i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
        }
        TEAM_RESERVE_AVAILABLE_MINTS -= _reserveAmount;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function transferFrom(address _from, address _to, uint256 _tokenId) public override {
        ERC721P.transferFrom(_from, _to, _tokenId);
        _transferNotice(_from, _to, _tokenId);
    }

    function safeTransferFrom(address _from, address _to, uint256 _tokenId, bytes memory _data) public override {
        ERC721P.safeTransferFrom(_from, _to, _tokenId, _data);
        _transferNotice(_from, _to, _tokenId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_trustedContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWhitelistMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contractAddress","type":"address"}],"name":"setTrustedContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052603260075566f52322698080006008556005600955600a80546001600160b01b03191690553480156200003657600080fd5b5060405162002a5838038062002a58833981016040819052620000599162000265565b8151829082906200007290600090602085019062000108565b5080516200008890600190602084019062000108565b505050620000a56200009f620000b260201b60201c565b620000b6565b5050600160065562000322565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011690620002cf565b90600052602060002090601f0160209004810192826200013a576000855562000185565b82601f106200015557805160ff191683800117855562000185565b8280016001018555821562000185579182015b828111156200018557825182559160200191906001019062000168565b506200019392915062000197565b5090565b5b8082111562000193576000815560010162000198565b600082601f830112620001c057600080fd5b81516001600160401b0380821115620001dd57620001dd6200030c565b604051601f8301601f19908116603f011681019082821181831017156200020857620002086200030c565b816040528381526020925086838588010111156200022557600080fd5b600091505b838210156200024957858201830151818301840152908201906200022a565b838211156200025b5760008385830101525b9695505050505050565b600080604083850312156200027957600080fd5b82516001600160401b03808211156200029157600080fd5b6200029f86838701620001ae565b93506020850151915080821115620002b657600080fd5b50620002c585828601620001ae565b9150509250929050565b600181811c90821680620002e457607f821691505b602082108114156200030657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61272680620003326000396000f3fe60806040526004361061021a5760003560e01c806360d938dc11610123578063a22cb465116100ab578063e985e9c51161006f578063e985e9c514610649578063eb8835ab14610692578063f2fde38b146106c2578063f759867a146106e2578063f81227d4146106f557600080fd5b8063a22cb465146105a9578063aaf50292146105c9578063b88d4fde146105e9578063c87b56dd14610609578063cc47a40b1461062957600080fd5b80637f649783116100f25780637f649783146105165780638462151c146105365780638da5cb5b1461056357806395d89b4114610581578063a0712d681461059657600080fd5b806360d938dc146104a05780636352211e146104c157806370a08231146104e1578063715018a61461050157600080fd5b806334918dfd116101a657806344a0d68a1161017557806344a0d68a146103f25780634f6ccce71461041257806355105e9e1461043257806355f804b31461045f578063564566a81461047f57600080fd5b806334918dfd1461036f5780633af32abf146103845780633ccfd60b146103bd57806342842e0e146103d257600080fd5b8063088a4ed0116101ed578063088a4ed0146102ce578063095ea7b3146102f057806318160ddd1461031057806323b872dd1461032f5780632f745c591461034f57600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc146102765780630856f5ce146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004612296565b61070a565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b50610269610735565b60405161024b919061241e565b34801561028257600080fd5b50610296610291366004612319565b6107c7565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b50600a54610296906001600160a01b031681565b3480156102da57600080fd5b506102ee6102e9366004612319565b610854565b005b3480156102fc57600080fd5b506102ee61030b3660046121f7565b610883565b34801561031c57600080fd5b506002545b60405190815260200161024b565b34801561033b57600080fd5b506102ee61034a366004612103565b610999565b34801561035b57600080fd5b5061032161036a3660046121f7565b6109af565b34801561037b57600080fd5b506102ee610a5e565b34801561039057600080fd5b5061023f61039f3660046120b5565b6001600160a01b03166000908152600b602052604090205460ff1690565b3480156103c957600080fd5b506102ee610aa9565b3480156103de57600080fd5b506102ee6103ed366004612103565b610af9565b3480156103fe57600080fd5b506102ee61040d366004612319565b610b14565b34801561041e57600080fd5b5061032161042d366004612319565b610b43565b34801561043e57600080fd5b5061032161044d3660046120b5565b600c6020526000908152604090205481565b34801561046b57600080fd5b506102ee61047a3660046122d0565b610ba0565b34801561048b57600080fd5b50600a5461023f90600160a81b900460ff1681565b3480156104ac57600080fd5b50600a5461023f90600160a01b900460ff1681565b3480156104cd57600080fd5b506102966104dc366004612319565b610be1565b3480156104ed57600080fd5b506103216104fc3660046120b5565b610c6d565b34801561050d57600080fd5b506102ee610d3f565b34801561052257600080fd5b506102ee610531366004612221565b610d73565b34801561054257600080fd5b506105566105513660046120b5565b610f37565b60405161024b91906123da565b34801561056f57600080fd5b506005546001600160a01b0316610296565b34801561058d57600080fd5b50610269611001565b6102ee6105a4366004612319565b611010565b3480156105b557600080fd5b506102ee6105c43660046121bb565b611187565b3480156105d557600080fd5b506102ee6105e43660046120b5565b61124c565b3480156105f557600080fd5b506102ee61060436600461213f565b611298565b34801561061557600080fd5b50610269610624366004612319565b6112b5565b34801561063557600080fd5b506102ee6106443660046121f7565b611372565b34801561065557600080fd5b5061023f6106643660046120d0565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b34801561069e57600080fd5b5061023f6106ad3660046120b5565b600b6020526000908152604090205460ff1681565b3480156106ce57600080fd5b506102ee6106dd3660046120b5565b61144f565b6102ee6106f0366004612319565b6114ea565b34801561070157600080fd5b506102ee6116eb565b60006001600160e01b0319821663780e9d6360e01b148061072f575061072f82611736565b92915050565b60606000805461074490612618565b80601f016020809104026020016040519081016040528092919081815260200182805461077090612618565b80156107bd5780601f10610792576101008083540402835291602001916107bd565b820191906000526020600020905b8154815290600101906020018083116107a057829003601f168201915b5050505050905090565b60006107d282611786565b6108385760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6005546001600160a01b0316331461087e5760405162461bcd60e51b815260040161082f906124d4565b600955565b600061088e82610be1565b9050806001600160a01b0316836001600160a01b031614156108fc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161082f565b336001600160a01b038216148061091857506109188133610664565b61098a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161082f565b61099483836117d0565b505050565b6109a483838361183e565b61099483838361186f565b60006109ba83610c6d565b82106109d85760405162461bcd60e51b815260040161082f90612509565b6000805b600254811015610a4557600281815481106109f9576109f96126ae565b6000918252602090912001546001600160a01b0386811691161415610a355783821415610a2957915061072f9050565b610a3282612653565b91505b610a3e81612653565b90506109dc565b5060405162461bcd60e51b815260040161082f90612509565b6005546001600160a01b03163314610a885760405162461bcd60e51b815260040161082f906124d4565b600a805460ff60a81b198116600160a81b9182900460ff1615909102179055565b6005546001600160a01b03163314610ad35760405162461bcd60e51b815260040161082f906124d4565b60405133904780156108fc02916000818181858888f19350505050610af757600080fd5b565b61099483838360405180602001604052806000815250611298565b6005546001600160a01b03163314610b3e5760405162461bcd60e51b815260040161082f906124d4565b600855565b6000610b4e60025490565b8210610b9c5760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000604482015260640161082f565b5090565b6005546001600160a01b03163314610bca5760405162461bcd60e51b815260040161082f906124d4565b8051610bdd90600d906020840190611f93565b5050565b60008060028381548110610bf757610bf76126ae565b6000918252602090912001546001600160a01b031690508061072f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161082f565b60006001600160a01b038216610cd85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161082f565b600254600090815b81811015610d365760028181548110610cfb57610cfb6126ae565b6000918252602090912001546001600160a01b0386811691161415610d2657610d2383612653565b92505b610d2f81612653565b9050610ce0565b50909392505050565b6005546001600160a01b03163314610d695760405162461bcd60e51b815260040161082f906124d4565b610af760006118f2565b6005546001600160a01b03163314610d9d5760405162461bcd60e51b815260040161082f906124d4565b60005b81811015610994576000838383818110610dbc57610dbc6126ae565b9050602002016020810190610dd191906120b5565b6001600160a01b03161415610e285760405162461bcd60e51b815260206004820152601b60248201527f4e756c6c2061646472657373206973206e6f7420616c6c6f7765640000000000604482015260640161082f565b6001600b6000858585818110610e4057610e406126ae565b9050602002016020810190610e5591906120b5565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155600c81858585818110610e9557610e956126ae565b9050602002016020810190610eaa91906120b5565b6001600160a01b03166001600160a01b031681526020019081526020016000205411610ed7576000610f24565b600c6000848484818110610eed57610eed6126ae565b9050602002016020810190610f0291906120b5565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b5080610f2f81612653565b915050610da0565b6060610f4282610c6d565b600010610f615760405162461bcd60e51b815260040161082f90612509565b6000610f6c83610c6d565b905060008167ffffffffffffffff811115610f8957610f896126c4565b604051908082528060200260200182016040528015610fb2578160200160208202803683370190505b50905060005b82811015610ff957610fca85826109af565b828281518110610fdc57610fdc6126ae565b602090810291909101015280610ff181612653565b915050610fb8565b509392505050565b60606001805461074490612618565b600a54600160a81b900460ff1661105e5760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b604482015260640161082f565b600081116110ae5760405162461bcd60e51b815260206004820181905260248201527f4d696e74656420616d6f756e742073686f756c6420626520706f736974697665604482015260640161082f565b6009548111156111005760405162461bcd60e51b815260206004820181905260248201527f4d696e74656420616d6f756e7420657863656564732073616c65206c696d6974604482015260640161082f565b600061110b60025490565b9050611115611944565b61111f838361258a565b111561113d5760405162461bcd60e51b815260040161082f90612483565b8160085461114b91906125b6565b34101561115757600080fd5b60005b828110156109945761117533611170838561258a565b61195b565b8061117f81612653565b91505061115a565b6001600160a01b0382163314156111e05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161082f565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6005546001600160a01b031633146112765760405162461bcd60e51b815260040161082f906124d4565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6112a484848484611975565b6112af84848461186f565b50505050565b60606112c082611786565b6113165760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b606482015260840161082f565b60006113206119a7565b90506000815111611340576040518060200160405280600081525061136b565b8061134a846119b6565b60405160200161135b92919061235e565b6040516020818303038152906040525b9392505050565b6005546001600160a01b0316331461139c5760405162461bcd60e51b815260040161082f906124d4565b60006113a760025490565b90506000821180156113bb57506007548211155b6114075760405162461bcd60e51b815260206004820181905260248201527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d604482015260640161082f565b60005b828110156114325761142084611170838561258a565b8061142a81612653565b91505061140a565b50816007600082825461144591906125d5565b9091555050505050565b6005546001600160a01b031633146114795760405162461bcd60e51b815260040161082f906124d4565b6001600160a01b0381166114de5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161082f565b6114e7816118f2565b50565b600a54600160a01b900460ff1661153b5760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742061637469766560581b604482015260640161082f565b336000908152600b602052604090205460ff1661159a5760405162461bcd60e51b815260206004820152601960248201527f43616c6c6572206973206e6f742077686974656c697374656400000000000000604482015260640161082f565b60006115a560025490565b336000908152600c6020526040812054919250906115c49060026125d5565b9050808311156116165760405162461bcd60e51b815260206004820152601860248201527f546f6f206d616e79206d696e7473207265717565737465640000000000000000604482015260640161082f565b61161e611944565b611628848461258a565b11156116465760405162461bcd60e51b815260040161082f90612483565b8260085461165491906125b6565b34101561169b5760405162461bcd60e51b815260206004820152601560248201527415dc9bdb99c8185b5bdd5b9d081c1c9bdd9a591959605a1b604482015260640161082f565b336000908152600c6020526040812080548592906116ba90849061258a565b90915550600090505b838110156112af576116d933611170838661258a565b806116e381612653565b9150506116c3565b6005546001600160a01b031633146117155760405162461bcd60e51b815260040161082f906124d4565b600a805460ff60a01b198116600160a01b9182900460ff1615909102179055565b60006001600160e01b031982166380ac58cd60e01b148061176757506001600160e01b03198216635b5e139f60e01b145b8061072f57506301ffc9a760e01b6001600160e01b031983161461072f565b6002546000908210801561072f575060006001600160a01b0316600283815481106117b3576117b36126ae565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061180582610be1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6118483382611abc565b6118645760405162461bcd60e51b815260040161082f90612539565b610994838383611ba2565b600a546001600160a01b03161561099457600a5460405162a1651960e21b81526001600160a01b03858116600483015284811660248301526044820184905290911690630285946490606401600060405180830381600087803b1580156118d557600080fd5b505af11580156118e9573d6000803e3d6000fd5b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060075461106861195691906125d5565b905090565b610bdd828260405180602001604052806000815250611cf8565b61197f3383611abc565b61199b5760405162461bcd60e51b815260040161082f90612539565b6112af84848484611d2b565b6060600d805461074490612618565b6060816119da5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a0457806119ee81612653565b91506119fd9050600a836125a2565b91506119de565b60008167ffffffffffffffff811115611a1f57611a1f6126c4565b6040519080825280601f01601f191660200182016040528015611a49576020820181803683370190505b5090505b8415611ab457611a5e6001836125d5565b9150611a6b600a8661266e565b611a7690603061258a565b60f81b818381518110611a8b57611a8b6126ae565b60200101906001600160f81b031916908160001a905350611aad600a866125a2565b9450611a4d565b949350505050565b6000611ac782611786565b611b285760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161082f565b6000611b3383610be1565b9050806001600160a01b0316846001600160a01b03161480611b6e5750836001600160a01b0316611b63846107c7565b6001600160a01b0316145b80611ab457506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff16611ab4565b826001600160a01b0316611bb582610be1565b6001600160a01b031614611c1d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161082f565b6001600160a01b038216611c7f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161082f565b611c8a6000826117d0565b8160028281548110611c9e57611c9e6126ae565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b611d028383611d5e565b611d0f6000848484611e86565b6109945760405162461bcd60e51b815260040161082f90612431565b611d36848484611ba2565b611d4284848484611e86565b6112af5760405162461bcd60e51b815260040161082f90612431565b6001600160a01b038216611db45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161082f565b611dbd81611786565b15611e0a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161082f565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611f8857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611eca90339089908890889060040161239d565b602060405180830381600087803b158015611ee457600080fd5b505af1925050508015611f14575060408051601f3d908101601f19168201909252611f11918101906122b3565b60015b611f6e573d808015611f42576040519150601f19603f3d011682016040523d82523d6000602084013e611f47565b606091505b508051611f665760405162461bcd60e51b815260040161082f90612431565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ab4565b506001949350505050565b828054611f9f90612618565b90600052602060002090601f016020900481019282611fc15760008555612007565b82601f10611fda57805160ff1916838001178555612007565b82800160010185558215612007579182015b82811115612007578251825591602001919060010190611fec565b50610b9c9291505b80821115610b9c576000815560010161200f565b600067ffffffffffffffff8084111561203e5761203e6126c4565b604051601f8501601f19908116603f01168101908282118183101715612066576120666126c4565b8160405280935085815286868601111561207f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146120b057600080fd5b919050565b6000602082840312156120c757600080fd5b61136b82612099565b600080604083850312156120e357600080fd5b6120ec83612099565b91506120fa60208401612099565b90509250929050565b60008060006060848603121561211857600080fd5b61212184612099565b925061212f60208501612099565b9150604084013590509250925092565b6000806000806080858703121561215557600080fd5b61215e85612099565b935061216c60208601612099565b925060408501359150606085013567ffffffffffffffff81111561218f57600080fd5b8501601f810187136121a057600080fd5b6121af87823560208401612023565b91505092959194509250565b600080604083850312156121ce57600080fd5b6121d783612099565b9150602083013580151581146121ec57600080fd5b809150509250929050565b6000806040838503121561220a57600080fd5b61221383612099565b946020939093013593505050565b6000806020838503121561223457600080fd5b823567ffffffffffffffff8082111561224c57600080fd5b818501915085601f83011261226057600080fd5b81358181111561226f57600080fd5b8660208260051b850101111561228457600080fd5b60209290920196919550909350505050565b6000602082840312156122a857600080fd5b813561136b816126da565b6000602082840312156122c557600080fd5b815161136b816126da565b6000602082840312156122e257600080fd5b813567ffffffffffffffff8111156122f957600080fd5b8201601f8101841361230a57600080fd5b611ab484823560208401612023565b60006020828403121561232b57600080fd5b5035919050565b6000815180845261234a8160208601602086016125ec565b601f01601f19169290920160200192915050565b600083516123708184602088016125ec565b8351908301906123848183602088016125ec565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123d090830184612332565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612412578351835292840192918401916001016123f6565b50909695505050505050565b60208152600061136b6020830184612332565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f5468652072657175657374656420616d6f756e742065786365656473207468656040820152702072656d61696e696e6720737570706c7960781b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561259d5761259d612682565b500190565b6000826125b1576125b1612698565b500490565b60008160001904831182151516156125d0576125d0612682565b500290565b6000828210156125e7576125e7612682565b500390565b60005b838110156126075781810151838201526020016125ef565b838111156112af5750506000910152565b600181811c9082168061262c57607f821691505b6020821081141561264d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561266757612667612682565b5060010190565b60008261267d5761267d612698565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146114e757600080fdfea2646970667358221220956d8605edf13f5ef99691c1a81e3f86bb115402976f871ebb844297ad55d5b264736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c4d7574616e7420466c6f6b69000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024d46000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c806360d938dc11610123578063a22cb465116100ab578063e985e9c51161006f578063e985e9c514610649578063eb8835ab14610692578063f2fde38b146106c2578063f759867a146106e2578063f81227d4146106f557600080fd5b8063a22cb465146105a9578063aaf50292146105c9578063b88d4fde146105e9578063c87b56dd14610609578063cc47a40b1461062957600080fd5b80637f649783116100f25780637f649783146105165780638462151c146105365780638da5cb5b1461056357806395d89b4114610581578063a0712d681461059657600080fd5b806360d938dc146104a05780636352211e146104c157806370a08231146104e1578063715018a61461050157600080fd5b806334918dfd116101a657806344a0d68a1161017557806344a0d68a146103f25780634f6ccce71461041257806355105e9e1461043257806355f804b31461045f578063564566a81461047f57600080fd5b806334918dfd1461036f5780633af32abf146103845780633ccfd60b146103bd57806342842e0e146103d257600080fd5b8063088a4ed0116101ed578063088a4ed0146102ce578063095ea7b3146102f057806318160ddd1461031057806323b872dd1461032f5780632f745c591461034f57600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc146102765780630856f5ce146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004612296565b61070a565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b50610269610735565b60405161024b919061241e565b34801561028257600080fd5b50610296610291366004612319565b6107c7565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b50600a54610296906001600160a01b031681565b3480156102da57600080fd5b506102ee6102e9366004612319565b610854565b005b3480156102fc57600080fd5b506102ee61030b3660046121f7565b610883565b34801561031c57600080fd5b506002545b60405190815260200161024b565b34801561033b57600080fd5b506102ee61034a366004612103565b610999565b34801561035b57600080fd5b5061032161036a3660046121f7565b6109af565b34801561037b57600080fd5b506102ee610a5e565b34801561039057600080fd5b5061023f61039f3660046120b5565b6001600160a01b03166000908152600b602052604090205460ff1690565b3480156103c957600080fd5b506102ee610aa9565b3480156103de57600080fd5b506102ee6103ed366004612103565b610af9565b3480156103fe57600080fd5b506102ee61040d366004612319565b610b14565b34801561041e57600080fd5b5061032161042d366004612319565b610b43565b34801561043e57600080fd5b5061032161044d3660046120b5565b600c6020526000908152604090205481565b34801561046b57600080fd5b506102ee61047a3660046122d0565b610ba0565b34801561048b57600080fd5b50600a5461023f90600160a81b900460ff1681565b3480156104ac57600080fd5b50600a5461023f90600160a01b900460ff1681565b3480156104cd57600080fd5b506102966104dc366004612319565b610be1565b3480156104ed57600080fd5b506103216104fc3660046120b5565b610c6d565b34801561050d57600080fd5b506102ee610d3f565b34801561052257600080fd5b506102ee610531366004612221565b610d73565b34801561054257600080fd5b506105566105513660046120b5565b610f37565b60405161024b91906123da565b34801561056f57600080fd5b506005546001600160a01b0316610296565b34801561058d57600080fd5b50610269611001565b6102ee6105a4366004612319565b611010565b3480156105b557600080fd5b506102ee6105c43660046121bb565b611187565b3480156105d557600080fd5b506102ee6105e43660046120b5565b61124c565b3480156105f557600080fd5b506102ee61060436600461213f565b611298565b34801561061557600080fd5b50610269610624366004612319565b6112b5565b34801561063557600080fd5b506102ee6106443660046121f7565b611372565b34801561065557600080fd5b5061023f6106643660046120d0565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b34801561069e57600080fd5b5061023f6106ad3660046120b5565b600b6020526000908152604090205460ff1681565b3480156106ce57600080fd5b506102ee6106dd3660046120b5565b61144f565b6102ee6106f0366004612319565b6114ea565b34801561070157600080fd5b506102ee6116eb565b60006001600160e01b0319821663780e9d6360e01b148061072f575061072f82611736565b92915050565b60606000805461074490612618565b80601f016020809104026020016040519081016040528092919081815260200182805461077090612618565b80156107bd5780601f10610792576101008083540402835291602001916107bd565b820191906000526020600020905b8154815290600101906020018083116107a057829003601f168201915b5050505050905090565b60006107d282611786565b6108385760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6005546001600160a01b0316331461087e5760405162461bcd60e51b815260040161082f906124d4565b600955565b600061088e82610be1565b9050806001600160a01b0316836001600160a01b031614156108fc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161082f565b336001600160a01b038216148061091857506109188133610664565b61098a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161082f565b61099483836117d0565b505050565b6109a483838361183e565b61099483838361186f565b60006109ba83610c6d565b82106109d85760405162461bcd60e51b815260040161082f90612509565b6000805b600254811015610a4557600281815481106109f9576109f96126ae565b6000918252602090912001546001600160a01b0386811691161415610a355783821415610a2957915061072f9050565b610a3282612653565b91505b610a3e81612653565b90506109dc565b5060405162461bcd60e51b815260040161082f90612509565b6005546001600160a01b03163314610a885760405162461bcd60e51b815260040161082f906124d4565b600a805460ff60a81b198116600160a81b9182900460ff1615909102179055565b6005546001600160a01b03163314610ad35760405162461bcd60e51b815260040161082f906124d4565b60405133904780156108fc02916000818181858888f19350505050610af757600080fd5b565b61099483838360405180602001604052806000815250611298565b6005546001600160a01b03163314610b3e5760405162461bcd60e51b815260040161082f906124d4565b600855565b6000610b4e60025490565b8210610b9c5760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000604482015260640161082f565b5090565b6005546001600160a01b03163314610bca5760405162461bcd60e51b815260040161082f906124d4565b8051610bdd90600d906020840190611f93565b5050565b60008060028381548110610bf757610bf76126ae565b6000918252602090912001546001600160a01b031690508061072f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161082f565b60006001600160a01b038216610cd85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161082f565b600254600090815b81811015610d365760028181548110610cfb57610cfb6126ae565b6000918252602090912001546001600160a01b0386811691161415610d2657610d2383612653565b92505b610d2f81612653565b9050610ce0565b50909392505050565b6005546001600160a01b03163314610d695760405162461bcd60e51b815260040161082f906124d4565b610af760006118f2565b6005546001600160a01b03163314610d9d5760405162461bcd60e51b815260040161082f906124d4565b60005b81811015610994576000838383818110610dbc57610dbc6126ae565b9050602002016020810190610dd191906120b5565b6001600160a01b03161415610e285760405162461bcd60e51b815260206004820152601b60248201527f4e756c6c2061646472657373206973206e6f7420616c6c6f7765640000000000604482015260640161082f565b6001600b6000858585818110610e4057610e406126ae565b9050602002016020810190610e5591906120b5565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155600c81858585818110610e9557610e956126ae565b9050602002016020810190610eaa91906120b5565b6001600160a01b03166001600160a01b031681526020019081526020016000205411610ed7576000610f24565b600c6000848484818110610eed57610eed6126ae565b9050602002016020810190610f0291906120b5565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b5080610f2f81612653565b915050610da0565b6060610f4282610c6d565b600010610f615760405162461bcd60e51b815260040161082f90612509565b6000610f6c83610c6d565b905060008167ffffffffffffffff811115610f8957610f896126c4565b604051908082528060200260200182016040528015610fb2578160200160208202803683370190505b50905060005b82811015610ff957610fca85826109af565b828281518110610fdc57610fdc6126ae565b602090810291909101015280610ff181612653565b915050610fb8565b509392505050565b60606001805461074490612618565b600a54600160a81b900460ff1661105e5760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b604482015260640161082f565b600081116110ae5760405162461bcd60e51b815260206004820181905260248201527f4d696e74656420616d6f756e742073686f756c6420626520706f736974697665604482015260640161082f565b6009548111156111005760405162461bcd60e51b815260206004820181905260248201527f4d696e74656420616d6f756e7420657863656564732073616c65206c696d6974604482015260640161082f565b600061110b60025490565b9050611115611944565b61111f838361258a565b111561113d5760405162461bcd60e51b815260040161082f90612483565b8160085461114b91906125b6565b34101561115757600080fd5b60005b828110156109945761117533611170838561258a565b61195b565b8061117f81612653565b91505061115a565b6001600160a01b0382163314156111e05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161082f565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6005546001600160a01b031633146112765760405162461bcd60e51b815260040161082f906124d4565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6112a484848484611975565b6112af84848461186f565b50505050565b60606112c082611786565b6113165760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b606482015260840161082f565b60006113206119a7565b90506000815111611340576040518060200160405280600081525061136b565b8061134a846119b6565b60405160200161135b92919061235e565b6040516020818303038152906040525b9392505050565b6005546001600160a01b0316331461139c5760405162461bcd60e51b815260040161082f906124d4565b60006113a760025490565b90506000821180156113bb57506007548211155b6114075760405162461bcd60e51b815260206004820181905260248201527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d604482015260640161082f565b60005b828110156114325761142084611170838561258a565b8061142a81612653565b91505061140a565b50816007600082825461144591906125d5565b9091555050505050565b6005546001600160a01b031633146114795760405162461bcd60e51b815260040161082f906124d4565b6001600160a01b0381166114de5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161082f565b6114e7816118f2565b50565b600a54600160a01b900460ff1661153b5760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742061637469766560581b604482015260640161082f565b336000908152600b602052604090205460ff1661159a5760405162461bcd60e51b815260206004820152601960248201527f43616c6c6572206973206e6f742077686974656c697374656400000000000000604482015260640161082f565b60006115a560025490565b336000908152600c6020526040812054919250906115c49060026125d5565b9050808311156116165760405162461bcd60e51b815260206004820152601860248201527f546f6f206d616e79206d696e7473207265717565737465640000000000000000604482015260640161082f565b61161e611944565b611628848461258a565b11156116465760405162461bcd60e51b815260040161082f90612483565b8260085461165491906125b6565b34101561169b5760405162461bcd60e51b815260206004820152601560248201527415dc9bdb99c8185b5bdd5b9d081c1c9bdd9a591959605a1b604482015260640161082f565b336000908152600c6020526040812080548592906116ba90849061258a565b90915550600090505b838110156112af576116d933611170838661258a565b806116e381612653565b9150506116c3565b6005546001600160a01b031633146117155760405162461bcd60e51b815260040161082f906124d4565b600a805460ff60a01b198116600160a01b9182900460ff1615909102179055565b60006001600160e01b031982166380ac58cd60e01b148061176757506001600160e01b03198216635b5e139f60e01b145b8061072f57506301ffc9a760e01b6001600160e01b031983161461072f565b6002546000908210801561072f575060006001600160a01b0316600283815481106117b3576117b36126ae565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061180582610be1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6118483382611abc565b6118645760405162461bcd60e51b815260040161082f90612539565b610994838383611ba2565b600a546001600160a01b03161561099457600a5460405162a1651960e21b81526001600160a01b03858116600483015284811660248301526044820184905290911690630285946490606401600060405180830381600087803b1580156118d557600080fd5b505af11580156118e9573d6000803e3d6000fd5b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060075461106861195691906125d5565b905090565b610bdd828260405180602001604052806000815250611cf8565b61197f3383611abc565b61199b5760405162461bcd60e51b815260040161082f90612539565b6112af84848484611d2b565b6060600d805461074490612618565b6060816119da5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a0457806119ee81612653565b91506119fd9050600a836125a2565b91506119de565b60008167ffffffffffffffff811115611a1f57611a1f6126c4565b6040519080825280601f01601f191660200182016040528015611a49576020820181803683370190505b5090505b8415611ab457611a5e6001836125d5565b9150611a6b600a8661266e565b611a7690603061258a565b60f81b818381518110611a8b57611a8b6126ae565b60200101906001600160f81b031916908160001a905350611aad600a866125a2565b9450611a4d565b949350505050565b6000611ac782611786565b611b285760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161082f565b6000611b3383610be1565b9050806001600160a01b0316846001600160a01b03161480611b6e5750836001600160a01b0316611b63846107c7565b6001600160a01b0316145b80611ab457506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff16611ab4565b826001600160a01b0316611bb582610be1565b6001600160a01b031614611c1d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161082f565b6001600160a01b038216611c7f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161082f565b611c8a6000826117d0565b8160028281548110611c9e57611c9e6126ae565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b611d028383611d5e565b611d0f6000848484611e86565b6109945760405162461bcd60e51b815260040161082f90612431565b611d36848484611ba2565b611d4284848484611e86565b6112af5760405162461bcd60e51b815260040161082f90612431565b6001600160a01b038216611db45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161082f565b611dbd81611786565b15611e0a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161082f565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611f8857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611eca90339089908890889060040161239d565b602060405180830381600087803b158015611ee457600080fd5b505af1925050508015611f14575060408051601f3d908101601f19168201909252611f11918101906122b3565b60015b611f6e573d808015611f42576040519150601f19603f3d011682016040523d82523d6000602084013e611f47565b606091505b508051611f665760405162461bcd60e51b815260040161082f90612431565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ab4565b506001949350505050565b828054611f9f90612618565b90600052602060002090601f016020900481019282611fc15760008555612007565b82601f10611fda57805160ff1916838001178555612007565b82800160010185558215612007579182015b82811115612007578251825591602001919060010190611fec565b50610b9c9291505b80821115610b9c576000815560010161200f565b600067ffffffffffffffff8084111561203e5761203e6126c4565b604051601f8501601f19908116603f01168101908282118183101715612066576120666126c4565b8160405280935085815286868601111561207f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146120b057600080fd5b919050565b6000602082840312156120c757600080fd5b61136b82612099565b600080604083850312156120e357600080fd5b6120ec83612099565b91506120fa60208401612099565b90509250929050565b60008060006060848603121561211857600080fd5b61212184612099565b925061212f60208501612099565b9150604084013590509250925092565b6000806000806080858703121561215557600080fd5b61215e85612099565b935061216c60208601612099565b925060408501359150606085013567ffffffffffffffff81111561218f57600080fd5b8501601f810187136121a057600080fd5b6121af87823560208401612023565b91505092959194509250565b600080604083850312156121ce57600080fd5b6121d783612099565b9150602083013580151581146121ec57600080fd5b809150509250929050565b6000806040838503121561220a57600080fd5b61221383612099565b946020939093013593505050565b6000806020838503121561223457600080fd5b823567ffffffffffffffff8082111561224c57600080fd5b818501915085601f83011261226057600080fd5b81358181111561226f57600080fd5b8660208260051b850101111561228457600080fd5b60209290920196919550909350505050565b6000602082840312156122a857600080fd5b813561136b816126da565b6000602082840312156122c557600080fd5b815161136b816126da565b6000602082840312156122e257600080fd5b813567ffffffffffffffff8111156122f957600080fd5b8201601f8101841361230a57600080fd5b611ab484823560208401612023565b60006020828403121561232b57600080fd5b5035919050565b6000815180845261234a8160208601602086016125ec565b601f01601f19169290920160200192915050565b600083516123708184602088016125ec565b8351908301906123848183602088016125ec565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123d090830184612332565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612412578351835292840192918401916001016123f6565b50909695505050505050565b60208152600061136b6020830184612332565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f5468652072657175657374656420616d6f756e742065786365656473207468656040820152702072656d61696e696e6720737570706c7960781b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561259d5761259d612682565b500190565b6000826125b1576125b1612698565b500490565b60008160001904831182151516156125d0576125d0612682565b500290565b6000828210156125e7576125e7612682565b500390565b60005b838110156126075781810151838201526020016125ef565b838111156112af5750506000910152565b600181811c9082168061262c57607f821691505b6020821081141561264d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561266757612667612682565b5060010190565b60008261267d5761267d612698565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146114e757600080fdfea2646970667358221220956d8605edf13f5ef99691c1a81e3f86bb115402976f871ebb844297ad55d5b264736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c4d7574616e7420466c6f6b69000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024d46000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Mutant Floki
Arg [1] : _symbol (string): MF

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [3] : 4d7574616e7420466c6f6b690000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [5] : 4d46000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

32865:5343:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31249:225;;;;;;;;;;-1:-1:-1;31249:225:0;;;;;:::i;:::-;;:::i;:::-;;;7450:14:1;;7443:22;7425:41;;7413:2;7398:18;31249:225:0;;;;;;;;25341:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25975:221::-;;;;;;;;;;-1:-1:-1;25975:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5731:32:1;;;5713:51;;5701:2;5686:18;25975:221:0;5567:203:1;33226:76:0;;;;;;;;;;-1:-1:-1;33226:76:0;;;;-1:-1:-1;;;;;33226:76:0;;;36694:124;;;;;;;;;;-1:-1:-1;36694:124:0;;;;;:::i;:::-;;:::i;:::-;;25557:412;;;;;;;;;;-1:-1:-1;25557:412:0;;;;;:::i;:::-;;:::i;32410:110::-;;;;;;;;;;-1:-1:-1;32498:7:0;:14;32410:110;;;18529:25:1;;;18517:2;18502:18;32410:110:0;18383:177:1;37776:193:0;;;;;;;;;;-1:-1:-1;37776:193:0;;;;;:::i;:::-;;:::i;31480:500::-;;;;;;;;;;-1:-1:-1;31480:500:0;;;;;:::i;:::-;;:::i;34568:91::-;;;;;;;;;;;;;:::i;34196:123::-;;;;;;;;;;-1:-1:-1;34196:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;34285:26:0;34261:4;34285:26;;;:16;:26;;;;;;;;;34196:123;36083:114;;;;;;;;;;;;;:::i;27018:185::-;;;;;;;;;;-1:-1:-1;27018:185:0;;;;;:::i;:::-;;:::i;36598:88::-;;;;;;;;;;-1:-1:-1;36598:88:0;;;;;:::i;:::-;;:::i;32526:194::-;;;;;;;;;;-1:-1:-1;32526:194:0;;;;;:::i;:::-;;:::i;33473:56::-;;;;;;;;;;-1:-1:-1;33473:56:0;;;;;:::i;:::-;;;;;;;;;;;;;;37664:104;;;;;;;;;;-1:-1:-1;37664:104:0;;;;;:::i;:::-;;:::i;33353:32::-;;;;;;;;;;-1:-1:-1;33353:32:0;;;;-1:-1:-1;;;33353:32:0;;;;;;33311:35;;;;;;;;;;-1:-1:-1;33311:35:0;;;;-1:-1:-1;;;33311:35:0;;;;;;25096:239;;;;;;;;;;-1:-1:-1;25096:239:0;;;;;:::i;:::-;;:::i;24668:422::-;;;;;;;;;;-1:-1:-1;24668:422:0;;;;;:::i;:::-;;:::i;1739:94::-;;;;;;;;;;;;;:::i;36205:385::-;;;;;;;;;;-1:-1:-1;36205:385:0;;;;;:::i;:::-;;:::i;31986:418::-;;;;;;;;;;-1:-1:-1;31986:418:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1088:87::-;;;;;;;;;;-1:-1:-1;1161:6:0;;-1:-1:-1;;;;;1161:6:0;1088:87;;25447:104;;;;;;;;;;;;;:::i;34667:609::-;;;;;;:::i;:::-;;:::i;26202:295::-;;;;;;;;;;-1:-1:-1;26202:295:0;;;;;:::i;:::-;;:::i;34327:125::-;;;;;;;;;;-1:-1:-1;34327:125:0;;;;;:::i;:::-;;:::i;37977:228::-;;;;;;;;;;-1:-1:-1;37977:228:0;;;;;:::i;:::-;;:::i;36826:353::-;;;;;;;;;;-1:-1:-1;36826:353:0;;;;;:::i;:::-;;:::i;37210:446::-;;;;;;;;;;-1:-1:-1;37210:446:0;;;;;:::i;:::-;;:::i;26503:164::-;;;;;;;;;;-1:-1:-1;26503:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26624:25:0;;;26600:4;26624:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26503:164;33418:48;;;;;;;;;;-1:-1:-1;33418:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;1988:192;;;;;;;;;;-1:-1:-1;1988:192:0;;;;;:::i;:::-;;:::i;35284:791::-;;;;;;:::i;:::-;;:::i;34460:100::-;;;;;;;;;;;;;:::i;31249:225::-;31352:4;-1:-1:-1;;;;;;31376:50:0;;-1:-1:-1;;;31376:50:0;;:90;;;31430:36;31454:11;31430:23;:36::i;:::-;31369:97;31249:225;-1:-1:-1;;31249:225:0:o;25341:100::-;25395:13;25428:5;25421:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25341:100;:::o;25975:221::-;26051:7;26079:16;26087:7;26079;:16::i;:::-;26071:73;;;;-1:-1:-1;;;26071:73:0;;14456:2:1;26071:73:0;;;14438:21:1;14495:2;14475:18;;;14468:30;14534:34;14514:18;;;14507:62;-1:-1:-1;;;14585:18:1;;;14578:42;14637:19;;26071:73:0;;;;;;;;;-1:-1:-1;26164:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26164:24:0;;25975:221::o;36694:124::-;1161:6;;-1:-1:-1;;;;;1161:6:0;299:10;1308:23;1300:68;;;;-1:-1:-1;;;1300:68:0;;;;;;;:::i;:::-;36777:13:::1;:33:::0;36694:124::o;25557:412::-;25638:13;25654:24;25670:7;25654:15;:24::i;:::-;25638:40;;25703:5;-1:-1:-1;;;;;25697:11:0;:2;-1:-1:-1;;;;;25697:11:0;;;25689:57;;;;-1:-1:-1;;;25689:57:0;;16704:2:1;25689:57:0;;;16686:21:1;16743:2;16723:18;;;16716:30;16782:34;16762:18;;;16755:62;-1:-1:-1;;;16833:18:1;;;16826:31;16874:19;;25689:57:0;16502:397:1;25689:57:0;299:10;-1:-1:-1;;;;;25781:21:0;;;;:62;;-1:-1:-1;25806:37:0;25823:5;299:10;26503:164;:::i;25806:37::-;25759:168;;;;-1:-1:-1;;;25759:168:0;;12849:2:1;25759:168:0;;;12831:21:1;12888:2;12868:18;;;12861:30;12927:34;12907:18;;;12900:62;12998:26;12978:18;;;12971:54;13042:19;;25759:168:0;12647:420:1;25759:168:0;25940:21;25949:2;25953:7;25940:8;:21::i;:::-;25627:342;25557:412;;:::o;37776:193::-;37871:42;37892:5;37899:3;37904:8;37871:20;:42::i;:::-;37924:37;37940:5;37947:3;37952:8;37924:15;:37::i;31480:500::-;31569:15;31613:24;31631:5;31613:17;:24::i;:::-;31605:5;:32;31597:67;;;;-1:-1:-1;;;31597:67:0;;;;;;;:::i;:::-;31675:10;31701:6;31696:226;31713:7;:14;31709:18;;31696:226;;;31762:7;31770:1;31762:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;31753:19:0;;;31762:10;;31753:19;31749:162;;;31806:5;31797;:14;31793:102;;;31842:1;-1:-1:-1;31835:8:0;;-1:-1:-1;31835:8:0;31793:102;31888:7;;;:::i;:::-;;;31793:102;31729:3;;;:::i;:::-;;;31696:226;;;-1:-1:-1;31932:40:0;;-1:-1:-1;;;31932:40:0;;;;;;;:::i;34568:91::-;1161:6;;-1:-1:-1;;;;;1161:6:0;299:10;1308:23;1300:68;;;;-1:-1:-1;;;1300:68:0;;;;;;;:::i;:::-;34639:12:::1;::::0;;-1:-1:-1;;;;34623:28:0;::::1;-1:-1:-1::0;;;34639:12:0;;;::::1;;;34638:13;34623:28:::0;;::::1;;::::0;;34568:91::o;36083:114::-;1161:6;;-1:-1:-1;;;;;1161:6:0;299:10;1308:23;1300:68;;;;-1:-1:-1;;;1300:68:0;;;;;;;:::i;:::-;36141:47:::1;::::0;36149:10:::1;::::0;36166:21:::1;36141:47:::0;::::1;;;::::0;::::1;::::0;;;36166:21;36149:10;36141:47;::::1;;;;;;36133:56;;;::::0;::::1;;36083:114::o:0;27018:185::-;27156:39;27173:4;27179:2;27183:7;27156:39;;;;;;;;;;;;:16;:39::i;36598:88::-;1161:6;;-1:-1:-1;;;;;1161:6:0;299:10;1308:23;1300:68;;;;-1:-1:-1;;;1300:68:0;;;;;;;:::i;:::-;36663:4:::1;:15:::0;36598:88::o;32526:194::-;32601:7;32637:24;32498:7;:14;;32410:110;32637:24;32629:5;:32;32621:68;;;;-1:-1:-1;;;32621:68:0;;16352:2:1;32621:68:0;;;16334:21:1;16391:2;16371:18;;;16364:30;16430:25;16410:18;;;16403:53;16473:18;;32621:68:0;16150:347:1;32621:68:0;-1:-1:-1;32707:5:0;32526:194::o;37664:104::-;1161:6;;-1:-1:-1;;;;;1161:6:0;299:10;1308:23;1300:68;;;;-1:-1:-1;;;1300:68:0;;;;;;;:::i;:::-;37739:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;37664:104:::0;:::o;25096:239::-;25168:7;25188:13;25204:7;25212;25204:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;25204:16:0;;-1:-1:-1;25239:19:0;25231:73;;;;-1:-1:-1;;;25231:73:0;;13685:2:1;25231:73:0;;;13667:21:1;13724:2;13704:18;;;13697:30;13763:34;13743:18;;;13736:62;-1:-1:-1;;;13814:18:1;;;13807:39;13863:19;;25231:73:0;13483:405:1;24668:422:0;24740:7;-1:-1:-1;;;;;24768:19:0;;24760:74;;;;-1:-1:-1;;;24760:74:0;;13274:2:1;24760:74:0;;;13256:21:1;13313:2;13293:18;;;13286:30;13352:34;13332:18;;;13325:62;-1:-1:-1;;;13403:18:1;;;13396:40;13453:19;;24760:74:0;13072:406:1;24760:74:0;24884:7;:14;24845:10;;;24909:127;24930:6;24926:1;:10;24909:127;;;24971:7;24979:1;24971:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;24962:19:0;;;24971:10;;24962:19;24958:67;;;25002:7;;;:::i;:::-;;;24958:67;24938:3;;;:::i;:::-;;;24909:127;;;-1:-1:-1;25077:5:0;;24668:422;-1:-1:-1;;;24668:422:0:o;1739:94::-;1161:6;;-1:-1:-1;;;;;1161:6:0;299:10;1308:23;1300:68;;;;-1:-1:-1;;;1300:68:0;;;;;;;:::i;:::-;1804:21:::1;1822:1;1804:9;:21::i;36205:385::-:0;1161:6;;-1:-1:-1;;;;;1161:6:0;299:10;1308:23;1300:68;;;;-1:-1:-1;;;1300:68:0;;;;;;;:::i;:::-;36295:9:::1;36290:293;36310:21:::0;;::::1;36290:293;;;36386:1;36361:10:::0;;36372:1;36361:13;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;36361:27:0::1;;;36353:67;;;::::0;-1:-1:-1;;;36353:67:0;;9484:2:1;36353:67:0::1;::::0;::::1;9466:21:1::0;9523:2;9503:18;;;9496:30;9562:29;9542:18;;;9535:57;9609:18;;36353:67:0::1;9282:351:1::0;36353:67:0::1;36469:4;36435:16;:31;36452:10;;36463:1;36452:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;36435:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;36435:31:0;;;:38;;-1:-1:-1;;36435:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;36488:21:::1;-1:-1:-1::0;36510:10:0;;36521:1;36510:13;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;36488:36:0::1;-1:-1:-1::0;;;;;36488:36:0::1;;;;;;;;;;;;;:40;:83;;36570:1;36488:83;;;36531:21;:36;36553:10;;36564:1;36553:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;36531:36:0::1;-1:-1:-1::0;;;;;36531:36:0::1;;;;;;;;;;;;;36488:83;-1:-1:-1::0;36333:3:0;::::1;::::0;::::1;:::i;:::-;;;;36290:293;;31986:418:::0;32045:16;32086:24;32104:5;32086:17;:24::i;:::-;32082:1;:28;32074:63;;;;-1:-1:-1;;;32074:63:0;;;;;;;:::i;:::-;32148:18;32169:16;32179:5;32169:9;:16::i;:::-;32148:37;;32196:25;32238:10;32224:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32224:25:0;;32196:53;;32265:9;32260:111;32284:10;32280:1;:14;32260:111;;;32330:29;32350:5;32357:1;32330:19;:29::i;:::-;32316:8;32325:1;32316:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;32296:3;;;;:::i;:::-;;;;32260:111;;;-1:-1:-1;32388:8:0;31986:418;-1:-1:-1;;;31986:418:0:o;25447:104::-;25503:13;25536:7;25529:14;;;;;:::i;34667:609::-;34738:12;;-1:-1:-1;;;34738:12:0;;;;34730:43;;;;-1:-1:-1;;;34730:43:0;;11735:2:1;34730:43:0;;;11717:21:1;11774:2;11754:18;;;11747:30;-1:-1:-1;;;11793:18:1;;;11786:48;11851:18;;34730:43:0;11533:342:1;34730:43:0;34806:1;34792:11;:15;34784:61;;;;-1:-1:-1;;;34784:61:0;;17874:2:1;34784:61:0;;;17856:21:1;;;17893:18;;;17886:30;17952:34;17932:18;;;17925:62;18004:18;;34784:61:0;17672:356:1;34784:61:0;34879:13;;34864:11;:28;;34856:74;;;;-1:-1:-1;;;34856:74:0;;15640:2:1;34856:74:0;;;15622:21:1;;;15659:18;;;15652:30;15718:34;15698:18;;;15691:62;15770:18;;34856:74:0;15438:356:1;34856:74:0;34943:19;34965:13;32498:7;:14;;32410:110;34965:13;34943:35;;35028:15;:13;:15::i;:::-;34999:25;35013:11;34999;:25;:::i;:::-;:44;;34991:107;;;;-1:-1:-1;;;34991:107:0;;;;;;;:::i;:::-;35137:11;35130:4;;:18;;;;:::i;:::-;35117:9;:31;;35109:40;;;;;;35167:9;35162:107;35186:11;35182:1;:15;35162:107;;;35219:38;35229:10;35241:15;35255:1;35241:11;:15;:::i;:::-;35219:9;:38::i;:::-;35199:3;;;;:::i;:::-;;;;35162:107;;26202:295;-1:-1:-1;;;;;26305:24:0;;299:10;26305:24;;26297:62;;;;-1:-1:-1;;;26297:62:0;;11381:2:1;26297:62:0;;;11363:21:1;11420:2;11400:18;;;11393:30;11459:27;11439:18;;;11432:55;11504:18;;26297:62:0;11179:349:1;26297:62:0;299:10;26372:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26372:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26372:53:0;;;;;;;;;;26441:48;;7425:41:1;;;26372:42:0;;299:10;26441:48;;7398:18:1;26441:48:0;;;;;;;26202:295;;:::o;34327:125::-;1161:6;;-1:-1:-1;;;;;1161:6:0;299:10;1308:23;1300:68;;;;-1:-1:-1;;;1300:68:0;;;;;;;:::i;:::-;34409:16:::1;:35:::0;;-1:-1:-1;;;;;;34409:35:0::1;-1:-1:-1::0;;;;;34409:35:0;;;::::1;::::0;;;::::1;::::0;;34327:125::o;37977:228::-;38096:53;38121:5;38128:3;38133:8;38143:5;38096:24;:53::i;:::-;38160:37;38176:5;38183:3;38188:8;38160:15;:37::i;:::-;37977:228;;;;:::o;36826:353::-;36902:13;36936:17;36944:8;36936:7;:17::i;:::-;36928:63;;;;-1:-1:-1;;;36928:63:0;;8256:2:1;36928:63:0;;;8238:21:1;8295:2;8275:18;;;8268:30;8334:34;8314:18;;;8307:62;-1:-1:-1;;;8385:18:1;;;8378:31;8426:19;;36928:63:0;8054:397:1;36928:63:0;37002:28;37033:10;:8;:10::i;:::-;37002:41;;37092:1;37067:14;37061:28;:32;:110;;;;;;;;;;;;;;;;;37120:14;37136:19;:8;:17;:19::i;:::-;37103:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37061:110;37054:117;36826:353;-1:-1:-1;;;36826:353:0:o;37210:446::-;1161:6;;-1:-1:-1;;;;;1161:6:0;299:10;1308:23;1300:68;;;;-1:-1:-1;;;1300:68:0;;;;;;;:::i;:::-;37292:14:::1;37309:13;32498:7:::0;:14;;32410:110;37309:13:::1;37292:30;;37372:1;37355:14;:18;:68;;;;;37395:28;;37377:14;:46;;37355:68;37333:150;;;::::0;-1:-1:-1;;;37333:150:0;;10615:2:1;37333:150:0::1;::::0;::::1;10597:21:1::0;;;10634:18;;;10627:30;10693:34;10673:18;;;10666:62;10745:18;;37333:150:0::1;10413:356:1::0;37333:150:0::1;37499:9;37494:98;37518:14;37514:1;:18;37494:98;;;37554:26;37564:3:::0;37569:10:::1;37578:1:::0;37569:6;:10:::1;:::i;37554:26::-;37534:3:::0;::::1;::::0;::::1;:::i;:::-;;;;37494:98;;;;37634:14;37602:28;;:46;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;37210:446:0:o;1988:192::-;1161:6;;-1:-1:-1;;;;;1161:6:0;299:10;1308:23;1300:68;;;;-1:-1:-1;;;1300:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2077:22:0;::::1;2069:73;;;::::0;-1:-1:-1;;;2069:73:0;;9077:2:1;2069:73:0::1;::::0;::::1;9059:21:1::0;9116:2;9096:18;;;9089:30;9155:34;9135:18;;;9128:62;-1:-1:-1;;;9206:18:1;;;9199:36;9252:19;;2069:73:0::1;8875:402:1::0;2069:73:0::1;2153:19;2163:8;2153:9;:19::i;:::-;1988:192:::0;:::o;35284:791::-;35362:15;;-1:-1:-1;;;35362:15:0;;;;35354:49;;;;-1:-1:-1;;;35354:49:0;;17524:2:1;35354:49:0;;;17506:21:1;17563:2;17543:18;;;17536:30;-1:-1:-1;;;17582:18:1;;;17575:51;17643:18;;35354:49:0;17322:345:1;35354:49:0;35439:10;35422:28;;;;:16;:28;;;;;;;;35414:66;;;;-1:-1:-1;;;35414:66:0;;12495:2:1;35414:66:0;;;12477:21:1;12534:2;12514:18;;;12507:30;12573:27;12553:18;;;12546:55;12618:18;;35414:66:0;12293:349:1;35414:66:0;35493:19;35515:13;32498:7;:14;;32410:110;35515:13;35605:10;35539:22;35583:33;;;:21;:33;;;;;;35493:35;;-1:-1:-1;35539:22:0;35564:52;;33081:1;35564:52;:::i;:::-;35539:77;;35652:14;35637:11;:29;;35629:66;;;;-1:-1:-1;;;35629:66:0;;7903:2:1;35629:66:0;;;7885:21:1;7942:2;7922:18;;;7915:30;7981:26;7961:18;;;7954:54;8025:18;;35629:66:0;7701:348:1;35629:66:0;35743:15;:13;:15::i;:::-;35714:25;35728:11;35714;:25;:::i;:::-;:44;;35706:106;;;;-1:-1:-1;;;35706:106:0;;;;;;;:::i;:::-;35851:11;35844:4;;:18;;;;:::i;:::-;35831:9;:31;;35823:66;;;;-1:-1:-1;;;35823:66:0;;18235:2:1;35823:66:0;;;18217:21:1;18274:2;18254:18;;;18247:30;-1:-1:-1;;;18293:18:1;;;18286:51;18354:18;;35823:66:0;18033:345:1;35823:66:0;35924:10;35902:33;;;;:21;:33;;;;;:48;;35939:11;;35902:33;:48;;35939:11;;35902:48;:::i;:::-;;;;-1:-1:-1;35967:9:0;;-1:-1:-1;35963:105:0;35986:11;35982:1;:15;35963:105;;;36018:38;36028:10;36040:15;36054:1;36040:11;:15;:::i;36018:38::-;35999:3;;;;:::i;:::-;;;;35963:105;;34460:100;1161:6;;-1:-1:-1;;;;;1161:6:0;299:10;1308:23;1300:68;;;;-1:-1:-1;;;1300:68:0;;;;;;;:::i;:::-;34537:15:::1;::::0;;-1:-1:-1;;;;34518:34:0;::::1;-1:-1:-1::0;;;34537:15:0;;;::::1;;;34536:16;34518:34:::0;;::::1;;::::0;;34460:100::o;24369:293::-;24471:4;-1:-1:-1;;;;;;24504:40:0;;-1:-1:-1;;;24504:40:0;;:101;;-1:-1:-1;;;;;;;24557:48:0;;-1:-1:-1;;;24557:48:0;24504:101;:150;;;-1:-1:-1;;;;;;;;;;23832:40:0;;;24618:36;23723:157;27864:155;27963:7;:14;27929:4;;27953:24;;:58;;;;;28009:1;-1:-1:-1;;;;;27981:30:0;:7;27989;27981:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;27981:16:0;:30;;27946:65;27864:155;-1:-1:-1;;27864:155:0:o;30037:175::-;30112:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30112:29:0;-1:-1:-1;;;;;30112:29:0;;;;;;;;:24;;30166;30112;30166:15;:24::i;:::-;-1:-1:-1;;;;;30157:47:0;;;;;;;;;;;30037:175;;:::o;26673:339::-;26868:41;299:10;26901:7;26868:18;:41::i;:::-;26860:103;;;;-1:-1:-1;;;26860:103:0;;;;;;;:::i;:::-;26976:28;26986:4;26992:2;26996:7;26976:9;:28::i;33948:223::-;34043:16;;-1:-1:-1;;;;;34043:16:0;:30;34039:125;;34099:16;;34090:62;;-1:-1:-1;;;34090:62:0;;-1:-1:-1;;;;;6033:15:1;;;34090:62:0;;;6015:34:1;6085:15;;;6065:18;;;6058:43;6117:18;;;6110:34;;;34099:16:0;;;;34090:40;;5950:18:1;;34090:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33948:223;;;:::o;2188:173::-;2263:6;;;-1:-1:-1;;;;;2280:17:0;;;-1:-1:-1;;;;;;2280:17:0;;;;;;;2313:40;;2263:6;;;2280:17;2263:6;;2313:40;;2244:16;;2313:40;2233:128;2188:173;:::o;33808:132::-;33864:7;33904:28;;33026:4;33891:41;;;;:::i;:::-;33884:48;;33808:132;:::o;28380:110::-;28456:26;28466:2;28470:7;28456:26;;;;;;;;;;;;:9;:26::i;27209:328::-;27384:41;299:10;27417:7;27384:18;:41::i;:::-;27376:103;;;;-1:-1:-1;;;27376:103:0;;;;;;;:::i;:::-;27490:39;27504:4;27510:2;27514:7;27523:5;27490:13;:39::i;33701:99::-;33752:13;33785:7;33778:14;;;;;:::i;2621:723::-;2677:13;2898:10;2894:53;;-1:-1:-1;;2925:10:0;;;;;;;;;;;;-1:-1:-1;;;2925:10:0;;;;;2621:723::o;2894:53::-;2972:5;2957:12;3013:78;3020:9;;3013:78;;3046:8;;;;:::i;:::-;;-1:-1:-1;3069:10:0;;-1:-1:-1;3077:2:0;3069:10;;:::i;:::-;;;3013:78;;;3101:19;3133:6;3123:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3123:17:0;;3101:39;;3151:154;3158:10;;3151:154;;3185:11;3195:1;3185:11;;:::i;:::-;;-1:-1:-1;3254:10:0;3262:2;3254:5;:10;:::i;:::-;3241:24;;:2;:24;:::i;:::-;3228:39;;3211:6;3218;3211:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3211:56:0;;;;;;;;-1:-1:-1;3282:11:0;3291:2;3282:11;;:::i;:::-;;;3151:154;;;3329:6;2621:723;-1:-1:-1;;;;2621:723:0:o;28025:349::-;28118:4;28143:16;28151:7;28143;:16::i;:::-;28135:73;;;;-1:-1:-1;;;28135:73:0;;12082:2:1;28135:73:0;;;12064:21:1;12121:2;12101:18;;;12094:30;12160:34;12140:18;;;12133:62;-1:-1:-1;;;12211:18:1;;;12204:42;12263:19;;28135:73:0;11880:408:1;28135:73:0;28219:13;28235:24;28251:7;28235:15;:24::i;:::-;28219:40;;28289:5;-1:-1:-1;;;;;28278:16:0;:7;-1:-1:-1;;;;;28278:16:0;;:51;;;;28322:7;-1:-1:-1;;;;;28298:31:0;:20;28310:7;28298:11;:20::i;:::-;-1:-1:-1;;;;;28298:31:0;;28278:51;:87;;;-1:-1:-1;;;;;;26624:25:0;;;26600:4;26624:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28333:32;26503:164;29514:517;29674:4;-1:-1:-1;;;;;29646:32:0;:24;29662:7;29646:15;:24::i;:::-;-1:-1:-1;;;;;29646:32:0;;29638:86;;;;-1:-1:-1;;;29638:86:0;;15230:2:1;29638:86:0;;;15212:21:1;15269:2;15249:18;;;15242:30;15308:34;15288:18;;;15281:62;-1:-1:-1;;;15359:18:1;;;15352:39;15408:19;;29638:86:0;15028:405:1;29638:86:0;-1:-1:-1;;;;;29743:16:0;;29735:65;;;;-1:-1:-1;;;29735:65:0;;10976:2:1;29735:65:0;;;10958:21:1;11015:2;10995:18;;;10988:30;11054:34;11034:18;;;11027:62;-1:-1:-1;;;11105:18:1;;;11098:34;11149:19;;29735:65:0;10774:400:1;29735:65:0;29917:29;29934:1;29938:7;29917:8;:29::i;:::-;29976:2;29957:7;29965;29957:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;29957:21:0;-1:-1:-1;;;;;29957:21:0;;;;;;29996:27;;30015:7;;29996:27;;;;;;;;;;29957:16;29996:27;29514:517;;;:::o;28496:321::-;28626:18;28632:2;28636:7;28626:5;:18::i;:::-;28677:54;28708:1;28712:2;28716:7;28725:5;28677:22;:54::i;:::-;28655:154;;;;-1:-1:-1;;;28655:154:0;;;;;;;:::i;27543:315::-;27700:28;27710:4;27716:2;27720:7;27700:9;:28::i;:::-;27747:48;27770:4;27776:2;27780:7;27789:5;27747:22;:48::i;:::-;27739:111;;;;-1:-1:-1;;;27739:111:0;;;;;;;:::i;28823:346::-;-1:-1:-1;;;;;28903:16:0;;28895:61;;;;-1:-1:-1;;;28895:61:0;;14095:2:1;28895:61:0;;;14077:21:1;;;14114:18;;;14107:30;14173:34;14153:18;;;14146:62;14225:18;;28895:61:0;13893:356:1;28895:61:0;28976:16;28984:7;28976;:16::i;:::-;28975:17;28967:58;;;;-1:-1:-1;;;28967:58:0;;9840:2:1;28967:58:0;;;9822:21:1;9879:2;9859:18;;;9852:30;9918;9898:18;;;9891:58;9966:18;;28967:58:0;9638:352:1;28967:58:0;29094:7;:16;;;;;;;-1:-1:-1;29094:16:0;;;;;;;-1:-1:-1;;;;;;29094:16:0;-1:-1:-1;;;;;29094:16:0;;;;;;;;29128:33;;29153:7;;-1:-1:-1;29128:33:0;;-1:-1:-1;;29128:33:0;28823:346;;:::o;30218:799::-;30373:4;-1:-1:-1;;;;;30394:13:0;;15988:20;16036:8;30390:620;;30430:72;;-1:-1:-1;;;30430:72:0;;-1:-1:-1;;;;;30430:36:0;;;;;:72;;299:10;;30481:4;;30487:7;;30496:5;;30430:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30430:72:0;;;;;;;;-1:-1:-1;;30430:72:0;;;;;;;;;;;;:::i;:::-;;;30426:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30672:13:0;;30668:272;;30715:60;;-1:-1:-1;;;30715:60:0;;;;;;;:::i;30668:272::-;30890:6;30884:13;30875:6;30871:2;30867:15;30860:38;30426:529;-1:-1:-1;;;;;;30553:51:0;-1:-1:-1;;;30553:51:0;;-1:-1:-1;30546:58:0;;30390:620;-1:-1:-1;30994:4:0;30218:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:615::-;2985:6;2993;3046:2;3034:9;3025:7;3021:23;3017:32;3014:52;;;3062:1;3059;3052:12;3014:52;3102:9;3089:23;3131:18;3172:2;3164:6;3161:14;3158:34;;;3188:1;3185;3178:12;3158:34;3226:6;3215:9;3211:22;3201:32;;3271:7;3264:4;3260:2;3256:13;3252:27;3242:55;;3293:1;3290;3283:12;3242:55;3333:2;3320:16;3359:2;3351:6;3348:14;3345:34;;;3375:1;3372;3365:12;3345:34;3428:7;3423:2;3413:6;3410:1;3406:14;3402:2;3398:23;3394:32;3391:45;3388:65;;;3449:1;3446;3439:12;3388:65;3480:2;3472:11;;;;;3502:6;;-1:-1:-1;2899:615:1;;-1:-1:-1;;;;2899:615:1:o;3519:245::-;3577:6;3630:2;3618:9;3609:7;3605:23;3601:32;3598:52;;;3646:1;3643;3636:12;3598:52;3685:9;3672:23;3704:30;3728:5;3704:30;:::i;3769:249::-;3838:6;3891:2;3879:9;3870:7;3866:23;3862:32;3859:52;;;3907:1;3904;3897:12;3859:52;3939:9;3933:16;3958:30;3982:5;3958:30;:::i;4023:450::-;4092:6;4145:2;4133:9;4124:7;4120:23;4116:32;4113:52;;;4161:1;4158;4151:12;4113:52;4201:9;4188:23;4234:18;4226:6;4223:30;4220:50;;;4266:1;4263;4256:12;4220:50;4289:22;;4342:4;4334:13;;4330:27;-1:-1:-1;4320:55:1;;4371:1;4368;4361:12;4320:55;4394:73;4459:7;4454:2;4441:16;4436:2;4432;4428:11;4394:73;:::i;4478:180::-;4537:6;4590:2;4578:9;4569:7;4565:23;4561:32;4558:52;;;4606:1;4603;4596:12;4558:52;-1:-1:-1;4629:23:1;;4478:180;-1:-1:-1;4478:180:1:o;4663:257::-;4704:3;4742:5;4736:12;4769:6;4764:3;4757:19;4785:63;4841:6;4834:4;4829:3;4825:14;4818:4;4811:5;4807:16;4785:63;:::i;:::-;4902:2;4881:15;-1:-1:-1;;4877:29:1;4868:39;;;;4909:4;4864:50;;4663:257;-1:-1:-1;;4663:257:1:o;4925:637::-;5205:3;5243:6;5237:13;5259:53;5305:6;5300:3;5293:4;5285:6;5281:17;5259:53;:::i;:::-;5375:13;;5334:16;;;;5397:57;5375:13;5334:16;5431:4;5419:17;;5397:57;:::i;:::-;-1:-1:-1;;;5476:20:1;;5505:22;;;5554:1;5543:13;;4925:637;-1:-1:-1;;;;4925:637:1:o;6155:488::-;-1:-1:-1;;;;;6424:15:1;;;6406:34;;6476:15;;6471:2;6456:18;;6449:43;6523:2;6508:18;;6501:34;;;6571:3;6566:2;6551:18;;6544:31;;;6349:4;;6592:45;;6617:19;;6609:6;6592:45;:::i;:::-;6584:53;6155:488;-1:-1:-1;;;;;;6155:488:1:o;6648:632::-;6819:2;6871:21;;;6941:13;;6844:18;;;6963:22;;;6790:4;;6819:2;7042:15;;;;7016:2;7001:18;;;6790:4;7085:169;7099:6;7096:1;7093:13;7085:169;;;7160:13;;7148:26;;7229:15;;;;7194:12;;;;7121:1;7114:9;7085:169;;;-1:-1:-1;7271:3:1;;6648:632;-1:-1:-1;;;;;;6648:632:1:o;7477:219::-;7626:2;7615:9;7608:21;7589:4;7646:44;7686:2;7675:9;7671:18;7663:6;7646:44;:::i;8456:414::-;8658:2;8640:21;;;8697:2;8677:18;;;8670:30;8736:34;8731:2;8716:18;;8709:62;-1:-1:-1;;;8802:2:1;8787:18;;8780:48;8860:3;8845:19;;8456:414::o;9995:413::-;10197:2;10179:21;;;10236:2;10216:18;;;10209:30;10275:34;10270:2;10255:18;;10248:62;-1:-1:-1;;;10341:2:1;10326:18;;10319:47;10398:3;10383:19;;9995:413::o;14667:356::-;14869:2;14851:21;;;14888:18;;;14881:30;14947:34;14942:2;14927:18;;14920:62;15014:2;14999:18;;14667:356::o;15799:346::-;16001:2;15983:21;;;16040:2;16020:18;;;16013:30;-1:-1:-1;;;16074:2:1;16059:18;;16052:52;16136:2;16121:18;;15799:346::o;16904:413::-;17106:2;17088:21;;;17145:2;17125:18;;;17118:30;17184:34;17179:2;17164:18;;17157:62;-1:-1:-1;;;17250:2:1;17235:18;;17228:47;17307:3;17292:19;;16904:413::o;18565:128::-;18605:3;18636:1;18632:6;18629:1;18626:13;18623:39;;;18642:18;;:::i;:::-;-1:-1:-1;18678:9:1;;18565:128::o;18698:120::-;18738:1;18764;18754:35;;18769:18;;:::i;:::-;-1:-1:-1;18803:9:1;;18698:120::o;18823:168::-;18863:7;18929:1;18925;18921:6;18917:14;18914:1;18911:21;18906:1;18899:9;18892:17;18888:45;18885:71;;;18936:18;;:::i;:::-;-1:-1:-1;18976:9:1;;18823:168::o;18996:125::-;19036:4;19064:1;19061;19058:8;19055:34;;;19069:18;;:::i;:::-;-1:-1:-1;19106:9:1;;18996:125::o;19126:258::-;19198:1;19208:113;19222:6;19219:1;19216:13;19208:113;;;19298:11;;;19292:18;19279:11;;;19272:39;19244:2;19237:10;19208:113;;;19339:6;19336:1;19333:13;19330:48;;;-1:-1:-1;;19374:1:1;19356:16;;19349:27;19126:258::o;19389:380::-;19468:1;19464:12;;;;19511;;;19532:61;;19586:4;19578:6;19574:17;19564:27;;19532:61;19639:2;19631:6;19628:14;19608:18;19605:38;19602:161;;;19685:10;19680:3;19676:20;19673:1;19666:31;19720:4;19717:1;19710:15;19748:4;19745:1;19738:15;19602:161;;19389:380;;;:::o;19774:135::-;19813:3;-1:-1:-1;;19834:17:1;;19831:43;;;19854:18;;:::i;:::-;-1:-1:-1;19901:1:1;19890:13;;19774:135::o;19914:112::-;19946:1;19972;19962:35;;19977:18;;:::i;:::-;-1:-1:-1;20011:9:1;;19914:112::o;20031:127::-;20092:10;20087:3;20083:20;20080:1;20073:31;20123:4;20120:1;20113:15;20147:4;20144:1;20137:15;20163:127;20224:10;20219:3;20215:20;20212:1;20205:31;20255:4;20252:1;20245:15;20279:4;20276:1;20269:15;20295:127;20356:10;20351:3;20347:20;20344:1;20337:31;20387:4;20384:1;20377:15;20411:4;20408:1;20401:15;20427:127;20488:10;20483:3;20479:20;20476:1;20469:31;20519:4;20516:1;20509:15;20543:4;20540:1;20533:15;20559:131;-1:-1:-1;;;;;;20633:32:1;;20623:43;;20613:71;;20680:1;20677;20670:12

Swarm Source

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