ETH Price: $3,458.51 (-0.37%)
Gas: 5 Gwei

Token

PODENKS (PODK)
 

Overview

Max Total Supply

0 PODK

Holders

134

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 PODK
0x87f669c0ee22c42be261dd74143e716748ba11ba
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Podenks is a collection of 5.000 unique and randomly generated digital collectibles living on the Ethereum blockchain and inspired by the Ibiza island’s native dog, called “podenco ibicenco”.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PodenkNFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

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

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

contract PodenkNFT is ERC721, Ownable {
    using Counters for Counters.Counter;
    using SafeMath for uint256;

    Counters.Counter private _tokenIdCounter;
    
    //---------Variables-------------
    //  Maximo numero de tokens
    uint256 public maxAmntTokens;
    //  Maximo numero de tokens por transaccion
    uint256 public maxTknPerTxs;
    //  Precio de cada NFT
    uint256 public price;
    //  Control de URI
    string newURI;
    //  Control de Collection metadata URI
    string collectionURI;
    //  Controla si la venta esta abierta al publico o no
    bool public saleIsActive = false;
    //  Developer wallet
    address devWallet;
    
    constructor(address _devWallet) ERC721("PODENKS", "PODK") {
        //  Maximo numero de tokens
        maxAmntTokens = 5000;
        //  Maximo numero de tokens por transaccion
        maxTknPerTxs = 20;
        //  Precio de cada NFT
        price = 45000000000000000 wei;
        //  Developer wallet 
        devWallet = _devWallet;
    }
    
    //  Funcion para transferir ganancias del contrato a mi cuenta y a la del socio
    //  95 / 5
    function withdraw() public onlyOwner{
        payable(msg.sender).transfer(address(this).balance.mul(95).div(100));
        payable(devWallet).transfer(address(this).balance);
    }
    
    //  Activar o desactivar la venta
    function flipSaleState() public onlyOwner{
        saleIsActive = !saleIsActive;
    }
    
    //  Reservar NFTs para el owner
    function reservePodenk(uint256 reservedTokens)public onlyOwner{
        require ((reservedTokens.add(checkMintedTokens()) <= maxAmntTokens), "You are minting more NFTs than there are available, mint less tokens!");
        require (reservedTokens <= maxTknPerTxs, "Sorry, the max amount of tokens per transaction is set to 20");
        
        for (uint i=0; i<reservedTokens; i++){
            safeMint(msg.sender);
        }
    }
    
    
    //  Modificar URI
    function setURI(string calldata _newURI) public onlyOwner{
        newURI = _newURI;
    }
    
    //  Modificar URI de coleccion
    function setCollectionURI(string calldata _newCollectionURI) public onlyOwner{
        collectionURI = _newCollectionURI;
    }
    
    //  Metadata del storefront de OpenSea
    function contractURI() public view returns (string memory) {
        return collectionURI;
    }
    
    //  Funcion base de URI de OpenZeppelin
    function _baseURI() internal view override returns (string memory) {
        return newURI;
    }
    
    //  Funcion base de OpenZeppelin
    function safeMint(address to) internal{
        _safeMint(to, _tokenIdCounter.current());
        _tokenIdCounter.increment();
    }
    
    
    //  Checar cuantos tokens han sido minteados
    function checkMintedTokens() public view returns(uint256) {
        return(_tokenIdCounter._value);
    }
    
    //  Recibir pagos directos
    receive() external payable{
        
    }
    
    //  Funcion para mintear los tokens
    function mintPodenk(uint256 amountTokens) public payable {
        //  Requiere que la venta este activa
        require(saleIsActive, "Sale is not active at this moment");
        
        //  Requiere que el numero de tokens que se quieren mintear + el numero de tokens ya minteados
        //  no sobrepase el numero maximo de tokens disponibles del proyecto
        require ((amountTokens.add(checkMintedTokens()) <= maxAmntTokens), "You are minting more NFTs than there are available, mint less tokens!");
        require (amountTokens <= maxTknPerTxs, "Sorry, the max amount of tokens per transaction is set to 20");
        
        //  Requiere que la cantidad de ETH enviada sea la correcta
        require (msg.value == (price.mul(amountTokens)), "Amount of Ether incorrect, try again.");
        
        
        //  Iteramos la cantidad de veces necesaria para mintear los NFTs del cliente y los minteamos en cada iteracion
        for (uint i=0; i<amountTokens; i++){
            safeMint(msg.sender);
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 6 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 7 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 8 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 9 of 13 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 12 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 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"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_devWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkMintedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAmntTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTknPerTxs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountTokens","type":"uint256"}],"name":"mintPodenk","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"reservedTokens","type":"uint256"}],"name":"reservePodenk","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_newCollectionURI","type":"string"}],"name":"setCollectionURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526000600d60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b5060405162003d9938038062003d9983398181016040528101906200005291906200030e565b6040518060400160405280600781526020017f504f44454e4b53000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f504f444b000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000d692919062000247565b508060019080519060200190620000ef92919062000247565b50505062000112620001066200017960201b60201c565b6200018160201b60201c565b6113886008819055506014600981905550669fdf42f6e48000600a8190555080600d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620003ed565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000255906200036e565b90600052602060002090601f016020900481019282620002795760008555620002c5565b82601f106200029457805160ff1916838001178555620002c5565b82800160010185558215620002c5579182015b82811115620002c4578251825591602001919060010190620002a7565b5b509050620002d49190620002d8565b5090565b5b80821115620002f3576000816000905550600101620002d9565b5090565b6000815190506200030881620003d3565b92915050565b6000602082840312156200032157600080fd5b60006200033184828501620002f7565b91505092915050565b600062000347826200034e565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200038757607f821691505b602082108114156200039e576200039d620003a4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b620003de816200033a565b8114620003ea57600080fd5b50565b61399c80620003fd6000396000f3fe6080604052600436106101bb5760003560e01c80637dd96a05116100ec578063c87b56dd1161008a578063e8a3d48511610064578063e8a3d485146105ce578063e985e9c5146105f9578063eb8d244414610636578063f2fde38b14610661576101c2565b8063c87b56dd1461053d578063cda8434e1461057a578063dfe6425c146105a3576101c2565b8063a035b1fe116100c6578063a035b1fe146104a4578063a22cb465146104cf578063b88d4fde146104f8578063c60c433b14610521576101c2565b80637dd96a05146104235780638da5cb5b1461044e57806395d89b4114610479576101c2565b80632639f4601161015957806342842e0e1161013357806342842e0e146103695780636352211e1461039257806370a08231146103cf578063715018a61461040c576101c2565b80632639f4601461031257806334918dfd1461033b5780633ccfd60b14610352576101c2565b8063081812fc11610195578063081812fc14610258578063095ea7b3146102955780631d677431146102be57806323b872dd146102e9576101c2565b806301ffc9a7146101c757806302fe53051461020457806306fdde031461022d576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612793565b61068a565b6040516101fb9190612c6a565b60405180910390f35b34801561021057600080fd5b5061022b600480360381019061022691906127e5565b61076c565b005b34801561023957600080fd5b506102426107fe565b60405161024f9190612c85565b60405180910390f35b34801561026457600080fd5b5061027f600480360381019061027a919061282a565b610890565b60405161028c9190612c03565b60405180910390f35b3480156102a157600080fd5b506102bc60048036038101906102b79190612757565b610915565b005b3480156102ca57600080fd5b506102d3610a2d565b6040516102e09190612f27565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b9190612651565b610a33565b005b34801561031e57600080fd5b50610339600480360381019061033491906127e5565b610a93565b005b34801561034757600080fd5b50610350610b25565b005b34801561035e57600080fd5b50610367610bcd565b005b34801561037557600080fd5b50610390600480360381019061038b9190612651565b610d21565b005b34801561039e57600080fd5b506103b960048036038101906103b4919061282a565b610d41565b6040516103c69190612c03565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f191906125ec565b610df3565b6040516104039190612f27565b60405180910390f35b34801561041857600080fd5b50610421610eab565b005b34801561042f57600080fd5b50610438610f33565b6040516104459190612f27565b60405180910390f35b34801561045a57600080fd5b50610463610f39565b6040516104709190612c03565b60405180910390f35b34801561048557600080fd5b5061048e610f63565b60405161049b9190612c85565b60405180910390f35b3480156104b057600080fd5b506104b9610ff5565b6040516104c69190612f27565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f1919061271b565b610ffb565b005b34801561050457600080fd5b5061051f600480360381019061051a91906126a0565b61117c565b005b61053b6004803603810190610536919061282a565b6111de565b005b34801561054957600080fd5b50610564600480360381019061055f919061282a565b611351565b6040516105719190612c85565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c919061282a565b6113f8565b005b3480156105af57600080fd5b506105b8611542565b6040516105c59190612f27565b60405180910390f35b3480156105da57600080fd5b506105e361154f565b6040516105f09190612c85565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b9190612615565b6115e1565b60405161062d9190612c6a565b60405180910390f35b34801561064257600080fd5b5061064b611675565b6040516106589190612c6a565b60405180910390f35b34801561066d57600080fd5b50610688600480360381019061068391906125ec565b611688565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610765575061076482611780565b5b9050919050565b6107746117ea565b73ffffffffffffffffffffffffffffffffffffffff16610792610f39565b73ffffffffffffffffffffffffffffffffffffffff16146107e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107df90612e87565b60405180910390fd5b8181600b91906107f992919061242e565b505050565b60606000805461080d906131a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610839906131a6565b80156108865780601f1061085b57610100808354040283529160200191610886565b820191906000526020600020905b81548152906001019060200180831161086957829003601f168201915b5050505050905090565b600061089b826117f2565b6108da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d190612e67565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092082610d41565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098890612ee7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b06117ea565b73ffffffffffffffffffffffffffffffffffffffff1614806109df57506109de816109d96117ea565b6115e1565b5b610a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1590612de7565b60405180910390fd5b610a28838361185e565b505050565b60085481565b610a44610a3e6117ea565b82611917565b610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a90612f07565b60405180910390fd5b610a8e8383836119f5565b505050565b610a9b6117ea565b73ffffffffffffffffffffffffffffffffffffffff16610ab9610f39565b73ffffffffffffffffffffffffffffffffffffffff1614610b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0690612e87565b60405180910390fd5b8181600c9190610b2092919061242e565b505050565b610b2d6117ea565b73ffffffffffffffffffffffffffffffffffffffff16610b4b610f39565b73ffffffffffffffffffffffffffffffffffffffff1614610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9890612e87565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610bd56117ea565b73ffffffffffffffffffffffffffffffffffffffff16610bf3610f39565b73ffffffffffffffffffffffffffffffffffffffff1614610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4090612e87565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc610c8a6064610c7c605f47611c5190919063ffffffff16565b611c6790919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015610cb5573d6000803e3d6000fd5b50600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d1e573d6000803e3d6000fd5b50565b610d3c8383836040518060200160405280600081525061117c565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de190612e27565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b90612e07565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610eb36117ea565b73ffffffffffffffffffffffffffffffffffffffff16610ed1610f39565b73ffffffffffffffffffffffffffffffffffffffff1614610f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1e90612e87565b60405180910390fd5b610f316000611c7d565b565b60095481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610f72906131a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9e906131a6565b8015610feb5780601f10610fc057610100808354040283529160200191610feb565b820191906000526020600020905b815481529060010190602001808311610fce57829003601f168201915b5050505050905090565b600a5481565b6110036117ea565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106890612d47565b60405180910390fd5b806005600061107e6117ea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661112b6117ea565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111709190612c6a565b60405180910390a35050565b61118d6111876117ea565b83611917565b6111cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c390612f07565b60405180910390fd5b6111d884848484611d43565b50505050565b600d60009054906101000a900460ff1661122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122490612d07565b60405180910390fd5b60085461124a61123b611542565b83611d9f90919063ffffffff16565b111561128b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128290612da7565b60405180910390fd5b6009548111156112d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c790612d67565b60405180910390fd5b6112e581600a54611c5190919063ffffffff16565b3414611326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131d90612dc7565b60405180910390fd5b60005b8181101561134d5761133a33611db5565b808061134590613209565b915050611329565b5050565b606061135c826117f2565b61139b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139290612ec7565b60405180910390fd5b60006113a5611dd5565b905060008151116113c557604051806020016040528060008152506113f0565b806113cf84611e67565b6040516020016113e0929190612bdf565b6040516020818303038152906040525b915050919050565b6114006117ea565b73ffffffffffffffffffffffffffffffffffffffff1661141e610f39565b73ffffffffffffffffffffffffffffffffffffffff1614611474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146b90612e87565b60405180910390fd5b600854611491611482611542565b83611d9f90919063ffffffff16565b11156114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c990612da7565b60405180910390fd5b600954811115611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150e90612d67565b60405180910390fd5b60005b8181101561153e5761152b33611db5565b808061153690613209565b91505061151a565b5050565b6000600760000154905090565b6060600c805461155e906131a6565b80601f016020809104026020016040519081016040528092919081815260200182805461158a906131a6565b80156115d75780601f106115ac576101008083540402835291602001916115d7565b820191906000526020600020905b8154815290600101906020018083116115ba57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60009054906101000a900460ff1681565b6116906117ea565b73ffffffffffffffffffffffffffffffffffffffff166116ae610f39565b73ffffffffffffffffffffffffffffffffffffffff1614611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb90612e87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176b90612cc7565b60405180910390fd5b61177d81611c7d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166118d183610d41565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611922826117f2565b611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195890612d87565b60405180910390fd5b600061196c83610d41565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806119db57508373ffffffffffffffffffffffffffffffffffffffff166119c384610890565b73ffffffffffffffffffffffffffffffffffffffff16145b806119ec57506119eb81856115e1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a1582610d41565b73ffffffffffffffffffffffffffffffffffffffff1614611a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6290612ea7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad290612d27565b60405180910390fd5b611ae6838383612014565b611af160008261185e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b4191906130bc565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b989190612fdb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183611c5f9190613062565b905092915050565b60008183611c759190613031565b905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d4e8484846119f5565b611d5a84848484612019565b611d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9090612ca7565b60405180910390fd5b50505050565b60008183611dad9190612fdb565b905092915050565b611dc881611dc360076121b0565b6121be565b611dd260076121dc565b50565b6060600b8054611de4906131a6565b80601f0160208091040260200160405190810160405280929190818152602001828054611e10906131a6565b8015611e5d5780601f10611e3257610100808354040283529160200191611e5d565b820191906000526020600020905b815481529060010190602001808311611e4057829003601f168201915b5050505050905090565b60606000821415611eaf576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061200f565b600082905060005b60008214611ee1578080611eca90613209565b915050600a82611eda9190613031565b9150611eb7565b60008167ffffffffffffffff811115611f23577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f555781602001600182028036833780820191505090505b5090505b6000851461200857600182611f6e91906130bc565b9150600a85611f7d9190613252565b6030611f899190612fdb565b60f81b818381518110611fc5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120019190613031565b9450611f59565b8093505050505b919050565b505050565b600061203a8473ffffffffffffffffffffffffffffffffffffffff166121f2565b156121a3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120636117ea565b8786866040518563ffffffff1660e01b81526004016120859493929190612c1e565b602060405180830381600087803b15801561209f57600080fd5b505af19250505080156120d057506040513d601f19601f820116820180604052508101906120cd91906127bc565b60015b612153573d8060008114612100576040519150601f19603f3d011682016040523d82523d6000602084013e612105565b606091505b5060008151141561214b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214290612ca7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506121a8565b600190505b949350505050565b600081600001549050919050565b6121d8828260405180602001604052806000815250612205565b5050565b6001816000016000828254019250508190555050565b600080823b905060008111915050919050565b61220f8383612260565b61221c6000848484612019565b61225b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225290612ca7565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c790612e47565b60405180910390fd5b6122d9816117f2565b15612319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231090612ce7565b60405180910390fd5b61232560008383612014565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123759190612fdb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461243a906131a6565b90600052602060002090601f01602090048101928261245c57600085556124a3565b82601f1061247557803560ff19168380011785556124a3565b828001600101855582156124a3579182015b828111156124a2578235825591602001919060010190612487565b5b5090506124b091906124b4565b5090565b5b808211156124cd5760008160009055506001016124b5565b5090565b60006124e46124df84612f67565b612f42565b9050828152602081018484840111156124fc57600080fd5b612507848285613164565b509392505050565b60008135905061251e8161390a565b92915050565b60008135905061253381613921565b92915050565b60008135905061254881613938565b92915050565b60008151905061255d81613938565b92915050565b600082601f83011261257457600080fd5b81356125848482602086016124d1565b91505092915050565b60008083601f84011261259f57600080fd5b8235905067ffffffffffffffff8111156125b857600080fd5b6020830191508360018202830111156125d057600080fd5b9250929050565b6000813590506125e68161394f565b92915050565b6000602082840312156125fe57600080fd5b600061260c8482850161250f565b91505092915050565b6000806040838503121561262857600080fd5b60006126368582860161250f565b92505060206126478582860161250f565b9150509250929050565b60008060006060848603121561266657600080fd5b60006126748682870161250f565b93505060206126858682870161250f565b9250506040612696868287016125d7565b9150509250925092565b600080600080608085870312156126b657600080fd5b60006126c48782880161250f565b94505060206126d58782880161250f565b93505060406126e6878288016125d7565b925050606085013567ffffffffffffffff81111561270357600080fd5b61270f87828801612563565b91505092959194509250565b6000806040838503121561272e57600080fd5b600061273c8582860161250f565b925050602061274d85828601612524565b9150509250929050565b6000806040838503121561276a57600080fd5b60006127788582860161250f565b9250506020612789858286016125d7565b9150509250929050565b6000602082840312156127a557600080fd5b60006127b384828501612539565b91505092915050565b6000602082840312156127ce57600080fd5b60006127dc8482850161254e565b91505092915050565b600080602083850312156127f857600080fd5b600083013567ffffffffffffffff81111561281257600080fd5b61281e8582860161258d565b92509250509250929050565b60006020828403121561283c57600080fd5b600061284a848285016125d7565b91505092915050565b61285c816130f0565b82525050565b61286b81613102565b82525050565b600061287c82612f98565b6128868185612fae565b9350612896818560208601613173565b61289f8161333f565b840191505092915050565b60006128b582612fa3565b6128bf8185612fbf565b93506128cf818560208601613173565b6128d88161333f565b840191505092915050565b60006128ee82612fa3565b6128f88185612fd0565b9350612908818560208601613173565b80840191505092915050565b6000612921603283612fbf565b915061292c82613350565b604082019050919050565b6000612944602683612fbf565b915061294f8261339f565b604082019050919050565b6000612967601c83612fbf565b9150612972826133ee565b602082019050919050565b600061298a602183612fbf565b915061299582613417565b604082019050919050565b60006129ad602483612fbf565b91506129b882613466565b604082019050919050565b60006129d0601983612fbf565b91506129db826134b5565b602082019050919050565b60006129f3603c83612fbf565b91506129fe826134de565b604082019050919050565b6000612a16602c83612fbf565b9150612a218261352d565b604082019050919050565b6000612a39604583612fbf565b9150612a448261357c565b606082019050919050565b6000612a5c602583612fbf565b9150612a67826135f1565b604082019050919050565b6000612a7f603883612fbf565b9150612a8a82613640565b604082019050919050565b6000612aa2602a83612fbf565b9150612aad8261368f565b604082019050919050565b6000612ac5602983612fbf565b9150612ad0826136de565b604082019050919050565b6000612ae8602083612fbf565b9150612af38261372d565b602082019050919050565b6000612b0b602c83612fbf565b9150612b1682613756565b604082019050919050565b6000612b2e602083612fbf565b9150612b39826137a5565b602082019050919050565b6000612b51602983612fbf565b9150612b5c826137ce565b604082019050919050565b6000612b74602f83612fbf565b9150612b7f8261381d565b604082019050919050565b6000612b97602183612fbf565b9150612ba28261386c565b604082019050919050565b6000612bba603183612fbf565b9150612bc5826138bb565b604082019050919050565b612bd98161315a565b82525050565b6000612beb82856128e3565b9150612bf782846128e3565b91508190509392505050565b6000602082019050612c186000830184612853565b92915050565b6000608082019050612c336000830187612853565b612c406020830186612853565b612c4d6040830185612bd0565b8181036060830152612c5f8184612871565b905095945050505050565b6000602082019050612c7f6000830184612862565b92915050565b60006020820190508181036000830152612c9f81846128aa565b905092915050565b60006020820190508181036000830152612cc081612914565b9050919050565b60006020820190508181036000830152612ce081612937565b9050919050565b60006020820190508181036000830152612d008161295a565b9050919050565b60006020820190508181036000830152612d208161297d565b9050919050565b60006020820190508181036000830152612d40816129a0565b9050919050565b60006020820190508181036000830152612d60816129c3565b9050919050565b60006020820190508181036000830152612d80816129e6565b9050919050565b60006020820190508181036000830152612da081612a09565b9050919050565b60006020820190508181036000830152612dc081612a2c565b9050919050565b60006020820190508181036000830152612de081612a4f565b9050919050565b60006020820190508181036000830152612e0081612a72565b9050919050565b60006020820190508181036000830152612e2081612a95565b9050919050565b60006020820190508181036000830152612e4081612ab8565b9050919050565b60006020820190508181036000830152612e6081612adb565b9050919050565b60006020820190508181036000830152612e8081612afe565b9050919050565b60006020820190508181036000830152612ea081612b21565b9050919050565b60006020820190508181036000830152612ec081612b44565b9050919050565b60006020820190508181036000830152612ee081612b67565b9050919050565b60006020820190508181036000830152612f0081612b8a565b9050919050565b60006020820190508181036000830152612f2081612bad565b9050919050565b6000602082019050612f3c6000830184612bd0565b92915050565b6000612f4c612f5d565b9050612f5882826131d8565b919050565b6000604051905090565b600067ffffffffffffffff821115612f8257612f81613310565b5b612f8b8261333f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612fe68261315a565b9150612ff18361315a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561302657613025613283565b5b828201905092915050565b600061303c8261315a565b91506130478361315a565b925082613057576130566132b2565b5b828204905092915050565b600061306d8261315a565b91506130788361315a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130b1576130b0613283565b5b828202905092915050565b60006130c78261315a565b91506130d28361315a565b9250828210156130e5576130e4613283565b5b828203905092915050565b60006130fb8261313a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613191578082015181840152602081019050613176565b838111156131a0576000848401525b50505050565b600060028204905060018216806131be57607f821691505b602082108114156131d2576131d16132e1565b5b50919050565b6131e18261333f565b810181811067ffffffffffffffff82111715613200576131ff613310565b5b80604052505050565b60006132148261315a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561324757613246613283565b5b600182019050919050565b600061325d8261315a565b91506132688361315a565b925082613278576132776132b2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c65206973206e6f74206163746976652061742074686973206d6f6d656e60008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f536f7272792c20746865206d617820616d6f756e74206f6620746f6b656e732060008201527f706572207472616e73616374696f6e2069732073657420746f20323000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f596f7520617265206d696e74696e67206d6f7265204e465473207468616e207460008201527f686572652061726520617661696c61626c652c206d696e74206c65737320746f60208201527f6b656e7321000000000000000000000000000000000000000000000000000000604082015250565b7f416d6f756e74206f6620457468657220696e636f72726563742c20747279206160008201527f6761696e2e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b613913816130f0565b811461391e57600080fd5b50565b61392a81613102565b811461393557600080fd5b50565b6139418161310e565b811461394c57600080fd5b50565b6139588161315a565b811461396357600080fd5b5056fea2646970667358221220c25f7a0109579d31a69b934454169af11cd525f92af1c4a586f6ac51abe4dc6464736f6c634300080400330000000000000000000000005a7d97c88e9dbbe1748fb24d5fb7875745d7a152

Deployed Bytecode

0x6080604052600436106101bb5760003560e01c80637dd96a05116100ec578063c87b56dd1161008a578063e8a3d48511610064578063e8a3d485146105ce578063e985e9c5146105f9578063eb8d244414610636578063f2fde38b14610661576101c2565b8063c87b56dd1461053d578063cda8434e1461057a578063dfe6425c146105a3576101c2565b8063a035b1fe116100c6578063a035b1fe146104a4578063a22cb465146104cf578063b88d4fde146104f8578063c60c433b14610521576101c2565b80637dd96a05146104235780638da5cb5b1461044e57806395d89b4114610479576101c2565b80632639f4601161015957806342842e0e1161013357806342842e0e146103695780636352211e1461039257806370a08231146103cf578063715018a61461040c576101c2565b80632639f4601461031257806334918dfd1461033b5780633ccfd60b14610352576101c2565b8063081812fc11610195578063081812fc14610258578063095ea7b3146102955780631d677431146102be57806323b872dd146102e9576101c2565b806301ffc9a7146101c757806302fe53051461020457806306fdde031461022d576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612793565b61068a565b6040516101fb9190612c6a565b60405180910390f35b34801561021057600080fd5b5061022b600480360381019061022691906127e5565b61076c565b005b34801561023957600080fd5b506102426107fe565b60405161024f9190612c85565b60405180910390f35b34801561026457600080fd5b5061027f600480360381019061027a919061282a565b610890565b60405161028c9190612c03565b60405180910390f35b3480156102a157600080fd5b506102bc60048036038101906102b79190612757565b610915565b005b3480156102ca57600080fd5b506102d3610a2d565b6040516102e09190612f27565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b9190612651565b610a33565b005b34801561031e57600080fd5b50610339600480360381019061033491906127e5565b610a93565b005b34801561034757600080fd5b50610350610b25565b005b34801561035e57600080fd5b50610367610bcd565b005b34801561037557600080fd5b50610390600480360381019061038b9190612651565b610d21565b005b34801561039e57600080fd5b506103b960048036038101906103b4919061282a565b610d41565b6040516103c69190612c03565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f191906125ec565b610df3565b6040516104039190612f27565b60405180910390f35b34801561041857600080fd5b50610421610eab565b005b34801561042f57600080fd5b50610438610f33565b6040516104459190612f27565b60405180910390f35b34801561045a57600080fd5b50610463610f39565b6040516104709190612c03565b60405180910390f35b34801561048557600080fd5b5061048e610f63565b60405161049b9190612c85565b60405180910390f35b3480156104b057600080fd5b506104b9610ff5565b6040516104c69190612f27565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f1919061271b565b610ffb565b005b34801561050457600080fd5b5061051f600480360381019061051a91906126a0565b61117c565b005b61053b6004803603810190610536919061282a565b6111de565b005b34801561054957600080fd5b50610564600480360381019061055f919061282a565b611351565b6040516105719190612c85565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c919061282a565b6113f8565b005b3480156105af57600080fd5b506105b8611542565b6040516105c59190612f27565b60405180910390f35b3480156105da57600080fd5b506105e361154f565b6040516105f09190612c85565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b9190612615565b6115e1565b60405161062d9190612c6a565b60405180910390f35b34801561064257600080fd5b5061064b611675565b6040516106589190612c6a565b60405180910390f35b34801561066d57600080fd5b50610688600480360381019061068391906125ec565b611688565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610765575061076482611780565b5b9050919050565b6107746117ea565b73ffffffffffffffffffffffffffffffffffffffff16610792610f39565b73ffffffffffffffffffffffffffffffffffffffff16146107e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107df90612e87565b60405180910390fd5b8181600b91906107f992919061242e565b505050565b60606000805461080d906131a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610839906131a6565b80156108865780601f1061085b57610100808354040283529160200191610886565b820191906000526020600020905b81548152906001019060200180831161086957829003601f168201915b5050505050905090565b600061089b826117f2565b6108da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d190612e67565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092082610d41565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098890612ee7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b06117ea565b73ffffffffffffffffffffffffffffffffffffffff1614806109df57506109de816109d96117ea565b6115e1565b5b610a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1590612de7565b60405180910390fd5b610a28838361185e565b505050565b60085481565b610a44610a3e6117ea565b82611917565b610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a90612f07565b60405180910390fd5b610a8e8383836119f5565b505050565b610a9b6117ea565b73ffffffffffffffffffffffffffffffffffffffff16610ab9610f39565b73ffffffffffffffffffffffffffffffffffffffff1614610b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0690612e87565b60405180910390fd5b8181600c9190610b2092919061242e565b505050565b610b2d6117ea565b73ffffffffffffffffffffffffffffffffffffffff16610b4b610f39565b73ffffffffffffffffffffffffffffffffffffffff1614610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9890612e87565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610bd56117ea565b73ffffffffffffffffffffffffffffffffffffffff16610bf3610f39565b73ffffffffffffffffffffffffffffffffffffffff1614610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4090612e87565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc610c8a6064610c7c605f47611c5190919063ffffffff16565b611c6790919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015610cb5573d6000803e3d6000fd5b50600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d1e573d6000803e3d6000fd5b50565b610d3c8383836040518060200160405280600081525061117c565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de190612e27565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b90612e07565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610eb36117ea565b73ffffffffffffffffffffffffffffffffffffffff16610ed1610f39565b73ffffffffffffffffffffffffffffffffffffffff1614610f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1e90612e87565b60405180910390fd5b610f316000611c7d565b565b60095481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610f72906131a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9e906131a6565b8015610feb5780601f10610fc057610100808354040283529160200191610feb565b820191906000526020600020905b815481529060010190602001808311610fce57829003601f168201915b5050505050905090565b600a5481565b6110036117ea565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106890612d47565b60405180910390fd5b806005600061107e6117ea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661112b6117ea565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111709190612c6a565b60405180910390a35050565b61118d6111876117ea565b83611917565b6111cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c390612f07565b60405180910390fd5b6111d884848484611d43565b50505050565b600d60009054906101000a900460ff1661122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122490612d07565b60405180910390fd5b60085461124a61123b611542565b83611d9f90919063ffffffff16565b111561128b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128290612da7565b60405180910390fd5b6009548111156112d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c790612d67565b60405180910390fd5b6112e581600a54611c5190919063ffffffff16565b3414611326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131d90612dc7565b60405180910390fd5b60005b8181101561134d5761133a33611db5565b808061134590613209565b915050611329565b5050565b606061135c826117f2565b61139b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139290612ec7565b60405180910390fd5b60006113a5611dd5565b905060008151116113c557604051806020016040528060008152506113f0565b806113cf84611e67565b6040516020016113e0929190612bdf565b6040516020818303038152906040525b915050919050565b6114006117ea565b73ffffffffffffffffffffffffffffffffffffffff1661141e610f39565b73ffffffffffffffffffffffffffffffffffffffff1614611474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146b90612e87565b60405180910390fd5b600854611491611482611542565b83611d9f90919063ffffffff16565b11156114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c990612da7565b60405180910390fd5b600954811115611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150e90612d67565b60405180910390fd5b60005b8181101561153e5761152b33611db5565b808061153690613209565b91505061151a565b5050565b6000600760000154905090565b6060600c805461155e906131a6565b80601f016020809104026020016040519081016040528092919081815260200182805461158a906131a6565b80156115d75780601f106115ac576101008083540402835291602001916115d7565b820191906000526020600020905b8154815290600101906020018083116115ba57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60009054906101000a900460ff1681565b6116906117ea565b73ffffffffffffffffffffffffffffffffffffffff166116ae610f39565b73ffffffffffffffffffffffffffffffffffffffff1614611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb90612e87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176b90612cc7565b60405180910390fd5b61177d81611c7d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166118d183610d41565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611922826117f2565b611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195890612d87565b60405180910390fd5b600061196c83610d41565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806119db57508373ffffffffffffffffffffffffffffffffffffffff166119c384610890565b73ffffffffffffffffffffffffffffffffffffffff16145b806119ec57506119eb81856115e1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a1582610d41565b73ffffffffffffffffffffffffffffffffffffffff1614611a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6290612ea7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad290612d27565b60405180910390fd5b611ae6838383612014565b611af160008261185e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b4191906130bc565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b989190612fdb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183611c5f9190613062565b905092915050565b60008183611c759190613031565b905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d4e8484846119f5565b611d5a84848484612019565b611d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9090612ca7565b60405180910390fd5b50505050565b60008183611dad9190612fdb565b905092915050565b611dc881611dc360076121b0565b6121be565b611dd260076121dc565b50565b6060600b8054611de4906131a6565b80601f0160208091040260200160405190810160405280929190818152602001828054611e10906131a6565b8015611e5d5780601f10611e3257610100808354040283529160200191611e5d565b820191906000526020600020905b815481529060010190602001808311611e4057829003601f168201915b5050505050905090565b60606000821415611eaf576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061200f565b600082905060005b60008214611ee1578080611eca90613209565b915050600a82611eda9190613031565b9150611eb7565b60008167ffffffffffffffff811115611f23577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f555781602001600182028036833780820191505090505b5090505b6000851461200857600182611f6e91906130bc565b9150600a85611f7d9190613252565b6030611f899190612fdb565b60f81b818381518110611fc5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120019190613031565b9450611f59565b8093505050505b919050565b505050565b600061203a8473ffffffffffffffffffffffffffffffffffffffff166121f2565b156121a3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120636117ea565b8786866040518563ffffffff1660e01b81526004016120859493929190612c1e565b602060405180830381600087803b15801561209f57600080fd5b505af19250505080156120d057506040513d601f19601f820116820180604052508101906120cd91906127bc565b60015b612153573d8060008114612100576040519150601f19603f3d011682016040523d82523d6000602084013e612105565b606091505b5060008151141561214b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214290612ca7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506121a8565b600190505b949350505050565b600081600001549050919050565b6121d8828260405180602001604052806000815250612205565b5050565b6001816000016000828254019250508190555050565b600080823b905060008111915050919050565b61220f8383612260565b61221c6000848484612019565b61225b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225290612ca7565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c790612e47565b60405180910390fd5b6122d9816117f2565b15612319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231090612ce7565b60405180910390fd5b61232560008383612014565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123759190612fdb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461243a906131a6565b90600052602060002090601f01602090048101928261245c57600085556124a3565b82601f1061247557803560ff19168380011785556124a3565b828001600101855582156124a3579182015b828111156124a2578235825591602001919060010190612487565b5b5090506124b091906124b4565b5090565b5b808211156124cd5760008160009055506001016124b5565b5090565b60006124e46124df84612f67565b612f42565b9050828152602081018484840111156124fc57600080fd5b612507848285613164565b509392505050565b60008135905061251e8161390a565b92915050565b60008135905061253381613921565b92915050565b60008135905061254881613938565b92915050565b60008151905061255d81613938565b92915050565b600082601f83011261257457600080fd5b81356125848482602086016124d1565b91505092915050565b60008083601f84011261259f57600080fd5b8235905067ffffffffffffffff8111156125b857600080fd5b6020830191508360018202830111156125d057600080fd5b9250929050565b6000813590506125e68161394f565b92915050565b6000602082840312156125fe57600080fd5b600061260c8482850161250f565b91505092915050565b6000806040838503121561262857600080fd5b60006126368582860161250f565b92505060206126478582860161250f565b9150509250929050565b60008060006060848603121561266657600080fd5b60006126748682870161250f565b93505060206126858682870161250f565b9250506040612696868287016125d7565b9150509250925092565b600080600080608085870312156126b657600080fd5b60006126c48782880161250f565b94505060206126d58782880161250f565b93505060406126e6878288016125d7565b925050606085013567ffffffffffffffff81111561270357600080fd5b61270f87828801612563565b91505092959194509250565b6000806040838503121561272e57600080fd5b600061273c8582860161250f565b925050602061274d85828601612524565b9150509250929050565b6000806040838503121561276a57600080fd5b60006127788582860161250f565b9250506020612789858286016125d7565b9150509250929050565b6000602082840312156127a557600080fd5b60006127b384828501612539565b91505092915050565b6000602082840312156127ce57600080fd5b60006127dc8482850161254e565b91505092915050565b600080602083850312156127f857600080fd5b600083013567ffffffffffffffff81111561281257600080fd5b61281e8582860161258d565b92509250509250929050565b60006020828403121561283c57600080fd5b600061284a848285016125d7565b91505092915050565b61285c816130f0565b82525050565b61286b81613102565b82525050565b600061287c82612f98565b6128868185612fae565b9350612896818560208601613173565b61289f8161333f565b840191505092915050565b60006128b582612fa3565b6128bf8185612fbf565b93506128cf818560208601613173565b6128d88161333f565b840191505092915050565b60006128ee82612fa3565b6128f88185612fd0565b9350612908818560208601613173565b80840191505092915050565b6000612921603283612fbf565b915061292c82613350565b604082019050919050565b6000612944602683612fbf565b915061294f8261339f565b604082019050919050565b6000612967601c83612fbf565b9150612972826133ee565b602082019050919050565b600061298a602183612fbf565b915061299582613417565b604082019050919050565b60006129ad602483612fbf565b91506129b882613466565b604082019050919050565b60006129d0601983612fbf565b91506129db826134b5565b602082019050919050565b60006129f3603c83612fbf565b91506129fe826134de565b604082019050919050565b6000612a16602c83612fbf565b9150612a218261352d565b604082019050919050565b6000612a39604583612fbf565b9150612a448261357c565b606082019050919050565b6000612a5c602583612fbf565b9150612a67826135f1565b604082019050919050565b6000612a7f603883612fbf565b9150612a8a82613640565b604082019050919050565b6000612aa2602a83612fbf565b9150612aad8261368f565b604082019050919050565b6000612ac5602983612fbf565b9150612ad0826136de565b604082019050919050565b6000612ae8602083612fbf565b9150612af38261372d565b602082019050919050565b6000612b0b602c83612fbf565b9150612b1682613756565b604082019050919050565b6000612b2e602083612fbf565b9150612b39826137a5565b602082019050919050565b6000612b51602983612fbf565b9150612b5c826137ce565b604082019050919050565b6000612b74602f83612fbf565b9150612b7f8261381d565b604082019050919050565b6000612b97602183612fbf565b9150612ba28261386c565b604082019050919050565b6000612bba603183612fbf565b9150612bc5826138bb565b604082019050919050565b612bd98161315a565b82525050565b6000612beb82856128e3565b9150612bf782846128e3565b91508190509392505050565b6000602082019050612c186000830184612853565b92915050565b6000608082019050612c336000830187612853565b612c406020830186612853565b612c4d6040830185612bd0565b8181036060830152612c5f8184612871565b905095945050505050565b6000602082019050612c7f6000830184612862565b92915050565b60006020820190508181036000830152612c9f81846128aa565b905092915050565b60006020820190508181036000830152612cc081612914565b9050919050565b60006020820190508181036000830152612ce081612937565b9050919050565b60006020820190508181036000830152612d008161295a565b9050919050565b60006020820190508181036000830152612d208161297d565b9050919050565b60006020820190508181036000830152612d40816129a0565b9050919050565b60006020820190508181036000830152612d60816129c3565b9050919050565b60006020820190508181036000830152612d80816129e6565b9050919050565b60006020820190508181036000830152612da081612a09565b9050919050565b60006020820190508181036000830152612dc081612a2c565b9050919050565b60006020820190508181036000830152612de081612a4f565b9050919050565b60006020820190508181036000830152612e0081612a72565b9050919050565b60006020820190508181036000830152612e2081612a95565b9050919050565b60006020820190508181036000830152612e4081612ab8565b9050919050565b60006020820190508181036000830152612e6081612adb565b9050919050565b60006020820190508181036000830152612e8081612afe565b9050919050565b60006020820190508181036000830152612ea081612b21565b9050919050565b60006020820190508181036000830152612ec081612b44565b9050919050565b60006020820190508181036000830152612ee081612b67565b9050919050565b60006020820190508181036000830152612f0081612b8a565b9050919050565b60006020820190508181036000830152612f2081612bad565b9050919050565b6000602082019050612f3c6000830184612bd0565b92915050565b6000612f4c612f5d565b9050612f5882826131d8565b919050565b6000604051905090565b600067ffffffffffffffff821115612f8257612f81613310565b5b612f8b8261333f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612fe68261315a565b9150612ff18361315a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561302657613025613283565b5b828201905092915050565b600061303c8261315a565b91506130478361315a565b925082613057576130566132b2565b5b828204905092915050565b600061306d8261315a565b91506130788361315a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130b1576130b0613283565b5b828202905092915050565b60006130c78261315a565b91506130d28361315a565b9250828210156130e5576130e4613283565b5b828203905092915050565b60006130fb8261313a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613191578082015181840152602081019050613176565b838111156131a0576000848401525b50505050565b600060028204905060018216806131be57607f821691505b602082108114156131d2576131d16132e1565b5b50919050565b6131e18261333f565b810181811067ffffffffffffffff82111715613200576131ff613310565b5b80604052505050565b60006132148261315a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561324757613246613283565b5b600182019050919050565b600061325d8261315a565b91506132688361315a565b925082613278576132776132b2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c65206973206e6f74206163746976652061742074686973206d6f6d656e60008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f536f7272792c20746865206d617820616d6f756e74206f6620746f6b656e732060008201527f706572207472616e73616374696f6e2069732073657420746f20323000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f596f7520617265206d696e74696e67206d6f7265204e465473207468616e207460008201527f686572652061726520617661696c61626c652c206d696e74206c65737320746f60208201527f6b656e7321000000000000000000000000000000000000000000000000000000604082015250565b7f416d6f756e74206f6620457468657220696e636f72726563742c20747279206160008201527f6761696e2e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b613913816130f0565b811461391e57600080fd5b50565b61392a81613102565b811461393557600080fd5b50565b6139418161310e565b811461394c57600080fd5b50565b6139588161315a565b811461396357600080fd5b5056fea2646970667358221220c25f7a0109579d31a69b934454169af11cd525f92af1c4a586f6ac51abe4dc6464736f6c63430008040033

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

0000000000000000000000005a7d97c88e9dbbe1748fb24d5fb7875745d7a152

-----Decoded View---------------
Arg [0] : _devWallet (address): 0x5a7d97C88e9dbBE1748Fb24D5fb7875745d7A152

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000005a7d97c88e9dbbe1748fb24d5fb7875745d7a152


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.