ETH Price: $3,392.80 (-1.26%)
Gas: 2 Gwei

Token

Baby Ghosts (BabyGhosts)
 

Overview

Max Total Supply

10,000 BabyGhosts

Holders

4,000

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 BabyGhosts
0x0a7ca3407365464e137ff9a5c4fa90f329163fca
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

[Public Sale is Live - Click here to Mint](https://babyghosts.com/?utm_source=opensea&utm_medium=description&utm_campaign=opensea) --- #Welcome to the official OpenSea page of the Baby Ghosts NFTs Collection! **Baby Ghosts** is a collection of 10,000 unique NFTs on the Et...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BabyGhosts

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : BabyGhosts.sol
// SPDX-License-Identifier: MIT
// Author: https://twitter.com/0xLokii
// ERC-721 Smart Contract for the Baby Ghosts NFT Collection - https://babyghosts.com
pragma solidity ^0.8.9;

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

contract BabyGhosts is ERC721, ERC721Enumerable, Pausable, Ownable {
    using Strings for uint256;

    string public baseTokenURI;
    string public contractURI;
    uint256 public constant MAX_TOKENS = 10000; // 10 000 Baby Ghosts
    uint256 public maxMint = 20; // Max 20 Baby Ghosts per transaction
    uint256 public price = 0.05 ether; // Each Baby Ghost cost 0.05 ETH to mint
    uint256 public preMintPrice = 0.04 ether; // Lower price for pre-sale
    bool public mainSale = false; // Main Sale is disabled by default
    mapping(address => bool) public presaleAccessList; // Whitelist for pre-sale

    constructor(string memory _baseTokenURI, string memory _contractURI) ERC721("Baby Ghosts", "BabyGhosts") {
        setBaseURI(_baseTokenURI);
        setContractURI(_contractURI);

        // The first 100 Baby Ghosts are minted for the team, giveaways and our community
        mint(msg.sender, 100);

        // Transactions are paused after deploy
        pause();
    }

    function preMint(address _to, uint256 _quantity) public payable {
        uint256 supply = totalSupply();

        require(hasPresaleAccess(_to), "You are not whitelisted for the Baby Ghosts pre-sale");
        require(!mainSale, "You can't pre-mint Baby Ghosts at the moment");
        require(_quantity > 0 && _quantity <= maxMint, "You can only mint 1 to 20 Baby Ghosts");
        require(msg.value >= preMintPrice * _quantity, "Ether sent is not correct");
        require(supply + _quantity <= MAX_TOKENS, "Exceeds maximum supply");

        for (uint256 i = 1; i <= _quantity; i++) {
          _safeMint(_to, supply + i);
        }
    }

    function mint(address _to, uint256 _quantity) public payable {
        uint256 supply = totalSupply();

        if (msg.sender != owner()) {
            require(mainSale, "The Baby Ghosts main sale is not open");
            require(_quantity > 0 && _quantity <= maxMint, "You can only mint 1 to 20 Baby Ghosts");
            require(msg.value >= price * _quantity, "Ether sent is not correct");
        }

        require(supply + _quantity <= MAX_TOKENS, "Exceeds maximum supply");

        for (uint256 i = 1; i <= _quantity; i++) {
          _safeMint(_to, supply + i);
        }
    }

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

        uint256[] memory tokensId = new uint256[](tokenCount);

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

        return tokensId;
    }

    function setPresaleAccessList(address[] memory _addressList) public onlyOwner {
        for (uint256 i; i < _addressList.length; i++) {
            presaleAccessList[_addressList[i]] = true;
        }
    }

    function hasPresaleAccess(address wallet) public view returns (bool) {
        return presaleAccessList[wallet];
    }

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

    function setContractURI(string memory _contractURI) public onlyOwner {
        contractURI = _contractURI;
    }

    function setPrice(uint256 _price) public onlyOwner() {
        price = _price;
    }

    function setPreMintPrice(uint256 _price) public onlyOwner() {
        preMintPrice = _price;
    }

    function setMaxMint(uint256 _maxMint) public onlyOwner() {
        maxMint = _maxMint;
    }

    function updateMainSaleStatus(bool _mainSale) public onlyOwner {
        mainSale = _mainSale;
    }

    function pause() public onlyOwner {
        _pause();
    }

    function start() public onlyOwner {
        _unpause();
    }

    function withdraw(uint256 _amount) public payable onlyOwner {
        require(payable(msg.sender).send(_amount));
    }

    function withdrawAll() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

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

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

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

File 2 of 14 : 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 14 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 14 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 6 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 8 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 14 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 14 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 11 of 14 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"},{"internalType":"string","name":"_contractURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"wallet","type":"address"}],"name":"hasPresaleAccess","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"preMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleAccessList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPreMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addressList","type":"address[]"}],"name":"setPresaleAccessList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_mainSale","type":"bool"}],"name":"updateMainSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526014600d5566b1a2bc2ec50000600e55668e1bc9bf040000600f556000601060006101000a81548160ff0219169083151502179055503480156200004757600080fd5b5060405162006d2d38038062006d2d83398181016040528101906200006d9190620013f8565b6040518060400160405280600b81526020017f426162792047686f7374730000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f4261627947686f737473000000000000000000000000000000000000000000008152508160009080519060200190620000f1929190620011ab565b5080600190805190602001906200010a929190620011ab565b5050506000600a60006101000a81548160ff021916908315150217905550620001486200013c6200019560201b60201c565b6200019d60201b60201c565b62000159826200026360201b60201c565b6200016a816200030e60201b60201c565b6200017d336064620003b960201b60201c565b6200018d620005ac60201b60201c565b505062001d90565b600033905090565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002736200019560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002996200064d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002f2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002e990620014de565b60405180910390fd5b80600b90805190602001906200030a929190620011ab565b5050565b6200031e6200019560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003446200064d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200039d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200039490620014de565b60405180910390fd5b80600c9080519060200190620003b5929190620011ab565b5050565b6000620003cb6200067760201b60201c565b9050620003dd6200064d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146200050d57601060009054906101000a900460ff1662000462576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004599062001576565b60405180910390fd5b600082118015620004755750600d548211155b620004b7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ae906200160e565b60405180910390fd5b81600e54620004c7919062001669565b3410156200050c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000503906200171a565b60405180910390fd5b5b61271082826200051e91906200173c565b111562000562576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200055990620017e9565b60405180910390fd5b6000600190505b828111620005a657620005908482846200058491906200173c565b6200068460201b60201c565b80806200059d906200180b565b91505062000569565b50505050565b620005bc6200019560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005e26200064d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200063b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200063290620014de565b60405180910390fd5b6200064b620006aa60201b60201c565b565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600880549050905090565b620006a68282604051806020016040528060008152506200076260201b60201c565b5050565b620006ba620007d060201b60201c565b15620006fd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006f490620018a9565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620007496200019560201b60201c565b60405162000758919062001910565b60405180910390a1565b620007748383620007e760201b60201c565b620007896000848484620009cd60201b60201c565b620007cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007c290620019a3565b60405180910390fd5b505050565b6000600a60009054906101000a900460ff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200085a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008519062001a15565b60405180910390fd5b6200086b8162000b8760201b60201c565b15620008ae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008a59062001a87565b60405180910390fd5b620008c26000838362000bf360201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200091491906200173c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620009fb8473ffffffffffffffffffffffffffffffffffffffff1662000c6360201b620021671760201c565b1562000b7a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000a2d6200019560201b60201c565b8786866040518563ffffffff1660e01b815260040162000a51949392919062001b17565b602060405180830381600087803b15801562000a6c57600080fd5b505af192505050801562000aa057506040513d601f19601f8201168201806040525081019062000a9d919062001bc8565b60015b62000b29573d806000811462000ad3576040519150601f19603f3d011682016040523d82523d6000602084013e62000ad8565b606091505b5060008151141562000b21576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b1890620019a3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000b7f565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b62000c03620007d060201b60201c565b1562000c46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c3d90620018a9565b60405180910390fd5b62000c5e83838362000c7660201b6200217a1760201c565b505050565b600080823b905060008111915050919050565b62000c8e83838362000dbd60201b6200228e1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000cdb5762000cd58162000dc260201b60201c565b62000d23565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000d225762000d21838262000e0b60201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000d705762000d6a8162000f8860201b60201c565b62000db8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000db75762000db682826200106460201b60201c565b5b5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000e2584620010f060201b6200161e1760201c565b62000e31919062001bfa565b905060006007600084815260200190815260200160002054905081811462000f17576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000f9e919062001bfa565b905060006009600084815260200190815260200160002054905060006008838154811062000fd15762000fd062001c35565b5b90600052602060002001549050806008838154811062000ff65762000ff562001c35565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062001048576200104762001c64565b5b6001900381819060005260206000200160009055905550505050565b60006200107c83620010f060201b6200161e1760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562001164576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200115b9062001d09565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b828054620011b99062001d5a565b90600052602060002090601f016020900481019282620011dd576000855562001229565b82601f10620011f857805160ff191683800117855562001229565b8280016001018555821562001229579182015b82811115620012285782518255916020019190600101906200120b565b5b5090506200123891906200123c565b5090565b5b80821115620012575760008160009055506001016200123d565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620012c48262001279565b810181811067ffffffffffffffff82111715620012e657620012e56200128a565b5b80604052505050565b6000620012fb6200125b565b9050620013098282620012b9565b919050565b600067ffffffffffffffff8211156200132c576200132b6200128a565b5b620013378262001279565b9050602081019050919050565b60005b838110156200136457808201518184015260208101905062001347565b8381111562001374576000848401525b50505050565b6000620013916200138b846200130e565b620012ef565b905082815260208101848484011115620013b057620013af62001274565b5b620013bd84828562001344565b509392505050565b600082601f830112620013dd57620013dc6200126f565b5b8151620013ef8482602086016200137a565b91505092915050565b6000806040838503121562001412576200141162001265565b5b600083015167ffffffffffffffff8111156200143357620014326200126a565b5b6200144185828601620013c5565b925050602083015167ffffffffffffffff8111156200146557620014646200126a565b5b6200147385828601620013c5565b9150509250929050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620014c66020836200147d565b9150620014d3826200148e565b602082019050919050565b60006020820190508181036000830152620014f981620014b7565b9050919050565b7f54686520426162792047686f737473206d61696e2073616c65206973206e6f7460008201527f206f70656e000000000000000000000000000000000000000000000000000000602082015250565b60006200155e6025836200147d565b91506200156b8262001500565b604082019050919050565b6000602082019050818103600083015262001591816200154f565b9050919050565b7f596f752063616e206f6e6c79206d696e74203120746f2032302042616279204760008201527f686f737473000000000000000000000000000000000000000000000000000000602082015250565b6000620015f66025836200147d565b9150620016038262001598565b604082019050919050565b600060208201905081810360008301526200162981620015e7565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620016768262001630565b9150620016838362001630565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620016bf57620016be6200163a565b5b828202905092915050565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b6000620017026019836200147d565b91506200170f82620016ca565b602082019050919050565b600060208201905081810360008301526200173581620016f3565b9050919050565b6000620017498262001630565b9150620017568362001630565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200178e576200178d6200163a565b5b828201905092915050565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b6000620017d16016836200147d565b9150620017de8262001799565b602082019050919050565b600060208201905081810360008301526200180481620017c2565b9050919050565b6000620018188262001630565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200184e576200184d6200163a565b5b600182019050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000620018916010836200147d565b91506200189e8262001859565b602082019050919050565b60006020820190508181036000830152620018c48162001882565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620018f882620018cb565b9050919050565b6200190a81620018eb565b82525050565b6000602082019050620019276000830184620018ff565b92915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006200198b6032836200147d565b915062001998826200192d565b604082019050919050565b60006020820190508181036000830152620019be816200197c565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000620019fd6020836200147d565b915062001a0a82620019c5565b602082019050919050565b6000602082019050818103600083015262001a3081620019ee565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600062001a6f601c836200147d565b915062001a7c8262001a37565b602082019050919050565b6000602082019050818103600083015262001aa28162001a60565b9050919050565b62001ab48162001630565b82525050565b600081519050919050565b600082825260208201905092915050565b600062001ae38262001aba565b62001aef818562001ac5565b935062001b0181856020860162001344565b62001b0c8162001279565b840191505092915050565b600060808201905062001b2e6000830187620018ff565b62001b3d6020830186620018ff565b62001b4c604083018562001aa9565b818103606083015262001b60818462001ad6565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62001ba28162001b6b565b811462001bae57600080fd5b50565b60008151905062001bc28162001b97565b92915050565b60006020828403121562001be15762001be062001265565b5b600062001bf18482850162001bb1565b91505092915050565b600062001c078262001630565b915062001c148362001630565b92508282101562001c2a5762001c296200163a565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600062001cf1602a836200147d565b915062001cfe8262001c93565b604082019050919050565b6000602082019050818103600083015262001d248162001ce2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062001d7357607f821691505b6020821081141562001d8a5762001d8962001d2b565b5b50919050565b614f8d8062001da06000396000f3fe60806040526004361061025c5760003560e01c806370a0823111610144578063a22cb465116100b6578063d547cfb71161007a578063d547cfb7146108ac578063da6405e1146108d7578063e8a3d48514610900578063e985e9c51461092b578063f2fde38b14610968578063f47c84c5146109915761025c565b8063a22cb465146107dd578063b88d4fde14610806578063be9a65551461082f578063c1d7ae3114610846578063c87b56dd1461086f5761025c565b80638da5cb5b116101085780638da5cb5b146106df57806391b7f5ed1461070a578063938e3d7b1461073357806395d89b411461075c578063a035b1fe14610787578063a187c89b146107b25761025c565b806370a082311461063f578063715018a61461067c5780637501f741146106935780638456cb59146106be578063853828b6146106d55761025c565b80632f994122116101dd5780634f6ccce7116101a15780634f6ccce71461051d578063547520fe1461055a57806355f804b3146105835780635c975abb146105ac57806360cfd359146105d75780636352211e146106025761025c565b80632f9941221461043557806334131cd31461047257806340c10f191461049b57806342842e0e146104b7578063438b6300146104e05761025c565b806318160ddd1161022457806318160ddd1461036c57806323b872dd14610397578063290c292d146103c05780632e1a7d4d146103dc5780632f745c59146103f85761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b3146103065780630f2091861461032f575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613565565b6109bc565b60405161029591906135ad565b60405180910390f35b3480156102aa57600080fd5b506102b36109ce565b6040516102c09190613661565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb91906136b9565b610a60565b6040516102fd9190613727565b60405180910390f35b34801561031257600080fd5b5061032d6004803603810190610328919061376e565b610ae5565b005b34801561033b57600080fd5b50610356600480360381019061035191906137ae565b610bfd565b60405161036391906135ad565b60405180910390f35b34801561037857600080fd5b50610381610c53565b60405161038e91906137ea565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b99190613805565b610c60565b005b6103da60048036038101906103d5919061376e565b610cc0565b005b6103f660048036038101906103f191906136b9565b610e91565b005b34801561040457600080fd5b5061041f600480360381019061041a919061376e565b610f4e565b60405161042c91906137ea565b60405180910390f35b34801561044157600080fd5b5061045c600480360381019061045791906137ae565b610ff3565b60405161046991906135ad565b60405180910390f35b34801561047e57600080fd5b50610499600480360381019061049491906139a0565b611013565b005b6104b560048036038101906104b0919061376e565b611124565b005b3480156104c357600080fd5b506104de60048036038101906104d99190613805565b6112e7565b005b3480156104ec57600080fd5b50610507600480360381019061050291906137ae565b611307565b6040516105149190613aa7565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f91906136b9565b6113b5565b60405161055191906137ea565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c91906136b9565b611426565b005b34801561058f57600080fd5b506105aa60048036038101906105a59190613b7e565b6114ac565b005b3480156105b857600080fd5b506105c1611542565b6040516105ce91906135ad565b60405180910390f35b3480156105e357600080fd5b506105ec611559565b6040516105f991906135ad565b60405180910390f35b34801561060e57600080fd5b50610629600480360381019061062491906136b9565b61156c565b6040516106369190613727565b60405180910390f35b34801561064b57600080fd5b50610666600480360381019061066191906137ae565b61161e565b60405161067391906137ea565b60405180910390f35b34801561068857600080fd5b506106916116d6565b005b34801561069f57600080fd5b506106a861175e565b6040516106b591906137ea565b60405180910390f35b3480156106ca57600080fd5b506106d3611764565b005b6106dd6117ea565b005b3480156106eb57600080fd5b506106f46118a6565b6040516107019190613727565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c91906136b9565b6118d0565b005b34801561073f57600080fd5b5061075a60048036038101906107559190613b7e565b611956565b005b34801561076857600080fd5b506107716119ec565b60405161077e9190613661565b60405180910390f35b34801561079357600080fd5b5061079c611a7e565b6040516107a991906137ea565b60405180910390f35b3480156107be57600080fd5b506107c7611a84565b6040516107d491906137ea565b60405180910390f35b3480156107e957600080fd5b5061080460048036038101906107ff9190613bf3565b611a8a565b005b34801561081257600080fd5b5061082d60048036038101906108289190613cd4565b611c0b565b005b34801561083b57600080fd5b50610844611c6d565b005b34801561085257600080fd5b5061086d60048036038101906108689190613d57565b611cf3565b005b34801561087b57600080fd5b50610896600480360381019061089191906136b9565b611d8c565b6040516108a39190613661565b60405180910390f35b3480156108b857600080fd5b506108c1611e33565b6040516108ce9190613661565b60405180910390f35b3480156108e357600080fd5b506108fe60048036038101906108f991906136b9565b611ec1565b005b34801561090c57600080fd5b50610915611f47565b6040516109229190613661565b60405180910390f35b34801561093757600080fd5b50610952600480360381019061094d9190613d84565b611fd5565b60405161095f91906135ad565b60405180910390f35b34801561097457600080fd5b5061098f600480360381019061098a91906137ae565b612069565b005b34801561099d57600080fd5b506109a6612161565b6040516109b391906137ea565b60405180910390f35b60006109c782612293565b9050919050565b6060600080546109dd90613df3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0990613df3565b8015610a565780601f10610a2b57610100808354040283529160200191610a56565b820191906000526020600020905b815481529060010190602001808311610a3957829003601f168201915b5050505050905090565b6000610a6b8261230d565b610aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa190613e97565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af08261156c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5890613f29565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b80612379565b73ffffffffffffffffffffffffffffffffffffffff161480610baf5750610bae81610ba9612379565b611fd5565b5b610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be590613fbb565b60405180910390fd5b610bf88383612381565b505050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600880549050905090565b610c71610c6b612379565b8261243a565b610cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca79061404d565b60405180910390fd5b610cbb838383612518565b505050565b6000610cca610c53565b9050610cd583610bfd565b610d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0b906140df565b60405180910390fd5b601060009054906101000a900460ff1615610d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5b90614171565b60405180910390fd5b600082118015610d765750600d548211155b610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac90614203565b60405180910390fd5b81600f54610dc39190614252565b341015610e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfc906142f8565b60405180910390fd5b6127108282610e149190614318565b1115610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c906143ba565b60405180910390fd5b6000600190505b828111610e8b57610e78848284610e739190614318565b612774565b8080610e83906143da565b915050610e5c565b50505050565b610e99612379565b73ffffffffffffffffffffffffffffffffffffffff16610eb76118a6565b73ffffffffffffffffffffffffffffffffffffffff1614610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f049061446f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610f4b57600080fd5b50565b6000610f598361161e565b8210610f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9190614501565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60116020528060005260406000206000915054906101000a900460ff1681565b61101b612379565b73ffffffffffffffffffffffffffffffffffffffff166110396118a6565b73ffffffffffffffffffffffffffffffffffffffff161461108f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110869061446f565b60405180910390fd5b60005b8151811015611120576001601160008484815181106110b4576110b3614521565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611118906143da565b915050611092565b5050565b600061112e610c53565b90506111386118a6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461125b57601060009054906101000a900460ff166111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b0906145c2565b60405180910390fd5b6000821180156111cb5750600d548211155b61120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190614203565b60405180910390fd5b81600e546112189190614252565b34101561125a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611251906142f8565b60405180910390fd5b5b612710828261126a9190614318565b11156112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a2906143ba565b60405180910390fd5b6000600190505b8281116112e1576112ce8482846112c99190614318565b612774565b80806112d9906143da565b9150506112b2565b50505050565b61130283838360405180602001604052806000815250611c0b565b505050565b606060006113148361161e565b905060008167ffffffffffffffff8111156113325761133161385d565b5b6040519080825280602002602001820160405280156113605781602001602082028036833780820191505090505b50905060005b828110156113aa576113788582610f4e565b82828151811061138b5761138a614521565b5b60200260200101818152505080806113a2906143da565b915050611366565b508092505050919050565b60006113bf610c53565b8210611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f790614654565b60405180910390fd5b6008828154811061141457611413614521565b5b90600052602060002001549050919050565b61142e612379565b73ffffffffffffffffffffffffffffffffffffffff1661144c6118a6565b73ffffffffffffffffffffffffffffffffffffffff16146114a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114999061446f565b60405180910390fd5b80600d8190555050565b6114b4612379565b73ffffffffffffffffffffffffffffffffffffffff166114d26118a6565b73ffffffffffffffffffffffffffffffffffffffff1614611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f9061446f565b60405180910390fd5b80600b908051906020019061153e929190613456565b5050565b6000600a60009054906101000a900460ff16905090565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160c906146e6565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561168f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168690614778565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116de612379565b73ffffffffffffffffffffffffffffffffffffffff166116fc6118a6565b73ffffffffffffffffffffffffffffffffffffffff1614611752576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117499061446f565b60405180910390fd5b61175c6000612792565b565b600d5481565b61176c612379565b73ffffffffffffffffffffffffffffffffffffffff1661178a6118a6565b73ffffffffffffffffffffffffffffffffffffffff16146117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d79061446f565b60405180910390fd5b6117e8612858565b565b6117f2612379565b73ffffffffffffffffffffffffffffffffffffffff166118106118a6565b73ffffffffffffffffffffffffffffffffffffffff1614611866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185d9061446f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506118a457600080fd5b565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118d8612379565b73ffffffffffffffffffffffffffffffffffffffff166118f66118a6565b73ffffffffffffffffffffffffffffffffffffffff161461194c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119439061446f565b60405180910390fd5b80600e8190555050565b61195e612379565b73ffffffffffffffffffffffffffffffffffffffff1661197c6118a6565b73ffffffffffffffffffffffffffffffffffffffff16146119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c99061446f565b60405180910390fd5b80600c90805190602001906119e8929190613456565b5050565b6060600180546119fb90613df3565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2790613df3565b8015611a745780601f10611a4957610100808354040283529160200191611a74565b820191906000526020600020905b815481529060010190602001808311611a5757829003601f168201915b5050505050905090565b600e5481565b600f5481565b611a92612379565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af7906147e4565b60405180910390fd5b8060056000611b0d612379565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bba612379565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bff91906135ad565b60405180910390a35050565b611c1c611c16612379565b8361243a565b611c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c529061404d565b60405180910390fd5b611c67848484846128fb565b50505050565b611c75612379565b73ffffffffffffffffffffffffffffffffffffffff16611c936118a6565b73ffffffffffffffffffffffffffffffffffffffff1614611ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce09061446f565b60405180910390fd5b611cf1612957565b565b611cfb612379565b73ffffffffffffffffffffffffffffffffffffffff16611d196118a6565b73ffffffffffffffffffffffffffffffffffffffff1614611d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d669061446f565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6060611d978261230d565b611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd90614876565b60405180910390fd5b6000611de06129f9565b90506000815111611e005760405180602001604052806000815250611e2b565b80611e0a84612a8b565b604051602001611e1b9291906148d2565b6040516020818303038152906040525b915050919050565b600b8054611e4090613df3565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6c90613df3565b8015611eb95780601f10611e8e57610100808354040283529160200191611eb9565b820191906000526020600020905b815481529060010190602001808311611e9c57829003601f168201915b505050505081565b611ec9612379565b73ffffffffffffffffffffffffffffffffffffffff16611ee76118a6565b73ffffffffffffffffffffffffffffffffffffffff1614611f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f349061446f565b60405180910390fd5b80600f8190555050565b600c8054611f5490613df3565b80601f0160208091040260200160405190810160405280929190818152602001828054611f8090613df3565b8015611fcd5780601f10611fa257610100808354040283529160200191611fcd565b820191906000526020600020905b815481529060010190602001808311611fb057829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612071612379565b73ffffffffffffffffffffffffffffffffffffffff1661208f6118a6565b73ffffffffffffffffffffffffffffffffffffffff16146120e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dc9061446f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214c90614968565b60405180910390fd5b61215e81612792565b50565b61271081565b600080823b905060008111915050919050565b61218583838361228e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121c8576121c381612bec565b612207565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612206576122058382612c35565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561224a5761224581612da2565b612289565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612288576122878282612e73565b5b5b505050565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612306575061230582612ef2565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123f48361156c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006124458261230d565b612484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247b906149fa565b60405180910390fd5b600061248f8361156c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124fe57508373ffffffffffffffffffffffffffffffffffffffff166124e684610a60565b73ffffffffffffffffffffffffffffffffffffffff16145b8061250f575061250e8185611fd5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166125388261156c565b73ffffffffffffffffffffffffffffffffffffffff161461258e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258590614a8c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f590614b1e565b60405180910390fd5b612609838383612fd4565b612614600082612381565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126649190614b3e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126bb9190614318565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61278e82826040518060200160405280600081525061302c565b5050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612860611542565b156128a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289790614bbe565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586128e4612379565b6040516128f19190613727565b60405180910390a1565b612906848484612518565b61291284848484613087565b612951576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294890614c50565b60405180910390fd5b50505050565b61295f611542565b61299e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299590614cbc565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6129e2612379565b6040516129ef9190613727565b60405180910390a1565b6060600b8054612a0890613df3565b80601f0160208091040260200160405190810160405280929190818152602001828054612a3490613df3565b8015612a815780601f10612a5657610100808354040283529160200191612a81565b820191906000526020600020905b815481529060010190602001808311612a6457829003601f168201915b5050505050905090565b60606000821415612ad3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612be7565b600082905060005b60008214612b05578080612aee906143da565b915050600a82612afe9190614d0b565b9150612adb565b60008167ffffffffffffffff811115612b2157612b2061385d565b5b6040519080825280601f01601f191660200182016040528015612b535781602001600182028036833780820191505090505b5090505b60008514612be057600182612b6c9190614b3e565b9150600a85612b7b9190614d3c565b6030612b879190614318565b60f81b818381518110612b9d57612b9c614521565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bd99190614d0b565b9450612b57565b8093505050505b919050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612c428461161e565b612c4c9190614b3e565b9050600060076000848152602001908152602001600020549050818114612d31576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612db69190614b3e565b9050600060096000848152602001908152602001600020549050600060088381548110612de657612de5614521565b5b906000526020600020015490508060088381548110612e0857612e07614521565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612e5757612e56614d6d565b5b6001900381819060005260206000200160009055905550505050565b6000612e7e8361161e565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612fbd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612fcd5750612fcc8261321e565b5b9050919050565b612fdc611542565b1561301c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301390614bbe565b60405180910390fd5b61302783838361217a565b505050565b6130368383613288565b6130436000848484613087565b613082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307990614c50565b60405180910390fd5b505050565b60006130a88473ffffffffffffffffffffffffffffffffffffffff16612167565b15613211578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130d1612379565b8786866040518563ffffffff1660e01b81526004016130f39493929190614df1565b602060405180830381600087803b15801561310d57600080fd5b505af192505050801561313e57506040513d601f19601f8201168201806040525081019061313b9190614e52565b60015b6131c1573d806000811461316e576040519150601f19603f3d011682016040523d82523d6000602084013e613173565b606091505b506000815114156131b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b090614c50565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613216565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ef90614ecb565b60405180910390fd5b6133018161230d565b15613341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161333890614f37565b60405180910390fd5b61334d60008383612fd4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461339d9190614318565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461346290613df3565b90600052602060002090601f01602090048101928261348457600085556134cb565b82601f1061349d57805160ff19168380011785556134cb565b828001600101855582156134cb579182015b828111156134ca5782518255916020019190600101906134af565b5b5090506134d891906134dc565b5090565b5b808211156134f55760008160009055506001016134dd565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6135428161350d565b811461354d57600080fd5b50565b60008135905061355f81613539565b92915050565b60006020828403121561357b5761357a613503565b5b600061358984828501613550565b91505092915050565b60008115159050919050565b6135a781613592565b82525050565b60006020820190506135c2600083018461359e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156136025780820151818401526020810190506135e7565b83811115613611576000848401525b50505050565b6000601f19601f8301169050919050565b6000613633826135c8565b61363d81856135d3565b935061364d8185602086016135e4565b61365681613617565b840191505092915050565b6000602082019050818103600083015261367b8184613628565b905092915050565b6000819050919050565b61369681613683565b81146136a157600080fd5b50565b6000813590506136b38161368d565b92915050565b6000602082840312156136cf576136ce613503565b5b60006136dd848285016136a4565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613711826136e6565b9050919050565b61372181613706565b82525050565b600060208201905061373c6000830184613718565b92915050565b61374b81613706565b811461375657600080fd5b50565b60008135905061376881613742565b92915050565b6000806040838503121561378557613784613503565b5b600061379385828601613759565b92505060206137a4858286016136a4565b9150509250929050565b6000602082840312156137c4576137c3613503565b5b60006137d284828501613759565b91505092915050565b6137e481613683565b82525050565b60006020820190506137ff60008301846137db565b92915050565b60008060006060848603121561381e5761381d613503565b5b600061382c86828701613759565b935050602061383d86828701613759565b925050604061384e868287016136a4565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61389582613617565b810181811067ffffffffffffffff821117156138b4576138b361385d565b5b80604052505050565b60006138c76134f9565b90506138d3828261388c565b919050565b600067ffffffffffffffff8211156138f3576138f261385d565b5b602082029050602081019050919050565b600080fd5b600061391c613917846138d8565b6138bd565b9050808382526020820190506020840283018581111561393f5761393e613904565b5b835b8181101561396857806139548882613759565b845260208401935050602081019050613941565b5050509392505050565b600082601f83011261398757613986613858565b5b8135613997848260208601613909565b91505092915050565b6000602082840312156139b6576139b5613503565b5b600082013567ffffffffffffffff8111156139d4576139d3613508565b5b6139e084828501613972565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613a1e81613683565b82525050565b6000613a308383613a15565b60208301905092915050565b6000602082019050919050565b6000613a54826139e9565b613a5e81856139f4565b9350613a6983613a05565b8060005b83811015613a9a578151613a818882613a24565b9750613a8c83613a3c565b925050600181019050613a6d565b5085935050505092915050565b60006020820190508181036000830152613ac18184613a49565b905092915050565b600080fd5b600067ffffffffffffffff821115613ae957613ae861385d565b5b613af282613617565b9050602081019050919050565b82818337600083830152505050565b6000613b21613b1c84613ace565b6138bd565b905082815260208101848484011115613b3d57613b3c613ac9565b5b613b48848285613aff565b509392505050565b600082601f830112613b6557613b64613858565b5b8135613b75848260208601613b0e565b91505092915050565b600060208284031215613b9457613b93613503565b5b600082013567ffffffffffffffff811115613bb257613bb1613508565b5b613bbe84828501613b50565b91505092915050565b613bd081613592565b8114613bdb57600080fd5b50565b600081359050613bed81613bc7565b92915050565b60008060408385031215613c0a57613c09613503565b5b6000613c1885828601613759565b9250506020613c2985828601613bde565b9150509250929050565b600067ffffffffffffffff821115613c4e57613c4d61385d565b5b613c5782613617565b9050602081019050919050565b6000613c77613c7284613c33565b6138bd565b905082815260208101848484011115613c9357613c92613ac9565b5b613c9e848285613aff565b509392505050565b600082601f830112613cbb57613cba613858565b5b8135613ccb848260208601613c64565b91505092915050565b60008060008060808587031215613cee57613ced613503565b5b6000613cfc87828801613759565b9450506020613d0d87828801613759565b9350506040613d1e878288016136a4565b925050606085013567ffffffffffffffff811115613d3f57613d3e613508565b5b613d4b87828801613ca6565b91505092959194509250565b600060208284031215613d6d57613d6c613503565b5b6000613d7b84828501613bde565b91505092915050565b60008060408385031215613d9b57613d9a613503565b5b6000613da985828601613759565b9250506020613dba85828601613759565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613e0b57607f821691505b60208210811415613e1f57613e1e613dc4565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613e81602c836135d3565b9150613e8c82613e25565b604082019050919050565b60006020820190508181036000830152613eb081613e74565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f136021836135d3565b9150613f1e82613eb7565b604082019050919050565b60006020820190508181036000830152613f4281613f06565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613fa56038836135d3565b9150613fb082613f49565b604082019050919050565b60006020820190508181036000830152613fd481613f98565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006140376031836135d3565b915061404282613fdb565b604082019050919050565b600060208201905081810360008301526140668161402a565b9050919050565b7f596f7520617265206e6f742077686974656c697374656420666f72207468652060008201527f426162792047686f737473207072652d73616c65000000000000000000000000602082015250565b60006140c96034836135d3565b91506140d48261406d565b604082019050919050565b600060208201905081810360008301526140f8816140bc565b9050919050565b7f596f752063616e2774207072652d6d696e7420426162792047686f737473206160008201527f7420746865206d6f6d656e740000000000000000000000000000000000000000602082015250565b600061415b602c836135d3565b9150614166826140ff565b604082019050919050565b6000602082019050818103600083015261418a8161414e565b9050919050565b7f596f752063616e206f6e6c79206d696e74203120746f2032302042616279204760008201527f686f737473000000000000000000000000000000000000000000000000000000602082015250565b60006141ed6025836135d3565b91506141f882614191565b604082019050919050565b6000602082019050818103600083015261421c816141e0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061425d82613683565b915061426883613683565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142a1576142a0614223565b5b828202905092915050565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b60006142e26019836135d3565b91506142ed826142ac565b602082019050919050565b60006020820190508181036000830152614311816142d5565b9050919050565b600061432382613683565b915061432e83613683565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561436357614362614223565b5b828201905092915050565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b60006143a46016836135d3565b91506143af8261436e565b602082019050919050565b600060208201905081810360008301526143d381614397565b9050919050565b60006143e582613683565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561441857614417614223565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006144596020836135d3565b915061446482614423565b602082019050919050565b600060208201905081810360008301526144888161444c565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006144eb602b836135d3565b91506144f68261448f565b604082019050919050565b6000602082019050818103600083015261451a816144de565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f54686520426162792047686f737473206d61696e2073616c65206973206e6f7460008201527f206f70656e000000000000000000000000000000000000000000000000000000602082015250565b60006145ac6025836135d3565b91506145b782614550565b604082019050919050565b600060208201905081810360008301526145db8161459f565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061463e602c836135d3565b9150614649826145e2565b604082019050919050565b6000602082019050818103600083015261466d81614631565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006146d06029836135d3565b91506146db82614674565b604082019050919050565b600060208201905081810360008301526146ff816146c3565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614762602a836135d3565b915061476d82614706565b604082019050919050565b6000602082019050818103600083015261479181614755565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006147ce6019836135d3565b91506147d982614798565b602082019050919050565b600060208201905081810360008301526147fd816147c1565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614860602f836135d3565b915061486b82614804565b604082019050919050565b6000602082019050818103600083015261488f81614853565b9050919050565b600081905092915050565b60006148ac826135c8565b6148b68185614896565b93506148c68185602086016135e4565b80840191505092915050565b60006148de82856148a1565b91506148ea82846148a1565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149526026836135d3565b915061495d826148f6565b604082019050919050565b6000602082019050818103600083015261498181614945565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006149e4602c836135d3565b91506149ef82614988565b604082019050919050565b60006020820190508181036000830152614a13816149d7565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614a766029836135d3565b9150614a8182614a1a565b604082019050919050565b60006020820190508181036000830152614aa581614a69565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b086024836135d3565b9150614b1382614aac565b604082019050919050565b60006020820190508181036000830152614b3781614afb565b9050919050565b6000614b4982613683565b9150614b5483613683565b925082821015614b6757614b66614223565b5b828203905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614ba86010836135d3565b9150614bb382614b72565b602082019050919050565b60006020820190508181036000830152614bd781614b9b565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614c3a6032836135d3565b9150614c4582614bde565b604082019050919050565b60006020820190508181036000830152614c6981614c2d565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000614ca66014836135d3565b9150614cb182614c70565b602082019050919050565b60006020820190508181036000830152614cd581614c99565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d1682613683565b9150614d2183613683565b925082614d3157614d30614cdc565b5b828204905092915050565b6000614d4782613683565b9150614d5283613683565b925082614d6257614d61614cdc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000614dc382614d9c565b614dcd8185614da7565b9350614ddd8185602086016135e4565b614de681613617565b840191505092915050565b6000608082019050614e066000830187613718565b614e136020830186613718565b614e2060408301856137db565b8181036060830152614e328184614db8565b905095945050505050565b600081519050614e4c81613539565b92915050565b600060208284031215614e6857614e67613503565b5b6000614e7684828501614e3d565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614eb56020836135d3565b9150614ec082614e7f565b602082019050919050565b60006020820190508181036000830152614ee481614ea8565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614f21601c836135d3565b9150614f2c82614eeb565b602082019050919050565b60006020820190508181036000830152614f5081614f14565b905091905056fea26469706673582212208a7c69ab362fca724243bf8e93ca9cb5a47b7aa26172bd3e584eb782b11f650964736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000002068747470733a2f2f6d657461646174612e6261627967686f7374732e636f6d2f000000000000000000000000000000000000000000000000000000000000002d68747470733a2f2f6d657461646174612e6261627967686f7374732e636f6d2f636f6e74726163742e6a736f6e00000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c806370a0823111610144578063a22cb465116100b6578063d547cfb71161007a578063d547cfb7146108ac578063da6405e1146108d7578063e8a3d48514610900578063e985e9c51461092b578063f2fde38b14610968578063f47c84c5146109915761025c565b8063a22cb465146107dd578063b88d4fde14610806578063be9a65551461082f578063c1d7ae3114610846578063c87b56dd1461086f5761025c565b80638da5cb5b116101085780638da5cb5b146106df57806391b7f5ed1461070a578063938e3d7b1461073357806395d89b411461075c578063a035b1fe14610787578063a187c89b146107b25761025c565b806370a082311461063f578063715018a61461067c5780637501f741146106935780638456cb59146106be578063853828b6146106d55761025c565b80632f994122116101dd5780634f6ccce7116101a15780634f6ccce71461051d578063547520fe1461055a57806355f804b3146105835780635c975abb146105ac57806360cfd359146105d75780636352211e146106025761025c565b80632f9941221461043557806334131cd31461047257806340c10f191461049b57806342842e0e146104b7578063438b6300146104e05761025c565b806318160ddd1161022457806318160ddd1461036c57806323b872dd14610397578063290c292d146103c05780632e1a7d4d146103dc5780632f745c59146103f85761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b3146103065780630f2091861461032f575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613565565b6109bc565b60405161029591906135ad565b60405180910390f35b3480156102aa57600080fd5b506102b36109ce565b6040516102c09190613661565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb91906136b9565b610a60565b6040516102fd9190613727565b60405180910390f35b34801561031257600080fd5b5061032d6004803603810190610328919061376e565b610ae5565b005b34801561033b57600080fd5b50610356600480360381019061035191906137ae565b610bfd565b60405161036391906135ad565b60405180910390f35b34801561037857600080fd5b50610381610c53565b60405161038e91906137ea565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b99190613805565b610c60565b005b6103da60048036038101906103d5919061376e565b610cc0565b005b6103f660048036038101906103f191906136b9565b610e91565b005b34801561040457600080fd5b5061041f600480360381019061041a919061376e565b610f4e565b60405161042c91906137ea565b60405180910390f35b34801561044157600080fd5b5061045c600480360381019061045791906137ae565b610ff3565b60405161046991906135ad565b60405180910390f35b34801561047e57600080fd5b50610499600480360381019061049491906139a0565b611013565b005b6104b560048036038101906104b0919061376e565b611124565b005b3480156104c357600080fd5b506104de60048036038101906104d99190613805565b6112e7565b005b3480156104ec57600080fd5b50610507600480360381019061050291906137ae565b611307565b6040516105149190613aa7565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f91906136b9565b6113b5565b60405161055191906137ea565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c91906136b9565b611426565b005b34801561058f57600080fd5b506105aa60048036038101906105a59190613b7e565b6114ac565b005b3480156105b857600080fd5b506105c1611542565b6040516105ce91906135ad565b60405180910390f35b3480156105e357600080fd5b506105ec611559565b6040516105f991906135ad565b60405180910390f35b34801561060e57600080fd5b50610629600480360381019061062491906136b9565b61156c565b6040516106369190613727565b60405180910390f35b34801561064b57600080fd5b50610666600480360381019061066191906137ae565b61161e565b60405161067391906137ea565b60405180910390f35b34801561068857600080fd5b506106916116d6565b005b34801561069f57600080fd5b506106a861175e565b6040516106b591906137ea565b60405180910390f35b3480156106ca57600080fd5b506106d3611764565b005b6106dd6117ea565b005b3480156106eb57600080fd5b506106f46118a6565b6040516107019190613727565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c91906136b9565b6118d0565b005b34801561073f57600080fd5b5061075a60048036038101906107559190613b7e565b611956565b005b34801561076857600080fd5b506107716119ec565b60405161077e9190613661565b60405180910390f35b34801561079357600080fd5b5061079c611a7e565b6040516107a991906137ea565b60405180910390f35b3480156107be57600080fd5b506107c7611a84565b6040516107d491906137ea565b60405180910390f35b3480156107e957600080fd5b5061080460048036038101906107ff9190613bf3565b611a8a565b005b34801561081257600080fd5b5061082d60048036038101906108289190613cd4565b611c0b565b005b34801561083b57600080fd5b50610844611c6d565b005b34801561085257600080fd5b5061086d60048036038101906108689190613d57565b611cf3565b005b34801561087b57600080fd5b50610896600480360381019061089191906136b9565b611d8c565b6040516108a39190613661565b60405180910390f35b3480156108b857600080fd5b506108c1611e33565b6040516108ce9190613661565b60405180910390f35b3480156108e357600080fd5b506108fe60048036038101906108f991906136b9565b611ec1565b005b34801561090c57600080fd5b50610915611f47565b6040516109229190613661565b60405180910390f35b34801561093757600080fd5b50610952600480360381019061094d9190613d84565b611fd5565b60405161095f91906135ad565b60405180910390f35b34801561097457600080fd5b5061098f600480360381019061098a91906137ae565b612069565b005b34801561099d57600080fd5b506109a6612161565b6040516109b391906137ea565b60405180910390f35b60006109c782612293565b9050919050565b6060600080546109dd90613df3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0990613df3565b8015610a565780601f10610a2b57610100808354040283529160200191610a56565b820191906000526020600020905b815481529060010190602001808311610a3957829003601f168201915b5050505050905090565b6000610a6b8261230d565b610aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa190613e97565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af08261156c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5890613f29565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b80612379565b73ffffffffffffffffffffffffffffffffffffffff161480610baf5750610bae81610ba9612379565b611fd5565b5b610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be590613fbb565b60405180910390fd5b610bf88383612381565b505050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600880549050905090565b610c71610c6b612379565b8261243a565b610cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca79061404d565b60405180910390fd5b610cbb838383612518565b505050565b6000610cca610c53565b9050610cd583610bfd565b610d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0b906140df565b60405180910390fd5b601060009054906101000a900460ff1615610d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5b90614171565b60405180910390fd5b600082118015610d765750600d548211155b610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac90614203565b60405180910390fd5b81600f54610dc39190614252565b341015610e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfc906142f8565b60405180910390fd5b6127108282610e149190614318565b1115610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c906143ba565b60405180910390fd5b6000600190505b828111610e8b57610e78848284610e739190614318565b612774565b8080610e83906143da565b915050610e5c565b50505050565b610e99612379565b73ffffffffffffffffffffffffffffffffffffffff16610eb76118a6565b73ffffffffffffffffffffffffffffffffffffffff1614610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f049061446f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610f4b57600080fd5b50565b6000610f598361161e565b8210610f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9190614501565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60116020528060005260406000206000915054906101000a900460ff1681565b61101b612379565b73ffffffffffffffffffffffffffffffffffffffff166110396118a6565b73ffffffffffffffffffffffffffffffffffffffff161461108f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110869061446f565b60405180910390fd5b60005b8151811015611120576001601160008484815181106110b4576110b3614521565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611118906143da565b915050611092565b5050565b600061112e610c53565b90506111386118a6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461125b57601060009054906101000a900460ff166111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b0906145c2565b60405180910390fd5b6000821180156111cb5750600d548211155b61120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190614203565b60405180910390fd5b81600e546112189190614252565b34101561125a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611251906142f8565b60405180910390fd5b5b612710828261126a9190614318565b11156112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a2906143ba565b60405180910390fd5b6000600190505b8281116112e1576112ce8482846112c99190614318565b612774565b80806112d9906143da565b9150506112b2565b50505050565b61130283838360405180602001604052806000815250611c0b565b505050565b606060006113148361161e565b905060008167ffffffffffffffff8111156113325761133161385d565b5b6040519080825280602002602001820160405280156113605781602001602082028036833780820191505090505b50905060005b828110156113aa576113788582610f4e565b82828151811061138b5761138a614521565b5b60200260200101818152505080806113a2906143da565b915050611366565b508092505050919050565b60006113bf610c53565b8210611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f790614654565b60405180910390fd5b6008828154811061141457611413614521565b5b90600052602060002001549050919050565b61142e612379565b73ffffffffffffffffffffffffffffffffffffffff1661144c6118a6565b73ffffffffffffffffffffffffffffffffffffffff16146114a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114999061446f565b60405180910390fd5b80600d8190555050565b6114b4612379565b73ffffffffffffffffffffffffffffffffffffffff166114d26118a6565b73ffffffffffffffffffffffffffffffffffffffff1614611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f9061446f565b60405180910390fd5b80600b908051906020019061153e929190613456565b5050565b6000600a60009054906101000a900460ff16905090565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160c906146e6565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561168f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168690614778565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116de612379565b73ffffffffffffffffffffffffffffffffffffffff166116fc6118a6565b73ffffffffffffffffffffffffffffffffffffffff1614611752576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117499061446f565b60405180910390fd5b61175c6000612792565b565b600d5481565b61176c612379565b73ffffffffffffffffffffffffffffffffffffffff1661178a6118a6565b73ffffffffffffffffffffffffffffffffffffffff16146117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d79061446f565b60405180910390fd5b6117e8612858565b565b6117f2612379565b73ffffffffffffffffffffffffffffffffffffffff166118106118a6565b73ffffffffffffffffffffffffffffffffffffffff1614611866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185d9061446f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506118a457600080fd5b565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118d8612379565b73ffffffffffffffffffffffffffffffffffffffff166118f66118a6565b73ffffffffffffffffffffffffffffffffffffffff161461194c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119439061446f565b60405180910390fd5b80600e8190555050565b61195e612379565b73ffffffffffffffffffffffffffffffffffffffff1661197c6118a6565b73ffffffffffffffffffffffffffffffffffffffff16146119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c99061446f565b60405180910390fd5b80600c90805190602001906119e8929190613456565b5050565b6060600180546119fb90613df3565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2790613df3565b8015611a745780601f10611a4957610100808354040283529160200191611a74565b820191906000526020600020905b815481529060010190602001808311611a5757829003601f168201915b5050505050905090565b600e5481565b600f5481565b611a92612379565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af7906147e4565b60405180910390fd5b8060056000611b0d612379565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bba612379565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bff91906135ad565b60405180910390a35050565b611c1c611c16612379565b8361243a565b611c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c529061404d565b60405180910390fd5b611c67848484846128fb565b50505050565b611c75612379565b73ffffffffffffffffffffffffffffffffffffffff16611c936118a6565b73ffffffffffffffffffffffffffffffffffffffff1614611ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce09061446f565b60405180910390fd5b611cf1612957565b565b611cfb612379565b73ffffffffffffffffffffffffffffffffffffffff16611d196118a6565b73ffffffffffffffffffffffffffffffffffffffff1614611d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d669061446f565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6060611d978261230d565b611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd90614876565b60405180910390fd5b6000611de06129f9565b90506000815111611e005760405180602001604052806000815250611e2b565b80611e0a84612a8b565b604051602001611e1b9291906148d2565b6040516020818303038152906040525b915050919050565b600b8054611e4090613df3565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6c90613df3565b8015611eb95780601f10611e8e57610100808354040283529160200191611eb9565b820191906000526020600020905b815481529060010190602001808311611e9c57829003601f168201915b505050505081565b611ec9612379565b73ffffffffffffffffffffffffffffffffffffffff16611ee76118a6565b73ffffffffffffffffffffffffffffffffffffffff1614611f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f349061446f565b60405180910390fd5b80600f8190555050565b600c8054611f5490613df3565b80601f0160208091040260200160405190810160405280929190818152602001828054611f8090613df3565b8015611fcd5780601f10611fa257610100808354040283529160200191611fcd565b820191906000526020600020905b815481529060010190602001808311611fb057829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612071612379565b73ffffffffffffffffffffffffffffffffffffffff1661208f6118a6565b73ffffffffffffffffffffffffffffffffffffffff16146120e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dc9061446f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214c90614968565b60405180910390fd5b61215e81612792565b50565b61271081565b600080823b905060008111915050919050565b61218583838361228e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121c8576121c381612bec565b612207565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612206576122058382612c35565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561224a5761224581612da2565b612289565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612288576122878282612e73565b5b5b505050565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612306575061230582612ef2565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123f48361156c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006124458261230d565b612484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247b906149fa565b60405180910390fd5b600061248f8361156c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124fe57508373ffffffffffffffffffffffffffffffffffffffff166124e684610a60565b73ffffffffffffffffffffffffffffffffffffffff16145b8061250f575061250e8185611fd5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166125388261156c565b73ffffffffffffffffffffffffffffffffffffffff161461258e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258590614a8c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f590614b1e565b60405180910390fd5b612609838383612fd4565b612614600082612381565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126649190614b3e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126bb9190614318565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61278e82826040518060200160405280600081525061302c565b5050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612860611542565b156128a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289790614bbe565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586128e4612379565b6040516128f19190613727565b60405180910390a1565b612906848484612518565b61291284848484613087565b612951576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294890614c50565b60405180910390fd5b50505050565b61295f611542565b61299e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299590614cbc565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6129e2612379565b6040516129ef9190613727565b60405180910390a1565b6060600b8054612a0890613df3565b80601f0160208091040260200160405190810160405280929190818152602001828054612a3490613df3565b8015612a815780601f10612a5657610100808354040283529160200191612a81565b820191906000526020600020905b815481529060010190602001808311612a6457829003601f168201915b5050505050905090565b60606000821415612ad3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612be7565b600082905060005b60008214612b05578080612aee906143da565b915050600a82612afe9190614d0b565b9150612adb565b60008167ffffffffffffffff811115612b2157612b2061385d565b5b6040519080825280601f01601f191660200182016040528015612b535781602001600182028036833780820191505090505b5090505b60008514612be057600182612b6c9190614b3e565b9150600a85612b7b9190614d3c565b6030612b879190614318565b60f81b818381518110612b9d57612b9c614521565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bd99190614d0b565b9450612b57565b8093505050505b919050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612c428461161e565b612c4c9190614b3e565b9050600060076000848152602001908152602001600020549050818114612d31576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612db69190614b3e565b9050600060096000848152602001908152602001600020549050600060088381548110612de657612de5614521565b5b906000526020600020015490508060088381548110612e0857612e07614521565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612e5757612e56614d6d565b5b6001900381819060005260206000200160009055905550505050565b6000612e7e8361161e565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612fbd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612fcd5750612fcc8261321e565b5b9050919050565b612fdc611542565b1561301c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301390614bbe565b60405180910390fd5b61302783838361217a565b505050565b6130368383613288565b6130436000848484613087565b613082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307990614c50565b60405180910390fd5b505050565b60006130a88473ffffffffffffffffffffffffffffffffffffffff16612167565b15613211578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130d1612379565b8786866040518563ffffffff1660e01b81526004016130f39493929190614df1565b602060405180830381600087803b15801561310d57600080fd5b505af192505050801561313e57506040513d601f19601f8201168201806040525081019061313b9190614e52565b60015b6131c1573d806000811461316e576040519150601f19603f3d011682016040523d82523d6000602084013e613173565b606091505b506000815114156131b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b090614c50565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613216565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ef90614ecb565b60405180910390fd5b6133018161230d565b15613341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161333890614f37565b60405180910390fd5b61334d60008383612fd4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461339d9190614318565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461346290613df3565b90600052602060002090601f01602090048101928261348457600085556134cb565b82601f1061349d57805160ff19168380011785556134cb565b828001600101855582156134cb579182015b828111156134ca5782518255916020019190600101906134af565b5b5090506134d891906134dc565b5090565b5b808211156134f55760008160009055506001016134dd565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6135428161350d565b811461354d57600080fd5b50565b60008135905061355f81613539565b92915050565b60006020828403121561357b5761357a613503565b5b600061358984828501613550565b91505092915050565b60008115159050919050565b6135a781613592565b82525050565b60006020820190506135c2600083018461359e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156136025780820151818401526020810190506135e7565b83811115613611576000848401525b50505050565b6000601f19601f8301169050919050565b6000613633826135c8565b61363d81856135d3565b935061364d8185602086016135e4565b61365681613617565b840191505092915050565b6000602082019050818103600083015261367b8184613628565b905092915050565b6000819050919050565b61369681613683565b81146136a157600080fd5b50565b6000813590506136b38161368d565b92915050565b6000602082840312156136cf576136ce613503565b5b60006136dd848285016136a4565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613711826136e6565b9050919050565b61372181613706565b82525050565b600060208201905061373c6000830184613718565b92915050565b61374b81613706565b811461375657600080fd5b50565b60008135905061376881613742565b92915050565b6000806040838503121561378557613784613503565b5b600061379385828601613759565b92505060206137a4858286016136a4565b9150509250929050565b6000602082840312156137c4576137c3613503565b5b60006137d284828501613759565b91505092915050565b6137e481613683565b82525050565b60006020820190506137ff60008301846137db565b92915050565b60008060006060848603121561381e5761381d613503565b5b600061382c86828701613759565b935050602061383d86828701613759565b925050604061384e868287016136a4565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61389582613617565b810181811067ffffffffffffffff821117156138b4576138b361385d565b5b80604052505050565b60006138c76134f9565b90506138d3828261388c565b919050565b600067ffffffffffffffff8211156138f3576138f261385d565b5b602082029050602081019050919050565b600080fd5b600061391c613917846138d8565b6138bd565b9050808382526020820190506020840283018581111561393f5761393e613904565b5b835b8181101561396857806139548882613759565b845260208401935050602081019050613941565b5050509392505050565b600082601f83011261398757613986613858565b5b8135613997848260208601613909565b91505092915050565b6000602082840312156139b6576139b5613503565b5b600082013567ffffffffffffffff8111156139d4576139d3613508565b5b6139e084828501613972565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613a1e81613683565b82525050565b6000613a308383613a15565b60208301905092915050565b6000602082019050919050565b6000613a54826139e9565b613a5e81856139f4565b9350613a6983613a05565b8060005b83811015613a9a578151613a818882613a24565b9750613a8c83613a3c565b925050600181019050613a6d565b5085935050505092915050565b60006020820190508181036000830152613ac18184613a49565b905092915050565b600080fd5b600067ffffffffffffffff821115613ae957613ae861385d565b5b613af282613617565b9050602081019050919050565b82818337600083830152505050565b6000613b21613b1c84613ace565b6138bd565b905082815260208101848484011115613b3d57613b3c613ac9565b5b613b48848285613aff565b509392505050565b600082601f830112613b6557613b64613858565b5b8135613b75848260208601613b0e565b91505092915050565b600060208284031215613b9457613b93613503565b5b600082013567ffffffffffffffff811115613bb257613bb1613508565b5b613bbe84828501613b50565b91505092915050565b613bd081613592565b8114613bdb57600080fd5b50565b600081359050613bed81613bc7565b92915050565b60008060408385031215613c0a57613c09613503565b5b6000613c1885828601613759565b9250506020613c2985828601613bde565b9150509250929050565b600067ffffffffffffffff821115613c4e57613c4d61385d565b5b613c5782613617565b9050602081019050919050565b6000613c77613c7284613c33565b6138bd565b905082815260208101848484011115613c9357613c92613ac9565b5b613c9e848285613aff565b509392505050565b600082601f830112613cbb57613cba613858565b5b8135613ccb848260208601613c64565b91505092915050565b60008060008060808587031215613cee57613ced613503565b5b6000613cfc87828801613759565b9450506020613d0d87828801613759565b9350506040613d1e878288016136a4565b925050606085013567ffffffffffffffff811115613d3f57613d3e613508565b5b613d4b87828801613ca6565b91505092959194509250565b600060208284031215613d6d57613d6c613503565b5b6000613d7b84828501613bde565b91505092915050565b60008060408385031215613d9b57613d9a613503565b5b6000613da985828601613759565b9250506020613dba85828601613759565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613e0b57607f821691505b60208210811415613e1f57613e1e613dc4565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613e81602c836135d3565b9150613e8c82613e25565b604082019050919050565b60006020820190508181036000830152613eb081613e74565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f136021836135d3565b9150613f1e82613eb7565b604082019050919050565b60006020820190508181036000830152613f4281613f06565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613fa56038836135d3565b9150613fb082613f49565b604082019050919050565b60006020820190508181036000830152613fd481613f98565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006140376031836135d3565b915061404282613fdb565b604082019050919050565b600060208201905081810360008301526140668161402a565b9050919050565b7f596f7520617265206e6f742077686974656c697374656420666f72207468652060008201527f426162792047686f737473207072652d73616c65000000000000000000000000602082015250565b60006140c96034836135d3565b91506140d48261406d565b604082019050919050565b600060208201905081810360008301526140f8816140bc565b9050919050565b7f596f752063616e2774207072652d6d696e7420426162792047686f737473206160008201527f7420746865206d6f6d656e740000000000000000000000000000000000000000602082015250565b600061415b602c836135d3565b9150614166826140ff565b604082019050919050565b6000602082019050818103600083015261418a8161414e565b9050919050565b7f596f752063616e206f6e6c79206d696e74203120746f2032302042616279204760008201527f686f737473000000000000000000000000000000000000000000000000000000602082015250565b60006141ed6025836135d3565b91506141f882614191565b604082019050919050565b6000602082019050818103600083015261421c816141e0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061425d82613683565b915061426883613683565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142a1576142a0614223565b5b828202905092915050565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b60006142e26019836135d3565b91506142ed826142ac565b602082019050919050565b60006020820190508181036000830152614311816142d5565b9050919050565b600061432382613683565b915061432e83613683565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561436357614362614223565b5b828201905092915050565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b60006143a46016836135d3565b91506143af8261436e565b602082019050919050565b600060208201905081810360008301526143d381614397565b9050919050565b60006143e582613683565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561441857614417614223565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006144596020836135d3565b915061446482614423565b602082019050919050565b600060208201905081810360008301526144888161444c565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006144eb602b836135d3565b91506144f68261448f565b604082019050919050565b6000602082019050818103600083015261451a816144de565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f54686520426162792047686f737473206d61696e2073616c65206973206e6f7460008201527f206f70656e000000000000000000000000000000000000000000000000000000602082015250565b60006145ac6025836135d3565b91506145b782614550565b604082019050919050565b600060208201905081810360008301526145db8161459f565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061463e602c836135d3565b9150614649826145e2565b604082019050919050565b6000602082019050818103600083015261466d81614631565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006146d06029836135d3565b91506146db82614674565b604082019050919050565b600060208201905081810360008301526146ff816146c3565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614762602a836135d3565b915061476d82614706565b604082019050919050565b6000602082019050818103600083015261479181614755565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006147ce6019836135d3565b91506147d982614798565b602082019050919050565b600060208201905081810360008301526147fd816147c1565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614860602f836135d3565b915061486b82614804565b604082019050919050565b6000602082019050818103600083015261488f81614853565b9050919050565b600081905092915050565b60006148ac826135c8565b6148b68185614896565b93506148c68185602086016135e4565b80840191505092915050565b60006148de82856148a1565b91506148ea82846148a1565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149526026836135d3565b915061495d826148f6565b604082019050919050565b6000602082019050818103600083015261498181614945565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006149e4602c836135d3565b91506149ef82614988565b604082019050919050565b60006020820190508181036000830152614a13816149d7565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614a766029836135d3565b9150614a8182614a1a565b604082019050919050565b60006020820190508181036000830152614aa581614a69565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b086024836135d3565b9150614b1382614aac565b604082019050919050565b60006020820190508181036000830152614b3781614afb565b9050919050565b6000614b4982613683565b9150614b5483613683565b925082821015614b6757614b66614223565b5b828203905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614ba86010836135d3565b9150614bb382614b72565b602082019050919050565b60006020820190508181036000830152614bd781614b9b565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614c3a6032836135d3565b9150614c4582614bde565b604082019050919050565b60006020820190508181036000830152614c6981614c2d565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000614ca66014836135d3565b9150614cb182614c70565b602082019050919050565b60006020820190508181036000830152614cd581614c99565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d1682613683565b9150614d2183613683565b925082614d3157614d30614cdc565b5b828204905092915050565b6000614d4782613683565b9150614d5283613683565b925082614d6257614d61614cdc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000614dc382614d9c565b614dcd8185614da7565b9350614ddd8185602086016135e4565b614de681613617565b840191505092915050565b6000608082019050614e066000830187613718565b614e136020830186613718565b614e2060408301856137db565b8181036060830152614e328184614db8565b905095945050505050565b600081519050614e4c81613539565b92915050565b600060208284031215614e6857614e67613503565b5b6000614e7684828501614e3d565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614eb56020836135d3565b9150614ec082614e7f565b602082019050919050565b60006020820190508181036000830152614ee481614ea8565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614f21601c836135d3565b9150614f2c82614eeb565b602082019050919050565b60006020820190508181036000830152614f5081614f14565b905091905056fea26469706673582212208a7c69ab362fca724243bf8e93ca9cb5a47b7aa26172bd3e584eb782b11f650964736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000002068747470733a2f2f6d657461646174612e6261627967686f7374732e636f6d2f000000000000000000000000000000000000000000000000000000000000002d68747470733a2f2f6d657461646174612e6261627967686f7374732e636f6d2f636f6e74726163742e6a736f6e00000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseTokenURI (string): https://metadata.babyghosts.com/
Arg [1] : _contractURI (string): https://metadata.babyghosts.com/contract.json

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [3] : 68747470733a2f2f6d657461646174612e6261627967686f7374732e636f6d2f
Arg [4] : 000000000000000000000000000000000000000000000000000000000000002d
Arg [5] : 68747470733a2f2f6d657461646174612e6261627967686f7374732e636f6d2f
Arg [6] : 636f6e74726163742e6a736f6e00000000000000000000000000000000000000


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.