ETH Price: $3,355.92 (-1.76%)
Gas: 8 Gwei

Token

Baked Bear Beach Club (BBBC)
 

Overview

Max Total Supply

2,434 BBBC

Holders

878

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
17 BBBC
0xab4787b17BfB2004C4B074Ea64871dfA238bd50c
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

#BakedBear Beach Club is an NFT collection of 4206.9 unique High as Kite super funky Bears living in the Ethereum Blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BakedBearsBeachClub

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : BakedBearBeachClub.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

contract BakedBearsBeachClub is ERC721Enumerable, Ownable {
    uint256 private basePrice = 42000000000000000;
    uint256 private freeCount = 20;
    uint256 private reserveAtATime = 25;
    uint256 private reservedCount = 0;
    uint256 private maxReserveCount = 206;
    
    string _baseTokenURI;
    
    uint256 public constant MAX_BEARS = 4206;
    bool public active = false;
    uint256 public maximumAllowedTokensPerPurchase = 25;
    
    event AssetMinted(uint256 tokenId, address sender);
    event SaleActivation(bool active);

    // Truth.
    constructor(string memory baseURI) ERC721("Baked Bear Beach Club", "BBBC") {
        setBaseURI(baseURI);
    }

    modifier saleIsOpen {
        require(totalSupply() <= MAX_BEARS, "Sale has ended.");
        _;
    }

    function setMaximumAllowedTokens(uint256 _count) public onlyOwner {
        maximumAllowedTokensPerPurchase = _count;
    }

    function setActive(bool val) public onlyOwner {
        active = val;
        emit SaleActivation(val);
    }
    
    function setReserveCount(uint256 val) public onlyOwner {
        reserveAtATime = val;
    }
    
    function setPrice(uint256 _price) public onlyOwner {
        basePrice = _price;
    }
    
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function getMaximumAllowedTokens() public view onlyOwner returns (uint256) {
        return maximumAllowedTokensPerPurchase;
    }

    function getPrice() external view returns (uint256) {
        return basePrice; // 0.0420 ETH
    }

    function getTotalSupply() external view returns (uint256) {
        return totalSupply();
    }

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

    function reserveBears() public onlyOwner {
        require(reservedCount <= maxReserveCount, "BBBC: Max Reserves taken already!");
        uint256 supply = totalSupply();
        uint256 i;
        for (i = 0; i < reserveAtATime; i++) {
            emit AssetMinted(supply + i, msg.sender);
            _safeMint(msg.sender, supply + i);
            reservedCount++;
        }  
    }

    function mintMyBear(address _to, uint256 _count) public payable saleIsOpen {
        if (msg.sender != owner()) {
            require(active, "Sale is not active currently.");
        }
        
        require(totalSupply() + _count <= MAX_BEARS, "Total supply exceeded.");
        require(totalSupply() <= MAX_BEARS, "Total supply spent.");
        require(
            _count <= maximumAllowedTokensPerPurchase,
            "Exceeds maximum allowed tokens"
        );
        require(msg.value >= basePrice * _count, "Insuffient amount sent.");

        for (uint256 i = 0; i < _count; i++) {
            emit AssetMinted(totalSupply(), _to);
            _safeMint(_to, totalSupply());
        }
    }

    function walletOfOwner(address _owner) external view returns(uint256[] memory) {
        uint tokenCount = balanceOf(_owner);
        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint i = 0; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

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

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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

}

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

pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","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":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"sender","type":"address"}],"name":"AssetMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"active","type":"bool"}],"name":"SaleActivation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_BEARS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaximumAllowedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maximumAllowedTokensPerPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintMyBear","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveBears","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":"bool","name":"val","type":"bool"}],"name":"setActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setReserveCount","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":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052669536c708910000600b556014600c556019600d556000600e5560ce600f556000601160006101000a81548160ff02191690831515021790555060196012553480156200005057600080fd5b5060405162004d9138038062004d918339818101604052810190620000769190620003de565b6040518060400160405280601581526020017f42616b6564204265617220426561636820436c756200000000000000000000008152506040518060400160405280600481526020017f42424243000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000fa929190620002bc565b50806001908051906020019062000113929190620002bc565b505050600062000128620001df60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001d881620001e760201b60201c565b5062000616565b600033905090565b620001f7620001df60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200021d6200029260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000276576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200026d906200044a565b60405180910390fd5b80601090805190602001906200028e929190620002bc565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002ca9062000512565b90600052602060002090601f016020900481019282620002ee57600085556200033a565b82601f106200030957805160ff19168380011785556200033a565b828001600101855582156200033a579182015b82811115620003395782518255916020019190600101906200031c565b5b5090506200034991906200034d565b5090565b5b80821115620003685760008160009055506001016200034e565b5090565b6000620003836200037d8462000495565b6200046c565b9050828152602081018484840111156200039c57600080fd5b620003a9848285620004dc565b509392505050565b600082601f830112620003c357600080fd5b8151620003d58482602086016200036c565b91505092915050565b600060208284031215620003f157600080fd5b600082015167ffffffffffffffff8111156200040c57600080fd5b6200041a84828501620003b1565b91505092915050565b600062000432602083620004cb565b91506200043f82620005ed565b602082019050919050565b60006020820190508181036000830152620004658162000423565b9050919050565b6000620004786200048b565b905062000486828262000548565b919050565b6000604051905090565b600067ffffffffffffffff821115620004b357620004b2620005ad565b5b620004be82620005dc565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620004fc578082015181840152602081019050620004df565b838111156200050c576000848401525b50505050565b600060028204905060018216806200052b57607f821691505b602082108114156200054257620005416200057e565b5b50919050565b6200055382620005dc565b810181811067ffffffffffffffff82111715620005755762000574620005ad565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61476b80620006266000396000f3fe6080604052600436106101f95760003560e01c8063853828b61161010d578063ad06d758116100a0578063c87b56dd1161006f578063c87b56dd146106fe578063da649ed71461073b578063e985e9c514610766578063eb6da664146107a3578063f2fde38b146107bf576101f9565b8063ad06d75814610668578063b88d4fde14610693578063bdc7ebc7146106bc578063c4e41b22146106d3576101f9565b806398d5fdca116100dc57806398d5fdca146105c05780639a3bf728146105eb578063a22cb46514610616578063acec338a1461063f576101f9565b8063853828b6146105375780638da5cb5b1461054157806391b7f5ed1461056c57806395d89b4114610595576101f9565b80633d41b168116101905780634f6ccce71161015f5780634f6ccce71461044057806355f804b31461047d5780636352211e146104a657806370a08231146104e3578063715018a614610520576101f9565b80633d41b1681461038857806342842e0e146103b1578063438b6300146103da5780634dfea62714610417576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce57806318160ddd146102f757806323b872dd146103225780632f745c591461034b576101f9565b806301ffc9a7146101fe57806302fb0c5e1461023b57806306fdde0314610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b506102256004803603810190610220919061325c565b6107e8565b6040516102329190613885565b60405180910390f35b34801561024757600080fd5b50610250610862565b60405161025d9190613885565b60405180910390f35b34801561027257600080fd5b5061027b610875565b60405161028891906138a0565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b391906132ef565b610907565b6040516102c591906137fc565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f091906131f7565b61098c565b005b34801561030357600080fd5b5061030c610aa4565b6040516103199190613be2565b60405180910390f35b34801561032e57600080fd5b50610349600480360381019061034491906130f1565b610ab1565b005b34801561035757600080fd5b50610372600480360381019061036d91906131f7565b610b11565b60405161037f9190613be2565b60405180910390f35b34801561039457600080fd5b506103af60048036038101906103aa91906132ef565b610bb6565b005b3480156103bd57600080fd5b506103d860048036038101906103d391906130f1565b610c3c565b005b3480156103e657600080fd5b5061040160048036038101906103fc919061308c565b610c5c565b60405161040e9190613863565b60405180910390f35b34801561042357600080fd5b5061043e600480360381019061043991906132ef565b610d56565b005b34801561044c57600080fd5b50610467600480360381019061046291906132ef565b610ddc565b6040516104749190613be2565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f91906132ae565b610e73565b005b3480156104b257600080fd5b506104cd60048036038101906104c891906132ef565b610f09565b6040516104da91906137fc565b60405180910390f35b3480156104ef57600080fd5b5061050a6004803603810190610505919061308c565b610fbb565b6040516105179190613be2565b60405180910390f35b34801561052c57600080fd5b50610535611073565b005b61053f6111b0565b005b34801561054d57600080fd5b50610556611273565b60405161056391906137fc565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e91906132ef565b61129d565b005b3480156105a157600080fd5b506105aa611323565b6040516105b791906138a0565b60405180910390f35b3480156105cc57600080fd5b506105d56113b5565b6040516105e29190613be2565b60405180910390f35b3480156105f757600080fd5b506106006113bf565b60405161060d9190613be2565b60405180910390f35b34801561062257600080fd5b5061063d600480360381019061063891906131bb565b6113c5565b005b34801561064b57600080fd5b5061066660048036038101906106619190613233565b611546565b005b34801561067457600080fd5b5061067d611616565b60405161068a9190613be2565b60405180910390f35b34801561069f57600080fd5b506106ba60048036038101906106b59190613140565b61169c565b005b3480156106c857600080fd5b506106d16116fe565b005b3480156106df57600080fd5b506106e8611862565b6040516106f59190613be2565b60405180910390f35b34801561070a57600080fd5b50610725600480360381019061072091906132ef565b611871565b60405161073291906138a0565b60405180910390f35b34801561074757600080fd5b50610750611918565b60405161075d9190613be2565b60405180910390f35b34801561077257600080fd5b5061078d600480360381019061078891906130b5565b61191e565b60405161079a9190613885565b60405180910390f35b6107bd60048036038101906107b891906131f7565b6119b2565b005b3480156107cb57600080fd5b506107e660048036038101906107e1919061308c565b611c34565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085b575061085a82611de0565b5b9050919050565b601160009054906101000a900460ff1681565b60606000805461088490613ef4565b80601f01602080910402602001604051908101604052809291908181526020018280546108b090613ef4565b80156108fd5780601f106108d2576101008083540402835291602001916108fd565b820191906000526020600020905b8154815290600101906020018083116108e057829003601f168201915b5050505050905090565b600061091282611ec2565b610951576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094890613a82565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099782610f09565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ff90613b42565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a27611f2e565b73ffffffffffffffffffffffffffffffffffffffff161480610a565750610a5581610a50611f2e565b61191e565b5b610a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8c90613a02565b60405180910390fd5b610a9f8383611f36565b505050565b6000600880549050905090565b610ac2610abc611f2e565b82611fef565b610b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af890613b82565b60405180910390fd5b610b0c8383836120cd565b505050565b6000610b1c83610fbb565b8210610b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b54906138e2565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610bbe611f2e565b73ffffffffffffffffffffffffffffffffffffffff16610bdc611273565b73ffffffffffffffffffffffffffffffffffffffff1614610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990613aa2565b60405180910390fd5b80600d8190555050565b610c578383836040518060200160405280600081525061169c565b505050565b60606000610c6983610fbb565b905060008167ffffffffffffffff811115610cad577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610cdb5781602001602082028036833780820191505090505b50905060005b82811015610d4b57610cf38582610b11565b828281518110610d2c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610d4390613f57565b915050610ce1565b508092505050919050565b610d5e611f2e565b73ffffffffffffffffffffffffffffffffffffffff16610d7c611273565b73ffffffffffffffffffffffffffffffffffffffff1614610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc990613aa2565b60405180910390fd5b8060128190555050565b6000610de6610aa4565b8210610e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1e90613ba2565b60405180910390fd5b60088281548110610e61577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610e7b611f2e565b73ffffffffffffffffffffffffffffffffffffffff16610e99611273565b73ffffffffffffffffffffffffffffffffffffffff1614610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee690613aa2565b60405180910390fd5b8060109080519060200190610f05929190612eb0565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa990613a42565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561102c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102390613a22565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61107b611f2e565b73ffffffffffffffffffffffffffffffffffffffff16611099611273565b73ffffffffffffffffffffffffffffffffffffffff16146110ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e690613aa2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6111b8611f2e565b73ffffffffffffffffffffffffffffffffffffffff166111d6611273565b73ffffffffffffffffffffffffffffffffffffffff161461122c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122390613aa2565b60405180910390fd5b611234611f2e565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061127157600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112a5611f2e565b73ffffffffffffffffffffffffffffffffffffffff166112c3611273565b73ffffffffffffffffffffffffffffffffffffffff1614611319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131090613aa2565b60405180910390fd5b80600b8190555050565b60606001805461133290613ef4565b80601f016020809104026020016040519081016040528092919081815260200182805461135e90613ef4565b80156113ab5780601f10611380576101008083540402835291602001916113ab565b820191906000526020600020905b81548152906001019060200180831161138e57829003601f168201915b5050505050905090565b6000600b54905090565b60125481565b6113cd611f2e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561143b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611432906139a2565b60405180910390fd5b8060056000611448611f2e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114f5611f2e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161153a9190613885565b60405180910390a35050565b61154e611f2e565b73ffffffffffffffffffffffffffffffffffffffff1661156c611273565b73ffffffffffffffffffffffffffffffffffffffff16146115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b990613aa2565b60405180910390fd5b80601160006101000a81548160ff0219169083151502179055507f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f8160405161160b9190613885565b60405180910390a150565b6000611620611f2e565b73ffffffffffffffffffffffffffffffffffffffff1661163e611273565b73ffffffffffffffffffffffffffffffffffffffff1614611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b90613aa2565b60405180910390fd5b601254905090565b6116ad6116a7611f2e565b83611fef565b6116ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e390613b82565b60405180910390fd5b6116f884848484612329565b50505050565b611706611f2e565b73ffffffffffffffffffffffffffffffffffffffff16611724611273565b73ffffffffffffffffffffffffffffffffffffffff161461177a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177190613aa2565b60405180910390fd5b600f54600e5411156117c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b8906139c2565b60405180910390fd5b60006117cb610aa4565b905060005b600d5481101561185e577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd35581836118079190613d29565b33604051611816929190613bfd565b60405180910390a161183333828461182e9190613d29565b612385565b600e600081548092919061184690613f57565b9190505550808061185690613f57565b9150506117d0565b5050565b600061186c610aa4565b905090565b606061187c82611ec2565b6118bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b290613ae2565b60405180910390fd5b60006118c56123a3565b905060008151116118e55760405180602001604052806000815250611910565b806118ef84612435565b6040516020016119009291906137d8565b6040516020818303038152906040525b915050919050565b61106e81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61106e6119bd610aa4565b11156119fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f590613962565b60405180910390fd5b611a06611273565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a8857601160009054906101000a900460ff16611a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7e906138c2565b60405180910390fd5b5b61106e81611a94610aa4565b611a9e9190613d29565b1115611adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad690613b62565b60405180910390fd5b61106e611aea610aa4565b1115611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2290613bc2565b60405180910390fd5b601254811115611b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6790613b22565b60405180910390fd5b80600b54611b7e9190613db0565b341015611bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb790613b02565b60405180910390fd5b60005b81811015611c2f577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355611bf4610aa4565b84604051611c03929190613bfd565b60405180910390a1611c1c83611c17610aa4565b612385565b8080611c2790613f57565b915050611bc3565b505050565b611c3c611f2e565b73ffffffffffffffffffffffffffffffffffffffff16611c5a611273565b73ffffffffffffffffffffffffffffffffffffffff1614611cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca790613aa2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1790613922565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611eab57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ebb5750611eba826125e2565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611fa983610f09565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ffa82611ec2565b612039576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612030906139e2565b60405180910390fd5b600061204483610f09565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120b357508373ffffffffffffffffffffffffffffffffffffffff1661209b84610907565b73ffffffffffffffffffffffffffffffffffffffff16145b806120c457506120c3818561191e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120ed82610f09565b73ffffffffffffffffffffffffffffffffffffffff1614612143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213a90613ac2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121aa90613982565b60405180910390fd5b6121be83838361264c565b6121c9600082611f36565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122199190613e0a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122709190613d29565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6123348484846120cd565b61234084848484612760565b61237f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237690613902565b60405180910390fd5b50505050565b61239f8282604051806020016040528060008152506128f7565b5050565b6060601080546123b290613ef4565b80601f01602080910402602001604051908101604052809291908181526020018280546123de90613ef4565b801561242b5780601f106124005761010080835404028352916020019161242b565b820191906000526020600020905b81548152906001019060200180831161240e57829003601f168201915b5050505050905090565b6060600082141561247d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125dd565b600082905060005b600082146124af57808061249890613f57565b915050600a826124a89190613d7f565b9150612485565b60008167ffffffffffffffff8111156124f1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125235781602001600182028036833780820191505090505b5090505b600085146125d65760018261253c9190613e0a565b9150600a8561254b9190613fa0565b60306125579190613d29565b60f81b818381518110612593577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125cf9190613d7f565b9450612527565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612657838383612952565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561269a5761269581612957565b6126d9565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146126d8576126d783826129a0565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561271c5761271781612b0d565b61275b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461275a576127598282612c50565b5b5b505050565b60006127818473ffffffffffffffffffffffffffffffffffffffff16612ccf565b156128ea578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127aa611f2e565b8786866040518563ffffffff1660e01b81526004016127cc9493929190613817565b602060405180830381600087803b1580156127e657600080fd5b505af192505050801561281757506040513d601f19601f820116820180604052508101906128149190613285565b60015b61289a573d8060008114612847576040519150601f19603f3d011682016040523d82523d6000602084013e61284c565b606091505b50600081511415612892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288990613902565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128ef565b600190505b949350505050565b6129018383612ce2565b61290e6000848484612760565b61294d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294490613902565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016129ad84610fbb565b6129b79190613e0a565b9050600060076000848152602001908152602001600020549050818114612a9c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612b219190613e0a565b9050600060096000848152602001908152602001600020549050600060088381548110612b77577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612bbf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612c34577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612c5b83610fbb565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4990613a62565b60405180910390fd5b612d5b81611ec2565b15612d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9290613942565b60405180910390fd5b612da76000838361264c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612df79190613d29565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612ebc90613ef4565b90600052602060002090601f016020900481019282612ede5760008555612f25565b82601f10612ef757805160ff1916838001178555612f25565b82800160010185558215612f25579182015b82811115612f24578251825591602001919060010190612f09565b5b509050612f329190612f36565b5090565b5b80821115612f4f576000816000905550600101612f37565b5090565b6000612f66612f6184613c4b565b613c26565b905082815260208101848484011115612f7e57600080fd5b612f89848285613eb2565b509392505050565b6000612fa4612f9f84613c7c565b613c26565b905082815260208101848484011115612fbc57600080fd5b612fc7848285613eb2565b509392505050565b600081359050612fde816146d9565b92915050565b600081359050612ff3816146f0565b92915050565b60008135905061300881614707565b92915050565b60008151905061301d81614707565b92915050565b600082601f83011261303457600080fd5b8135613044848260208601612f53565b91505092915050565b600082601f83011261305e57600080fd5b813561306e848260208601612f91565b91505092915050565b6000813590506130868161471e565b92915050565b60006020828403121561309e57600080fd5b60006130ac84828501612fcf565b91505092915050565b600080604083850312156130c857600080fd5b60006130d685828601612fcf565b92505060206130e785828601612fcf565b9150509250929050565b60008060006060848603121561310657600080fd5b600061311486828701612fcf565b935050602061312586828701612fcf565b925050604061313686828701613077565b9150509250925092565b6000806000806080858703121561315657600080fd5b600061316487828801612fcf565b945050602061317587828801612fcf565b935050604061318687828801613077565b925050606085013567ffffffffffffffff8111156131a357600080fd5b6131af87828801613023565b91505092959194509250565b600080604083850312156131ce57600080fd5b60006131dc85828601612fcf565b92505060206131ed85828601612fe4565b9150509250929050565b6000806040838503121561320a57600080fd5b600061321885828601612fcf565b925050602061322985828601613077565b9150509250929050565b60006020828403121561324557600080fd5b600061325384828501612fe4565b91505092915050565b60006020828403121561326e57600080fd5b600061327c84828501612ff9565b91505092915050565b60006020828403121561329757600080fd5b60006132a58482850161300e565b91505092915050565b6000602082840312156132c057600080fd5b600082013567ffffffffffffffff8111156132da57600080fd5b6132e68482850161304d565b91505092915050565b60006020828403121561330157600080fd5b600061330f84828501613077565b91505092915050565b600061332483836137ba565b60208301905092915050565b61333981613e3e565b82525050565b600061334a82613cbd565b6133548185613ceb565b935061335f83613cad565b8060005b838110156133905781516133778882613318565b975061338283613cde565b925050600181019050613363565b5085935050505092915050565b6133a681613e50565b82525050565b60006133b782613cc8565b6133c18185613cfc565b93506133d1818560208601613ec1565b6133da8161408d565b840191505092915050565b60006133f082613cd3565b6133fa8185613d0d565b935061340a818560208601613ec1565b6134138161408d565b840191505092915050565b600061342982613cd3565b6134338185613d1e565b9350613443818560208601613ec1565b80840191505092915050565b600061345c601d83613d0d565b91506134678261409e565b602082019050919050565b600061347f602b83613d0d565b915061348a826140c7565b604082019050919050565b60006134a2603283613d0d565b91506134ad82614116565b604082019050919050565b60006134c5602683613d0d565b91506134d082614165565b604082019050919050565b60006134e8601c83613d0d565b91506134f3826141b4565b602082019050919050565b600061350b600f83613d0d565b9150613516826141dd565b602082019050919050565b600061352e602483613d0d565b915061353982614206565b604082019050919050565b6000613551601983613d0d565b915061355c82614255565b602082019050919050565b6000613574602183613d0d565b915061357f8261427e565b604082019050919050565b6000613597602c83613d0d565b91506135a2826142cd565b604082019050919050565b60006135ba603883613d0d565b91506135c58261431c565b604082019050919050565b60006135dd602a83613d0d565b91506135e88261436b565b604082019050919050565b6000613600602983613d0d565b915061360b826143ba565b604082019050919050565b6000613623602083613d0d565b915061362e82614409565b602082019050919050565b6000613646602c83613d0d565b915061365182614432565b604082019050919050565b6000613669602083613d0d565b915061367482614481565b602082019050919050565b600061368c602983613d0d565b9150613697826144aa565b604082019050919050565b60006136af602f83613d0d565b91506136ba826144f9565b604082019050919050565b60006136d2601783613d0d565b91506136dd82614548565b602082019050919050565b60006136f5601e83613d0d565b915061370082614571565b602082019050919050565b6000613718602183613d0d565b91506137238261459a565b604082019050919050565b600061373b601683613d0d565b9150613746826145e9565b602082019050919050565b600061375e603183613d0d565b915061376982614612565b604082019050919050565b6000613781602c83613d0d565b915061378c82614661565b604082019050919050565b60006137a4601383613d0d565b91506137af826146b0565b602082019050919050565b6137c381613ea8565b82525050565b6137d281613ea8565b82525050565b60006137e4828561341e565b91506137f0828461341e565b91508190509392505050565b60006020820190506138116000830184613330565b92915050565b600060808201905061382c6000830187613330565b6138396020830186613330565b61384660408301856137c9565b818103606083015261385881846133ac565b905095945050505050565b6000602082019050818103600083015261387d818461333f565b905092915050565b600060208201905061389a600083018461339d565b92915050565b600060208201905081810360008301526138ba81846133e5565b905092915050565b600060208201905081810360008301526138db8161344f565b9050919050565b600060208201905081810360008301526138fb81613472565b9050919050565b6000602082019050818103600083015261391b81613495565b9050919050565b6000602082019050818103600083015261393b816134b8565b9050919050565b6000602082019050818103600083015261395b816134db565b9050919050565b6000602082019050818103600083015261397b816134fe565b9050919050565b6000602082019050818103600083015261399b81613521565b9050919050565b600060208201905081810360008301526139bb81613544565b9050919050565b600060208201905081810360008301526139db81613567565b9050919050565b600060208201905081810360008301526139fb8161358a565b9050919050565b60006020820190508181036000830152613a1b816135ad565b9050919050565b60006020820190508181036000830152613a3b816135d0565b9050919050565b60006020820190508181036000830152613a5b816135f3565b9050919050565b60006020820190508181036000830152613a7b81613616565b9050919050565b60006020820190508181036000830152613a9b81613639565b9050919050565b60006020820190508181036000830152613abb8161365c565b9050919050565b60006020820190508181036000830152613adb8161367f565b9050919050565b60006020820190508181036000830152613afb816136a2565b9050919050565b60006020820190508181036000830152613b1b816136c5565b9050919050565b60006020820190508181036000830152613b3b816136e8565b9050919050565b60006020820190508181036000830152613b5b8161370b565b9050919050565b60006020820190508181036000830152613b7b8161372e565b9050919050565b60006020820190508181036000830152613b9b81613751565b9050919050565b60006020820190508181036000830152613bbb81613774565b9050919050565b60006020820190508181036000830152613bdb81613797565b9050919050565b6000602082019050613bf760008301846137c9565b92915050565b6000604082019050613c1260008301856137c9565b613c1f6020830184613330565b9392505050565b6000613c30613c41565b9050613c3c8282613f26565b919050565b6000604051905090565b600067ffffffffffffffff821115613c6657613c6561405e565b5b613c6f8261408d565b9050602081019050919050565b600067ffffffffffffffff821115613c9757613c9661405e565b5b613ca08261408d565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d3482613ea8565b9150613d3f83613ea8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d7457613d73613fd1565b5b828201905092915050565b6000613d8a82613ea8565b9150613d9583613ea8565b925082613da557613da4614000565b5b828204905092915050565b6000613dbb82613ea8565b9150613dc683613ea8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613dff57613dfe613fd1565b5b828202905092915050565b6000613e1582613ea8565b9150613e2083613ea8565b925082821015613e3357613e32613fd1565b5b828203905092915050565b6000613e4982613e88565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613edf578082015181840152602081019050613ec4565b83811115613eee576000848401525b50505050565b60006002820490506001821680613f0c57607f821691505b60208210811415613f2057613f1f61402f565b5b50919050565b613f2f8261408d565b810181811067ffffffffffffffff82111715613f4e57613f4d61405e565b5b80604052505050565b6000613f6282613ea8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f9557613f94613fd1565b5b600182019050919050565b6000613fab82613ea8565b9150613fb683613ea8565b925082613fc657613fc5614000565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f424242433a204d61782052657365727665732074616b656e20616c726561647960008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f496e7375666669656e7420616d6f756e742073656e742e000000000000000000600082015250565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f546f74616c20737570706c79207370656e742e00000000000000000000000000600082015250565b6146e281613e3e565b81146146ed57600080fd5b50565b6146f981613e50565b811461470457600080fd5b50565b61471081613e5c565b811461471b57600080fd5b50565b61472781613ea8565b811461473257600080fd5b5056fea2646970667358221220e63f65dd2fc5341edc5cbefd5adb9946ac5b74cbebdae218ff79c20b43aec69364736f6c634300080400330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d636d52527042584b5841684c3456414a6b5372776d4e417278576a596d79344b337838524a7a664a5547666d2f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c8063853828b61161010d578063ad06d758116100a0578063c87b56dd1161006f578063c87b56dd146106fe578063da649ed71461073b578063e985e9c514610766578063eb6da664146107a3578063f2fde38b146107bf576101f9565b8063ad06d75814610668578063b88d4fde14610693578063bdc7ebc7146106bc578063c4e41b22146106d3576101f9565b806398d5fdca116100dc57806398d5fdca146105c05780639a3bf728146105eb578063a22cb46514610616578063acec338a1461063f576101f9565b8063853828b6146105375780638da5cb5b1461054157806391b7f5ed1461056c57806395d89b4114610595576101f9565b80633d41b168116101905780634f6ccce71161015f5780634f6ccce71461044057806355f804b31461047d5780636352211e146104a657806370a08231146104e3578063715018a614610520576101f9565b80633d41b1681461038857806342842e0e146103b1578063438b6300146103da5780634dfea62714610417576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce57806318160ddd146102f757806323b872dd146103225780632f745c591461034b576101f9565b806301ffc9a7146101fe57806302fb0c5e1461023b57806306fdde0314610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b506102256004803603810190610220919061325c565b6107e8565b6040516102329190613885565b60405180910390f35b34801561024757600080fd5b50610250610862565b60405161025d9190613885565b60405180910390f35b34801561027257600080fd5b5061027b610875565b60405161028891906138a0565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b391906132ef565b610907565b6040516102c591906137fc565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f091906131f7565b61098c565b005b34801561030357600080fd5b5061030c610aa4565b6040516103199190613be2565b60405180910390f35b34801561032e57600080fd5b50610349600480360381019061034491906130f1565b610ab1565b005b34801561035757600080fd5b50610372600480360381019061036d91906131f7565b610b11565b60405161037f9190613be2565b60405180910390f35b34801561039457600080fd5b506103af60048036038101906103aa91906132ef565b610bb6565b005b3480156103bd57600080fd5b506103d860048036038101906103d391906130f1565b610c3c565b005b3480156103e657600080fd5b5061040160048036038101906103fc919061308c565b610c5c565b60405161040e9190613863565b60405180910390f35b34801561042357600080fd5b5061043e600480360381019061043991906132ef565b610d56565b005b34801561044c57600080fd5b50610467600480360381019061046291906132ef565b610ddc565b6040516104749190613be2565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f91906132ae565b610e73565b005b3480156104b257600080fd5b506104cd60048036038101906104c891906132ef565b610f09565b6040516104da91906137fc565b60405180910390f35b3480156104ef57600080fd5b5061050a6004803603810190610505919061308c565b610fbb565b6040516105179190613be2565b60405180910390f35b34801561052c57600080fd5b50610535611073565b005b61053f6111b0565b005b34801561054d57600080fd5b50610556611273565b60405161056391906137fc565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e91906132ef565b61129d565b005b3480156105a157600080fd5b506105aa611323565b6040516105b791906138a0565b60405180910390f35b3480156105cc57600080fd5b506105d56113b5565b6040516105e29190613be2565b60405180910390f35b3480156105f757600080fd5b506106006113bf565b60405161060d9190613be2565b60405180910390f35b34801561062257600080fd5b5061063d600480360381019061063891906131bb565b6113c5565b005b34801561064b57600080fd5b5061066660048036038101906106619190613233565b611546565b005b34801561067457600080fd5b5061067d611616565b60405161068a9190613be2565b60405180910390f35b34801561069f57600080fd5b506106ba60048036038101906106b59190613140565b61169c565b005b3480156106c857600080fd5b506106d16116fe565b005b3480156106df57600080fd5b506106e8611862565b6040516106f59190613be2565b60405180910390f35b34801561070a57600080fd5b50610725600480360381019061072091906132ef565b611871565b60405161073291906138a0565b60405180910390f35b34801561074757600080fd5b50610750611918565b60405161075d9190613be2565b60405180910390f35b34801561077257600080fd5b5061078d600480360381019061078891906130b5565b61191e565b60405161079a9190613885565b60405180910390f35b6107bd60048036038101906107b891906131f7565b6119b2565b005b3480156107cb57600080fd5b506107e660048036038101906107e1919061308c565b611c34565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085b575061085a82611de0565b5b9050919050565b601160009054906101000a900460ff1681565b60606000805461088490613ef4565b80601f01602080910402602001604051908101604052809291908181526020018280546108b090613ef4565b80156108fd5780601f106108d2576101008083540402835291602001916108fd565b820191906000526020600020905b8154815290600101906020018083116108e057829003601f168201915b5050505050905090565b600061091282611ec2565b610951576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094890613a82565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099782610f09565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ff90613b42565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a27611f2e565b73ffffffffffffffffffffffffffffffffffffffff161480610a565750610a5581610a50611f2e565b61191e565b5b610a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8c90613a02565b60405180910390fd5b610a9f8383611f36565b505050565b6000600880549050905090565b610ac2610abc611f2e565b82611fef565b610b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af890613b82565b60405180910390fd5b610b0c8383836120cd565b505050565b6000610b1c83610fbb565b8210610b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b54906138e2565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610bbe611f2e565b73ffffffffffffffffffffffffffffffffffffffff16610bdc611273565b73ffffffffffffffffffffffffffffffffffffffff1614610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990613aa2565b60405180910390fd5b80600d8190555050565b610c578383836040518060200160405280600081525061169c565b505050565b60606000610c6983610fbb565b905060008167ffffffffffffffff811115610cad577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610cdb5781602001602082028036833780820191505090505b50905060005b82811015610d4b57610cf38582610b11565b828281518110610d2c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610d4390613f57565b915050610ce1565b508092505050919050565b610d5e611f2e565b73ffffffffffffffffffffffffffffffffffffffff16610d7c611273565b73ffffffffffffffffffffffffffffffffffffffff1614610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc990613aa2565b60405180910390fd5b8060128190555050565b6000610de6610aa4565b8210610e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1e90613ba2565b60405180910390fd5b60088281548110610e61577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610e7b611f2e565b73ffffffffffffffffffffffffffffffffffffffff16610e99611273565b73ffffffffffffffffffffffffffffffffffffffff1614610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee690613aa2565b60405180910390fd5b8060109080519060200190610f05929190612eb0565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa990613a42565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561102c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102390613a22565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61107b611f2e565b73ffffffffffffffffffffffffffffffffffffffff16611099611273565b73ffffffffffffffffffffffffffffffffffffffff16146110ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e690613aa2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6111b8611f2e565b73ffffffffffffffffffffffffffffffffffffffff166111d6611273565b73ffffffffffffffffffffffffffffffffffffffff161461122c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122390613aa2565b60405180910390fd5b611234611f2e565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061127157600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112a5611f2e565b73ffffffffffffffffffffffffffffffffffffffff166112c3611273565b73ffffffffffffffffffffffffffffffffffffffff1614611319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131090613aa2565b60405180910390fd5b80600b8190555050565b60606001805461133290613ef4565b80601f016020809104026020016040519081016040528092919081815260200182805461135e90613ef4565b80156113ab5780601f10611380576101008083540402835291602001916113ab565b820191906000526020600020905b81548152906001019060200180831161138e57829003601f168201915b5050505050905090565b6000600b54905090565b60125481565b6113cd611f2e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561143b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611432906139a2565b60405180910390fd5b8060056000611448611f2e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114f5611f2e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161153a9190613885565b60405180910390a35050565b61154e611f2e565b73ffffffffffffffffffffffffffffffffffffffff1661156c611273565b73ffffffffffffffffffffffffffffffffffffffff16146115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b990613aa2565b60405180910390fd5b80601160006101000a81548160ff0219169083151502179055507f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f8160405161160b9190613885565b60405180910390a150565b6000611620611f2e565b73ffffffffffffffffffffffffffffffffffffffff1661163e611273565b73ffffffffffffffffffffffffffffffffffffffff1614611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b90613aa2565b60405180910390fd5b601254905090565b6116ad6116a7611f2e565b83611fef565b6116ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e390613b82565b60405180910390fd5b6116f884848484612329565b50505050565b611706611f2e565b73ffffffffffffffffffffffffffffffffffffffff16611724611273565b73ffffffffffffffffffffffffffffffffffffffff161461177a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177190613aa2565b60405180910390fd5b600f54600e5411156117c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b8906139c2565b60405180910390fd5b60006117cb610aa4565b905060005b600d5481101561185e577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd35581836118079190613d29565b33604051611816929190613bfd565b60405180910390a161183333828461182e9190613d29565b612385565b600e600081548092919061184690613f57565b9190505550808061185690613f57565b9150506117d0565b5050565b600061186c610aa4565b905090565b606061187c82611ec2565b6118bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b290613ae2565b60405180910390fd5b60006118c56123a3565b905060008151116118e55760405180602001604052806000815250611910565b806118ef84612435565b6040516020016119009291906137d8565b6040516020818303038152906040525b915050919050565b61106e81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61106e6119bd610aa4565b11156119fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f590613962565b60405180910390fd5b611a06611273565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a8857601160009054906101000a900460ff16611a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7e906138c2565b60405180910390fd5b5b61106e81611a94610aa4565b611a9e9190613d29565b1115611adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad690613b62565b60405180910390fd5b61106e611aea610aa4565b1115611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2290613bc2565b60405180910390fd5b601254811115611b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6790613b22565b60405180910390fd5b80600b54611b7e9190613db0565b341015611bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb790613b02565b60405180910390fd5b60005b81811015611c2f577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355611bf4610aa4565b84604051611c03929190613bfd565b60405180910390a1611c1c83611c17610aa4565b612385565b8080611c2790613f57565b915050611bc3565b505050565b611c3c611f2e565b73ffffffffffffffffffffffffffffffffffffffff16611c5a611273565b73ffffffffffffffffffffffffffffffffffffffff1614611cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca790613aa2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1790613922565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611eab57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ebb5750611eba826125e2565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611fa983610f09565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ffa82611ec2565b612039576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612030906139e2565b60405180910390fd5b600061204483610f09565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120b357508373ffffffffffffffffffffffffffffffffffffffff1661209b84610907565b73ffffffffffffffffffffffffffffffffffffffff16145b806120c457506120c3818561191e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120ed82610f09565b73ffffffffffffffffffffffffffffffffffffffff1614612143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213a90613ac2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121aa90613982565b60405180910390fd5b6121be83838361264c565b6121c9600082611f36565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122199190613e0a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122709190613d29565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6123348484846120cd565b61234084848484612760565b61237f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237690613902565b60405180910390fd5b50505050565b61239f8282604051806020016040528060008152506128f7565b5050565b6060601080546123b290613ef4565b80601f01602080910402602001604051908101604052809291908181526020018280546123de90613ef4565b801561242b5780601f106124005761010080835404028352916020019161242b565b820191906000526020600020905b81548152906001019060200180831161240e57829003601f168201915b5050505050905090565b6060600082141561247d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125dd565b600082905060005b600082146124af57808061249890613f57565b915050600a826124a89190613d7f565b9150612485565b60008167ffffffffffffffff8111156124f1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125235781602001600182028036833780820191505090505b5090505b600085146125d65760018261253c9190613e0a565b9150600a8561254b9190613fa0565b60306125579190613d29565b60f81b818381518110612593577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125cf9190613d7f565b9450612527565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612657838383612952565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561269a5761269581612957565b6126d9565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146126d8576126d783826129a0565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561271c5761271781612b0d565b61275b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461275a576127598282612c50565b5b5b505050565b60006127818473ffffffffffffffffffffffffffffffffffffffff16612ccf565b156128ea578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127aa611f2e565b8786866040518563ffffffff1660e01b81526004016127cc9493929190613817565b602060405180830381600087803b1580156127e657600080fd5b505af192505050801561281757506040513d601f19601f820116820180604052508101906128149190613285565b60015b61289a573d8060008114612847576040519150601f19603f3d011682016040523d82523d6000602084013e61284c565b606091505b50600081511415612892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288990613902565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128ef565b600190505b949350505050565b6129018383612ce2565b61290e6000848484612760565b61294d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294490613902565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016129ad84610fbb565b6129b79190613e0a565b9050600060076000848152602001908152602001600020549050818114612a9c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612b219190613e0a565b9050600060096000848152602001908152602001600020549050600060088381548110612b77577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612bbf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612c34577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612c5b83610fbb565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4990613a62565b60405180910390fd5b612d5b81611ec2565b15612d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9290613942565b60405180910390fd5b612da76000838361264c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612df79190613d29565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612ebc90613ef4565b90600052602060002090601f016020900481019282612ede5760008555612f25565b82601f10612ef757805160ff1916838001178555612f25565b82800160010185558215612f25579182015b82811115612f24578251825591602001919060010190612f09565b5b509050612f329190612f36565b5090565b5b80821115612f4f576000816000905550600101612f37565b5090565b6000612f66612f6184613c4b565b613c26565b905082815260208101848484011115612f7e57600080fd5b612f89848285613eb2565b509392505050565b6000612fa4612f9f84613c7c565b613c26565b905082815260208101848484011115612fbc57600080fd5b612fc7848285613eb2565b509392505050565b600081359050612fde816146d9565b92915050565b600081359050612ff3816146f0565b92915050565b60008135905061300881614707565b92915050565b60008151905061301d81614707565b92915050565b600082601f83011261303457600080fd5b8135613044848260208601612f53565b91505092915050565b600082601f83011261305e57600080fd5b813561306e848260208601612f91565b91505092915050565b6000813590506130868161471e565b92915050565b60006020828403121561309e57600080fd5b60006130ac84828501612fcf565b91505092915050565b600080604083850312156130c857600080fd5b60006130d685828601612fcf565b92505060206130e785828601612fcf565b9150509250929050565b60008060006060848603121561310657600080fd5b600061311486828701612fcf565b935050602061312586828701612fcf565b925050604061313686828701613077565b9150509250925092565b6000806000806080858703121561315657600080fd5b600061316487828801612fcf565b945050602061317587828801612fcf565b935050604061318687828801613077565b925050606085013567ffffffffffffffff8111156131a357600080fd5b6131af87828801613023565b91505092959194509250565b600080604083850312156131ce57600080fd5b60006131dc85828601612fcf565b92505060206131ed85828601612fe4565b9150509250929050565b6000806040838503121561320a57600080fd5b600061321885828601612fcf565b925050602061322985828601613077565b9150509250929050565b60006020828403121561324557600080fd5b600061325384828501612fe4565b91505092915050565b60006020828403121561326e57600080fd5b600061327c84828501612ff9565b91505092915050565b60006020828403121561329757600080fd5b60006132a58482850161300e565b91505092915050565b6000602082840312156132c057600080fd5b600082013567ffffffffffffffff8111156132da57600080fd5b6132e68482850161304d565b91505092915050565b60006020828403121561330157600080fd5b600061330f84828501613077565b91505092915050565b600061332483836137ba565b60208301905092915050565b61333981613e3e565b82525050565b600061334a82613cbd565b6133548185613ceb565b935061335f83613cad565b8060005b838110156133905781516133778882613318565b975061338283613cde565b925050600181019050613363565b5085935050505092915050565b6133a681613e50565b82525050565b60006133b782613cc8565b6133c18185613cfc565b93506133d1818560208601613ec1565b6133da8161408d565b840191505092915050565b60006133f082613cd3565b6133fa8185613d0d565b935061340a818560208601613ec1565b6134138161408d565b840191505092915050565b600061342982613cd3565b6134338185613d1e565b9350613443818560208601613ec1565b80840191505092915050565b600061345c601d83613d0d565b91506134678261409e565b602082019050919050565b600061347f602b83613d0d565b915061348a826140c7565b604082019050919050565b60006134a2603283613d0d565b91506134ad82614116565b604082019050919050565b60006134c5602683613d0d565b91506134d082614165565b604082019050919050565b60006134e8601c83613d0d565b91506134f3826141b4565b602082019050919050565b600061350b600f83613d0d565b9150613516826141dd565b602082019050919050565b600061352e602483613d0d565b915061353982614206565b604082019050919050565b6000613551601983613d0d565b915061355c82614255565b602082019050919050565b6000613574602183613d0d565b915061357f8261427e565b604082019050919050565b6000613597602c83613d0d565b91506135a2826142cd565b604082019050919050565b60006135ba603883613d0d565b91506135c58261431c565b604082019050919050565b60006135dd602a83613d0d565b91506135e88261436b565b604082019050919050565b6000613600602983613d0d565b915061360b826143ba565b604082019050919050565b6000613623602083613d0d565b915061362e82614409565b602082019050919050565b6000613646602c83613d0d565b915061365182614432565b604082019050919050565b6000613669602083613d0d565b915061367482614481565b602082019050919050565b600061368c602983613d0d565b9150613697826144aa565b604082019050919050565b60006136af602f83613d0d565b91506136ba826144f9565b604082019050919050565b60006136d2601783613d0d565b91506136dd82614548565b602082019050919050565b60006136f5601e83613d0d565b915061370082614571565b602082019050919050565b6000613718602183613d0d565b91506137238261459a565b604082019050919050565b600061373b601683613d0d565b9150613746826145e9565b602082019050919050565b600061375e603183613d0d565b915061376982614612565b604082019050919050565b6000613781602c83613d0d565b915061378c82614661565b604082019050919050565b60006137a4601383613d0d565b91506137af826146b0565b602082019050919050565b6137c381613ea8565b82525050565b6137d281613ea8565b82525050565b60006137e4828561341e565b91506137f0828461341e565b91508190509392505050565b60006020820190506138116000830184613330565b92915050565b600060808201905061382c6000830187613330565b6138396020830186613330565b61384660408301856137c9565b818103606083015261385881846133ac565b905095945050505050565b6000602082019050818103600083015261387d818461333f565b905092915050565b600060208201905061389a600083018461339d565b92915050565b600060208201905081810360008301526138ba81846133e5565b905092915050565b600060208201905081810360008301526138db8161344f565b9050919050565b600060208201905081810360008301526138fb81613472565b9050919050565b6000602082019050818103600083015261391b81613495565b9050919050565b6000602082019050818103600083015261393b816134b8565b9050919050565b6000602082019050818103600083015261395b816134db565b9050919050565b6000602082019050818103600083015261397b816134fe565b9050919050565b6000602082019050818103600083015261399b81613521565b9050919050565b600060208201905081810360008301526139bb81613544565b9050919050565b600060208201905081810360008301526139db81613567565b9050919050565b600060208201905081810360008301526139fb8161358a565b9050919050565b60006020820190508181036000830152613a1b816135ad565b9050919050565b60006020820190508181036000830152613a3b816135d0565b9050919050565b60006020820190508181036000830152613a5b816135f3565b9050919050565b60006020820190508181036000830152613a7b81613616565b9050919050565b60006020820190508181036000830152613a9b81613639565b9050919050565b60006020820190508181036000830152613abb8161365c565b9050919050565b60006020820190508181036000830152613adb8161367f565b9050919050565b60006020820190508181036000830152613afb816136a2565b9050919050565b60006020820190508181036000830152613b1b816136c5565b9050919050565b60006020820190508181036000830152613b3b816136e8565b9050919050565b60006020820190508181036000830152613b5b8161370b565b9050919050565b60006020820190508181036000830152613b7b8161372e565b9050919050565b60006020820190508181036000830152613b9b81613751565b9050919050565b60006020820190508181036000830152613bbb81613774565b9050919050565b60006020820190508181036000830152613bdb81613797565b9050919050565b6000602082019050613bf760008301846137c9565b92915050565b6000604082019050613c1260008301856137c9565b613c1f6020830184613330565b9392505050565b6000613c30613c41565b9050613c3c8282613f26565b919050565b6000604051905090565b600067ffffffffffffffff821115613c6657613c6561405e565b5b613c6f8261408d565b9050602081019050919050565b600067ffffffffffffffff821115613c9757613c9661405e565b5b613ca08261408d565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d3482613ea8565b9150613d3f83613ea8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d7457613d73613fd1565b5b828201905092915050565b6000613d8a82613ea8565b9150613d9583613ea8565b925082613da557613da4614000565b5b828204905092915050565b6000613dbb82613ea8565b9150613dc683613ea8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613dff57613dfe613fd1565b5b828202905092915050565b6000613e1582613ea8565b9150613e2083613ea8565b925082821015613e3357613e32613fd1565b5b828203905092915050565b6000613e4982613e88565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613edf578082015181840152602081019050613ec4565b83811115613eee576000848401525b50505050565b60006002820490506001821680613f0c57607f821691505b60208210811415613f2057613f1f61402f565b5b50919050565b613f2f8261408d565b810181811067ffffffffffffffff82111715613f4e57613f4d61405e565b5b80604052505050565b6000613f6282613ea8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f9557613f94613fd1565b5b600182019050919050565b6000613fab82613ea8565b9150613fb683613ea8565b925082613fc657613fc5614000565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f424242433a204d61782052657365727665732074616b656e20616c726561647960008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f496e7375666669656e7420616d6f756e742073656e742e000000000000000000600082015250565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f546f74616c20737570706c79207370656e742e00000000000000000000000000600082015250565b6146e281613e3e565b81146146ed57600080fd5b50565b6146f981613e50565b811461470457600080fd5b50565b61471081613e5c565b811461471b57600080fd5b50565b61472781613ea8565b811461473257600080fd5b5056fea2646970667358221220e63f65dd2fc5341edc5cbefd5adb9946ac5b74cbebdae218ff79c20b43aec69364736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d636d52527042584b5841684c3456414a6b5372776d4e417278576a596d79344b337838524a7a664a5547666d2f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://gateway.pinata.cloud/ipfs/QmcmRRpBXKXAhL4VAJkSrwmNArxWjYmy4K3x8RJzfJUGfm/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d636d52527042584b5841684c3456414a6b5372776d4e417278576a59
Arg [4] : 6d79344b337838524a7a664a5547666d2f000000000000000000000000000000


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.