ETH Price: $2,853.62 (-9.71%)
Gas: 10 Gwei

Token

Mighty Axolotl (MAXOLOTL)
 

Overview

Max Total Supply

437 MAXOLOTL

Holders

176

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MAXOLOTL
0xb10434e988178895916b00d546386514a2fbce73
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:
MightyAxolotl

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 2021-09-18
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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



pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: gist-49998ec830d7a9c3de88f16dbcee55aa/contracts/MightyAxolotl.sol


pragma solidity ^0.8.7;




contract MightyAxolotl is Ownable, ERC721Enumerable {
    uint256 public preSaleTime = 1632168000; // Sep 20 6PM EST // 10PM CEST
    uint256 public saleTime = 1632427200; // Sep 23 6PM EST // 10PM CEST
    uint256 public price = 0.02 ether;
    uint256 public maxSupply = 10000;
    uint256 public RESERVES = 150;
    uint256 public maxPerTransaction = 20;
    string internal baseTokenURI;
    mapping(address => bool) public preSaleWallets;
    address public devAddress = 0x75479B52c8ccBD74716fb3EA17074AAeF14c66a2; // 15%
    address public artistAddress = 0x3c71bEac167Aa5F4fb2A5b786b224E9201925068; // 40%
    address public investorAddress =
        0x8F6fc840A5259EBE3f3d5686fDeeDAd838112D92; // 10%
    address public leadAddress = 0xC598531Dcf267646f88260daBAa40b95165d39C4; // 35%

    receive() external payable {}

    constructor() ERC721("Mighty Axolotl", "MAXOLOTL") {}

    modifier saleIsOpen() {
        require(block.timestamp >= saleTime, "The sale has not started yet.");
        _;
    }
    modifier preSaleIsOpen() {
        require(
            block.timestamp >= preSaleTime,
            "The presale has not started yet."
        );
        _;
    }

    function setPreSaleWallets(address[] memory _addresses) public {
        for (uint256 i = 0; i < _addresses.length; i++) {
            address currentAddr = _addresses[i];
            preSaleWallets[currentAddr] = true;
        }
    }

    function addressInPresale(address _addr) public view returns (bool) {
        return preSaleWallets[_addr];
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function preSaleMint(uint256 _count) external payable preSaleIsOpen {
        uint256 totalSupply = totalSupply();
        require(
            preSaleWallets[msg.sender],
            "Address is not whitelisted for presale."
        );
        require(totalSupply <= maxSupply, "Sold out.");
        require(
            _count <= maxPerTransaction,
            "Surpasses max items per transaction."
        );
        require(msg.value == price * _count, "Invalid Payment Value.");
        for (uint256 i = 0; i < _count; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }
    }

    function mint(uint256 _count) external payable saleIsOpen {
        uint256 totalSupply = totalSupply();
        require(totalSupply <= maxSupply, "Sold out.");
        require(
            _count <= maxPerTransaction,
            "Surpasses max items per transaction."
        );
        require(msg.value == price * _count, "Invalid Payment Value.");
        for (uint256 i = 0; i < _count; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }
    }

    function reserve(uint256 _count) public onlyOwner {
        uint256 totalSupply = totalSupply();
        require(balanceOf(msg.sender) + _count <= RESERVES, "Reserves maxed out");
        for (uint256 i = 0; i < RESERVES; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }
    }

    function giveaway(uint256 _count, address _to) external onlyOwner {
        uint256 totalSupply = totalSupply();
        require(totalSupply + _count <= maxSupply, "Sold out!");
        for (uint256 i = 0; i < _count; i++) {
            _safeMint(_to, totalSupply + i);
        }
    }

    function withdrawAll() external payable onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0);
        _withdraw(devAddress, balance * 15 / 100);
        _withdraw(artistAddress, balance * 40 / 100);
        _withdraw(investorAddress, balance * 10 / 100);
        _withdraw(leadAddress, address(this).balance);
    }

    function _withdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }

    function setBaseURI(string memory _uri) public onlyOwner {
        baseTokenURI = _uri;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"RESERVES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"addressInPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"artistAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"giveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"investorAddress","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":"leadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preSaleTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preSaleWallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","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":[],"name":"saleTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"setPreSaleWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052636148e840600b5563614cdcc0600c5566470de4df820000600d55612710600e556096600f5560146010819055601380546001600160a01b03199081167375479b52c8ccbd74716fb3ea17074aaef14c66a21790915581548116733c71beac167aa5f4fb2a5b786b224e920192506817909155601580548216738f6fc840a5259ebe3f3d5686fdeedad838112d921790556016805490911673c598531dcf267646f88260dabaa40b95165d39c4179055348015620000c157600080fd5b506040518060400160405280600e81526020016d135a59da1d1e48105e1bdb1bdd1b60921b8152506040518060400160405280600881526020016713505613d313d51360c21b815250620001246200011e6200015860201b60201c565b6200015c565b815162000139906001906020850190620001ac565b5080516200014f906002906020840190620001ac565b5050506200028f565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001ba9062000252565b90600052602060002090601f016020900481019282620001de576000855562000229565b82601f10620001f957805160ff191683800117855562000229565b8280016001018555821562000229579182015b82811115620002295782518255916020019190600101906200020c565b50620002379291506200023b565b5090565b5b808211156200023757600081556001016200023c565b600181811c908216806200026757607f821691505b602082108114156200028957634e487b7160e01b600052602260045260246000fd5b50919050565b6126a1806200029f6000396000f3fe6080604052600436106102345760003560e01c80636352211e1161012e578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd14610661578063d5abeb0114610681578063d7eb3f3a14610697578063e985e9c5146106b7578063f2fde38b1461070057600080fd5b8063a0712d68146105b5578063a22cb465146105c8578063b88d4fde146105e8578063c15e3cbb14610608578063c78db7b81461062857600080fd5b8063853828b6116100f2578063853828b6146105445780638da5cb5b1461054c57806391b7f5ed1461056a57806395d89b411461058a578063a035b1fe1461059f57600080fd5b80636352211e146104bc57806370a08231146104dc578063715018a6146104fc5780637835c63514610511578063819b25ba1461052457600080fd5b806325a30145116101bc5780634b980d67116101805780634b980d67146104165780634f6ccce71461042c578063508876631461044c57806355f804b31461046c5780635fb42c561461048c57600080fd5b806325a30145146103805780632f745c59146103965780633ad10ef6146103b65780633c0a1d09146103d657806342842e0e146103f657600080fd5b8063095ea7b311610203578063095ea7b3146102f357806312e228fd146103155780631596facb1461033557806318160ddd1461034b57806323b872dd1461036057600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc146102975780630922f9c5146102cf57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b5061026061025b366004612238565b610720565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61074b565b60405161026c919061238f565b3480156102a357600080fd5b506102b76102b23660046122bb565b6107dd565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102e5600f5481565b60405190815260200161026c565b3480156102ff57600080fd5b5061031361030e36600461215a565b610877565b005b34801561032157600080fd5b506015546102b7906001600160a01b031681565b34801561034157600080fd5b506102e5600c5481565b34801561035757600080fd5b506009546102e5565b34801561036c57600080fd5b5061031361037b366004612066565b61098d565b34801561038c57600080fd5b506102e5600b5481565b3480156103a257600080fd5b506102e56103b136600461215a565b6109be565b3480156103c257600080fd5b506013546102b7906001600160a01b031681565b3480156103e257600080fd5b506103136103f13660046122d4565b610a54565b34801561040257600080fd5b50610313610411366004612066565b610b09565b34801561042257600080fd5b506102e560105481565b34801561043857600080fd5b506102e56104473660046122bb565b610b24565b34801561045857600080fd5b506016546102b7906001600160a01b031681565b34801561047857600080fd5b50610313610487366004612272565b610bb7565b34801561049857600080fd5b506102606104a7366004612018565b60126020526000908152604090205460ff1681565b3480156104c857600080fd5b506102b76104d73660046122bb565b610bf8565b3480156104e857600080fd5b506102e56104f7366004612018565b610c6f565b34801561050857600080fd5b50610313610cf6565b61031361051f3660046122bb565b610d2c565b34801561053057600080fd5b5061031361053f3660046122bb565b610edb565b610313610f99565b34801561055857600080fd5b506000546001600160a01b03166102b7565b34801561057657600080fd5b506103136105853660046122bb565b61104d565b34801561059657600080fd5b5061028a61107c565b3480156105ab57600080fd5b506102e5600d5481565b6103136105c33660046122bb565b61108b565b3480156105d457600080fd5b506103136105e336600461211e565b6111ca565b3480156105f457600080fd5b506103136106033660046120a2565b61128f565b34801561061457600080fd5b50610313610623366004612184565b6112c1565b34801561063457600080fd5b50610260610643366004612018565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561066d57600080fd5b5061028a61067c3660046122bb565b611322565b34801561068d57600080fd5b506102e5600e5481565b3480156106a357600080fd5b506014546102b7906001600160a01b031681565b3480156106c357600080fd5b506102606106d2366004612033565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561070c57600080fd5b5061031361071b366004612018565b6113fd565b60006001600160e01b0319821663780e9d6360e01b1480610745575061074582611495565b92915050565b60606001805461075a9061257d565b80601f01602080910402602001604051908101604052809291908181526020018280546107869061257d565b80156107d35780601f106107a8576101008083540402835291602001916107d3565b820191906000526020600020905b8154815290600101906020018083116107b657829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b031661085b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061088282610bf8565b9050806001600160a01b0316836001600160a01b031614156108f05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610852565b336001600160a01b038216148061090c575061090c81336106d2565b61097e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610852565b61098883836114e5565b505050565b6109973382611553565b6109b35760405162461bcd60e51b81526004016108529061246d565b61098883838361164a565b60006109c983610c6f565b8210610a2b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610852565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b03163314610a7e5760405162461bcd60e51b815260040161085290612438565b6000610a8960095490565b600e54909150610a9984836124ef565b1115610ad35760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610852565b60005b83811015610b0357610af183610aec83856124ef565b6117f5565b80610afb816125b8565b915050610ad6565b50505050565b6109888383836040518060200160405280600081525061128f565b6000610b2f60095490565b8210610b925760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610852565b60098281548110610ba557610ba5612629565b90600052602060002001549050919050565b6000546001600160a01b03163314610be15760405162461bcd60e51b815260040161085290612438565b8051610bf4906011906020840190611f0b565b5050565b6000818152600360205260408120546001600160a01b0316806107455760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610852565b60006001600160a01b038216610cda5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610852565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610d205760405162461bcd60e51b815260040161085290612438565b610d2a600061180f565b565b600b54421015610d7e5760405162461bcd60e51b815260206004820181905260248201527f5468652070726573616c6520686173206e6f742073746172746564207965742e6044820152606401610852565b6000610d8960095490565b3360009081526012602052604090205490915060ff16610dfb5760405162461bcd60e51b815260206004820152602760248201527f41646472657373206973206e6f742077686974656c697374656420666f7220706044820152663932b9b0b6329760c91b6064820152608401610852565b600e54811115610e395760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b6044820152606401610852565b601054821115610e5b5760405162461bcd60e51b8152600401610852906123f4565b81600d54610e69919061251b565b3414610eb05760405162461bcd60e51b815260206004820152601660248201527524b73b30b634b2102830bcb6b2b73a102b30b63ab29760511b6044820152606401610852565b60005b8281101561098857610ec933610aec83856124ef565b80610ed3816125b8565b915050610eb3565b6000546001600160a01b03163314610f055760405162461bcd60e51b815260040161085290612438565b6000610f1060095490565b9050600f5482610f1f33610c6f565b610f2991906124ef565b1115610f6c5760405162461bcd60e51b815260206004820152601260248201527114995cd95c9d995cc81b585e1959081bdd5d60721b6044820152606401610852565b60005b600f5481101561098857610f8733610aec83856124ef565b80610f91816125b8565b915050610f6f565b6000546001600160a01b03163314610fc35760405162461bcd60e51b815260040161085290612438565b4780610fce57600080fd5b601354610ffa906001600160a01b03166064610feb84600f61251b565b610ff59190612507565b61185f565b601454611017906001600160a01b03166064610feb84602861251b565b601554611034906001600160a01b03166064610feb84600a61251b565b60165461104a906001600160a01b03164761185f565b50565b6000546001600160a01b031633146110775760405162461bcd60e51b815260040161085290612438565b600d55565b60606002805461075a9061257d565b600c544210156110dd5760405162461bcd60e51b815260206004820152601d60248201527f5468652073616c6520686173206e6f742073746172746564207965742e0000006044820152606401610852565b60006110e860095490565b9050600e548111156111285760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b6044820152606401610852565b60105482111561114a5760405162461bcd60e51b8152600401610852906123f4565b81600d54611158919061251b565b341461119f5760405162461bcd60e51b815260206004820152601660248201527524b73b30b634b2102830bcb6b2b73a102b30b63ab29760511b6044820152606401610852565b60005b82811015610988576111b833610aec83856124ef565b806111c2816125b8565b9150506111a2565b6001600160a01b0382163314156112235760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610852565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112993383611553565b6112b55760405162461bcd60e51b81526004016108529061246d565b610b03848484846118f5565b60005b8151811015610bf45760008282815181106112e1576112e1612629565b6020908102919091018101516001600160a01b03166000908152601290915260409020805460ff19166001179055508061131a816125b8565b9150506112c4565b6000818152600360205260409020546060906001600160a01b03166113a15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610852565b60006113ab611928565b905060008151116113cb57604051806020016040528060008152506113f6565b806113d584611937565b6040516020016113e6929190612323565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146114275760405162461bcd60e51b815260040161085290612438565b6001600160a01b03811661148c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610852565b61104a8161180f565b60006001600160e01b031982166380ac58cd60e01b14806114c657506001600160e01b03198216635b5e139f60e01b145b8061074557506301ffc9a760e01b6001600160e01b0319831614610745565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061151a82610bf8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166115cc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610852565b60006115d783610bf8565b9050806001600160a01b0316846001600160a01b031614806116125750836001600160a01b0316611607846107dd565b6001600160a01b0316145b8061164257506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661165d82610bf8565b6001600160a01b0316146116c55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610852565b6001600160a01b0382166117275760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610852565b611732838383611a35565b61173d6000826114e5565b6001600160a01b038316600090815260046020526040812080546001929061176690849061253a565b90915550506001600160a01b03821660009081526004602052604081208054600192906117949084906124ef565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610bf4828260405180602001604052806000815250611aed565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146118ac576040519150601f19603f3d011682016040523d82523d6000602084013e6118b1565b606091505b50509050806109885760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610852565b61190084848461164a565b61190c84848484611b20565b610b035760405162461bcd60e51b8152600401610852906123a2565b60606011805461075a9061257d565b60608161195b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611985578061196f816125b8565b915061197e9050600a83612507565b915061195f565b60008167ffffffffffffffff8111156119a0576119a061263f565b6040519080825280601f01601f1916602001820160405280156119ca576020820181803683370190505b5090505b8415611642576119df60018361253a565b91506119ec600a866125d3565b6119f79060306124ef565b60f81b818381518110611a0c57611a0c612629565b60200101906001600160f81b031916908160001a905350611a2e600a86612507565b94506119ce565b6001600160a01b038316611a9057611a8b81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611ab3565b816001600160a01b0316836001600160a01b031614611ab357611ab38382611c2d565b6001600160a01b038216611aca5761098881611cca565b826001600160a01b0316826001600160a01b031614610988576109888282611d79565b611af78383611dbd565b611b046000848484611b20565b6109885760405162461bcd60e51b8152600401610852906123a2565b60006001600160a01b0384163b15611c2257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b64903390899088908890600401612352565b602060405180830381600087803b158015611b7e57600080fd5b505af1925050508015611bae575060408051601f3d908101601f19168201909252611bab91810190612255565b60015b611c08573d808015611bdc576040519150601f19603f3d011682016040523d82523d6000602084013e611be1565b606091505b508051611c005760405162461bcd60e51b8152600401610852906123a2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611642565b506001949350505050565b60006001611c3a84610c6f565b611c44919061253a565b600083815260086020526040902054909150808214611c97576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611cdc9060019061253a565b6000838152600a602052604081205460098054939450909284908110611d0457611d04612629565b906000526020600020015490508060098381548110611d2557611d25612629565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611d5d57611d5d612613565b6001900381819060005260206000200160009055905550505050565b6000611d8483610c6f565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b038216611e135760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610852565b6000818152600360205260409020546001600160a01b031615611e785760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610852565b611e8460008383611a35565b6001600160a01b0382166000908152600460205260408120805460019290611ead9084906124ef565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f179061257d565b90600052602060002090601f016020900481019282611f395760008555611f7f565b82601f10611f5257805160ff1916838001178555611f7f565b82800160010185558215611f7f579182015b82811115611f7f578251825591602001919060010190611f64565b50611f8b929150611f8f565b5090565b5b80821115611f8b5760008155600101611f90565b600067ffffffffffffffff831115611fbe57611fbe61263f565b611fd1601f8401601f19166020016124be565b9050828152838383011115611fe557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461201357600080fd5b919050565b60006020828403121561202a57600080fd5b6113f682611ffc565b6000806040838503121561204657600080fd5b61204f83611ffc565b915061205d60208401611ffc565b90509250929050565b60008060006060848603121561207b57600080fd5b61208484611ffc565b925061209260208501611ffc565b9150604084013590509250925092565b600080600080608085870312156120b857600080fd5b6120c185611ffc565b93506120cf60208601611ffc565b925060408501359150606085013567ffffffffffffffff8111156120f257600080fd5b8501601f8101871361210357600080fd5b61211287823560208401611fa4565b91505092959194509250565b6000806040838503121561213157600080fd5b61213a83611ffc565b91506020830135801515811461214f57600080fd5b809150509250929050565b6000806040838503121561216d57600080fd5b61217683611ffc565b946020939093013593505050565b6000602080838503121561219757600080fd5b823567ffffffffffffffff808211156121af57600080fd5b818501915085601f8301126121c357600080fd5b8135818111156121d5576121d561263f565b8060051b91506121e68483016124be565b8181528481019084860184860187018a101561220157600080fd5b600095505b8386101561222b5761221781611ffc565b835260019590950194918601918601612206565b5098975050505050505050565b60006020828403121561224a57600080fd5b81356113f681612655565b60006020828403121561226757600080fd5b81516113f681612655565b60006020828403121561228457600080fd5b813567ffffffffffffffff81111561229b57600080fd5b8201601f810184136122ac57600080fd5b61164284823560208401611fa4565b6000602082840312156122cd57600080fd5b5035919050565b600080604083850312156122e757600080fd5b8235915061205d60208401611ffc565b6000815180845261230f816020860160208601612551565b601f01601f19169290920160200192915050565b60008351612335818460208801612551565b835190830190612349818360208801612551565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612385908301846122f7565b9695505050505050565b6020815260006113f660208301846122f7565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526024908201527f537572706173736573206d6178206974656d7320706572207472616e7361637460408201526334b7b71760e11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156124e7576124e761263f565b604052919050565b60008219821115612502576125026125e7565b500190565b600082612516576125166125fd565b500490565b6000816000190483118215151615612535576125356125e7565b500290565b60008282101561254c5761254c6125e7565b500390565b60005b8381101561256c578181015183820152602001612554565b83811115610b035750506000910152565b600181811c9082168061259157607f821691505b602082108114156125b257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125cc576125cc6125e7565b5060010190565b6000826125e2576125e26125fd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461104a57600080fdfea26469706673582212201ea19718610fc721e7266394915c249829fe574ebcb3c41c9780f579efd1ba6a64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102345760003560e01c80636352211e1161012e578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd14610661578063d5abeb0114610681578063d7eb3f3a14610697578063e985e9c5146106b7578063f2fde38b1461070057600080fd5b8063a0712d68146105b5578063a22cb465146105c8578063b88d4fde146105e8578063c15e3cbb14610608578063c78db7b81461062857600080fd5b8063853828b6116100f2578063853828b6146105445780638da5cb5b1461054c57806391b7f5ed1461056a57806395d89b411461058a578063a035b1fe1461059f57600080fd5b80636352211e146104bc57806370a08231146104dc578063715018a6146104fc5780637835c63514610511578063819b25ba1461052457600080fd5b806325a30145116101bc5780634b980d67116101805780634b980d67146104165780634f6ccce71461042c578063508876631461044c57806355f804b31461046c5780635fb42c561461048c57600080fd5b806325a30145146103805780632f745c59146103965780633ad10ef6146103b65780633c0a1d09146103d657806342842e0e146103f657600080fd5b8063095ea7b311610203578063095ea7b3146102f357806312e228fd146103155780631596facb1461033557806318160ddd1461034b57806323b872dd1461036057600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc146102975780630922f9c5146102cf57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b5061026061025b366004612238565b610720565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61074b565b60405161026c919061238f565b3480156102a357600080fd5b506102b76102b23660046122bb565b6107dd565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102e5600f5481565b60405190815260200161026c565b3480156102ff57600080fd5b5061031361030e36600461215a565b610877565b005b34801561032157600080fd5b506015546102b7906001600160a01b031681565b34801561034157600080fd5b506102e5600c5481565b34801561035757600080fd5b506009546102e5565b34801561036c57600080fd5b5061031361037b366004612066565b61098d565b34801561038c57600080fd5b506102e5600b5481565b3480156103a257600080fd5b506102e56103b136600461215a565b6109be565b3480156103c257600080fd5b506013546102b7906001600160a01b031681565b3480156103e257600080fd5b506103136103f13660046122d4565b610a54565b34801561040257600080fd5b50610313610411366004612066565b610b09565b34801561042257600080fd5b506102e560105481565b34801561043857600080fd5b506102e56104473660046122bb565b610b24565b34801561045857600080fd5b506016546102b7906001600160a01b031681565b34801561047857600080fd5b50610313610487366004612272565b610bb7565b34801561049857600080fd5b506102606104a7366004612018565b60126020526000908152604090205460ff1681565b3480156104c857600080fd5b506102b76104d73660046122bb565b610bf8565b3480156104e857600080fd5b506102e56104f7366004612018565b610c6f565b34801561050857600080fd5b50610313610cf6565b61031361051f3660046122bb565b610d2c565b34801561053057600080fd5b5061031361053f3660046122bb565b610edb565b610313610f99565b34801561055857600080fd5b506000546001600160a01b03166102b7565b34801561057657600080fd5b506103136105853660046122bb565b61104d565b34801561059657600080fd5b5061028a61107c565b3480156105ab57600080fd5b506102e5600d5481565b6103136105c33660046122bb565b61108b565b3480156105d457600080fd5b506103136105e336600461211e565b6111ca565b3480156105f457600080fd5b506103136106033660046120a2565b61128f565b34801561061457600080fd5b50610313610623366004612184565b6112c1565b34801561063457600080fd5b50610260610643366004612018565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561066d57600080fd5b5061028a61067c3660046122bb565b611322565b34801561068d57600080fd5b506102e5600e5481565b3480156106a357600080fd5b506014546102b7906001600160a01b031681565b3480156106c357600080fd5b506102606106d2366004612033565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561070c57600080fd5b5061031361071b366004612018565b6113fd565b60006001600160e01b0319821663780e9d6360e01b1480610745575061074582611495565b92915050565b60606001805461075a9061257d565b80601f01602080910402602001604051908101604052809291908181526020018280546107869061257d565b80156107d35780601f106107a8576101008083540402835291602001916107d3565b820191906000526020600020905b8154815290600101906020018083116107b657829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b031661085b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061088282610bf8565b9050806001600160a01b0316836001600160a01b031614156108f05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610852565b336001600160a01b038216148061090c575061090c81336106d2565b61097e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610852565b61098883836114e5565b505050565b6109973382611553565b6109b35760405162461bcd60e51b81526004016108529061246d565b61098883838361164a565b60006109c983610c6f565b8210610a2b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610852565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b03163314610a7e5760405162461bcd60e51b815260040161085290612438565b6000610a8960095490565b600e54909150610a9984836124ef565b1115610ad35760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610852565b60005b83811015610b0357610af183610aec83856124ef565b6117f5565b80610afb816125b8565b915050610ad6565b50505050565b6109888383836040518060200160405280600081525061128f565b6000610b2f60095490565b8210610b925760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610852565b60098281548110610ba557610ba5612629565b90600052602060002001549050919050565b6000546001600160a01b03163314610be15760405162461bcd60e51b815260040161085290612438565b8051610bf4906011906020840190611f0b565b5050565b6000818152600360205260408120546001600160a01b0316806107455760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610852565b60006001600160a01b038216610cda5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610852565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610d205760405162461bcd60e51b815260040161085290612438565b610d2a600061180f565b565b600b54421015610d7e5760405162461bcd60e51b815260206004820181905260248201527f5468652070726573616c6520686173206e6f742073746172746564207965742e6044820152606401610852565b6000610d8960095490565b3360009081526012602052604090205490915060ff16610dfb5760405162461bcd60e51b815260206004820152602760248201527f41646472657373206973206e6f742077686974656c697374656420666f7220706044820152663932b9b0b6329760c91b6064820152608401610852565b600e54811115610e395760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b6044820152606401610852565b601054821115610e5b5760405162461bcd60e51b8152600401610852906123f4565b81600d54610e69919061251b565b3414610eb05760405162461bcd60e51b815260206004820152601660248201527524b73b30b634b2102830bcb6b2b73a102b30b63ab29760511b6044820152606401610852565b60005b8281101561098857610ec933610aec83856124ef565b80610ed3816125b8565b915050610eb3565b6000546001600160a01b03163314610f055760405162461bcd60e51b815260040161085290612438565b6000610f1060095490565b9050600f5482610f1f33610c6f565b610f2991906124ef565b1115610f6c5760405162461bcd60e51b815260206004820152601260248201527114995cd95c9d995cc81b585e1959081bdd5d60721b6044820152606401610852565b60005b600f5481101561098857610f8733610aec83856124ef565b80610f91816125b8565b915050610f6f565b6000546001600160a01b03163314610fc35760405162461bcd60e51b815260040161085290612438565b4780610fce57600080fd5b601354610ffa906001600160a01b03166064610feb84600f61251b565b610ff59190612507565b61185f565b601454611017906001600160a01b03166064610feb84602861251b565b601554611034906001600160a01b03166064610feb84600a61251b565b60165461104a906001600160a01b03164761185f565b50565b6000546001600160a01b031633146110775760405162461bcd60e51b815260040161085290612438565b600d55565b60606002805461075a9061257d565b600c544210156110dd5760405162461bcd60e51b815260206004820152601d60248201527f5468652073616c6520686173206e6f742073746172746564207965742e0000006044820152606401610852565b60006110e860095490565b9050600e548111156111285760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b6044820152606401610852565b60105482111561114a5760405162461bcd60e51b8152600401610852906123f4565b81600d54611158919061251b565b341461119f5760405162461bcd60e51b815260206004820152601660248201527524b73b30b634b2102830bcb6b2b73a102b30b63ab29760511b6044820152606401610852565b60005b82811015610988576111b833610aec83856124ef565b806111c2816125b8565b9150506111a2565b6001600160a01b0382163314156112235760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610852565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112993383611553565b6112b55760405162461bcd60e51b81526004016108529061246d565b610b03848484846118f5565b60005b8151811015610bf45760008282815181106112e1576112e1612629565b6020908102919091018101516001600160a01b03166000908152601290915260409020805460ff19166001179055508061131a816125b8565b9150506112c4565b6000818152600360205260409020546060906001600160a01b03166113a15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610852565b60006113ab611928565b905060008151116113cb57604051806020016040528060008152506113f6565b806113d584611937565b6040516020016113e6929190612323565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146114275760405162461bcd60e51b815260040161085290612438565b6001600160a01b03811661148c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610852565b61104a8161180f565b60006001600160e01b031982166380ac58cd60e01b14806114c657506001600160e01b03198216635b5e139f60e01b145b8061074557506301ffc9a760e01b6001600160e01b0319831614610745565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061151a82610bf8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166115cc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610852565b60006115d783610bf8565b9050806001600160a01b0316846001600160a01b031614806116125750836001600160a01b0316611607846107dd565b6001600160a01b0316145b8061164257506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661165d82610bf8565b6001600160a01b0316146116c55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610852565b6001600160a01b0382166117275760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610852565b611732838383611a35565b61173d6000826114e5565b6001600160a01b038316600090815260046020526040812080546001929061176690849061253a565b90915550506001600160a01b03821660009081526004602052604081208054600192906117949084906124ef565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610bf4828260405180602001604052806000815250611aed565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146118ac576040519150601f19603f3d011682016040523d82523d6000602084013e6118b1565b606091505b50509050806109885760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610852565b61190084848461164a565b61190c84848484611b20565b610b035760405162461bcd60e51b8152600401610852906123a2565b60606011805461075a9061257d565b60608161195b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611985578061196f816125b8565b915061197e9050600a83612507565b915061195f565b60008167ffffffffffffffff8111156119a0576119a061263f565b6040519080825280601f01601f1916602001820160405280156119ca576020820181803683370190505b5090505b8415611642576119df60018361253a565b91506119ec600a866125d3565b6119f79060306124ef565b60f81b818381518110611a0c57611a0c612629565b60200101906001600160f81b031916908160001a905350611a2e600a86612507565b94506119ce565b6001600160a01b038316611a9057611a8b81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611ab3565b816001600160a01b0316836001600160a01b031614611ab357611ab38382611c2d565b6001600160a01b038216611aca5761098881611cca565b826001600160a01b0316826001600160a01b031614610988576109888282611d79565b611af78383611dbd565b611b046000848484611b20565b6109885760405162461bcd60e51b8152600401610852906123a2565b60006001600160a01b0384163b15611c2257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b64903390899088908890600401612352565b602060405180830381600087803b158015611b7e57600080fd5b505af1925050508015611bae575060408051601f3d908101601f19168201909252611bab91810190612255565b60015b611c08573d808015611bdc576040519150601f19603f3d011682016040523d82523d6000602084013e611be1565b606091505b508051611c005760405162461bcd60e51b8152600401610852906123a2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611642565b506001949350505050565b60006001611c3a84610c6f565b611c44919061253a565b600083815260086020526040902054909150808214611c97576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611cdc9060019061253a565b6000838152600a602052604081205460098054939450909284908110611d0457611d04612629565b906000526020600020015490508060098381548110611d2557611d25612629565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611d5d57611d5d612613565b6001900381819060005260206000200160009055905550505050565b6000611d8483610c6f565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b038216611e135760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610852565b6000818152600360205260409020546001600160a01b031615611e785760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610852565b611e8460008383611a35565b6001600160a01b0382166000908152600460205260408120805460019290611ead9084906124ef565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f179061257d565b90600052602060002090601f016020900481019282611f395760008555611f7f565b82601f10611f5257805160ff1916838001178555611f7f565b82800160010185558215611f7f579182015b82811115611f7f578251825591602001919060010190611f64565b50611f8b929150611f8f565b5090565b5b80821115611f8b5760008155600101611f90565b600067ffffffffffffffff831115611fbe57611fbe61263f565b611fd1601f8401601f19166020016124be565b9050828152838383011115611fe557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461201357600080fd5b919050565b60006020828403121561202a57600080fd5b6113f682611ffc565b6000806040838503121561204657600080fd5b61204f83611ffc565b915061205d60208401611ffc565b90509250929050565b60008060006060848603121561207b57600080fd5b61208484611ffc565b925061209260208501611ffc565b9150604084013590509250925092565b600080600080608085870312156120b857600080fd5b6120c185611ffc565b93506120cf60208601611ffc565b925060408501359150606085013567ffffffffffffffff8111156120f257600080fd5b8501601f8101871361210357600080fd5b61211287823560208401611fa4565b91505092959194509250565b6000806040838503121561213157600080fd5b61213a83611ffc565b91506020830135801515811461214f57600080fd5b809150509250929050565b6000806040838503121561216d57600080fd5b61217683611ffc565b946020939093013593505050565b6000602080838503121561219757600080fd5b823567ffffffffffffffff808211156121af57600080fd5b818501915085601f8301126121c357600080fd5b8135818111156121d5576121d561263f565b8060051b91506121e68483016124be565b8181528481019084860184860187018a101561220157600080fd5b600095505b8386101561222b5761221781611ffc565b835260019590950194918601918601612206565b5098975050505050505050565b60006020828403121561224a57600080fd5b81356113f681612655565b60006020828403121561226757600080fd5b81516113f681612655565b60006020828403121561228457600080fd5b813567ffffffffffffffff81111561229b57600080fd5b8201601f810184136122ac57600080fd5b61164284823560208401611fa4565b6000602082840312156122cd57600080fd5b5035919050565b600080604083850312156122e757600080fd5b8235915061205d60208401611ffc565b6000815180845261230f816020860160208601612551565b601f01601f19169290920160200192915050565b60008351612335818460208801612551565b835190830190612349818360208801612551565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612385908301846122f7565b9695505050505050565b6020815260006113f660208301846122f7565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526024908201527f537572706173736573206d6178206974656d7320706572207472616e7361637460408201526334b7b71760e11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156124e7576124e761263f565b604052919050565b60008219821115612502576125026125e7565b500190565b600082612516576125166125fd565b500490565b6000816000190483118215151615612535576125356125e7565b500290565b60008282101561254c5761254c6125e7565b500390565b60005b8381101561256c578181015183820152602001612554565b83811115610b035750506000910152565b600181811c9082168061259157607f821691505b602082108114156125b257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125cc576125cc6125e7565b5060010190565b6000826125e2576125e26125fd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461104a57600080fdfea26469706673582212201ea19718610fc721e7266394915c249829fe574ebcb3c41c9780f579efd1ba6a64736f6c63430008070033

Deployed Bytecode Sourcemap

43286:4171:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37025:224;;;;;;;;;;-1:-1:-1;37025:224:0;;;;;:::i;:::-;;:::i;:::-;;;6858:14:1;;6851:22;6833:41;;6821:2;6806:18;37025:224:0;;;;;;;;24917:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26476:221::-;;;;;;;;;;-1:-1:-1;26476:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6156:32:1;;;6138:51;;6126:2;6111:18;26476:221:0;5992:203:1;43575:29:0;;;;;;;;;;;;;;;;;;;17711:25:1;;;17699:2;17684:18;43575:29:0;17565:177:1;25999:411:0;;;;;;;;;;-1:-1:-1;25999:411:0;;;;;:::i;:::-;;:::i;:::-;;43914:84;;;;;;;;;;-1:-1:-1;43914:84:0;;;;-1:-1:-1;;;;;43914:84:0;;;43422:36;;;;;;;;;;;;;;;;37665:113;;;;;;;;;;-1:-1:-1;37753:10:0;:17;37665:113;;27366:339;;;;;;;;;;-1:-1:-1;27366:339:0;;;;;:::i;:::-;;:::i;43345:39::-;;;;;;;;;;;;;;;;37333:256;;;;;;;;;;-1:-1:-1;37333:256:0;;;;;:::i;:::-;;:::i;43743:70::-;;;;;;;;;;-1:-1:-1;43743:70:0;;;;-1:-1:-1;;;;;43743:70:0;;;46384:291;;;;;;;;;;-1:-1:-1;46384:291:0;;;;;:::i;:::-;;:::i;27776:185::-;;;;;;;;;;-1:-1:-1;27776:185:0;;;;;:::i;:::-;;:::i;43611:37::-;;;;;;;;;;;;;;;;37855:233;;;;;;;;;;-1:-1:-1;37855:233:0;;;;;:::i;:::-;;:::i;44012:71::-;;;;;;;;;;-1:-1:-1;44012:71:0;;;;-1:-1:-1;;;;;44012:71:0;;;47238:95;;;;;;;;;;-1:-1:-1;47238:95:0;;;;;:::i;:::-;;:::i;43690:46::-;;;;;;;;;;-1:-1:-1;43690:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;24611:239;;;;;;;;;;-1:-1:-1;24611:239:0;;;;;:::i;:::-;;:::i;24341:208::-;;;;;;;;;;-1:-1:-1;24341:208:0;;;;;:::i;:::-;;:::i;9187:94::-;;;;;;;;;;;;;:::i;44966:614::-;;;;;;:::i;:::-;;:::i;46074:302::-;;;;;;;;;;-1:-1:-1;46074:302:0;;;;;:::i;:::-;;:::i;46683:359::-;;;:::i;8536:87::-;;;;;;;;;;-1:-1:-1;8582:7:0;8609:6;-1:-1:-1;;;;;8609:6:0;8536:87;;44872:86;;;;;;;;;;-1:-1:-1;44872:86:0;;;;;:::i;:::-;;:::i;25086:104::-;;;;;;;;;;;;;:::i;43496:33::-;;;;;;;;;;;;;;;;45588:478;;;;;;:::i;:::-;;:::i;26769:295::-;;;;;;;;;;-1:-1:-1;26769:295:0;;;;;:::i;:::-;;:::i;28032:328::-;;;;;;;;;;-1:-1:-1;28032:328:0;;;;;:::i;:::-;;:::i;44501:240::-;;;;;;;;;;-1:-1:-1;44501:240:0;;;;;:::i;:::-;;:::i;44749:115::-;;;;;;;;;;-1:-1:-1;44749:115:0;;;;;:::i;:::-;-1:-1:-1;;;;;44835:21:0;44811:4;44835:21;;;:14;:21;;;;;;;;;44749:115;25261:334;;;;;;;;;;-1:-1:-1;25261:334:0;;;;;:::i;:::-;;:::i;43536:32::-;;;;;;;;;;;;;;;;43827:73;;;;;;;;;;-1:-1:-1;43827:73:0;;;;-1:-1:-1;;;;;43827:73:0;;;27135:164;;;;;;;;;;-1:-1:-1;27135:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27256:25:0;;;27232:4;27256:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27135:164;9436:192;;;;;;;;;;-1:-1:-1;9436:192:0;;;;;:::i;:::-;;:::i;37025:224::-;37127:4;-1:-1:-1;;;;;;37151:50:0;;-1:-1:-1;;;37151:50:0;;:90;;;37205:36;37229:11;37205:23;:36::i;:::-;37144:97;37025:224;-1:-1:-1;;37025:224:0:o;24917:100::-;24971:13;25004:5;24997:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24917:100;:::o;26476:221::-;26552:7;29959:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29959:16:0;26572:73;;;;-1:-1:-1;;;26572:73:0;;13507:2:1;26572:73:0;;;13489:21:1;13546:2;13526:18;;;13519:30;13585:34;13565:18;;;13558:62;-1:-1:-1;;;13636:18:1;;;13629:42;13688:19;;26572:73:0;;;;;;;;;-1:-1:-1;26665:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26665:24:0;;26476:221::o;25999:411::-;26080:13;26096:23;26111:7;26096:14;:23::i;:::-;26080:39;;26144:5;-1:-1:-1;;;;;26138:11:0;:2;-1:-1:-1;;;;;26138:11:0;;;26130:57;;;;-1:-1:-1;;;26130:57:0;;15107:2:1;26130:57:0;;;15089:21:1;15146:2;15126:18;;;15119:30;15185:34;15165:18;;;15158:62;-1:-1:-1;;;15236:18:1;;;15229:31;15277:19;;26130:57:0;14905:397:1;26130:57:0;7404:10;-1:-1:-1;;;;;26222:21:0;;;;:62;;-1:-1:-1;26247:37:0;26264:5;7404:10;27135:164;:::i;26247:37::-;26200:168;;;;-1:-1:-1;;;26200:168:0;;11542:2:1;26200:168:0;;;11524:21:1;11581:2;11561:18;;;11554:30;11620:34;11600:18;;;11593:62;11691:26;11671:18;;;11664:54;11735:19;;26200:168:0;11340:420:1;26200:168:0;26381:21;26390:2;26394:7;26381:8;:21::i;:::-;26069:341;25999:411;;:::o;27366:339::-;27561:41;7404:10;27594:7;27561:18;:41::i;:::-;27553:103;;;;-1:-1:-1;;;27553:103:0;;;;;;;:::i;:::-;27669:28;27679:4;27685:2;27689:7;27669:9;:28::i;37333:256::-;37430:7;37466:23;37483:5;37466:16;:23::i;:::-;37458:5;:31;37450:87;;;;-1:-1:-1;;;37450:87:0;;7311:2:1;37450:87:0;;;7293:21:1;7350:2;7330:18;;;7323:30;7389:34;7369:18;;;7362:62;-1:-1:-1;;;7440:18:1;;;7433:41;7491:19;;37450:87:0;7109:407:1;37450:87:0;-1:-1:-1;;;;;;37555:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37333:256::o;46384:291::-;8582:7;8609:6;-1:-1:-1;;;;;8609:6:0;7404:10;8756:23;8748:68;;;;-1:-1:-1;;;8748:68:0;;;;;;;:::i;:::-;46461:19:::1;46483:13;37753:10:::0;:17;;37665:113;46483:13:::1;46539:9;::::0;46461:35;;-1:-1:-1;46515:20:0::1;46529:6:::0;46461:35;46515:20:::1;:::i;:::-;:33;;46507:55;;;::::0;-1:-1:-1;;;46507:55:0;;17430:2:1;46507:55:0::1;::::0;::::1;17412:21:1::0;17469:1;17449:18;;;17442:29;-1:-1:-1;;;17487:18:1;;;17480:39;17536:18;;46507:55:0::1;17228:332:1::0;46507:55:0::1;46578:9;46573:95;46597:6;46593:1;:10;46573:95;;;46625:31;46635:3:::0;46640:15:::1;46654:1:::0;46640:11;:15:::1;:::i;:::-;46625:9;:31::i;:::-;46605:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46573:95;;;;46450:225;46384:291:::0;;:::o;27776:185::-;27914:39;27931:4;27937:2;27941:7;27914:39;;;;;;;;;;;;:16;:39::i;37855:233::-;37930:7;37966:30;37753:10;:17;;37665:113;37966:30;37958:5;:38;37950:95;;;;-1:-1:-1;;;37950:95:0;;17017:2:1;37950:95:0;;;16999:21:1;17056:2;17036:18;;;17029:30;17095:34;17075:18;;;17068:62;-1:-1:-1;;;17146:18:1;;;17139:42;17198:19;;37950:95:0;16815:408:1;37950:95:0;38063:10;38074:5;38063:17;;;;;;;;:::i;:::-;;;;;;;;;38056:24;;37855:233;;;:::o;47238:95::-;8582:7;8609:6;-1:-1:-1;;;;;8609:6:0;7404:10;8756:23;8748:68;;;;-1:-1:-1;;;8748:68:0;;;;;;;:::i;:::-;47306:19;;::::1;::::0;:12:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47238:95:::0;:::o;24611:239::-;24683:7;24719:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24719:16:0;24754:19;24746:73;;;;-1:-1:-1;;;24746:73:0;;12378:2:1;24746:73:0;;;12360:21:1;12417:2;12397:18;;;12390:30;12456:34;12436:18;;;12429:62;-1:-1:-1;;;12507:18:1;;;12500:39;12556:19;;24746:73:0;12176:405:1;24341:208:0;24413:7;-1:-1:-1;;;;;24441:19:0;;24433:74;;;;-1:-1:-1;;;24433:74:0;;11967:2:1;24433:74:0;;;11949:21:1;12006:2;11986:18;;;11979:30;12045:34;12025:18;;;12018:62;-1:-1:-1;;;12096:18:1;;;12089:40;12146:19;;24433:74:0;11765:406:1;24433:74:0;-1:-1:-1;;;;;;24525:16:0;;;;;:9;:16;;;;;;;24341:208::o;9187:94::-;8582:7;8609:6;-1:-1:-1;;;;;8609:6:0;7404:10;8756:23;8748:68;;;;-1:-1:-1;;;8748:68:0;;;;;;;:::i;:::-;9252:21:::1;9270:1;9252:9;:21::i;:::-;9187:94::o:0;44966:614::-;44402:11;;44383:15;:30;;44361:112;;;;-1:-1:-1;;;44361:112:0;;10425:2:1;44361:112:0;;;10407:21:1;;;10444:18;;;10437:30;10503:34;10483:18;;;10476:62;10555:18;;44361:112:0;10223:356:1;44361:112:0;45045:19:::1;45067:13;37753:10:::0;:17;;37665:113;45067:13:::1;45128:10;45113:26;::::0;;;:14:::1;:26;::::0;;;;;45045:35;;-1:-1:-1;45113:26:0::1;;45091:115;;;::::0;-1:-1:-1;;;45091:115:0;;15509:2:1;45091:115:0::1;::::0;::::1;15491:21:1::0;15548:2;15528:18;;;15521:30;15587:34;15567:18;;;15560:62;-1:-1:-1;;;15638:18:1;;;15631:37;15685:19;;45091:115:0::1;15307:403:1::0;45091:115:0::1;45240:9;;45225:11;:24;;45217:46;;;::::0;-1:-1:-1;;;45217:46:0;;16680:2:1;45217:46:0::1;::::0;::::1;16662:21:1::0;16719:1;16699:18;;;16692:29;-1:-1:-1;;;16737:18:1;;;16730:39;16786:18;;45217:46:0::1;16478:332:1::0;45217:46:0::1;45306:17;;45296:6;:27;;45274:113;;;;-1:-1:-1::0;;;45274:113:0::1;;;;;;;:::i;:::-;45427:6;45419:5;;:14;;;;:::i;:::-;45406:9;:27;45398:62;;;::::0;-1:-1:-1;;;45398:62:0;;10786:2:1;45398:62:0::1;::::0;::::1;10768:21:1::0;10825:2;10805:18;;;10798:30;-1:-1:-1;;;10844:18:1;;;10837:52;10906:18;;45398:62:0::1;10584:346:1::0;45398:62:0::1;45476:9;45471:102;45495:6;45491:1;:10;45471:102;;;45523:38;45533:10;45545:15;45559:1:::0;45545:11;:15:::1;:::i;45523:38::-;45503:3:::0;::::1;::::0;::::1;:::i;:::-;;;;45471:102;;46074:302:::0;8582:7;8609:6;-1:-1:-1;;;;;8609:6:0;7404:10;8756:23;8748:68;;;;-1:-1:-1;;;8748:68:0;;;;;;;:::i;:::-;46135:19:::1;46157:13;37753:10:::0;:17;;37665:113;46157:13:::1;46135:35;;46223:8;;46213:6;46189:21;46199:10;46189:9;:21::i;:::-;:30;;;;:::i;:::-;:42;;46181:73;;;::::0;-1:-1:-1;;;46181:73:0;;8549:2:1;46181:73:0::1;::::0;::::1;8531:21:1::0;8588:2;8568:18;;;8561:30;-1:-1:-1;;;8607:18:1;;;8600:48;8665:18;;46181:73:0::1;8347:342:1::0;46181:73:0::1;46270:9;46265:104;46289:8;;46285:1;:12;46265:104;;;46319:38;46329:10;46341:15;46355:1:::0;46341:11;:15:::1;:::i;46319:38::-;46299:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46265:104;;46683:359:::0;8582:7;8609:6;-1:-1:-1;;;;;8609:6:0;7404:10;8756:23;8748:68;;;;-1:-1:-1;;;8748:68:0;;;;;;;:::i;:::-;46762:21:::1;46802:11:::0;46794:20:::1;;;::::0;::::1;;46835:10;::::0;46825:41:::1;::::0;-1:-1:-1;;;;;46835:10:0::1;46862:3;46847:12;:7:::0;46857:2:::1;46847:12;:::i;:::-;:18;;;;:::i;:::-;46825:9;:41::i;:::-;46887:13;::::0;46877:44:::1;::::0;-1:-1:-1;;;;;46887:13:0::1;46917:3;46902:12;:7:::0;46912:2:::1;46902:12;:::i;46877:44::-;46942:15;::::0;46932:46:::1;::::0;-1:-1:-1;;;;;46942:15:0::1;46974:3;46959:12;:7:::0;46969:2:::1;46959:12;:::i;46932:46::-;46999:11;::::0;46989:45:::1;::::0;-1:-1:-1;;;;;46999:11:0::1;47012:21;46989:9;:45::i;:::-;46733:309;46683:359::o:0;44872:86::-;8582:7;8609:6;-1:-1:-1;;;;;8609:6:0;7404:10;8756:23;8748:68;;;;-1:-1:-1;;;8748:68:0;;;;;;;:::i;:::-;44936:5:::1;:14:::0;44872:86::o;25086:104::-;25142:13;25175:7;25168:14;;;;;:::i;45588:478::-;44257:8;;44238:15;:27;;44230:69;;;;-1:-1:-1;;;44230:69:0;;13149:2:1;44230:69:0;;;13131:21:1;13188:2;13168:18;;;13161:30;13227:31;13207:18;;;13200:59;13276:18;;44230:69:0;12947:353:1;44230:69:0;45657:19:::1;45679:13;37753:10:::0;:17;;37665:113;45679:13:::1;45657:35;;45726:9;;45711:11;:24;;45703:46;;;::::0;-1:-1:-1;;;45703:46:0;;16680:2:1;45703:46:0::1;::::0;::::1;16662:21:1::0;16719:1;16699:18;;;16692:29;-1:-1:-1;;;16737:18:1;;;16730:39;16786:18;;45703:46:0::1;16478:332:1::0;45703:46:0::1;45792:17;;45782:6;:27;;45760:113;;;;-1:-1:-1::0;;;45760:113:0::1;;;;;;;:::i;:::-;45913:6;45905:5;;:14;;;;:::i;:::-;45892:9;:27;45884:62;;;::::0;-1:-1:-1;;;45884:62:0;;10786:2:1;45884:62:0::1;::::0;::::1;10768:21:1::0;10825:2;10805:18;;;10798:30;-1:-1:-1;;;10844:18:1;;;10837:52;10906:18;;45884:62:0::1;10584:346:1::0;45884:62:0::1;45962:9;45957:102;45981:6;45977:1;:10;45957:102;;;46009:38;46019:10;46031:15;46045:1:::0;46031:11;:15:::1;:::i;46009:38::-;45989:3:::0;::::1;::::0;::::1;:::i;:::-;;;;45957:102;;26769:295:::0;-1:-1:-1;;;;;26872:24:0;;7404:10;26872:24;;26864:62;;;;-1:-1:-1;;;26864:62:0;;9658:2:1;26864:62:0;;;9640:21:1;9697:2;9677:18;;;9670:30;9736:27;9716:18;;;9709:55;9781:18;;26864:62:0;9456:349:1;26864:62:0;7404:10;26939:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26939:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26939:53:0;;;;;;;;;;27008:48;;6833:41:1;;;26939:42:0;;7404:10;27008:48;;6806:18:1;27008:48:0;;;;;;;26769:295;;:::o;28032:328::-;28207:41;7404:10;28240:7;28207:18;:41::i;:::-;28199:103;;;;-1:-1:-1;;;28199:103:0;;;;;;;:::i;:::-;28313:39;28327:4;28333:2;28337:7;28346:5;28313:13;:39::i;44501:240::-;44580:9;44575:159;44599:10;:17;44595:1;:21;44575:159;;;44638:19;44660:10;44671:1;44660:13;;;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;44688:27:0;;;;;:14;:27;;;;;;:34;;-1:-1:-1;;44688:34:0;44718:4;44688:34;;;-1:-1:-1;44618:3:0;;;;:::i;:::-;;;;44575:159;;25261:334;29935:4;29959:16;;;:7;:16;;;;;;25334:13;;-1:-1:-1;;;;;29959:16:0;25360:76;;;;-1:-1:-1;;;25360:76:0;;14691:2:1;25360:76:0;;;14673:21:1;14730:2;14710:18;;;14703:30;14769:34;14749:18;;;14742:62;-1:-1:-1;;;14820:18:1;;;14813:45;14875:19;;25360:76:0;14489:411:1;25360:76:0;25449:21;25473:10;:8;:10::i;:::-;25449:34;;25525:1;25507:7;25501:21;:25;:86;;;;;;;;;;;;;;;;;25553:7;25562:18;:7;:16;:18::i;:::-;25536:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25501:86;25494:93;25261:334;-1:-1:-1;;;25261:334:0:o;9436:192::-;8582:7;8609:6;-1:-1:-1;;;;;8609:6:0;7404:10;8756:23;8748:68;;;;-1:-1:-1;;;8748:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9525:22:0;::::1;9517:73;;;::::0;-1:-1:-1;;;9517:73:0;;8142:2:1;9517:73:0::1;::::0;::::1;8124:21:1::0;8181:2;8161:18;;;8154:30;8220:34;8200:18;;;8193:62;-1:-1:-1;;;8271:18:1;;;8264:36;8317:19;;9517:73:0::1;7940:402:1::0;9517:73:0::1;9601:19;9611:8;9601:9;:19::i;23972:305::-:0;24074:4;-1:-1:-1;;;;;;24111:40:0;;-1:-1:-1;;;24111:40:0;;:105;;-1:-1:-1;;;;;;;24168:48:0;;-1:-1:-1;;;24168:48:0;24111:105;:158;;;-1:-1:-1;;;;;;;;;;10723:40:0;;;24233:36;10614:157;33852:174;33927:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33927:29:0;-1:-1:-1;;;;;33927:29:0;;;;;;;;:24;;33981:23;33927:24;33981:14;:23::i;:::-;-1:-1:-1;;;;;33972:46:0;;;;;;;;;;;33852:174;;:::o;30164:348::-;30257:4;29959:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29959:16:0;30274:73;;;;-1:-1:-1;;;30274:73:0;;10012:2:1;30274:73:0;;;9994:21:1;10051:2;10031:18;;;10024:30;10090:34;10070:18;;;10063:62;-1:-1:-1;;;10141:18:1;;;10134:42;10193:19;;30274:73:0;9810:408:1;30274:73:0;30358:13;30374:23;30389:7;30374:14;:23::i;:::-;30358:39;;30427:5;-1:-1:-1;;;;;30416:16:0;:7;-1:-1:-1;;;;;30416:16:0;;:51;;;;30460:7;-1:-1:-1;;;;;30436:31:0;:20;30448:7;30436:11;:20::i;:::-;-1:-1:-1;;;;;30436:31:0;;30416:51;:87;;;-1:-1:-1;;;;;;27256:25:0;;;27232:4;27256:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30471:32;30408:96;30164:348;-1:-1:-1;;;;30164:348:0:o;33156:578::-;33315:4;-1:-1:-1;;;;;33288:31:0;:23;33303:7;33288:14;:23::i;:::-;-1:-1:-1;;;;;33288:31:0;;33280:85;;;;-1:-1:-1;;;33280:85:0;;14281:2:1;33280:85:0;;;14263:21:1;14320:2;14300:18;;;14293:30;14359:34;14339:18;;;14332:62;-1:-1:-1;;;14410:18:1;;;14403:39;14459:19;;33280:85:0;14079:405:1;33280:85:0;-1:-1:-1;;;;;33384:16:0;;33376:65;;;;-1:-1:-1;;;33376:65:0;;9253:2:1;33376:65:0;;;9235:21:1;9292:2;9272:18;;;9265:30;9331:34;9311:18;;;9304:62;-1:-1:-1;;;9382:18:1;;;9375:34;9426:19;;33376:65:0;9051:400:1;33376:65:0;33454:39;33475:4;33481:2;33485:7;33454:20;:39::i;:::-;33558:29;33575:1;33579:7;33558:8;:29::i;:::-;-1:-1:-1;;;;;33600:15:0;;;;;;:9;:15;;;;;:20;;33619:1;;33600:15;:20;;33619:1;;33600:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33631:13:0;;;;;;:9;:13;;;;;:18;;33648:1;;33631:13;:18;;33648:1;;33631:18;:::i;:::-;;;;-1:-1:-1;;33660:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33660:21:0;-1:-1:-1;;;;;33660:21:0;;;;;;;;;33699:27;;33660:16;;33699:27;;;;;;;33156:578;;;:::o;30854:110::-;30930:26;30940:2;30944:7;30930:26;;;;;;;;;;;;:9;:26::i;9636:173::-;9692:16;9711:6;;-1:-1:-1;;;;;9728:17:0;;;-1:-1:-1;;;;;;9728:17:0;;;;;;9761:40;;9711:6;;;;;;;9761:40;;9692:16;9761:40;9681:128;9636:173;:::o;47050:180::-;47124:12;47142:8;-1:-1:-1;;;;;47142:13:0;47163:7;47142:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47123:52;;;47194:7;47186:36;;;;-1:-1:-1;;;47186:36:0;;15917:2:1;47186:36:0;;;15899:21:1;15956:2;15936:18;;;15929:30;-1:-1:-1;;;15975:18:1;;;15968:46;16031:18;;47186:36:0;15715:340:1;29242:315:0;29399:28;29409:4;29415:2;29419:7;29399:9;:28::i;:::-;29446:48;29469:4;29475:2;29479:7;29488:5;29446:22;:48::i;:::-;29438:111;;;;-1:-1:-1;;;29438:111:0;;;;;;;:::i;47341:113::-;47401:13;47434:12;47427:19;;;;;:::i;11089:723::-;11145:13;11366:10;11362:53;;-1:-1:-1;;11393:10:0;;;;;;;;;;;;-1:-1:-1;;;11393:10:0;;;;;11089:723::o;11362:53::-;11440:5;11425:12;11481:78;11488:9;;11481:78;;11514:8;;;;:::i;:::-;;-1:-1:-1;11537:10:0;;-1:-1:-1;11545:2:0;11537:10;;:::i;:::-;;;11481:78;;;11569:19;11601:6;11591:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11591:17:0;;11569:39;;11619:154;11626:10;;11619:154;;11653:11;11663:1;11653:11;;:::i;:::-;;-1:-1:-1;11722:10:0;11730:2;11722:5;:10;:::i;:::-;11709:24;;:2;:24;:::i;:::-;11696:39;;11679:6;11686;11679:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;11679:56:0;;;;;;;;-1:-1:-1;11750:11:0;11759:2;11750:11;;:::i;:::-;;;11619:154;;38701:589;-1:-1:-1;;;;;38907:18:0;;38903:187;;38942:40;38974:7;40117:10;:17;;40090:24;;;;:15;:24;;;;;:44;;;40145:24;;;;;;;;;;;;40013:164;38942:40;38903:187;;;39012:2;-1:-1:-1;;;;;39004:10:0;:4;-1:-1:-1;;;;;39004:10:0;;39000:90;;39031:47;39064:4;39070:7;39031:32;:47::i;:::-;-1:-1:-1;;;;;39104:16:0;;39100:183;;39137:45;39174:7;39137:36;:45::i;39100:183::-;39210:4;-1:-1:-1;;;;;39204:10:0;:2;-1:-1:-1;;;;;39204:10:0;;39200:83;;39231:40;39259:2;39263:7;39231:27;:40::i;31191:321::-;31321:18;31327:2;31331:7;31321:5;:18::i;:::-;31372:54;31403:1;31407:2;31411:7;31420:5;31372:22;:54::i;:::-;31350:154;;;;-1:-1:-1;;;31350:154:0;;;;;;;:::i;34591:799::-;34746:4;-1:-1:-1;;;;;34767:13:0;;13937:20;13985:8;34763:620;;34803:72;;-1:-1:-1;;;34803:72:0;;-1:-1:-1;;;;;34803:36:0;;;;;:72;;7404:10;;34854:4;;34860:7;;34869:5;;34803:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34803:72:0;;;;;;;;-1:-1:-1;;34803:72:0;;;;;;;;;;;;:::i;:::-;;;34799:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35045:13:0;;35041:272;;35088:60;;-1:-1:-1;;;35088:60:0;;;;;;;:::i;35041:272::-;35263:6;35257:13;35248:6;35244:2;35240:15;35233:38;34799:529;-1:-1:-1;;;;;;34926:51:0;-1:-1:-1;;;34926:51:0;;-1:-1:-1;34919:58:0;;34763:620;-1:-1:-1;35367:4:0;34591:799;;;;;;:::o;40804:988::-;41070:22;41120:1;41095:22;41112:4;41095:16;:22::i;:::-;:26;;;;:::i;:::-;41132:18;41153:26;;;:17;:26;;;;;;41070:51;;-1:-1:-1;41286:28:0;;;41282:328;;-1:-1:-1;;;;;41353:18:0;;41331:19;41353:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41404:30;;;;;;:44;;;41521:30;;:17;:30;;;;;:43;;;41282:328;-1:-1:-1;41706:26:0;;;;:17;:26;;;;;;;;41699:33;;;-1:-1:-1;;;;;41750:18:0;;;;;:12;:18;;;;;:34;;;;;;;41743:41;40804:988::o;42087:1079::-;42365:10;:17;42340:22;;42365:21;;42385:1;;42365:21;:::i;:::-;42397:18;42418:24;;;:15;:24;;;;;;42791:10;:26;;42340:46;;-1:-1:-1;42418:24:0;;42340:46;;42791:26;;;;;;:::i;:::-;;;;;;;;;42769:48;;42855:11;42830:10;42841;42830:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42935:28;;;:15;:28;;;;;;;:41;;;43107:24;;;;;43100:31;43142:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;42158:1008;;;42087:1079;:::o;39591:221::-;39676:14;39693:20;39710:2;39693:16;:20::i;:::-;-1:-1:-1;;;;;39724:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39769:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39591:221:0:o;31848:382::-;-1:-1:-1;;;;;31928:16:0;;31920:61;;;;-1:-1:-1;;;31920:61:0;;12788:2:1;31920:61:0;;;12770:21:1;;;12807:18;;;12800:30;12866:34;12846:18;;;12839:62;12918:18;;31920:61:0;12586:356:1;31920:61:0;29935:4;29959:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29959:16:0;:30;31992:58;;;;-1:-1:-1;;;31992:58:0;;8896:2:1;31992:58:0;;;8878:21:1;8935:2;8915:18;;;8908:30;8974;8954:18;;;8947:58;9022:18;;31992:58:0;8694:352:1;31992:58:0;32063:45;32092:1;32096:2;32100:7;32063:20;:45::i;:::-;-1:-1:-1;;;;;32121:13:0;;;;;;:9;:13;;;;;:18;;32138:1;;32121:13;:18;;32138:1;;32121:18;:::i;:::-;;;;-1:-1:-1;;32150:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32150:21:0;-1:-1:-1;;;;;32150:21:0;;;;;;;;32189:33;;32150:16;;;32189:33;;32150:16;;32189:33;31848:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:1:o;2674:963::-;2758:6;2789:2;2832;2820:9;2811:7;2807:23;2803:32;2800:52;;;2848:1;2845;2838:12;2800:52;2888:9;2875:23;2917:18;2958:2;2950:6;2947:14;2944:34;;;2974:1;2971;2964:12;2944:34;3012:6;3001:9;2997:22;2987:32;;3057:7;3050:4;3046:2;3042:13;3038:27;3028:55;;3079:1;3076;3069:12;3028:55;3115:2;3102:16;3137:2;3133;3130:10;3127:36;;;3143:18;;:::i;:::-;3189:2;3186:1;3182:10;3172:20;;3212:28;3236:2;3232;3228:11;3212:28;:::i;:::-;3274:15;;;3305:12;;;;3337:11;;;3367;;;3363:20;;3360:33;-1:-1:-1;3357:53:1;;;3406:1;3403;3396:12;3357:53;3428:1;3419:10;;3438:169;3452:2;3449:1;3446:9;3438:169;;;3509:23;3528:3;3509:23;:::i;:::-;3497:36;;3470:1;3463:9;;;;;3553:12;;;;3585;;3438:169;;;-1:-1:-1;3626:5:1;2674:963;-1:-1:-1;;;;;;;;2674:963:1:o;3642:245::-;3700:6;3753:2;3741:9;3732:7;3728:23;3724:32;3721:52;;;3769:1;3766;3759:12;3721:52;3808:9;3795:23;3827:30;3851:5;3827:30;:::i;3892:249::-;3961:6;4014:2;4002:9;3993:7;3989:23;3985:32;3982:52;;;4030:1;4027;4020:12;3982:52;4062:9;4056:16;4081:30;4105:5;4081:30;:::i;4146:450::-;4215:6;4268:2;4256:9;4247:7;4243:23;4239:32;4236:52;;;4284:1;4281;4274:12;4236:52;4324:9;4311:23;4357:18;4349:6;4346:30;4343:50;;;4389:1;4386;4379:12;4343:50;4412:22;;4465:4;4457:13;;4453:27;-1:-1:-1;4443:55:1;;4494:1;4491;4484:12;4443:55;4517:73;4582:7;4577:2;4564:16;4559:2;4555;4551:11;4517:73;:::i;4601:180::-;4660:6;4713:2;4701:9;4692:7;4688:23;4684:32;4681:52;;;4729:1;4726;4719:12;4681:52;-1:-1:-1;4752:23:1;;4601:180;-1:-1:-1;4601:180:1:o;4786:254::-;4854:6;4862;4915:2;4903:9;4894:7;4890:23;4886:32;4883:52;;;4931:1;4928;4921:12;4883:52;4967:9;4954:23;4944:33;;4996:38;5030:2;5019:9;5015:18;4996:38;:::i;5045:257::-;5086:3;5124:5;5118:12;5151:6;5146:3;5139:19;5167:63;5223:6;5216:4;5211:3;5207:14;5200:4;5193:5;5189:16;5167:63;:::i;:::-;5284:2;5263:15;-1:-1:-1;;5259:29:1;5250:39;;;;5291:4;5246:50;;5045:257;-1:-1:-1;;5045:257:1:o;5307:470::-;5486:3;5524:6;5518:13;5540:53;5586:6;5581:3;5574:4;5566:6;5562:17;5540:53;:::i;:::-;5656:13;;5615:16;;;;5678:57;5656:13;5615:16;5712:4;5700:17;;5678:57;:::i;:::-;5751:20;;5307:470;-1:-1:-1;;;;5307:470:1:o;6200:488::-;-1:-1:-1;;;;;6469:15:1;;;6451:34;;6521:15;;6516:2;6501:18;;6494:43;6568:2;6553:18;;6546:34;;;6616:3;6611:2;6596:18;;6589:31;;;6394:4;;6637:45;;6662:19;;6654:6;6637:45;:::i;:::-;6629:53;6200:488;-1:-1:-1;;;;;;6200:488:1:o;6885:219::-;7034:2;7023:9;7016:21;6997:4;7054:44;7094:2;7083:9;7079:18;7071:6;7054:44;:::i;7521:414::-;7723:2;7705:21;;;7762:2;7742:18;;;7735:30;7801:34;7796:2;7781:18;;7774:62;-1:-1:-1;;;7867:2:1;7852:18;;7845:48;7925:3;7910:19;;7521:414::o;10935:400::-;11137:2;11119:21;;;11176:2;11156:18;;;11149:30;11215:34;11210:2;11195:18;;11188:62;-1:-1:-1;;;11281:2:1;11266:18;;11259:34;11325:3;11310:19;;10935:400::o;13718:356::-;13920:2;13902:21;;;13939:18;;;13932:30;13998:34;13993:2;13978:18;;13971:62;14065:2;14050:18;;13718:356::o;16060:413::-;16262:2;16244:21;;;16301:2;16281:18;;;16274:30;16340:34;16335:2;16320:18;;16313:62;-1:-1:-1;;;16406:2:1;16391:18;;16384:47;16463:3;16448:19;;16060:413::o;17747:275::-;17818:2;17812:9;17883:2;17864:13;;-1:-1:-1;;17860:27:1;17848:40;;17918:18;17903:34;;17939:22;;;17900:62;17897:88;;;17965:18;;:::i;:::-;18001:2;17994:22;17747:275;;-1:-1:-1;17747:275:1:o;18027:128::-;18067:3;18098:1;18094:6;18091:1;18088:13;18085:39;;;18104:18;;:::i;:::-;-1:-1:-1;18140:9:1;;18027:128::o;18160:120::-;18200:1;18226;18216:35;;18231:18;;:::i;:::-;-1:-1:-1;18265:9:1;;18160:120::o;18285:168::-;18325:7;18391:1;18387;18383:6;18379:14;18376:1;18373:21;18368:1;18361:9;18354:17;18350:45;18347:71;;;18398:18;;:::i;:::-;-1:-1:-1;18438:9:1;;18285:168::o;18458:125::-;18498:4;18526:1;18523;18520:8;18517:34;;;18531:18;;:::i;:::-;-1:-1:-1;18568:9:1;;18458:125::o;18588:258::-;18660:1;18670:113;18684:6;18681:1;18678:13;18670:113;;;18760:11;;;18754:18;18741:11;;;18734:39;18706:2;18699:10;18670:113;;;18801:6;18798:1;18795:13;18792:48;;;-1:-1:-1;;18836:1:1;18818:16;;18811:27;18588:258::o;18851:380::-;18930:1;18926:12;;;;18973;;;18994:61;;19048:4;19040:6;19036:17;19026:27;;18994:61;19101:2;19093:6;19090:14;19070:18;19067:38;19064:161;;;19147:10;19142:3;19138:20;19135:1;19128:31;19182:4;19179:1;19172:15;19210:4;19207:1;19200:15;19064:161;;18851:380;;;:::o;19236:135::-;19275:3;-1:-1:-1;;19296:17:1;;19293:43;;;19316:18;;:::i;:::-;-1:-1:-1;19363:1:1;19352:13;;19236:135::o;19376:112::-;19408:1;19434;19424:35;;19439:18;;:::i;:::-;-1:-1:-1;19473:9:1;;19376:112::o;19493:127::-;19554:10;19549:3;19545:20;19542:1;19535:31;19585:4;19582:1;19575:15;19609:4;19606:1;19599:15;19625:127;19686:10;19681:3;19677:20;19674:1;19667:31;19717:4;19714:1;19707:15;19741:4;19738:1;19731:15;19757:127;19818:10;19813:3;19809:20;19806:1;19799:31;19849:4;19846:1;19839:15;19873:4;19870:1;19863:15;19889:127;19950:10;19945:3;19941:20;19938:1;19931:31;19981:4;19978:1;19971:15;20005:4;20002:1;19995:15;20021:127;20082:10;20077:3;20073:20;20070:1;20063:31;20113:4;20110:1;20103:15;20137:4;20134:1;20127:15;20153:131;-1:-1:-1;;;;;;20227:32:1;;20217:43;;20207:71;;20274:1;20271;20264:12

Swarm Source

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