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

Token

Orcz (ORCZ)
 

Overview

Max Total Supply

8,798 ORCZ

Holders

2,937

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
10 ORCZ
0x6d9023a7bc45f638f86bcfedbe7a47904e7d05a3
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:
Orcz

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-31
*/

// SPDX-License-Identifier: MIT
//
// _____  ______   _____   ______
//|  _  | | ___ \ /  __ \ |___  /
//| | | | | |_/ / | /  \/    / / 
//| | | | |    /  | |       / /  
//\ \_/ / | |\ \  | \__/\ ./ /___
// \___/  \_| \_| \____/  \_____/
//
//
//Contract by @CobbleDev
//

pragma solidity ^0.8.0;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }
}



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);
}


pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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




pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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


pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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




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);
}




pragma solidity ^0.8.0;


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


pragma solidity ^0.8.0;


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. 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 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` 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 { }
}



pragma solidity ^0.8.0;


/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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





pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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




pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}



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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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);
            }
        }
    }
}

pragma solidity ^0.8.0;

contract Orcz is Context, ERC721Enumerable, ERC721Burnable, Ownable {
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdTracker;

    string private _baseTokenURI;
    
    address CommunityAddress = 0xA3BDaa505a72FC6B3e15E69Ac1577aEcd0E2736b;
    address CobbleAddress = 0xE0666cAC0C2267209Ba3Da4Db00c03315Fe64fA8;
    address ChabusanAddress = 0xb4ce5faeB2228Bf48Ea7f5545eA0CD5d53F95a16;
    address MattAddress = 0xd17EdAE5256Ba32A8b34DD428Bcc625B704Ad104;
    
    uint private constant maxOrcz = 8800;
    uint private constant mintPrice = 40000000000000000;
    bool private paused = true;
    uint public leftToPayCommunity = 60000000000000000000;
    
    event CreateOrcz(uint indexed id);

    constructor() ERC721("Orcz", "ORCZ") {
        _baseTokenURI = "https://goblingoonslair.com/orcz/";
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }
    
    function setBaseURI(string memory baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function mint(uint amount) public payable {
        require(!paused || msg.sender == owner());
        require(msg.value == mintPrice*amount || msg.sender == owner(), "It costs 0.04 eth to mint a Orcz.");
        require(totalSupply() + amount < maxOrcz, "There can only be 8800 Orcz!");
        for(uint i = 0; i < amount; i++) {
            _tokenIdTracker.increment();
            _mint(msg.sender, _tokenIdTracker.current());
            emit CreateOrcz(_tokenIdTracker.current());
        }
    }

    function pause() public virtual onlyOwner {
        paused = true;
    }

    function unpause() public virtual onlyOwner {
        paused = false;
    }
    
    function withdraw() external onlyOwner {
        uint balance = address(this).balance;
        if(balance < leftToPayCommunity) {
            payable(CommunityAddress).transfer(balance);
            leftToPayCommunity = leftToPayCommunity-balance;
            return;
        } else if(leftToPayCommunity > 0) {
            payable(CommunityAddress).transfer(leftToPayCommunity);
            leftToPayCommunity = 0;
        }
        
        payable(CobbleAddress).transfer(balance/5);
        payable(ChabusanAddress).transfer(balance/20);
        payable(MattAddress).transfer(balance/5);
        payable(msg.sender).transfer(address(this).balance);
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"CreateOrcz","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","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":"leftToPayCommunity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600d80546001600160a01b031990811673a3bdaa505a72fc6b3e15e69ac1577aecd0e2736b17909155600e8054821673e0666cac0c2267209ba3da4db00c03315fe64fa8179055600f805490911673b4ce5faeb2228bf48ea7f5545ea0cd5d53f95a16179055601080547401d17edae5256ba32a8b34dd428bcc625b704ad1046001600160a81b0319909116179055680340aad21b3b700000601155348015620000ad57600080fd5b506040518060400160405280600481526020016327b931bd60e11b8152506040518060400160405280600481526020016327a921ad60e11b815250816000908051906020019062000100929190620001c0565b50805162000116906001906020840190620001c0565b505050620001336200012d6200016a60201b60201c565b6200016e565b604051806060016040528060218152602001620024596021913980516200016391600c91602090910190620001c0565b50620002a3565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001ce9062000266565b90600052602060002090601f016020900481019282620001f257600085556200023d565b82601f106200020d57805160ff19168380011785556200023d565b828001600101855582156200023d579182015b828111156200023d57825182559160200191906001019062000220565b506200024b9291506200024f565b5090565b5b808211156200024b576000815560010162000250565b600181811c908216806200027b57607f821691505b602082108114156200029d57634e487b7160e01b600052602260045260246000fd5b50919050565b6121a680620002b36000396000f3fe6080604052600436106101815760003560e01c80636352211e116100d1578063a0712d681161008a578063bb8bb59011610064578063bb8bb59014610430578063c87b56dd14610446578063e985e9c514610466578063f2fde38b146104af57600080fd5b8063a0712d68146103dd578063a22cb465146103f0578063b88d4fde1461041057600080fd5b80636352211e1461034057806370a0823114610360578063715018a6146103805780638456cb59146103955780638da5cb5b146103aa57806395d89b41146103c857600080fd5b80632f745c591161013e57806342842e0e1161011857806342842e0e146102c057806342966c68146102e05780634f6ccce71461030057806355f804b31461032057600080fd5b80632f745c59146102765780633ccfd60b146102965780633f4ba83a146102ab57600080fd5b806301ffc9a71461018657806306fdde03146101bb578063081812fc146101dd578063095ea7b31461021557806318160ddd1461023757806323b872dd14610256575b600080fd5b34801561019257600080fd5b506101a66101a1366004611e07565b6104cf565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101d06104e0565b6040516101b29190611f35565b3480156101e957600080fd5b506101fd6101f8366004611e85565b610572565b6040516001600160a01b0390911681526020016101b2565b34801561022157600080fd5b50610235610230366004611dde565b61060c565b005b34801561024357600080fd5b506008545b6040519081526020016101b2565b34801561026257600080fd5b50610235610271366004611cf0565b610722565b34801561028257600080fd5b50610248610291366004611dde565b610754565b3480156102a257600080fd5b506102356107ea565b3480156102b757600080fd5b506102356109b4565b3480156102cc57600080fd5b506102356102db366004611cf0565b6109ed565b3480156102ec57600080fd5b506102356102fb366004611e85565b610a08565b34801561030c57600080fd5b5061024861031b366004611e85565b610a82565b34801561032c57600080fd5b5061023561033b366004611e3f565b610b23565b34801561034c57600080fd5b506101fd61035b366004611e85565b610b60565b34801561036c57600080fd5b5061024861037b366004611ca4565b610bd7565b34801561038c57600080fd5b50610235610c5e565b3480156103a157600080fd5b50610235610c92565b3480156103b657600080fd5b50600a546001600160a01b03166101fd565b3480156103d457600080fd5b506101d0610cd1565b6102356103eb366004611e85565b610ce0565b3480156103fc57600080fd5b5061023561040b366004611da4565b610e57565b34801561041c57600080fd5b5061023561042b366004611d2b565b610f1c565b34801561043c57600080fd5b5061024860115481565b34801561045257600080fd5b506101d0610461366004611e85565b610f54565b34801561047257600080fd5b506101a6610481366004611cbe565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104bb57600080fd5b506102356104ca366004611ca4565b61102f565b60006104da826110c7565b92915050565b6060600080546104ef906120ae565b80601f016020809104026020016040519081016040528092919081815260200182805461051b906120ae565b80156105685780601f1061053d57610100808354040283529160200191610568565b820191906000526020600020905b81548152906001019060200180831161054b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105f05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061061782610b60565b9050806001600160a01b0316836001600160a01b031614156106855760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105e7565b336001600160a01b03821614806106a157506106a18133610481565b6107135760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105e7565b61071d83836110ec565b505050565b61072d335b8261115a565b6107495760405162461bcd60e51b81526004016105e790611fcf565b61071d838383611251565b600061075f83610bd7565b82106107c15760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105e7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146108145760405162461bcd60e51b81526004016105e790611f9a565b601154479081101561086f57600d546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561085a573d6000803e3d6000fd5b5080601154610869919061206b565b60115550565b601154156108ba57600d546011546040516001600160a01b039092169181156108fc0291906000818181858888f193505050501580156108b3573d6000803e3d6000fd5b5060006011555b600e546001600160a01b03166108fc6108d4600584612038565b6040518115909202916000818181858888f193505050501580156108fc573d6000803e3d6000fd5b50600f546001600160a01b03166108fc610917601484612038565b6040518115909202916000818181858888f1935050505015801561093f573d6000803e3d6000fd5b506010546001600160a01b03166108fc61095a600584612038565b6040518115909202916000818181858888f19350505050158015610982573d6000803e3d6000fd5b5060405133904780156108fc02916000818181858888f193505050501580156109af573d6000803e3d6000fd5b50505b565b600a546001600160a01b031633146109de5760405162461bcd60e51b81526004016105e790611f9a565b6010805460ff60a01b19169055565b61071d83838360405180602001604052806000815250610f1c565b610a1133610727565b610a765760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016105e7565b610a7f816113fc565b50565b6000610a8d60085490565b8210610af05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105e7565b60088281548110610b1157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610b4d5760405162461bcd60e51b81526004016105e790611f9a565b80516109af90600c906020840190611b79565b6000818152600260205260408120546001600160a01b0316806104da5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105e7565b60006001600160a01b038216610c425760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105e7565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c885760405162461bcd60e51b81526004016105e790611f9a565b6109b260006114a3565b600a546001600160a01b03163314610cbc5760405162461bcd60e51b81526004016105e790611f9a565b6010805460ff60a01b1916600160a01b179055565b6060600180546104ef906120ae565b601054600160a01b900460ff161580610d035750600a546001600160a01b031633145b610d0c57600080fd5b610d1d81668e1bc9bf04000061204c565b341480610d345750600a546001600160a01b031633145b610d8a5760405162461bcd60e51b815260206004820152602160248201527f497420636f73747320302e30342065746820746f206d696e742061204f72637a6044820152601760f91b60648201526084016105e7565b61226081610d9760085490565b610da19190612020565b10610dee5760405162461bcd60e51b815260206004820152601c60248201527f54686572652063616e206f6e6c792062652038383030204f72637a210000000060448201526064016105e7565b60005b818110156109af57610e07600b80546001019055565b610e1933610e14600b5490565b6114f5565b600b546040517f13a545fef381d56065b8ac0095de2724a28bac8851d44d7ddc1725a23e58173f90600090a280610e4f816120e9565b915050610df1565b6001600160a01b038216331415610eb05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105e7565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f26338361115a565b610f425760405162461bcd60e51b81526004016105e790611fcf565b610f4e84848484611643565b50505050565b6000818152600260205260409020546060906001600160a01b0316610fd35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105e7565b6000610fdd611676565b90506000815111610ffd5760405180602001604052806000815250611028565b8061100784611685565b604051602001611018929190611ec9565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146110595760405162461bcd60e51b81526004016105e790611f9a565b6001600160a01b0381166110be5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105e7565b610a7f816114a3565b60006001600160e01b0319821663780e9d6360e01b14806104da57506104da8261179f565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061112182610b60565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111d35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105e7565b60006111de83610b60565b9050806001600160a01b0316846001600160a01b031614806112195750836001600160a01b031661120e84610572565b6001600160a01b0316145b8061124957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661126482610b60565b6001600160a01b0316146112cc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105e7565b6001600160a01b03821661132e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105e7565b6113398383836117ef565b6113446000826110ec565b6001600160a01b038316600090815260036020526040812080546001929061136d90849061206b565b90915550506001600160a01b038216600090815260036020526040812080546001929061139b908490612020565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061140782610b60565b9050611415816000846117ef565b6114206000836110ec565b6001600160a01b038116600090815260036020526040812080546001929061144990849061206b565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821661154b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105e7565b6000818152600260205260409020546001600160a01b0316156115b05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105e7565b6115bc600083836117ef565b6001600160a01b03821660009081526003602052604081208054600192906115e5908490612020565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b61164e848484611251565b61165a848484846117fa565b610f4e5760405162461bcd60e51b81526004016105e790611f48565b6060600c80546104ef906120ae565b6060816116a95750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116d357806116bd816120e9565b91506116cc9050600a83612038565b91506116ad565b60008167ffffffffffffffff8111156116fc57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611726576020820181803683370190505b5090505b84156112495761173b60018361206b565b9150611748600a86612104565b611753906030612020565b60f81b81838151811061177657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611798600a86612038565b945061172a565b60006001600160e01b031982166380ac58cd60e01b14806117d057506001600160e01b03198216635b5e139f60e01b145b806104da57506301ffc9a760e01b6001600160e01b03198316146104da565b61071d838383611907565b60006001600160a01b0384163b156118fc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061183e903390899088908890600401611ef8565b602060405180830381600087803b15801561185857600080fd5b505af1925050508015611888575060408051601f3d908101601f1916820190925261188591810190611e23565b60015b6118e2573d8080156118b6576040519150601f19603f3d011682016040523d82523d6000602084013e6118bb565b606091505b5080516118da5760405162461bcd60e51b81526004016105e790611f48565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611249565b506001949350505050565b6001600160a01b0383166119625761195d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611985565b816001600160a01b0316836001600160a01b0316146119855761198583826119bf565b6001600160a01b03821661199c5761071d81611a5c565b826001600160a01b0316826001600160a01b03161461071d5761071d8282611b35565b600060016119cc84610bd7565b6119d6919061206b565b600083815260076020526040902054909150808214611a29576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a6e9060019061206b565b60008381526009602052604081205460088054939450909284908110611aa457634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611ad357634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b1957634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611b4083610bd7565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611b85906120ae565b90600052602060002090601f016020900481019282611ba75760008555611bed565b82601f10611bc057805160ff1916838001178555611bed565b82800160010185558215611bed579182015b82811115611bed578251825591602001919060010190611bd2565b50611bf9929150611bfd565b5090565b5b80821115611bf95760008155600101611bfe565b600067ffffffffffffffff80841115611c2d57611c2d612144565b604051601f8501601f19908116603f01168101908282118183101715611c5557611c55612144565b81604052809350858152868686011115611c6e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c9f57600080fd5b919050565b600060208284031215611cb5578081fd5b61102882611c88565b60008060408385031215611cd0578081fd5b611cd983611c88565b9150611ce760208401611c88565b90509250929050565b600080600060608486031215611d04578081fd5b611d0d84611c88565b9250611d1b60208501611c88565b9150604084013590509250925092565b60008060008060808587031215611d40578081fd5b611d4985611c88565b9350611d5760208601611c88565b925060408501359150606085013567ffffffffffffffff811115611d79578182fd5b8501601f81018713611d89578182fd5b611d9887823560208401611c12565b91505092959194509250565b60008060408385031215611db6578182fd5b611dbf83611c88565b915060208301358015158114611dd3578182fd5b809150509250929050565b60008060408385031215611df0578182fd5b611df983611c88565b946020939093013593505050565b600060208284031215611e18578081fd5b81356110288161215a565b600060208284031215611e34578081fd5b81516110288161215a565b600060208284031215611e50578081fd5b813567ffffffffffffffff811115611e66578182fd5b8201601f81018413611e76578182fd5b61124984823560208401611c12565b600060208284031215611e96578081fd5b5035919050565b60008151808452611eb5816020860160208601612082565b601f01601f19169290920160200192915050565b60008351611edb818460208801612082565b835190830190611eef818360208801612082565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f2b90830184611e9d565b9695505050505050565b6020815260006110286020830184611e9d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561203357612033612118565b500190565b6000826120475761204761212e565b500490565b600081600019048311821515161561206657612066612118565b500290565b60008282101561207d5761207d612118565b500390565b60005b8381101561209d578181015183820152602001612085565b83811115610f4e5750506000910152565b600181811c908216806120c257607f821691505b602082108114156120e357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120fd576120fd612118565b5060010190565b6000826121135761211361212e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a7f57600080fdfea2646970667358221220c101c21966fc9840265d43ba732d93b6c6252525761ec6c2204a19c0113e868a64736f6c6343000804003368747470733a2f2f676f626c696e676f6f6e736c6169722e636f6d2f6f72637a2f

Deployed Bytecode

0x6080604052600436106101815760003560e01c80636352211e116100d1578063a0712d681161008a578063bb8bb59011610064578063bb8bb59014610430578063c87b56dd14610446578063e985e9c514610466578063f2fde38b146104af57600080fd5b8063a0712d68146103dd578063a22cb465146103f0578063b88d4fde1461041057600080fd5b80636352211e1461034057806370a0823114610360578063715018a6146103805780638456cb59146103955780638da5cb5b146103aa57806395d89b41146103c857600080fd5b80632f745c591161013e57806342842e0e1161011857806342842e0e146102c057806342966c68146102e05780634f6ccce71461030057806355f804b31461032057600080fd5b80632f745c59146102765780633ccfd60b146102965780633f4ba83a146102ab57600080fd5b806301ffc9a71461018657806306fdde03146101bb578063081812fc146101dd578063095ea7b31461021557806318160ddd1461023757806323b872dd14610256575b600080fd5b34801561019257600080fd5b506101a66101a1366004611e07565b6104cf565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101d06104e0565b6040516101b29190611f35565b3480156101e957600080fd5b506101fd6101f8366004611e85565b610572565b6040516001600160a01b0390911681526020016101b2565b34801561022157600080fd5b50610235610230366004611dde565b61060c565b005b34801561024357600080fd5b506008545b6040519081526020016101b2565b34801561026257600080fd5b50610235610271366004611cf0565b610722565b34801561028257600080fd5b50610248610291366004611dde565b610754565b3480156102a257600080fd5b506102356107ea565b3480156102b757600080fd5b506102356109b4565b3480156102cc57600080fd5b506102356102db366004611cf0565b6109ed565b3480156102ec57600080fd5b506102356102fb366004611e85565b610a08565b34801561030c57600080fd5b5061024861031b366004611e85565b610a82565b34801561032c57600080fd5b5061023561033b366004611e3f565b610b23565b34801561034c57600080fd5b506101fd61035b366004611e85565b610b60565b34801561036c57600080fd5b5061024861037b366004611ca4565b610bd7565b34801561038c57600080fd5b50610235610c5e565b3480156103a157600080fd5b50610235610c92565b3480156103b657600080fd5b50600a546001600160a01b03166101fd565b3480156103d457600080fd5b506101d0610cd1565b6102356103eb366004611e85565b610ce0565b3480156103fc57600080fd5b5061023561040b366004611da4565b610e57565b34801561041c57600080fd5b5061023561042b366004611d2b565b610f1c565b34801561043c57600080fd5b5061024860115481565b34801561045257600080fd5b506101d0610461366004611e85565b610f54565b34801561047257600080fd5b506101a6610481366004611cbe565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104bb57600080fd5b506102356104ca366004611ca4565b61102f565b60006104da826110c7565b92915050565b6060600080546104ef906120ae565b80601f016020809104026020016040519081016040528092919081815260200182805461051b906120ae565b80156105685780601f1061053d57610100808354040283529160200191610568565b820191906000526020600020905b81548152906001019060200180831161054b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105f05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061061782610b60565b9050806001600160a01b0316836001600160a01b031614156106855760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105e7565b336001600160a01b03821614806106a157506106a18133610481565b6107135760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105e7565b61071d83836110ec565b505050565b61072d335b8261115a565b6107495760405162461bcd60e51b81526004016105e790611fcf565b61071d838383611251565b600061075f83610bd7565b82106107c15760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105e7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146108145760405162461bcd60e51b81526004016105e790611f9a565b601154479081101561086f57600d546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561085a573d6000803e3d6000fd5b5080601154610869919061206b565b60115550565b601154156108ba57600d546011546040516001600160a01b039092169181156108fc0291906000818181858888f193505050501580156108b3573d6000803e3d6000fd5b5060006011555b600e546001600160a01b03166108fc6108d4600584612038565b6040518115909202916000818181858888f193505050501580156108fc573d6000803e3d6000fd5b50600f546001600160a01b03166108fc610917601484612038565b6040518115909202916000818181858888f1935050505015801561093f573d6000803e3d6000fd5b506010546001600160a01b03166108fc61095a600584612038565b6040518115909202916000818181858888f19350505050158015610982573d6000803e3d6000fd5b5060405133904780156108fc02916000818181858888f193505050501580156109af573d6000803e3d6000fd5b50505b565b600a546001600160a01b031633146109de5760405162461bcd60e51b81526004016105e790611f9a565b6010805460ff60a01b19169055565b61071d83838360405180602001604052806000815250610f1c565b610a1133610727565b610a765760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016105e7565b610a7f816113fc565b50565b6000610a8d60085490565b8210610af05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105e7565b60088281548110610b1157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610b4d5760405162461bcd60e51b81526004016105e790611f9a565b80516109af90600c906020840190611b79565b6000818152600260205260408120546001600160a01b0316806104da5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105e7565b60006001600160a01b038216610c425760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105e7565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c885760405162461bcd60e51b81526004016105e790611f9a565b6109b260006114a3565b600a546001600160a01b03163314610cbc5760405162461bcd60e51b81526004016105e790611f9a565b6010805460ff60a01b1916600160a01b179055565b6060600180546104ef906120ae565b601054600160a01b900460ff161580610d035750600a546001600160a01b031633145b610d0c57600080fd5b610d1d81668e1bc9bf04000061204c565b341480610d345750600a546001600160a01b031633145b610d8a5760405162461bcd60e51b815260206004820152602160248201527f497420636f73747320302e30342065746820746f206d696e742061204f72637a6044820152601760f91b60648201526084016105e7565b61226081610d9760085490565b610da19190612020565b10610dee5760405162461bcd60e51b815260206004820152601c60248201527f54686572652063616e206f6e6c792062652038383030204f72637a210000000060448201526064016105e7565b60005b818110156109af57610e07600b80546001019055565b610e1933610e14600b5490565b6114f5565b600b546040517f13a545fef381d56065b8ac0095de2724a28bac8851d44d7ddc1725a23e58173f90600090a280610e4f816120e9565b915050610df1565b6001600160a01b038216331415610eb05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105e7565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f26338361115a565b610f425760405162461bcd60e51b81526004016105e790611fcf565b610f4e84848484611643565b50505050565b6000818152600260205260409020546060906001600160a01b0316610fd35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105e7565b6000610fdd611676565b90506000815111610ffd5760405180602001604052806000815250611028565b8061100784611685565b604051602001611018929190611ec9565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146110595760405162461bcd60e51b81526004016105e790611f9a565b6001600160a01b0381166110be5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105e7565b610a7f816114a3565b60006001600160e01b0319821663780e9d6360e01b14806104da57506104da8261179f565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061112182610b60565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111d35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105e7565b60006111de83610b60565b9050806001600160a01b0316846001600160a01b031614806112195750836001600160a01b031661120e84610572565b6001600160a01b0316145b8061124957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661126482610b60565b6001600160a01b0316146112cc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105e7565b6001600160a01b03821661132e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105e7565b6113398383836117ef565b6113446000826110ec565b6001600160a01b038316600090815260036020526040812080546001929061136d90849061206b565b90915550506001600160a01b038216600090815260036020526040812080546001929061139b908490612020565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061140782610b60565b9050611415816000846117ef565b6114206000836110ec565b6001600160a01b038116600090815260036020526040812080546001929061144990849061206b565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821661154b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105e7565b6000818152600260205260409020546001600160a01b0316156115b05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105e7565b6115bc600083836117ef565b6001600160a01b03821660009081526003602052604081208054600192906115e5908490612020565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b61164e848484611251565b61165a848484846117fa565b610f4e5760405162461bcd60e51b81526004016105e790611f48565b6060600c80546104ef906120ae565b6060816116a95750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116d357806116bd816120e9565b91506116cc9050600a83612038565b91506116ad565b60008167ffffffffffffffff8111156116fc57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611726576020820181803683370190505b5090505b84156112495761173b60018361206b565b9150611748600a86612104565b611753906030612020565b60f81b81838151811061177657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611798600a86612038565b945061172a565b60006001600160e01b031982166380ac58cd60e01b14806117d057506001600160e01b03198216635b5e139f60e01b145b806104da57506301ffc9a760e01b6001600160e01b03198316146104da565b61071d838383611907565b60006001600160a01b0384163b156118fc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061183e903390899088908890600401611ef8565b602060405180830381600087803b15801561185857600080fd5b505af1925050508015611888575060408051601f3d908101601f1916820190925261188591810190611e23565b60015b6118e2573d8080156118b6576040519150601f19603f3d011682016040523d82523d6000602084013e6118bb565b606091505b5080516118da5760405162461bcd60e51b81526004016105e790611f48565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611249565b506001949350505050565b6001600160a01b0383166119625761195d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611985565b816001600160a01b0316836001600160a01b0316146119855761198583826119bf565b6001600160a01b03821661199c5761071d81611a5c565b826001600160a01b0316826001600160a01b03161461071d5761071d8282611b35565b600060016119cc84610bd7565b6119d6919061206b565b600083815260076020526040902054909150808214611a29576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a6e9060019061206b565b60008381526009602052604081205460088054939450909284908110611aa457634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611ad357634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b1957634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611b4083610bd7565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611b85906120ae565b90600052602060002090601f016020900481019282611ba75760008555611bed565b82601f10611bc057805160ff1916838001178555611bed565b82800160010185558215611bed579182015b82811115611bed578251825591602001919060010190611bd2565b50611bf9929150611bfd565b5090565b5b80821115611bf95760008155600101611bfe565b600067ffffffffffffffff80841115611c2d57611c2d612144565b604051601f8501601f19908116603f01168101908282118183101715611c5557611c55612144565b81604052809350858152868686011115611c6e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c9f57600080fd5b919050565b600060208284031215611cb5578081fd5b61102882611c88565b60008060408385031215611cd0578081fd5b611cd983611c88565b9150611ce760208401611c88565b90509250929050565b600080600060608486031215611d04578081fd5b611d0d84611c88565b9250611d1b60208501611c88565b9150604084013590509250925092565b60008060008060808587031215611d40578081fd5b611d4985611c88565b9350611d5760208601611c88565b925060408501359150606085013567ffffffffffffffff811115611d79578182fd5b8501601f81018713611d89578182fd5b611d9887823560208401611c12565b91505092959194509250565b60008060408385031215611db6578182fd5b611dbf83611c88565b915060208301358015158114611dd3578182fd5b809150509250929050565b60008060408385031215611df0578182fd5b611df983611c88565b946020939093013593505050565b600060208284031215611e18578081fd5b81356110288161215a565b600060208284031215611e34578081fd5b81516110288161215a565b600060208284031215611e50578081fd5b813567ffffffffffffffff811115611e66578182fd5b8201601f81018413611e76578182fd5b61124984823560208401611c12565b600060208284031215611e96578081fd5b5035919050565b60008151808452611eb5816020860160208601612082565b601f01601f19169290920160200192915050565b60008351611edb818460208801612082565b835190830190611eef818360208801612082565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f2b90830184611e9d565b9695505050505050565b6020815260006110286020830184611e9d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561203357612033612118565b500190565b6000826120475761204761212e565b500490565b600081600019048311821515161561206657612066612118565b500290565b60008282101561207d5761207d612118565b500390565b60005b8381101561209d578181015183820152602001612085565b83811115610f4e5750506000910152565b600181811c908216806120c257607f821691505b602082108114156120e357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120fd576120fd612118565b5060010190565b6000826121135761211361212e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a7f57600080fdfea2646970667358221220c101c21966fc9840265d43ba732d93b6c6252525761ec6c2204a19c0113e868a64736f6c63430008040033

Deployed Bytecode Sourcemap

42524:2918:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45260:179;;;;;;;;;;-1:-1:-1;45260:179:0;;;;;:::i;:::-;;:::i;:::-;;;5796:14:1;;5789:22;5771:41;;5759:2;5744:18;45260:179:0;;;;;;;;12885:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;14345:221::-;;;;;;;;;;-1:-1:-1;14345:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5094:32:1;;;5076:51;;5064:2;5049:18;14345:221:0;5031:102:1;13882:397:0;;;;;;;;;;-1:-1:-1;13882:397:0;;;;;:::i;:::-;;:::i;:::-;;24958:113;;;;;;;;;;-1:-1:-1;25046:10:0;:17;24958:113;;;14576:25:1;;;14564:2;14549:18;24958:113:0;14531:76:1;15235:305:0;;;;;;;;;;-1:-1:-1;15235:305:0;;;;;:::i;:::-;;:::i;24626:256::-;;;;;;;;;;-1:-1:-1;24626:256:0;;;;;:::i;:::-;;:::i;44318:673::-;;;;;;;;;;;;;:::i;44229:77::-;;;;;;;;;;;;;:::i;15611:151::-;;;;;;;;;;-1:-1:-1;15611:151:0;;;;;:::i;:::-;;:::i;23206:245::-;;;;;;;;;;-1:-1:-1;23206:245:0;;;;;:::i;:::-;;:::i;25148:233::-;;;;;;;;;;-1:-1:-1;25148:233:0;;;;;:::i;:::-;;:::i;43517:104::-;;;;;;;;;;-1:-1:-1;43517:104:0;;;;;:::i;:::-;;:::i;12579:239::-;;;;;;;;;;-1:-1:-1;12579:239:0;;;;;:::i;:::-;;:::i;12309:208::-;;;;;;;;;;-1:-1:-1;12309:208:0;;;;;:::i;:::-;;:::i;32030:94::-;;;;;;;;;;;;;:::i;44147:74::-;;;;;;;;;;;;;:::i;31379:87::-;;;;;;;;;;-1:-1:-1;31452:6:0;;-1:-1:-1;;;;;31452:6:0;31379:87;;13054:104;;;;;;;;;;;;;:::i;43629:510::-;;;;;;:::i;:::-;;:::i;14638:295::-;;;;;;;;;;-1:-1:-1;14638:295:0;;;;;:::i;:::-;;:::i;15833:285::-;;;;;;;;;;-1:-1:-1;15833:285:0;;;;;:::i;:::-;;:::i;43168:53::-;;;;;;;;;;;;;;;;13229:360;;;;;;;;;;-1:-1:-1;13229:360:0;;;;;:::i;:::-;;:::i;15004:164::-;;;;;;;;;;-1:-1:-1;15004:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;15125:25:0;;;15101:4;15125:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;15004:164;32279:192;;;;;;;;;;-1:-1:-1;32279:192:0;;;;;:::i;:::-;;:::i;45260:179::-;45371:4;45395:36;45419:11;45395:23;:36::i;:::-;45388:43;45260:179;-1:-1:-1;;45260:179:0:o;12885:100::-;12939:13;12972:5;12965:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12885:100;:::o;14345:221::-;14421:7;17674:16;;;:7;:16;;;;;;-1:-1:-1;;;;;17674:16:0;14441:73;;;;-1:-1:-1;;;14441:73:0;;10980:2:1;14441:73:0;;;10962:21:1;11019:2;10999:18;;;10992:30;11058:34;11038:18;;;11031:62;-1:-1:-1;;;11109:18:1;;;11102:42;11161:19;;14441:73:0;;;;;;;;;-1:-1:-1;14534:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;14534:24:0;;14345:221::o;13882:397::-;13963:13;13979:23;13994:7;13979:14;:23::i;:::-;13963:39;;14027:5;-1:-1:-1;;;;;14021:11:0;:2;-1:-1:-1;;;;;14021:11:0;;;14013:57;;;;-1:-1:-1;;;14013:57:0;;12580:2:1;14013:57:0;;;12562:21:1;12619:2;12599:18;;;12592:30;12658:34;12638:18;;;12631:62;-1:-1:-1;;;12709:18:1;;;12702:31;12750:19;;14013:57:0;12552:223:1;14013:57:0;427:10;-1:-1:-1;;;;;14091:21:0;;;;:62;;-1:-1:-1;14116:37:0;14133:5;427:10;15004:164;:::i;14116:37::-;14083:154;;;;-1:-1:-1;;;14083:154:0;;9373:2:1;14083:154:0;;;9355:21:1;9412:2;9392:18;;;9385:30;9451:34;9431:18;;;9424:62;9522:26;9502:18;;;9495:54;9566:19;;14083:154:0;9345:246:1;14083:154:0;14250:21;14259:2;14263:7;14250:8;:21::i;:::-;13882:397;;;:::o;15235:305::-;15396:41;427:10;15415:12;15429:7;15396:18;:41::i;:::-;15388:103;;;;-1:-1:-1;;;15388:103:0;;;;;;;:::i;:::-;15504:28;15514:4;15520:2;15524:7;15504:9;:28::i;24626:256::-;24723:7;24759:23;24776:5;24759:16;:23::i;:::-;24751:5;:31;24743:87;;;;-1:-1:-1;;;24743:87:0;;6606:2:1;24743:87:0;;;6588:21:1;6645:2;6625:18;;;6618:30;6684:34;6664:18;;;6657:62;-1:-1:-1;;;6735:18:1;;;6728:41;6786:19;;24743:87:0;6578:233:1;24743:87:0;-1:-1:-1;;;;;;24848:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;24626:256::o;44318:673::-;31452:6;;-1:-1:-1;;;;;31452:6:0;427:10;31599:23;31591:68;;;;-1:-1:-1;;;31591:68:0;;;;;;;:::i;:::-;44428:18:::1;::::0;44383:21:::1;::::0;44418:28;::::1;44415:337;;;44471:16;::::0;44463:43:::1;::::0;-1:-1:-1;;;;;44471:16:0;;::::1;::::0;44463:43;::::1;;;::::0;44498:7;;44471:16:::1;44463:43:::0;44471:16;44463:43;44498:7;44471:16;44463:43;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;44561:7;44542:18;;:26;;;;:::i;:::-;44521:18;:47:::0;-1:-1:-1;44318:673:0:o;44415:337::-:1;44610:18;::::0;:22;44607:145:::1;;44657:16;::::0;44684:18:::1;::::0;44649:54:::1;::::0;-1:-1:-1;;;;;44657:16:0;;::::1;::::0;44649:54;::::1;;;::::0;44684:18;44657:16:::1;44649:54:::0;44657:16;44649:54;44684:18;44657:16;44649:54;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;44739:1:0::1;44718:18;:22:::0;44607:145:::1;44780:13;::::0;-1:-1:-1;;;;;44780:13:0::1;44772:42;44804:9;44812:1;44804:7:::0;:9:::1;:::i;:::-;44772:42;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;44833:15:0::1;::::0;-1:-1:-1;;;;;44833:15:0::1;44825:45;44859:10;44867:2;44859:7:::0;:10:::1;:::i;:::-;44825:45;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;44889:11:0::1;::::0;-1:-1:-1;;;;;44889:11:0::1;44881:40;44911:9;44919:1;44911:7:::0;:9:::1;:::i;:::-;44881:40;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;44932:51:0::1;::::0;44940:10:::1;::::0;44961:21:::1;44932:51:::0;::::1;;;::::0;::::1;::::0;;;44961:21;44940:10;44932:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;31670:1;;44318:673::o:0;44229:77::-;31452:6;;-1:-1:-1;;;;;31452:6:0;427:10;31599:23;31591:68;;;;-1:-1:-1;;;31591:68:0;;;;;;;:::i;:::-;44284:6:::1;:14:::0;;-1:-1:-1;;;;44284:14:0::1;::::0;;44229:77::o;15611:151::-;15715:39;15732:4;15738:2;15742:7;15715:39;;;;;;;;;;;;:16;:39::i;23206:245::-;23324:41;427:10;23343:12;347:98;23324:41;23316:102;;;;-1:-1:-1;;;23316:102:0;;14215:2:1;23316:102:0;;;14197:21:1;14254:2;14234:18;;;14227:30;14293:34;14273:18;;;14266:62;-1:-1:-1;;;14344:18:1;;;14337:46;14400:19;;23316:102:0;14187:238:1;23316:102:0;23429:14;23435:7;23429:5;:14::i;:::-;23206:245;:::o;25148:233::-;25223:7;25259:30;25046:10;:17;;24958:113;25259:30;25251:5;:38;25243:95;;;;-1:-1:-1;;;25243:95:0;;13400:2:1;25243:95:0;;;13382:21:1;13439:2;13419:18;;;13412:30;13478:34;13458:18;;;13451:62;-1:-1:-1;;;13529:18:1;;;13522:42;13581:19;;25243:95:0;13372:234:1;25243:95:0;25356:10;25367:5;25356:17;;;;;;-1:-1:-1;;;25356:17:0;;;;;;;;;;;;;;;;;25349:24;;25148:233;;;:::o;43517:104::-;31452:6;;-1:-1:-1;;;;;31452:6:0;427:10;31599:23;31591:68;;;;-1:-1:-1;;;31591:68:0;;;;;;;:::i;:::-;43590:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;12579:239::-:0;12651:7;12687:16;;;:7;:16;;;;;;-1:-1:-1;;;;;12687:16:0;12722:19;12714:73;;;;-1:-1:-1;;;12714:73:0;;10209:2:1;12714:73:0;;;10191:21:1;10248:2;10228:18;;;10221:30;10287:34;10267:18;;;10260:62;-1:-1:-1;;;10338:18:1;;;10331:39;10387:19;;12714:73:0;10181:231:1;12309:208:0;12381:7;-1:-1:-1;;;;;12409:19:0;;12401:74;;;;-1:-1:-1;;;12401:74:0;;9798:2:1;12401:74:0;;;9780:21:1;9837:2;9817:18;;;9810:30;9876:34;9856:18;;;9849:62;-1:-1:-1;;;9927:18:1;;;9920:40;9977:19;;12401:74:0;9770:232:1;12401:74:0;-1:-1:-1;;;;;;12493:16:0;;;;;:9;:16;;;;;;;12309:208::o;32030:94::-;31452:6;;-1:-1:-1;;;;;31452:6:0;427:10;31599:23;31591:68;;;;-1:-1:-1;;;31591:68:0;;;;;;;:::i;:::-;32095:21:::1;32113:1;32095:9;:21::i;44147:74::-:0;31452:6;;-1:-1:-1;;;;;31452:6:0;427:10;31599:23;31591:68;;;;-1:-1:-1;;;31591:68:0;;;;;;;:::i;:::-;44200:6:::1;:13:::0;;-1:-1:-1;;;;44200:13:0::1;-1:-1:-1::0;;;44200:13:0::1;::::0;;44147:74::o;13054:104::-;13110:13;13143:7;13136:14;;;;;:::i;43629:510::-;43691:6;;-1:-1:-1;;;43691:6:0;;;;43690:7;;:32;;-1:-1:-1;31452:6:0;;-1:-1:-1;;;;;31452:6:0;43701:10;:21;43690:32;43682:41;;;;;;43755:16;43765:6;43111:17;43755:16;:::i;:::-;43742:9;:29;:54;;;-1:-1:-1;31452:6:0;;-1:-1:-1;;;;;31452:6:0;43775:10;:21;43742:54;43734:100;;;;-1:-1:-1;;;43734:100:0;;13813:2:1;43734:100:0;;;13795:21:1;13852:2;13832:18;;;13825:30;13891:34;13871:18;;;13864:62;-1:-1:-1;;;13942:18:1;;;13935:31;13983:19;;43734:100:0;13785:223:1;43734:100:0;43066:4;43869:6;43853:13;25046:10;:17;;24958:113;43853:13;:22;;;;:::i;:::-;:32;43845:73;;;;-1:-1:-1;;;43845:73:0;;6249:2:1;43845:73:0;;;6231:21:1;6288:2;6268:18;;;6261:30;6327;6307:18;;;6300:58;6375:18;;43845:73:0;6221:178:1;43845:73:0;43933:6;43929:203;43949:6;43945:1;:10;43929:203;;;43977:27;:15;1666:19;;1684:1;1666:19;;;1577:127;43977:27;44019:44;44025:10;44037:25;:15;1547:14;;1455:114;44037:25;44019:5;:44::i;:::-;44094:15;1547:14;44083:37;;;;;;;43957:3;;;;:::i;:::-;;;;43929:203;;14638:295;-1:-1:-1;;;;;14741:24:0;;427:10;14741:24;;14733:62;;;;-1:-1:-1;;;14733:62:0;;8606:2:1;14733:62:0;;;8588:21:1;8645:2;8625:18;;;8618:30;8684:27;8664:18;;;8657:55;8729:18;;14733:62:0;8578:175:1;14733:62:0;427:10;14808:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;14808:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;14808:53:0;;;;;;;;;;14877:48;;5771:41:1;;;14808:42:0;;427:10;14877:48;;5744:18:1;14877:48:0;;;;;;;14638:295;;:::o;15833:285::-;15965:41;427:10;15998:7;15965:18;:41::i;:::-;15957:103;;;;-1:-1:-1;;;15957:103:0;;;;;;;:::i;:::-;16071:39;16085:4;16091:2;16095:7;16104:5;16071:13;:39::i;:::-;15833:285;;;;:::o;13229:360::-;17650:4;17674:16;;;:7;:16;;;;;;13302:13;;-1:-1:-1;;;;;17674:16:0;13328:76;;;;-1:-1:-1;;;13328:76:0;;12164:2:1;13328:76:0;;;12146:21:1;12203:2;12183:18;;;12176:30;12242:34;12222:18;;;12215:62;-1:-1:-1;;;12293:18:1;;;12286:45;12348:19;;13328:76:0;12136:237:1;13328:76:0;13417:21;13441:10;:8;:10::i;:::-;13417:34;;13493:1;13475:7;13469:21;:25;:112;;;;;;;;;;;;;;;;;13534:7;13543:18;:7;:16;:18::i;:::-;13517:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;13469:112;13462:119;13229:360;-1:-1:-1;;;13229:360:0:o;32279:192::-;31452:6;;-1:-1:-1;;;;;31452:6:0;427:10;31599:23;31591:68;;;;-1:-1:-1;;;31591:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32368:22:0;::::1;32360:73;;;::::0;-1:-1:-1;;;32360:73:0;;7437:2:1;32360:73:0::1;::::0;::::1;7419:21:1::0;7476:2;7456:18;;;7449:30;7515:34;7495:18;;;7488:62;-1:-1:-1;;;7566:18:1;;;7559:36;7612:19;;32360:73:0::1;7409:228:1::0;32360:73:0::1;32444:19;32454:8;32444:9;:19::i;24305:237::-:0;24407:4;-1:-1:-1;;;;;;24431:50:0;;-1:-1:-1;;;24431:50:0;;:103;;;24498:36;24522:11;24498:23;:36::i;20535:174::-;20610:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;20610:29:0;-1:-1:-1;;;;;20610:29:0;;;;;;;;:24;;20664:23;20610:24;20664:14;:23::i;:::-;-1:-1:-1;;;;;20655:46:0;;;;;;;;;;;20535:174;;:::o;17879:348::-;17972:4;17674:16;;;:7;:16;;;;;;-1:-1:-1;;;;;17674:16:0;17989:73;;;;-1:-1:-1;;;17989:73:0;;8960:2:1;17989:73:0;;;8942:21:1;8999:2;8979:18;;;8972:30;9038:34;9018:18;;;9011:62;-1:-1:-1;;;9089:18:1;;;9082:42;9141:19;;17989:73:0;8932:234:1;17989:73:0;18073:13;18089:23;18104:7;18089:14;:23::i;:::-;18073:39;;18142:5;-1:-1:-1;;;;;18131:16:0;:7;-1:-1:-1;;;;;18131:16:0;;:51;;;;18175:7;-1:-1:-1;;;;;18151:31:0;:20;18163:7;18151:11;:20::i;:::-;-1:-1:-1;;;;;18151:31:0;;18131:51;:87;;;-1:-1:-1;;;;;;15125:25:0;;;15101:4;15125:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;18186:32;18123:96;17879:348;-1:-1:-1;;;;17879:348:0:o;19873:544::-;19998:4;-1:-1:-1;;;;;19971:31:0;:23;19986:7;19971:14;:23::i;:::-;-1:-1:-1;;;;;19971:31:0;;19963:85;;;;-1:-1:-1;;;19963:85:0;;11754:2:1;19963:85:0;;;11736:21:1;11793:2;11773:18;;;11766:30;11832:34;11812:18;;;11805:62;-1:-1:-1;;;11883:18:1;;;11876:39;11932:19;;19963:85:0;11726:231:1;19963:85:0;-1:-1:-1;;;;;20067:16:0;;20059:65;;;;-1:-1:-1;;;20059:65:0;;8201:2:1;20059:65:0;;;8183:21:1;8240:2;8220:18;;;8213:30;8279:34;8259:18;;;8252:62;-1:-1:-1;;;8330:18:1;;;8323:34;8374:19;;20059:65:0;8173:226:1;20059:65:0;20137:39;20158:4;20164:2;20168:7;20137:20;:39::i;:::-;20241:29;20258:1;20262:7;20241:8;:29::i;:::-;-1:-1:-1;;;;;20283:15:0;;;;;;:9;:15;;;;;:20;;20302:1;;20283:15;:20;;20302:1;;20283:20;:::i;:::-;;;;-1:-1:-1;;;;;;;20314:13:0;;;;;;:9;:13;;;;;:18;;20331:1;;20314:13;:18;;20331:1;;20314:18;:::i;:::-;;;;-1:-1:-1;;20343:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;20343:21:0;-1:-1:-1;;;;;20343:21:0;;;;;;;;;20382:27;;20343:16;;20382:27;;;;;;;19873:544;;;:::o;19176:360::-;19236:13;19252:23;19267:7;19252:14;:23::i;:::-;19236:39;;19288:48;19309:5;19324:1;19328:7;19288:20;:48::i;:::-;19377:29;19394:1;19398:7;19377:8;:29::i;:::-;-1:-1:-1;;;;;19419:16:0;;;;;;:9;:16;;;;;:21;;19439:1;;19419:16;:21;;19439:1;;19419:21;:::i;:::-;;;;-1:-1:-1;;19458:16:0;;;;:7;:16;;;;;;19451:23;;-1:-1:-1;;;;;;19451:23:0;;;19492:36;19466:7;;19458:16;-1:-1:-1;;;;;19492:36:0;;;;;19458:16;;19492:36;19176:360;;:::o;32479:173::-;32554:6;;;-1:-1:-1;;;;;32571:17:0;;;-1:-1:-1;;;;;;32571:17:0;;;;;;;32604:40;;32554:6;;;32571:17;32554:6;;32604:40;;32535:16;;32604:40;32479:173;;:::o;18565:382::-;-1:-1:-1;;;;;18645:16:0;;18637:61;;;;-1:-1:-1;;;18637:61:0;;10619:2:1;18637:61:0;;;10601:21:1;;;10638:18;;;10631:30;10697:34;10677:18;;;10670:62;10749:18;;18637:61:0;10591:182:1;18637:61:0;17650:4;17674:16;;;:7;:16;;;;;;-1:-1:-1;;;;;17674:16:0;:30;18709:58;;;;-1:-1:-1;;;18709:58:0;;7844:2:1;18709:58:0;;;7826:21:1;7883:2;7863:18;;;7856:30;7922;7902:18;;;7895:58;7970:18;;18709:58:0;7816:178:1;18709:58:0;18780:45;18809:1;18813:2;18817:7;18780:20;:45::i;:::-;-1:-1:-1;;;;;18838:13:0;;;;;;:9;:13;;;;;:18;;18855:1;;18838:13;:18;;18855:1;;18838:18;:::i;:::-;;;;-1:-1:-1;;18867:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;18867:21:0;-1:-1:-1;;;;;18867:21:0;;;;;;;;18906:33;;18867:16;;;18906:33;;18867:16;;18906:33;18565:382;;:::o;17000:272::-;17114:28;17124:4;17130:2;17134:7;17114:9;:28::i;:::-;17161:48;17184:4;17190:2;17194:7;17203:5;17161:22;:48::i;:::-;17153:111;;;;-1:-1:-1;;;17153:111:0;;;;;;;:::i;43391:114::-;43451:13;43484;43477:20;;;;;:::i;32914:723::-;32970:13;33191:10;33187:53;;-1:-1:-1;;33218:10:0;;;;;;;;;;;;-1:-1:-1;;;33218:10:0;;;;;32914:723::o;33187:53::-;33265:5;33250:12;33306:78;33313:9;;33306:78;;33339:8;;;;:::i;:::-;;-1:-1:-1;33362:10:0;;-1:-1:-1;33370:2:0;33362:10;;:::i;:::-;;;33306:78;;;33394:19;33426:6;33416:17;;;;;;-1:-1:-1;;;33416:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33416:17:0;;33394:39;;33444:154;33451:10;;33444:154;;33478:11;33488:1;33478:11;;:::i;:::-;;-1:-1:-1;33547:10:0;33555:2;33547:5;:10;:::i;:::-;33534:24;;:2;:24;:::i;:::-;33521:39;;33504:6;33511;33504:14;;;;;;-1:-1:-1;;;33504:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;33504:56:0;;;;;;;;-1:-1:-1;33575:11:0;33584:2;33575:11;;:::i;:::-;;;33444:154;;11953:292;12055:4;-1:-1:-1;;;;;;12079:40:0;;-1:-1:-1;;;12079:40:0;;:105;;-1:-1:-1;;;;;;;12136:48:0;;-1:-1:-1;;;12136:48:0;12079:105;:158;;;-1:-1:-1;;;;;;;;;;10634:40:0;;;12201:36;10525:157;44999:189;45135:45;45162:4;45168:2;45172:7;45135:26;:45::i;21274:843::-;21395:4;-1:-1:-1;;;;;21421:13:0;;35706:20;35754:8;21417:693;;21457:72;;-1:-1:-1;;;21457:72:0;;-1:-1:-1;;;;;21457:36:0;;;;;:72;;427:10;;21508:4;;21514:7;;21523:5;;21457:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21457:72:0;;;;;;;;-1:-1:-1;;21457:72:0;;;;;;;;;;;;:::i;:::-;;;21453:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21703:13:0;;21699:341;;21746:60;;-1:-1:-1;;;21746:60:0;;;;;;;:::i;21699:341::-;21990:6;21984:13;21975:6;21971:2;21967:15;21960:38;21453:602;-1:-1:-1;;;;;;21580:55:0;-1:-1:-1;;;21580:55:0;;-1:-1:-1;21573:62:0;;21417:693;-1:-1:-1;22094:4:0;21274:843;;;;;;:::o;25994:555::-;-1:-1:-1;;;;;26166:18:0;;26162:187;;26201:40;26233:7;27376:10;:17;;27349:24;;;;:15;:24;;;;;:44;;;27404:24;;;;;;;;;;;;27272:164;26201:40;26162:187;;;26271:2;-1:-1:-1;;;;;26263:10:0;:4;-1:-1:-1;;;;;26263:10:0;;26259:90;;26290:47;26323:4;26329:7;26290:32;:47::i;:::-;-1:-1:-1;;;;;26363:16:0;;26359:183;;26396:45;26433:7;26396:36;:45::i;26359:183::-;26469:4;-1:-1:-1;;;;;26463:10:0;:2;-1:-1:-1;;;;;26463:10:0;;26459:83;;26490:40;26518:2;26522:7;26490:27;:40::i;28063:988::-;28329:22;28379:1;28354:22;28371:4;28354:16;:22::i;:::-;:26;;;;:::i;:::-;28391:18;28412:26;;;:17;:26;;;;;;28329:51;;-1:-1:-1;28545:28:0;;;28541:328;;-1:-1:-1;;;;;28612:18:0;;28590:19;28612:18;;;:12;:18;;;;;;;;:34;;;;;;;;;28663:30;;;;;;:44;;;28780:30;;:17;:30;;;;;:43;;;28541:328;-1:-1:-1;28965:26:0;;;;:17;:26;;;;;;;;28958:33;;;-1:-1:-1;;;;;29009:18:0;;;;;:12;:18;;;;;:34;;;;;;;29002:41;28063:988::o;29346:1079::-;29624:10;:17;29599:22;;29624:21;;29644:1;;29624:21;:::i;:::-;29656:18;29677:24;;;:15;:24;;;;;;30050:10;:26;;29599:46;;-1:-1:-1;29677:24:0;;29599:46;;30050:26;;;;-1:-1:-1;;;30050:26:0;;;;;;;;;;;;;;;;;30028:48;;30114:11;30089:10;30100;30089:22;;;;;;-1:-1:-1;;;30089:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;30194:28;;;:15;:28;;;;;;;:41;;;30366:24;;;;;30359:31;30401:10;:16;;;;;-1:-1:-1;;;30401:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;29346:1079;;;;:::o;26850:221::-;26935:14;26952:20;26969:2;26952:16;:20::i;:::-;-1:-1:-1;;;;;26983:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;27028:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;26850:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:196::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;1029:270::-;1097:6;1105;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;1381:6;1389;1397;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;1742:6;1750;1758;1766;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;2788:6;2796;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:1:o;2989:255::-;3047:6;3100:2;3088:9;3079:7;3075:23;3071:32;3068:2;;;3121:6;3113;3106:22;3068:2;3165:9;3152:23;3184:30;3208:5;3184:30;:::i;3249:259::-;3318:6;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:30;3472:5;3448:30;:::i;3513:480::-;3582:6;3635:2;3623:9;3614:7;3610:23;3606:32;3603:2;;;3656:6;3648;3641:22;3603:2;3701:9;3688:23;3734:18;3726:6;3723:30;3720:2;;;3771:6;3763;3756:22;3720:2;3799:22;;3852:4;3844:13;;3840:27;-1:-1:-1;3830:2:1;;3886:6;3878;3871:22;3830:2;3914:73;3979:7;3974:2;3961:16;3956:2;3952;3948:11;3914:73;:::i;3998:190::-;4057:6;4110:2;4098:9;4089:7;4085:23;4081:32;4078:2;;;4131:6;4123;4116:22;4078:2;-1:-1:-1;4159:23:1;;4068:120;-1:-1:-1;4068:120:1:o;4193:257::-;4234:3;4272:5;4266:12;4299:6;4294:3;4287:19;4315:63;4371:6;4364:4;4359:3;4355:14;4348:4;4341:5;4337:16;4315:63;:::i;:::-;4432:2;4411:15;-1:-1:-1;;4407:29:1;4398:39;;;;4439:4;4394:50;;4242:208;-1:-1:-1;;4242:208:1:o;4455:470::-;4634:3;4672:6;4666:13;4688:53;4734:6;4729:3;4722:4;4714:6;4710:17;4688:53;:::i;:::-;4804:13;;4763:16;;;;4826:57;4804:13;4763:16;4860:4;4848:17;;4826:57;:::i;:::-;4899:20;;4642:283;-1:-1:-1;;;;4642:283:1:o;5138:488::-;-1:-1:-1;;;;;5407:15:1;;;5389:34;;5459:15;;5454:2;5439:18;;5432:43;5506:2;5491:18;;5484:34;;;5554:3;5549:2;5534:18;;5527:31;;;5332:4;;5575:45;;5600:19;;5592:6;5575:45;:::i;:::-;5567:53;5341:285;-1:-1:-1;;;;;;5341:285:1:o;5823:219::-;5972:2;5961:9;5954:21;5935:4;5992:44;6032:2;6021:9;6017:18;6009:6;5992:44;:::i;6816:414::-;7018:2;7000:21;;;7057:2;7037:18;;;7030:30;7096:34;7091:2;7076:18;;7069:62;-1:-1:-1;;;7162:2:1;7147:18;;7140:48;7220:3;7205:19;;6990:240::o;11191:356::-;11393:2;11375:21;;;11412:18;;;11405:30;11471:34;11466:2;11451:18;;11444:62;11538:2;11523:18;;11365:182::o;12780:413::-;12982:2;12964:21;;;13021:2;13001:18;;;12994:30;13060:34;13055:2;13040:18;;13033:62;-1:-1:-1;;;13126:2:1;13111:18;;13104:47;13183:3;13168:19;;12954:239::o;14612:128::-;14652:3;14683:1;14679:6;14676:1;14673:13;14670:2;;;14689:18;;:::i;:::-;-1:-1:-1;14725:9:1;;14660:80::o;14745:120::-;14785:1;14811;14801:2;;14816:18;;:::i;:::-;-1:-1:-1;14850:9:1;;14791:74::o;14870:168::-;14910:7;14976:1;14972;14968:6;14964:14;14961:1;14958:21;14953:1;14946:9;14939:17;14935:45;14932:2;;;14983:18;;:::i;:::-;-1:-1:-1;15023:9:1;;14922:116::o;15043:125::-;15083:4;15111:1;15108;15105:8;15102:2;;;15116:18;;:::i;:::-;-1:-1:-1;15153:9:1;;15092:76::o;15173:258::-;15245:1;15255:113;15269:6;15266:1;15263:13;15255:113;;;15345:11;;;15339:18;15326:11;;;15319:39;15291:2;15284:10;15255:113;;;15386:6;15383:1;15380:13;15377:2;;;-1:-1:-1;;15421:1:1;15403:16;;15396:27;15226:205::o;15436:380::-;15515:1;15511:12;;;;15558;;;15579:2;;15633:4;15625:6;15621:17;15611:27;;15579:2;15686;15678:6;15675:14;15655:18;15652:38;15649:2;;;15732:10;15727:3;15723:20;15720:1;15713:31;15767:4;15764:1;15757:15;15795:4;15792:1;15785:15;15649:2;;15491:325;;;:::o;15821:135::-;15860:3;-1:-1:-1;;15881:17:1;;15878:2;;;15901:18;;:::i;:::-;-1:-1:-1;15948:1:1;15937:13;;15868:88::o;15961:112::-;15993:1;16019;16009:2;;16024:18;;:::i;:::-;-1:-1:-1;16058:9:1;;15999:74::o;16078:127::-;16139:10;16134:3;16130:20;16127:1;16120:31;16170:4;16167:1;16160:15;16194:4;16191:1;16184:15;16210:127;16271:10;16266:3;16262:20;16259:1;16252:31;16302:4;16299:1;16292:15;16326:4;16323:1;16316:15;16342:127;16403:10;16398:3;16394:20;16391:1;16384:31;16434:4;16431:1;16424:15;16458:4;16455:1;16448:15;16474:131;-1:-1:-1;;;;;;16548:32:1;;16538:43;;16528:2;;16595:1;16592;16585:12

Swarm Source

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