ETH Price: $3,377.29 (-2.04%)
Gas: 6 Gwei

Token

SoulPass (SP)
 

Overview

Max Total Supply

602 SP

Holders

233

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 SP
0x0869fd08ff42889e11e09a0c2b46ce3d163a25d5
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SoulPass

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 13 : SoulPass.sol
// SPDX-License-Identifier: MIT

// Soul Pass
// <3 LS Sanctuary team
// @glu

pragma solidity ^0.8.0;

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

contract SoulPass is ERC721Enumerable, Ownable {

    string public SOUL_PROVENANCE = "";
    string _baseTokenURI;
    uint256 public constant MAX_SOULPASS = 4999;
    bool public mintPaused = true;
    mapping (uint256 => bool) public soulClaimed;

    address lostSouls;

    constructor(
        address LostSoulsContract
        ) ERC721("SoulPass", "SP") {
        lostSouls = LostSoulsContract;
    }

    // Mint All SoulPass
    function claimAllSoulPass(uint256[] memory soulArray) public {
        uint256 supply = totalSupply();
        require( !mintPaused,                              "Mint paused" );
        // Check if we hit max
        require( supply < MAX_SOULPASS, "Exceeds maximum SoulPass supply" );
        require(soulArray.length % 2 == 0,"Send an even amount of Souls");

        for(uint256 i;i<soulArray.length;i+=2){
            claimSoulPass(soulArray[i],soulArray[i+1]);
        }
    }

    // returns array of souls you own that have not been claimed 
    function soulNotClaimed(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            if(!soulClaimed[i]){
                tokensId[i] = tokenOfOwnerByIndex(_owner, i);
            }
        }
        return tokensId;
    }

    // Mint One SoulPass
    function claimSoulPass(uint256 soulOne, uint256 soulTwo) public {
		uint256 supply = totalSupply();
		require( !mintPaused,                              "Mint paused" );
		require( supply < MAX_SOULPASS, "Exceeds maximum SoulPass supply" );
		require(IERC721(lostSouls).ownerOf(soulOne) == msg.sender,"You do not own soul one");
		require(IERC721(lostSouls).ownerOf(soulTwo) == msg.sender,"You do not own soul two");
		// Already Claimed
		require(!soulClaimed[soulOne],"Soul one already claimed");
		require(!soulClaimed[soulTwo],"Soul two already claimed");

		soulClaimed[soulOne] = true;
		soulClaimed[soulTwo] = true;
         _safeMint( msg.sender, supply);   
    }

    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        SOUL_PROVENANCE = provenanceHash;
    }

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

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

    
    function pause(bool val) public onlyOwner {
        mintPaused = val;
    }

}

File 2 of 13 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 13 : 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 13 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 6 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 7 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 8 of 13 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 13 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 10 of 13 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 11 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 12 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 13 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

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

Settings
{
  "metadata": {
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"LostSoulsContract","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"},{"inputs":[],"name":"MAX_SOULPASS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SOUL_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"soulArray","type":"uint256[]"}],"name":"claimAllSoulPass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"soulOne","type":"uint256"},{"internalType":"uint256","name":"soulTwo","type":"uint256"}],"name":"claimSoulPass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"soulClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"soulNotClaimed","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"}]

60a06040819052600060808190526200001b91600b9162000152565b50600d805460ff191660011790553480156200003657600080fd5b50604051620028f1380380620028f18339810160408190526200005991620001f8565b6040805180820182526008815267536f756c5061737360c01b602080830191825283518085019094526002845261053560f41b908401528151919291620000a39160009162000152565b508051620000b990600190602084019062000152565b505050620000d6620000d0620000fc60201b60201c565b62000100565b600f80546001600160a01b0319166001600160a01b039290921691909117905562000265565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001609062000228565b90600052602060002090601f016020900481019282620001845760008555620001cf565b82601f106200019f57805160ff1916838001178555620001cf565b82800160010185558215620001cf579182015b82811115620001cf578251825591602001919060010190620001b2565b50620001dd929150620001e1565b5090565b5b80821115620001dd5760008155600101620001e2565b6000602082840312156200020a578081fd5b81516001600160a01b038116811462000221578182fd5b9392505050565b6002810460018216806200023d57607f821691505b602082108114156200025f57634e487b7160e01b600052602260045260246000fd5b50919050565b61267c80620002756000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063a22cb465116100a2578063c9c4d03e11610071578063c9c4d03e146103cc578063e985e9c5146103d4578063f2a68546146103e7578063f2fde38b146103fa576101da565b8063a22cb46514610380578063b88d4fde14610393578063b9a0a978146103a6578063c87b56dd146103b9576101da565b80637e4831d3116100de5780637e4831d3146103555780638da5cb5b1461035d57806395d89b41146103655780639687a52e1461036d576101da565b806370a0823114610327578063715018a61461033a57806375b9e95e14610342576101da565b806318160ddd1161017c578063438b63001161014b578063438b6300146102ce5780634f6ccce7146102ee57806355f804b3146103015780636352211e14610314576101da565b806318160ddd1461028d57806323b872dd146102955780632f745c59146102a857806342842e0e146102bb576101da565b8063081812fc116101b8578063081812fc14610232578063095ea7b3146102525780631096952314610265578063123ab5bd14610278576101da565b806301ffc9a7146101df57806302329a291461020857806306fdde031461021d575b600080fd5b6101f26101ed366004611c9c565b61040d565b6040516101ff9190611e43565b60405180910390f35b61021b610216366004611c82565b61043a565b005b610225610495565b6040516101ff9190611e4e565b610245610240366004611d1a565b610527565b6040516101ff9190611dae565b61021b610260366004611bb0565b61056a565b61021b610273366004611cd4565b610602565b610280610658565b6040516101ff91906124cd565b61028061065e565b61021b6102a3366004611abf565b610664565b6102806102b6366004611bb0565b61069c565b61021b6102c9366004611abf565b6106ee565b6102e16102dc366004611a4f565b610709565b6040516101ff9190611dff565b6102806102fc366004611d1a565b6107c7565b61021b61030f366004611cd4565b610822565b610245610322366004611d1a565b610874565b610280610335366004611a4f565b6108a9565b61021b6108ed565b6102e1610350366004611a4f565b610938565b6101f2610a06565b610245610a0f565b610225610a1e565b61021b61037b366004611d32565b610a2d565b61021b61038e366004611b7c565b610c61565b61021b6103a1366004611aff565b610d2f565b6101f26103b4366004611d1a565b610d6e565b6102256103c7366004611d1a565b610d83565b610225610e06565b6101f26103e2366004611a87565b610e94565b61021b6103f5366004611bdb565b610ec2565b61021b610408366004611a4f565b610fc0565b60006001600160e01b0319821663780e9d6360e01b1480610432575061043282611031565b90505b919050565b610442611071565b6001600160a01b0316610453610a0f565b6001600160a01b0316146104825760405162461bcd60e51b81526004016104799061220f565b60405180910390fd5b600d805460ff1916911515919091179055565b6060600080546104a49061256f565b80601f01602080910402602001604051908101604052809291908181526020018280546104d09061256f565b801561051d5780601f106104f25761010080835404028352916020019161051d565b820191906000526020600020905b81548152906001019060200180831161050057829003601f168201915b5050505050905090565b600061053282611075565b61054e5760405162461bcd60e51b8152600401610479906121c3565b506000908152600460205260409020546001600160a01b031690565b600061057582610874565b9050806001600160a01b0316836001600160a01b031614156105a95760405162461bcd60e51b815260040161047990612381565b806001600160a01b03166105bb611071565b6001600160a01b031614806105d757506105d7816103e2611071565b6105f35760405162461bcd60e51b815260040161047990612079565b6105fd8383611092565b505050565b61060a611071565b6001600160a01b031661061b610a0f565b6001600160a01b0316146106415760405162461bcd60e51b81526004016104799061220f565b805161065490600b90602084019061194e565b5050565b61138781565b60085490565b61067561066f611071565b82611100565b6106915760405162461bcd60e51b8152600401610479906123f9565b6105fd838383611185565b60006106a7836108a9565b82106106c55760405162461bcd60e51b815260040161047990611e61565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6105fd83838360405180602001604052806000815250610d2f565b60606000610716836108a9565b905060008167ffffffffffffffff81111561074157634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561076a578160200160208202803683370190505b50905060005b828110156107bf57610782858261069c565b8282815181106107a257634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806107b7816125aa565b915050610770565b509392505050565b60006107d161065e565b82106107ef5760405162461bcd60e51b81526004016104799061244a565b6008828154811061081057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b61082a611071565b6001600160a01b031661083b610a0f565b6001600160a01b0316146108615760405162461bcd60e51b81526004016104799061220f565b805161065490600c90602084019061194e565b6000818152600260205260408120546001600160a01b0316806104325760405162461bcd60e51b815260040161047990612120565b60006001600160a01b0382166108d15760405162461bcd60e51b8152600401610479906120d6565b506001600160a01b031660009081526003602052604090205490565b6108f5611071565b6001600160a01b0316610906610a0f565b6001600160a01b03161461092c5760405162461bcd60e51b81526004016104799061220f565b61093660006112b2565b565b60606000610945836108a9565b905060008167ffffffffffffffff81111561097057634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610999578160200160208202803683370190505b50905060005b828110156107bf576000818152600e602052604090205460ff166109f4576109c7858261069c565b8282815181106109e757634e487b7160e01b600052603260045260246000fd5b6020026020010181815250505b806109fe816125aa565b91505061099f565b600d5460ff1681565b600a546001600160a01b031690565b6060600180546104a49061256f565b6000610a3761065e565b600d5490915060ff1615610a5d5760405162461bcd60e51b81526004016104799061219e565b6113878110610a7e5760405162461bcd60e51b8152600401610479906122c4565b600f546040516331a9108f60e11b815233916001600160a01b031690636352211e90610aae9087906004016124cd565b60206040518083038186803b158015610ac657600080fd5b505afa158015610ada573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610afe9190611a6b565b6001600160a01b031614610b245760405162461bcd60e51b81526004016104799061234a565b600f546040516331a9108f60e11b815233916001600160a01b031690636352211e90610b549086906004016124cd565b60206040518083038186803b158015610b6c57600080fd5b505afa158015610b80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba49190611a6b565b6001600160a01b031614610bca5760405162461bcd60e51b815260040161047990612244565b6000838152600e602052604090205460ff1615610bf95760405162461bcd60e51b815260040161047990612496565b6000828152600e602052604090205460ff1615610c285760405162461bcd60e51b8152600401610479906123c2565b6000838152600e60205260408082208054600160ff19918216811790925585845291909220805490911690911790556105fd3382611304565b610c69611071565b6001600160a01b0316826001600160a01b03161415610c9a5760405162461bcd60e51b815260040161047990611ff6565b8060056000610ca7611071565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610ceb611071565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d239190611e43565b60405180910390a35050565b610d40610d3a611071565b83611100565b610d5c5760405162461bcd60e51b8152600401610479906123f9565b610d688484848461131e565b50505050565b600e6020526000908152604090205460ff1681565b6060610d8e82611075565b610daa5760405162461bcd60e51b8152600401610479906122fb565b6000610db4611351565b90506000815111610dd45760405180602001604052806000815250610dff565b80610dde84611360565b604051602001610def929190611d7f565b6040516020818303038152906040525b9392505050565b600b8054610e139061256f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3f9061256f565b8015610e8c5780601f10610e6157610100808354040283529160200191610e8c565b820191906000526020600020905b815481529060010190602001808311610e6f57829003601f168201915b505050505081565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6000610ecc61065e565b600d5490915060ff1615610ef25760405162461bcd60e51b81526004016104799061219e565b6113878110610f135760405162461bcd60e51b8152600401610479906122c4565b60028251610f2191906125c5565b15610f3e5760405162461bcd60e51b815260040161047990611f7b565b60005b82518110156105fd57610fae838281518110610f6d57634e487b7160e01b600052603260045260246000fd5b602002602001015184836001610f839190612500565b81518110610fa157634e487b7160e01b600052603260045260246000fd5b6020026020010151610a2d565b610fb9600282612500565b9050610f41565b610fc8611071565b6001600160a01b0316610fd9610a0f565b6001600160a01b031614610fff5760405162461bcd60e51b81526004016104799061220f565b6001600160a01b0381166110255760405162461bcd60e51b815260040161047990611efe565b61102e816112b2565b50565b60006001600160e01b031982166380ac58cd60e01b148061106257506001600160e01b03198216635b5e139f60e01b145b8061043257506104328261147b565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110c782610874565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061110b82611075565b6111275760405162461bcd60e51b81526004016104799061202d565b600061113283610874565b9050806001600160a01b0316846001600160a01b0316148061116d5750836001600160a01b031661116284610527565b6001600160a01b0316145b8061117d575061117d8185610e94565b949350505050565b826001600160a01b031661119882610874565b6001600160a01b0316146111be5760405162461bcd60e51b81526004016104799061227b565b6001600160a01b0382166111e45760405162461bcd60e51b815260040161047990611fb2565b6111ef838383611494565b6111fa600082611092565b6001600160a01b038316600090815260036020526040812080546001929061122390849061252c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611251908490612500565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61065482826040518060200160405280600081525061151d565b611329848484611185565b61133584848484611550565b610d685760405162461bcd60e51b815260040161047990611eac565b6060600c80546104a49061256f565b60608161138557506040805180820190915260018152600360fc1b6020820152610435565b8160005b81156113af5780611399816125aa565b91506113a89050600a83612518565b9150611389565b60008167ffffffffffffffff8111156113d857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611402576020820181803683370190505b5090505b841561117d5761141760018361252c565b9150611424600a866125c5565b61142f906030612500565b60f81b81838151811061145257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611474600a86612518565b9450611406565b6001600160e01b031981166301ffc9a760e01b14919050565b61149f8383836105fd565b6001600160a01b0383166114bb576114b68161166b565b6114de565b816001600160a01b0316836001600160a01b0316146114de576114de83826116af565b6001600160a01b0382166114fa576114f58161174c565b6105fd565b826001600160a01b0316826001600160a01b0316146105fd576105fd8282611825565b6115278383611869565b6115346000848484611550565b6105fd5760405162461bcd60e51b815260040161047990611eac565b6000611564846001600160a01b0316611948565b1561166057836001600160a01b031663150b7a02611580611071565b8786866040518563ffffffff1660e01b81526004016115a29493929190611dc2565b602060405180830381600087803b1580156115bc57600080fd5b505af19250505080156115ec575060408051601f3d908101601f191682019092526115e991810190611cb8565b60015b611646573d80801561161a576040519150601f19603f3d011682016040523d82523d6000602084013e61161f565b606091505b50805161163e5760405162461bcd60e51b815260040161047990611eac565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061117d565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016116bc846108a9565b6116c6919061252c565b600083815260076020526040902054909150808214611719576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061175e9060019061252c565b6000838152600960205260408120546008805493945090928490811061179457634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106117c357634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061180957634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611830836108a9565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661188f5760405162461bcd60e51b815260040161047990612169565b61189881611075565b156118b55760405162461bcd60e51b815260040161047990611f44565b6118c160008383611494565b6001600160a01b03821660009081526003602052604081208054600192906118ea908490612500565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b82805461195a9061256f565b90600052602060002090601f01602090048101928261197c57600085556119c2565b82601f1061199557805160ff19168380011785556119c2565b828001600101855582156119c2579182015b828111156119c25782518255916020019190600101906119a7565b506119ce9291506119d2565b5090565b5b808211156119ce57600081556001016119d3565b600067ffffffffffffffff831115611a0157611a01612605565b611a14601f8401601f19166020016124d6565b9050828152838383011115611a2857600080fd5b828260208301376000602084830101529392505050565b8035801515811461043557600080fd5b600060208284031215611a60578081fd5b8135610dff8161261b565b600060208284031215611a7c578081fd5b8151610dff8161261b565b60008060408385031215611a99578081fd5b8235611aa48161261b565b91506020830135611ab48161261b565b809150509250929050565b600080600060608486031215611ad3578081fd5b8335611ade8161261b565b92506020840135611aee8161261b565b929592945050506040919091013590565b60008060008060808587031215611b14578081fd5b8435611b1f8161261b565b93506020850135611b2f8161261b565b925060408501359150606085013567ffffffffffffffff811115611b51578182fd5b8501601f81018713611b61578182fd5b611b70878235602084016119e7565b91505092959194509250565b60008060408385031215611b8e578182fd5b8235611b998161261b565b9150611ba760208401611a3f565b90509250929050565b60008060408385031215611bc2578182fd5b8235611bcd8161261b565b946020939093013593505050565b60006020808385031215611bed578182fd5b823567ffffffffffffffff80821115611c04578384fd5b818501915085601f830112611c17578384fd5b813581811115611c2957611c29612605565b8381029150611c398483016124d6565b8181528481019084860184860187018a1015611c53578788fd5b8795505b83861015611c75578035835260019590950194918601918601611c57565b5098975050505050505050565b600060208284031215611c93578081fd5b610dff82611a3f565b600060208284031215611cad578081fd5b8135610dff81612630565b600060208284031215611cc9578081fd5b8151610dff81612630565b600060208284031215611ce5578081fd5b813567ffffffffffffffff811115611cfb578182fd5b8201601f81018413611d0b578182fd5b61117d848235602084016119e7565b600060208284031215611d2b578081fd5b5035919050565b60008060408385031215611d44578182fd5b50508035926020909101359150565b60008151808452611d6b816020860160208601612543565b601f01601f19169290920160200192915050565b60008351611d91818460208801612543565b835190830190611da5818360208801612543565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611df590830184611d53565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611e3757835183529284019291840191600101611e1b565b50909695505050505050565b901515815260200190565b600060208252610dff6020830184611d53565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601c908201527f53656e6420616e206576656e20616d6f756e74206f6620536f756c7300000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252600b908201526a135a5b9d081c185d5cd95960aa1b604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f596f7520646f206e6f74206f776e20736f756c2074776f000000000000000000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252601f908201527f45786365656473206d6178696d756d20536f756c5061737320737570706c7900604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526017908201527f596f7520646f206e6f74206f776e20736f756c206f6e65000000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526018908201527f536f756c2074776f20616c726561647920636c61696d65640000000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526018908201527f536f756c206f6e6520616c726561647920636c61696d65640000000000000000604082015260600190565b90815260200190565b60405181810167ffffffffffffffff811182821017156124f8576124f8612605565b604052919050565b60008219821115612513576125136125d9565b500190565b600082612527576125276125ef565b500490565b60008282101561253e5761253e6125d9565b500390565b60005b8381101561255e578181015183820152602001612546565b83811115610d685750506000910152565b60028104600182168061258357607f821691505b602082108114156125a457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125be576125be6125d9565b5060010190565b6000826125d4576125d46125ef565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461102e57600080fd5b6001600160e01b03198116811461102e57600080fdfea2646970667358221220aa24e1c7bc388221ef52d0c1054988661e83ecaa819a2418a26468d0eccfe8f764736f6c634300080000330000000000000000000000000fb69d1dc9954a7f60e83023916f2551e24f52fc

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063a22cb465116100a2578063c9c4d03e11610071578063c9c4d03e146103cc578063e985e9c5146103d4578063f2a68546146103e7578063f2fde38b146103fa576101da565b8063a22cb46514610380578063b88d4fde14610393578063b9a0a978146103a6578063c87b56dd146103b9576101da565b80637e4831d3116100de5780637e4831d3146103555780638da5cb5b1461035d57806395d89b41146103655780639687a52e1461036d576101da565b806370a0823114610327578063715018a61461033a57806375b9e95e14610342576101da565b806318160ddd1161017c578063438b63001161014b578063438b6300146102ce5780634f6ccce7146102ee57806355f804b3146103015780636352211e14610314576101da565b806318160ddd1461028d57806323b872dd146102955780632f745c59146102a857806342842e0e146102bb576101da565b8063081812fc116101b8578063081812fc14610232578063095ea7b3146102525780631096952314610265578063123ab5bd14610278576101da565b806301ffc9a7146101df57806302329a291461020857806306fdde031461021d575b600080fd5b6101f26101ed366004611c9c565b61040d565b6040516101ff9190611e43565b60405180910390f35b61021b610216366004611c82565b61043a565b005b610225610495565b6040516101ff9190611e4e565b610245610240366004611d1a565b610527565b6040516101ff9190611dae565b61021b610260366004611bb0565b61056a565b61021b610273366004611cd4565b610602565b610280610658565b6040516101ff91906124cd565b61028061065e565b61021b6102a3366004611abf565b610664565b6102806102b6366004611bb0565b61069c565b61021b6102c9366004611abf565b6106ee565b6102e16102dc366004611a4f565b610709565b6040516101ff9190611dff565b6102806102fc366004611d1a565b6107c7565b61021b61030f366004611cd4565b610822565b610245610322366004611d1a565b610874565b610280610335366004611a4f565b6108a9565b61021b6108ed565b6102e1610350366004611a4f565b610938565b6101f2610a06565b610245610a0f565b610225610a1e565b61021b61037b366004611d32565b610a2d565b61021b61038e366004611b7c565b610c61565b61021b6103a1366004611aff565b610d2f565b6101f26103b4366004611d1a565b610d6e565b6102256103c7366004611d1a565b610d83565b610225610e06565b6101f26103e2366004611a87565b610e94565b61021b6103f5366004611bdb565b610ec2565b61021b610408366004611a4f565b610fc0565b60006001600160e01b0319821663780e9d6360e01b1480610432575061043282611031565b90505b919050565b610442611071565b6001600160a01b0316610453610a0f565b6001600160a01b0316146104825760405162461bcd60e51b81526004016104799061220f565b60405180910390fd5b600d805460ff1916911515919091179055565b6060600080546104a49061256f565b80601f01602080910402602001604051908101604052809291908181526020018280546104d09061256f565b801561051d5780601f106104f25761010080835404028352916020019161051d565b820191906000526020600020905b81548152906001019060200180831161050057829003601f168201915b5050505050905090565b600061053282611075565b61054e5760405162461bcd60e51b8152600401610479906121c3565b506000908152600460205260409020546001600160a01b031690565b600061057582610874565b9050806001600160a01b0316836001600160a01b031614156105a95760405162461bcd60e51b815260040161047990612381565b806001600160a01b03166105bb611071565b6001600160a01b031614806105d757506105d7816103e2611071565b6105f35760405162461bcd60e51b815260040161047990612079565b6105fd8383611092565b505050565b61060a611071565b6001600160a01b031661061b610a0f565b6001600160a01b0316146106415760405162461bcd60e51b81526004016104799061220f565b805161065490600b90602084019061194e565b5050565b61138781565b60085490565b61067561066f611071565b82611100565b6106915760405162461bcd60e51b8152600401610479906123f9565b6105fd838383611185565b60006106a7836108a9565b82106106c55760405162461bcd60e51b815260040161047990611e61565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6105fd83838360405180602001604052806000815250610d2f565b60606000610716836108a9565b905060008167ffffffffffffffff81111561074157634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561076a578160200160208202803683370190505b50905060005b828110156107bf57610782858261069c565b8282815181106107a257634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806107b7816125aa565b915050610770565b509392505050565b60006107d161065e565b82106107ef5760405162461bcd60e51b81526004016104799061244a565b6008828154811061081057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b61082a611071565b6001600160a01b031661083b610a0f565b6001600160a01b0316146108615760405162461bcd60e51b81526004016104799061220f565b805161065490600c90602084019061194e565b6000818152600260205260408120546001600160a01b0316806104325760405162461bcd60e51b815260040161047990612120565b60006001600160a01b0382166108d15760405162461bcd60e51b8152600401610479906120d6565b506001600160a01b031660009081526003602052604090205490565b6108f5611071565b6001600160a01b0316610906610a0f565b6001600160a01b03161461092c5760405162461bcd60e51b81526004016104799061220f565b61093660006112b2565b565b60606000610945836108a9565b905060008167ffffffffffffffff81111561097057634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610999578160200160208202803683370190505b50905060005b828110156107bf576000818152600e602052604090205460ff166109f4576109c7858261069c565b8282815181106109e757634e487b7160e01b600052603260045260246000fd5b6020026020010181815250505b806109fe816125aa565b91505061099f565b600d5460ff1681565b600a546001600160a01b031690565b6060600180546104a49061256f565b6000610a3761065e565b600d5490915060ff1615610a5d5760405162461bcd60e51b81526004016104799061219e565b6113878110610a7e5760405162461bcd60e51b8152600401610479906122c4565b600f546040516331a9108f60e11b815233916001600160a01b031690636352211e90610aae9087906004016124cd565b60206040518083038186803b158015610ac657600080fd5b505afa158015610ada573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610afe9190611a6b565b6001600160a01b031614610b245760405162461bcd60e51b81526004016104799061234a565b600f546040516331a9108f60e11b815233916001600160a01b031690636352211e90610b549086906004016124cd565b60206040518083038186803b158015610b6c57600080fd5b505afa158015610b80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba49190611a6b565b6001600160a01b031614610bca5760405162461bcd60e51b815260040161047990612244565b6000838152600e602052604090205460ff1615610bf95760405162461bcd60e51b815260040161047990612496565b6000828152600e602052604090205460ff1615610c285760405162461bcd60e51b8152600401610479906123c2565b6000838152600e60205260408082208054600160ff19918216811790925585845291909220805490911690911790556105fd3382611304565b610c69611071565b6001600160a01b0316826001600160a01b03161415610c9a5760405162461bcd60e51b815260040161047990611ff6565b8060056000610ca7611071565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610ceb611071565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d239190611e43565b60405180910390a35050565b610d40610d3a611071565b83611100565b610d5c5760405162461bcd60e51b8152600401610479906123f9565b610d688484848461131e565b50505050565b600e6020526000908152604090205460ff1681565b6060610d8e82611075565b610daa5760405162461bcd60e51b8152600401610479906122fb565b6000610db4611351565b90506000815111610dd45760405180602001604052806000815250610dff565b80610dde84611360565b604051602001610def929190611d7f565b6040516020818303038152906040525b9392505050565b600b8054610e139061256f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3f9061256f565b8015610e8c5780601f10610e6157610100808354040283529160200191610e8c565b820191906000526020600020905b815481529060010190602001808311610e6f57829003601f168201915b505050505081565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6000610ecc61065e565b600d5490915060ff1615610ef25760405162461bcd60e51b81526004016104799061219e565b6113878110610f135760405162461bcd60e51b8152600401610479906122c4565b60028251610f2191906125c5565b15610f3e5760405162461bcd60e51b815260040161047990611f7b565b60005b82518110156105fd57610fae838281518110610f6d57634e487b7160e01b600052603260045260246000fd5b602002602001015184836001610f839190612500565b81518110610fa157634e487b7160e01b600052603260045260246000fd5b6020026020010151610a2d565b610fb9600282612500565b9050610f41565b610fc8611071565b6001600160a01b0316610fd9610a0f565b6001600160a01b031614610fff5760405162461bcd60e51b81526004016104799061220f565b6001600160a01b0381166110255760405162461bcd60e51b815260040161047990611efe565b61102e816112b2565b50565b60006001600160e01b031982166380ac58cd60e01b148061106257506001600160e01b03198216635b5e139f60e01b145b8061043257506104328261147b565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110c782610874565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061110b82611075565b6111275760405162461bcd60e51b81526004016104799061202d565b600061113283610874565b9050806001600160a01b0316846001600160a01b0316148061116d5750836001600160a01b031661116284610527565b6001600160a01b0316145b8061117d575061117d8185610e94565b949350505050565b826001600160a01b031661119882610874565b6001600160a01b0316146111be5760405162461bcd60e51b81526004016104799061227b565b6001600160a01b0382166111e45760405162461bcd60e51b815260040161047990611fb2565b6111ef838383611494565b6111fa600082611092565b6001600160a01b038316600090815260036020526040812080546001929061122390849061252c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611251908490612500565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61065482826040518060200160405280600081525061151d565b611329848484611185565b61133584848484611550565b610d685760405162461bcd60e51b815260040161047990611eac565b6060600c80546104a49061256f565b60608161138557506040805180820190915260018152600360fc1b6020820152610435565b8160005b81156113af5780611399816125aa565b91506113a89050600a83612518565b9150611389565b60008167ffffffffffffffff8111156113d857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611402576020820181803683370190505b5090505b841561117d5761141760018361252c565b9150611424600a866125c5565b61142f906030612500565b60f81b81838151811061145257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611474600a86612518565b9450611406565b6001600160e01b031981166301ffc9a760e01b14919050565b61149f8383836105fd565b6001600160a01b0383166114bb576114b68161166b565b6114de565b816001600160a01b0316836001600160a01b0316146114de576114de83826116af565b6001600160a01b0382166114fa576114f58161174c565b6105fd565b826001600160a01b0316826001600160a01b0316146105fd576105fd8282611825565b6115278383611869565b6115346000848484611550565b6105fd5760405162461bcd60e51b815260040161047990611eac565b6000611564846001600160a01b0316611948565b1561166057836001600160a01b031663150b7a02611580611071565b8786866040518563ffffffff1660e01b81526004016115a29493929190611dc2565b602060405180830381600087803b1580156115bc57600080fd5b505af19250505080156115ec575060408051601f3d908101601f191682019092526115e991810190611cb8565b60015b611646573d80801561161a576040519150601f19603f3d011682016040523d82523d6000602084013e61161f565b606091505b50805161163e5760405162461bcd60e51b815260040161047990611eac565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061117d565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016116bc846108a9565b6116c6919061252c565b600083815260076020526040902054909150808214611719576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061175e9060019061252c565b6000838152600960205260408120546008805493945090928490811061179457634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106117c357634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061180957634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611830836108a9565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661188f5760405162461bcd60e51b815260040161047990612169565b61189881611075565b156118b55760405162461bcd60e51b815260040161047990611f44565b6118c160008383611494565b6001600160a01b03821660009081526003602052604081208054600192906118ea908490612500565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b82805461195a9061256f565b90600052602060002090601f01602090048101928261197c57600085556119c2565b82601f1061199557805160ff19168380011785556119c2565b828001600101855582156119c2579182015b828111156119c25782518255916020019190600101906119a7565b506119ce9291506119d2565b5090565b5b808211156119ce57600081556001016119d3565b600067ffffffffffffffff831115611a0157611a01612605565b611a14601f8401601f19166020016124d6565b9050828152838383011115611a2857600080fd5b828260208301376000602084830101529392505050565b8035801515811461043557600080fd5b600060208284031215611a60578081fd5b8135610dff8161261b565b600060208284031215611a7c578081fd5b8151610dff8161261b565b60008060408385031215611a99578081fd5b8235611aa48161261b565b91506020830135611ab48161261b565b809150509250929050565b600080600060608486031215611ad3578081fd5b8335611ade8161261b565b92506020840135611aee8161261b565b929592945050506040919091013590565b60008060008060808587031215611b14578081fd5b8435611b1f8161261b565b93506020850135611b2f8161261b565b925060408501359150606085013567ffffffffffffffff811115611b51578182fd5b8501601f81018713611b61578182fd5b611b70878235602084016119e7565b91505092959194509250565b60008060408385031215611b8e578182fd5b8235611b998161261b565b9150611ba760208401611a3f565b90509250929050565b60008060408385031215611bc2578182fd5b8235611bcd8161261b565b946020939093013593505050565b60006020808385031215611bed578182fd5b823567ffffffffffffffff80821115611c04578384fd5b818501915085601f830112611c17578384fd5b813581811115611c2957611c29612605565b8381029150611c398483016124d6565b8181528481019084860184860187018a1015611c53578788fd5b8795505b83861015611c75578035835260019590950194918601918601611c57565b5098975050505050505050565b600060208284031215611c93578081fd5b610dff82611a3f565b600060208284031215611cad578081fd5b8135610dff81612630565b600060208284031215611cc9578081fd5b8151610dff81612630565b600060208284031215611ce5578081fd5b813567ffffffffffffffff811115611cfb578182fd5b8201601f81018413611d0b578182fd5b61117d848235602084016119e7565b600060208284031215611d2b578081fd5b5035919050565b60008060408385031215611d44578182fd5b50508035926020909101359150565b60008151808452611d6b816020860160208601612543565b601f01601f19169290920160200192915050565b60008351611d91818460208801612543565b835190830190611da5818360208801612543565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611df590830184611d53565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611e3757835183529284019291840191600101611e1b565b50909695505050505050565b901515815260200190565b600060208252610dff6020830184611d53565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601c908201527f53656e6420616e206576656e20616d6f756e74206f6620536f756c7300000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252600b908201526a135a5b9d081c185d5cd95960aa1b604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f596f7520646f206e6f74206f776e20736f756c2074776f000000000000000000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252601f908201527f45786365656473206d6178696d756d20536f756c5061737320737570706c7900604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526017908201527f596f7520646f206e6f74206f776e20736f756c206f6e65000000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526018908201527f536f756c2074776f20616c726561647920636c61696d65640000000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526018908201527f536f756c206f6e6520616c726561647920636c61696d65640000000000000000604082015260600190565b90815260200190565b60405181810167ffffffffffffffff811182821017156124f8576124f8612605565b604052919050565b60008219821115612513576125136125d9565b500190565b600082612527576125276125ef565b500490565b60008282101561253e5761253e6125d9565b500390565b60005b8381101561255e578181015183820152602001612546565b83811115610d685750506000910152565b60028104600182168061258357607f821691505b602082108114156125a457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125be576125be6125d9565b5060010190565b6000826125d4576125d46125ef565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461102e57600080fd5b6001600160e01b03198116811461102e57600080fdfea2646970667358221220aa24e1c7bc388221ef52d0c1054988661e83ecaa819a2418a26468d0eccfe8f764736f6c63430008000033

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

0000000000000000000000000fb69d1dc9954a7f60e83023916f2551e24f52fc

-----Decoded View---------------
Arg [0] : LostSoulsContract (address): 0x0FB69D1dC9954a7f60e83023916F2551E24F52fC

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000fb69d1dc9954a7f60e83023916f2551e24f52fc


Deployed Bytecode Sourcemap

237:2863:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:222:5;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3022:75:0;;;;;;:::i;:::-;;:::i;:::-;;2414:98:2;;;:::i;:::-;;;;;;;:::i;3925:217::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3463:401::-;;;;;;:::i;:::-;;:::i;2664:123:0:-;;;;;;:::i;:::-;;:::i;357:43::-;;;:::i;:::-;;;;;;;:::i;1535:111:5:-;;;:::i;4789:330:2:-;;;;;;:::i;:::-;;:::i;1211:253:5:-;;;;;;:::i;:::-;;:::i;5185:179:2:-;;;;;;:::i;:::-;;:::i;2324:334:0:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1718:230:5:-;;;;;;:::i;:::-;;:::i;2911:100:0:-;;;;;;:::i;:::-;;:::i;2117:235:2:-;;;;;;:::i;:::-;;:::i;1855:205::-;;;;;;:::i;:::-;;:::i;1605:92:1:-;;;:::i;1229:386:0:-;;;;;;:::i;:::-;;:::i;406:29::-;;;:::i;973:85:1:-;;;:::i;2576:102:2:-;;;:::i;1646:672:0:-;;;;;;:::i;:::-;;:::i;4209:290:2:-;;;;;;:::i;:::-;;:::i;5430:320::-;;;;;;:::i;:::-;;:::i;441:44:0:-;;;;;;:::i;:::-;;:::i;2744:329:2:-;;;;;;:::i;:::-;;:::i;291:34:0:-;;;:::i;4565:162:2:-;;;;;;:::i;:::-;;:::i;675:482:0:-;;;;;;:::i;:::-;;:::i;1846:189:1:-;;;;;;:::i;:::-;;:::i;910:222:5:-;1012:4;-1:-1:-1;;;;;;1035:50:5;;-1:-1:-1;;;1035:50:5;;:90;;;1089:36;1113:11;1089:23;:36::i;:::-;1028:97;;910:222;;;;:::o;3022:75:0:-;1196:12:1;:10;:12::i;:::-;-1:-1:-1;;;;;1185:23:1;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1185:23:1;;1177:68;;;;-1:-1:-1;;;1177:68:1;;;;;;;:::i;:::-;;;;;;;;;3074:10:0::1;:16:::0;;-1:-1:-1;;3074:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;3022:75::o;2414:98:2:-;2468:13;2500:5;2493:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2414:98;:::o;3925:217::-;4001:7;4028:16;4036:7;4028;:16::i;:::-;4020:73;;;;-1:-1:-1;;;4020:73:2;;;;;;;:::i;:::-;-1:-1:-1;4111:24:2;;;;:15;:24;;;;;;-1:-1:-1;;;;;4111:24:2;;3925:217::o;3463:401::-;3543:13;3559:23;3574:7;3559:14;:23::i;:::-;3543:39;;3606:5;-1:-1:-1;;;;;3600:11:2;:2;-1:-1:-1;;;;;3600:11:2;;;3592:57;;;;-1:-1:-1;;;3592:57:2;;;;;;;:::i;:::-;3697:5;-1:-1:-1;;;;;3681:21:2;:12;:10;:12::i;:::-;-1:-1:-1;;;;;3681:21:2;;:62;;;;3706:37;3723:5;3730:12;:10;:12::i;3706:37::-;3660:165;;;;-1:-1:-1;;;3660:165:2;;;;;;;:::i;:::-;3836:21;3845:2;3849:7;3836:8;:21::i;:::-;3463:401;;;:::o;2664:123:0:-;1196:12:1;:10;:12::i;:::-;-1:-1:-1;;;;;1185:23:1;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1185:23:1;;1177:68;;;;-1:-1:-1;;;1177:68:1;;;;;;;:::i;:::-;2748:32:0;;::::1;::::0;:15:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;;2664:123:::0;:::o;357:43::-;396:4;357:43;:::o;1535:111:5:-;1622:10;:17;1535:111;:::o;4789:330:2:-;4978:41;4997:12;:10;:12::i;:::-;5011:7;4978:18;:41::i;:::-;4970:103;;;;-1:-1:-1;;;4970:103:2;;;;;;;:::i;:::-;5084:28;5094:4;5100:2;5104:7;5084:9;:28::i;1211:253:5:-;1308:7;1343:23;1360:5;1343:16;:23::i;:::-;1335:5;:31;1327:87;;;;-1:-1:-1;;;1327:87:5;;;;;;;:::i;:::-;-1:-1:-1;;;;;;1431:19:5;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1211:253::o;5185:179:2:-;5318:39;5335:4;5341:2;5345:7;5318:39;;;;;;;;;;;;:16;:39::i;2324:334:0:-;2383:16;2411:18;2432:17;2442:6;2432:9;:17::i;:::-;2411:38;;2460:25;2502:10;2488:25;;;;;;-1:-1:-1;;;2488:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2488:25:0;;2460:53;;2527:9;2523:104;2542:10;2538:1;:14;2523:104;;;2586:30;2606:6;2614:1;2586:19;:30::i;:::-;2572:8;2581:1;2572:11;;;;;;-1:-1:-1;;;2572:11:0;;;;;;;;;;;;;;;;;;:44;2554:3;;;;:::i;:::-;;;;2523:104;;;-1:-1:-1;2643:8:0;2324:334;-1:-1:-1;;;2324:334:0:o;1718:230:5:-;1793:7;1828:30;:28;:30::i;:::-;1820:5;:38;1812:95;;;;-1:-1:-1;;;1812:95:5;;;;;;;:::i;:::-;1924:10;1935:5;1924:17;;;;;;-1:-1:-1;;;1924:17:5;;;;;;;;;;;;;;;;;1917:24;;1718:230;;;:::o;2911:100:0:-;1196:12:1;:10;:12::i;:::-;-1:-1:-1;;;;;1185:23:1;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1185:23:1;;1177:68;;;;-1:-1:-1;;;1177:68:1;;;;;;;:::i;:::-;2981:23:0;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;2117:235:2:-:0;2189:7;2224:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2224:16:2;2258:19;2250:73;;;;-1:-1:-1;;;2250:73:2;;;;;;;:::i;1855:205::-;1927:7;-1:-1:-1;;;;;1954:19:2;;1946:74;;;;-1:-1:-1;;;1946:74:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;;2037:16:2;;;;;:9;:16;;;;;;;1855:205::o;1605:92:1:-;1196:12;:10;:12::i;:::-;-1:-1:-1;;;;;1185:23:1;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1185:23:1;;1177:68;;;;-1:-1:-1;;;1177:68:1;;;;;;;:::i;:::-;1669:21:::1;1687:1;1669:9;:21::i;:::-;1605:92::o:0;1229:386:0:-;1289:16;1317:18;1338:17;1348:6;1338:9;:17::i;:::-;1317:38;;1366:25;1408:10;1394:25;;;;;;-1:-1:-1;;;1394:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1394:25:0;;1366:53;;1433:9;1429:155;1448:10;1444:1;:14;1429:155;;;1482:14;;;;:11;:14;;;;;;;;1478:96;;1529:30;1549:6;1557:1;1529:19;:30::i;:::-;1515:8;1524:1;1515:11;;;;;;-1:-1:-1;;;1515:11:0;;;;;;;;;;;;;;:44;;;;;1478:96;1460:3;;;;:::i;:::-;;;;1429:155;;406:29;;;;;;:::o;973:85:1:-;1045:6;;-1:-1:-1;;;;;1045:6:1;973:85;:::o;2576:102:2:-;2632:13;2664:7;2657:14;;;;;:::i;1646:672:0:-;1714:14;1731:13;:11;:13::i;:::-;1758:10;;1714:30;;-1:-1:-1;1758:10:0;;1757:11;1748:66;;;;-1:-1:-1;;;1748:66:0;;;;;;;:::i;:::-;396:4;1827:6;:21;1818:67;;;;-1:-1:-1;;;1818:67:0;;;;;;;:::i;:::-;1905:9;;1897:35;;-1:-1:-1;;;1897:35:0;;1936:10;;-1:-1:-1;;;;;1905:9:0;;1897:26;;:35;;1924:7;;1897:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1897:49:0;;1889:84;;;;-1:-1:-1;;;1889:84:0;;;;;;;:::i;:::-;1993:9;;1985:35;;-1:-1:-1;;;1985:35:0;;2024:10;;-1:-1:-1;;;;;1993:9:0;;1985:26;;:35;;2012:7;;1985:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1985:49:0;;1977:84;;;;-1:-1:-1;;;1977:84:0;;;;;;;:::i;:::-;2095:20;;;;:11;:20;;;;;;;;2094:21;2086:57;;;;-1:-1:-1;;;2086:57:0;;;;;;;:::i;:::-;2156:20;;;;:11;:20;;;;;;;;2155:21;2147:57;;;;-1:-1:-1;;;2147:57:0;;;;;;;:::i;:::-;2209:20;;;;:11;:20;;;;;;:27;;2232:4;-1:-1:-1;;2209:27:0;;;;;;;;2240:20;;;;;;;:27;;;;;;;;;;2278:30;2289:10;2301:6;2278:9;:30::i;4209:290:2:-;4323:12;:10;:12::i;:::-;-1:-1:-1;;;;;4311:24:2;:8;-1:-1:-1;;;;;4311:24:2;;;4303:62;;;;-1:-1:-1;;;4303:62:2;;;;;;;:::i;:::-;4421:8;4376:18;:32;4395:12;:10;:12::i;:::-;-1:-1:-1;;;;;4376:32:2;;;;;;;;;;;;;;;;;-1:-1:-1;4376:32:2;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;4376:53:2;;;;;;;;;;;4459:12;:10;:12::i;:::-;-1:-1:-1;;;;;4444:48:2;;4483:8;4444:48;;;;;;:::i;:::-;;;;;;;;4209:290;;:::o;5430:320::-;5599:41;5618:12;:10;:12::i;:::-;5632:7;5599:18;:41::i;:::-;5591:103;;;;-1:-1:-1;;;5591:103:2;;;;;;;:::i;:::-;5704:39;5718:4;5724:2;5728:7;5737:5;5704:13;:39::i;:::-;5430:320;;;;:::o;441:44:0:-;;;;;;;;;;;;;;;:::o;2744:329:2:-;2817:13;2850:16;2858:7;2850;:16::i;:::-;2842:76;;;;-1:-1:-1;;;2842:76:2;;;;;;;:::i;:::-;2929:21;2953:10;:8;:10::i;:::-;2929:34;;3004:1;2986:7;2980:21;:25;:86;;;;;;;;;;;;;;;;;3032:7;3041:18;:7;:16;:18::i;:::-;3015:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2980:86;2973:93;2744:329;-1:-1:-1;;;2744:329:2:o;291:34:0:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4565:162:2:-;-1:-1:-1;;;;;4685:25:2;;;4662:4;4685:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4565:162::o;675:482:0:-;746:14;763:13;:11;:13::i;:::-;796:10;;746:30;;-1:-1:-1;796:10:0;;795:11;786:66;;;;-1:-1:-1;;;786:66:0;;;;;;;:::i;:::-;396:4;902:6;:21;893:67;;;;-1:-1:-1;;;893:67:0;;;;;;;:::i;:::-;997:1;978:9;:16;:20;;;;:::i;:::-;:25;970:65;;;;-1:-1:-1;;;970:65:0;;;;;;;:::i;:::-;1050:9;1046:105;1062:9;:16;1060:1;:18;1046:105;;;1098:42;1112:9;1122:1;1112:12;;;;;;-1:-1:-1;;;1112:12:0;;;;;;;;;;;;;;;1125:9;1135:1;1137;1135:3;;;;:::i;:::-;1125:14;;;;;;-1:-1:-1;;;1125:14:0;;;;;;;;;;;;;;;1098:13;:42::i;:::-;1079:4;1082:1;1079:4;;:::i;:::-;;;1046:105;;1846:189:1;1196:12;:10;:12::i;:::-;-1:-1:-1;;;;;1185:23:1;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1185:23:1;;1177:68;;;;-1:-1:-1;;;1177:68:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;1934:22:1;::::1;1926:73;;;;-1:-1:-1::0;;;1926:73:1::1;;;;;;;:::i;:::-;2009:19;2019:8;2009:9;:19::i;:::-;1846:189:::0;:::o;1496:300:2:-;1598:4;-1:-1:-1;;;;;;1633:40:2;;-1:-1:-1;;;1633:40:2;;:104;;-1:-1:-1;;;;;;;1689:48:2;;-1:-1:-1;;;1689:48:2;1633:104;:156;;;;1753:36;1777:11;1753:23;:36::i;587:96:9:-;666:10;587:96;:::o;7222:125:2:-;7287:4;7310:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7310:16:2;:30;;;7222:125::o;11073:171::-;11147:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11147:29:2;-1:-1:-1;;;;;11147:29:2;;;;;;;;:24;;11200:23;11147:24;11200:14;:23::i;:::-;-1:-1:-1;;;;;11191:46:2;;;;;;;;;;;11073:171;;:::o;7505:344::-;7598:4;7622:16;7630:7;7622;:16::i;:::-;7614:73;;;;-1:-1:-1;;;7614:73:2;;;;;;;:::i;:::-;7697:13;7713:23;7728:7;7713:14;:23::i;:::-;7697:39;;7765:5;-1:-1:-1;;;;;7754:16:2;:7;-1:-1:-1;;;;;7754:16:2;;:51;;;;7798:7;-1:-1:-1;;;;;7774:31:2;:20;7786:7;7774:11;:20::i;:::-;-1:-1:-1;;;;;7774:31:2;;7754:51;:87;;;;7809:32;7826:5;7833:7;7809:16;:32::i;:::-;7746:96;7505:344;-1:-1:-1;;;;7505:344:2:o;10402:560::-;10556:4;-1:-1:-1;;;;;10529:31:2;:23;10544:7;10529:14;:23::i;:::-;-1:-1:-1;;;;;10529:31:2;;10521:85;;;;-1:-1:-1;;;10521:85:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;10624:16:2;;10616:65;;;;-1:-1:-1;;;10616:65:2;;;;;;;:::i;:::-;10692:39;10713:4;10719:2;10723:7;10692:20;:39::i;:::-;10793:29;10810:1;10814:7;10793:8;:29::i;:::-;-1:-1:-1;;;;;10833:15:2;;;;;;:9;:15;;;;;:20;;10852:1;;10833:15;:20;;10852:1;;10833:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10863:13:2;;;;;;:9;:13;;;;;:18;;10880:1;;10863:13;:18;;10880:1;;10863:18;:::i;:::-;;;;-1:-1:-1;;10891:16:2;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10891:21:2;-1:-1:-1;;;;;10891:21:2;;;;;;;;;10928:27;;10891:16;;10928:27;;;;;;;10402:560;;;:::o;2041:169:1:-;2115:6;;;-1:-1:-1;;;;;2131:17:1;;;-1:-1:-1;;;;;;2131:17:1;;;;;;;2163:40;;2115:6;;;2131:17;2115:6;;2163:40;;2096:16;;2163:40;2041:169;;:::o;8179:108:2:-;8254:26;8264:2;8268:7;8254:26;;;;;;;;;;;;:9;:26::i;6612:307::-;6763:28;6773:4;6779:2;6783:7;6763:9;:28::i;:::-;6809:48;6832:4;6838:2;6842:7;6851:5;6809:22;:48::i;:::-;6801:111;;;;-1:-1:-1;;;6801:111:2;;;;;;;:::i;2793:112:0:-;2853:13;2885;2878:20;;;;;:::i;275:703:10:-;331:13;548:10;544:51;;-1:-1:-1;574:10:10;;;;;;;;;;;;-1:-1:-1;;;574:10:10;;;;;;544:51;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:10;;-1:-1:-1;720:2:10;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;-1:-1:-1;;;764:17:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:10;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:10;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;-1:-1:-1;;;849:14:10;;;;;;;;;;;;:56;-1:-1:-1;;;;;849:56:10;;;;;;;;-1:-1:-1;919:11:10;928:2;919:11;;:::i;:::-;;;791:150;;763:155:11;-1:-1:-1;;;;;;871:40:11;;-1:-1:-1;;;871:40:11;763:155;;;:::o;2544:572:5:-;2683:45;2710:4;2716:2;2720:7;2683:26;:45::i;:::-;-1:-1:-1;;;;;2743:18:5;;2739:183;;2777:40;2809:7;2777:31;:40::i;:::-;2739:183;;;2846:2;-1:-1:-1;;;;;2838:10:5;:4;-1:-1:-1;;;;;2838:10:5;;2834:88;;2864:47;2897:4;2903:7;2864:32;:47::i;:::-;-1:-1:-1;;;;;2935:16:5;;2931:179;;2967:45;3004:7;2967:36;:45::i;:::-;2931:179;;;3039:4;-1:-1:-1;;;;;3033:10:5;:2;-1:-1:-1;;;;;3033:10:5;;3029:81;;3059:40;3087:2;3091:7;3059:27;:40::i;8508:311:2:-;8633:18;8639:2;8643:7;8633:5;:18::i;:::-;8682:54;8713:1;8717:2;8721:7;8730:5;8682:22;:54::i;:::-;8661:151;;;;-1:-1:-1;;;8661:151:2;;;;;;;:::i;11797:778::-;11947:4;11967:15;:2;-1:-1:-1;;;;;11967:13:2;;:15::i;:::-;11963:606;;;12018:2;-1:-1:-1;;;;;12002:36:2;;12039:12;:10;:12::i;:::-;12053:4;12059:7;12068:5;12002:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12002:72:2;;;;;;;;-1:-1:-1;;12002:72:2;;;;;;;;;;;;:::i;:::-;;;11998:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12241:13:2;;12237:266;;12283:60;;-1:-1:-1;;;12283:60:2;;;;;;;:::i;12237:266::-;12455:6;12449:13;12440:6;12436:2;12432:15;12425:38;11998:519;-1:-1:-1;;;;;;12124:51:2;-1:-1:-1;;;12124:51:2;;-1:-1:-1;12117:58:2;;11963:606;-1:-1:-1;12554:4:2;11797:778;;;;;;:::o;3822:161:5:-;3925:10;:17;;3898:24;;;;:15;:24;;;;;:44;;;3952:24;;;;;;;;;;;;3822:161::o;4600:970::-;4862:22;4912:1;4887:22;4904:4;4887:16;:22::i;:::-;:26;;;;:::i;:::-;4923:18;4944:26;;;:17;:26;;;;;;4862:51;;-1:-1:-1;5074:28:5;;;5070:323;;-1:-1:-1;;;;;5140:18:5;;5118:19;5140:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5189:30;;;;;;:44;;;5305:30;;:17;:30;;;;;:43;;;5070:323;-1:-1:-1;5486:26:5;;;;:17;:26;;;;;;;;5479:33;;;-1:-1:-1;;;;;5529:18:5;;;;;:12;:18;;;;;:34;;;;;;;5522:41;4600:970::o;5858:1061::-;6132:10;:17;6107:22;;6132:21;;6152:1;;6132:21;:::i;:::-;6163:18;6184:24;;;:15;:24;;;;;;6552:10;:26;;6107:46;;-1:-1:-1;6184:24:5;;6107:46;;6552:26;;;;-1:-1:-1;;;6552:26:5;;;;;;;;;;;;;;;;;6530:48;;6614:11;6589:10;6600;6589:22;;;;;;-1:-1:-1;;;6589:22:5;;;;;;;;;;;;;;;;;;;;:36;;;;6693:28;;;:15;:28;;;;;;;:41;;;6862:24;;;;;6855:31;6896:10;:16;;;;;-1:-1:-1;;;6896:16:5;;;;;;;;;;;;;;;;;;;;;;;;;;5858:1061;;;;:::o;3410:217::-;3494:14;3511:20;3528:2;3511:16;:20::i;:::-;-1:-1:-1;;;;;3541:16:5;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3585:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3410:217:5:o;9141:372:2:-;-1:-1:-1;;;;;9220:16:2;;9212:61;;;;-1:-1:-1;;;9212:61:2;;;;;;;:::i;:::-;9292:16;9300:7;9292;:16::i;:::-;9291:17;9283:58;;;;-1:-1:-1;;;9283:58:2;;;;;;;:::i;:::-;9352:45;9381:1;9385:2;9389:7;9352:20;:45::i;:::-;-1:-1:-1;;;;;9408:13:2;;;;;;:9;:13;;;;;:18;;9425:1;;9408:13;:18;;9425:1;;9408:18;:::i;:::-;;;;-1:-1:-1;;9436:16:2;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9436:21:2;-1:-1:-1;;;;;9436:21:2;;;;;;;;9473:33;;9436:16;;;9473:33;;9436:16;;9473:33;9141:372;;:::o;718:377:8:-;1034:20;1080:8;;;718:377::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:409:13;;114:18;106:6;103:30;100:2;;;136:18;;:::i;:::-;174:58;220:2;197:17;;-1:-1:-1;;193:31:13;226:4;189:42;174:58;:::i;:::-;165:67;;255:6;248:5;241:21;295:3;286:6;281:3;277:16;274:25;271:2;;;312:1;309;302:12;271:2;361:6;356:3;349:4;342:5;338:16;325:43;415:1;408:4;399:6;392:5;388:18;384:29;377:40;90:333;;;;;:::o;428:162::-;495:20;;551:13;;544:21;534:32;;524:2;;580:1;577;570:12;595:259;;707:2;695:9;686:7;682:23;678:32;675:2;;;728:6;720;713:22;675:2;772:9;759:23;791:33;818:5;791:33;:::i;859:263::-;;982:2;970:9;961:7;957:23;953:32;950:2;;;1003:6;995;988:22;950:2;1040:9;1034:16;1059:33;1086:5;1059:33;:::i;1127:402::-;;;1256:2;1244:9;1235:7;1231:23;1227:32;1224:2;;;1277:6;1269;1262:22;1224:2;1321:9;1308:23;1340:33;1367:5;1340:33;:::i;:::-;1392:5;-1:-1:-1;1449:2:13;1434:18;;1421:32;1462:35;1421:32;1462:35;:::i;:::-;1516:7;1506:17;;;1214:315;;;;;:::o;1534:470::-;;;;1680:2;1668:9;1659:7;1655:23;1651:32;1648:2;;;1701:6;1693;1686:22;1648:2;1745:9;1732:23;1764:33;1791:5;1764:33;:::i;:::-;1816:5;-1:-1:-1;1873:2:13;1858:18;;1845:32;1886:35;1845:32;1886:35;:::i;:::-;1638:366;;1940:7;;-1:-1:-1;;;1994:2:13;1979:18;;;;1966:32;;1638:366::o;2009:830::-;;;;;2181:3;2169:9;2160:7;2156:23;2152:33;2149:2;;;2203:6;2195;2188:22;2149:2;2247:9;2234:23;2266:33;2293:5;2266:33;:::i;:::-;2318:5;-1:-1:-1;2375:2:13;2360:18;;2347:32;2388:35;2347:32;2388:35;:::i;:::-;2442:7;-1:-1:-1;2496:2:13;2481:18;;2468:32;;-1:-1:-1;2551:2:13;2536:18;;2523:32;2578:18;2567:30;;2564:2;;;2615:6;2607;2600:22;2564:2;2643:22;;2696:4;2688:13;;2684:27;-1:-1:-1;2674:2:13;;2730:6;2722;2715:22;2674:2;2758:75;2825:7;2820:2;2807:16;2802:2;2798;2794:11;2758:75;:::i;:::-;2748:85;;;2139:700;;;;;;;:::o;2844:329::-;;;2970:2;2958:9;2949:7;2945:23;2941:32;2938:2;;;2991:6;2983;2976:22;2938:2;3035:9;3022:23;3054:33;3081:5;3054:33;:::i;:::-;3106:5;-1:-1:-1;3130:37:13;3163:2;3148:18;;3130:37;:::i;:::-;3120:47;;2928:245;;;;;:::o;3178:327::-;;;3307:2;3295:9;3286:7;3282:23;3278:32;3275:2;;;3328:6;3320;3313:22;3275:2;3372:9;3359:23;3391:33;3418:5;3391:33;:::i;:::-;3443:5;3495:2;3480:18;;;;3467:32;;-1:-1:-1;;;3265:240:13:o;3510:1002::-;;3625:2;3668;3656:9;3647:7;3643:23;3639:32;3636:2;;;3689:6;3681;3674:22;3636:2;3734:9;3721:23;3763:18;3804:2;3796:6;3793:14;3790:2;;;3825:6;3817;3810:22;3790:2;3868:6;3857:9;3853:22;3843:32;;3913:7;3906:4;3902:2;3898:13;3894:27;3884:2;;3940:6;3932;3925:22;3884:2;3981;3968:16;4003:2;3999;3996:10;3993:2;;;4009:18;;:::i;:::-;4056:2;4052;4048:11;4038:21;;4079:27;4102:2;4098;4094:11;4079:27;:::i;:::-;4140:15;;;4171:12;;;;4203:11;;;4233;;;4229:20;;4226:33;-1:-1:-1;4223:2:13;;;4277:6;4269;4262:22;4223:2;4304:6;4295:15;;4319:163;4333:2;4330:1;4327:9;4319:163;;;4390:17;;4378:30;;4351:1;4344:9;;;;;4428:12;;;;4460;;4319:163;;;-1:-1:-1;4501:5:13;3605:907;-1:-1:-1;;;;;;;;3605:907:13:o;4517:192::-;;4626:2;4614:9;4605:7;4601:23;4597:32;4594:2;;;4647:6;4639;4632:22;4594:2;4675:28;4693:9;4675:28;:::i;4714:257::-;;4825:2;4813:9;4804:7;4800:23;4796:32;4793:2;;;4846:6;4838;4831:22;4793:2;4890:9;4877:23;4909:32;4935:5;4909:32;:::i;4976:261::-;;5098:2;5086:9;5077:7;5073:23;5069:32;5066:2;;;5119:6;5111;5104:22;5066:2;5156:9;5150:16;5175:32;5201:5;5175:32;:::i;5242:482::-;;5364:2;5352:9;5343:7;5339:23;5335:32;5332:2;;;5385:6;5377;5370:22;5332:2;5430:9;5417:23;5463:18;5455:6;5452:30;5449:2;;;5500:6;5492;5485:22;5449:2;5528:22;;5581:4;5573:13;;5569:27;-1:-1:-1;5559:2:13;;5615:6;5607;5600:22;5559:2;5643:75;5710:7;5705:2;5692:16;5687:2;5683;5679:11;5643:75;:::i;5729:190::-;;5841:2;5829:9;5820:7;5816:23;5812:32;5809:2;;;5862:6;5854;5847:22;5809:2;-1:-1:-1;5890:23:13;;5799:120;-1:-1:-1;5799:120:13:o;5924:258::-;;;6053:2;6041:9;6032:7;6028:23;6024:32;6021:2;;;6074:6;6066;6059:22;6021:2;-1:-1:-1;;6102:23:13;;;6172:2;6157:18;;;6144:32;;-1:-1:-1;6011:171:13:o;6187:259::-;;6268:5;6262:12;6295:6;6290:3;6283:19;6311:63;6367:6;6360:4;6355:3;6351:14;6344:4;6337:5;6333:16;6311:63;:::i;:::-;6428:2;6407:15;-1:-1:-1;;6403:29:13;6394:39;;;;6435:4;6390:50;;6238:208;-1:-1:-1;;6238:208:13:o;6451:470::-;;6668:6;6662:13;6684:53;6730:6;6725:3;6718:4;6710:6;6706:17;6684:53;:::i;:::-;6800:13;;6759:16;;;;6822:57;6800:13;6759:16;6856:4;6844:17;;6822:57;:::i;:::-;6895:20;;6638:283;-1:-1:-1;;;;6638:283:13:o;6926:203::-;-1:-1:-1;;;;;7090:32:13;;;;7072:51;;7060:2;7045:18;;7027:102::o;7134:490::-;-1:-1:-1;;;;;7403:15:13;;;7385:34;;7455:15;;7450:2;7435:18;;7428:43;7502:2;7487:18;;7480:34;;;7550:3;7545:2;7530:18;;7523:31;;;7134:490;;7571:47;;7598:19;;7590:6;7571:47;:::i;:::-;7563:55;7337:287;-1:-1:-1;;;;;;7337:287:13:o;7629:635::-;7800:2;7852:21;;;7922:13;;7825:18;;;7944:22;;;7629:635;;7800:2;8023:15;;;;7997:2;7982:18;;;7629:635;8069:169;8083:6;8080:1;8077:13;8069:169;;;8144:13;;8132:26;;8213:15;;;;8178:12;;;;8105:1;8098:9;8069:169;;;-1:-1:-1;8255:3:13;;7780:484;-1:-1:-1;;;;;;7780:484:13:o;8269:187::-;8434:14;;8427:22;8409:41;;8397:2;8382:18;;8364:92::o;8461:221::-;;8610:2;8599:9;8592:21;8630:46;8672:2;8661:9;8657:18;8649:6;8630:46;:::i;8687:407::-;8889:2;8871:21;;;8928:2;8908:18;;;8901:30;8967:34;8962:2;8947:18;;8940:62;-1:-1:-1;;;9033:2:13;9018:18;;9011:41;9084:3;9069:19;;8861:233::o;9099:414::-;9301:2;9283:21;;;9340:2;9320:18;;;9313:30;9379:34;9374:2;9359:18;;9352:62;-1:-1:-1;;;9445:2:13;9430:18;;9423:48;9503:3;9488:19;;9273:240::o;9518:402::-;9720:2;9702:21;;;9759:2;9739:18;;;9732:30;9798:34;9793:2;9778:18;;9771:62;-1:-1:-1;;;9864:2:13;9849:18;;9842:36;9910:3;9895:19;;9692:228::o;9925:352::-;10127:2;10109:21;;;10166:2;10146:18;;;10139:30;10205;10200:2;10185:18;;10178:58;10268:2;10253:18;;10099:178::o;10282:352::-;10484:2;10466:21;;;10523:2;10503:18;;;10496:30;10562;10557:2;10542:18;;10535:58;10625:2;10610:18;;10456:178::o;10639:400::-;10841:2;10823:21;;;10880:2;10860:18;;;10853:30;10919:34;10914:2;10899:18;;10892:62;-1:-1:-1;;;10985:2:13;10970:18;;10963:34;11029:3;11014:19;;10813:226::o;11044:349::-;11246:2;11228:21;;;11285:2;11265:18;;;11258:30;11324:27;11319:2;11304:18;;11297:55;11384:2;11369:18;;11218:175::o;11398:408::-;11600:2;11582:21;;;11639:2;11619:18;;;11612:30;11678:34;11673:2;11658:18;;11651:62;-1:-1:-1;;;11744:2:13;11729:18;;11722:42;11796:3;11781:19;;11572:234::o;11811:420::-;12013:2;11995:21;;;12052:2;12032:18;;;12025:30;12091:34;12086:2;12071:18;;12064:62;12162:26;12157:2;12142:18;;12135:54;12221:3;12206:19;;11985:246::o;12236:406::-;12438:2;12420:21;;;12477:2;12457:18;;;12450:30;12516:34;12511:2;12496:18;;12489:62;-1:-1:-1;;;12582:2:13;12567:18;;12560:40;12632:3;12617:19;;12410:232::o;12647:405::-;12849:2;12831:21;;;12888:2;12868:18;;;12861:30;12927:34;12922:2;12907:18;;12900:62;-1:-1:-1;;;12993:2:13;12978:18;;12971:39;13042:3;13027:19;;12821:231::o;13057:356::-;13259:2;13241:21;;;13278:18;;;13271:30;13337:34;13332:2;13317:18;;13310:62;13404:2;13389:18;;13231:182::o;13418:335::-;13620:2;13602:21;;;13659:2;13639:18;;;13632:30;-1:-1:-1;;;13693:2:13;13678:18;;13671:41;13744:2;13729:18;;13592:161::o;13758:408::-;13960:2;13942:21;;;13999:2;13979:18;;;13972:30;14038:34;14033:2;14018:18;;14011:62;-1:-1:-1;;;14104:2:13;14089:18;;14082:42;14156:3;14141:19;;13932:234::o;14171:356::-;14373:2;14355:21;;;14392:18;;;14385:30;14451:34;14446:2;14431:18;;14424:62;14518:2;14503:18;;14345:182::o;14532:347::-;14734:2;14716:21;;;14773:2;14753:18;;;14746:30;14812:25;14807:2;14792:18;;14785:53;14870:2;14855:18;;14706:173::o;14884:405::-;15086:2;15068:21;;;15125:2;15105:18;;;15098:30;15164:34;15159:2;15144:18;;15137:62;-1:-1:-1;;;15230:2:13;15215:18;;15208:39;15279:3;15264:19;;15058:231::o;15294:355::-;15496:2;15478:21;;;15535:2;15515:18;;;15508:30;15574:33;15569:2;15554:18;;15547:61;15640:2;15625:18;;15468:181::o;15654:411::-;15856:2;15838:21;;;15895:2;15875:18;;;15868:30;15934:34;15929:2;15914:18;;15907:62;-1:-1:-1;;;16000:2:13;15985:18;;15978:45;16055:3;16040:19;;15828:237::o;16070:347::-;16272:2;16254:21;;;16311:2;16291:18;;;16284:30;16350:25;16345:2;16330:18;;16323:53;16408:2;16393:18;;16244:173::o;16422:397::-;16624:2;16606:21;;;16663:2;16643:18;;;16636:30;16702:34;16697:2;16682:18;;16675:62;-1:-1:-1;;;16768:2:13;16753:18;;16746:31;16809:3;16794:19;;16596:223::o;16824:348::-;17026:2;17008:21;;;17065:2;17045:18;;;17038:30;17104:26;17099:2;17084:18;;17077:54;17163:2;17148:18;;16998:174::o;17177:413::-;17379:2;17361:21;;;17418:2;17398:18;;;17391:30;17457:34;17452:2;17437:18;;17430:62;-1:-1:-1;;;17523:2:13;17508:18;;17501:47;17580:3;17565:19;;17351:239::o;17595:408::-;17797:2;17779:21;;;17836:2;17816:18;;;17809:30;17875:34;17870:2;17855:18;;17848:62;-1:-1:-1;;;17941:2:13;17926:18;;17919:42;17993:3;17978:19;;17769:234::o;18008:348::-;18210:2;18192:21;;;18249:2;18229:18;;;18222:30;18288:26;18283:2;18268:18;;18261:54;18347:2;18332:18;;18182:174::o;18361:177::-;18507:25;;;18495:2;18480:18;;18462:76::o;18543:251::-;18613:2;18607:9;18643:17;;;18690:18;18675:34;;18711:22;;;18672:62;18669:2;;;18737:18;;:::i;:::-;18773:2;18766:22;18587:207;;-1:-1:-1;18587:207:13:o;18799:128::-;;18870:1;18866:6;18863:1;18860:13;18857:2;;;18876:18;;:::i;:::-;-1:-1:-1;18912:9:13;;18847:80::o;18932:120::-;;18998:1;18988:2;;19003:18;;:::i;:::-;-1:-1:-1;19037:9:13;;18978:74::o;19057:125::-;;19125:1;19122;19119:8;19116:2;;;19130:18;;:::i;:::-;-1:-1:-1;19167:9:13;;19106:76::o;19187:258::-;19259:1;19269:113;19283:6;19280:1;19277:13;19269:113;;;19359:11;;;19353:18;19340:11;;;19333:39;19305:2;19298:10;19269:113;;;19400:6;19397:1;19394:13;19391:2;;;-1:-1:-1;;19435:1:13;19417:16;;19410:27;19240:205::o;19450:380::-;19535:1;19525:12;;19582:1;19572:12;;;19593:2;;19647:4;19639:6;19635:17;19625:27;;19593:2;19700;19692:6;19689:14;19669:18;19666:38;19663:2;;;19746:10;19741:3;19737:20;19734:1;19727:31;19781:4;19778:1;19771:15;19809:4;19806:1;19799:15;19663:2;;19505:325;;;:::o;19835:135::-;;-1:-1:-1;;19895:17:13;;19892:2;;;19915:18;;:::i;:::-;-1:-1:-1;19962:1:13;19951:13;;19882:88::o;19975:112::-;;20033:1;20023:2;;20038:18;;:::i;:::-;-1:-1:-1;20072:9:13;;20013:74::o;20092:127::-;20153:10;20148:3;20144:20;20141:1;20134:31;20184:4;20181:1;20174:15;20208:4;20205:1;20198:15;20224:127;20285:10;20280:3;20276:20;20273:1;20266:31;20316:4;20313:1;20306:15;20340:4;20337:1;20330:15;20356:127;20417:10;20412:3;20408:20;20405:1;20398:31;20448:4;20445:1;20438:15;20472:4;20469:1;20462:15;20488:133;-1:-1:-1;;;;;20565:31:13;;20555:42;;20545:2;;20611:1;20608;20601:12;20626:133;-1:-1:-1;;;;;;20702:32:13;;20692:43;;20682:2;;20749:1;20746;20739:12

Swarm Source

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