ETH Price: $3,478.60 (+1.75%)
Gas: 9 Gwei

Token

DoodlDuckz (DDZ)
 

Overview

Max Total Supply

5,555 DDZ

Holders

843

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
morganloewenherz.eth
Balance
2 DDZ
0xcc5a9c976a3becb20e334ec40fd4abdeba9e198f
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DoodlDuckz

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

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

import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721.sol";
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol";
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

contract DoodlDuckz is ERC721, ReentrancyGuard, Ownable {
    uint256 public MINT_PRICE = 0.05 ether;
    uint256 public TOTAL_SUPPLY = 5555;
    bool public MINTING_ALLOWED = false;
    string private _baseURIextended;
    uint256 private _counter = 0;

    using Strings for uint256;
   
   mapping(uint256 => string) private _tokenURIs;
   
    constructor(
        string memory _name,
        string memory _symbol
    ) ERC721(_name, _symbol) {}

    function contractURI() public view returns (string memory) {
        return _baseURI();
    }

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

    /*
     * Owner can withdraw the contract's ETH to an external address
     */
    function withdrawETH(address ethAddress, uint256 amount) public onlyOwner {
        payable(ethAddress).transfer(amount);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString()));
    }


    /*
     * Mint function
     */

    function mint(uint requestedTokens) public payable nonReentrant() {
      require(MINTING_ALLOWED, "Minting is not allowed");

      require(
       requestedTokens <= TOTAL_SUPPLY - _counter,
       "There aren't this many DDZ left."
      );

      require(
       requestedTokens <= 10,
       "Up to 10 tokens allowed in a single minting transaction."
      );

      require(TOTAL_SUPPLY - _counter>0,"DDZ shares are now sold out! Please check OpenSea to purchase DDZ .");


      uint256 totalCost = getMintingCost(requestedTokens);
      require(
       msg.value >= totalCost,
       "Insufficient Gas."
      );
   
        for(uint i = 0; i < requestedTokens; i++) {
           _mint(msg.sender, _counter + 1);
           _setTokenURI(_counter + 1, Strings.toString(_counter + 1));
           _counter++;
        }
        //payable(OWNER).transfer(msg.value);
    }

   //Return minting cost
  function getMintingCost(uint totalItems)
    private
    view
    returns (uint256)
  {
    return totalItems * MINT_PRICE;
  }

    function totalTokensMinted() public view returns (uint256) {
        return _counter;
    }

    function totalSupply() public view returns (uint256) {
        return TOTAL_SUPPLY;
    }

   function remainingSupply() public view returns (uint256) {
        return TOTAL_SUPPLY - _counter;
    }


   function setMintPrice(uint256 newPrice) external onlyOwner {
        MINT_PRICE = newPrice;
        MINTING_ALLOWED = false;
    }

    //Set the Base URI
    function setBaseURI(string memory baseURI_) external onlyOwner {
        _baseURIextended = baseURI_;
    }

    function _setTokenURI(uint256 tokenId, string memory _tokenURI)
        internal
        virtual
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI set of nonexistent token"
        );
        _tokenURIs[tokenId] = _tokenURI;
    }

    function setMintingFlag() external onlyOwner {
        MINTING_ALLOWED = !MINTING_ALLOWED;
    }
}

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

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 3 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (utils/Strings.sol)

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 4 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (access/Ownable.sol)

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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 5 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (token/ERC721/ERC721.sol)

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 {
        _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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 6 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (utils/introspection/ERC165.sol)

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 7 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (utils/Context.sol)

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 8 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (token/ERC721/extensions/IERC721Metadata.sol)

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 10 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (token/ERC721/IERC721Receiver.sol)

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 11 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (token/ERC721/IERC721.sol)

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 12 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (utils/introspection/IERC165.sol)

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",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MINTING_ALLOWED","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"requestedTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remainingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setMintingFlag","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"ethAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266b1a2bc2ec500006008556115b36009556000600a60006101000a81548160ff0219169083151502179055506000600c553480156200004257600080fd5b5060405162003f3e38038062003f3e8339818101604052810190620000689190620002ca565b81818160009080519060200190620000829291906200019c565b5080600190805190602001906200009b9291906200019c565b5050506001600681905550620000c6620000ba620000ce60201b60201c565b620000d660201b60201c565b5050620004d3565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001aa90620003e4565b90600052602060002090601f016020900481019282620001ce57600085556200021a565b82601f10620001e957805160ff19168380011785556200021a565b828001600101855582156200021a579182015b8281111562000219578251825591602001919060010190620001fc565b5b5090506200022991906200022d565b5090565b5b80821115620002485760008160009055506001016200022e565b5090565b6000620002636200025d8462000378565b6200034f565b905082815260208101848484011115620002825762000281620004b3565b5b6200028f848285620003ae565b509392505050565b600082601f830112620002af57620002ae620004ae565b5b8151620002c18482602086016200024c565b91505092915050565b60008060408385031215620002e457620002e3620004bd565b5b600083015167ffffffffffffffff811115620003055762000304620004b8565b5b620003138582860162000297565b925050602083015167ffffffffffffffff811115620003375762000336620004b8565b5b620003458582860162000297565b9150509250929050565b60006200035b6200036e565b90506200036982826200041a565b919050565b6000604051905090565b600067ffffffffffffffff8211156200039657620003956200047f565b5b620003a182620004c2565b9050602081019050919050565b60005b83811015620003ce578082015181840152602081019050620003b1565b83811115620003de576000848401525b50505050565b60006002820490506001821680620003fd57607f821691505b6020821081141562000414576200041362000450565b5b50919050565b6200042582620004c2565b810181811067ffffffffffffffff821117156200044757620004466200047f565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b613a5b80620004e36000396000f3fe6080604052600436106101b75760003560e01c8063902d55a5116100ec578063c002d23d1161008a578063e8a3d48511610064578063e8a3d485146105d9578063e985e9c514610604578063f2fde38b14610641578063f4a0a5281461066a576101b7565b8063c002d23d14610546578063c87b56dd14610571578063da0239a6146105ae576101b7565b8063a0712d68116100c6578063a0712d68146104ad578063a22cb465146104c9578063ac2d520a146104f2578063b88d4fde1461051d576101b7565b8063902d55a51461044057806392280fc31461046b57806395d89b4114610482576101b7565b80634782f7791161015957806370a082311161013357806370a0823114610396578063715018a6146103d35780637d549e99146103ea5780638da5cb5b14610415576101b7565b80634782f7791461030757806355f804b3146103305780636352211e14610359576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b557806342842e0e146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906126b0565b610693565b6040516101f09190612c00565b60405180910390f35b34801561020557600080fd5b5061020e610775565b60405161021b9190612c1b565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612753565b610807565b6040516102589190612b99565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612670565b61088c565b005b34801561029657600080fd5b5061029f6109a4565b6040516102ac9190612f1d565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d7919061255a565b6109ae565b005b3480156102ea57600080fd5b506103056004803603810190610300919061255a565b610a0e565b005b34801561031357600080fd5b5061032e60048036038101906103299190612670565b610a2e565b005b34801561033c57600080fd5b506103576004803603810190610352919061270a565b610af5565b005b34801561036557600080fd5b50610380600480360381019061037b9190612753565b610b8b565b60405161038d9190612b99565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b891906124ed565b610c3d565b6040516103ca9190612f1d565b60405180910390f35b3480156103df57600080fd5b506103e8610cf5565b005b3480156103f657600080fd5b506103ff610d7d565b60405161040c9190612f1d565b60405180910390f35b34801561042157600080fd5b5061042a610d87565b6040516104379190612b99565b60405180910390f35b34801561044c57600080fd5b50610455610db1565b6040516104629190612f1d565b60405180910390f35b34801561047757600080fd5b50610480610db7565b005b34801561048e57600080fd5b50610497610e5f565b6040516104a49190612c1b565b60405180910390f35b6104c760048036038101906104c29190612753565b610ef1565b005b3480156104d557600080fd5b506104f060048036038101906104eb9190612630565b61114f565b005b3480156104fe57600080fd5b50610507611165565b6040516105149190612c00565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f91906125ad565b611178565b005b34801561055257600080fd5b5061055b6111da565b6040516105689190612f1d565b60405180910390f35b34801561057d57600080fd5b5061059860048036038101906105939190612753565b6111e0565b6040516105a59190612c1b565b60405180910390f35b3480156105ba57600080fd5b506105c3611353565b6040516105d09190612f1d565b60405180910390f35b3480156105e557600080fd5b506105ee61136a565b6040516105fb9190612c1b565b60405180910390f35b34801561061057600080fd5b5061062b6004803603810190610626919061251a565b611379565b6040516106389190612c00565b60405180910390f35b34801561064d57600080fd5b50610668600480360381019061066391906124ed565b61140d565b005b34801561067657600080fd5b50610691600480360381019061068c9190612753565b611505565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061076e575061076d826115a6565b5b9050919050565b606060008054610784906131cd565b80601f01602080910402602001604051908101604052809291908181526020018280546107b0906131cd565b80156107fd5780601f106107d2576101008083540402835291602001916107fd565b820191906000526020600020905b8154815290600101906020018083116107e057829003601f168201915b5050505050905090565b600061081282611610565b610851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084890612dbd565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089782610b8b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ff90612e5d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661092761167c565b73ffffffffffffffffffffffffffffffffffffffff16148061095657506109558161095061167c565b611379565b5b610995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098c90612d3d565b60405180910390fd5b61099f8383611684565b505050565b6000600954905090565b6109bf6109b961167c565b8261173d565b6109fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f590612e9d565b60405180910390fd5b610a0983838361181b565b505050565b610a2983838360405180602001604052806000815250611178565b505050565b610a3661167c565b73ffffffffffffffffffffffffffffffffffffffff16610a54610d87565b73ffffffffffffffffffffffffffffffffffffffff1614610aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa190612dfd565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610af0573d6000803e3d6000fd5b505050565b610afd61167c565b73ffffffffffffffffffffffffffffffffffffffff16610b1b610d87565b73ffffffffffffffffffffffffffffffffffffffff1614610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6890612dfd565b60405180910390fd5b80600b9080519060200190610b87929190612301565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b90612d7d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca590612d5d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cfd61167c565b73ffffffffffffffffffffffffffffffffffffffff16610d1b610d87565b73ffffffffffffffffffffffffffffffffffffffff1614610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6890612dfd565b60405180910390fd5b610d7b6000611a77565b565b6000600c54905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60095481565b610dbf61167c565b73ffffffffffffffffffffffffffffffffffffffff16610ddd610d87565b73ffffffffffffffffffffffffffffffffffffffff1614610e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2a90612dfd565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b606060018054610e6e906131cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9a906131cd565b8015610ee75780601f10610ebc57610100808354040283529160200191610ee7565b820191906000526020600020905b815481529060010190602001808311610eca57829003601f168201915b5050505050905090565b60026006541415610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e90612edd565b60405180910390fd5b6002600681905550600a60009054906101000a900460ff16610f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8590612c9d565b60405180910390fd5b600c54600954610f9e91906130e3565b811115610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd790612efd565b60405180910390fd5b600a811115611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b90612e7d565b60405180910390fd5b6000600c5460095461103691906130e3565b11611076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106d90612d1d565b60405180910390fd5b600061108182611b3d565b9050803410156110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90612ebd565b60405180910390fd5b60005b82811015611142576110e9336001600c546110e49190613002565b611b54565b6111176001600c546110fb9190613002565b6111126001600c5461110d9190613002565b611d22565b611e83565b600c600081548092919061112a90613230565b9190505550808061113a90613230565b9150506110c9565b5050600160068190555050565b61116161115a61167c565b8383611ef7565b5050565b600a60009054906101000a900460ff1681565b61118961118361167c565b8361173d565b6111c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bf90612e9d565b60405180910390fd5b6111d484848484612064565b50505050565b60085481565b60606111eb82611610565b61122a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122190612e3d565b60405180910390fd5b6000600d6000848152602001908152602001600020805461124a906131cd565b80601f0160208091040260200160405190810160405280929190818152602001828054611276906131cd565b80156112c35780601f10611298576101008083540402835291602001916112c3565b820191906000526020600020905b8154815290600101906020018083116112a657829003601f168201915b5050505050905060006112d46120c0565b90506000815114156112ea57819250505061134e565b60008251111561131f578082604051602001611307929190612b75565b6040516020818303038152906040529250505061134e565b8061132985611d22565b60405160200161133a929190612b75565b604051602081830303815290604052925050505b919050565b6000600c5460095461136591906130e3565b905090565b60606113746120c0565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61141561167c565b73ffffffffffffffffffffffffffffffffffffffff16611433610d87565b73ffffffffffffffffffffffffffffffffffffffff1614611489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148090612dfd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f090612c5d565b60405180910390fd5b61150281611a77565b50565b61150d61167c565b73ffffffffffffffffffffffffffffffffffffffff1661152b610d87565b73ffffffffffffffffffffffffffffffffffffffff1614611581576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157890612dfd565b60405180910390fd5b806008819055506000600a60006101000a81548160ff02191690831515021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166116f783610b8b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061174882611610565b611787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177e90612cfd565b60405180910390fd5b600061179283610b8b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061180157508373ffffffffffffffffffffffffffffffffffffffff166117e984610807565b73ffffffffffffffffffffffffffffffffffffffff16145b8061181257506118118185611379565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661183b82610b8b565b73ffffffffffffffffffffffffffffffffffffffff1614611891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188890612e1d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f890612cbd565b60405180910390fd5b61190c838383612152565b611917600082611684565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461196791906130e3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119be9190613002565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060085482611b4d9190613089565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbb90612d9d565b60405180910390fd5b611bcd81611610565b15611c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0490612c7d565b60405180910390fd5b611c1960008383612152565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c699190613002565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60606000821415611d6a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e7e565b600082905060005b60008214611d9c578080611d8590613230565b915050600a82611d959190613058565b9150611d72565b60008167ffffffffffffffff811115611db857611db7613366565b5b6040519080825280601f01601f191660200182016040528015611dea5781602001600182028036833780820191505090505b5090505b60008514611e7757600182611e0391906130e3565b9150600a85611e129190613279565b6030611e1e9190613002565b60f81b818381518110611e3457611e33613337565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e709190613058565b9450611dee565b8093505050505b919050565b611e8c82611610565b611ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec290612ddd565b60405180910390fd5b80600d60008481526020019081526020016000209080519060200190611ef2929190612301565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5d90612cdd565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120579190612c00565b60405180910390a3505050565b61206f84848461181b565b61207b84848484612157565b6120ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b190612c3d565b60405180910390fd5b50505050565b6060600b80546120cf906131cd565b80601f01602080910402602001604051908101604052809291908181526020018280546120fb906131cd565b80156121485780601f1061211d57610100808354040283529160200191612148565b820191906000526020600020905b81548152906001019060200180831161212b57829003601f168201915b5050505050905090565b505050565b60006121788473ffffffffffffffffffffffffffffffffffffffff166122ee565b156122e1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121a161167c565b8786866040518563ffffffff1660e01b81526004016121c39493929190612bb4565b602060405180830381600087803b1580156121dd57600080fd5b505af192505050801561220e57506040513d601f19601f8201168201806040525081019061220b91906126dd565b60015b612291573d806000811461223e576040519150601f19603f3d011682016040523d82523d6000602084013e612243565b606091505b50600081511415612289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228090612c3d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122e6565b600190505b949350505050565b600080823b905060008111915050919050565b82805461230d906131cd565b90600052602060002090601f01602090048101928261232f5760008555612376565b82601f1061234857805160ff1916838001178555612376565b82800160010185558215612376579182015b8281111561237557825182559160200191906001019061235a565b5b5090506123839190612387565b5090565b5b808211156123a0576000816000905550600101612388565b5090565b60006123b76123b284612f5d565b612f38565b9050828152602081018484840111156123d3576123d261339a565b5b6123de84828561318b565b509392505050565b60006123f96123f484612f8e565b612f38565b9050828152602081018484840111156124155761241461339a565b5b61242084828561318b565b509392505050565b600081359050612437816139c9565b92915050565b60008135905061244c816139e0565b92915050565b600081359050612461816139f7565b92915050565b600081519050612476816139f7565b92915050565b600082601f83011261249157612490613395565b5b81356124a18482602086016123a4565b91505092915050565b600082601f8301126124bf576124be613395565b5b81356124cf8482602086016123e6565b91505092915050565b6000813590506124e781613a0e565b92915050565b600060208284031215612503576125026133a4565b5b600061251184828501612428565b91505092915050565b60008060408385031215612531576125306133a4565b5b600061253f85828601612428565b925050602061255085828601612428565b9150509250929050565b600080600060608486031215612573576125726133a4565b5b600061258186828701612428565b935050602061259286828701612428565b92505060406125a3868287016124d8565b9150509250925092565b600080600080608085870312156125c7576125c66133a4565b5b60006125d587828801612428565b94505060206125e687828801612428565b93505060406125f7878288016124d8565b925050606085013567ffffffffffffffff8111156126185761261761339f565b5b6126248782880161247c565b91505092959194509250565b60008060408385031215612647576126466133a4565b5b600061265585828601612428565b92505060206126668582860161243d565b9150509250929050565b60008060408385031215612687576126866133a4565b5b600061269585828601612428565b92505060206126a6858286016124d8565b9150509250929050565b6000602082840312156126c6576126c56133a4565b5b60006126d484828501612452565b91505092915050565b6000602082840312156126f3576126f26133a4565b5b600061270184828501612467565b91505092915050565b6000602082840312156127205761271f6133a4565b5b600082013567ffffffffffffffff81111561273e5761273d61339f565b5b61274a848285016124aa565b91505092915050565b600060208284031215612769576127686133a4565b5b6000612777848285016124d8565b91505092915050565b61278981613117565b82525050565b61279881613129565b82525050565b60006127a982612fbf565b6127b38185612fd5565b93506127c381856020860161319a565b6127cc816133a9565b840191505092915050565b60006127e282612fca565b6127ec8185612fe6565b93506127fc81856020860161319a565b612805816133a9565b840191505092915050565b600061281b82612fca565b6128258185612ff7565b935061283581856020860161319a565b80840191505092915050565b600061284e603283612fe6565b9150612859826133ba565b604082019050919050565b6000612871602683612fe6565b915061287c82613409565b604082019050919050565b6000612894601c83612fe6565b915061289f82613458565b602082019050919050565b60006128b7601683612fe6565b91506128c282613481565b602082019050919050565b60006128da602483612fe6565b91506128e5826134aa565b604082019050919050565b60006128fd601983612fe6565b9150612908826134f9565b602082019050919050565b6000612920602c83612fe6565b915061292b82613522565b604082019050919050565b6000612943604383612fe6565b915061294e82613571565b606082019050919050565b6000612966603883612fe6565b9150612971826135e6565b604082019050919050565b6000612989602a83612fe6565b915061299482613635565b604082019050919050565b60006129ac602983612fe6565b91506129b782613684565b604082019050919050565b60006129cf602083612fe6565b91506129da826136d3565b602082019050919050565b60006129f2602c83612fe6565b91506129fd826136fc565b604082019050919050565b6000612a15602c83612fe6565b9150612a208261374b565b604082019050919050565b6000612a38602083612fe6565b9150612a438261379a565b602082019050919050565b6000612a5b602983612fe6565b9150612a66826137c3565b604082019050919050565b6000612a7e602f83612fe6565b9150612a8982613812565b604082019050919050565b6000612aa1602183612fe6565b9150612aac82613861565b604082019050919050565b6000612ac4603883612fe6565b9150612acf826138b0565b604082019050919050565b6000612ae7603183612fe6565b9150612af2826138ff565b604082019050919050565b6000612b0a601183612fe6565b9150612b158261394e565b602082019050919050565b6000612b2d601f83612fe6565b9150612b3882613977565b602082019050919050565b6000612b50602083612fe6565b9150612b5b826139a0565b602082019050919050565b612b6f81613181565b82525050565b6000612b818285612810565b9150612b8d8284612810565b91508190509392505050565b6000602082019050612bae6000830184612780565b92915050565b6000608082019050612bc96000830187612780565b612bd66020830186612780565b612be36040830185612b66565b8181036060830152612bf5818461279e565b905095945050505050565b6000602082019050612c15600083018461278f565b92915050565b60006020820190508181036000830152612c3581846127d7565b905092915050565b60006020820190508181036000830152612c5681612841565b9050919050565b60006020820190508181036000830152612c7681612864565b9050919050565b60006020820190508181036000830152612c9681612887565b9050919050565b60006020820190508181036000830152612cb6816128aa565b9050919050565b60006020820190508181036000830152612cd6816128cd565b9050919050565b60006020820190508181036000830152612cf6816128f0565b9050919050565b60006020820190508181036000830152612d1681612913565b9050919050565b60006020820190508181036000830152612d3681612936565b9050919050565b60006020820190508181036000830152612d5681612959565b9050919050565b60006020820190508181036000830152612d768161297c565b9050919050565b60006020820190508181036000830152612d968161299f565b9050919050565b60006020820190508181036000830152612db6816129c2565b9050919050565b60006020820190508181036000830152612dd6816129e5565b9050919050565b60006020820190508181036000830152612df681612a08565b9050919050565b60006020820190508181036000830152612e1681612a2b565b9050919050565b60006020820190508181036000830152612e3681612a4e565b9050919050565b60006020820190508181036000830152612e5681612a71565b9050919050565b60006020820190508181036000830152612e7681612a94565b9050919050565b60006020820190508181036000830152612e9681612ab7565b9050919050565b60006020820190508181036000830152612eb681612ada565b9050919050565b60006020820190508181036000830152612ed681612afd565b9050919050565b60006020820190508181036000830152612ef681612b20565b9050919050565b60006020820190508181036000830152612f1681612b43565b9050919050565b6000602082019050612f326000830184612b66565b92915050565b6000612f42612f53565b9050612f4e82826131ff565b919050565b6000604051905090565b600067ffffffffffffffff821115612f7857612f77613366565b5b612f81826133a9565b9050602081019050919050565b600067ffffffffffffffff821115612fa957612fa8613366565b5b612fb2826133a9565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061300d82613181565b915061301883613181565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561304d5761304c6132aa565b5b828201905092915050565b600061306382613181565b915061306e83613181565b92508261307e5761307d6132d9565b5b828204905092915050565b600061309482613181565b915061309f83613181565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130d8576130d76132aa565b5b828202905092915050565b60006130ee82613181565b91506130f983613181565b92508282101561310c5761310b6132aa565b5b828203905092915050565b600061312282613161565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156131b857808201518184015260208101905061319d565b838111156131c7576000848401525b50505050565b600060028204905060018216806131e557607f821691505b602082108114156131f9576131f8613308565b5b50919050565b613208826133a9565b810181811067ffffffffffffffff8211171561322757613226613366565b5b80604052505050565b600061323b82613181565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561326e5761326d6132aa565b5b600182019050919050565b600061328482613181565b915061328f83613181565b92508261329f5761329e6132d9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d696e74696e67206973206e6f7420616c6c6f77656400000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f44445a2073686172657320617265206e6f7720736f6c64206f75742120506c6560008201527f61736520636865636b204f70656e53656120746f20707572636861736520444460208201527f5a202e0000000000000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f557020746f20313020746f6b656e7320616c6c6f77656420696e20612073696e60008201527f676c65206d696e74696e67207472616e73616374696f6e2e0000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e74204761732e000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5468657265206172656e27742074686973206d616e792044445a206c6566742e600082015250565b6139d281613117565b81146139dd57600080fd5b50565b6139e981613129565b81146139f457600080fd5b50565b613a0081613135565b8114613a0b57600080fd5b50565b613a1781613181565b8114613a2257600080fd5b5056fea264697066735822122024ea33b833ac6a801510c1d8bff5cc70703f5d98baeb64ca7efae70344ec86a764736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000a446f6f646c4475636b7a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000344445a0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c8063902d55a5116100ec578063c002d23d1161008a578063e8a3d48511610064578063e8a3d485146105d9578063e985e9c514610604578063f2fde38b14610641578063f4a0a5281461066a576101b7565b8063c002d23d14610546578063c87b56dd14610571578063da0239a6146105ae576101b7565b8063a0712d68116100c6578063a0712d68146104ad578063a22cb465146104c9578063ac2d520a146104f2578063b88d4fde1461051d576101b7565b8063902d55a51461044057806392280fc31461046b57806395d89b4114610482576101b7565b80634782f7791161015957806370a082311161013357806370a0823114610396578063715018a6146103d35780637d549e99146103ea5780638da5cb5b14610415576101b7565b80634782f7791461030757806355f804b3146103305780636352211e14610359576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b557806342842e0e146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906126b0565b610693565b6040516101f09190612c00565b60405180910390f35b34801561020557600080fd5b5061020e610775565b60405161021b9190612c1b565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612753565b610807565b6040516102589190612b99565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612670565b61088c565b005b34801561029657600080fd5b5061029f6109a4565b6040516102ac9190612f1d565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d7919061255a565b6109ae565b005b3480156102ea57600080fd5b506103056004803603810190610300919061255a565b610a0e565b005b34801561031357600080fd5b5061032e60048036038101906103299190612670565b610a2e565b005b34801561033c57600080fd5b506103576004803603810190610352919061270a565b610af5565b005b34801561036557600080fd5b50610380600480360381019061037b9190612753565b610b8b565b60405161038d9190612b99565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b891906124ed565b610c3d565b6040516103ca9190612f1d565b60405180910390f35b3480156103df57600080fd5b506103e8610cf5565b005b3480156103f657600080fd5b506103ff610d7d565b60405161040c9190612f1d565b60405180910390f35b34801561042157600080fd5b5061042a610d87565b6040516104379190612b99565b60405180910390f35b34801561044c57600080fd5b50610455610db1565b6040516104629190612f1d565b60405180910390f35b34801561047757600080fd5b50610480610db7565b005b34801561048e57600080fd5b50610497610e5f565b6040516104a49190612c1b565b60405180910390f35b6104c760048036038101906104c29190612753565b610ef1565b005b3480156104d557600080fd5b506104f060048036038101906104eb9190612630565b61114f565b005b3480156104fe57600080fd5b50610507611165565b6040516105149190612c00565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f91906125ad565b611178565b005b34801561055257600080fd5b5061055b6111da565b6040516105689190612f1d565b60405180910390f35b34801561057d57600080fd5b5061059860048036038101906105939190612753565b6111e0565b6040516105a59190612c1b565b60405180910390f35b3480156105ba57600080fd5b506105c3611353565b6040516105d09190612f1d565b60405180910390f35b3480156105e557600080fd5b506105ee61136a565b6040516105fb9190612c1b565b60405180910390f35b34801561061057600080fd5b5061062b6004803603810190610626919061251a565b611379565b6040516106389190612c00565b60405180910390f35b34801561064d57600080fd5b50610668600480360381019061066391906124ed565b61140d565b005b34801561067657600080fd5b50610691600480360381019061068c9190612753565b611505565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061076e575061076d826115a6565b5b9050919050565b606060008054610784906131cd565b80601f01602080910402602001604051908101604052809291908181526020018280546107b0906131cd565b80156107fd5780601f106107d2576101008083540402835291602001916107fd565b820191906000526020600020905b8154815290600101906020018083116107e057829003601f168201915b5050505050905090565b600061081282611610565b610851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084890612dbd565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089782610b8b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ff90612e5d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661092761167c565b73ffffffffffffffffffffffffffffffffffffffff16148061095657506109558161095061167c565b611379565b5b610995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098c90612d3d565b60405180910390fd5b61099f8383611684565b505050565b6000600954905090565b6109bf6109b961167c565b8261173d565b6109fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f590612e9d565b60405180910390fd5b610a0983838361181b565b505050565b610a2983838360405180602001604052806000815250611178565b505050565b610a3661167c565b73ffffffffffffffffffffffffffffffffffffffff16610a54610d87565b73ffffffffffffffffffffffffffffffffffffffff1614610aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa190612dfd565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610af0573d6000803e3d6000fd5b505050565b610afd61167c565b73ffffffffffffffffffffffffffffffffffffffff16610b1b610d87565b73ffffffffffffffffffffffffffffffffffffffff1614610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6890612dfd565b60405180910390fd5b80600b9080519060200190610b87929190612301565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b90612d7d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca590612d5d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cfd61167c565b73ffffffffffffffffffffffffffffffffffffffff16610d1b610d87565b73ffffffffffffffffffffffffffffffffffffffff1614610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6890612dfd565b60405180910390fd5b610d7b6000611a77565b565b6000600c54905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60095481565b610dbf61167c565b73ffffffffffffffffffffffffffffffffffffffff16610ddd610d87565b73ffffffffffffffffffffffffffffffffffffffff1614610e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2a90612dfd565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b606060018054610e6e906131cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9a906131cd565b8015610ee75780601f10610ebc57610100808354040283529160200191610ee7565b820191906000526020600020905b815481529060010190602001808311610eca57829003601f168201915b5050505050905090565b60026006541415610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e90612edd565b60405180910390fd5b6002600681905550600a60009054906101000a900460ff16610f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8590612c9d565b60405180910390fd5b600c54600954610f9e91906130e3565b811115610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd790612efd565b60405180910390fd5b600a811115611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b90612e7d565b60405180910390fd5b6000600c5460095461103691906130e3565b11611076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106d90612d1d565b60405180910390fd5b600061108182611b3d565b9050803410156110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90612ebd565b60405180910390fd5b60005b82811015611142576110e9336001600c546110e49190613002565b611b54565b6111176001600c546110fb9190613002565b6111126001600c5461110d9190613002565b611d22565b611e83565b600c600081548092919061112a90613230565b9190505550808061113a90613230565b9150506110c9565b5050600160068190555050565b61116161115a61167c565b8383611ef7565b5050565b600a60009054906101000a900460ff1681565b61118961118361167c565b8361173d565b6111c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bf90612e9d565b60405180910390fd5b6111d484848484612064565b50505050565b60085481565b60606111eb82611610565b61122a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122190612e3d565b60405180910390fd5b6000600d6000848152602001908152602001600020805461124a906131cd565b80601f0160208091040260200160405190810160405280929190818152602001828054611276906131cd565b80156112c35780601f10611298576101008083540402835291602001916112c3565b820191906000526020600020905b8154815290600101906020018083116112a657829003601f168201915b5050505050905060006112d46120c0565b90506000815114156112ea57819250505061134e565b60008251111561131f578082604051602001611307929190612b75565b6040516020818303038152906040529250505061134e565b8061132985611d22565b60405160200161133a929190612b75565b604051602081830303815290604052925050505b919050565b6000600c5460095461136591906130e3565b905090565b60606113746120c0565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61141561167c565b73ffffffffffffffffffffffffffffffffffffffff16611433610d87565b73ffffffffffffffffffffffffffffffffffffffff1614611489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148090612dfd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f090612c5d565b60405180910390fd5b61150281611a77565b50565b61150d61167c565b73ffffffffffffffffffffffffffffffffffffffff1661152b610d87565b73ffffffffffffffffffffffffffffffffffffffff1614611581576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157890612dfd565b60405180910390fd5b806008819055506000600a60006101000a81548160ff02191690831515021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166116f783610b8b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061174882611610565b611787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177e90612cfd565b60405180910390fd5b600061179283610b8b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061180157508373ffffffffffffffffffffffffffffffffffffffff166117e984610807565b73ffffffffffffffffffffffffffffffffffffffff16145b8061181257506118118185611379565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661183b82610b8b565b73ffffffffffffffffffffffffffffffffffffffff1614611891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188890612e1d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f890612cbd565b60405180910390fd5b61190c838383612152565b611917600082611684565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461196791906130e3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119be9190613002565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060085482611b4d9190613089565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbb90612d9d565b60405180910390fd5b611bcd81611610565b15611c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0490612c7d565b60405180910390fd5b611c1960008383612152565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c699190613002565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60606000821415611d6a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e7e565b600082905060005b60008214611d9c578080611d8590613230565b915050600a82611d959190613058565b9150611d72565b60008167ffffffffffffffff811115611db857611db7613366565b5b6040519080825280601f01601f191660200182016040528015611dea5781602001600182028036833780820191505090505b5090505b60008514611e7757600182611e0391906130e3565b9150600a85611e129190613279565b6030611e1e9190613002565b60f81b818381518110611e3457611e33613337565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e709190613058565b9450611dee565b8093505050505b919050565b611e8c82611610565b611ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec290612ddd565b60405180910390fd5b80600d60008481526020019081526020016000209080519060200190611ef2929190612301565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5d90612cdd565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120579190612c00565b60405180910390a3505050565b61206f84848461181b565b61207b84848484612157565b6120ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b190612c3d565b60405180910390fd5b50505050565b6060600b80546120cf906131cd565b80601f01602080910402602001604051908101604052809291908181526020018280546120fb906131cd565b80156121485780601f1061211d57610100808354040283529160200191612148565b820191906000526020600020905b81548152906001019060200180831161212b57829003601f168201915b5050505050905090565b505050565b60006121788473ffffffffffffffffffffffffffffffffffffffff166122ee565b156122e1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121a161167c565b8786866040518563ffffffff1660e01b81526004016121c39493929190612bb4565b602060405180830381600087803b1580156121dd57600080fd5b505af192505050801561220e57506040513d601f19601f8201168201806040525081019061220b91906126dd565b60015b612291573d806000811461223e576040519150601f19603f3d011682016040523d82523d6000602084013e612243565b606091505b50600081511415612289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228090612c3d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122e6565b600190505b949350505050565b600080823b905060008111915050919050565b82805461230d906131cd565b90600052602060002090601f01602090048101928261232f5760008555612376565b82601f1061234857805160ff1916838001178555612376565b82800160010185558215612376579182015b8281111561237557825182559160200191906001019061235a565b5b5090506123839190612387565b5090565b5b808211156123a0576000816000905550600101612388565b5090565b60006123b76123b284612f5d565b612f38565b9050828152602081018484840111156123d3576123d261339a565b5b6123de84828561318b565b509392505050565b60006123f96123f484612f8e565b612f38565b9050828152602081018484840111156124155761241461339a565b5b61242084828561318b565b509392505050565b600081359050612437816139c9565b92915050565b60008135905061244c816139e0565b92915050565b600081359050612461816139f7565b92915050565b600081519050612476816139f7565b92915050565b600082601f83011261249157612490613395565b5b81356124a18482602086016123a4565b91505092915050565b600082601f8301126124bf576124be613395565b5b81356124cf8482602086016123e6565b91505092915050565b6000813590506124e781613a0e565b92915050565b600060208284031215612503576125026133a4565b5b600061251184828501612428565b91505092915050565b60008060408385031215612531576125306133a4565b5b600061253f85828601612428565b925050602061255085828601612428565b9150509250929050565b600080600060608486031215612573576125726133a4565b5b600061258186828701612428565b935050602061259286828701612428565b92505060406125a3868287016124d8565b9150509250925092565b600080600080608085870312156125c7576125c66133a4565b5b60006125d587828801612428565b94505060206125e687828801612428565b93505060406125f7878288016124d8565b925050606085013567ffffffffffffffff8111156126185761261761339f565b5b6126248782880161247c565b91505092959194509250565b60008060408385031215612647576126466133a4565b5b600061265585828601612428565b92505060206126668582860161243d565b9150509250929050565b60008060408385031215612687576126866133a4565b5b600061269585828601612428565b92505060206126a6858286016124d8565b9150509250929050565b6000602082840312156126c6576126c56133a4565b5b60006126d484828501612452565b91505092915050565b6000602082840312156126f3576126f26133a4565b5b600061270184828501612467565b91505092915050565b6000602082840312156127205761271f6133a4565b5b600082013567ffffffffffffffff81111561273e5761273d61339f565b5b61274a848285016124aa565b91505092915050565b600060208284031215612769576127686133a4565b5b6000612777848285016124d8565b91505092915050565b61278981613117565b82525050565b61279881613129565b82525050565b60006127a982612fbf565b6127b38185612fd5565b93506127c381856020860161319a565b6127cc816133a9565b840191505092915050565b60006127e282612fca565b6127ec8185612fe6565b93506127fc81856020860161319a565b612805816133a9565b840191505092915050565b600061281b82612fca565b6128258185612ff7565b935061283581856020860161319a565b80840191505092915050565b600061284e603283612fe6565b9150612859826133ba565b604082019050919050565b6000612871602683612fe6565b915061287c82613409565b604082019050919050565b6000612894601c83612fe6565b915061289f82613458565b602082019050919050565b60006128b7601683612fe6565b91506128c282613481565b602082019050919050565b60006128da602483612fe6565b91506128e5826134aa565b604082019050919050565b60006128fd601983612fe6565b9150612908826134f9565b602082019050919050565b6000612920602c83612fe6565b915061292b82613522565b604082019050919050565b6000612943604383612fe6565b915061294e82613571565b606082019050919050565b6000612966603883612fe6565b9150612971826135e6565b604082019050919050565b6000612989602a83612fe6565b915061299482613635565b604082019050919050565b60006129ac602983612fe6565b91506129b782613684565b604082019050919050565b60006129cf602083612fe6565b91506129da826136d3565b602082019050919050565b60006129f2602c83612fe6565b91506129fd826136fc565b604082019050919050565b6000612a15602c83612fe6565b9150612a208261374b565b604082019050919050565b6000612a38602083612fe6565b9150612a438261379a565b602082019050919050565b6000612a5b602983612fe6565b9150612a66826137c3565b604082019050919050565b6000612a7e602f83612fe6565b9150612a8982613812565b604082019050919050565b6000612aa1602183612fe6565b9150612aac82613861565b604082019050919050565b6000612ac4603883612fe6565b9150612acf826138b0565b604082019050919050565b6000612ae7603183612fe6565b9150612af2826138ff565b604082019050919050565b6000612b0a601183612fe6565b9150612b158261394e565b602082019050919050565b6000612b2d601f83612fe6565b9150612b3882613977565b602082019050919050565b6000612b50602083612fe6565b9150612b5b826139a0565b602082019050919050565b612b6f81613181565b82525050565b6000612b818285612810565b9150612b8d8284612810565b91508190509392505050565b6000602082019050612bae6000830184612780565b92915050565b6000608082019050612bc96000830187612780565b612bd66020830186612780565b612be36040830185612b66565b8181036060830152612bf5818461279e565b905095945050505050565b6000602082019050612c15600083018461278f565b92915050565b60006020820190508181036000830152612c3581846127d7565b905092915050565b60006020820190508181036000830152612c5681612841565b9050919050565b60006020820190508181036000830152612c7681612864565b9050919050565b60006020820190508181036000830152612c9681612887565b9050919050565b60006020820190508181036000830152612cb6816128aa565b9050919050565b60006020820190508181036000830152612cd6816128cd565b9050919050565b60006020820190508181036000830152612cf6816128f0565b9050919050565b60006020820190508181036000830152612d1681612913565b9050919050565b60006020820190508181036000830152612d3681612936565b9050919050565b60006020820190508181036000830152612d5681612959565b9050919050565b60006020820190508181036000830152612d768161297c565b9050919050565b60006020820190508181036000830152612d968161299f565b9050919050565b60006020820190508181036000830152612db6816129c2565b9050919050565b60006020820190508181036000830152612dd6816129e5565b9050919050565b60006020820190508181036000830152612df681612a08565b9050919050565b60006020820190508181036000830152612e1681612a2b565b9050919050565b60006020820190508181036000830152612e3681612a4e565b9050919050565b60006020820190508181036000830152612e5681612a71565b9050919050565b60006020820190508181036000830152612e7681612a94565b9050919050565b60006020820190508181036000830152612e9681612ab7565b9050919050565b60006020820190508181036000830152612eb681612ada565b9050919050565b60006020820190508181036000830152612ed681612afd565b9050919050565b60006020820190508181036000830152612ef681612b20565b9050919050565b60006020820190508181036000830152612f1681612b43565b9050919050565b6000602082019050612f326000830184612b66565b92915050565b6000612f42612f53565b9050612f4e82826131ff565b919050565b6000604051905090565b600067ffffffffffffffff821115612f7857612f77613366565b5b612f81826133a9565b9050602081019050919050565b600067ffffffffffffffff821115612fa957612fa8613366565b5b612fb2826133a9565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061300d82613181565b915061301883613181565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561304d5761304c6132aa565b5b828201905092915050565b600061306382613181565b915061306e83613181565b92508261307e5761307d6132d9565b5b828204905092915050565b600061309482613181565b915061309f83613181565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130d8576130d76132aa565b5b828202905092915050565b60006130ee82613181565b91506130f983613181565b92508282101561310c5761310b6132aa565b5b828203905092915050565b600061312282613161565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156131b857808201518184015260208101905061319d565b838111156131c7576000848401525b50505050565b600060028204905060018216806131e557607f821691505b602082108114156131f9576131f8613308565b5b50919050565b613208826133a9565b810181811067ffffffffffffffff8211171561322757613226613366565b5b80604052505050565b600061323b82613181565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561326e5761326d6132aa565b5b600182019050919050565b600061328482613181565b915061328f83613181565b92508261329f5761329e6132d9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d696e74696e67206973206e6f7420616c6c6f77656400000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f44445a2073686172657320617265206e6f7720736f6c64206f75742120506c6560008201527f61736520636865636b204f70656e53656120746f20707572636861736520444460208201527f5a202e0000000000000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f557020746f20313020746f6b656e7320616c6c6f77656420696e20612073696e60008201527f676c65206d696e74696e67207472616e73616374696f6e2e0000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e74204761732e000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5468657265206172656e27742074686973206d616e792044445a206c6566742e600082015250565b6139d281613117565b81146139dd57600080fd5b50565b6139e981613129565b81146139f457600080fd5b50565b613a0081613135565b8114613a0b57600080fd5b50565b613a1781613181565b8114613a2257600080fd5b5056fea264697066735822122024ea33b833ac6a801510c1d8bff5cc70703f5d98baeb64ca7efae70344ec86a764736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000a446f6f646c4475636b7a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000344445a0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): DoodlDuckz
Arg [1] : _symbol (string): DDZ

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [3] : 446f6f646c4475636b7a00000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 44445a0000000000000000000000000000000000000000000000000000000000


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.