ETH Price: $3,100.74 (+0.92%)
Gas: 4 Gwei

Token

Voxel Ville (VOVI)
 

Overview

Max Total Supply

0 VOVI

Holders

1,461

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
btcmom.eth
Balance
5 VOVI
0x49ce9c25a5599d620305f1071b6c28d0a2524f25
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:
VoxelVille

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : VoxelVille.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.6;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";

contract VoxelVille is ERC721, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    uint256 public constant MAX_SUPPLY = 7777;

    uint256 public constant MAX_MINT_PER_TX = 3;

    uint256 public constant MAX_MINT_PER_TX_PRESALE = 1;

    uint256 public constant PRICE = 0.05 ether;

    string public baseURI;

    uint256 public batchSize;

    uint256 public batchCount;

    bool public mintable = false;

    bool public preSaleMintable = false;

    uint256 public totalSupplyRemaining = MAX_SUPPLY;

    mapping(address => bool) public allowList;

    event Mintable(bool mintable);

    event PreSaleMintable(bool preSaleMintable);

    event BaseURI(string baseURI);

    event BatchSize(uint256 batchSize);

    event BatchCount(uint256 batchCount);

    event AddToAllowList(address[] accounts);

    event RemoveFromAllowList(address account);

    constructor() ERC721("Voxel Ville", "VOVI") {
        _tokenIds.increment();
    }

    modifier isMintable() {
        require(mintable, "Voxel Ville: NFT cannot be minted yet.");
        _;
    }

    modifier isPreSaleMintable() {
        require(preSaleMintable, "Voxel Ville: NFT cannot be minted yet.");
        _;
    }

    modifier isNotExceedMaxMintPerTx(uint256 amount) {
        require(
            amount <= MAX_MINT_PER_TX,
            "Voxel Ville: Mint amount exceeds max limit per tx."
        );
        _;
    }

    modifier isNotExceedMaxMintPerTxPresale(uint256 amount) {
        require(
            amount <= MAX_MINT_PER_TX_PRESALE,
            "Voxel Ville: Mint amount exceeds max limit per tx."
        );
        _;
    }

    modifier isNotExceedAvailableSupply(uint256 amount) {
        require(
            batchCount + amount <= batchSize,
            "Voxel Ville: There are no more remaining NFT's to mint."
        );
        _;
    }

    modifier isPaymentSufficient(uint256 amount) {
        require(
            msg.value == amount * PRICE,
            "Voxel Ville: There was not enough/extra ETH transferred to mint an NFT."
        );
        _;
    }

    modifier isAllowList() {
        require(
            allowList[msg.sender],
            "Voxel Ville: You're not on the list for the presale."
        );
        _;
    }

    function preSaleMint(uint256 amount)
        public
        payable
        isPreSaleMintable
        isNotExceedMaxMintPerTxPresale(amount)
        isAllowList
        isNotExceedAvailableSupply(amount)
        isPaymentSufficient(amount)
    {
        uint256 id = _tokenIds.current();
        _safeMint(msg.sender, id);
        _tokenIds.increment();
        totalSupplyRemaining--;
        batchCount++;
        allowList[msg.sender] = false;
    }

    function mint(uint256 amount)
        public
        payable
        isMintable
        isNotExceedMaxMintPerTx(amount)
        isNotExceedAvailableSupply(amount)
        isPaymentSufficient(amount)
    {
        for (uint256 index = 0; index < amount; index++) {
            uint256 id = _tokenIds.current();
            _safeMint(msg.sender, id);
            _tokenIds.increment();
            totalSupplyRemaining--;
            batchCount++;
        }
    }

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

        emit BaseURI(baseURI);
    }

    function setMintable(bool _mintable) public onlyOwner {
        mintable = _mintable;

        emit Mintable(mintable);
    }

    function setPreSaleMintable(bool _preSaleMintable) public onlyOwner {
        preSaleMintable = _preSaleMintable;

        emit PreSaleMintable(preSaleMintable);
    }

    function setBatchSize(uint256 _batchSize) public onlyOwner {
        batchSize = _batchSize;

        emit BatchSize(batchSize);
    }

    function setBatchCount(uint256 _batchCount) public onlyOwner {
        batchCount = _batchCount;

        emit BatchCount(batchCount);
    }

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

    function withdraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

    function setAddressesToAllowList(address[] memory _addresses)
        public
        onlyOwner
    {
        for (uint256 i = 0; i < _addresses.length; i++) {
            allowList[_addresses[i]] = true;
        }

        emit AddToAllowList(_addresses);
    }

    function removeAddressFromAllowList(address _address) public onlyOwner {
        allowList[_address] = false;
        emit RemoveFromAllowList(_address);
    }
}

File 2 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 12 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. 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;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 5 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"AddToAllowList","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"baseURI","type":"string"}],"name":"BaseURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"batchCount","type":"uint256"}],"name":"BatchCount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"batchSize","type":"uint256"}],"name":"BatchSize","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"mintable","type":"bool"}],"name":"Mintable","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"preSaleMintable","type":"bool"}],"name":"PreSaleMintable","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"RemoveFromAllowList","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_TX_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"batchCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"batchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preSaleMintable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeAddressFromAllowList","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":"_addresses","type":"address[]"}],"name":"setAddressesToAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_batchCount","type":"uint256"}],"name":"setBatchCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_batchSize","type":"uint256"}],"name":"setBatchSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_mintable","type":"bool"}],"name":"setMintable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_preSaleMintable","type":"bool"}],"name":"setPreSaleMintable","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupplyRemaining","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff021916908315150217905550611e61600c553480156200004d57600080fd5b506040518060400160405280600b81526020017f566f78656c2056696c6c650000000000000000000000000000000000000000008152506040518060400160405280600481526020017f564f5649000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000d29291906200020f565b508060019080519060200190620000eb9291906200020f565b5050506200010e620001026200012b60201b60201c565b6200013360201b60201c565b620001256007620001f960201b62001f231760201c565b62000324565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b8280546200021d90620002bf565b90600052602060002090601f0160209004810192826200024157600085556200028d565b82601f106200025c57805160ff19168380011785556200028d565b828001600101855582156200028d579182015b828111156200028c5782518255916020019190600101906200026f565b5b5090506200029c9190620002a0565b5090565b5b80821115620002bb576000816000905550600101620002a1565b5090565b60006002820490506001821680620002d857607f821691505b60208210811415620002ef57620002ee620002f5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6144f780620003346000396000f3fe60806040526004361061021a5760003560e01c80636c0360eb1161012357806395d89b41116100ab578063c87b56dd1161006f578063c87b56dd1461077d578063e4fb5954146107ba578063e985e9c5146107e3578063f2fde38b14610820578063f4daaba1146108495761021a565b806395d89b41146106bb578063a0712d68146106e6578063a22cb46514610702578063b88d4fde1461072b578063b8c6ceea146107545761021a565b80637835c635116100f25780637835c635146105f557806388b2134e146106115780638d859f3e1461063a5780638da5cb5b146106655780638ecad721146106905761021a565b80636c0360eb1461054d5780636e1d3c051461057857806370a08231146105a1578063715018a6146105de5761021a565b80632a33f553116101a657806342842e0e1161017557806342842e0e1461046a5780634bf365df1461049357806355f804b3146104be578063576f35e3146104e75780636352211e146105105761021a565b80632a33f553146103d257806332cb6b0c146103fd5780633abc710d146104285780633ccfd60b146104535761021a565b8063095ea7b3116101ed578063095ea7b3146102ef57806311cc6d311461031857806323b872dd146103435780632848aeaf1461036c578063285d70d4146103a95761021a565b806301ffc9a71461021f57806306f130561461025c57806306fdde0314610287578063081812fc146102b2575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612fe6565b610874565b6040516102539190613617565b60405180910390f35b34801561026857600080fd5b50610271610956565b60405161027e9190613916565b60405180910390f35b34801561029357600080fd5b5061029c61095c565b6040516102a99190613632565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d49190613089565b6109ee565b6040516102e6919061358e565b60405180910390f35b3480156102fb57600080fd5b5061031660048036038101906103119190612f30565b610a73565b005b34801561032457600080fd5b5061032d610b8b565b60405161033a9190613916565b60405180910390f35b34801561034f57600080fd5b5061036a60048036038101906103659190612e1a565b610b90565b005b34801561037857600080fd5b50610393600480360381019061038e9190612dad565b610bf0565b6040516103a09190613617565b60405180910390f35b3480156103b557600080fd5b506103d060048036038101906103cb9190612fb9565b610c10565b005b3480156103de57600080fd5b506103e7610cef565b6040516103f49190613916565b60405180910390f35b34801561040957600080fd5b50610412610cf5565b60405161041f9190613916565b60405180910390f35b34801561043457600080fd5b5061043d610cfb565b60405161044a9190613617565b60405180910390f35b34801561045f57600080fd5b50610468610d0e565b005b34801561047657600080fd5b50610491600480360381019061048c9190612e1a565b610dda565b005b34801561049f57600080fd5b506104a8610dfa565b6040516104b59190613617565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e09190613040565b610e0d565b005b3480156104f357600080fd5b5061050e60048036038101906105099190613089565b610edb565b005b34801561051c57600080fd5b5061053760048036038101906105329190613089565b610f9a565b604051610544919061358e565b60405180910390f35b34801561055957600080fd5b5061056261104c565b60405161056f9190613632565b60405180910390f35b34801561058457600080fd5b5061059f600480360381019061059a9190612f70565b6110da565b005b3480156105ad57600080fd5b506105c860048036038101906105c39190612dad565b611222565b6040516105d59190613916565b60405180910390f35b3480156105ea57600080fd5b506105f36112da565b005b61060f600480360381019061060a9190613089565b611362565b005b34801561061d57600080fd5b5061063860048036038101906106339190612dad565b6115db565b005b34801561064657600080fd5b5061064f6116e9565b60405161065c9190613916565b60405180910390f35b34801561067157600080fd5b5061067a6116f4565b604051610687919061358e565b60405180910390f35b34801561069c57600080fd5b506106a561171e565b6040516106b29190613916565b60405180910390f35b3480156106c757600080fd5b506106d0611723565b6040516106dd9190613632565b60405180910390f35b61070060048036038101906106fb9190613089565b6117b5565b005b34801561070e57600080fd5b5061072960048036038101906107249190612ef0565b611969565b005b34801561073757600080fd5b50610752600480360381019061074d9190612e6d565b611aea565b005b34801561076057600080fd5b5061077b60048036038101906107769190613089565b611b4c565b005b34801561078957600080fd5b506107a4600480360381019061079f9190613089565b611c0b565b6040516107b19190613632565b60405180910390f35b3480156107c657600080fd5b506107e160048036038101906107dc9190612fb9565b611cb2565b005b3480156107ef57600080fd5b5061080a60048036038101906108059190612dda565b611d91565b6040516108179190613617565b60405180910390f35b34801561082c57600080fd5b5061084760048036038101906108429190612dad565b611e25565b005b34801561085557600080fd5b5061085e611f1d565b60405161086b9190613916565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094f575061094e82611f39565b5b9050919050565b600a5481565b60606000805461096b90613c6a565b80601f016020809104026020016040519081016040528092919081815260200182805461099790613c6a565b80156109e45780601f106109b9576101008083540402835291602001916109e4565b820191906000526020600020905b8154815290600101906020018083116109c757829003601f168201915b5050505050905090565b60006109f982611fa3565b610a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2f90613816565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a7e82610f9a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae690613896565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b0e61200f565b73ffffffffffffffffffffffffffffffffffffffff161480610b3d5750610b3c81610b3761200f565b611d91565b5b610b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7390613776565b60405180910390fd5b610b868383612017565b505050565b600181565b610ba1610b9b61200f565b826120d0565b610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd7906138b6565b60405180910390fd5b610beb8383836121ae565b505050565b600d6020528060005260406000206000915054906101000a900460ff1681565b610c1861200f565b73ffffffffffffffffffffffffffffffffffffffff16610c366116f4565b73ffffffffffffffffffffffffffffffffffffffff1614610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8390613836565b60405180910390fd5b80600b60006101000a81548160ff0219169083151502179055507f376fb9037f5cd4338df0a05e4b353c0c01adbc9a440d6db61d829606a8bec978600b60009054906101000a900460ff16604051610ce49190613617565b60405180910390a150565b600c5481565b611e6181565b600b60019054906101000a900460ff1681565b610d1661200f565b73ffffffffffffffffffffffffffffffffffffffff16610d346116f4565b73ffffffffffffffffffffffffffffffffffffffff1614610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8190613836565b60405180910390fd5b610d926116f4565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610dd7573d6000803e3d6000fd5b50565b610df583838360405180602001604052806000815250611aea565b505050565b600b60009054906101000a900460ff1681565b610e1561200f565b73ffffffffffffffffffffffffffffffffffffffff16610e336116f4565b73ffffffffffffffffffffffffffffffffffffffff1614610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8090613836565b60405180910390fd5b8060089080519060200190610e9f929190612b23565b507f01e56a02aca7f26a28165a040851ba78f30282b55ca81c63a804cdc1e2dcea726008604051610ed09190613654565b60405180910390a150565b610ee361200f565b73ffffffffffffffffffffffffffffffffffffffff16610f016116f4565b73ffffffffffffffffffffffffffffffffffffffff1614610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e90613836565b60405180910390fd5b806009819055507f3e06105a4d5b471765e9078f56be602c552b5e5ef2d85843cb10d218ae2d9822600954604051610f8f9190613916565b60405180910390a150565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103a906137b6565b60405180910390fd5b80915050919050565b6008805461105990613c6a565b80601f016020809104026020016040519081016040528092919081815260200182805461108590613c6a565b80156110d25780601f106110a7576101008083540402835291602001916110d2565b820191906000526020600020905b8154815290600101906020018083116110b557829003601f168201915b505050505081565b6110e261200f565b73ffffffffffffffffffffffffffffffffffffffff166111006116f4565b73ffffffffffffffffffffffffffffffffffffffff1614611156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114d90613836565b60405180910390fd5b60005b81518110156111e7576001600d600084848151811061117b5761117a613dd4565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806111df90613ccd565b915050611159565b507f1fc822a735cf440a22283cd75f8c9c33db2ddfe20f5bc4f70d1847facca9bc738160405161121791906135f5565b60405180910390a150565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a90613796565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112e261200f565b73ffffffffffffffffffffffffffffffffffffffff166113006116f4565b73ffffffffffffffffffffffffffffffffffffffff1614611356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134d90613836565b60405180910390fd5b611360600061240a565b565b600b60019054906101000a900460ff166113b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a8906138d6565b60405180910390fd5b8060018111156113f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ed90613756565b60405180910390fd5b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611482576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147990613716565b60405180910390fd5b8160095481600a546114949190613a75565b11156114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc906137d6565b60405180910390fd5b8266b1a2bc2ec50000816114e99190613afc565b341461152a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611521906138f6565b60405180910390fd5b600061153660076124d0565b905061154233826124de565b61154c6007611f23565b600c600081548092919061155f90613c40565b9190505550600a600081548092919061157790613ccd565b91905055506000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050505050565b6115e361200f565b73ffffffffffffffffffffffffffffffffffffffff166116016116f4565b73ffffffffffffffffffffffffffffffffffffffff1614611657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164e90613836565b60405180910390fd5b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f8001889796f7196f441d2239d511364fbde340d83c02817c5ae71d1d7e097add816040516116de919061358e565b60405180910390a150565b66b1a2bc2ec5000081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600381565b60606001805461173290613c6a565b80601f016020809104026020016040519081016040528092919081815260200182805461175e90613c6a565b80156117ab5780601f10611780576101008083540402835291602001916117ab565b820191906000526020600020905b81548152906001019060200180831161178e57829003601f168201915b5050505050905090565b600b60009054906101000a900460ff16611804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fb906138d6565b60405180910390fd5b806003811115611849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184090613756565b60405180910390fd5b8160095481600a5461185b9190613a75565b111561189c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611893906137d6565b60405180910390fd5b8266b1a2bc2ec50000816118b09190613afc565b34146118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e8906138f6565b60405180910390fd5b60005b8481101561196257600061190860076124d0565b905061191433826124de565b61191e6007611f23565b600c600081548092919061193190613c40565b9190505550600a600081548092919061194990613ccd565b919050555050808061195a90613ccd565b9150506118f4565b5050505050565b61197161200f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d6906136f6565b60405180910390fd5b80600560006119ec61200f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a9961200f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ade9190613617565b60405180910390a35050565b611afb611af561200f565b836120d0565b611b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b31906138b6565b60405180910390fd5b611b46848484846124fc565b50505050565b611b5461200f565b73ffffffffffffffffffffffffffffffffffffffff16611b726116f4565b73ffffffffffffffffffffffffffffffffffffffff1614611bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbf90613836565b60405180910390fd5b80600a819055507ff8b078838967b486fe4ae3be7e49d6599cbf9d147cb29517a87d73d682d3d986600a54604051611c009190613916565b60405180910390a150565b6060611c1682611fa3565b611c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4c90613876565b60405180910390fd5b6000611c5f612558565b90506000815111611c7f5760405180602001604052806000815250611caa565b80611c89846125ea565b604051602001611c9a92919061356a565b6040516020818303038152906040525b915050919050565b611cba61200f565b73ffffffffffffffffffffffffffffffffffffffff16611cd86116f4565b73ffffffffffffffffffffffffffffffffffffffff1614611d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2590613836565b60405180910390fd5b80600b60016101000a81548160ff0219169083151502179055507f40fa0a2d4f13c850215b9029bddbd7af5a8104c35e6b471cc2bc734519df7f7c600b60019054906101000a900460ff16604051611d869190613617565b60405180910390a150565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e2d61200f565b73ffffffffffffffffffffffffffffffffffffffff16611e4b6116f4565b73ffffffffffffffffffffffffffffffffffffffff1614611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9890613836565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0890613696565b60405180910390fd5b611f1a8161240a565b50565b60095481565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661208a83610f9a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006120db82611fa3565b61211a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211190613736565b60405180910390fd5b600061212583610f9a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061219457508373ffffffffffffffffffffffffffffffffffffffff1661217c846109ee565b73ffffffffffffffffffffffffffffffffffffffff16145b806121a557506121a48185611d91565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121ce82610f9a565b73ffffffffffffffffffffffffffffffffffffffff1614612224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221b90613856565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228b906136d6565b60405180910390fd5b61229f83838361274b565b6122aa600082612017565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122fa9190613b56565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123519190613a75565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b6124f8828260405180602001604052806000815250612750565b5050565b6125078484846121ae565b612513848484846127ab565b612552576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254990613676565b60405180910390fd5b50505050565b60606008805461256790613c6a565b80601f016020809104026020016040519081016040528092919081815260200182805461259390613c6a565b80156125e05780601f106125b5576101008083540402835291602001916125e0565b820191906000526020600020905b8154815290600101906020018083116125c357829003601f168201915b5050505050905090565b60606000821415612632576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612746565b600082905060005b6000821461266457808061264d90613ccd565b915050600a8261265d9190613acb565b915061263a565b60008167ffffffffffffffff8111156126805761267f613e03565b5b6040519080825280601f01601f1916602001820160405280156126b25781602001600182028036833780820191505090505b5090505b6000851461273f576001826126cb9190613b56565b9150600a856126da9190613d16565b60306126e69190613a75565b60f81b8183815181106126fc576126fb613dd4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127389190613acb565b94506126b6565b8093505050505b919050565b505050565b61275a8383612942565b61276760008484846127ab565b6127a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279d90613676565b60405180910390fd5b505050565b60006127cc8473ffffffffffffffffffffffffffffffffffffffff16612b10565b15612935578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127f561200f565b8786866040518563ffffffff1660e01b815260040161281794939291906135a9565b602060405180830381600087803b15801561283157600080fd5b505af192505050801561286257506040513d601f19601f8201168201806040525081019061285f9190613013565b60015b6128e5573d8060008114612892576040519150601f19603f3d011682016040523d82523d6000602084013e612897565b606091505b506000815114156128dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d490613676565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061293a565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a9906137f6565b60405180910390fd5b6129bb81611fa3565b156129fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f2906136b6565b60405180910390fd5b612a076000838361274b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a579190613a75565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612b2f90613c6a565b90600052602060002090601f016020900481019282612b515760008555612b98565b82601f10612b6a57805160ff1916838001178555612b98565b82800160010185558215612b98579182015b82811115612b97578251825591602001919060010190612b7c565b5b509050612ba59190612ba9565b5090565b5b80821115612bc2576000816000905550600101612baa565b5090565b6000612bd9612bd484613956565b613931565b90508083825260208201905082856020860282011115612bfc57612bfb613e37565b5b60005b85811015612c2c5781612c128882612cba565b845260208401935060208301925050600181019050612bff565b5050509392505050565b6000612c49612c4484613982565b613931565b905082815260208101848484011115612c6557612c64613e3c565b5b612c70848285613bfe565b509392505050565b6000612c8b612c86846139b3565b613931565b905082815260208101848484011115612ca757612ca6613e3c565b5b612cb2848285613bfe565b509392505050565b600081359050612cc981614465565b92915050565b600082601f830112612ce457612ce3613e32565b5b8135612cf4848260208601612bc6565b91505092915050565b600081359050612d0c8161447c565b92915050565b600081359050612d2181614493565b92915050565b600081519050612d3681614493565b92915050565b600082601f830112612d5157612d50613e32565b5b8135612d61848260208601612c36565b91505092915050565b600082601f830112612d7f57612d7e613e32565b5b8135612d8f848260208601612c78565b91505092915050565b600081359050612da7816144aa565b92915050565b600060208284031215612dc357612dc2613e46565b5b6000612dd184828501612cba565b91505092915050565b60008060408385031215612df157612df0613e46565b5b6000612dff85828601612cba565b9250506020612e1085828601612cba565b9150509250929050565b600080600060608486031215612e3357612e32613e46565b5b6000612e4186828701612cba565b9350506020612e5286828701612cba565b9250506040612e6386828701612d98565b9150509250925092565b60008060008060808587031215612e8757612e86613e46565b5b6000612e9587828801612cba565b9450506020612ea687828801612cba565b9350506040612eb787828801612d98565b925050606085013567ffffffffffffffff811115612ed857612ed7613e41565b5b612ee487828801612d3c565b91505092959194509250565b60008060408385031215612f0757612f06613e46565b5b6000612f1585828601612cba565b9250506020612f2685828601612cfd565b9150509250929050565b60008060408385031215612f4757612f46613e46565b5b6000612f5585828601612cba565b9250506020612f6685828601612d98565b9150509250929050565b600060208284031215612f8657612f85613e46565b5b600082013567ffffffffffffffff811115612fa457612fa3613e41565b5b612fb084828501612ccf565b91505092915050565b600060208284031215612fcf57612fce613e46565b5b6000612fdd84828501612cfd565b91505092915050565b600060208284031215612ffc57612ffb613e46565b5b600061300a84828501612d12565b91505092915050565b60006020828403121561302957613028613e46565b5b600061303784828501612d27565b91505092915050565b60006020828403121561305657613055613e46565b5b600082013567ffffffffffffffff81111561307457613073613e41565b5b61308084828501612d6a565b91505092915050565b60006020828403121561309f5761309e613e46565b5b60006130ad84828501612d98565b91505092915050565b60006130c283836130ce565b60208301905092915050565b6130d781613b8a565b82525050565b6130e681613b8a565b82525050565b60006130f782613a09565b6131018185613a37565b935061310c836139e4565b8060005b8381101561313d57815161312488826130b6565b975061312f83613a2a565b925050600181019050613110565b5085935050505092915050565b61315381613b9c565b82525050565b600061316482613a14565b61316e8185613a48565b935061317e818560208601613c0d565b61318781613e4b565b840191505092915050565b600061319d82613a1f565b6131a78185613a59565b93506131b7818560208601613c0d565b6131c081613e4b565b840191505092915050565b60006131d682613a1f565b6131e08185613a6a565b93506131f0818560208601613c0d565b80840191505092915050565b6000815461320981613c6a565b6132138186613a59565b9450600182166000811461322e576001811461324057613273565b60ff1983168652602086019350613273565b613249856139f4565b60005b8381101561326b5781548189015260018201915060208101905061324c565b808801955050505b50505092915050565b6000613289603283613a59565b915061329482613e5c565b604082019050919050565b60006132ac602683613a59565b91506132b782613eab565b604082019050919050565b60006132cf601c83613a59565b91506132da82613efa565b602082019050919050565b60006132f2602483613a59565b91506132fd82613f23565b604082019050919050565b6000613315601983613a59565b915061332082613f72565b602082019050919050565b6000613338603483613a59565b915061334382613f9b565b604082019050919050565b600061335b602c83613a59565b915061336682613fea565b604082019050919050565b600061337e603283613a59565b915061338982614039565b604082019050919050565b60006133a1603883613a59565b91506133ac82614088565b604082019050919050565b60006133c4602a83613a59565b91506133cf826140d7565b604082019050919050565b60006133e7602983613a59565b91506133f282614126565b604082019050919050565b600061340a603783613a59565b915061341582614175565b604082019050919050565b600061342d602083613a59565b9150613438826141c4565b602082019050919050565b6000613450602c83613a59565b915061345b826141ed565b604082019050919050565b6000613473602083613a59565b915061347e8261423c565b602082019050919050565b6000613496602983613a59565b91506134a182614265565b604082019050919050565b60006134b9602f83613a59565b91506134c4826142b4565b604082019050919050565b60006134dc602183613a59565b91506134e782614303565b604082019050919050565b60006134ff603183613a59565b915061350a82614352565b604082019050919050565b6000613522602683613a59565b915061352d826143a1565b604082019050919050565b6000613545604783613a59565b9150613550826143f0565b606082019050919050565b61356481613bf4565b82525050565b600061357682856131cb565b915061358282846131cb565b91508190509392505050565b60006020820190506135a360008301846130dd565b92915050565b60006080820190506135be60008301876130dd565b6135cb60208301866130dd565b6135d8604083018561355b565b81810360608301526135ea8184613159565b905095945050505050565b6000602082019050818103600083015261360f81846130ec565b905092915050565b600060208201905061362c600083018461314a565b92915050565b6000602082019050818103600083015261364c8184613192565b905092915050565b6000602082019050818103600083015261366e81846131fc565b905092915050565b6000602082019050818103600083015261368f8161327c565b9050919050565b600060208201905081810360008301526136af8161329f565b9050919050565b600060208201905081810360008301526136cf816132c2565b9050919050565b600060208201905081810360008301526136ef816132e5565b9050919050565b6000602082019050818103600083015261370f81613308565b9050919050565b6000602082019050818103600083015261372f8161332b565b9050919050565b6000602082019050818103600083015261374f8161334e565b9050919050565b6000602082019050818103600083015261376f81613371565b9050919050565b6000602082019050818103600083015261378f81613394565b9050919050565b600060208201905081810360008301526137af816133b7565b9050919050565b600060208201905081810360008301526137cf816133da565b9050919050565b600060208201905081810360008301526137ef816133fd565b9050919050565b6000602082019050818103600083015261380f81613420565b9050919050565b6000602082019050818103600083015261382f81613443565b9050919050565b6000602082019050818103600083015261384f81613466565b9050919050565b6000602082019050818103600083015261386f81613489565b9050919050565b6000602082019050818103600083015261388f816134ac565b9050919050565b600060208201905081810360008301526138af816134cf565b9050919050565b600060208201905081810360008301526138cf816134f2565b9050919050565b600060208201905081810360008301526138ef81613515565b9050919050565b6000602082019050818103600083015261390f81613538565b9050919050565b600060208201905061392b600083018461355b565b92915050565b600061393b61394c565b90506139478282613c9c565b919050565b6000604051905090565b600067ffffffffffffffff82111561397157613970613e03565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561399d5761399c613e03565b5b6139a682613e4b565b9050602081019050919050565b600067ffffffffffffffff8211156139ce576139cd613e03565b5b6139d782613e4b565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a8082613bf4565b9150613a8b83613bf4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ac057613abf613d47565b5b828201905092915050565b6000613ad682613bf4565b9150613ae183613bf4565b925082613af157613af0613d76565b5b828204905092915050565b6000613b0782613bf4565b9150613b1283613bf4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b4b57613b4a613d47565b5b828202905092915050565b6000613b6182613bf4565b9150613b6c83613bf4565b925082821015613b7f57613b7e613d47565b5b828203905092915050565b6000613b9582613bd4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c2b578082015181840152602081019050613c10565b83811115613c3a576000848401525b50505050565b6000613c4b82613bf4565b91506000821415613c5f57613c5e613d47565b5b600182039050919050565b60006002820490506001821680613c8257607f821691505b60208210811415613c9657613c95613da5565b5b50919050565b613ca582613e4b565b810181811067ffffffffffffffff82111715613cc457613cc3613e03565b5b80604052505050565b6000613cd882613bf4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d0b57613d0a613d47565b5b600182019050919050565b6000613d2182613bf4565b9150613d2c83613bf4565b925082613d3c57613d3b613d76565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f566f78656c2056696c6c653a20596f75277265206e6f74206f6e20746865206c60008201527f69737420666f72207468652070726573616c652e000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f566f78656c2056696c6c653a204d696e7420616d6f756e74206578636565647360008201527f206d6178206c696d6974207065722074782e0000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f566f78656c2056696c6c653a20546865726520617265206e6f206d6f7265207260008201527f656d61696e696e67204e4654277320746f206d696e742e000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f566f78656c2056696c6c653a204e46542063616e6e6f74206265206d696e746560008201527f64207965742e0000000000000000000000000000000000000000000000000000602082015250565b7f566f78656c2056696c6c653a20546865726520776173206e6f7420656e6f756760008201527f682f657874726120455448207472616e7366657272656420746f206d696e742060208201527f616e204e46542e00000000000000000000000000000000000000000000000000604082015250565b61446e81613b8a565b811461447957600080fd5b50565b61448581613b9c565b811461449057600080fd5b50565b61449c81613ba8565b81146144a757600080fd5b50565b6144b381613bf4565b81146144be57600080fd5b5056fea2646970667358221220fc6f50072052f303851d328090a9b95e16a68197b5faa19720d8dbfbbdce682164736f6c63430008060033

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80636c0360eb1161012357806395d89b41116100ab578063c87b56dd1161006f578063c87b56dd1461077d578063e4fb5954146107ba578063e985e9c5146107e3578063f2fde38b14610820578063f4daaba1146108495761021a565b806395d89b41146106bb578063a0712d68146106e6578063a22cb46514610702578063b88d4fde1461072b578063b8c6ceea146107545761021a565b80637835c635116100f25780637835c635146105f557806388b2134e146106115780638d859f3e1461063a5780638da5cb5b146106655780638ecad721146106905761021a565b80636c0360eb1461054d5780636e1d3c051461057857806370a08231146105a1578063715018a6146105de5761021a565b80632a33f553116101a657806342842e0e1161017557806342842e0e1461046a5780634bf365df1461049357806355f804b3146104be578063576f35e3146104e75780636352211e146105105761021a565b80632a33f553146103d257806332cb6b0c146103fd5780633abc710d146104285780633ccfd60b146104535761021a565b8063095ea7b3116101ed578063095ea7b3146102ef57806311cc6d311461031857806323b872dd146103435780632848aeaf1461036c578063285d70d4146103a95761021a565b806301ffc9a71461021f57806306f130561461025c57806306fdde0314610287578063081812fc146102b2575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612fe6565b610874565b6040516102539190613617565b60405180910390f35b34801561026857600080fd5b50610271610956565b60405161027e9190613916565b60405180910390f35b34801561029357600080fd5b5061029c61095c565b6040516102a99190613632565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d49190613089565b6109ee565b6040516102e6919061358e565b60405180910390f35b3480156102fb57600080fd5b5061031660048036038101906103119190612f30565b610a73565b005b34801561032457600080fd5b5061032d610b8b565b60405161033a9190613916565b60405180910390f35b34801561034f57600080fd5b5061036a60048036038101906103659190612e1a565b610b90565b005b34801561037857600080fd5b50610393600480360381019061038e9190612dad565b610bf0565b6040516103a09190613617565b60405180910390f35b3480156103b557600080fd5b506103d060048036038101906103cb9190612fb9565b610c10565b005b3480156103de57600080fd5b506103e7610cef565b6040516103f49190613916565b60405180910390f35b34801561040957600080fd5b50610412610cf5565b60405161041f9190613916565b60405180910390f35b34801561043457600080fd5b5061043d610cfb565b60405161044a9190613617565b60405180910390f35b34801561045f57600080fd5b50610468610d0e565b005b34801561047657600080fd5b50610491600480360381019061048c9190612e1a565b610dda565b005b34801561049f57600080fd5b506104a8610dfa565b6040516104b59190613617565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e09190613040565b610e0d565b005b3480156104f357600080fd5b5061050e60048036038101906105099190613089565b610edb565b005b34801561051c57600080fd5b5061053760048036038101906105329190613089565b610f9a565b604051610544919061358e565b60405180910390f35b34801561055957600080fd5b5061056261104c565b60405161056f9190613632565b60405180910390f35b34801561058457600080fd5b5061059f600480360381019061059a9190612f70565b6110da565b005b3480156105ad57600080fd5b506105c860048036038101906105c39190612dad565b611222565b6040516105d59190613916565b60405180910390f35b3480156105ea57600080fd5b506105f36112da565b005b61060f600480360381019061060a9190613089565b611362565b005b34801561061d57600080fd5b5061063860048036038101906106339190612dad565b6115db565b005b34801561064657600080fd5b5061064f6116e9565b60405161065c9190613916565b60405180910390f35b34801561067157600080fd5b5061067a6116f4565b604051610687919061358e565b60405180910390f35b34801561069c57600080fd5b506106a561171e565b6040516106b29190613916565b60405180910390f35b3480156106c757600080fd5b506106d0611723565b6040516106dd9190613632565b60405180910390f35b61070060048036038101906106fb9190613089565b6117b5565b005b34801561070e57600080fd5b5061072960048036038101906107249190612ef0565b611969565b005b34801561073757600080fd5b50610752600480360381019061074d9190612e6d565b611aea565b005b34801561076057600080fd5b5061077b60048036038101906107769190613089565b611b4c565b005b34801561078957600080fd5b506107a4600480360381019061079f9190613089565b611c0b565b6040516107b19190613632565b60405180910390f35b3480156107c657600080fd5b506107e160048036038101906107dc9190612fb9565b611cb2565b005b3480156107ef57600080fd5b5061080a60048036038101906108059190612dda565b611d91565b6040516108179190613617565b60405180910390f35b34801561082c57600080fd5b5061084760048036038101906108429190612dad565b611e25565b005b34801561085557600080fd5b5061085e611f1d565b60405161086b9190613916565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094f575061094e82611f39565b5b9050919050565b600a5481565b60606000805461096b90613c6a565b80601f016020809104026020016040519081016040528092919081815260200182805461099790613c6a565b80156109e45780601f106109b9576101008083540402835291602001916109e4565b820191906000526020600020905b8154815290600101906020018083116109c757829003601f168201915b5050505050905090565b60006109f982611fa3565b610a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2f90613816565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a7e82610f9a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae690613896565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b0e61200f565b73ffffffffffffffffffffffffffffffffffffffff161480610b3d5750610b3c81610b3761200f565b611d91565b5b610b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7390613776565b60405180910390fd5b610b868383612017565b505050565b600181565b610ba1610b9b61200f565b826120d0565b610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd7906138b6565b60405180910390fd5b610beb8383836121ae565b505050565b600d6020528060005260406000206000915054906101000a900460ff1681565b610c1861200f565b73ffffffffffffffffffffffffffffffffffffffff16610c366116f4565b73ffffffffffffffffffffffffffffffffffffffff1614610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8390613836565b60405180910390fd5b80600b60006101000a81548160ff0219169083151502179055507f376fb9037f5cd4338df0a05e4b353c0c01adbc9a440d6db61d829606a8bec978600b60009054906101000a900460ff16604051610ce49190613617565b60405180910390a150565b600c5481565b611e6181565b600b60019054906101000a900460ff1681565b610d1661200f565b73ffffffffffffffffffffffffffffffffffffffff16610d346116f4565b73ffffffffffffffffffffffffffffffffffffffff1614610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8190613836565b60405180910390fd5b610d926116f4565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610dd7573d6000803e3d6000fd5b50565b610df583838360405180602001604052806000815250611aea565b505050565b600b60009054906101000a900460ff1681565b610e1561200f565b73ffffffffffffffffffffffffffffffffffffffff16610e336116f4565b73ffffffffffffffffffffffffffffffffffffffff1614610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8090613836565b60405180910390fd5b8060089080519060200190610e9f929190612b23565b507f01e56a02aca7f26a28165a040851ba78f30282b55ca81c63a804cdc1e2dcea726008604051610ed09190613654565b60405180910390a150565b610ee361200f565b73ffffffffffffffffffffffffffffffffffffffff16610f016116f4565b73ffffffffffffffffffffffffffffffffffffffff1614610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e90613836565b60405180910390fd5b806009819055507f3e06105a4d5b471765e9078f56be602c552b5e5ef2d85843cb10d218ae2d9822600954604051610f8f9190613916565b60405180910390a150565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103a906137b6565b60405180910390fd5b80915050919050565b6008805461105990613c6a565b80601f016020809104026020016040519081016040528092919081815260200182805461108590613c6a565b80156110d25780601f106110a7576101008083540402835291602001916110d2565b820191906000526020600020905b8154815290600101906020018083116110b557829003601f168201915b505050505081565b6110e261200f565b73ffffffffffffffffffffffffffffffffffffffff166111006116f4565b73ffffffffffffffffffffffffffffffffffffffff1614611156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114d90613836565b60405180910390fd5b60005b81518110156111e7576001600d600084848151811061117b5761117a613dd4565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806111df90613ccd565b915050611159565b507f1fc822a735cf440a22283cd75f8c9c33db2ddfe20f5bc4f70d1847facca9bc738160405161121791906135f5565b60405180910390a150565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a90613796565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112e261200f565b73ffffffffffffffffffffffffffffffffffffffff166113006116f4565b73ffffffffffffffffffffffffffffffffffffffff1614611356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134d90613836565b60405180910390fd5b611360600061240a565b565b600b60019054906101000a900460ff166113b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a8906138d6565b60405180910390fd5b8060018111156113f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ed90613756565b60405180910390fd5b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611482576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147990613716565b60405180910390fd5b8160095481600a546114949190613a75565b11156114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc906137d6565b60405180910390fd5b8266b1a2bc2ec50000816114e99190613afc565b341461152a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611521906138f6565b60405180910390fd5b600061153660076124d0565b905061154233826124de565b61154c6007611f23565b600c600081548092919061155f90613c40565b9190505550600a600081548092919061157790613ccd565b91905055506000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050505050565b6115e361200f565b73ffffffffffffffffffffffffffffffffffffffff166116016116f4565b73ffffffffffffffffffffffffffffffffffffffff1614611657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164e90613836565b60405180910390fd5b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f8001889796f7196f441d2239d511364fbde340d83c02817c5ae71d1d7e097add816040516116de919061358e565b60405180910390a150565b66b1a2bc2ec5000081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600381565b60606001805461173290613c6a565b80601f016020809104026020016040519081016040528092919081815260200182805461175e90613c6a565b80156117ab5780601f10611780576101008083540402835291602001916117ab565b820191906000526020600020905b81548152906001019060200180831161178e57829003601f168201915b5050505050905090565b600b60009054906101000a900460ff16611804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fb906138d6565b60405180910390fd5b806003811115611849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184090613756565b60405180910390fd5b8160095481600a5461185b9190613a75565b111561189c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611893906137d6565b60405180910390fd5b8266b1a2bc2ec50000816118b09190613afc565b34146118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e8906138f6565b60405180910390fd5b60005b8481101561196257600061190860076124d0565b905061191433826124de565b61191e6007611f23565b600c600081548092919061193190613c40565b9190505550600a600081548092919061194990613ccd565b919050555050808061195a90613ccd565b9150506118f4565b5050505050565b61197161200f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d6906136f6565b60405180910390fd5b80600560006119ec61200f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a9961200f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ade9190613617565b60405180910390a35050565b611afb611af561200f565b836120d0565b611b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b31906138b6565b60405180910390fd5b611b46848484846124fc565b50505050565b611b5461200f565b73ffffffffffffffffffffffffffffffffffffffff16611b726116f4565b73ffffffffffffffffffffffffffffffffffffffff1614611bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbf90613836565b60405180910390fd5b80600a819055507ff8b078838967b486fe4ae3be7e49d6599cbf9d147cb29517a87d73d682d3d986600a54604051611c009190613916565b60405180910390a150565b6060611c1682611fa3565b611c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4c90613876565b60405180910390fd5b6000611c5f612558565b90506000815111611c7f5760405180602001604052806000815250611caa565b80611c89846125ea565b604051602001611c9a92919061356a565b6040516020818303038152906040525b915050919050565b611cba61200f565b73ffffffffffffffffffffffffffffffffffffffff16611cd86116f4565b73ffffffffffffffffffffffffffffffffffffffff1614611d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2590613836565b60405180910390fd5b80600b60016101000a81548160ff0219169083151502179055507f40fa0a2d4f13c850215b9029bddbd7af5a8104c35e6b471cc2bc734519df7f7c600b60019054906101000a900460ff16604051611d869190613617565b60405180910390a150565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e2d61200f565b73ffffffffffffffffffffffffffffffffffffffff16611e4b6116f4565b73ffffffffffffffffffffffffffffffffffffffff1614611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9890613836565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0890613696565b60405180910390fd5b611f1a8161240a565b50565b60095481565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661208a83610f9a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006120db82611fa3565b61211a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211190613736565b60405180910390fd5b600061212583610f9a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061219457508373ffffffffffffffffffffffffffffffffffffffff1661217c846109ee565b73ffffffffffffffffffffffffffffffffffffffff16145b806121a557506121a48185611d91565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121ce82610f9a565b73ffffffffffffffffffffffffffffffffffffffff1614612224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221b90613856565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228b906136d6565b60405180910390fd5b61229f83838361274b565b6122aa600082612017565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122fa9190613b56565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123519190613a75565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b6124f8828260405180602001604052806000815250612750565b5050565b6125078484846121ae565b612513848484846127ab565b612552576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254990613676565b60405180910390fd5b50505050565b60606008805461256790613c6a565b80601f016020809104026020016040519081016040528092919081815260200182805461259390613c6a565b80156125e05780601f106125b5576101008083540402835291602001916125e0565b820191906000526020600020905b8154815290600101906020018083116125c357829003601f168201915b5050505050905090565b60606000821415612632576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612746565b600082905060005b6000821461266457808061264d90613ccd565b915050600a8261265d9190613acb565b915061263a565b60008167ffffffffffffffff8111156126805761267f613e03565b5b6040519080825280601f01601f1916602001820160405280156126b25781602001600182028036833780820191505090505b5090505b6000851461273f576001826126cb9190613b56565b9150600a856126da9190613d16565b60306126e69190613a75565b60f81b8183815181106126fc576126fb613dd4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127389190613acb565b94506126b6565b8093505050505b919050565b505050565b61275a8383612942565b61276760008484846127ab565b6127a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279d90613676565b60405180910390fd5b505050565b60006127cc8473ffffffffffffffffffffffffffffffffffffffff16612b10565b15612935578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127f561200f565b8786866040518563ffffffff1660e01b815260040161281794939291906135a9565b602060405180830381600087803b15801561283157600080fd5b505af192505050801561286257506040513d601f19601f8201168201806040525081019061285f9190613013565b60015b6128e5573d8060008114612892576040519150601f19603f3d011682016040523d82523d6000602084013e612897565b606091505b506000815114156128dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d490613676565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061293a565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a9906137f6565b60405180910390fd5b6129bb81611fa3565b156129fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f2906136b6565b60405180910390fd5b612a076000838361274b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a579190613a75565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612b2f90613c6a565b90600052602060002090601f016020900481019282612b515760008555612b98565b82601f10612b6a57805160ff1916838001178555612b98565b82800160010185558215612b98579182015b82811115612b97578251825591602001919060010190612b7c565b5b509050612ba59190612ba9565b5090565b5b80821115612bc2576000816000905550600101612baa565b5090565b6000612bd9612bd484613956565b613931565b90508083825260208201905082856020860282011115612bfc57612bfb613e37565b5b60005b85811015612c2c5781612c128882612cba565b845260208401935060208301925050600181019050612bff565b5050509392505050565b6000612c49612c4484613982565b613931565b905082815260208101848484011115612c6557612c64613e3c565b5b612c70848285613bfe565b509392505050565b6000612c8b612c86846139b3565b613931565b905082815260208101848484011115612ca757612ca6613e3c565b5b612cb2848285613bfe565b509392505050565b600081359050612cc981614465565b92915050565b600082601f830112612ce457612ce3613e32565b5b8135612cf4848260208601612bc6565b91505092915050565b600081359050612d0c8161447c565b92915050565b600081359050612d2181614493565b92915050565b600081519050612d3681614493565b92915050565b600082601f830112612d5157612d50613e32565b5b8135612d61848260208601612c36565b91505092915050565b600082601f830112612d7f57612d7e613e32565b5b8135612d8f848260208601612c78565b91505092915050565b600081359050612da7816144aa565b92915050565b600060208284031215612dc357612dc2613e46565b5b6000612dd184828501612cba565b91505092915050565b60008060408385031215612df157612df0613e46565b5b6000612dff85828601612cba565b9250506020612e1085828601612cba565b9150509250929050565b600080600060608486031215612e3357612e32613e46565b5b6000612e4186828701612cba565b9350506020612e5286828701612cba565b9250506040612e6386828701612d98565b9150509250925092565b60008060008060808587031215612e8757612e86613e46565b5b6000612e9587828801612cba565b9450506020612ea687828801612cba565b9350506040612eb787828801612d98565b925050606085013567ffffffffffffffff811115612ed857612ed7613e41565b5b612ee487828801612d3c565b91505092959194509250565b60008060408385031215612f0757612f06613e46565b5b6000612f1585828601612cba565b9250506020612f2685828601612cfd565b9150509250929050565b60008060408385031215612f4757612f46613e46565b5b6000612f5585828601612cba565b9250506020612f6685828601612d98565b9150509250929050565b600060208284031215612f8657612f85613e46565b5b600082013567ffffffffffffffff811115612fa457612fa3613e41565b5b612fb084828501612ccf565b91505092915050565b600060208284031215612fcf57612fce613e46565b5b6000612fdd84828501612cfd565b91505092915050565b600060208284031215612ffc57612ffb613e46565b5b600061300a84828501612d12565b91505092915050565b60006020828403121561302957613028613e46565b5b600061303784828501612d27565b91505092915050565b60006020828403121561305657613055613e46565b5b600082013567ffffffffffffffff81111561307457613073613e41565b5b61308084828501612d6a565b91505092915050565b60006020828403121561309f5761309e613e46565b5b60006130ad84828501612d98565b91505092915050565b60006130c283836130ce565b60208301905092915050565b6130d781613b8a565b82525050565b6130e681613b8a565b82525050565b60006130f782613a09565b6131018185613a37565b935061310c836139e4565b8060005b8381101561313d57815161312488826130b6565b975061312f83613a2a565b925050600181019050613110565b5085935050505092915050565b61315381613b9c565b82525050565b600061316482613a14565b61316e8185613a48565b935061317e818560208601613c0d565b61318781613e4b565b840191505092915050565b600061319d82613a1f565b6131a78185613a59565b93506131b7818560208601613c0d565b6131c081613e4b565b840191505092915050565b60006131d682613a1f565b6131e08185613a6a565b93506131f0818560208601613c0d565b80840191505092915050565b6000815461320981613c6a565b6132138186613a59565b9450600182166000811461322e576001811461324057613273565b60ff1983168652602086019350613273565b613249856139f4565b60005b8381101561326b5781548189015260018201915060208101905061324c565b808801955050505b50505092915050565b6000613289603283613a59565b915061329482613e5c565b604082019050919050565b60006132ac602683613a59565b91506132b782613eab565b604082019050919050565b60006132cf601c83613a59565b91506132da82613efa565b602082019050919050565b60006132f2602483613a59565b91506132fd82613f23565b604082019050919050565b6000613315601983613a59565b915061332082613f72565b602082019050919050565b6000613338603483613a59565b915061334382613f9b565b604082019050919050565b600061335b602c83613a59565b915061336682613fea565b604082019050919050565b600061337e603283613a59565b915061338982614039565b604082019050919050565b60006133a1603883613a59565b91506133ac82614088565b604082019050919050565b60006133c4602a83613a59565b91506133cf826140d7565b604082019050919050565b60006133e7602983613a59565b91506133f282614126565b604082019050919050565b600061340a603783613a59565b915061341582614175565b604082019050919050565b600061342d602083613a59565b9150613438826141c4565b602082019050919050565b6000613450602c83613a59565b915061345b826141ed565b604082019050919050565b6000613473602083613a59565b915061347e8261423c565b602082019050919050565b6000613496602983613a59565b91506134a182614265565b604082019050919050565b60006134b9602f83613a59565b91506134c4826142b4565b604082019050919050565b60006134dc602183613a59565b91506134e782614303565b604082019050919050565b60006134ff603183613a59565b915061350a82614352565b604082019050919050565b6000613522602683613a59565b915061352d826143a1565b604082019050919050565b6000613545604783613a59565b9150613550826143f0565b606082019050919050565b61356481613bf4565b82525050565b600061357682856131cb565b915061358282846131cb565b91508190509392505050565b60006020820190506135a360008301846130dd565b92915050565b60006080820190506135be60008301876130dd565b6135cb60208301866130dd565b6135d8604083018561355b565b81810360608301526135ea8184613159565b905095945050505050565b6000602082019050818103600083015261360f81846130ec565b905092915050565b600060208201905061362c600083018461314a565b92915050565b6000602082019050818103600083015261364c8184613192565b905092915050565b6000602082019050818103600083015261366e81846131fc565b905092915050565b6000602082019050818103600083015261368f8161327c565b9050919050565b600060208201905081810360008301526136af8161329f565b9050919050565b600060208201905081810360008301526136cf816132c2565b9050919050565b600060208201905081810360008301526136ef816132e5565b9050919050565b6000602082019050818103600083015261370f81613308565b9050919050565b6000602082019050818103600083015261372f8161332b565b9050919050565b6000602082019050818103600083015261374f8161334e565b9050919050565b6000602082019050818103600083015261376f81613371565b9050919050565b6000602082019050818103600083015261378f81613394565b9050919050565b600060208201905081810360008301526137af816133b7565b9050919050565b600060208201905081810360008301526137cf816133da565b9050919050565b600060208201905081810360008301526137ef816133fd565b9050919050565b6000602082019050818103600083015261380f81613420565b9050919050565b6000602082019050818103600083015261382f81613443565b9050919050565b6000602082019050818103600083015261384f81613466565b9050919050565b6000602082019050818103600083015261386f81613489565b9050919050565b6000602082019050818103600083015261388f816134ac565b9050919050565b600060208201905081810360008301526138af816134cf565b9050919050565b600060208201905081810360008301526138cf816134f2565b9050919050565b600060208201905081810360008301526138ef81613515565b9050919050565b6000602082019050818103600083015261390f81613538565b9050919050565b600060208201905061392b600083018461355b565b92915050565b600061393b61394c565b90506139478282613c9c565b919050565b6000604051905090565b600067ffffffffffffffff82111561397157613970613e03565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561399d5761399c613e03565b5b6139a682613e4b565b9050602081019050919050565b600067ffffffffffffffff8211156139ce576139cd613e03565b5b6139d782613e4b565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a8082613bf4565b9150613a8b83613bf4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ac057613abf613d47565b5b828201905092915050565b6000613ad682613bf4565b9150613ae183613bf4565b925082613af157613af0613d76565b5b828204905092915050565b6000613b0782613bf4565b9150613b1283613bf4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b4b57613b4a613d47565b5b828202905092915050565b6000613b6182613bf4565b9150613b6c83613bf4565b925082821015613b7f57613b7e613d47565b5b828203905092915050565b6000613b9582613bd4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c2b578082015181840152602081019050613c10565b83811115613c3a576000848401525b50505050565b6000613c4b82613bf4565b91506000821415613c5f57613c5e613d47565b5b600182039050919050565b60006002820490506001821680613c8257607f821691505b60208210811415613c9657613c95613da5565b5b50919050565b613ca582613e4b565b810181811067ffffffffffffffff82111715613cc457613cc3613e03565b5b80604052505050565b6000613cd882613bf4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d0b57613d0a613d47565b5b600182019050919050565b6000613d2182613bf4565b9150613d2c83613bf4565b925082613d3c57613d3b613d76565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f566f78656c2056696c6c653a20596f75277265206e6f74206f6e20746865206c60008201527f69737420666f72207468652070726573616c652e000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f566f78656c2056696c6c653a204d696e7420616d6f756e74206578636565647360008201527f206d6178206c696d6974207065722074782e0000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f566f78656c2056696c6c653a20546865726520617265206e6f206d6f7265207260008201527f656d61696e696e67204e4654277320746f206d696e742e000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f566f78656c2056696c6c653a204e46542063616e6e6f74206265206d696e746560008201527f64207965742e0000000000000000000000000000000000000000000000000000602082015250565b7f566f78656c2056696c6c653a20546865726520776173206e6f7420656e6f756760008201527f682f657874726120455448207472616e7366657272656420746f206d696e742060208201527f616e204e46542e00000000000000000000000000000000000000000000000000604082015250565b61446e81613b8a565b811461447957600080fd5b50565b61448581613b9c565b811461449057600080fd5b50565b61449c81613ba8565b81146144a757600080fd5b50565b6144b381613bf4565b81146144be57600080fd5b5056fea2646970667358221220fc6f50072052f303851d328090a9b95e16a68197b5faa19720d8dbfbbdce682164736f6c63430008060033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.