ETH Price: $3,063.43 (+1.96%)
Gas: 2 Gwei

Token

AuthorMe (AUTHME)
 

Overview

Max Total Supply

17 AUTHME

Holders

8

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
Gener8tive: Deployer
Balance
6 AUTHME
0xe8d9ad4bfcd008cd7c2cad26c0f13b2bfcf5d588
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:
AuthMeERC721

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 2 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @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 3 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @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 4 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 5 of 14 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @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 6 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @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 7 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @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 8 of 14 : Address.sol
// SPDX-License-Identifier: MIT

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 9 of 14 : Context.sol
// SPDX-License-Identifier: MIT

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 10 of 14 : Strings.sol
// SPDX-License-Identifier: MIT

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 11 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 12 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 13 of 14 : AuthMeERC721.sol
/**
* @title Authme.xyz contract
* @dev Extends ERC721Enumerable Non-Fungible Token Standard
*/

/**
*  SPDX-License-Identifier: MIT
*/

pragma solidity 0.8.0;

/*
   _____          __  .__                    _____                                     
  /  _  \  __ ___/  |_|  |__   ___________  /     \   ____      ___  ______.__.________
 /  /_\  \|  |  \   __\  |  \ /  _ \_  __ \/  \ /  \_/ __ \     \  \/  <   |  |\___   /
/    |    \  |  /|  | |   Y  (  <_> )  | \/    Y    \  ___/      >    < \___  | /    / 
\____|__  /____/ |__| |___|  /\____/|__|  \____|__  /\___  > /\ /__/\_ \/ ____|/_____ \
        \/                 \/                     \/     \/  \/       \/\/           \/
*/

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./libraries/Base64.sol";

contract AuthMeERC721 is ERC721Enumerable, Ownable
{
    using Strings for uint256;

    // =======================================================
    // EVENTS
    // =======================================================
    event SaleStateChange(bool isActive);
    event TokenMinted(uint256 tokenIndex, address minter, string seed, string text);
    event MintPriceChanged(uint256 newPrice);

    // =======================================================
    // STATE
    // =======================================================
    bool public saleIsActive = false;

    // contract
    mapping (uint8 => string) public additionalContractInfo;

    // supply and reservation
    uint256 public constant MAX_SUPPLY = 7500;
    uint16 private numBurnedTokens = 0;

    // accounting
    uint256 public mintPrice = 0.025 ether;

    // story
    mapping (uint256 => string) public storySeeds;
    mapping (uint256 => string) public storyTexts;
    uint16 public minSeedLength = 30;
    uint16 public minStoryLength = 250;

    // =======================================================
    // CONSTRUCTOR
    // =======================================================
    constructor(string memory _name, string memory _symbol) ERC721(_name, _symbol) {}

    // =======================================================
    // ADMIN
    // =======================================================
    function setAdditionalContractInfo(uint8 infoIndex, string memory info)
        public
        onlyOwner
    {
        additionalContractInfo[infoIndex] = info;
    }

    function toggleSaleState()
        public
        onlyOwner
    {
        saleIsActive = !saleIsActive;
        emit SaleStateChange(saleIsActive);
    }

    function changeMinSeedLength(uint16 _newLength)
        public
        onlyOwner
    {
        minSeedLength = _newLength;
    }

    function changeMinStoryLength(uint16 _newLength)
        public
        onlyOwner
    {
        minStoryLength = _newLength;
    }

    function changeMintPrice(uint256 _newPrice)
        public
        onlyOwner
    {
        mintPrice = _newPrice;
        emit MintPriceChanged(_newPrice);
    }

    function ownerMint(string memory _seedText, string memory _storyText)
        public
        onlyOwner
    {
        require(totalSupply() < MAX_SUPPLY, "Internal mint would exceed max supply");
        require(bytes(_seedText).length >= minSeedLength, "Provided seed length to short");
        require(bytes(_storyText).length >= minStoryLength, "Provided story length to short");

        storySeeds[totalSupply() + numBurnedTokens] = _seedText;
        storyTexts[totalSupply() + numBurnedTokens] = _storyText;

        _safeMint(msg.sender, totalSupply() + numBurnedTokens);
        
        emit TokenMinted(totalSupply() - 1, msg.sender, _seedText, _storyText);
    }

    function ownerBurn(uint256 tokenId)
        public
        onlyOwner
    {
        numBurnedTokens++;
        _burn(tokenId);
    }

    function withdrawFunds(address payable recipient, uint256 amount)
        public
        onlyOwner
    {
        require(recipient != address(0), "Invalid recipient address");
        recipient.transfer(amount);
    }

    // =======================================================
    // PUBLIC API
    // =======================================================
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        string[5] memory svgParts;
        svgParts[0] = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 360 360" style="background-color: black;"><style>.textBase { color: white; font-family: serif; font-size: 13.5px; }</style><foreignObject x="5" y="5" width="350" height="350" class="textBase"><div xmlns="http://www.w3.org/1999/xhtml" ><strong>';
        svgParts[1] = storySeeds[tokenId];
        svgParts[2] = '</strong> ';
        svgParts[3] = storyTexts[tokenId];
        svgParts[4] = '</div></foreignObject></svg>';

        string memory output = string(abi.encodePacked(svgParts[0], svgParts[1], svgParts[2], svgParts[3], svgParts[4]));
        
        string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "Story #', tokenId.toString(), '", "description": "Generated using a state-of-the-art neural network, stored 100% on-chain. Minimum text formatting applied to facilitate re-use across systems - we encourage using this in any way you wish.", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '"}'))));
        output = string(abi.encodePacked('data:application/json;base64,', json));

        return output;
    }

    function getSupplyData()
        public
        view
        returns(
            uint256 _maxSupply,
            uint256 _totalSupply,
            uint256 _mintPrice,
            bool _saleIsActive,
            uint16 _minSeedLength,
            uint16 _minStoryLength,
            uint16 _numBurnedTokens)
    {
        _maxSupply = MAX_SUPPLY;
        _totalSupply = totalSupply();
        _mintPrice = mintPrice;
        _saleIsActive = saleIsActive;
        _minSeedLength = minSeedLength;
        _minStoryLength = minStoryLength;
        _numBurnedTokens = numBurnedTokens;
    }

    function getStory(uint256 tokenId)
        public
        view
        returns(string memory fullStory)
    {
        fullStory = string(abi.encodePacked(storySeeds[tokenId], " ",  storyTexts[tokenId]));
    }

    function mint(string memory _seedText, string memory _storyText)
        public
        payable
    {
        require(saleIsActive, "Sale is not active at the moment");
        require(totalSupply() < MAX_SUPPLY, "Purchase would exceed max supply");
        require(msg.value >= mintPrice, "Insufficient ether sent");
        require(bytes(_seedText).length >= minSeedLength, "Provided seed length to short");
        require(bytes(_storyText).length >= minStoryLength, "Provided story length to short");

        storySeeds[totalSupply() + numBurnedTokens] = _seedText;
        storyTexts[totalSupply() + numBurnedTokens] = _storyText;

        _safeMint(msg.sender, totalSupply() + numBurnedTokens);
        
        emit TokenMinted(totalSupply() - 1, msg.sender, _seedText, _storyText);
    }
}

File 14 of 14 : Base64.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.0;

/// @title Base64
/// @author Brecht Devos - <[email protected]>
/// @notice Provides a function for encoding some bytes in base64
library Base64 {
    string internal constant TABLE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';

    function encode(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return '';
        
        // load the table into memory
        string memory table = TABLE;

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((data.length + 2) / 3);

        // add some extra buffer at the end required for the writing
        string memory result = new string(encodedLen + 32);

        assembly {
            // set the actual output length
            mstore(result, encodedLen)
            
            // prepare the lookup table
            let tablePtr := add(table, 1)
            
            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))
            
            // result ptr, jump over length
            let resultPtr := add(result, 32)
            
            // run over the input, 3 bytes at a time
            for {} lt(dataPtr, endPtr) {}
            {
               dataPtr := add(dataPtr, 3)
               
               // read 3 bytes
               let input := mload(dataPtr)
               
               // write 4 characters
               mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(18, input), 0x3F)))))
               resultPtr := add(resultPtr, 1)
               mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(12, input), 0x3F)))))
               resultPtr := add(resultPtr, 1)
               mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr( 6, input), 0x3F)))))
               resultPtr := add(resultPtr, 1)
               mstore(resultPtr, shl(248, mload(add(tablePtr, and(        input,  0x3F)))))
               resultPtr := add(resultPtr, 1)
            }
            
            // padding with '='
            switch mod(mload(data), 3)
            case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) }
            case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) }
        }
        
        return result;
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "istanbul",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"MintPriceChanged","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":false,"internalType":"bool","name":"isActive","type":"bool"}],"name":"SaleStateChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenIndex","type":"uint256"},{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"string","name":"seed","type":"string"},{"indexed":false,"internalType":"string","name":"text","type":"string"}],"name":"TokenMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"additionalContractInfo","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_newLength","type":"uint16"}],"name":"changeMinSeedLength","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_newLength","type":"uint16"}],"name":"changeMinStoryLength","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changeMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getStory","outputs":[{"internalType":"string","name":"fullStory","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSupplyData","outputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"bool","name":"_saleIsActive","type":"bool"},{"internalType":"uint16","name":"_minSeedLength","type":"uint16"},{"internalType":"uint16","name":"_minStoryLength","type":"uint16"},{"internalType":"uint16","name":"_numBurnedTokens","type":"uint16"}],"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":"minSeedLength","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minStoryLength","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_seedText","type":"string"},{"internalType":"string","name":"_storyText","type":"string"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_seedText","type":"string"},{"internalType":"string","name":"_storyText","type":"string"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"infoIndex","type":"uint8"},{"internalType":"string","name":"info","type":"string"}],"name":"setAdditionalContractInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"storySeeds","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"storyTexts","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleState","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address payable","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60146101000a81548160ff0219169083151502179055506000600c60006101000a81548161ffff021916908361ffff1602179055506658d15e17628000600d55601e601060006101000a81548161ffff021916908361ffff16021790555060fa601060026101000a81548161ffff021916908361ffff1602179055503480156200009157600080fd5b5060405162005c8f38038062005c8f8339818101604052810190620000b7919062000305565b81818160009080519060200190620000d1929190620001e3565b508060019080519060200190620000ea929190620001e3565b5050506200010d620001016200011560201b60201c565b6200011d60201b60201c565b5050620004a9565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001f19062000415565b90600052602060002090601f01602090048101928262000215576000855562000261565b82601f106200023057805160ff191683800117855562000261565b8280016001018555821562000261579182015b828111156200026057825182559160200191906001019062000243565b5b50905062000270919062000274565b5090565b5b808211156200028f57600081600090555060010162000275565b5090565b6000620002aa620002a484620003ac565b62000378565b905082815260208101848484011115620002c357600080fd5b620002d0848285620003df565b509392505050565b600082601f830112620002ea57600080fd5b8151620002fc84826020860162000293565b91505092915050565b600080604083850312156200031957600080fd5b600083015167ffffffffffffffff8111156200033457600080fd5b6200034285828601620002d8565b925050602083015167ffffffffffffffff8111156200036057600080fd5b6200036e85828601620002d8565b9150509250929050565b6000604051905081810181811067ffffffffffffffff82111715620003a257620003a16200047a565b5b8060405250919050565b600067ffffffffffffffff821115620003ca57620003c96200047a565b5b601f19601f8301169050602081019050919050565b60005b83811015620003ff578082015181840152602081019050620003e2565b838111156200040f576000848401525b50505050565b600060028204905060018216806200042e57607f821691505b602082108114156200044557620004446200044b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6157d680620004b96000396000f3fe6080604052600436106102255760003560e01c80636817c76c1161012357806395d89b41116100ab578063d5f746391161006f578063d5f7463914610834578063daaeec8614610871578063e985e9c514610888578063eb8d2444146108c5578063f2fde38b146108f057610225565b806395d89b4114610751578063a22cb4651461077c578063b88d4fde146107a5578063c1075329146107ce578063c87b56dd146107f757610225565b806379774338116100f257806379774338146106735780638819fdd9146106a45780638aa0fdad146106e15780638da5cb5b146106fd57806390c5d37d1461072857610225565b80636817c76c146105cb5780636f67ebfa146105f657806370a082311461061f578063715018a61461065c57610225565b8063267f600d116101b15780633fd17366116101755780633fd17366146104d457806342842e0e146104fd5780634f6ccce714610526578063619d3b59146105635780636352211e1461058e57610225565b8063267f600d146103dd5780632f745c591461041a57806332cb6b0c1461045757806337e0080f146104825780633a4b3664146104ab57610225565b8063095ea7b3116101f8578063095ea7b31461030c5780630d98ccc514610335578063161341b71461035e57806318160ddd1461038957806323b872dd146103b457610225565b806301ffc9a71461022a57806303cf950f1461026757806306fdde03146102a4578063081812fc146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613e28565b610919565b60405161025e9190614cb9565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190613f0f565b610993565b60405161029b9190614cd4565b60405180910390f35b3480156102b057600080fd5b506102b96109e2565b6040516102c69190614cd4565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613f0f565b610a74565b6040516103039190614c52565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e9190613dec565b610af9565b005b34801561034157600080fd5b5061035c60048036038101906103579190613ee6565b610c11565b005b34801561036a57600080fd5b50610373610cad565b6040516103809190614ff6565b60405180910390f35b34801561039557600080fd5b5061039e610cc1565b6040516103ab9190615011565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d69190613ce6565b610cce565b005b3480156103e957600080fd5b5061040460048036038101906103ff9190613f0f565b610d2e565b6040516104119190614cd4565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190613dec565b610dce565b60405161044e9190615011565b60405180910390f35b34801561046357600080fd5b5061046c610e73565b6040516104799190615011565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a49190613ee6565b610e79565b005b3480156104b757600080fd5b506104d260048036038101906104cd9190613f0f565b610f15565b005b3480156104e057600080fd5b506104fb60048036038101906104f69190613f0f565b610fd8565b005b34801561050957600080fd5b50610524600480360381019061051f9190613ce6565b611095565b005b34801561053257600080fd5b5061054d60048036038101906105489190613f0f565b6110b5565b60405161055a9190615011565b60405180910390f35b34801561056f57600080fd5b5061057861114c565b6040516105859190614ff6565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b09190613f0f565b611160565b6040516105c29190614c52565b60405180910390f35b3480156105d757600080fd5b506105e0611212565b6040516105ed9190615011565b60405180910390f35b34801561060257600080fd5b5061061d60048036038101906106189190613f61565b611218565b005b34801561062b57600080fd5b5061064660048036038101906106419190613c45565b6112c6565b6040516106539190615011565b60405180910390f35b34801561066857600080fd5b5061067161137e565b005b34801561067f57600080fd5b50610688611406565b60405161069b979695949392919061507f565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c69190613f38565b611479565b6040516106d89190614cd4565b60405180910390f35b6106fb60048036038101906106f69190613e7a565b611519565b005b34801561070957600080fd5b506107126117c8565b60405161071f9190614c52565b60405180910390f35b34801561073457600080fd5b5061074f600480360381019061074a9190613e7a565b6117f2565b005b34801561075d57600080fd5b50610766611a89565b6040516107739190614cd4565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e9190613db0565b611b1b565b005b3480156107b157600080fd5b506107cc60048036038101906107c79190613d35565b611c9c565b005b3480156107da57600080fd5b506107f560048036038101906107f09190613c6e565b611cfe565b005b34801561080357600080fd5b5061081e60048036038101906108199190613f0f565b611e35565b60405161082b9190614cd4565b60405180910390f35b34801561084057600080fd5b5061085b60048036038101906108569190613f0f565b612316565b6040516108689190614cd4565b60405180910390f35b34801561087d57600080fd5b506108866123b6565b005b34801561089457600080fd5b506108af60048036038101906108aa9190613caa565b6124a4565b6040516108bc9190614cb9565b60405180910390f35b3480156108d157600080fd5b506108da612538565b6040516108e79190614cb9565b60405180910390f35b3480156108fc57600080fd5b5061091760048036038101906109129190613c45565b61254b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098c575061098b82612643565b5b9050919050565b6060600e6000838152602001908152602001600020600f60008481526020019081526020016000206040516020016109cc929190614bbc565b6040516020818303038152906040529050919050565b6060600080546109f1906153cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1d906153cf565b8015610a6a5780601f10610a3f57610100808354040283529160200191610a6a565b820191906000526020600020905b815481529060010190602001808311610a4d57829003601f168201915b5050505050905090565b6000610a7f82612725565b610abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab590614eb6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b0482611160565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6c90614f76565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b94612791565b73ffffffffffffffffffffffffffffffffffffffff161480610bc35750610bc281610bbd612791565b6124a4565b5b610c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf990614df6565b60405180910390fd5b610c0c8383612799565b505050565b610c19612791565b73ffffffffffffffffffffffffffffffffffffffff16610c376117c8565b73ffffffffffffffffffffffffffffffffffffffff1614610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8490614ef6565b60405180910390fd5b80601060026101000a81548161ffff021916908361ffff16021790555050565b601060009054906101000a900461ffff1681565b6000600880549050905090565b610cdf610cd9612791565b82612852565b610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1590614f96565b60405180910390fd5b610d29838383612930565b505050565b600f6020528060005260406000206000915090508054610d4d906153cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610d79906153cf565b8015610dc65780601f10610d9b57610100808354040283529160200191610dc6565b820191906000526020600020905b815481529060010190602001808311610da957829003601f168201915b505050505081565b6000610dd9836112c6565b8210610e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1190614cf6565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b611d4c81565b610e81612791565b73ffffffffffffffffffffffffffffffffffffffff16610e9f6117c8565b73ffffffffffffffffffffffffffffffffffffffff1614610ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eec90614ef6565b60405180910390fd5b80601060006101000a81548161ffff021916908361ffff16021790555050565b610f1d612791565b73ffffffffffffffffffffffffffffffffffffffff16610f3b6117c8565b73ffffffffffffffffffffffffffffffffffffffff1614610f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8890614ef6565b60405180910390fd5b600c600081819054906101000a900461ffff1680929190610fb190615401565b91906101000a81548161ffff021916908361ffff16021790555050610fd581612b8c565b50565b610fe0612791565b73ffffffffffffffffffffffffffffffffffffffff16610ffe6117c8565b73ffffffffffffffffffffffffffffffffffffffff1614611054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104b90614ef6565b60405180910390fd5b80600d819055507f25b1f9f6b6e61dfca5575239769e4450ed2e49176670837f5d1a82a9a2fc693f8160405161108a9190615011565b60405180910390a150565b6110b083838360405180602001604052806000815250611c9c565b505050565b60006110bf610cc1565b8210611100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f790614fb6565b60405180910390fd5b6008828154811061113a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601060029054906101000a900461ffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120090614e36565b60405180910390fd5b80915050919050565b600d5481565b611220612791565b73ffffffffffffffffffffffffffffffffffffffff1661123e6117c8565b73ffffffffffffffffffffffffffffffffffffffff1614611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b90614ef6565b60405180910390fd5b80600b60008460ff1660ff16815260200190815260200160002090805190602001906112c1929190613a03565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e90614e16565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611386612791565b73ffffffffffffffffffffffffffffffffffffffff166113a46117c8565b73ffffffffffffffffffffffffffffffffffffffff16146113fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f190614ef6565b60405180910390fd5b6114046000612c9d565b565b6000806000806000806000611d4c965061141e610cc1565b9550600d549450600a60149054906101000a900460ff169350601060009054906101000a900461ffff169250601060029054906101000a900461ffff169150600c60009054906101000a900461ffff16905090919293949596565b600b6020528060005260406000206000915090508054611498906153cf565b80601f01602080910402602001604051908101604052809291908181526020018280546114c4906153cf565b80156115115780601f106114e657610100808354040283529160200191611511565b820191906000526020600020905b8154815290600101906020018083116114f457829003601f168201915b505050505081565b600a60149054906101000a900460ff16611568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155f90614fd6565b60405180910390fd5b611d4c611573610cc1565b106115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa90614e56565b60405180910390fd5b600d543410156115f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ef90614f36565b60405180910390fd5b601060009054906101000a900461ffff1661ffff1682511015611650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164790614f56565b60405180910390fd5b601060029054906101000a900461ffff1661ffff16815110156116a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169f90614e76565b60405180910390fd5b81600e6000600c60009054906101000a900461ffff1661ffff166116ca610cc1565b6116d491906151d7565b815260200190815260200160002090805190602001906116f5929190613a03565b5080600f6000600c60009054906101000a900461ffff1661ffff16611718610cc1565b61172291906151d7565b81526020019081526020016000209080519060200190611743929190613a03565b5061177433600c60009054906101000a900461ffff1661ffff16611765610cc1565b61176f91906151d7565b612d63565b7f6ba4530d5d6ba1c70cd3ba604c4bb87dcdcd3a32b216cc8e9ee4083db04be513600161179f610cc1565b6117a991906152b8565b3384846040516117bc949392919061502c565b60405180910390a15050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117fa612791565b73ffffffffffffffffffffffffffffffffffffffff166118186117c8565b73ffffffffffffffffffffffffffffffffffffffff161461186e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186590614ef6565b60405180910390fd5b611d4c611879610cc1565b106118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b090614d76565b60405180910390fd5b601060009054906101000a900461ffff1661ffff1682511015611911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190890614f56565b60405180910390fd5b601060029054906101000a900461ffff1661ffff1681511015611969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196090614e76565b60405180910390fd5b81600e6000600c60009054906101000a900461ffff1661ffff1661198b610cc1565b61199591906151d7565b815260200190815260200160002090805190602001906119b6929190613a03565b5080600f6000600c60009054906101000a900461ffff1661ffff166119d9610cc1565b6119e391906151d7565b81526020019081526020016000209080519060200190611a04929190613a03565b50611a3533600c60009054906101000a900461ffff1661ffff16611a26610cc1565b611a3091906151d7565b612d63565b7f6ba4530d5d6ba1c70cd3ba604c4bb87dcdcd3a32b216cc8e9ee4083db04be5136001611a60610cc1565b611a6a91906152b8565b338484604051611a7d949392919061502c565b60405180910390a15050565b606060018054611a98906153cf565b80601f0160208091040260200160405190810160405280929190818152602001828054611ac4906153cf565b8015611b115780601f10611ae657610100808354040283529160200191611b11565b820191906000526020600020905b815481529060010190602001808311611af457829003601f168201915b5050505050905090565b611b23612791565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8890614db6565b60405180910390fd5b8060056000611b9e612791565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c4b612791565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c909190614cb9565b60405180910390a35050565b611cad611ca7612791565b83612852565b611cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce390614f96565b60405180910390fd5b611cf884848484612d81565b50505050565b611d06612791565b73ffffffffffffffffffffffffffffffffffffffff16611d246117c8565b73ffffffffffffffffffffffffffffffffffffffff1614611d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7190614ef6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de190614ed6565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611e30573d6000803e3d6000fd5b505050565b6060611e3f613a89565b60405180610180016040528061014c815260200161565561014c913981600060058110611e95577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250600e60008481526020019081526020016000208054611ebb906153cf565b80601f0160208091040260200160405190810160405280929190818152602001828054611ee7906153cf565b8015611f345780601f10611f0957610100808354040283529160200191611f34565b820191906000526020600020905b815481529060010190602001808311611f1757829003601f168201915b505050505081600160058110611f73577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060400160405280600a81526020017f3c2f7374726f6e673e200000000000000000000000000000000000000000000081525081600260058110611feb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250600f60008481526020019081526020016000208054612011906153cf565b80601f016020809104026020016040519081016040528092919081815260200182805461203d906153cf565b801561208a5780601f1061205f5761010080835404028352916020019161208a565b820191906000526020600020905b81548152906001019060200180831161206d57829003601f168201915b5050505050816003600581106120c9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060400160405280601c81526020017f3c2f6469763e3c2f666f726569676e4f626a6563743e3c2f7376673e0000000081525081600460058110612141577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250600081600060058110612185577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151826001600581106121c4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015183600260058110612203577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015184600360058110612242577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015185600460058110612281577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015160405160200161229a959493929190614b71565b604051602081830303815290604052905060006122e76122b986612ddd565b6122c284612f8a565b6040516020016122d3929190614c0d565b604051602081830303815290604052612f8a565b9050806040516020016122fa9190614beb565b6040516020818303038152906040529150819350505050919050565b600e6020528060005260406000206000915090508054612335906153cf565b80601f0160208091040260200160405190810160405280929190818152602001828054612361906153cf565b80156123ae5780601f10612383576101008083540402835291602001916123ae565b820191906000526020600020905b81548152906001019060200180831161239157829003601f168201915b505050505081565b6123be612791565b73ffffffffffffffffffffffffffffffffffffffff166123dc6117c8565b73ffffffffffffffffffffffffffffffffffffffff1614612432576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242990614ef6565b60405180910390fd5b600a60149054906101000a900460ff1615600a60146101000a81548160ff0219169083151502179055507fcb01a83ed3bf63b2cb3676905d1c98debc05cc4f85a6d40ea441b3d0656fd0b7600a60149054906101000a900460ff1660405161249a9190614cb9565b60405180910390a1565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60149054906101000a900460ff1681565b612553612791565b73ffffffffffffffffffffffffffffffffffffffff166125716117c8565b73ffffffffffffffffffffffffffffffffffffffff16146125c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125be90614ef6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262e90614d36565b60405180910390fd5b61264081612c9d565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061270e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061271e575061271d82613135565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661280c83611160565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061285d82612725565b61289c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289390614dd6565b60405180910390fd5b60006128a783611160565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061291657508373ffffffffffffffffffffffffffffffffffffffff166128fe84610a74565b73ffffffffffffffffffffffffffffffffffffffff16145b80612927575061292681856124a4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661295082611160565b73ffffffffffffffffffffffffffffffffffffffff16146129a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299d90614f16565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0d90614d96565b60405180910390fd5b612a2183838361319f565b612a2c600082612799565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a7c91906152b8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ad391906151d7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612b9782611160565b9050612ba58160008461319f565b612bb0600083612799565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c0091906152b8565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d7d8282604051806020016040528060008152506132b3565b5050565b612d8c848484612930565b612d988484848461330e565b612dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dce90614d16565b60405180910390fd5b50505050565b60606000821415612e25576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f85565b600082905060005b60008214612e57578080612e409061542c565b915050600a82612e50919061522d565b9150612e2d565b60008167ffffffffffffffff811115612e99577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612ecb5781602001600182028036833780820191505090505b5090505b60008514612f7e57600182612ee491906152b8565b9150600a85612ef39190615475565b6030612eff91906151d7565b60f81b818381518110612f3b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f77919061522d565b9450612ecf565b8093505050505b919050565b6060600082511415612fad57604051806020016040528060008152509050613130565b60006040518060600160405280604081526020016156156040913990506000600360028551612fdc91906151d7565b612fe6919061522d565b6004612ff2919061525e565b9050600060208261300391906151d7565b67ffffffffffffffff811115613042577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130745781602001600182028036833780820191505090505b509050818152600183018586518101602084015b818310156130ef576003830192508251603f8160121c1685015160f81b8252600182019150603f81600c1c1685015160f81b8252600182019150603f8160061c1685015160f81b8252600182019150603f811685015160f81b825260018201915050613088565b600389510660018114613109576002811461311957613124565b613d3d60f01b6002830352613124565b603d60f81b60018303525b50505050508093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6131aa8383836134a5565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131ed576131e8816134aa565b61322c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461322b5761322a83826134f3565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561326f5761326a81613660565b6132ae565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146132ad576132ac82826137a3565b5b5b505050565b6132bd8383613822565b6132ca600084848461330e565b613309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330090614d16565b60405180910390fd5b505050565b600061332f8473ffffffffffffffffffffffffffffffffffffffff166139f0565b15613498578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613358612791565b8786866040518563ffffffff1660e01b815260040161337a9493929190614c6d565b602060405180830381600087803b15801561339457600080fd5b505af19250505080156133c557506040513d601f19601f820116820180604052508101906133c29190613e51565b60015b613448573d80600081146133f5576040519150601f19603f3d011682016040523d82523d6000602084013e6133fa565b606091505b50600081511415613440576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343790614d16565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061349d565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613500846112c6565b61350a91906152b8565b90506000600760008481526020019081526020016000205490508181146135ef576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061367491906152b8565b90506000600960008481526020019081526020016000205490506000600883815481106136ca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613712577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613787577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006137ae836112c6565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388990614e96565b60405180910390fd5b61389b81612725565b156138db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138d290614d56565b60405180910390fd5b6138e76000838361319f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461393791906151d7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613a0f906153cf565b90600052602060002090601f016020900481019282613a315760008555613a78565b82601f10613a4a57805160ff1916838001178555613a78565b82800160010185558215613a78579182015b82811115613a77578251825591602001919060010190613a5c565b5b509050613a859190613ab0565b5090565b6040518060a001604052806005905b6060815260200190600190039081613a985790505090565b5b80821115613ac9576000816000905550600101613ab1565b5090565b6000613ae0613adb8461511f565b6150ee565b905082815260208101848484011115613af857600080fd5b613b0384828561538d565b509392505050565b6000613b1e613b198461514f565b6150ee565b905082815260208101848484011115613b3657600080fd5b613b4184828561538d565b509392505050565b600081359050613b5881615573565b92915050565b600081359050613b6d8161558a565b92915050565b600081359050613b82816155a1565b92915050565b600081359050613b97816155b8565b92915050565b600081519050613bac816155b8565b92915050565b600082601f830112613bc357600080fd5b8135613bd3848260208601613acd565b91505092915050565b600082601f830112613bed57600080fd5b8135613bfd848260208601613b0b565b91505092915050565b600081359050613c15816155cf565b92915050565b600081359050613c2a816155e6565b92915050565b600081359050613c3f816155fd565b92915050565b600060208284031215613c5757600080fd5b6000613c6584828501613b49565b91505092915050565b60008060408385031215613c8157600080fd5b6000613c8f85828601613b5e565b9250506020613ca085828601613c1b565b9150509250929050565b60008060408385031215613cbd57600080fd5b6000613ccb85828601613b49565b9250506020613cdc85828601613b49565b9150509250929050565b600080600060608486031215613cfb57600080fd5b6000613d0986828701613b49565b9350506020613d1a86828701613b49565b9250506040613d2b86828701613c1b565b9150509250925092565b60008060008060808587031215613d4b57600080fd5b6000613d5987828801613b49565b9450506020613d6a87828801613b49565b9350506040613d7b87828801613c1b565b925050606085013567ffffffffffffffff811115613d9857600080fd5b613da487828801613bb2565b91505092959194509250565b60008060408385031215613dc357600080fd5b6000613dd185828601613b49565b9250506020613de285828601613b73565b9150509250929050565b60008060408385031215613dff57600080fd5b6000613e0d85828601613b49565b9250506020613e1e85828601613c1b565b9150509250929050565b600060208284031215613e3a57600080fd5b6000613e4884828501613b88565b91505092915050565b600060208284031215613e6357600080fd5b6000613e7184828501613b9d565b91505092915050565b60008060408385031215613e8d57600080fd5b600083013567ffffffffffffffff811115613ea757600080fd5b613eb385828601613bdc565b925050602083013567ffffffffffffffff811115613ed057600080fd5b613edc85828601613bdc565b9150509250929050565b600060208284031215613ef857600080fd5b6000613f0684828501613c06565b91505092915050565b600060208284031215613f2157600080fd5b6000613f2f84828501613c1b565b91505092915050565b600060208284031215613f4a57600080fd5b6000613f5884828501613c30565b91505092915050565b60008060408385031215613f7457600080fd5b6000613f8285828601613c30565b925050602083013567ffffffffffffffff811115613f9f57600080fd5b613fab85828601613bdc565b9150509250929050565b613fbe816152ec565b82525050565b613fcd81615310565b82525050565b6000613fde82615194565b613fe881856151aa565b9350613ff881856020860161539c565b61400181615562565b840191505092915050565b60006140178261519f565b61402181856151bb565b935061403181856020860161539c565b61403a81615562565b840191505092915050565b60006140508261519f565b61405a81856151cc565b935061406a81856020860161539c565b80840191505092915050565b60008154614083816153cf565b61408d81866151cc565b945060018216600081146140a857600181146140b9576140ec565b60ff198316865281860193506140ec565b6140c28561517f565b60005b838110156140e4578154818901526001820191506020810190506140c5565b838801955050505b50505092915050565b6000614102602b836151bb565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006141686032836151bb565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006141ce6026836151bb565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614234601c836151bb565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006142746025836151bb565b91507f496e7465726e616c206d696e7420776f756c6420657863656564206d6178207360008301527f7570706c790000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142da6024836151bb565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006143406019836151bb565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614380602c836151bb565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006143e660f5836151cc565b91507f222c20226465736372697074696f6e223a202247656e6572617465642075736960008301527f6e6720612073746174652d6f662d7468652d617274206e657572616c206e657460208301527f776f726b2c2073746f7265642031303025206f6e2d636861696e2e204d696e6960408301527f6d756d207465787420666f726d617474696e67206170706c69656420746f206660608301527f6163696c69746174652072652d757365206163726f73732073797374656d732060808301527f2d20776520656e636f7572616765207573696e67207468697320696e20616e7960a08301527f2077617920796f7520776973682e222c2022696d616765223a2022646174613a60c08301527f696d6167652f7376672b786d6c3b6261736536342c000000000000000000000060e083015260f582019050919050565b60006145306001836151cc565b91507f20000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b60006145706038836151bb565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006145d6602a836151bb565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061463c6029836151bb565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006146a26020836151bb565b91507f507572636861736520776f756c6420657863656564206d617820737570706c796000830152602082019050919050565b60006146e26002836151cc565b91507f227d0000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b6000614722601e836151bb565b91507f50726f76696465642073746f7279206c656e67746820746f2073686f727400006000830152602082019050919050565b60006147626020836151bb565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006147a2602c836151bb565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006148086019836151bb565b91507f496e76616c696420726563697069656e742061646472657373000000000000006000830152602082019050919050565b60006148486020836151bb565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006148886029836151bb565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006148ee6017836151bb565b91507f496e73756666696369656e742065746865722073656e740000000000000000006000830152602082019050919050565b600061492e601d836151bb565b91507f50726f76696465642073656564206c656e67746820746f2073686f72740000006000830152602082019050919050565b600061496e6021836151bb565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006149d4601d836151cc565b91507f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000006000830152601d82019050919050565b6000614a146031836151bb565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614a7a602c836151bb565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614ae06011836151cc565b91507f7b226e616d65223a202253746f727920230000000000000000000000000000006000830152601182019050919050565b6000614b206020836151bb565b91507f53616c65206973206e6f742061637469766520617420746865206d6f6d656e746000830152602082019050919050565b614b5c81615348565b82525050565b614b6b81615376565b82525050565b6000614b7d8288614045565b9150614b898287614045565b9150614b958286614045565b9150614ba18285614045565b9150614bad8284614045565b91508190509695505050505050565b6000614bc88285614076565b9150614bd382614523565b9150614bdf8284614076565b91508190509392505050565b6000614bf6826149c7565b9150614c028284614045565b915081905092915050565b6000614c1882614ad3565b9150614c248285614045565b9150614c2f826143d9565b9150614c3b8284614045565b9150614c46826146d5565b91508190509392505050565b6000602082019050614c676000830184613fb5565b92915050565b6000608082019050614c826000830187613fb5565b614c8f6020830186613fb5565b614c9c6040830185614b62565b8181036060830152614cae8184613fd3565b905095945050505050565b6000602082019050614cce6000830184613fc4565b92915050565b60006020820190508181036000830152614cee818461400c565b905092915050565b60006020820190508181036000830152614d0f816140f5565b9050919050565b60006020820190508181036000830152614d2f8161415b565b9050919050565b60006020820190508181036000830152614d4f816141c1565b9050919050565b60006020820190508181036000830152614d6f81614227565b9050919050565b60006020820190508181036000830152614d8f81614267565b9050919050565b60006020820190508181036000830152614daf816142cd565b9050919050565b60006020820190508181036000830152614dcf81614333565b9050919050565b60006020820190508181036000830152614def81614373565b9050919050565b60006020820190508181036000830152614e0f81614563565b9050919050565b60006020820190508181036000830152614e2f816145c9565b9050919050565b60006020820190508181036000830152614e4f8161462f565b9050919050565b60006020820190508181036000830152614e6f81614695565b9050919050565b60006020820190508181036000830152614e8f81614715565b9050919050565b60006020820190508181036000830152614eaf81614755565b9050919050565b60006020820190508181036000830152614ecf81614795565b9050919050565b60006020820190508181036000830152614eef816147fb565b9050919050565b60006020820190508181036000830152614f0f8161483b565b9050919050565b60006020820190508181036000830152614f2f8161487b565b9050919050565b60006020820190508181036000830152614f4f816148e1565b9050919050565b60006020820190508181036000830152614f6f81614921565b9050919050565b60006020820190508181036000830152614f8f81614961565b9050919050565b60006020820190508181036000830152614faf81614a07565b9050919050565b60006020820190508181036000830152614fcf81614a6d565b9050919050565b60006020820190508181036000830152614fef81614b13565b9050919050565b600060208201905061500b6000830184614b53565b92915050565b60006020820190506150266000830184614b62565b92915050565b60006080820190506150416000830187614b62565b61504e6020830186613fb5565b8181036040830152615060818561400c565b90508181036060830152615074818461400c565b905095945050505050565b600060e082019050615094600083018a614b62565b6150a16020830189614b62565b6150ae6040830188614b62565b6150bb6060830187613fc4565b6150c86080830186614b53565b6150d560a0830185614b53565b6150e260c0830184614b53565b98975050505050505050565b6000604051905081810181811067ffffffffffffffff8211171561511557615114615533565b5b8060405250919050565b600067ffffffffffffffff82111561513a57615139615533565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561516a57615169615533565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006151e282615376565b91506151ed83615376565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615222576152216154a6565b5b828201905092915050565b600061523882615376565b915061524383615376565b925082615253576152526154d5565b5b828204905092915050565b600061526982615376565b915061527483615376565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156152ad576152ac6154a6565b5b828202905092915050565b60006152c382615376565b91506152ce83615376565b9250828210156152e1576152e06154a6565b5b828203905092915050565b60006152f782615356565b9050919050565b600061530982615356565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156153ba57808201518184015260208101905061539f565b838111156153c9576000848401525b50505050565b600060028204905060018216806153e757607f821691505b602082108114156153fb576153fa615504565b5b50919050565b600061540c82615348565b915061ffff821415615421576154206154a6565b5b600182019050919050565b600061543782615376565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561546a576154696154a6565b5b600182019050919050565b600061548082615376565b915061548b83615376565b92508261549b5761549a6154d5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61557c816152ec565b811461558757600080fd5b50565b615593816152fe565b811461559e57600080fd5b50565b6155aa81615310565b81146155b557600080fd5b50565b6155c18161531c565b81146155cc57600080fd5b50565b6155d881615348565b81146155e357600080fd5b50565b6155ef81615376565b81146155fa57600080fd5b50565b61560681615380565b811461561157600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d22302030203336302033363022207374796c653d226261636b67726f756e642d636f6c6f723a20626c61636b3b223e3c7374796c653e2e7465787442617365207b20636f6c6f723a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a2031332e3570783b207d3c2f7374796c653e3c666f726569676e4f626a65637420783d22352220793d2235222077696474683d2233353022206865696768743d223335302220636c6173733d227465787442617365223e3c64697620786d6c6e733d22687474703a2f2f7777772e77332e6f72672f313939392f7868746d6c22203e3c7374726f6e673ea264697066735822122025eb6724f6ed4cfd4020018be72263d5c7948bb2e46a493d0ce75720850a214064736f6c63430008000033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000008417574686f724d650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006415554484d450000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c80636817c76c1161012357806395d89b41116100ab578063d5f746391161006f578063d5f7463914610834578063daaeec8614610871578063e985e9c514610888578063eb8d2444146108c5578063f2fde38b146108f057610225565b806395d89b4114610751578063a22cb4651461077c578063b88d4fde146107a5578063c1075329146107ce578063c87b56dd146107f757610225565b806379774338116100f257806379774338146106735780638819fdd9146106a45780638aa0fdad146106e15780638da5cb5b146106fd57806390c5d37d1461072857610225565b80636817c76c146105cb5780636f67ebfa146105f657806370a082311461061f578063715018a61461065c57610225565b8063267f600d116101b15780633fd17366116101755780633fd17366146104d457806342842e0e146104fd5780634f6ccce714610526578063619d3b59146105635780636352211e1461058e57610225565b8063267f600d146103dd5780632f745c591461041a57806332cb6b0c1461045757806337e0080f146104825780633a4b3664146104ab57610225565b8063095ea7b3116101f8578063095ea7b31461030c5780630d98ccc514610335578063161341b71461035e57806318160ddd1461038957806323b872dd146103b457610225565b806301ffc9a71461022a57806303cf950f1461026757806306fdde03146102a4578063081812fc146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613e28565b610919565b60405161025e9190614cb9565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190613f0f565b610993565b60405161029b9190614cd4565b60405180910390f35b3480156102b057600080fd5b506102b96109e2565b6040516102c69190614cd4565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613f0f565b610a74565b6040516103039190614c52565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e9190613dec565b610af9565b005b34801561034157600080fd5b5061035c60048036038101906103579190613ee6565b610c11565b005b34801561036a57600080fd5b50610373610cad565b6040516103809190614ff6565b60405180910390f35b34801561039557600080fd5b5061039e610cc1565b6040516103ab9190615011565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d69190613ce6565b610cce565b005b3480156103e957600080fd5b5061040460048036038101906103ff9190613f0f565b610d2e565b6040516104119190614cd4565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190613dec565b610dce565b60405161044e9190615011565b60405180910390f35b34801561046357600080fd5b5061046c610e73565b6040516104799190615011565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a49190613ee6565b610e79565b005b3480156104b757600080fd5b506104d260048036038101906104cd9190613f0f565b610f15565b005b3480156104e057600080fd5b506104fb60048036038101906104f69190613f0f565b610fd8565b005b34801561050957600080fd5b50610524600480360381019061051f9190613ce6565b611095565b005b34801561053257600080fd5b5061054d60048036038101906105489190613f0f565b6110b5565b60405161055a9190615011565b60405180910390f35b34801561056f57600080fd5b5061057861114c565b6040516105859190614ff6565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b09190613f0f565b611160565b6040516105c29190614c52565b60405180910390f35b3480156105d757600080fd5b506105e0611212565b6040516105ed9190615011565b60405180910390f35b34801561060257600080fd5b5061061d60048036038101906106189190613f61565b611218565b005b34801561062b57600080fd5b5061064660048036038101906106419190613c45565b6112c6565b6040516106539190615011565b60405180910390f35b34801561066857600080fd5b5061067161137e565b005b34801561067f57600080fd5b50610688611406565b60405161069b979695949392919061507f565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c69190613f38565b611479565b6040516106d89190614cd4565b60405180910390f35b6106fb60048036038101906106f69190613e7a565b611519565b005b34801561070957600080fd5b506107126117c8565b60405161071f9190614c52565b60405180910390f35b34801561073457600080fd5b5061074f600480360381019061074a9190613e7a565b6117f2565b005b34801561075d57600080fd5b50610766611a89565b6040516107739190614cd4565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e9190613db0565b611b1b565b005b3480156107b157600080fd5b506107cc60048036038101906107c79190613d35565b611c9c565b005b3480156107da57600080fd5b506107f560048036038101906107f09190613c6e565b611cfe565b005b34801561080357600080fd5b5061081e60048036038101906108199190613f0f565b611e35565b60405161082b9190614cd4565b60405180910390f35b34801561084057600080fd5b5061085b60048036038101906108569190613f0f565b612316565b6040516108689190614cd4565b60405180910390f35b34801561087d57600080fd5b506108866123b6565b005b34801561089457600080fd5b506108af60048036038101906108aa9190613caa565b6124a4565b6040516108bc9190614cb9565b60405180910390f35b3480156108d157600080fd5b506108da612538565b6040516108e79190614cb9565b60405180910390f35b3480156108fc57600080fd5b5061091760048036038101906109129190613c45565b61254b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098c575061098b82612643565b5b9050919050565b6060600e6000838152602001908152602001600020600f60008481526020019081526020016000206040516020016109cc929190614bbc565b6040516020818303038152906040529050919050565b6060600080546109f1906153cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1d906153cf565b8015610a6a5780601f10610a3f57610100808354040283529160200191610a6a565b820191906000526020600020905b815481529060010190602001808311610a4d57829003601f168201915b5050505050905090565b6000610a7f82612725565b610abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab590614eb6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b0482611160565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6c90614f76565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b94612791565b73ffffffffffffffffffffffffffffffffffffffff161480610bc35750610bc281610bbd612791565b6124a4565b5b610c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf990614df6565b60405180910390fd5b610c0c8383612799565b505050565b610c19612791565b73ffffffffffffffffffffffffffffffffffffffff16610c376117c8565b73ffffffffffffffffffffffffffffffffffffffff1614610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8490614ef6565b60405180910390fd5b80601060026101000a81548161ffff021916908361ffff16021790555050565b601060009054906101000a900461ffff1681565b6000600880549050905090565b610cdf610cd9612791565b82612852565b610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1590614f96565b60405180910390fd5b610d29838383612930565b505050565b600f6020528060005260406000206000915090508054610d4d906153cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610d79906153cf565b8015610dc65780601f10610d9b57610100808354040283529160200191610dc6565b820191906000526020600020905b815481529060010190602001808311610da957829003601f168201915b505050505081565b6000610dd9836112c6565b8210610e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1190614cf6565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b611d4c81565b610e81612791565b73ffffffffffffffffffffffffffffffffffffffff16610e9f6117c8565b73ffffffffffffffffffffffffffffffffffffffff1614610ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eec90614ef6565b60405180910390fd5b80601060006101000a81548161ffff021916908361ffff16021790555050565b610f1d612791565b73ffffffffffffffffffffffffffffffffffffffff16610f3b6117c8565b73ffffffffffffffffffffffffffffffffffffffff1614610f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8890614ef6565b60405180910390fd5b600c600081819054906101000a900461ffff1680929190610fb190615401565b91906101000a81548161ffff021916908361ffff16021790555050610fd581612b8c565b50565b610fe0612791565b73ffffffffffffffffffffffffffffffffffffffff16610ffe6117c8565b73ffffffffffffffffffffffffffffffffffffffff1614611054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104b90614ef6565b60405180910390fd5b80600d819055507f25b1f9f6b6e61dfca5575239769e4450ed2e49176670837f5d1a82a9a2fc693f8160405161108a9190615011565b60405180910390a150565b6110b083838360405180602001604052806000815250611c9c565b505050565b60006110bf610cc1565b8210611100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f790614fb6565b60405180910390fd5b6008828154811061113a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601060029054906101000a900461ffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120090614e36565b60405180910390fd5b80915050919050565b600d5481565b611220612791565b73ffffffffffffffffffffffffffffffffffffffff1661123e6117c8565b73ffffffffffffffffffffffffffffffffffffffff1614611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b90614ef6565b60405180910390fd5b80600b60008460ff1660ff16815260200190815260200160002090805190602001906112c1929190613a03565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e90614e16565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611386612791565b73ffffffffffffffffffffffffffffffffffffffff166113a46117c8565b73ffffffffffffffffffffffffffffffffffffffff16146113fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f190614ef6565b60405180910390fd5b6114046000612c9d565b565b6000806000806000806000611d4c965061141e610cc1565b9550600d549450600a60149054906101000a900460ff169350601060009054906101000a900461ffff169250601060029054906101000a900461ffff169150600c60009054906101000a900461ffff16905090919293949596565b600b6020528060005260406000206000915090508054611498906153cf565b80601f01602080910402602001604051908101604052809291908181526020018280546114c4906153cf565b80156115115780601f106114e657610100808354040283529160200191611511565b820191906000526020600020905b8154815290600101906020018083116114f457829003601f168201915b505050505081565b600a60149054906101000a900460ff16611568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155f90614fd6565b60405180910390fd5b611d4c611573610cc1565b106115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa90614e56565b60405180910390fd5b600d543410156115f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ef90614f36565b60405180910390fd5b601060009054906101000a900461ffff1661ffff1682511015611650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164790614f56565b60405180910390fd5b601060029054906101000a900461ffff1661ffff16815110156116a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169f90614e76565b60405180910390fd5b81600e6000600c60009054906101000a900461ffff1661ffff166116ca610cc1565b6116d491906151d7565b815260200190815260200160002090805190602001906116f5929190613a03565b5080600f6000600c60009054906101000a900461ffff1661ffff16611718610cc1565b61172291906151d7565b81526020019081526020016000209080519060200190611743929190613a03565b5061177433600c60009054906101000a900461ffff1661ffff16611765610cc1565b61176f91906151d7565b612d63565b7f6ba4530d5d6ba1c70cd3ba604c4bb87dcdcd3a32b216cc8e9ee4083db04be513600161179f610cc1565b6117a991906152b8565b3384846040516117bc949392919061502c565b60405180910390a15050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117fa612791565b73ffffffffffffffffffffffffffffffffffffffff166118186117c8565b73ffffffffffffffffffffffffffffffffffffffff161461186e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186590614ef6565b60405180910390fd5b611d4c611879610cc1565b106118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b090614d76565b60405180910390fd5b601060009054906101000a900461ffff1661ffff1682511015611911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190890614f56565b60405180910390fd5b601060029054906101000a900461ffff1661ffff1681511015611969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196090614e76565b60405180910390fd5b81600e6000600c60009054906101000a900461ffff1661ffff1661198b610cc1565b61199591906151d7565b815260200190815260200160002090805190602001906119b6929190613a03565b5080600f6000600c60009054906101000a900461ffff1661ffff166119d9610cc1565b6119e391906151d7565b81526020019081526020016000209080519060200190611a04929190613a03565b50611a3533600c60009054906101000a900461ffff1661ffff16611a26610cc1565b611a3091906151d7565b612d63565b7f6ba4530d5d6ba1c70cd3ba604c4bb87dcdcd3a32b216cc8e9ee4083db04be5136001611a60610cc1565b611a6a91906152b8565b338484604051611a7d949392919061502c565b60405180910390a15050565b606060018054611a98906153cf565b80601f0160208091040260200160405190810160405280929190818152602001828054611ac4906153cf565b8015611b115780601f10611ae657610100808354040283529160200191611b11565b820191906000526020600020905b815481529060010190602001808311611af457829003601f168201915b5050505050905090565b611b23612791565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8890614db6565b60405180910390fd5b8060056000611b9e612791565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c4b612791565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c909190614cb9565b60405180910390a35050565b611cad611ca7612791565b83612852565b611cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce390614f96565b60405180910390fd5b611cf884848484612d81565b50505050565b611d06612791565b73ffffffffffffffffffffffffffffffffffffffff16611d246117c8565b73ffffffffffffffffffffffffffffffffffffffff1614611d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7190614ef6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de190614ed6565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611e30573d6000803e3d6000fd5b505050565b6060611e3f613a89565b60405180610180016040528061014c815260200161565561014c913981600060058110611e95577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250600e60008481526020019081526020016000208054611ebb906153cf565b80601f0160208091040260200160405190810160405280929190818152602001828054611ee7906153cf565b8015611f345780601f10611f0957610100808354040283529160200191611f34565b820191906000526020600020905b815481529060010190602001808311611f1757829003601f168201915b505050505081600160058110611f73577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060400160405280600a81526020017f3c2f7374726f6e673e200000000000000000000000000000000000000000000081525081600260058110611feb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250600f60008481526020019081526020016000208054612011906153cf565b80601f016020809104026020016040519081016040528092919081815260200182805461203d906153cf565b801561208a5780601f1061205f5761010080835404028352916020019161208a565b820191906000526020600020905b81548152906001019060200180831161206d57829003601f168201915b5050505050816003600581106120c9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060400160405280601c81526020017f3c2f6469763e3c2f666f726569676e4f626a6563743e3c2f7376673e0000000081525081600460058110612141577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250600081600060058110612185577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151826001600581106121c4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015183600260058110612203577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015184600360058110612242577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015185600460058110612281577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015160405160200161229a959493929190614b71565b604051602081830303815290604052905060006122e76122b986612ddd565b6122c284612f8a565b6040516020016122d3929190614c0d565b604051602081830303815290604052612f8a565b9050806040516020016122fa9190614beb565b6040516020818303038152906040529150819350505050919050565b600e6020528060005260406000206000915090508054612335906153cf565b80601f0160208091040260200160405190810160405280929190818152602001828054612361906153cf565b80156123ae5780601f10612383576101008083540402835291602001916123ae565b820191906000526020600020905b81548152906001019060200180831161239157829003601f168201915b505050505081565b6123be612791565b73ffffffffffffffffffffffffffffffffffffffff166123dc6117c8565b73ffffffffffffffffffffffffffffffffffffffff1614612432576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242990614ef6565b60405180910390fd5b600a60149054906101000a900460ff1615600a60146101000a81548160ff0219169083151502179055507fcb01a83ed3bf63b2cb3676905d1c98debc05cc4f85a6d40ea441b3d0656fd0b7600a60149054906101000a900460ff1660405161249a9190614cb9565b60405180910390a1565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60149054906101000a900460ff1681565b612553612791565b73ffffffffffffffffffffffffffffffffffffffff166125716117c8565b73ffffffffffffffffffffffffffffffffffffffff16146125c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125be90614ef6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262e90614d36565b60405180910390fd5b61264081612c9d565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061270e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061271e575061271d82613135565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661280c83611160565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061285d82612725565b61289c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289390614dd6565b60405180910390fd5b60006128a783611160565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061291657508373ffffffffffffffffffffffffffffffffffffffff166128fe84610a74565b73ffffffffffffffffffffffffffffffffffffffff16145b80612927575061292681856124a4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661295082611160565b73ffffffffffffffffffffffffffffffffffffffff16146129a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299d90614f16565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0d90614d96565b60405180910390fd5b612a2183838361319f565b612a2c600082612799565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a7c91906152b8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ad391906151d7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612b9782611160565b9050612ba58160008461319f565b612bb0600083612799565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c0091906152b8565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d7d8282604051806020016040528060008152506132b3565b5050565b612d8c848484612930565b612d988484848461330e565b612dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dce90614d16565b60405180910390fd5b50505050565b60606000821415612e25576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f85565b600082905060005b60008214612e57578080612e409061542c565b915050600a82612e50919061522d565b9150612e2d565b60008167ffffffffffffffff811115612e99577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612ecb5781602001600182028036833780820191505090505b5090505b60008514612f7e57600182612ee491906152b8565b9150600a85612ef39190615475565b6030612eff91906151d7565b60f81b818381518110612f3b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f77919061522d565b9450612ecf565b8093505050505b919050565b6060600082511415612fad57604051806020016040528060008152509050613130565b60006040518060600160405280604081526020016156156040913990506000600360028551612fdc91906151d7565b612fe6919061522d565b6004612ff2919061525e565b9050600060208261300391906151d7565b67ffffffffffffffff811115613042577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130745781602001600182028036833780820191505090505b509050818152600183018586518101602084015b818310156130ef576003830192508251603f8160121c1685015160f81b8252600182019150603f81600c1c1685015160f81b8252600182019150603f8160061c1685015160f81b8252600182019150603f811685015160f81b825260018201915050613088565b600389510660018114613109576002811461311957613124565b613d3d60f01b6002830352613124565b603d60f81b60018303525b50505050508093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6131aa8383836134a5565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131ed576131e8816134aa565b61322c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461322b5761322a83826134f3565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561326f5761326a81613660565b6132ae565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146132ad576132ac82826137a3565b5b5b505050565b6132bd8383613822565b6132ca600084848461330e565b613309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330090614d16565b60405180910390fd5b505050565b600061332f8473ffffffffffffffffffffffffffffffffffffffff166139f0565b15613498578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613358612791565b8786866040518563ffffffff1660e01b815260040161337a9493929190614c6d565b602060405180830381600087803b15801561339457600080fd5b505af19250505080156133c557506040513d601f19601f820116820180604052508101906133c29190613e51565b60015b613448573d80600081146133f5576040519150601f19603f3d011682016040523d82523d6000602084013e6133fa565b606091505b50600081511415613440576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343790614d16565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061349d565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613500846112c6565b61350a91906152b8565b90506000600760008481526020019081526020016000205490508181146135ef576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061367491906152b8565b90506000600960008481526020019081526020016000205490506000600883815481106136ca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613712577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613787577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006137ae836112c6565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388990614e96565b60405180910390fd5b61389b81612725565b156138db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138d290614d56565b60405180910390fd5b6138e76000838361319f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461393791906151d7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613a0f906153cf565b90600052602060002090601f016020900481019282613a315760008555613a78565b82601f10613a4a57805160ff1916838001178555613a78565b82800160010185558215613a78579182015b82811115613a77578251825591602001919060010190613a5c565b5b509050613a859190613ab0565b5090565b6040518060a001604052806005905b6060815260200190600190039081613a985790505090565b5b80821115613ac9576000816000905550600101613ab1565b5090565b6000613ae0613adb8461511f565b6150ee565b905082815260208101848484011115613af857600080fd5b613b0384828561538d565b509392505050565b6000613b1e613b198461514f565b6150ee565b905082815260208101848484011115613b3657600080fd5b613b4184828561538d565b509392505050565b600081359050613b5881615573565b92915050565b600081359050613b6d8161558a565b92915050565b600081359050613b82816155a1565b92915050565b600081359050613b97816155b8565b92915050565b600081519050613bac816155b8565b92915050565b600082601f830112613bc357600080fd5b8135613bd3848260208601613acd565b91505092915050565b600082601f830112613bed57600080fd5b8135613bfd848260208601613b0b565b91505092915050565b600081359050613c15816155cf565b92915050565b600081359050613c2a816155e6565b92915050565b600081359050613c3f816155fd565b92915050565b600060208284031215613c5757600080fd5b6000613c6584828501613b49565b91505092915050565b60008060408385031215613c8157600080fd5b6000613c8f85828601613b5e565b9250506020613ca085828601613c1b565b9150509250929050565b60008060408385031215613cbd57600080fd5b6000613ccb85828601613b49565b9250506020613cdc85828601613b49565b9150509250929050565b600080600060608486031215613cfb57600080fd5b6000613d0986828701613b49565b9350506020613d1a86828701613b49565b9250506040613d2b86828701613c1b565b9150509250925092565b60008060008060808587031215613d4b57600080fd5b6000613d5987828801613b49565b9450506020613d6a87828801613b49565b9350506040613d7b87828801613c1b565b925050606085013567ffffffffffffffff811115613d9857600080fd5b613da487828801613bb2565b91505092959194509250565b60008060408385031215613dc357600080fd5b6000613dd185828601613b49565b9250506020613de285828601613b73565b9150509250929050565b60008060408385031215613dff57600080fd5b6000613e0d85828601613b49565b9250506020613e1e85828601613c1b565b9150509250929050565b600060208284031215613e3a57600080fd5b6000613e4884828501613b88565b91505092915050565b600060208284031215613e6357600080fd5b6000613e7184828501613b9d565b91505092915050565b60008060408385031215613e8d57600080fd5b600083013567ffffffffffffffff811115613ea757600080fd5b613eb385828601613bdc565b925050602083013567ffffffffffffffff811115613ed057600080fd5b613edc85828601613bdc565b9150509250929050565b600060208284031215613ef857600080fd5b6000613f0684828501613c06565b91505092915050565b600060208284031215613f2157600080fd5b6000613f2f84828501613c1b565b91505092915050565b600060208284031215613f4a57600080fd5b6000613f5884828501613c30565b91505092915050565b60008060408385031215613f7457600080fd5b6000613f8285828601613c30565b925050602083013567ffffffffffffffff811115613f9f57600080fd5b613fab85828601613bdc565b9150509250929050565b613fbe816152ec565b82525050565b613fcd81615310565b82525050565b6000613fde82615194565b613fe881856151aa565b9350613ff881856020860161539c565b61400181615562565b840191505092915050565b60006140178261519f565b61402181856151bb565b935061403181856020860161539c565b61403a81615562565b840191505092915050565b60006140508261519f565b61405a81856151cc565b935061406a81856020860161539c565b80840191505092915050565b60008154614083816153cf565b61408d81866151cc565b945060018216600081146140a857600181146140b9576140ec565b60ff198316865281860193506140ec565b6140c28561517f565b60005b838110156140e4578154818901526001820191506020810190506140c5565b838801955050505b50505092915050565b6000614102602b836151bb565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006141686032836151bb565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006141ce6026836151bb565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614234601c836151bb565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006142746025836151bb565b91507f496e7465726e616c206d696e7420776f756c6420657863656564206d6178207360008301527f7570706c790000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142da6024836151bb565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006143406019836151bb565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614380602c836151bb565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006143e660f5836151cc565b91507f222c20226465736372697074696f6e223a202247656e6572617465642075736960008301527f6e6720612073746174652d6f662d7468652d617274206e657572616c206e657460208301527f776f726b2c2073746f7265642031303025206f6e2d636861696e2e204d696e6960408301527f6d756d207465787420666f726d617474696e67206170706c69656420746f206660608301527f6163696c69746174652072652d757365206163726f73732073797374656d732060808301527f2d20776520656e636f7572616765207573696e67207468697320696e20616e7960a08301527f2077617920796f7520776973682e222c2022696d616765223a2022646174613a60c08301527f696d6167652f7376672b786d6c3b6261736536342c000000000000000000000060e083015260f582019050919050565b60006145306001836151cc565b91507f20000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b60006145706038836151bb565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006145d6602a836151bb565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061463c6029836151bb565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006146a26020836151bb565b91507f507572636861736520776f756c6420657863656564206d617820737570706c796000830152602082019050919050565b60006146e26002836151cc565b91507f227d0000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b6000614722601e836151bb565b91507f50726f76696465642073746f7279206c656e67746820746f2073686f727400006000830152602082019050919050565b60006147626020836151bb565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006147a2602c836151bb565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006148086019836151bb565b91507f496e76616c696420726563697069656e742061646472657373000000000000006000830152602082019050919050565b60006148486020836151bb565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006148886029836151bb565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006148ee6017836151bb565b91507f496e73756666696369656e742065746865722073656e740000000000000000006000830152602082019050919050565b600061492e601d836151bb565b91507f50726f76696465642073656564206c656e67746820746f2073686f72740000006000830152602082019050919050565b600061496e6021836151bb565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006149d4601d836151cc565b91507f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000006000830152601d82019050919050565b6000614a146031836151bb565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614a7a602c836151bb565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614ae06011836151cc565b91507f7b226e616d65223a202253746f727920230000000000000000000000000000006000830152601182019050919050565b6000614b206020836151bb565b91507f53616c65206973206e6f742061637469766520617420746865206d6f6d656e746000830152602082019050919050565b614b5c81615348565b82525050565b614b6b81615376565b82525050565b6000614b7d8288614045565b9150614b898287614045565b9150614b958286614045565b9150614ba18285614045565b9150614bad8284614045565b91508190509695505050505050565b6000614bc88285614076565b9150614bd382614523565b9150614bdf8284614076565b91508190509392505050565b6000614bf6826149c7565b9150614c028284614045565b915081905092915050565b6000614c1882614ad3565b9150614c248285614045565b9150614c2f826143d9565b9150614c3b8284614045565b9150614c46826146d5565b91508190509392505050565b6000602082019050614c676000830184613fb5565b92915050565b6000608082019050614c826000830187613fb5565b614c8f6020830186613fb5565b614c9c6040830185614b62565b8181036060830152614cae8184613fd3565b905095945050505050565b6000602082019050614cce6000830184613fc4565b92915050565b60006020820190508181036000830152614cee818461400c565b905092915050565b60006020820190508181036000830152614d0f816140f5565b9050919050565b60006020820190508181036000830152614d2f8161415b565b9050919050565b60006020820190508181036000830152614d4f816141c1565b9050919050565b60006020820190508181036000830152614d6f81614227565b9050919050565b60006020820190508181036000830152614d8f81614267565b9050919050565b60006020820190508181036000830152614daf816142cd565b9050919050565b60006020820190508181036000830152614dcf81614333565b9050919050565b60006020820190508181036000830152614def81614373565b9050919050565b60006020820190508181036000830152614e0f81614563565b9050919050565b60006020820190508181036000830152614e2f816145c9565b9050919050565b60006020820190508181036000830152614e4f8161462f565b9050919050565b60006020820190508181036000830152614e6f81614695565b9050919050565b60006020820190508181036000830152614e8f81614715565b9050919050565b60006020820190508181036000830152614eaf81614755565b9050919050565b60006020820190508181036000830152614ecf81614795565b9050919050565b60006020820190508181036000830152614eef816147fb565b9050919050565b60006020820190508181036000830152614f0f8161483b565b9050919050565b60006020820190508181036000830152614f2f8161487b565b9050919050565b60006020820190508181036000830152614f4f816148e1565b9050919050565b60006020820190508181036000830152614f6f81614921565b9050919050565b60006020820190508181036000830152614f8f81614961565b9050919050565b60006020820190508181036000830152614faf81614a07565b9050919050565b60006020820190508181036000830152614fcf81614a6d565b9050919050565b60006020820190508181036000830152614fef81614b13565b9050919050565b600060208201905061500b6000830184614b53565b92915050565b60006020820190506150266000830184614b62565b92915050565b60006080820190506150416000830187614b62565b61504e6020830186613fb5565b8181036040830152615060818561400c565b90508181036060830152615074818461400c565b905095945050505050565b600060e082019050615094600083018a614b62565b6150a16020830189614b62565b6150ae6040830188614b62565b6150bb6060830187613fc4565b6150c86080830186614b53565b6150d560a0830185614b53565b6150e260c0830184614b53565b98975050505050505050565b6000604051905081810181811067ffffffffffffffff8211171561511557615114615533565b5b8060405250919050565b600067ffffffffffffffff82111561513a57615139615533565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561516a57615169615533565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006151e282615376565b91506151ed83615376565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615222576152216154a6565b5b828201905092915050565b600061523882615376565b915061524383615376565b925082615253576152526154d5565b5b828204905092915050565b600061526982615376565b915061527483615376565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156152ad576152ac6154a6565b5b828202905092915050565b60006152c382615376565b91506152ce83615376565b9250828210156152e1576152e06154a6565b5b828203905092915050565b60006152f782615356565b9050919050565b600061530982615356565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156153ba57808201518184015260208101905061539f565b838111156153c9576000848401525b50505050565b600060028204905060018216806153e757607f821691505b602082108114156153fb576153fa615504565b5b50919050565b600061540c82615348565b915061ffff821415615421576154206154a6565b5b600182019050919050565b600061543782615376565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561546a576154696154a6565b5b600182019050919050565b600061548082615376565b915061548b83615376565b92508261549b5761549a6154d5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61557c816152ec565b811461558757600080fd5b50565b615593816152fe565b811461559e57600080fd5b50565b6155aa81615310565b81146155b557600080fd5b50565b6155c18161531c565b81146155cc57600080fd5b50565b6155d881615348565b81146155e357600080fd5b50565b6155ef81615376565b81146155fa57600080fd5b50565b61560681615380565b811461561157600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d22302030203336302033363022207374796c653d226261636b67726f756e642d636f6c6f723a20626c61636b3b223e3c7374796c653e2e7465787442617365207b20636f6c6f723a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a2031332e3570783b207d3c2f7374796c653e3c666f726569676e4f626a65637420783d22352220793d2235222077696474683d2233353022206865696768743d223335302220636c6173733d227465787442617365223e3c64697620786d6c6e733d22687474703a2f2f7777772e77332e6f72672f313939392f7868746d6c22203e3c7374726f6e673ea264697066735822122025eb6724f6ed4cfd4020018be72263d5c7948bb2e46a493d0ce75720850a214064736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000008417574686f724d650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006415554484d450000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): AuthorMe
Arg [1] : _symbol (string): AUTHME

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 417574686f724d65000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 415554484d450000000000000000000000000000000000000000000000000000


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.