ETH Price: $3,444.29 (-0.32%)
Gas: 3 Gwei

Token

PolyPixos (POLYPIXOS)
 

Overview

Max Total Supply

1,754 POLYPIXOS

Holders

531

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
octralex.eth
Balance
3 POLYPIXOS
0x8806D2eD87398BEE00Bb044c882406ba8ead0d5A
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

PolyPixos are 3D NFT collectibles made up of 8 subspecies of harmonious alien creatures, soul companions designed to guide you into the Polyverse; a place outside our limited understanding.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PolyPixos

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : PolyPixos.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.2;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

contract PolyPixos is ERC721, ERC721Enumerable, ReentrancyGuard, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;

    string public PROVENANCE = "a70f3c526e578ec1e04477622311dd076169f22cde00aad48994b7f418922ad1";

    uint256 public constant MAX_SUPPLY = 4444;

    uint256 public constant MAX_PURCHASE = 3;

    uint256 public constant PRICE = 0.1111 ether;

    uint256 public constant MINTS_PER_POLYVERSE_PASS = 3;

    IERC721 public polyversePass;

    mapping(uint256 => bool) public usedPolyversePasses;

    enum SalePhase { NOT_OPEN, POLYVERSE_PASS, PRESALE, PUBLIC }

    SalePhase public salePhase;

    mapping(address => uint256) public whitelist;

    mapping(address => uint256) public reserved;

    uint256 private nextTokenId;

    string private tokenBaseURI;    

    event WhitelistAdded(address indexed addr, uint256 indexed tokenAmount);

    constructor(IERC721 _polyversePass) ERC721("PolyPixos", "POLYPIXOS")
    {
        polyversePass = _polyversePass;
        nextTokenId = nextTokenId.add(1);
    }

    function mintWithPolyversePass(uint256 polyversePassTokenId) external nonReentrant {
        require(salePhase >= SalePhase.POLYVERSE_PASS, "Sale phase did not start");
        require(msg.sender == polyversePass.ownerOf(polyversePassTokenId), "Must own specified Polyverse Pass Token ID");
        require(!usedPolyversePasses[polyversePassTokenId], "Already used");
        require(totalSupply().add(MINTS_PER_POLYVERSE_PASS) <= MAX_SUPPLY, "Exceeds max supply");

        usedPolyversePasses[polyversePassTokenId] = true;

        _mint(MINTS_PER_POLYVERSE_PASS);
    }

    function mintReserved(uint256 numberOfNfts) external nonReentrant {
        require(salePhase >= SalePhase.POLYVERSE_PASS, "Sale phase did not start");
        require(totalSupply().add(numberOfNfts) <= MAX_SUPPLY, "Exceeds max supply");
        require(numberOfNfts > 0, "Cannot buy 0");
        require(reserved[msg.sender] >= numberOfNfts, "Not enough reserve allowance");

        reserved[msg.sender] = reserved[msg.sender].sub(numberOfNfts);

        _mint(numberOfNfts);
    }    

    function mintPresale(uint256 numberOfNfts) external nonReentrant payable {
        require(salePhase >= SalePhase.PRESALE, "Sale phase did not start");
        require(totalSupply().add(numberOfNfts) <= MAX_SUPPLY , "Exceeds max supply");
        require(numberOfNfts > 0, "Cannot buy 0");
        require(PRICE.mul(numberOfNfts) == msg.value, "Ether value sent is not correct");
        require(whitelist[msg.sender] >= numberOfNfts, "Not enough presale allowance");

        whitelist[msg.sender] = whitelist[msg.sender].sub(numberOfNfts);

        _mint(numberOfNfts);
    }

    function mint(uint256 numberOfNfts) external nonReentrant payable {
        require(salePhase >= SalePhase.PUBLIC, "Sale phase did not start");
        require(totalSupply().add(numberOfNfts) <= MAX_SUPPLY, "Exceeds max supply");
        require(numberOfNfts > 0, "Cannot buy 0");
        require(numberOfNfts <= MAX_PURCHASE, "You may not buy that many NFTs at once");
        require(PRICE.mul(numberOfNfts) == msg.value, "Ether value sent is not correct");

        _mint(numberOfNfts);
    }

    function _mint(uint256 numberOfNfts) internal {
        for (uint256 i = 0; i < numberOfNfts; i++) {
            _safeMint(msg.sender, nextTokenId); 
            nextTokenId = nextTokenId.add(1);
        }
    }
    
    function addWhitelist(address[] calldata addresses, uint256 numberOfMints) onlyOwner external {
        for (uint256 i = 0; i < addresses.length; i++) {
            whitelist[addresses[i]] = numberOfMints;
        }
    }

    function addReserved(address[] calldata addresses, uint256 numberOfMints) onlyOwner external {
        for (uint256 i = 0; i < addresses.length; i++) {
            reserved[addresses[i]] = numberOfMints;
        }
    }    

    function setSalePhase(SalePhase _salePhase) external onlyOwner {
        salePhase = _salePhase;
    }

    function withdraw() onlyOwner public {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        string memory baseURI = _baseURI();
        return string(abi.encodePacked(baseURI, tokenId.toString()));
    }

    function setTokenBaseURI(string memory _tokenBaseURI) public onlyOwner {
        tokenBaseURI = _tokenBaseURI;
    }

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

    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

File 2 of 15 : 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 3 of 15 : 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 4 of 15 : 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 5 of 15 : 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 6 of 15 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 7 of 15 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 8 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 9 of 15 : 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 10 of 15 : 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 11 of 15 : 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 12 of 15 : 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 13 of 15 : 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 14 of 15 : 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 15 of 15 : 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IERC721","name":"_polyversePass","type":"address"}],"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"WhitelistAdded","type":"event"},{"inputs":[],"name":"MAX_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTS_PER_POLYVERSE_PASS","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":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"addReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"addWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfNfts","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfNfts","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfNfts","type":"uint256"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"polyversePassTokenId","type":"uint256"}],"name":"mintWithPolyversePass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"polyversePass","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"reserved","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":[],"name":"salePhase","outputs":[{"internalType":"enum PolyPixos.SalePhase","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum PolyPixos.SalePhase","name":"_salePhase","type":"uint8"}],"name":"setSalePhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenBaseURI","type":"string"}],"name":"setTokenBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"usedPolyversePasses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806060016040528060408152602001620056c860409139600c90805190602001906200003592919062000282565b503480156200004357600080fd5b506040516200570838038062005708833981810160405281019062000069919062000349565b6040518060400160405280600981526020017f506f6c795069786f7300000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f504f4c595049584f5300000000000000000000000000000000000000000000008152508160009080519060200190620000ed92919062000282565b5080600190805190602001906200010692919062000282565b5050506001600a8190555062000131620001256200019c60201b60201c565b620001a460201b60201c565b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200018f60016012546200026a60201b620024cb1790919060201c565b60128190555050620004d2565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836200027a919062000375565b905092915050565b828054620002909062000424565b90600052602060002090601f016020900481019282620002b4576000855562000300565b82601f10620002cf57805160ff191683800117855562000300565b8280016001018555821562000300579182015b82811115620002ff578251825591602001919060010190620002e2565b5b5090506200030f919062000313565b5090565b5b808211156200032e57600081600090555060010162000314565b5090565b6000815190506200034381620004b8565b92915050565b6000602082840312156200035c57600080fd5b60006200036c8482850162000332565b91505092915050565b600062000382826200041a565b91506200038f836200041a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003c757620003c66200045a565b5b828201905092915050565b6000620003df82620003fa565b9050919050565b6000620003f382620003d2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060028204905060018216806200043d57607f821691505b6020821081141562000454576200045362000489565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b620004c381620003e6565b8114620004cf57600080fd5b50565b6151e680620004e26000396000f3fe6080604052600436106102255760003560e01c80637c62059311610123578063b88d4fde116100ab578063e4f2487a1161006f578063e4f2487a1461081e578063e985e9c514610849578063f2fde38b14610886578063f759867a146108af578063ff0064d6146108cb57610225565b8063b88d4fde14610727578063c87b56dd14610750578063c884f0bb1461078d578063d7228d3e146107b6578063da9425e2146107e157610225565b806395d89b41116100f257806395d89b41146106515780639a5d140b1461067c5780639b19251a146106a5578063a0712d68146106e2578063a22cb465146106fe57610225565b80637c620593146105a75780638d859f3e146105d25780638da5cb5b146105fd5780638ef79e911461062857610225565b80633ccfd60b116101b1578063645b670111610175578063645b6701146104d657806370a08231146104ff5780637146bd081461053c578063715018a6146105675780637ad594311461057e57610225565b80633ccfd60b146103f157806342842e0e146104085780634f6ccce7146104315780636352211e1461046e5780636373a6b1146104ab57610225565b80630bf2063f116101f85780630bf2063f146102f857806318160ddd1461033557806323b872dd146103605780632f745c591461038957806332cb6b0c146103c657610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613bef565b6108f4565b60405161025e91906141fe565b60405180910390f35b34801561027357600080fd5b5061027c610906565b604051610289919061424f565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613cab565b610998565b6040516102c69190614197565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613b5b565b610a1d565b005b34801561030457600080fd5b5061031f600480360381019061031a9190613cab565b610b35565b60405161032c91906141fe565b60405180910390f35b34801561034157600080fd5b5061034a610b55565b60405161035791906145d1565b60405180910390f35b34801561036c57600080fd5b5061038760048036038101906103829190613a55565b610b62565b005b34801561039557600080fd5b506103b060048036038101906103ab9190613b5b565b610bc2565b6040516103bd91906145d1565b60405180910390f35b3480156103d257600080fd5b506103db610c67565b6040516103e891906145d1565b60405180910390f35b3480156103fd57600080fd5b50610406610c6d565b005b34801561041457600080fd5b5061042f600480360381019061042a9190613a55565b610d38565b005b34801561043d57600080fd5b5061045860048036038101906104539190613cab565b610d58565b60405161046591906145d1565b60405180910390f35b34801561047a57600080fd5b5061049560048036038101906104909190613cab565b610def565b6040516104a29190614197565b60405180910390f35b3480156104b757600080fd5b506104c0610ea1565b6040516104cd919061424f565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f89190613b97565b610f2f565b005b34801561050b57600080fd5b50610526600480360381019061052191906139c7565b611063565b60405161053391906145d1565b60405180910390f35b34801561054857600080fd5b5061055161111b565b60405161055e91906145d1565b60405180910390f35b34801561057357600080fd5b5061057c611120565b005b34801561058a57600080fd5b506105a560048036038101906105a09190613c41565b6111a8565b005b3480156105b357600080fd5b506105bc611277565b6040516105c99190614219565b60405180910390f35b3480156105de57600080fd5b506105e761129d565b6040516105f491906145d1565b60405180910390f35b34801561060957600080fd5b506106126112a9565b60405161061f9190614197565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a9190613c6a565b6112d3565b005b34801561065d57600080fd5b50610666611369565b604051610673919061424f565b60405180910390f35b34801561068857600080fd5b506106a3600480360381019061069e9190613cab565b6113fb565b005b3480156106b157600080fd5b506106cc60048036038101906106c791906139c7565b6116d8565b6040516106d991906145d1565b60405180910390f35b6106fc60048036038101906106f79190613cab565b6116f0565b005b34801561070a57600080fd5b5061072560048036038101906107209190613b1f565b611955565b005b34801561073357600080fd5b5061074e60048036038101906107499190613aa4565b611ad6565b005b34801561075c57600080fd5b5061077760048036038101906107729190613cab565b611b38565b604051610784919061424f565b60405180910390f35b34801561079957600080fd5b506107b460048036038101906107af9190613b97565b611b78565b005b3480156107c257600080fd5b506107cb611cac565b6040516107d891906145d1565b60405180910390f35b3480156107ed57600080fd5b50610808600480360381019061080391906139c7565b611cb1565b60405161081591906145d1565b60405180910390f35b34801561082a57600080fd5b50610833611cc9565b6040516108409190614234565b60405180910390f35b34801561085557600080fd5b50610870600480360381019061086b9190613a19565b611cdc565b60405161087d91906141fe565b60405180910390f35b34801561089257600080fd5b506108ad60048036038101906108a891906139c7565b611d70565b005b6108c960048036038101906108c49190613cab565b611e68565b005b3480156108d757600080fd5b506108f260048036038101906108ed9190613cab565b6121a1565b005b60006108ff826124e1565b9050919050565b606060008054610915906148ca565b80601f0160208091040260200160405190810160405280929190818152602001828054610941906148ca565b801561098e5780601f106109635761010080835404028352916020019161098e565b820191906000526020600020905b81548152906001019060200180831161097157829003601f168201915b5050505050905090565b60006109a38261255b565b6109e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d990614471565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2882610def565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9090614511565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab86125c7565b73ffffffffffffffffffffffffffffffffffffffff161480610ae75750610ae681610ae16125c7565b611cdc565b5b610b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1d906143d1565b60405180910390fd5b610b3083836125cf565b505050565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000600880549050905090565b610b73610b6d6125c7565b82612688565b610bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba990614531565b60405180910390fd5b610bbd838383612766565b505050565b6000610bcd83611063565b8210610c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c05906142b1565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61115c81565b610c756125c7565b73ffffffffffffffffffffffffffffffffffffffff16610c936112a9565b73ffffffffffffffffffffffffffffffffffffffff1614610ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce0906144b1565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d34573d6000803e3d6000fd5b5050565b610d5383838360405180602001604052806000815250611ad6565b505050565b6000610d62610b55565b8210610da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9a90614551565b60405180910390fd5b60088281548110610ddd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8f90614411565b60405180910390fd5b80915050919050565b600c8054610eae906148ca565b80601f0160208091040260200160405190810160405280929190818152602001828054610eda906148ca565b8015610f275780601f10610efc57610100808354040283529160200191610f27565b820191906000526020600020905b815481529060010190602001808311610f0a57829003601f168201915b505050505081565b610f376125c7565b73ffffffffffffffffffffffffffffffffffffffff16610f556112a9565b73ffffffffffffffffffffffffffffffffffffffff1614610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa2906144b1565b60405180910390fd5b60005b8383905081101561105d578160106000868685818110610ff7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061100c91906139c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806110559061492d565b915050610fae565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb906143f1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600381565b6111286125c7565b73ffffffffffffffffffffffffffffffffffffffff166111466112a9565b73ffffffffffffffffffffffffffffffffffffffff161461119c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611193906144b1565b60405180910390fd5b6111a660006129c2565b565b6111b06125c7565b73ffffffffffffffffffffffffffffffffffffffff166111ce6112a9565b73ffffffffffffffffffffffffffffffffffffffff1614611224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121b906144b1565b60405180910390fd5b80600f60006101000a81548160ff0219169083600381111561126f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b021790555050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b67018ab4dc828bc00081565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112db6125c7565b73ffffffffffffffffffffffffffffffffffffffff166112f96112a9565b73ffffffffffffffffffffffffffffffffffffffff161461134f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611346906144b1565b60405180910390fd5b8060139080519060200190611365929190613777565b5050565b606060018054611378906148ca565b80601f01602080910402602001604051908101604052809291908181526020018280546113a4906148ca565b80156113f15780601f106113c6576101008083540402835291602001916113f1565b820191906000526020600020905b8154815290600101906020018083116113d457829003601f168201915b5050505050905090565b6002600a541415611441576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143890614591565b60405180910390fd5b6002600a8190555060016003811115611483577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600f60009054906101000a900460ff1660038111156114cb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b101561150c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150390614571565b60405180910390fd5b61115c6115298261151b610b55565b6124cb90919063ffffffff16565b111561156a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156190614431565b60405180910390fd5b600081116115ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a4906144f1565b60405180910390fd5b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561162f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611626906145b1565b60405180910390fd5b61168181601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a8890919063ffffffff16565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506116cd81612a9e565b6001600a8190555050565b60106020528060005260406000206000915090505481565b6002600a541415611736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172d90614591565b60405180910390fd5b6002600a81905550600380811115611777577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600f60009054906101000a900460ff1660038111156117bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1015611800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f790614571565b60405180910390fd5b61115c61181d8261180f610b55565b6124cb90919063ffffffff16565b111561185e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185590614431565b60405180910390fd5b600081116118a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611898906144f1565b60405180910390fd5b60038111156118e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dc90614291565b60405180910390fd5b346119018267018ab4dc828bc000612ae890919063ffffffff16565b14611941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193890614391565b60405180910390fd5b61194a81612a9e565b6001600a8190555050565b61195d6125c7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c290614371565b60405180910390fd5b80600560006119d86125c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a856125c7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aca91906141fe565b60405180910390a35050565b611ae7611ae16125c7565b83612688565b611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90614531565b60405180910390fd5b611b3284848484612afe565b50505050565b60606000611b44612b5a565b905080611b5084612bec565b604051602001611b61929190614173565b604051602081830303815290604052915050919050565b611b806125c7565b73ffffffffffffffffffffffffffffffffffffffff16611b9e6112a9565b73ffffffffffffffffffffffffffffffffffffffff1614611bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611beb906144b1565b60405180910390fd5b60005b83839050811015611ca6578160116000868685818110611c40577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611c5591906139c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611c9e9061492d565b915050611bf7565b50505050565b600381565b60116020528060005260406000206000915090505481565b600f60009054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d786125c7565b73ffffffffffffffffffffffffffffffffffffffff16611d966112a9565b73ffffffffffffffffffffffffffffffffffffffff1614611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de3906144b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e53906142f1565b60405180910390fd5b611e65816129c2565b50565b6002600a541415611eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea590614591565b60405180910390fd5b6002600a8190555060026003811115611ef0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600f60009054906101000a900460ff166003811115611f38577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1015611f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7090614571565b60405180910390fd5b61115c611f9682611f88610b55565b6124cb90919063ffffffff16565b1115611fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fce90614431565b60405180910390fd5b6000811161201a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612011906144f1565b60405180910390fd5b346120368267018ab4dc828bc000612ae890919063ffffffff16565b14612076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206d90614391565b60405180910390fd5b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156120f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ef90614491565b60405180910390fd5b61214a81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a8890919063ffffffff16565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061219681612a9e565b6001600a8190555050565b6002600a5414156121e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121de90614591565b60405180910390fd5b6002600a8190555060016003811115612229577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600f60009054906101000a900460ff166003811115612271577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b10156122b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a990614571565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e826040518263ffffffff1660e01b815260040161230d91906145d1565b60206040518083038186803b15801561232557600080fd5b505afa158015612339573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061235d91906139f0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146123ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c190614331565b60405180910390fd5b600e600082815260200190815260200160002060009054906101000a900460ff161561242b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242290614271565b60405180910390fd5b61115c612449600361243b610b55565b6124cb90919063ffffffff16565b111561248a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248190614431565b60405180910390fd5b6001600e600083815260200190815260200160002060006101000a81548160ff0219169083151502179055506124c06003612a9e565b6001600a8190555050565b600081836124d991906146b6565b905092915050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612554575061255382612d99565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661264283610def565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006126938261255b565b6126d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c9906143b1565b60405180910390fd5b60006126dd83610def565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061274c57508373ffffffffffffffffffffffffffffffffffffffff1661273484610998565b73ffffffffffffffffffffffffffffffffffffffff16145b8061275d575061275c8185611cdc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661278682610def565b73ffffffffffffffffffffffffffffffffffffffff16146127dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d3906144d1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561284c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284390614351565b60405180910390fd5b612857838383612e7b565b6128626000826125cf565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128b29190614797565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461290991906146b6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183612a969190614797565b905092915050565b60005b81811015612ae457612ab533601254612e8b565b612acb60016012546124cb90919063ffffffff16565b6012819055508080612adc9061492d565b915050612aa1565b5050565b60008183612af6919061473d565b905092915050565b612b09848484612766565b612b1584848484612ea9565b612b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4b906142d1565b60405180910390fd5b50505050565b606060138054612b69906148ca565b80601f0160208091040260200160405190810160405280929190818152602001828054612b95906148ca565b8015612be25780601f10612bb757610100808354040283529160200191612be2565b820191906000526020600020905b815481529060010190602001808311612bc557829003601f168201915b5050505050905090565b60606000821415612c34576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d94565b600082905060005b60008214612c66578080612c4f9061492d565b915050600a82612c5f919061470c565b9150612c3c565b60008167ffffffffffffffff811115612ca8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612cda5781602001600182028036833780820191505090505b5090505b60008514612d8d57600182612cf39190614797565b9150600a85612d029190614976565b6030612d0e91906146b6565b60f81b818381518110612d4a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d86919061470c565b9450612cde565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612e6457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612e745750612e7382613040565b5b9050919050565b612e868383836130aa565b505050565b612ea58282604051806020016040528060008152506131be565b5050565b6000612eca8473ffffffffffffffffffffffffffffffffffffffff16613219565b15613033578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ef36125c7565b8786866040518563ffffffff1660e01b8152600401612f1594939291906141b2565b602060405180830381600087803b158015612f2f57600080fd5b505af1925050508015612f6057506040513d601f19601f82011682018060405250810190612f5d9190613c18565b60015b612fe3573d8060008114612f90576040519150601f19603f3d011682016040523d82523d6000602084013e612f95565b606091505b50600081511415612fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd2906142d1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613038565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6130b583838361322c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130f8576130f381613231565b613137565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461313657613135838261327a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561317a57613175816133e7565b6131b9565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146131b8576131b7828261352a565b5b5b505050565b6131c883836135a9565b6131d56000848484612ea9565b613214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320b906142d1565b60405180910390fd5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161328784611063565b6132919190614797565b9050600060076000848152602001908152602001600020549050818114613376576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506133fb9190614797565b9050600060096000848152602001908152602001600020549050600060088381548110613451577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613499577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061350e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061353583611063565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161361090614451565b60405180910390fd5b6136228161255b565b15613662576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161365990614311565b60405180910390fd5b61366e60008383612e7b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136be91906146b6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613783906148ca565b90600052602060002090601f0160209004810192826137a557600085556137ec565b82601f106137be57805160ff19168380011785556137ec565b828001600101855582156137ec579182015b828111156137eb5782518255916020019190600101906137d0565b5b5090506137f991906137fd565b5090565b5b808211156138165760008160009055506001016137fe565b5090565b600061382d61382884614611565b6145ec565b90508281526020810184848401111561384557600080fd5b613850848285614888565b509392505050565b600061386b61386684614642565b6145ec565b90508281526020810184848401111561388357600080fd5b61388e848285614888565b509392505050565b6000813590506138a581615144565b92915050565b6000815190506138ba81615144565b92915050565b60008083601f8401126138d257600080fd5b8235905067ffffffffffffffff8111156138eb57600080fd5b60208301915083602082028301111561390357600080fd5b9250929050565b6000813590506139198161515b565b92915050565b60008135905061392e81615172565b92915050565b60008151905061394381615172565b92915050565b600082601f83011261395a57600080fd5b813561396a84826020860161381a565b91505092915050565b60008135905061398281615189565b92915050565b600082601f83011261399957600080fd5b81356139a9848260208601613858565b91505092915050565b6000813590506139c181615199565b92915050565b6000602082840312156139d957600080fd5b60006139e784828501613896565b91505092915050565b600060208284031215613a0257600080fd5b6000613a10848285016138ab565b91505092915050565b60008060408385031215613a2c57600080fd5b6000613a3a85828601613896565b9250506020613a4b85828601613896565b9150509250929050565b600080600060608486031215613a6a57600080fd5b6000613a7886828701613896565b9350506020613a8986828701613896565b9250506040613a9a868287016139b2565b9150509250925092565b60008060008060808587031215613aba57600080fd5b6000613ac887828801613896565b9450506020613ad987828801613896565b9350506040613aea878288016139b2565b925050606085013567ffffffffffffffff811115613b0757600080fd5b613b1387828801613949565b91505092959194509250565b60008060408385031215613b3257600080fd5b6000613b4085828601613896565b9250506020613b518582860161390a565b9150509250929050565b60008060408385031215613b6e57600080fd5b6000613b7c85828601613896565b9250506020613b8d858286016139b2565b9150509250929050565b600080600060408486031215613bac57600080fd5b600084013567ffffffffffffffff811115613bc657600080fd5b613bd2868287016138c0565b93509350506020613be5868287016139b2565b9150509250925092565b600060208284031215613c0157600080fd5b6000613c0f8482850161391f565b91505092915050565b600060208284031215613c2a57600080fd5b6000613c3884828501613934565b91505092915050565b600060208284031215613c5357600080fd5b6000613c6184828501613973565b91505092915050565b600060208284031215613c7c57600080fd5b600082013567ffffffffffffffff811115613c9657600080fd5b613ca284828501613988565b91505092915050565b600060208284031215613cbd57600080fd5b6000613ccb848285016139b2565b91505092915050565b613cdd816147cb565b82525050565b613cec816147dd565b82525050565b6000613cfd82614673565b613d078185614689565b9350613d17818560208601614897565b613d2081614a92565b840191505092915050565b613d3481614852565b82525050565b613d4381614876565b82525050565b6000613d548261467e565b613d5e818561469a565b9350613d6e818560208601614897565b613d7781614a92565b840191505092915050565b6000613d8d8261467e565b613d9781856146ab565b9350613da7818560208601614897565b80840191505092915050565b6000613dc0600c8361469a565b9150613dcb82614aa3565b602082019050919050565b6000613de360268361469a565b9150613dee82614acc565b604082019050919050565b6000613e06602b8361469a565b9150613e1182614b1b565b604082019050919050565b6000613e2960328361469a565b9150613e3482614b6a565b604082019050919050565b6000613e4c60268361469a565b9150613e5782614bb9565b604082019050919050565b6000613e6f601c8361469a565b9150613e7a82614c08565b602082019050919050565b6000613e92602a8361469a565b9150613e9d82614c31565b604082019050919050565b6000613eb560248361469a565b9150613ec082614c80565b604082019050919050565b6000613ed860198361469a565b9150613ee382614ccf565b602082019050919050565b6000613efb601f8361469a565b9150613f0682614cf8565b602082019050919050565b6000613f1e602c8361469a565b9150613f2982614d21565b604082019050919050565b6000613f4160388361469a565b9150613f4c82614d70565b604082019050919050565b6000613f64602a8361469a565b9150613f6f82614dbf565b604082019050919050565b6000613f8760298361469a565b9150613f9282614e0e565b604082019050919050565b6000613faa60128361469a565b9150613fb582614e5d565b602082019050919050565b6000613fcd60208361469a565b9150613fd882614e86565b602082019050919050565b6000613ff0602c8361469a565b9150613ffb82614eaf565b604082019050919050565b6000614013601c8361469a565b915061401e82614efe565b602082019050919050565b600061403660208361469a565b915061404182614f27565b602082019050919050565b600061405960298361469a565b915061406482614f50565b604082019050919050565b600061407c600c8361469a565b915061408782614f9f565b602082019050919050565b600061409f60218361469a565b91506140aa82614fc8565b604082019050919050565b60006140c260318361469a565b91506140cd82615017565b604082019050919050565b60006140e5602c8361469a565b91506140f082615066565b604082019050919050565b600061410860188361469a565b9150614113826150b5565b602082019050919050565b600061412b601f8361469a565b9150614136826150de565b602082019050919050565b600061414e601c8361469a565b915061415982615107565b602082019050919050565b61416d81614848565b82525050565b600061417f8285613d82565b915061418b8284613d82565b91508190509392505050565b60006020820190506141ac6000830184613cd4565b92915050565b60006080820190506141c76000830187613cd4565b6141d46020830186613cd4565b6141e16040830185614164565b81810360608301526141f38184613cf2565b905095945050505050565b60006020820190506142136000830184613ce3565b92915050565b600060208201905061422e6000830184613d2b565b92915050565b60006020820190506142496000830184613d3a565b92915050565b600060208201905081810360008301526142698184613d49565b905092915050565b6000602082019050818103600083015261428a81613db3565b9050919050565b600060208201905081810360008301526142aa81613dd6565b9050919050565b600060208201905081810360008301526142ca81613df9565b9050919050565b600060208201905081810360008301526142ea81613e1c565b9050919050565b6000602082019050818103600083015261430a81613e3f565b9050919050565b6000602082019050818103600083015261432a81613e62565b9050919050565b6000602082019050818103600083015261434a81613e85565b9050919050565b6000602082019050818103600083015261436a81613ea8565b9050919050565b6000602082019050818103600083015261438a81613ecb565b9050919050565b600060208201905081810360008301526143aa81613eee565b9050919050565b600060208201905081810360008301526143ca81613f11565b9050919050565b600060208201905081810360008301526143ea81613f34565b9050919050565b6000602082019050818103600083015261440a81613f57565b9050919050565b6000602082019050818103600083015261442a81613f7a565b9050919050565b6000602082019050818103600083015261444a81613f9d565b9050919050565b6000602082019050818103600083015261446a81613fc0565b9050919050565b6000602082019050818103600083015261448a81613fe3565b9050919050565b600060208201905081810360008301526144aa81614006565b9050919050565b600060208201905081810360008301526144ca81614029565b9050919050565b600060208201905081810360008301526144ea8161404c565b9050919050565b6000602082019050818103600083015261450a8161406f565b9050919050565b6000602082019050818103600083015261452a81614092565b9050919050565b6000602082019050818103600083015261454a816140b5565b9050919050565b6000602082019050818103600083015261456a816140d8565b9050919050565b6000602082019050818103600083015261458a816140fb565b9050919050565b600060208201905081810360008301526145aa8161411e565b9050919050565b600060208201905081810360008301526145ca81614141565b9050919050565b60006020820190506145e66000830184614164565b92915050565b60006145f6614607565b905061460282826148fc565b919050565b6000604051905090565b600067ffffffffffffffff82111561462c5761462b614a63565b5b61463582614a92565b9050602081019050919050565b600067ffffffffffffffff82111561465d5761465c614a63565b5b61466682614a92565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006146c182614848565b91506146cc83614848565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614701576147006149a7565b5b828201905092915050565b600061471782614848565b915061472283614848565b925082614732576147316149d6565b5b828204905092915050565b600061474882614848565b915061475383614848565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561478c5761478b6149a7565b5b828202905092915050565b60006147a282614848565b91506147ad83614848565b9250828210156147c0576147bf6149a7565b5b828203905092915050565b60006147d682614828565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600081905061482382615130565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061485d82614864565b9050919050565b600061486f82614828565b9050919050565b600061488182614815565b9050919050565b82818337600083830152505050565b60005b838110156148b557808201518184015260208101905061489a565b838111156148c4576000848401525b50505050565b600060028204905060018216806148e257607f821691505b602082108114156148f6576148f5614a34565b5b50919050565b61490582614a92565b810181811067ffffffffffffffff8211171561492457614923614a63565b5b80604052505050565b600061493882614848565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561496b5761496a6149a7565b5b600182019050919050565b600061498182614848565b915061498c83614848565b92508261499c5761499b6149d6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f416c726561647920757365640000000000000000000000000000000000000000600082015250565b7f596f75206d6179206e6f74206275792074686174206d616e79204e465473206160008201527f74206f6e63650000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d757374206f776e2073706563696669656420506f6c7976657273652050617360008201527f7320546f6b656e20494400000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682070726573616c6520616c6c6f77616e636500000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f742062757920300000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f53616c6520706861736520646964206e6f742073746172740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4e6f7420656e6f756768207265736572766520616c6c6f77616e636500000000600082015250565b6004811061514157615140614a05565b5b50565b61514d816147cb565b811461515857600080fd5b50565b615164816147dd565b811461516f57600080fd5b50565b61517b816147e9565b811461518657600080fd5b50565b6004811061519657600080fd5b50565b6151a281614848565b81146151ad57600080fd5b5056fea2646970667358221220c5c7ef9b9137578351fac3be6b5a2a8dab949b7254b15bebdbd51587022cdde264736f6c63430008040033613730663363353236653537386563316530343437373632323331316464303736313639663232636465303061616434383939346237663431383932326164310000000000000000000000002b7c4a8f991877339c23f87d731a49233d96d87d

Deployed Bytecode

0x6080604052600436106102255760003560e01c80637c62059311610123578063b88d4fde116100ab578063e4f2487a1161006f578063e4f2487a1461081e578063e985e9c514610849578063f2fde38b14610886578063f759867a146108af578063ff0064d6146108cb57610225565b8063b88d4fde14610727578063c87b56dd14610750578063c884f0bb1461078d578063d7228d3e146107b6578063da9425e2146107e157610225565b806395d89b41116100f257806395d89b41146106515780639a5d140b1461067c5780639b19251a146106a5578063a0712d68146106e2578063a22cb465146106fe57610225565b80637c620593146105a75780638d859f3e146105d25780638da5cb5b146105fd5780638ef79e911461062857610225565b80633ccfd60b116101b1578063645b670111610175578063645b6701146104d657806370a08231146104ff5780637146bd081461053c578063715018a6146105675780637ad594311461057e57610225565b80633ccfd60b146103f157806342842e0e146104085780634f6ccce7146104315780636352211e1461046e5780636373a6b1146104ab57610225565b80630bf2063f116101f85780630bf2063f146102f857806318160ddd1461033557806323b872dd146103605780632f745c591461038957806332cb6b0c146103c657610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613bef565b6108f4565b60405161025e91906141fe565b60405180910390f35b34801561027357600080fd5b5061027c610906565b604051610289919061424f565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613cab565b610998565b6040516102c69190614197565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613b5b565b610a1d565b005b34801561030457600080fd5b5061031f600480360381019061031a9190613cab565b610b35565b60405161032c91906141fe565b60405180910390f35b34801561034157600080fd5b5061034a610b55565b60405161035791906145d1565b60405180910390f35b34801561036c57600080fd5b5061038760048036038101906103829190613a55565b610b62565b005b34801561039557600080fd5b506103b060048036038101906103ab9190613b5b565b610bc2565b6040516103bd91906145d1565b60405180910390f35b3480156103d257600080fd5b506103db610c67565b6040516103e891906145d1565b60405180910390f35b3480156103fd57600080fd5b50610406610c6d565b005b34801561041457600080fd5b5061042f600480360381019061042a9190613a55565b610d38565b005b34801561043d57600080fd5b5061045860048036038101906104539190613cab565b610d58565b60405161046591906145d1565b60405180910390f35b34801561047a57600080fd5b5061049560048036038101906104909190613cab565b610def565b6040516104a29190614197565b60405180910390f35b3480156104b757600080fd5b506104c0610ea1565b6040516104cd919061424f565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f89190613b97565b610f2f565b005b34801561050b57600080fd5b50610526600480360381019061052191906139c7565b611063565b60405161053391906145d1565b60405180910390f35b34801561054857600080fd5b5061055161111b565b60405161055e91906145d1565b60405180910390f35b34801561057357600080fd5b5061057c611120565b005b34801561058a57600080fd5b506105a560048036038101906105a09190613c41565b6111a8565b005b3480156105b357600080fd5b506105bc611277565b6040516105c99190614219565b60405180910390f35b3480156105de57600080fd5b506105e761129d565b6040516105f491906145d1565b60405180910390f35b34801561060957600080fd5b506106126112a9565b60405161061f9190614197565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a9190613c6a565b6112d3565b005b34801561065d57600080fd5b50610666611369565b604051610673919061424f565b60405180910390f35b34801561068857600080fd5b506106a3600480360381019061069e9190613cab565b6113fb565b005b3480156106b157600080fd5b506106cc60048036038101906106c791906139c7565b6116d8565b6040516106d991906145d1565b60405180910390f35b6106fc60048036038101906106f79190613cab565b6116f0565b005b34801561070a57600080fd5b5061072560048036038101906107209190613b1f565b611955565b005b34801561073357600080fd5b5061074e60048036038101906107499190613aa4565b611ad6565b005b34801561075c57600080fd5b5061077760048036038101906107729190613cab565b611b38565b604051610784919061424f565b60405180910390f35b34801561079957600080fd5b506107b460048036038101906107af9190613b97565b611b78565b005b3480156107c257600080fd5b506107cb611cac565b6040516107d891906145d1565b60405180910390f35b3480156107ed57600080fd5b50610808600480360381019061080391906139c7565b611cb1565b60405161081591906145d1565b60405180910390f35b34801561082a57600080fd5b50610833611cc9565b6040516108409190614234565b60405180910390f35b34801561085557600080fd5b50610870600480360381019061086b9190613a19565b611cdc565b60405161087d91906141fe565b60405180910390f35b34801561089257600080fd5b506108ad60048036038101906108a891906139c7565b611d70565b005b6108c960048036038101906108c49190613cab565b611e68565b005b3480156108d757600080fd5b506108f260048036038101906108ed9190613cab565b6121a1565b005b60006108ff826124e1565b9050919050565b606060008054610915906148ca565b80601f0160208091040260200160405190810160405280929190818152602001828054610941906148ca565b801561098e5780601f106109635761010080835404028352916020019161098e565b820191906000526020600020905b81548152906001019060200180831161097157829003601f168201915b5050505050905090565b60006109a38261255b565b6109e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d990614471565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2882610def565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9090614511565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab86125c7565b73ffffffffffffffffffffffffffffffffffffffff161480610ae75750610ae681610ae16125c7565b611cdc565b5b610b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1d906143d1565b60405180910390fd5b610b3083836125cf565b505050565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000600880549050905090565b610b73610b6d6125c7565b82612688565b610bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba990614531565b60405180910390fd5b610bbd838383612766565b505050565b6000610bcd83611063565b8210610c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c05906142b1565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61115c81565b610c756125c7565b73ffffffffffffffffffffffffffffffffffffffff16610c936112a9565b73ffffffffffffffffffffffffffffffffffffffff1614610ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce0906144b1565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d34573d6000803e3d6000fd5b5050565b610d5383838360405180602001604052806000815250611ad6565b505050565b6000610d62610b55565b8210610da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9a90614551565b60405180910390fd5b60088281548110610ddd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8f90614411565b60405180910390fd5b80915050919050565b600c8054610eae906148ca565b80601f0160208091040260200160405190810160405280929190818152602001828054610eda906148ca565b8015610f275780601f10610efc57610100808354040283529160200191610f27565b820191906000526020600020905b815481529060010190602001808311610f0a57829003601f168201915b505050505081565b610f376125c7565b73ffffffffffffffffffffffffffffffffffffffff16610f556112a9565b73ffffffffffffffffffffffffffffffffffffffff1614610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa2906144b1565b60405180910390fd5b60005b8383905081101561105d578160106000868685818110610ff7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061100c91906139c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806110559061492d565b915050610fae565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb906143f1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600381565b6111286125c7565b73ffffffffffffffffffffffffffffffffffffffff166111466112a9565b73ffffffffffffffffffffffffffffffffffffffff161461119c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611193906144b1565b60405180910390fd5b6111a660006129c2565b565b6111b06125c7565b73ffffffffffffffffffffffffffffffffffffffff166111ce6112a9565b73ffffffffffffffffffffffffffffffffffffffff1614611224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121b906144b1565b60405180910390fd5b80600f60006101000a81548160ff0219169083600381111561126f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b021790555050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b67018ab4dc828bc00081565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112db6125c7565b73ffffffffffffffffffffffffffffffffffffffff166112f96112a9565b73ffffffffffffffffffffffffffffffffffffffff161461134f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611346906144b1565b60405180910390fd5b8060139080519060200190611365929190613777565b5050565b606060018054611378906148ca565b80601f01602080910402602001604051908101604052809291908181526020018280546113a4906148ca565b80156113f15780601f106113c6576101008083540402835291602001916113f1565b820191906000526020600020905b8154815290600101906020018083116113d457829003601f168201915b5050505050905090565b6002600a541415611441576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143890614591565b60405180910390fd5b6002600a8190555060016003811115611483577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600f60009054906101000a900460ff1660038111156114cb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b101561150c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150390614571565b60405180910390fd5b61115c6115298261151b610b55565b6124cb90919063ffffffff16565b111561156a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156190614431565b60405180910390fd5b600081116115ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a4906144f1565b60405180910390fd5b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561162f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611626906145b1565b60405180910390fd5b61168181601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a8890919063ffffffff16565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506116cd81612a9e565b6001600a8190555050565b60106020528060005260406000206000915090505481565b6002600a541415611736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172d90614591565b60405180910390fd5b6002600a81905550600380811115611777577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600f60009054906101000a900460ff1660038111156117bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1015611800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f790614571565b60405180910390fd5b61115c61181d8261180f610b55565b6124cb90919063ffffffff16565b111561185e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185590614431565b60405180910390fd5b600081116118a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611898906144f1565b60405180910390fd5b60038111156118e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dc90614291565b60405180910390fd5b346119018267018ab4dc828bc000612ae890919063ffffffff16565b14611941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193890614391565b60405180910390fd5b61194a81612a9e565b6001600a8190555050565b61195d6125c7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c290614371565b60405180910390fd5b80600560006119d86125c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a856125c7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aca91906141fe565b60405180910390a35050565b611ae7611ae16125c7565b83612688565b611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90614531565b60405180910390fd5b611b3284848484612afe565b50505050565b60606000611b44612b5a565b905080611b5084612bec565b604051602001611b61929190614173565b604051602081830303815290604052915050919050565b611b806125c7565b73ffffffffffffffffffffffffffffffffffffffff16611b9e6112a9565b73ffffffffffffffffffffffffffffffffffffffff1614611bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611beb906144b1565b60405180910390fd5b60005b83839050811015611ca6578160116000868685818110611c40577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611c5591906139c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611c9e9061492d565b915050611bf7565b50505050565b600381565b60116020528060005260406000206000915090505481565b600f60009054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d786125c7565b73ffffffffffffffffffffffffffffffffffffffff16611d966112a9565b73ffffffffffffffffffffffffffffffffffffffff1614611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de3906144b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e53906142f1565b60405180910390fd5b611e65816129c2565b50565b6002600a541415611eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea590614591565b60405180910390fd5b6002600a8190555060026003811115611ef0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600f60009054906101000a900460ff166003811115611f38577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1015611f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7090614571565b60405180910390fd5b61115c611f9682611f88610b55565b6124cb90919063ffffffff16565b1115611fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fce90614431565b60405180910390fd5b6000811161201a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612011906144f1565b60405180910390fd5b346120368267018ab4dc828bc000612ae890919063ffffffff16565b14612076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206d90614391565b60405180910390fd5b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156120f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ef90614491565b60405180910390fd5b61214a81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a8890919063ffffffff16565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061219681612a9e565b6001600a8190555050565b6002600a5414156121e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121de90614591565b60405180910390fd5b6002600a8190555060016003811115612229577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600f60009054906101000a900460ff166003811115612271577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b10156122b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a990614571565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e826040518263ffffffff1660e01b815260040161230d91906145d1565b60206040518083038186803b15801561232557600080fd5b505afa158015612339573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061235d91906139f0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146123ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c190614331565b60405180910390fd5b600e600082815260200190815260200160002060009054906101000a900460ff161561242b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242290614271565b60405180910390fd5b61115c612449600361243b610b55565b6124cb90919063ffffffff16565b111561248a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248190614431565b60405180910390fd5b6001600e600083815260200190815260200160002060006101000a81548160ff0219169083151502179055506124c06003612a9e565b6001600a8190555050565b600081836124d991906146b6565b905092915050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612554575061255382612d99565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661264283610def565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006126938261255b565b6126d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c9906143b1565b60405180910390fd5b60006126dd83610def565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061274c57508373ffffffffffffffffffffffffffffffffffffffff1661273484610998565b73ffffffffffffffffffffffffffffffffffffffff16145b8061275d575061275c8185611cdc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661278682610def565b73ffffffffffffffffffffffffffffffffffffffff16146127dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d3906144d1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561284c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284390614351565b60405180910390fd5b612857838383612e7b565b6128626000826125cf565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128b29190614797565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461290991906146b6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183612a969190614797565b905092915050565b60005b81811015612ae457612ab533601254612e8b565b612acb60016012546124cb90919063ffffffff16565b6012819055508080612adc9061492d565b915050612aa1565b5050565b60008183612af6919061473d565b905092915050565b612b09848484612766565b612b1584848484612ea9565b612b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4b906142d1565b60405180910390fd5b50505050565b606060138054612b69906148ca565b80601f0160208091040260200160405190810160405280929190818152602001828054612b95906148ca565b8015612be25780601f10612bb757610100808354040283529160200191612be2565b820191906000526020600020905b815481529060010190602001808311612bc557829003601f168201915b5050505050905090565b60606000821415612c34576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d94565b600082905060005b60008214612c66578080612c4f9061492d565b915050600a82612c5f919061470c565b9150612c3c565b60008167ffffffffffffffff811115612ca8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612cda5781602001600182028036833780820191505090505b5090505b60008514612d8d57600182612cf39190614797565b9150600a85612d029190614976565b6030612d0e91906146b6565b60f81b818381518110612d4a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d86919061470c565b9450612cde565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612e6457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612e745750612e7382613040565b5b9050919050565b612e868383836130aa565b505050565b612ea58282604051806020016040528060008152506131be565b5050565b6000612eca8473ffffffffffffffffffffffffffffffffffffffff16613219565b15613033578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ef36125c7565b8786866040518563ffffffff1660e01b8152600401612f1594939291906141b2565b602060405180830381600087803b158015612f2f57600080fd5b505af1925050508015612f6057506040513d601f19601f82011682018060405250810190612f5d9190613c18565b60015b612fe3573d8060008114612f90576040519150601f19603f3d011682016040523d82523d6000602084013e612f95565b606091505b50600081511415612fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd2906142d1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613038565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6130b583838361322c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130f8576130f381613231565b613137565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461313657613135838261327a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561317a57613175816133e7565b6131b9565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146131b8576131b7828261352a565b5b5b505050565b6131c883836135a9565b6131d56000848484612ea9565b613214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320b906142d1565b60405180910390fd5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161328784611063565b6132919190614797565b9050600060076000848152602001908152602001600020549050818114613376576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506133fb9190614797565b9050600060096000848152602001908152602001600020549050600060088381548110613451577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613499577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061350e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061353583611063565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161361090614451565b60405180910390fd5b6136228161255b565b15613662576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161365990614311565b60405180910390fd5b61366e60008383612e7b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136be91906146b6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613783906148ca565b90600052602060002090601f0160209004810192826137a557600085556137ec565b82601f106137be57805160ff19168380011785556137ec565b828001600101855582156137ec579182015b828111156137eb5782518255916020019190600101906137d0565b5b5090506137f991906137fd565b5090565b5b808211156138165760008160009055506001016137fe565b5090565b600061382d61382884614611565b6145ec565b90508281526020810184848401111561384557600080fd5b613850848285614888565b509392505050565b600061386b61386684614642565b6145ec565b90508281526020810184848401111561388357600080fd5b61388e848285614888565b509392505050565b6000813590506138a581615144565b92915050565b6000815190506138ba81615144565b92915050565b60008083601f8401126138d257600080fd5b8235905067ffffffffffffffff8111156138eb57600080fd5b60208301915083602082028301111561390357600080fd5b9250929050565b6000813590506139198161515b565b92915050565b60008135905061392e81615172565b92915050565b60008151905061394381615172565b92915050565b600082601f83011261395a57600080fd5b813561396a84826020860161381a565b91505092915050565b60008135905061398281615189565b92915050565b600082601f83011261399957600080fd5b81356139a9848260208601613858565b91505092915050565b6000813590506139c181615199565b92915050565b6000602082840312156139d957600080fd5b60006139e784828501613896565b91505092915050565b600060208284031215613a0257600080fd5b6000613a10848285016138ab565b91505092915050565b60008060408385031215613a2c57600080fd5b6000613a3a85828601613896565b9250506020613a4b85828601613896565b9150509250929050565b600080600060608486031215613a6a57600080fd5b6000613a7886828701613896565b9350506020613a8986828701613896565b9250506040613a9a868287016139b2565b9150509250925092565b60008060008060808587031215613aba57600080fd5b6000613ac887828801613896565b9450506020613ad987828801613896565b9350506040613aea878288016139b2565b925050606085013567ffffffffffffffff811115613b0757600080fd5b613b1387828801613949565b91505092959194509250565b60008060408385031215613b3257600080fd5b6000613b4085828601613896565b9250506020613b518582860161390a565b9150509250929050565b60008060408385031215613b6e57600080fd5b6000613b7c85828601613896565b9250506020613b8d858286016139b2565b9150509250929050565b600080600060408486031215613bac57600080fd5b600084013567ffffffffffffffff811115613bc657600080fd5b613bd2868287016138c0565b93509350506020613be5868287016139b2565b9150509250925092565b600060208284031215613c0157600080fd5b6000613c0f8482850161391f565b91505092915050565b600060208284031215613c2a57600080fd5b6000613c3884828501613934565b91505092915050565b600060208284031215613c5357600080fd5b6000613c6184828501613973565b91505092915050565b600060208284031215613c7c57600080fd5b600082013567ffffffffffffffff811115613c9657600080fd5b613ca284828501613988565b91505092915050565b600060208284031215613cbd57600080fd5b6000613ccb848285016139b2565b91505092915050565b613cdd816147cb565b82525050565b613cec816147dd565b82525050565b6000613cfd82614673565b613d078185614689565b9350613d17818560208601614897565b613d2081614a92565b840191505092915050565b613d3481614852565b82525050565b613d4381614876565b82525050565b6000613d548261467e565b613d5e818561469a565b9350613d6e818560208601614897565b613d7781614a92565b840191505092915050565b6000613d8d8261467e565b613d9781856146ab565b9350613da7818560208601614897565b80840191505092915050565b6000613dc0600c8361469a565b9150613dcb82614aa3565b602082019050919050565b6000613de360268361469a565b9150613dee82614acc565b604082019050919050565b6000613e06602b8361469a565b9150613e1182614b1b565b604082019050919050565b6000613e2960328361469a565b9150613e3482614b6a565b604082019050919050565b6000613e4c60268361469a565b9150613e5782614bb9565b604082019050919050565b6000613e6f601c8361469a565b9150613e7a82614c08565b602082019050919050565b6000613e92602a8361469a565b9150613e9d82614c31565b604082019050919050565b6000613eb560248361469a565b9150613ec082614c80565b604082019050919050565b6000613ed860198361469a565b9150613ee382614ccf565b602082019050919050565b6000613efb601f8361469a565b9150613f0682614cf8565b602082019050919050565b6000613f1e602c8361469a565b9150613f2982614d21565b604082019050919050565b6000613f4160388361469a565b9150613f4c82614d70565b604082019050919050565b6000613f64602a8361469a565b9150613f6f82614dbf565b604082019050919050565b6000613f8760298361469a565b9150613f9282614e0e565b604082019050919050565b6000613faa60128361469a565b9150613fb582614e5d565b602082019050919050565b6000613fcd60208361469a565b9150613fd882614e86565b602082019050919050565b6000613ff0602c8361469a565b9150613ffb82614eaf565b604082019050919050565b6000614013601c8361469a565b915061401e82614efe565b602082019050919050565b600061403660208361469a565b915061404182614f27565b602082019050919050565b600061405960298361469a565b915061406482614f50565b604082019050919050565b600061407c600c8361469a565b915061408782614f9f565b602082019050919050565b600061409f60218361469a565b91506140aa82614fc8565b604082019050919050565b60006140c260318361469a565b91506140cd82615017565b604082019050919050565b60006140e5602c8361469a565b91506140f082615066565b604082019050919050565b600061410860188361469a565b9150614113826150b5565b602082019050919050565b600061412b601f8361469a565b9150614136826150de565b602082019050919050565b600061414e601c8361469a565b915061415982615107565b602082019050919050565b61416d81614848565b82525050565b600061417f8285613d82565b915061418b8284613d82565b91508190509392505050565b60006020820190506141ac6000830184613cd4565b92915050565b60006080820190506141c76000830187613cd4565b6141d46020830186613cd4565b6141e16040830185614164565b81810360608301526141f38184613cf2565b905095945050505050565b60006020820190506142136000830184613ce3565b92915050565b600060208201905061422e6000830184613d2b565b92915050565b60006020820190506142496000830184613d3a565b92915050565b600060208201905081810360008301526142698184613d49565b905092915050565b6000602082019050818103600083015261428a81613db3565b9050919050565b600060208201905081810360008301526142aa81613dd6565b9050919050565b600060208201905081810360008301526142ca81613df9565b9050919050565b600060208201905081810360008301526142ea81613e1c565b9050919050565b6000602082019050818103600083015261430a81613e3f565b9050919050565b6000602082019050818103600083015261432a81613e62565b9050919050565b6000602082019050818103600083015261434a81613e85565b9050919050565b6000602082019050818103600083015261436a81613ea8565b9050919050565b6000602082019050818103600083015261438a81613ecb565b9050919050565b600060208201905081810360008301526143aa81613eee565b9050919050565b600060208201905081810360008301526143ca81613f11565b9050919050565b600060208201905081810360008301526143ea81613f34565b9050919050565b6000602082019050818103600083015261440a81613f57565b9050919050565b6000602082019050818103600083015261442a81613f7a565b9050919050565b6000602082019050818103600083015261444a81613f9d565b9050919050565b6000602082019050818103600083015261446a81613fc0565b9050919050565b6000602082019050818103600083015261448a81613fe3565b9050919050565b600060208201905081810360008301526144aa81614006565b9050919050565b600060208201905081810360008301526144ca81614029565b9050919050565b600060208201905081810360008301526144ea8161404c565b9050919050565b6000602082019050818103600083015261450a8161406f565b9050919050565b6000602082019050818103600083015261452a81614092565b9050919050565b6000602082019050818103600083015261454a816140b5565b9050919050565b6000602082019050818103600083015261456a816140d8565b9050919050565b6000602082019050818103600083015261458a816140fb565b9050919050565b600060208201905081810360008301526145aa8161411e565b9050919050565b600060208201905081810360008301526145ca81614141565b9050919050565b60006020820190506145e66000830184614164565b92915050565b60006145f6614607565b905061460282826148fc565b919050565b6000604051905090565b600067ffffffffffffffff82111561462c5761462b614a63565b5b61463582614a92565b9050602081019050919050565b600067ffffffffffffffff82111561465d5761465c614a63565b5b61466682614a92565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006146c182614848565b91506146cc83614848565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614701576147006149a7565b5b828201905092915050565b600061471782614848565b915061472283614848565b925082614732576147316149d6565b5b828204905092915050565b600061474882614848565b915061475383614848565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561478c5761478b6149a7565b5b828202905092915050565b60006147a282614848565b91506147ad83614848565b9250828210156147c0576147bf6149a7565b5b828203905092915050565b60006147d682614828565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600081905061482382615130565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061485d82614864565b9050919050565b600061486f82614828565b9050919050565b600061488182614815565b9050919050565b82818337600083830152505050565b60005b838110156148b557808201518184015260208101905061489a565b838111156148c4576000848401525b50505050565b600060028204905060018216806148e257607f821691505b602082108114156148f6576148f5614a34565b5b50919050565b61490582614a92565b810181811067ffffffffffffffff8211171561492457614923614a63565b5b80604052505050565b600061493882614848565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561496b5761496a6149a7565b5b600182019050919050565b600061498182614848565b915061498c83614848565b92508261499c5761499b6149d6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f416c726561647920757365640000000000000000000000000000000000000000600082015250565b7f596f75206d6179206e6f74206275792074686174206d616e79204e465473206160008201527f74206f6e63650000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d757374206f776e2073706563696669656420506f6c7976657273652050617360008201527f7320546f6b656e20494400000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682070726573616c6520616c6c6f77616e636500000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f742062757920300000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f53616c6520706861736520646964206e6f742073746172740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4e6f7420656e6f756768207265736572766520616c6c6f77616e636500000000600082015250565b6004811061514157615140614a05565b5b50565b61514d816147cb565b811461515857600080fd5b50565b615164816147dd565b811461516f57600080fd5b50565b61517b816147e9565b811461518657600080fd5b50565b6004811061519657600080fd5b50565b6151a281614848565b81146151ad57600080fd5b5056fea2646970667358221220c5c7ef9b9137578351fac3be6b5a2a8dab949b7254b15bebdbd51587022cdde264736f6c63430008040033

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

0000000000000000000000002b7c4a8f991877339c23f87d731a49233d96d87d

-----Decoded View---------------
Arg [0] : _polyversePass (address): 0x2B7c4A8F991877339C23F87d731A49233D96D87d

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000002b7c4a8f991877339c23f87d731a49233d96d87d


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.