ETH Price: $3,272.02 (+0.36%)
Gas: 2 Gwei

Token

Skullx: Aeons (AEON)
 

Overview

Max Total Supply

2,000 AEON

Holders

667

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 AEON
0xCFE8B927478B2E526D7e2f407B33a78655606101
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

These ancient beings have been around since the dawn of time, roaming and protecting their realms. Long have they been in a deep slumber, until recent disturbances from a dark past. The fallen Aeons of the Old World have liberated themselves from the depths of Nether, eager to take back what was once theirs.. Check out our other collections: [Skullx: Origins](https://opensea.io/collection/kinkyskullx) [Skullx](https://opensea.io/collection/skullx) [Skullx: Editions](https://opensea.io/collection/skullx-editions) [MechNuggets x Skullx](https://opensea.io/collection/mechnuggets-x-kinkyskullx)

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SkullxAeons

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : SkullxAeons.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol';
import '@openzeppelin/contracts/access/Ownable.sol';

contract SkullxAeons is ERC721Enumerable, Ownable {
    string public aeonsProvenance;

    uint256 public constant AEONS_MAX_SUPPLY = 2000;
    uint256 public constant SUMMON_LIMIT = 10;
    uint256 public constant PRICE = 0.03 ether;

    bool public publicSaleIsActive = false;
    bool public freeMintIsActive = false;

    uint256 public reservedLeft = 100;

    mapping(address => bool) private allowList;
    mapping(address => bool) private allowListClaimed;

    string public baseURI;

    address w0 = 0xF65b1bC72ffe0c8BcbC91da87abc53aC8Cf884FD;
    address w1 = 0x53af9B516cC5c6BdC2A500CF1ED30Ec88232B5Ec;
    address w2 = 0xD4091d661A44648D61bd3bb51E129d0d60892056;
    address w3 = 0x44403D2c7C7229a1fc4bD7379F51daC328407C5F;

    constructor(string memory uri) ERC721("Skullx: Aeons", "AEON") {
        setBaseURI(uri);
    }

    function addToAllowList(address[] calldata addresses) external onlyOwner {
        for (uint256 i; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Can't add the null address");

            allowList[addresses[i]] = true;
        }
    }

    function onAllowList(address _address) external view returns (bool) {
        return allowList[_address];
    }

    function removeFromAllowList(address[] calldata addresses) external onlyOwner {
        for (uint256 i; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Can't add the null address");
            allowList[addresses[i]] = false;
        }
    }

    function allowListClaimedBy(address owner) external view returns (bool){
        require(owner != address(0), 'Zero address not on Allow List');
        return allowListClaimed[owner];
    }

    function summon(uint256 numberOfTokens) external payable {
        uint256 supply = totalSupply();
        require(publicSaleIsActive, 'Public sale is not active');
        require(numberOfTokens <= SUMMON_LIMIT, 'Exceeds SUMMON_LIMIT');
        require(supply + numberOfTokens <= AEONS_MAX_SUPPLY - reservedLeft, 'Exceeds AEONS_MAX_SUPPLY');
        require(PRICE * numberOfTokens <= msg.value, 'ETH amount is not sufficient');

        // Start index at 1
        for (uint256 i; i < numberOfTokens; i++) {
            _safeMint(msg.sender, supply + i + 1);
        }
    }

    function freeSummon() external payable {
        uint256 supply = totalSupply();
        require(freeMintIsActive, 'Free summon phase for Skullx role is not active');
        require(allowList[msg.sender], 'You are not on the Allow List');
        require(allowListClaimed[msg.sender] == false, 'Already summoned one free Aeon');
        require(supply + 1 <= AEONS_MAX_SUPPLY - reservedLeft, 'Exceeds AEONS_MAX_SUPPLY');

        // Start index at 1
        allowListClaimed[msg.sender] = true;
        _safeMint(msg.sender, supply + 1);
    }

    function giveAway(address to, uint256 numberOfTokens) external onlyOwner() {
        require(numberOfTokens <= reservedLeft, "Exceeds reserved Aeons left");
        uint256 supply = totalSupply();

        // Start index at 1
        for (uint256 i; i < numberOfTokens; i++) {
            _safeMint(to, supply + i + 1);
        }

        reservedLeft -= numberOfTokens;
    }

    function setProvenanceHash(string memory provenanceHash) external onlyOwner {
        aeonsProvenance = provenanceHash;
    }

    function togglePublicSaleIsActive() external onlyOwner {
        publicSaleIsActive = !publicSaleIsActive;
    }

    function toggleFreeMintIsActive() external onlyOwner {
        freeMintIsActive = !freeMintIsActive;
    }

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

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

    function withdrawAll() external payable onlyOwner {
        uint256 percent = address(this).balance / 100;
        require(payable(w0).send(percent * 45));
        require(payable(w1).send(percent * 25));
        require(payable(w2).send(percent * 25));
        require(payable(w3).send(percent * 5));
    }

}

File 2 of 13 : 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 3 of 13 : 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 4 of 13 : 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 5 of 13 : 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 6 of 13 : 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 7 of 13 : 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 8 of 13 : 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 9 of 13 : 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 10 of 13 : 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 11 of 13 : 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 12 of 13 : 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 13 of 13 : 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"AEONS_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUMMON_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"aeonsProvenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"allowListClaimedBy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSummon","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"onAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedLeft","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"summon","outputs":[],"stateMutability":"payable","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":"toggleFreeMintIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSaleIsActive","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":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506064600d5573f65b1bc72ffe0c8bcbc91da87abc53ac8cf884fd601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507353af9b516cc5c6bdc2a500cf1ed30ec88232b5ec601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073d4091d661a44648d61bd3bb51e129d0d60892056601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507344403d2c7c7229a1fc4bd7379f51dac328407c5f601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620001a057600080fd5b50604051620056eb380380620056eb8339818101604052810190620001c6919062000563565b6040518060400160405280600d81526020017f536b756c6c783a2041656f6e73000000000000000000000000000000000000008152506040518060400160405280600481526020017f41454f4e0000000000000000000000000000000000000000000000000000000081525081600090805190602001906200024a92919062000441565b5080600190805190602001906200026392919062000441565b505050620002866200027a6200029e60201b60201c565b620002a660201b60201c565b62000297816200036c60201b60201c565b506200079b565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200037c6200029e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003a26200041760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003fb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003f290620005cf565b60405180910390fd5b80601090805190602001906200041392919062000441565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200044f9062000697565b90600052602060002090601f016020900481019282620004735760008555620004bf565b82601f106200048e57805160ff1916838001178555620004bf565b82800160010185558215620004bf579182015b82811115620004be578251825591602001919060010190620004a1565b5b509050620004ce9190620004d2565b5090565b5b80821115620004ed576000816000905550600101620004d3565b5090565b60006200050862000502846200061a565b620005f1565b9050828152602081018484840111156200052157600080fd5b6200052e84828562000661565b509392505050565b600082601f8301126200054857600080fd5b81516200055a848260208601620004f1565b91505092915050565b6000602082840312156200057657600080fd5b600082015167ffffffffffffffff8111156200059157600080fd5b6200059f8482850162000536565b91505092915050565b6000620005b760208362000650565b9150620005c48262000772565b602082019050919050565b60006020820190508181036000830152620005ea81620005a8565b9050919050565b6000620005fd62000610565b90506200060b8282620006cd565b919050565b6000604051905090565b600067ffffffffffffffff82111562000638576200063762000732565b5b620006438262000761565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200068157808201518184015260208101905062000664565b8381111562000691576000848401525b50505050565b60006002820490506001821680620006b057607f821691505b60208210811415620006c757620006c662000703565b5b50919050565b620006d88262000761565b810181811067ffffffffffffffff82111715620006fa57620006f962000732565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614f4080620007ab6000396000f3fe60806040526004361061022f5760003560e01c80636352211e1161012e57806395d89b41116100ab578063c87b56dd1161006f578063c87b56dd146107db578063ca80014414610818578063cde0b31e14610841578063e985e9c51461086c578063f2fde38b146108a95761022f565b806395d89b411461070a5780639ae84aeb14610735578063a22cb46514610760578063a51312c814610789578063b88d4fde146107b25761022f565b80637e95a676116100f25780637e95a67614610654578063853828b61461067f5780638d859f3e146106895780638da5cb5b146106b45780638ee5eabf146106df5761022f565b80636352211e1461056f5780636c0360eb146105ac57806370a08231146105d7578063715018a6146106145780637263cfe21461062b5761022f565b806318160ddd116101bc5780633a065892116101805780633a0658921461048c57806342842e0e146104c95780634f6ccce7146104f257806355f804b31461052f57806362aaf036146105585761022f565b806318160ddd146103c657806323b872dd146103f15780632d7e9cf01461041a5780632f745c591461042457806335ee0fd2146104615761022f565b8063081812fc11610203578063081812fc146102f5578063095ea7b3146103325780630fcf2e751461035b57806310969523146103865780631679ad55146103af5761022f565b806208ffdd1461023457806301ffc9a714610271578063035d9f2a146102ae57806306fdde03146102ca575b600080fd5b34801561024057600080fd5b5061025b6004803603810190610256919061380a565b6108d2565b6040516102689190613fe1565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906139f6565b610997565b6040516102a59190613fe1565b60405180910390f35b6102c860048036038101906102c39190613a89565b610a11565b005b3480156102d657600080fd5b506102df610ba6565b6040516102ec9190613ffc565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190613a89565b610c38565b6040516103299190613f7a565b60405180910390f35b34801561033e57600080fd5b5061035960048036038101906103549190613975565b610cbd565b005b34801561036757600080fd5b50610370610dd5565b60405161037d9190613fe1565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a89190613a48565b610de8565b005b3480156103bb57600080fd5b506103c4610e7e565b005b3480156103d257600080fd5b506103db610f26565b6040516103e8919061439e565b60405180910390f35b3480156103fd57600080fd5b506104186004803603810190610413919061386f565b610f33565b005b610422610f93565b005b34801561043057600080fd5b5061044b60048036038101906104469190613975565b6111dc565b604051610458919061439e565b60405180910390f35b34801561046d57600080fd5b50610476611281565b6040516104839190613fe1565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae919061380a565b611294565b6040516104c09190613fe1565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb919061386f565b6112ea565b005b3480156104fe57600080fd5b5061051960048036038101906105149190613a89565b61130a565b604051610526919061439e565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190613a48565b6113a1565b005b34801561056457600080fd5b5061056d611437565b005b34801561057b57600080fd5b5061059660048036038101906105919190613a89565b6114df565b6040516105a39190613f7a565b60405180910390f35b3480156105b857600080fd5b506105c1611591565b6040516105ce9190613ffc565b60405180910390f35b3480156105e357600080fd5b506105fe60048036038101906105f9919061380a565b61161f565b60405161060b919061439e565b60405180910390f35b34801561062057600080fd5b506106296116d7565b005b34801561063757600080fd5b50610652600480360381019061064d91906139b1565b61175f565b005b34801561066057600080fd5b50610669611963565b6040516106769190613ffc565b60405180910390f35b6106876119f1565b005b34801561069557600080fd5b5061069e611c31565b6040516106ab919061439e565b60405180910390f35b3480156106c057600080fd5b506106c9611c3c565b6040516106d69190613f7a565b60405180910390f35b3480156106eb57600080fd5b506106f4611c66565b604051610701919061439e565b60405180910390f35b34801561071657600080fd5b5061071f611c6c565b60405161072c9190613ffc565b60405180910390f35b34801561074157600080fd5b5061074a611cfe565b604051610757919061439e565b60405180910390f35b34801561076c57600080fd5b5061078760048036038101906107829190613939565b611d04565b005b34801561079557600080fd5b506107b060048036038101906107ab91906139b1565b611e85565b005b3480156107be57600080fd5b506107d960048036038101906107d491906138be565b612089565b005b3480156107e757600080fd5b5061080260048036038101906107fd9190613a89565b6120eb565b60405161080f9190613ffc565b60405180910390f35b34801561082457600080fd5b5061083f600480360381019061083a9190613975565b612192565b005b34801561084d57600080fd5b506108566122bd565b604051610863919061439e565b60405180910390f35b34801561087857600080fd5b50610893600480360381019061088e9190613833565b6122c2565b6040516108a09190613fe1565b60405180910390f35b3480156108b557600080fd5b506108d060048036038101906108cb919061380a565b612356565b005b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093a9061427e565b60405180910390fd5b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a0a5750610a098261244e565b5b9050919050565b6000610a1b610f26565b9050600c60009054906101000a900460ff16610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a63906141de565b60405180910390fd5b600a821115610ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa79061435e565b60405180910390fd5b600d546107d0610ac09190614564565b8282610acc9190614483565b1115610b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b049061437e565b60405180910390fd5b3482666a94d74f430000610b21919061450a565b1115610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b599061413e565b60405180910390fd5b60005b82811015610ba157610b8e3360018385610b7f9190614483565b610b899190614483565b612530565b8080610b99906146b1565b915050610b65565b505050565b606060008054610bb59061464e565b80601f0160208091040260200160405190810160405280929190818152602001828054610be19061464e565b8015610c2e5780601f10610c0357610100808354040283529160200191610c2e565b820191906000526020600020905b815481529060010190602001808311610c1157829003601f168201915b5050505050905090565b6000610c438261254e565b610c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c799061421e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cc8826114df565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d30906142fe565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d586125ba565b73ffffffffffffffffffffffffffffffffffffffff161480610d875750610d8681610d816125ba565b6122c2565b5b610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd9061417e565b60405180910390fd5b610dd083836125c2565b505050565b600c60009054906101000a900460ff1681565b610df06125ba565b73ffffffffffffffffffffffffffffffffffffffff16610e0e611c3c565b73ffffffffffffffffffffffffffffffffffffffff1614610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b9061425e565b60405180910390fd5b80600b9080519060200190610e7a9291906135e4565b5050565b610e866125ba565b73ffffffffffffffffffffffffffffffffffffffff16610ea4611c3c565b73ffffffffffffffffffffffffffffffffffffffff1614610efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef19061425e565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600880549050905090565b610f44610f3e6125ba565b8261267b565b610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a9061431e565b60405180910390fd5b610f8e838383612759565b505050565b6000610f9d610f26565b9050600c60019054906101000a900460ff16610fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe59061423e565b60405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661107a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110719061401e565b60405180910390fd5b60001515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461110d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111049061411e565b60405180910390fd5b600d546107d061111d9190614564565b60018261112a9190614483565b111561116b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111629061437e565b60405180910390fd5b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506111d9336001836111d49190614483565b612530565b50565b60006111e78361161f565b8210611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121f9061405e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600c60019054906101000a900460ff1681565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61130583838360405180602001604052806000815250612089565b505050565b6000611314610f26565b8210611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134c9061433e565b60405180910390fd5b6008828154811061138f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6113a96125ba565b73ffffffffffffffffffffffffffffffffffffffff166113c7611c3c565b73ffffffffffffffffffffffffffffffffffffffff161461141d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114149061425e565b60405180910390fd5b80601090805190602001906114339291906135e4565b5050565b61143f6125ba565b73ffffffffffffffffffffffffffffffffffffffff1661145d611c3c565b73ffffffffffffffffffffffffffffffffffffffff16146114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa9061425e565b60405180910390fd5b600c60019054906101000a900460ff1615600c60016101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f906141be565b60405180910390fd5b80915050919050565b6010805461159e9061464e565b80601f01602080910402602001604051908101604052809291908181526020018280546115ca9061464e565b80156116175780601f106115ec57610100808354040283529160200191611617565b820191906000526020600020905b8154815290600101906020018083116115fa57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611690576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116879061419e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116df6125ba565b73ffffffffffffffffffffffffffffffffffffffff166116fd611c3c565b73ffffffffffffffffffffffffffffffffffffffff1614611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a9061425e565b60405180910390fd5b61175d60006129b5565b565b6117676125ba565b73ffffffffffffffffffffffffffffffffffffffff16611785611c3c565b73ffffffffffffffffffffffffffffffffffffffff16146117db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d29061425e565b60405180910390fd5b60005b8282905081101561195e57600073ffffffffffffffffffffffffffffffffffffffff1683838381811061183a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061184f919061380a565b73ffffffffffffffffffffffffffffffffffffffff1614156118a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189d9061429e565b60405180910390fd5b6001600e60008585858181106118e5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906118fa919061380a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611956906146b1565b9150506117de565b505050565b600b80546119709061464e565b80601f016020809104026020016040519081016040528092919081815260200182805461199c9061464e565b80156119e95780601f106119be576101008083540402835291602001916119e9565b820191906000526020600020905b8154815290600101906020018083116119cc57829003601f168201915b505050505081565b6119f96125ba565b73ffffffffffffffffffffffffffffffffffffffff16611a17611c3c565b73ffffffffffffffffffffffffffffffffffffffff1614611a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a649061425e565b60405180910390fd5b6000606447611a7c91906144d9565b9050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc602d83611ac7919061450a565b9081150290604051600060405180830381858888f19350505050611aea57600080fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc601983611b33919061450a565b9081150290604051600060405180830381858888f19350505050611b5657600080fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc601983611b9f919061450a565b9081150290604051600060405180830381858888f19350505050611bc257600080fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc600583611c0b919061450a565b9081150290604051600060405180830381858888f19350505050611c2e57600080fd5b50565b666a94d74f43000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b606060018054611c7b9061464e565b80601f0160208091040260200160405190810160405280929190818152602001828054611ca79061464e565b8015611cf45780601f10611cc957610100808354040283529160200191611cf4565b820191906000526020600020905b815481529060010190602001808311611cd757829003601f168201915b5050505050905090565b6107d081565b611d0c6125ba565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d71906140fe565b60405180910390fd5b8060056000611d876125ba565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e346125ba565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e799190613fe1565b60405180910390a35050565b611e8d6125ba565b73ffffffffffffffffffffffffffffffffffffffff16611eab611c3c565b73ffffffffffffffffffffffffffffffffffffffff1614611f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef89061425e565b60405180910390fd5b60005b8282905081101561208457600073ffffffffffffffffffffffffffffffffffffffff16838383818110611f60577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611f75919061380a565b73ffffffffffffffffffffffffffffffffffffffff161415611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc39061429e565b60405180910390fd5b6000600e600085858581811061200b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190612020919061380a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061207c906146b1565b915050611f04565b505050565b61209a6120946125ba565b8361267b565b6120d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d09061431e565b60405180910390fd5b6120e584848484612a7b565b50505050565b60606120f68261254e565b612135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212c906142de565b60405180910390fd5b600061213f612ad7565b9050600081511161215f576040518060200160405280600081525061218a565b8061216984612b69565b60405160200161217a929190613f56565b6040516020818303038152906040525b915050919050565b61219a6125ba565b73ffffffffffffffffffffffffffffffffffffffff166121b8611c3c565b73ffffffffffffffffffffffffffffffffffffffff161461220e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122059061425e565b60405180910390fd5b600d54811115612253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224a9061403e565b60405180910390fd5b600061225d610f26565b905060005b8281101561229e5761228b846001838561227c9190614483565b6122869190614483565b612530565b8080612296906146b1565b915050612262565b5081600d60008282546122b19190614564565b92505081905550505050565b600a81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61235e6125ba565b73ffffffffffffffffffffffffffffffffffffffff1661237c611c3c565b73ffffffffffffffffffffffffffffffffffffffff16146123d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c99061425e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612442576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124399061409e565b60405180910390fd5b61244b816129b5565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061251957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612529575061252882612d16565b5b9050919050565b61254a828260405180602001604052806000815250612d80565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612635836114df565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006126868261254e565b6126c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bc9061415e565b60405180910390fd5b60006126d0836114df565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061273f57508373ffffffffffffffffffffffffffffffffffffffff1661272784610c38565b73ffffffffffffffffffffffffffffffffffffffff16145b80612750575061274f81856122c2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612779826114df565b73ffffffffffffffffffffffffffffffffffffffff16146127cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c6906142be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561283f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612836906140de565b60405180910390fd5b61284a838383612ddb565b6128556000826125c2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128a59190614564565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128fc9190614483565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a86848484612759565b612a9284848484612eef565b612ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac89061407e565b60405180910390fd5b50505050565b606060108054612ae69061464e565b80601f0160208091040260200160405190810160405280929190818152602001828054612b129061464e565b8015612b5f5780601f10612b3457610100808354040283529160200191612b5f565b820191906000526020600020905b815481529060010190602001808311612b4257829003601f168201915b5050505050905090565b60606000821415612bb1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d11565b600082905060005b60008214612be3578080612bcc906146b1565b915050600a82612bdc91906144d9565b9150612bb9565b60008167ffffffffffffffff811115612c25577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612c575781602001600182028036833780820191505090505b5090505b60008514612d0a57600182612c709190614564565b9150600a85612c7f91906146fa565b6030612c8b9190614483565b60f81b818381518110612cc7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d0391906144d9565b9450612c5b565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612d8a8383613086565b612d976000848484612eef565b612dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcd9061407e565b60405180910390fd5b505050565b612de6838383613254565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e2957612e2481613259565b612e68565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612e6757612e6683826132a2565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612eab57612ea68161340f565b612eea565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ee957612ee88282613552565b5b5b505050565b6000612f108473ffffffffffffffffffffffffffffffffffffffff166135d1565b15613079578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f396125ba565b8786866040518563ffffffff1660e01b8152600401612f5b9493929190613f95565b602060405180830381600087803b158015612f7557600080fd5b505af1925050508015612fa657506040513d601f19601f82011682018060405250810190612fa39190613a1f565b60015b613029573d8060008114612fd6576040519150601f19603f3d011682016040523d82523d6000602084013e612fdb565b606091505b50600081511415613021576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130189061407e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061307e565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ed906141fe565b60405180910390fd5b6130ff8161254e565b1561313f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613136906140be565b60405180910390fd5b61314b60008383612ddb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461319b9190614483565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016132af8461161f565b6132b99190614564565b905060006007600084815260200190815260200160002054905081811461339e576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134239190614564565b9050600060096000848152602001908152602001600020549050600060088381548110613479577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106134c1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613536577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061355d8361161f565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b8280546135f09061464e565b90600052602060002090601f0160209004810192826136125760008555613659565b82601f1061362b57805160ff1916838001178555613659565b82800160010185558215613659579182015b8281111561365857825182559160200191906001019061363d565b5b509050613666919061366a565b5090565b5b8082111561368357600081600090555060010161366b565b5090565b600061369a613695846143de565b6143b9565b9050828152602081018484840111156136b257600080fd5b6136bd84828561460c565b509392505050565b60006136d86136d38461440f565b6143b9565b9050828152602081018484840111156136f057600080fd5b6136fb84828561460c565b509392505050565b60008135905061371281614eae565b92915050565b60008083601f84011261372a57600080fd5b8235905067ffffffffffffffff81111561374357600080fd5b60208301915083602082028301111561375b57600080fd5b9250929050565b60008135905061377181614ec5565b92915050565b60008135905061378681614edc565b92915050565b60008151905061379b81614edc565b92915050565b600082601f8301126137b257600080fd5b81356137c2848260208601613687565b91505092915050565b600082601f8301126137dc57600080fd5b81356137ec8482602086016136c5565b91505092915050565b60008135905061380481614ef3565b92915050565b60006020828403121561381c57600080fd5b600061382a84828501613703565b91505092915050565b6000806040838503121561384657600080fd5b600061385485828601613703565b925050602061386585828601613703565b9150509250929050565b60008060006060848603121561388457600080fd5b600061389286828701613703565b93505060206138a386828701613703565b92505060406138b4868287016137f5565b9150509250925092565b600080600080608085870312156138d457600080fd5b60006138e287828801613703565b94505060206138f387828801613703565b9350506040613904878288016137f5565b925050606085013567ffffffffffffffff81111561392157600080fd5b61392d878288016137a1565b91505092959194509250565b6000806040838503121561394c57600080fd5b600061395a85828601613703565b925050602061396b85828601613762565b9150509250929050565b6000806040838503121561398857600080fd5b600061399685828601613703565b92505060206139a7858286016137f5565b9150509250929050565b600080602083850312156139c457600080fd5b600083013567ffffffffffffffff8111156139de57600080fd5b6139ea85828601613718565b92509250509250929050565b600060208284031215613a0857600080fd5b6000613a1684828501613777565b91505092915050565b600060208284031215613a3157600080fd5b6000613a3f8482850161378c565b91505092915050565b600060208284031215613a5a57600080fd5b600082013567ffffffffffffffff811115613a7457600080fd5b613a80848285016137cb565b91505092915050565b600060208284031215613a9b57600080fd5b6000613aa9848285016137f5565b91505092915050565b613abb81614598565b82525050565b613aca816145aa565b82525050565b6000613adb82614440565b613ae58185614456565b9350613af581856020860161461b565b613afe816147e7565b840191505092915050565b6000613b148261444b565b613b1e8185614467565b9350613b2e81856020860161461b565b613b37816147e7565b840191505092915050565b6000613b4d8261444b565b613b578185614478565b9350613b6781856020860161461b565b80840191505092915050565b6000613b80601d83614467565b9150613b8b826147f8565b602082019050919050565b6000613ba3601b83614467565b9150613bae82614821565b602082019050919050565b6000613bc6602b83614467565b9150613bd18261484a565b604082019050919050565b6000613be9603283614467565b9150613bf482614899565b604082019050919050565b6000613c0c602683614467565b9150613c17826148e8565b604082019050919050565b6000613c2f601c83614467565b9150613c3a82614937565b602082019050919050565b6000613c52602483614467565b9150613c5d82614960565b604082019050919050565b6000613c75601983614467565b9150613c80826149af565b602082019050919050565b6000613c98601e83614467565b9150613ca3826149d8565b602082019050919050565b6000613cbb601c83614467565b9150613cc682614a01565b602082019050919050565b6000613cde602c83614467565b9150613ce982614a2a565b604082019050919050565b6000613d01603883614467565b9150613d0c82614a79565b604082019050919050565b6000613d24602a83614467565b9150613d2f82614ac8565b604082019050919050565b6000613d47602983614467565b9150613d5282614b17565b604082019050919050565b6000613d6a601983614467565b9150613d7582614b66565b602082019050919050565b6000613d8d602083614467565b9150613d9882614b8f565b602082019050919050565b6000613db0602c83614467565b9150613dbb82614bb8565b604082019050919050565b6000613dd3602f83614467565b9150613dde82614c07565b604082019050919050565b6000613df6602083614467565b9150613e0182614c56565b602082019050919050565b6000613e19601e83614467565b9150613e2482614c7f565b602082019050919050565b6000613e3c601a83614467565b9150613e4782614ca8565b602082019050919050565b6000613e5f602983614467565b9150613e6a82614cd1565b604082019050919050565b6000613e82602f83614467565b9150613e8d82614d20565b604082019050919050565b6000613ea5602183614467565b9150613eb082614d6f565b604082019050919050565b6000613ec8603183614467565b9150613ed382614dbe565b604082019050919050565b6000613eeb602c83614467565b9150613ef682614e0d565b604082019050919050565b6000613f0e601483614467565b9150613f1982614e5c565b602082019050919050565b6000613f31601883614467565b9150613f3c82614e85565b602082019050919050565b613f5081614602565b82525050565b6000613f628285613b42565b9150613f6e8284613b42565b91508190509392505050565b6000602082019050613f8f6000830184613ab2565b92915050565b6000608082019050613faa6000830187613ab2565b613fb76020830186613ab2565b613fc46040830185613f47565b8181036060830152613fd68184613ad0565b905095945050505050565b6000602082019050613ff66000830184613ac1565b92915050565b600060208201905081810360008301526140168184613b09565b905092915050565b6000602082019050818103600083015261403781613b73565b9050919050565b6000602082019050818103600083015261405781613b96565b9050919050565b6000602082019050818103600083015261407781613bb9565b9050919050565b6000602082019050818103600083015261409781613bdc565b9050919050565b600060208201905081810360008301526140b781613bff565b9050919050565b600060208201905081810360008301526140d781613c22565b9050919050565b600060208201905081810360008301526140f781613c45565b9050919050565b6000602082019050818103600083015261411781613c68565b9050919050565b6000602082019050818103600083015261413781613c8b565b9050919050565b6000602082019050818103600083015261415781613cae565b9050919050565b6000602082019050818103600083015261417781613cd1565b9050919050565b6000602082019050818103600083015261419781613cf4565b9050919050565b600060208201905081810360008301526141b781613d17565b9050919050565b600060208201905081810360008301526141d781613d3a565b9050919050565b600060208201905081810360008301526141f781613d5d565b9050919050565b6000602082019050818103600083015261421781613d80565b9050919050565b6000602082019050818103600083015261423781613da3565b9050919050565b6000602082019050818103600083015261425781613dc6565b9050919050565b6000602082019050818103600083015261427781613de9565b9050919050565b6000602082019050818103600083015261429781613e0c565b9050919050565b600060208201905081810360008301526142b781613e2f565b9050919050565b600060208201905081810360008301526142d781613e52565b9050919050565b600060208201905081810360008301526142f781613e75565b9050919050565b6000602082019050818103600083015261431781613e98565b9050919050565b6000602082019050818103600083015261433781613ebb565b9050919050565b6000602082019050818103600083015261435781613ede565b9050919050565b6000602082019050818103600083015261437781613f01565b9050919050565b6000602082019050818103600083015261439781613f24565b9050919050565b60006020820190506143b36000830184613f47565b92915050565b60006143c36143d4565b90506143cf8282614680565b919050565b6000604051905090565b600067ffffffffffffffff8211156143f9576143f86147b8565b5b614402826147e7565b9050602081019050919050565b600067ffffffffffffffff82111561442a576144296147b8565b5b614433826147e7565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061448e82614602565b915061449983614602565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144ce576144cd61472b565b5b828201905092915050565b60006144e482614602565b91506144ef83614602565b9250826144ff576144fe61475a565b5b828204905092915050565b600061451582614602565b915061452083614602565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145595761455861472b565b5b828202905092915050565b600061456f82614602565b915061457a83614602565b92508282101561458d5761458c61472b565b5b828203905092915050565b60006145a3826145e2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561463957808201518184015260208101905061461e565b83811115614648576000848401525b50505050565b6000600282049050600182168061466657607f821691505b6020821081141561467a57614679614789565b5b50919050565b614689826147e7565b810181811067ffffffffffffffff821117156146a8576146a76147b8565b5b80604052505050565b60006146bc82614602565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146ef576146ee61472b565b5b600182019050919050565b600061470582614602565b915061471083614602565b9250826147205761471f61475a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f596f7520617265206e6f74206f6e2074686520416c6c6f77204c697374000000600082015250565b7f457863656564732072657365727665642041656f6e73206c6566740000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416c72656164792073756d6d6f6e6564206f6e6520667265652041656f6e0000600082015250565b7f45544820616d6f756e74206973206e6f742073756666696369656e7400000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f742061637469766500000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f467265652073756d6d6f6e20706861736520666f7220536b756c6c7820726f6c60008201527f65206973206e6f74206163746976650000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c6973740000600082015250565b7f43616e27742061646420746865206e756c6c2061646472657373000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f457863656564732053554d4d4f4e5f4c494d4954000000000000000000000000600082015250565b7f457863656564732041454f4e535f4d41585f535550504c590000000000000000600082015250565b614eb781614598565b8114614ec257600080fd5b50565b614ece816145aa565b8114614ed957600080fd5b50565b614ee5816145b6565b8114614ef057600080fd5b50565b614efc81614602565b8114614f0757600080fd5b5056fea2646970667358221220dcaaa6ef984f2950485da2181ea0b212a49084008da3188e926af6518f4276aa64736f6c634300080400330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f736b756c6c786e66742e696f2f6170692f61656f6e732f00

Deployed Bytecode

0x60806040526004361061022f5760003560e01c80636352211e1161012e57806395d89b41116100ab578063c87b56dd1161006f578063c87b56dd146107db578063ca80014414610818578063cde0b31e14610841578063e985e9c51461086c578063f2fde38b146108a95761022f565b806395d89b411461070a5780639ae84aeb14610735578063a22cb46514610760578063a51312c814610789578063b88d4fde146107b25761022f565b80637e95a676116100f25780637e95a67614610654578063853828b61461067f5780638d859f3e146106895780638da5cb5b146106b45780638ee5eabf146106df5761022f565b80636352211e1461056f5780636c0360eb146105ac57806370a08231146105d7578063715018a6146106145780637263cfe21461062b5761022f565b806318160ddd116101bc5780633a065892116101805780633a0658921461048c57806342842e0e146104c95780634f6ccce7146104f257806355f804b31461052f57806362aaf036146105585761022f565b806318160ddd146103c657806323b872dd146103f15780632d7e9cf01461041a5780632f745c591461042457806335ee0fd2146104615761022f565b8063081812fc11610203578063081812fc146102f5578063095ea7b3146103325780630fcf2e751461035b57806310969523146103865780631679ad55146103af5761022f565b806208ffdd1461023457806301ffc9a714610271578063035d9f2a146102ae57806306fdde03146102ca575b600080fd5b34801561024057600080fd5b5061025b6004803603810190610256919061380a565b6108d2565b6040516102689190613fe1565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906139f6565b610997565b6040516102a59190613fe1565b60405180910390f35b6102c860048036038101906102c39190613a89565b610a11565b005b3480156102d657600080fd5b506102df610ba6565b6040516102ec9190613ffc565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190613a89565b610c38565b6040516103299190613f7a565b60405180910390f35b34801561033e57600080fd5b5061035960048036038101906103549190613975565b610cbd565b005b34801561036757600080fd5b50610370610dd5565b60405161037d9190613fe1565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a89190613a48565b610de8565b005b3480156103bb57600080fd5b506103c4610e7e565b005b3480156103d257600080fd5b506103db610f26565b6040516103e8919061439e565b60405180910390f35b3480156103fd57600080fd5b506104186004803603810190610413919061386f565b610f33565b005b610422610f93565b005b34801561043057600080fd5b5061044b60048036038101906104469190613975565b6111dc565b604051610458919061439e565b60405180910390f35b34801561046d57600080fd5b50610476611281565b6040516104839190613fe1565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae919061380a565b611294565b6040516104c09190613fe1565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb919061386f565b6112ea565b005b3480156104fe57600080fd5b5061051960048036038101906105149190613a89565b61130a565b604051610526919061439e565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190613a48565b6113a1565b005b34801561056457600080fd5b5061056d611437565b005b34801561057b57600080fd5b5061059660048036038101906105919190613a89565b6114df565b6040516105a39190613f7a565b60405180910390f35b3480156105b857600080fd5b506105c1611591565b6040516105ce9190613ffc565b60405180910390f35b3480156105e357600080fd5b506105fe60048036038101906105f9919061380a565b61161f565b60405161060b919061439e565b60405180910390f35b34801561062057600080fd5b506106296116d7565b005b34801561063757600080fd5b50610652600480360381019061064d91906139b1565b61175f565b005b34801561066057600080fd5b50610669611963565b6040516106769190613ffc565b60405180910390f35b6106876119f1565b005b34801561069557600080fd5b5061069e611c31565b6040516106ab919061439e565b60405180910390f35b3480156106c057600080fd5b506106c9611c3c565b6040516106d69190613f7a565b60405180910390f35b3480156106eb57600080fd5b506106f4611c66565b604051610701919061439e565b60405180910390f35b34801561071657600080fd5b5061071f611c6c565b60405161072c9190613ffc565b60405180910390f35b34801561074157600080fd5b5061074a611cfe565b604051610757919061439e565b60405180910390f35b34801561076c57600080fd5b5061078760048036038101906107829190613939565b611d04565b005b34801561079557600080fd5b506107b060048036038101906107ab91906139b1565b611e85565b005b3480156107be57600080fd5b506107d960048036038101906107d491906138be565b612089565b005b3480156107e757600080fd5b5061080260048036038101906107fd9190613a89565b6120eb565b60405161080f9190613ffc565b60405180910390f35b34801561082457600080fd5b5061083f600480360381019061083a9190613975565b612192565b005b34801561084d57600080fd5b506108566122bd565b604051610863919061439e565b60405180910390f35b34801561087857600080fd5b50610893600480360381019061088e9190613833565b6122c2565b6040516108a09190613fe1565b60405180910390f35b3480156108b557600080fd5b506108d060048036038101906108cb919061380a565b612356565b005b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093a9061427e565b60405180910390fd5b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a0a5750610a098261244e565b5b9050919050565b6000610a1b610f26565b9050600c60009054906101000a900460ff16610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a63906141de565b60405180910390fd5b600a821115610ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa79061435e565b60405180910390fd5b600d546107d0610ac09190614564565b8282610acc9190614483565b1115610b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b049061437e565b60405180910390fd5b3482666a94d74f430000610b21919061450a565b1115610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b599061413e565b60405180910390fd5b60005b82811015610ba157610b8e3360018385610b7f9190614483565b610b899190614483565b612530565b8080610b99906146b1565b915050610b65565b505050565b606060008054610bb59061464e565b80601f0160208091040260200160405190810160405280929190818152602001828054610be19061464e565b8015610c2e5780601f10610c0357610100808354040283529160200191610c2e565b820191906000526020600020905b815481529060010190602001808311610c1157829003601f168201915b5050505050905090565b6000610c438261254e565b610c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c799061421e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cc8826114df565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d30906142fe565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d586125ba565b73ffffffffffffffffffffffffffffffffffffffff161480610d875750610d8681610d816125ba565b6122c2565b5b610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd9061417e565b60405180910390fd5b610dd083836125c2565b505050565b600c60009054906101000a900460ff1681565b610df06125ba565b73ffffffffffffffffffffffffffffffffffffffff16610e0e611c3c565b73ffffffffffffffffffffffffffffffffffffffff1614610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b9061425e565b60405180910390fd5b80600b9080519060200190610e7a9291906135e4565b5050565b610e866125ba565b73ffffffffffffffffffffffffffffffffffffffff16610ea4611c3c565b73ffffffffffffffffffffffffffffffffffffffff1614610efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef19061425e565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600880549050905090565b610f44610f3e6125ba565b8261267b565b610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a9061431e565b60405180910390fd5b610f8e838383612759565b505050565b6000610f9d610f26565b9050600c60019054906101000a900460ff16610fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe59061423e565b60405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661107a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110719061401e565b60405180910390fd5b60001515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461110d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111049061411e565b60405180910390fd5b600d546107d061111d9190614564565b60018261112a9190614483565b111561116b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111629061437e565b60405180910390fd5b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506111d9336001836111d49190614483565b612530565b50565b60006111e78361161f565b8210611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121f9061405e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600c60019054906101000a900460ff1681565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61130583838360405180602001604052806000815250612089565b505050565b6000611314610f26565b8210611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134c9061433e565b60405180910390fd5b6008828154811061138f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6113a96125ba565b73ffffffffffffffffffffffffffffffffffffffff166113c7611c3c565b73ffffffffffffffffffffffffffffffffffffffff161461141d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114149061425e565b60405180910390fd5b80601090805190602001906114339291906135e4565b5050565b61143f6125ba565b73ffffffffffffffffffffffffffffffffffffffff1661145d611c3c565b73ffffffffffffffffffffffffffffffffffffffff16146114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa9061425e565b60405180910390fd5b600c60019054906101000a900460ff1615600c60016101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f906141be565b60405180910390fd5b80915050919050565b6010805461159e9061464e565b80601f01602080910402602001604051908101604052809291908181526020018280546115ca9061464e565b80156116175780601f106115ec57610100808354040283529160200191611617565b820191906000526020600020905b8154815290600101906020018083116115fa57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611690576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116879061419e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116df6125ba565b73ffffffffffffffffffffffffffffffffffffffff166116fd611c3c565b73ffffffffffffffffffffffffffffffffffffffff1614611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a9061425e565b60405180910390fd5b61175d60006129b5565b565b6117676125ba565b73ffffffffffffffffffffffffffffffffffffffff16611785611c3c565b73ffffffffffffffffffffffffffffffffffffffff16146117db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d29061425e565b60405180910390fd5b60005b8282905081101561195e57600073ffffffffffffffffffffffffffffffffffffffff1683838381811061183a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061184f919061380a565b73ffffffffffffffffffffffffffffffffffffffff1614156118a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189d9061429e565b60405180910390fd5b6001600e60008585858181106118e5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906118fa919061380a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611956906146b1565b9150506117de565b505050565b600b80546119709061464e565b80601f016020809104026020016040519081016040528092919081815260200182805461199c9061464e565b80156119e95780601f106119be576101008083540402835291602001916119e9565b820191906000526020600020905b8154815290600101906020018083116119cc57829003601f168201915b505050505081565b6119f96125ba565b73ffffffffffffffffffffffffffffffffffffffff16611a17611c3c565b73ffffffffffffffffffffffffffffffffffffffff1614611a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a649061425e565b60405180910390fd5b6000606447611a7c91906144d9565b9050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc602d83611ac7919061450a565b9081150290604051600060405180830381858888f19350505050611aea57600080fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc601983611b33919061450a565b9081150290604051600060405180830381858888f19350505050611b5657600080fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc601983611b9f919061450a565b9081150290604051600060405180830381858888f19350505050611bc257600080fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc600583611c0b919061450a565b9081150290604051600060405180830381858888f19350505050611c2e57600080fd5b50565b666a94d74f43000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b606060018054611c7b9061464e565b80601f0160208091040260200160405190810160405280929190818152602001828054611ca79061464e565b8015611cf45780601f10611cc957610100808354040283529160200191611cf4565b820191906000526020600020905b815481529060010190602001808311611cd757829003601f168201915b5050505050905090565b6107d081565b611d0c6125ba565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d71906140fe565b60405180910390fd5b8060056000611d876125ba565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e346125ba565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e799190613fe1565b60405180910390a35050565b611e8d6125ba565b73ffffffffffffffffffffffffffffffffffffffff16611eab611c3c565b73ffffffffffffffffffffffffffffffffffffffff1614611f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef89061425e565b60405180910390fd5b60005b8282905081101561208457600073ffffffffffffffffffffffffffffffffffffffff16838383818110611f60577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611f75919061380a565b73ffffffffffffffffffffffffffffffffffffffff161415611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc39061429e565b60405180910390fd5b6000600e600085858581811061200b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190612020919061380a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061207c906146b1565b915050611f04565b505050565b61209a6120946125ba565b8361267b565b6120d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d09061431e565b60405180910390fd5b6120e584848484612a7b565b50505050565b60606120f68261254e565b612135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212c906142de565b60405180910390fd5b600061213f612ad7565b9050600081511161215f576040518060200160405280600081525061218a565b8061216984612b69565b60405160200161217a929190613f56565b6040516020818303038152906040525b915050919050565b61219a6125ba565b73ffffffffffffffffffffffffffffffffffffffff166121b8611c3c565b73ffffffffffffffffffffffffffffffffffffffff161461220e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122059061425e565b60405180910390fd5b600d54811115612253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224a9061403e565b60405180910390fd5b600061225d610f26565b905060005b8281101561229e5761228b846001838561227c9190614483565b6122869190614483565b612530565b8080612296906146b1565b915050612262565b5081600d60008282546122b19190614564565b92505081905550505050565b600a81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61235e6125ba565b73ffffffffffffffffffffffffffffffffffffffff1661237c611c3c565b73ffffffffffffffffffffffffffffffffffffffff16146123d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c99061425e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612442576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124399061409e565b60405180910390fd5b61244b816129b5565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061251957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612529575061252882612d16565b5b9050919050565b61254a828260405180602001604052806000815250612d80565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612635836114df565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006126868261254e565b6126c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bc9061415e565b60405180910390fd5b60006126d0836114df565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061273f57508373ffffffffffffffffffffffffffffffffffffffff1661272784610c38565b73ffffffffffffffffffffffffffffffffffffffff16145b80612750575061274f81856122c2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612779826114df565b73ffffffffffffffffffffffffffffffffffffffff16146127cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c6906142be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561283f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612836906140de565b60405180910390fd5b61284a838383612ddb565b6128556000826125c2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128a59190614564565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128fc9190614483565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a86848484612759565b612a9284848484612eef565b612ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac89061407e565b60405180910390fd5b50505050565b606060108054612ae69061464e565b80601f0160208091040260200160405190810160405280929190818152602001828054612b129061464e565b8015612b5f5780601f10612b3457610100808354040283529160200191612b5f565b820191906000526020600020905b815481529060010190602001808311612b4257829003601f168201915b5050505050905090565b60606000821415612bb1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d11565b600082905060005b60008214612be3578080612bcc906146b1565b915050600a82612bdc91906144d9565b9150612bb9565b60008167ffffffffffffffff811115612c25577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612c575781602001600182028036833780820191505090505b5090505b60008514612d0a57600182612c709190614564565b9150600a85612c7f91906146fa565b6030612c8b9190614483565b60f81b818381518110612cc7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d0391906144d9565b9450612c5b565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612d8a8383613086565b612d976000848484612eef565b612dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcd9061407e565b60405180910390fd5b505050565b612de6838383613254565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e2957612e2481613259565b612e68565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612e6757612e6683826132a2565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612eab57612ea68161340f565b612eea565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ee957612ee88282613552565b5b5b505050565b6000612f108473ffffffffffffffffffffffffffffffffffffffff166135d1565b15613079578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f396125ba565b8786866040518563ffffffff1660e01b8152600401612f5b9493929190613f95565b602060405180830381600087803b158015612f7557600080fd5b505af1925050508015612fa657506040513d601f19601f82011682018060405250810190612fa39190613a1f565b60015b613029573d8060008114612fd6576040519150601f19603f3d011682016040523d82523d6000602084013e612fdb565b606091505b50600081511415613021576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130189061407e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061307e565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ed906141fe565b60405180910390fd5b6130ff8161254e565b1561313f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613136906140be565b60405180910390fd5b61314b60008383612ddb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461319b9190614483565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016132af8461161f565b6132b99190614564565b905060006007600084815260200190815260200160002054905081811461339e576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134239190614564565b9050600060096000848152602001908152602001600020549050600060088381548110613479577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106134c1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613536577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061355d8361161f565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b8280546135f09061464e565b90600052602060002090601f0160209004810192826136125760008555613659565b82601f1061362b57805160ff1916838001178555613659565b82800160010185558215613659579182015b8281111561365857825182559160200191906001019061363d565b5b509050613666919061366a565b5090565b5b8082111561368357600081600090555060010161366b565b5090565b600061369a613695846143de565b6143b9565b9050828152602081018484840111156136b257600080fd5b6136bd84828561460c565b509392505050565b60006136d86136d38461440f565b6143b9565b9050828152602081018484840111156136f057600080fd5b6136fb84828561460c565b509392505050565b60008135905061371281614eae565b92915050565b60008083601f84011261372a57600080fd5b8235905067ffffffffffffffff81111561374357600080fd5b60208301915083602082028301111561375b57600080fd5b9250929050565b60008135905061377181614ec5565b92915050565b60008135905061378681614edc565b92915050565b60008151905061379b81614edc565b92915050565b600082601f8301126137b257600080fd5b81356137c2848260208601613687565b91505092915050565b600082601f8301126137dc57600080fd5b81356137ec8482602086016136c5565b91505092915050565b60008135905061380481614ef3565b92915050565b60006020828403121561381c57600080fd5b600061382a84828501613703565b91505092915050565b6000806040838503121561384657600080fd5b600061385485828601613703565b925050602061386585828601613703565b9150509250929050565b60008060006060848603121561388457600080fd5b600061389286828701613703565b93505060206138a386828701613703565b92505060406138b4868287016137f5565b9150509250925092565b600080600080608085870312156138d457600080fd5b60006138e287828801613703565b94505060206138f387828801613703565b9350506040613904878288016137f5565b925050606085013567ffffffffffffffff81111561392157600080fd5b61392d878288016137a1565b91505092959194509250565b6000806040838503121561394c57600080fd5b600061395a85828601613703565b925050602061396b85828601613762565b9150509250929050565b6000806040838503121561398857600080fd5b600061399685828601613703565b92505060206139a7858286016137f5565b9150509250929050565b600080602083850312156139c457600080fd5b600083013567ffffffffffffffff8111156139de57600080fd5b6139ea85828601613718565b92509250509250929050565b600060208284031215613a0857600080fd5b6000613a1684828501613777565b91505092915050565b600060208284031215613a3157600080fd5b6000613a3f8482850161378c565b91505092915050565b600060208284031215613a5a57600080fd5b600082013567ffffffffffffffff811115613a7457600080fd5b613a80848285016137cb565b91505092915050565b600060208284031215613a9b57600080fd5b6000613aa9848285016137f5565b91505092915050565b613abb81614598565b82525050565b613aca816145aa565b82525050565b6000613adb82614440565b613ae58185614456565b9350613af581856020860161461b565b613afe816147e7565b840191505092915050565b6000613b148261444b565b613b1e8185614467565b9350613b2e81856020860161461b565b613b37816147e7565b840191505092915050565b6000613b4d8261444b565b613b578185614478565b9350613b6781856020860161461b565b80840191505092915050565b6000613b80601d83614467565b9150613b8b826147f8565b602082019050919050565b6000613ba3601b83614467565b9150613bae82614821565b602082019050919050565b6000613bc6602b83614467565b9150613bd18261484a565b604082019050919050565b6000613be9603283614467565b9150613bf482614899565b604082019050919050565b6000613c0c602683614467565b9150613c17826148e8565b604082019050919050565b6000613c2f601c83614467565b9150613c3a82614937565b602082019050919050565b6000613c52602483614467565b9150613c5d82614960565b604082019050919050565b6000613c75601983614467565b9150613c80826149af565b602082019050919050565b6000613c98601e83614467565b9150613ca3826149d8565b602082019050919050565b6000613cbb601c83614467565b9150613cc682614a01565b602082019050919050565b6000613cde602c83614467565b9150613ce982614a2a565b604082019050919050565b6000613d01603883614467565b9150613d0c82614a79565b604082019050919050565b6000613d24602a83614467565b9150613d2f82614ac8565b604082019050919050565b6000613d47602983614467565b9150613d5282614b17565b604082019050919050565b6000613d6a601983614467565b9150613d7582614b66565b602082019050919050565b6000613d8d602083614467565b9150613d9882614b8f565b602082019050919050565b6000613db0602c83614467565b9150613dbb82614bb8565b604082019050919050565b6000613dd3602f83614467565b9150613dde82614c07565b604082019050919050565b6000613df6602083614467565b9150613e0182614c56565b602082019050919050565b6000613e19601e83614467565b9150613e2482614c7f565b602082019050919050565b6000613e3c601a83614467565b9150613e4782614ca8565b602082019050919050565b6000613e5f602983614467565b9150613e6a82614cd1565b604082019050919050565b6000613e82602f83614467565b9150613e8d82614d20565b604082019050919050565b6000613ea5602183614467565b9150613eb082614d6f565b604082019050919050565b6000613ec8603183614467565b9150613ed382614dbe565b604082019050919050565b6000613eeb602c83614467565b9150613ef682614e0d565b604082019050919050565b6000613f0e601483614467565b9150613f1982614e5c565b602082019050919050565b6000613f31601883614467565b9150613f3c82614e85565b602082019050919050565b613f5081614602565b82525050565b6000613f628285613b42565b9150613f6e8284613b42565b91508190509392505050565b6000602082019050613f8f6000830184613ab2565b92915050565b6000608082019050613faa6000830187613ab2565b613fb76020830186613ab2565b613fc46040830185613f47565b8181036060830152613fd68184613ad0565b905095945050505050565b6000602082019050613ff66000830184613ac1565b92915050565b600060208201905081810360008301526140168184613b09565b905092915050565b6000602082019050818103600083015261403781613b73565b9050919050565b6000602082019050818103600083015261405781613b96565b9050919050565b6000602082019050818103600083015261407781613bb9565b9050919050565b6000602082019050818103600083015261409781613bdc565b9050919050565b600060208201905081810360008301526140b781613bff565b9050919050565b600060208201905081810360008301526140d781613c22565b9050919050565b600060208201905081810360008301526140f781613c45565b9050919050565b6000602082019050818103600083015261411781613c68565b9050919050565b6000602082019050818103600083015261413781613c8b565b9050919050565b6000602082019050818103600083015261415781613cae565b9050919050565b6000602082019050818103600083015261417781613cd1565b9050919050565b6000602082019050818103600083015261419781613cf4565b9050919050565b600060208201905081810360008301526141b781613d17565b9050919050565b600060208201905081810360008301526141d781613d3a565b9050919050565b600060208201905081810360008301526141f781613d5d565b9050919050565b6000602082019050818103600083015261421781613d80565b9050919050565b6000602082019050818103600083015261423781613da3565b9050919050565b6000602082019050818103600083015261425781613dc6565b9050919050565b6000602082019050818103600083015261427781613de9565b9050919050565b6000602082019050818103600083015261429781613e0c565b9050919050565b600060208201905081810360008301526142b781613e2f565b9050919050565b600060208201905081810360008301526142d781613e52565b9050919050565b600060208201905081810360008301526142f781613e75565b9050919050565b6000602082019050818103600083015261431781613e98565b9050919050565b6000602082019050818103600083015261433781613ebb565b9050919050565b6000602082019050818103600083015261435781613ede565b9050919050565b6000602082019050818103600083015261437781613f01565b9050919050565b6000602082019050818103600083015261439781613f24565b9050919050565b60006020820190506143b36000830184613f47565b92915050565b60006143c36143d4565b90506143cf8282614680565b919050565b6000604051905090565b600067ffffffffffffffff8211156143f9576143f86147b8565b5b614402826147e7565b9050602081019050919050565b600067ffffffffffffffff82111561442a576144296147b8565b5b614433826147e7565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061448e82614602565b915061449983614602565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144ce576144cd61472b565b5b828201905092915050565b60006144e482614602565b91506144ef83614602565b9250826144ff576144fe61475a565b5b828204905092915050565b600061451582614602565b915061452083614602565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145595761455861472b565b5b828202905092915050565b600061456f82614602565b915061457a83614602565b92508282101561458d5761458c61472b565b5b828203905092915050565b60006145a3826145e2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561463957808201518184015260208101905061461e565b83811115614648576000848401525b50505050565b6000600282049050600182168061466657607f821691505b6020821081141561467a57614679614789565b5b50919050565b614689826147e7565b810181811067ffffffffffffffff821117156146a8576146a76147b8565b5b80604052505050565b60006146bc82614602565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146ef576146ee61472b565b5b600182019050919050565b600061470582614602565b915061471083614602565b9250826147205761471f61475a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f596f7520617265206e6f74206f6e2074686520416c6c6f77204c697374000000600082015250565b7f457863656564732072657365727665642041656f6e73206c6566740000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416c72656164792073756d6d6f6e6564206f6e6520667265652041656f6e0000600082015250565b7f45544820616d6f756e74206973206e6f742073756666696369656e7400000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f742061637469766500000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f467265652073756d6d6f6e20706861736520666f7220536b756c6c7820726f6c60008201527f65206973206e6f74206163746976650000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c6973740000600082015250565b7f43616e27742061646420746865206e756c6c2061646472657373000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f457863656564732053554d4d4f4e5f4c494d4954000000000000000000000000600082015250565b7f457863656564732041454f4e535f4d41585f535550504c590000000000000000600082015250565b614eb781614598565b8114614ec257600080fd5b50565b614ece816145aa565b8114614ed957600080fd5b50565b614ee5816145b6565b8114614ef057600080fd5b50565b614efc81614602565b8114614f0757600080fd5b5056fea2646970667358221220dcaaa6ef984f2950485da2181ea0b212a49084008da3188e926af6518f4276aa64736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f736b756c6c786e66742e696f2f6170692f61656f6e732f00

-----Decoded View---------------
Arg [0] : uri (string): https://skullxnft.io/api/aeons/

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000001f
Arg [2] : 68747470733a2f2f736b756c6c786e66742e696f2f6170692f61656f6e732f00


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.