ETH Price: $2,698.65 (+10.88%)
Gas: 2 Gwei

Token

Hot Pop Soul Drop (HotPop)
 

Overview

Max Total Supply

40 HotPop

Holders

17

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 HotPop
0xE3A8783e0345Aa147Cb1e4fcFD4dAd36Fa39c393
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:
SoulFoodBrotherAndSister

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : SFBFreemint.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

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

contract SoulFoodBrotherAndSister is ERC721, ReentrancyGuard, Ownable {
  using Counters for Counters.Counter;

  Counters.Counter private _tokenIdCounter;

  constructor(string memory customBaseURI_)
    ERC721("Hot Pop Soul Drop", "HotPop")
  {
    customBaseURI = customBaseURI_;
  }

  /** MINTING **/

  uint256 public constant MAX_SUPPLY = 40;

  uint256 public constant MAX_MULTIMINT = 20;

  Counters.Counter private supplyCounter;

  mapping(address => uint8) private whitelist;

function mint(uint256 count) public nonReentrant {
    require(saleIsActive, "Sale not active");

    require(totalSupply() + count - 1 < MAX_SUPPLY, "Exceeds max supply");

    require(count <= MAX_MULTIMINT, "Mint at most 20 at a time");

    for (uint256 i = 0; i < count; i++) {
      _mint(msg.sender, totalSupply());

      supplyCounter.increment();
    }
  }

function whitelistMint(uint256 count) public nonReentrant {
    require(whiteListMintEnabled, " White List Sale not active");
    require(count <= whitelist[msg.sender], "Not on whitelist");

    require(totalSupply() + count - 1 < MAX_SUPPLY, "Exceeds max supply");

    require(count <= MAX_MULTIMINT, "Mint at most 20 at a time");

    for (uint256 i = 0; i < count; i++) {
      _mint(msg.sender, totalSupply());

      supplyCounter.increment();
    }
  }

  function NumOfWhiteListMints(address addr) external view returns (uint8) {
    return whitelist[addr];
  }


function setWhitelist(address[] calldata addresses, uint8 numAllowedToMint) external onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      whitelist[addresses[i]] = numAllowedToMint;
    }
  }





  function totalSupply() public view returns (uint256) {
    return supplyCounter.current();
  }



  /** ACTIVATION **/

  bool public saleIsActive = true;

  function setSaleIsActive(bool saleIsActive_) external onlyOwner {
    saleIsActive = saleIsActive_;
  }
  
  bool public whiteListMintEnabled = false;
  
  function setWhiteListMintEnabled(bool whiteListMintEnabled_) external onlyOwner {
    whiteListMintEnabled = whiteListMintEnabled_;
  }
  /** URI HANDLING **/

  string private customBaseURI;

  function setBaseURI(string memory customBaseURI_) external onlyOwner {
    customBaseURI = customBaseURI_;
  }

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


}

File 2 of 13 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 3 of 13 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

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 making 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 4 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 6 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 8 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 9 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 11 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 12 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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":"customBaseURI_","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":"MAX_MULTIMINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"NumOfWhiteListMints","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"saleIsActive_","type":"bool"}],"name":"setSaleIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"whiteListMintEnabled_","type":"bool"}],"name":"setWhiteListMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint8","name":"numAllowedToMint","type":"uint8"}],"name":"setWhitelist","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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whiteListMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055503480156200004757600080fd5b50604051620042d0380380620042d083398181016040528101906200006d9190620003ab565b6040518060400160405280601181526020017f486f7420506f7020536f756c2044726f700000000000000000000000000000008152506040518060400160405280600681526020017f486f74506f7000000000000000000000000000000000000000000000000000008152508160009081620000ea919062000647565b508060019081620000fc919062000647565b5050506001600681905550620001276200011b6200014060201b60201c565b6200014860201b60201c565b80600c908162000138919062000647565b50506200072e565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000277826200022c565b810181811067ffffffffffffffff821117156200029957620002986200023d565b5b80604052505050565b6000620002ae6200020e565b9050620002bc82826200026c565b919050565b600067ffffffffffffffff821115620002df57620002de6200023d565b5b620002ea826200022c565b9050602081019050919050565b60005b8381101562000317578082015181840152602081019050620002fa565b8381111562000327576000848401525b50505050565b6000620003446200033e84620002c1565b620002a2565b90508281526020810184848401111562000363576200036262000227565b5b62000370848285620002f7565b509392505050565b600082601f83011262000390576200038f62000222565b5b8151620003a28482602086016200032d565b91505092915050565b600060208284031215620003c457620003c362000218565b5b600082015167ffffffffffffffff811115620003e557620003e46200021d565b5b620003f38482850162000378565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200044f57607f821691505b60208210810362000465576200046462000407565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004cf7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000490565b620004db868362000490565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000528620005226200051c84620004f3565b620004fd565b620004f3565b9050919050565b6000819050919050565b620005448362000507565b6200055c62000553826200052f565b8484546200049d565b825550505050565b600090565b6200057362000564565b6200058081848462000539565b505050565b5b81811015620005a8576200059c60008262000569565b60018101905062000586565b5050565b601f821115620005f757620005c1816200046b565b620005cc8462000480565b81016020851015620005dc578190505b620005f4620005eb8562000480565b83018262000585565b50505b505050565b600082821c905092915050565b60006200061c60001984600802620005fc565b1980831691505092915050565b600062000637838362000609565b9150826002028217905092915050565b6200065282620003fc565b67ffffffffffffffff8111156200066e576200066d6200023d565b5b6200067a825462000436565b62000687828285620005ac565b600060209050601f831160018114620006bf5760008415620006aa578287015190505b620006b6858262000629565b86555062000726565b601f198416620006cf866200046b565b60005b82811015620006f957848901518255600182019150602085019450602081019050620006d2565b8683101562000719578489015162000715601f89168262000609565b8355505b6001600288020188555050505b505050505050565b613b92806200073e6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c8063715018a6116100f9578063b88d4fde11610097578063ceb68a9211610071578063ceb68a92146104dd578063e985e9c5146104f9578063eb8d244414610529578063f2fde38b14610547576101c4565b8063b88d4fde14610473578063b8fc10511461048f578063c87b56dd146104ad576101c4565b806395d89b41116100d357806395d89b411461040157806397495d711461041f578063a0712d681461043b578063a22cb46514610457576101c4565b8063715018a6146103bd578063868ff4a2146103c75780638da5cb5b146103e3576101c4565b806332cb6b0c11610166578063555f547511610140578063555f54751461031157806355f804b3146103415780636352211e1461035d57806370a082311461038d576101c4565b806332cb6b0c146102b95780633cc090de146102d757806342842e0e146102f5576101c4565b8063081812fc116101a2578063081812fc14610233578063095ea7b31461026357806318160ddd1461027f57806323b872dd1461029d576101c4565b806301ffc9a7146101c957806302c88989146101f957806306fdde0314610215575b600080fd5b6101e360048036038101906101de91906122d9565b610563565b6040516101f09190612321565b60405180910390f35b610213600480360381019061020e9190612368565b610645565b005b61021d6106de565b60405161022a919061242e565b60405180910390f35b61024d60048036038101906102489190612486565b610770565b60405161025a91906124f4565b60405180910390f35b61027d6004803603810190610278919061253b565b6107f5565b005b61028761090c565b604051610294919061258a565b60405180910390f35b6102b760048036038101906102b291906125a5565b61091d565b005b6102c161097d565b6040516102ce919061258a565b60405180910390f35b6102df610982565b6040516102ec9190612321565b60405180910390f35b61030f600480360381019061030a91906125a5565b610995565b005b61032b600480360381019061032691906125f8565b6109b5565b6040516103389190612641565b60405180910390f35b61035b60048036038101906103569190612791565b610a0b565b005b61037760048036038101906103729190612486565b610a9a565b60405161038491906124f4565b60405180910390f35b6103a760048036038101906103a291906125f8565b610b4b565b6040516103b4919061258a565b60405180910390f35b6103c5610c02565b005b6103e160048036038101906103dc9190612486565b610c8a565b005b6103eb610ea2565b6040516103f891906124f4565b60405180910390f35b610409610ecc565b604051610416919061242e565b60405180910390f35b61043960048036038101906104349190612866565b610f5e565b005b61045560048036038101906104509190612486565b611080565b005b610471600480360381019061046c91906128c6565b611206565b005b61048d600480360381019061048891906129a7565b61121c565b005b61049761127e565b6040516104a4919061258a565b60405180910390f35b6104c760048036038101906104c29190612486565b611283565b6040516104d4919061242e565b60405180910390f35b6104f760048036038101906104f29190612368565b61132a565b005b610513600480360381019061050e9190612a2a565b6113c3565b6040516105209190612321565b60405180910390f35b610531611457565b60405161053e9190612321565b60405180910390f35b610561600480360381019061055c91906125f8565b61146a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061062e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061063e575061063d82611561565b5b9050919050565b61064d6115cb565b73ffffffffffffffffffffffffffffffffffffffff1661066b610ea2565b73ffffffffffffffffffffffffffffffffffffffff16146106c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b890612ab6565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6060600080546106ed90612b05565b80601f016020809104026020016040519081016040528092919081815260200182805461071990612b05565b80156107665780601f1061073b57610100808354040283529160200191610766565b820191906000526020600020905b81548152906001019060200180831161074957829003601f168201915b5050505050905090565b600061077b826115d3565b6107ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b190612ba8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080082610a9a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610870576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086790612c3a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661088f6115cb565b73ffffffffffffffffffffffffffffffffffffffff1614806108be57506108bd816108b86115cb565b6113c3565b5b6108fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f490612ccc565b60405180910390fd5b610907838361163f565b505050565b600061091860096116f8565b905090565b61092e6109286115cb565b82611706565b61096d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096490612d5e565b60405180910390fd5b6109788383836117e4565b505050565b602881565b600b60019054906101000a900460ff1681565b6109b08383836040518060200160405280600081525061121c565b505050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610a136115cb565b73ffffffffffffffffffffffffffffffffffffffff16610a31610ea2565b73ffffffffffffffffffffffffffffffffffffffff1614610a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7e90612ab6565b60405180910390fd5b80600c9081610a969190612f2a565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b399061306e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290613100565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c0a6115cb565b73ffffffffffffffffffffffffffffffffffffffff16610c28610ea2565b73ffffffffffffffffffffffffffffffffffffffff1614610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590612ab6565b60405180910390fd5b610c886000611a4a565b565b600260065403610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc69061316c565b60405180910390fd5b6002600681905550600b60019054906101000a900460ff16610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d906131d8565b60405180910390fd5b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16811115610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf90613244565b60405180910390fd5b6028600182610dc561090c565b610dcf9190613293565b610dd991906132e9565b10610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1090613369565b60405180910390fd5b6014811115610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e54906133d5565b60405180910390fd5b60005b81811015610e9657610e7933610e7461090c565b611b10565b610e836009611ce9565b8080610e8e906133f5565b915050610e60565b50600160068190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610edb90612b05565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0790612b05565b8015610f545780601f10610f2957610100808354040283529160200191610f54565b820191906000526020600020905b815481529060010190602001808311610f3757829003601f168201915b5050505050905090565b610f666115cb565b73ffffffffffffffffffffffffffffffffffffffff16610f84610ea2565b73ffffffffffffffffffffffffffffffffffffffff1614610fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd190612ab6565b60405180910390fd5b60005b8383905081101561107a5781600a600086868581811061100057610fff61343d565b5b905060200201602081019061101591906125f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508080611072906133f5565b915050610fdd565b50505050565b6002600654036110c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bc9061316c565b60405180910390fd5b6002600681905550600b60009054906101000a900460ff1661111c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611113906134b8565b60405180910390fd5b602860018261112961090c565b6111339190613293565b61113d91906132e9565b1061117d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117490613369565b60405180910390fd5b60148111156111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b8906133d5565b60405180910390fd5b60005b818110156111fa576111dd336111d861090c565b611b10565b6111e76009611ce9565b80806111f2906133f5565b9150506111c4565b50600160068190555050565b6112186112116115cb565b8383611cff565b5050565b61122d6112276115cb565b83611706565b61126c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126390612d5e565b60405180910390fd5b61127884848484611e6b565b50505050565b601481565b606061128e826115d3565b6112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c49061354a565b60405180910390fd5b60006112d7611ec7565b905060008151116112f75760405180602001604052806000815250611322565b8061130184611f59565b6040516020016113129291906135a6565b6040516020818303038152906040525b915050919050565b6113326115cb565b73ffffffffffffffffffffffffffffffffffffffff16611350610ea2565b73ffffffffffffffffffffffffffffffffffffffff16146113a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139d90612ab6565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b60009054906101000a900460ff1681565b6114726115cb565b73ffffffffffffffffffffffffffffffffffffffff16611490610ea2565b73ffffffffffffffffffffffffffffffffffffffff16146114e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dd90612ab6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c9061363c565b60405180910390fd5b61155e81611a4a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166116b283610a9a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611711826115d3565b611750576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611747906136ce565b60405180910390fd5b600061175b83610a9a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806117ca57508373ffffffffffffffffffffffffffffffffffffffff166117b284610770565b73ffffffffffffffffffffffffffffffffffffffff16145b806117db57506117da81856113c3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661180482610a9a565b73ffffffffffffffffffffffffffffffffffffffff161461185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190613760565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c0906137f2565b60405180910390fd5b6118d48383836120b9565b6118df60008261163f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461192f91906132e9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119869190613293565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a458383836120be565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b769061385e565b60405180910390fd5b611b88816115d3565b15611bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbf906138ca565b60405180910390fd5b611bd4600083836120b9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c249190613293565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ce5600083836120be565b5050565b6001816000016000828254019250508190555050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6490613936565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e5e9190612321565b60405180910390a3505050565b611e768484846117e4565b611e82848484846120c3565b611ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb8906139c8565b60405180910390fd5b50505050565b6060600c8054611ed690612b05565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0290612b05565b8015611f4f5780601f10611f2457610100808354040283529160200191611f4f565b820191906000526020600020905b815481529060010190602001808311611f3257829003601f168201915b5050505050905090565b606060008203611fa0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120b4565b600082905060005b60008214611fd2578080611fbb906133f5565b915050600a82611fcb9190613a17565b9150611fa8565b60008167ffffffffffffffff811115611fee57611fed612666565b5b6040519080825280601f01601f1916602001820160405280156120205781602001600182028036833780820191505090505b5090505b600085146120ad5760018261203991906132e9565b9150600a856120489190613a48565b60306120549190613293565b60f81b81838151811061206a5761206961343d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120a69190613a17565b9450612024565b8093505050505b919050565b505050565b505050565b60006120e48473ffffffffffffffffffffffffffffffffffffffff1661224a565b1561223d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261210d6115cb565b8786866040518563ffffffff1660e01b815260040161212f9493929190613ace565b6020604051808303816000875af192505050801561216b57506040513d601f19601f820116820180604052508101906121689190613b2f565b60015b6121ed573d806000811461219b576040519150601f19603f3d011682016040523d82523d6000602084013e6121a0565b606091505b5060008151036121e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dc906139c8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612242565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122b681612281565b81146122c157600080fd5b50565b6000813590506122d3816122ad565b92915050565b6000602082840312156122ef576122ee612277565b5b60006122fd848285016122c4565b91505092915050565b60008115159050919050565b61231b81612306565b82525050565b60006020820190506123366000830184612312565b92915050565b61234581612306565b811461235057600080fd5b50565b6000813590506123628161233c565b92915050565b60006020828403121561237e5761237d612277565b5b600061238c84828501612353565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123cf5780820151818401526020810190506123b4565b838111156123de576000848401525b50505050565b6000601f19601f8301169050919050565b600061240082612395565b61240a81856123a0565b935061241a8185602086016123b1565b612423816123e4565b840191505092915050565b6000602082019050818103600083015261244881846123f5565b905092915050565b6000819050919050565b61246381612450565b811461246e57600080fd5b50565b6000813590506124808161245a565b92915050565b60006020828403121561249c5761249b612277565b5b60006124aa84828501612471565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124de826124b3565b9050919050565b6124ee816124d3565b82525050565b600060208201905061250960008301846124e5565b92915050565b612518816124d3565b811461252357600080fd5b50565b6000813590506125358161250f565b92915050565b6000806040838503121561255257612551612277565b5b600061256085828601612526565b925050602061257185828601612471565b9150509250929050565b61258481612450565b82525050565b600060208201905061259f600083018461257b565b92915050565b6000806000606084860312156125be576125bd612277565b5b60006125cc86828701612526565b93505060206125dd86828701612526565b92505060406125ee86828701612471565b9150509250925092565b60006020828403121561260e5761260d612277565b5b600061261c84828501612526565b91505092915050565b600060ff82169050919050565b61263b81612625565b82525050565b60006020820190506126566000830184612632565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61269e826123e4565b810181811067ffffffffffffffff821117156126bd576126bc612666565b5b80604052505050565b60006126d061226d565b90506126dc8282612695565b919050565b600067ffffffffffffffff8211156126fc576126fb612666565b5b612705826123e4565b9050602081019050919050565b82818337600083830152505050565b600061273461272f846126e1565b6126c6565b9050828152602081018484840111156127505761274f612661565b5b61275b848285612712565b509392505050565b600082601f8301126127785761277761265c565b5b8135612788848260208601612721565b91505092915050565b6000602082840312156127a7576127a6612277565b5b600082013567ffffffffffffffff8111156127c5576127c461227c565b5b6127d184828501612763565b91505092915050565b600080fd5b600080fd5b60008083601f8401126127fa576127f961265c565b5b8235905067ffffffffffffffff811115612817576128166127da565b5b602083019150836020820283011115612833576128326127df565b5b9250929050565b61284381612625565b811461284e57600080fd5b50565b6000813590506128608161283a565b92915050565b60008060006040848603121561287f5761287e612277565b5b600084013567ffffffffffffffff81111561289d5761289c61227c565b5b6128a9868287016127e4565b935093505060206128bc86828701612851565b9150509250925092565b600080604083850312156128dd576128dc612277565b5b60006128eb85828601612526565b92505060206128fc85828601612353565b9150509250929050565b600067ffffffffffffffff82111561292157612920612666565b5b61292a826123e4565b9050602081019050919050565b600061294a61294584612906565b6126c6565b90508281526020810184848401111561296657612965612661565b5b612971848285612712565b509392505050565b600082601f83011261298e5761298d61265c565b5b813561299e848260208601612937565b91505092915050565b600080600080608085870312156129c1576129c0612277565b5b60006129cf87828801612526565b94505060206129e087828801612526565b93505060406129f187828801612471565b925050606085013567ffffffffffffffff811115612a1257612a1161227c565b5b612a1e87828801612979565b91505092959194509250565b60008060408385031215612a4157612a40612277565b5b6000612a4f85828601612526565b9250506020612a6085828601612526565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612aa06020836123a0565b9150612aab82612a6a565b602082019050919050565b60006020820190508181036000830152612acf81612a93565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b1d57607f821691505b602082108103612b3057612b2f612ad6565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612b92602c836123a0565b9150612b9d82612b36565b604082019050919050565b60006020820190508181036000830152612bc181612b85565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c246021836123a0565b9150612c2f82612bc8565b604082019050919050565b60006020820190508181036000830152612c5381612c17565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612cb66038836123a0565b9150612cc182612c5a565b604082019050919050565b60006020820190508181036000830152612ce581612ca9565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612d486031836123a0565b9150612d5382612cec565b604082019050919050565b60006020820190508181036000830152612d7781612d3b565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612de07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612da3565b612dea8683612da3565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612e27612e22612e1d84612450565b612e02565b612450565b9050919050565b6000819050919050565b612e4183612e0c565b612e55612e4d82612e2e565b848454612db0565b825550505050565b600090565b612e6a612e5d565b612e75818484612e38565b505050565b5b81811015612e9957612e8e600082612e62565b600181019050612e7b565b5050565b601f821115612ede57612eaf81612d7e565b612eb884612d93565b81016020851015612ec7578190505b612edb612ed385612d93565b830182612e7a565b50505b505050565b600082821c905092915050565b6000612f0160001984600802612ee3565b1980831691505092915050565b6000612f1a8383612ef0565b9150826002028217905092915050565b612f3382612395565b67ffffffffffffffff811115612f4c57612f4b612666565b5b612f568254612b05565b612f61828285612e9d565b600060209050601f831160018114612f945760008415612f82578287015190505b612f8c8582612f0e565b865550612ff4565b601f198416612fa286612d7e565b60005b82811015612fca57848901518255600182019150602085019450602081019050612fa5565b86831015612fe75784890151612fe3601f891682612ef0565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006130586029836123a0565b915061306382612ffc565b604082019050919050565b600060208201905081810360008301526130878161304b565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006130ea602a836123a0565b91506130f58261308e565b604082019050919050565b60006020820190508181036000830152613119816130dd565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613156601f836123a0565b915061316182613120565b602082019050919050565b6000602082019050818103600083015261318581613149565b9050919050565b7f205768697465204c6973742053616c65206e6f74206163746976650000000000600082015250565b60006131c2601b836123a0565b91506131cd8261318c565b602082019050919050565b600060208201905081810360008301526131f1816131b5565b9050919050565b7f4e6f74206f6e2077686974656c69737400000000000000000000000000000000600082015250565b600061322e6010836123a0565b9150613239826131f8565b602082019050919050565b6000602082019050818103600083015261325d81613221565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061329e82612450565b91506132a983612450565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132de576132dd613264565b5b828201905092915050565b60006132f482612450565b91506132ff83612450565b92508282101561331257613311613264565b5b828203905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b60006133536012836123a0565b915061335e8261331d565b602082019050919050565b6000602082019050818103600083015261338281613346565b9050919050565b7f4d696e74206174206d6f737420323020617420612074696d6500000000000000600082015250565b60006133bf6019836123a0565b91506133ca82613389565b602082019050919050565b600060208201905081810360008301526133ee816133b2565b9050919050565b600061340082612450565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361343257613431613264565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f53616c65206e6f74206163746976650000000000000000000000000000000000600082015250565b60006134a2600f836123a0565b91506134ad8261346c565b602082019050919050565b600060208201905081810360008301526134d181613495565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613534602f836123a0565b915061353f826134d8565b604082019050919050565b6000602082019050818103600083015261356381613527565b9050919050565b600081905092915050565b600061358082612395565b61358a818561356a565b935061359a8185602086016123b1565b80840191505092915050565b60006135b28285613575565b91506135be8284613575565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136266026836123a0565b9150613631826135ca565b604082019050919050565b6000602082019050818103600083015261365581613619565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006136b8602c836123a0565b91506136c38261365c565b604082019050919050565b600060208201905081810360008301526136e7816136ab565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061374a6025836123a0565b9150613755826136ee565b604082019050919050565b600060208201905081810360008301526137798161373d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006137dc6024836123a0565b91506137e782613780565b604082019050919050565b6000602082019050818103600083015261380b816137cf565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006138486020836123a0565b915061385382613812565b602082019050919050565b600060208201905081810360008301526138778161383b565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006138b4601c836123a0565b91506138bf8261387e565b602082019050919050565b600060208201905081810360008301526138e3816138a7565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006139206019836123a0565b915061392b826138ea565b602082019050919050565b6000602082019050818103600083015261394f81613913565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006139b26032836123a0565b91506139bd82613956565b604082019050919050565b600060208201905081810360008301526139e1816139a5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613a2282612450565b9150613a2d83612450565b925082613a3d57613a3c6139e8565b5b828204905092915050565b6000613a5382612450565b9150613a5e83612450565b925082613a6e57613a6d6139e8565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000613aa082613a79565b613aaa8185613a84565b9350613aba8185602086016123b1565b613ac3816123e4565b840191505092915050565b6000608082019050613ae360008301876124e5565b613af060208301866124e5565b613afd604083018561257b565b8181036060830152613b0f8184613a95565b905095945050505050565b600081519050613b29816122ad565b92915050565b600060208284031215613b4557613b44612277565b5b6000613b5384828501613b1a565b9150509291505056fea2646970667358221220859c7934d6298232069b6ea34230555fee2b7a40afdbe5c322c44e097589bfca64736f6c634300080f003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d57776f514b32534a673954467976504e78456d45503957716761464258685454347773345562424c685641562f00000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c8063715018a6116100f9578063b88d4fde11610097578063ceb68a9211610071578063ceb68a92146104dd578063e985e9c5146104f9578063eb8d244414610529578063f2fde38b14610547576101c4565b8063b88d4fde14610473578063b8fc10511461048f578063c87b56dd146104ad576101c4565b806395d89b41116100d357806395d89b411461040157806397495d711461041f578063a0712d681461043b578063a22cb46514610457576101c4565b8063715018a6146103bd578063868ff4a2146103c75780638da5cb5b146103e3576101c4565b806332cb6b0c11610166578063555f547511610140578063555f54751461031157806355f804b3146103415780636352211e1461035d57806370a082311461038d576101c4565b806332cb6b0c146102b95780633cc090de146102d757806342842e0e146102f5576101c4565b8063081812fc116101a2578063081812fc14610233578063095ea7b31461026357806318160ddd1461027f57806323b872dd1461029d576101c4565b806301ffc9a7146101c957806302c88989146101f957806306fdde0314610215575b600080fd5b6101e360048036038101906101de91906122d9565b610563565b6040516101f09190612321565b60405180910390f35b610213600480360381019061020e9190612368565b610645565b005b61021d6106de565b60405161022a919061242e565b60405180910390f35b61024d60048036038101906102489190612486565b610770565b60405161025a91906124f4565b60405180910390f35b61027d6004803603810190610278919061253b565b6107f5565b005b61028761090c565b604051610294919061258a565b60405180910390f35b6102b760048036038101906102b291906125a5565b61091d565b005b6102c161097d565b6040516102ce919061258a565b60405180910390f35b6102df610982565b6040516102ec9190612321565b60405180910390f35b61030f600480360381019061030a91906125a5565b610995565b005b61032b600480360381019061032691906125f8565b6109b5565b6040516103389190612641565b60405180910390f35b61035b60048036038101906103569190612791565b610a0b565b005b61037760048036038101906103729190612486565b610a9a565b60405161038491906124f4565b60405180910390f35b6103a760048036038101906103a291906125f8565b610b4b565b6040516103b4919061258a565b60405180910390f35b6103c5610c02565b005b6103e160048036038101906103dc9190612486565b610c8a565b005b6103eb610ea2565b6040516103f891906124f4565b60405180910390f35b610409610ecc565b604051610416919061242e565b60405180910390f35b61043960048036038101906104349190612866565b610f5e565b005b61045560048036038101906104509190612486565b611080565b005b610471600480360381019061046c91906128c6565b611206565b005b61048d600480360381019061048891906129a7565b61121c565b005b61049761127e565b6040516104a4919061258a565b60405180910390f35b6104c760048036038101906104c29190612486565b611283565b6040516104d4919061242e565b60405180910390f35b6104f760048036038101906104f29190612368565b61132a565b005b610513600480360381019061050e9190612a2a565b6113c3565b6040516105209190612321565b60405180910390f35b610531611457565b60405161053e9190612321565b60405180910390f35b610561600480360381019061055c91906125f8565b61146a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061062e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061063e575061063d82611561565b5b9050919050565b61064d6115cb565b73ffffffffffffffffffffffffffffffffffffffff1661066b610ea2565b73ffffffffffffffffffffffffffffffffffffffff16146106c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b890612ab6565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6060600080546106ed90612b05565b80601f016020809104026020016040519081016040528092919081815260200182805461071990612b05565b80156107665780601f1061073b57610100808354040283529160200191610766565b820191906000526020600020905b81548152906001019060200180831161074957829003601f168201915b5050505050905090565b600061077b826115d3565b6107ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b190612ba8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080082610a9a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610870576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086790612c3a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661088f6115cb565b73ffffffffffffffffffffffffffffffffffffffff1614806108be57506108bd816108b86115cb565b6113c3565b5b6108fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f490612ccc565b60405180910390fd5b610907838361163f565b505050565b600061091860096116f8565b905090565b61092e6109286115cb565b82611706565b61096d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096490612d5e565b60405180910390fd5b6109788383836117e4565b505050565b602881565b600b60019054906101000a900460ff1681565b6109b08383836040518060200160405280600081525061121c565b505050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610a136115cb565b73ffffffffffffffffffffffffffffffffffffffff16610a31610ea2565b73ffffffffffffffffffffffffffffffffffffffff1614610a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7e90612ab6565b60405180910390fd5b80600c9081610a969190612f2a565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b399061306e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290613100565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c0a6115cb565b73ffffffffffffffffffffffffffffffffffffffff16610c28610ea2565b73ffffffffffffffffffffffffffffffffffffffff1614610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590612ab6565b60405180910390fd5b610c886000611a4a565b565b600260065403610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc69061316c565b60405180910390fd5b6002600681905550600b60019054906101000a900460ff16610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d906131d8565b60405180910390fd5b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16811115610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf90613244565b60405180910390fd5b6028600182610dc561090c565b610dcf9190613293565b610dd991906132e9565b10610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1090613369565b60405180910390fd5b6014811115610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e54906133d5565b60405180910390fd5b60005b81811015610e9657610e7933610e7461090c565b611b10565b610e836009611ce9565b8080610e8e906133f5565b915050610e60565b50600160068190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610edb90612b05565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0790612b05565b8015610f545780601f10610f2957610100808354040283529160200191610f54565b820191906000526020600020905b815481529060010190602001808311610f3757829003601f168201915b5050505050905090565b610f666115cb565b73ffffffffffffffffffffffffffffffffffffffff16610f84610ea2565b73ffffffffffffffffffffffffffffffffffffffff1614610fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd190612ab6565b60405180910390fd5b60005b8383905081101561107a5781600a600086868581811061100057610fff61343d565b5b905060200201602081019061101591906125f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508080611072906133f5565b915050610fdd565b50505050565b6002600654036110c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bc9061316c565b60405180910390fd5b6002600681905550600b60009054906101000a900460ff1661111c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611113906134b8565b60405180910390fd5b602860018261112961090c565b6111339190613293565b61113d91906132e9565b1061117d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117490613369565b60405180910390fd5b60148111156111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b8906133d5565b60405180910390fd5b60005b818110156111fa576111dd336111d861090c565b611b10565b6111e76009611ce9565b80806111f2906133f5565b9150506111c4565b50600160068190555050565b6112186112116115cb565b8383611cff565b5050565b61122d6112276115cb565b83611706565b61126c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126390612d5e565b60405180910390fd5b61127884848484611e6b565b50505050565b601481565b606061128e826115d3565b6112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c49061354a565b60405180910390fd5b60006112d7611ec7565b905060008151116112f75760405180602001604052806000815250611322565b8061130184611f59565b6040516020016113129291906135a6565b6040516020818303038152906040525b915050919050565b6113326115cb565b73ffffffffffffffffffffffffffffffffffffffff16611350610ea2565b73ffffffffffffffffffffffffffffffffffffffff16146113a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139d90612ab6565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b60009054906101000a900460ff1681565b6114726115cb565b73ffffffffffffffffffffffffffffffffffffffff16611490610ea2565b73ffffffffffffffffffffffffffffffffffffffff16146114e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dd90612ab6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c9061363c565b60405180910390fd5b61155e81611a4a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166116b283610a9a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611711826115d3565b611750576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611747906136ce565b60405180910390fd5b600061175b83610a9a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806117ca57508373ffffffffffffffffffffffffffffffffffffffff166117b284610770565b73ffffffffffffffffffffffffffffffffffffffff16145b806117db57506117da81856113c3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661180482610a9a565b73ffffffffffffffffffffffffffffffffffffffff161461185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190613760565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c0906137f2565b60405180910390fd5b6118d48383836120b9565b6118df60008261163f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461192f91906132e9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119869190613293565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a458383836120be565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b769061385e565b60405180910390fd5b611b88816115d3565b15611bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbf906138ca565b60405180910390fd5b611bd4600083836120b9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c249190613293565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ce5600083836120be565b5050565b6001816000016000828254019250508190555050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6490613936565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e5e9190612321565b60405180910390a3505050565b611e768484846117e4565b611e82848484846120c3565b611ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb8906139c8565b60405180910390fd5b50505050565b6060600c8054611ed690612b05565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0290612b05565b8015611f4f5780601f10611f2457610100808354040283529160200191611f4f565b820191906000526020600020905b815481529060010190602001808311611f3257829003601f168201915b5050505050905090565b606060008203611fa0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120b4565b600082905060005b60008214611fd2578080611fbb906133f5565b915050600a82611fcb9190613a17565b9150611fa8565b60008167ffffffffffffffff811115611fee57611fed612666565b5b6040519080825280601f01601f1916602001820160405280156120205781602001600182028036833780820191505090505b5090505b600085146120ad5760018261203991906132e9565b9150600a856120489190613a48565b60306120549190613293565b60f81b81838151811061206a5761206961343d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120a69190613a17565b9450612024565b8093505050505b919050565b505050565b505050565b60006120e48473ffffffffffffffffffffffffffffffffffffffff1661224a565b1561223d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261210d6115cb565b8786866040518563ffffffff1660e01b815260040161212f9493929190613ace565b6020604051808303816000875af192505050801561216b57506040513d601f19601f820116820180604052508101906121689190613b2f565b60015b6121ed573d806000811461219b576040519150601f19603f3d011682016040523d82523d6000602084013e6121a0565b606091505b5060008151036121e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dc906139c8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612242565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122b681612281565b81146122c157600080fd5b50565b6000813590506122d3816122ad565b92915050565b6000602082840312156122ef576122ee612277565b5b60006122fd848285016122c4565b91505092915050565b60008115159050919050565b61231b81612306565b82525050565b60006020820190506123366000830184612312565b92915050565b61234581612306565b811461235057600080fd5b50565b6000813590506123628161233c565b92915050565b60006020828403121561237e5761237d612277565b5b600061238c84828501612353565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123cf5780820151818401526020810190506123b4565b838111156123de576000848401525b50505050565b6000601f19601f8301169050919050565b600061240082612395565b61240a81856123a0565b935061241a8185602086016123b1565b612423816123e4565b840191505092915050565b6000602082019050818103600083015261244881846123f5565b905092915050565b6000819050919050565b61246381612450565b811461246e57600080fd5b50565b6000813590506124808161245a565b92915050565b60006020828403121561249c5761249b612277565b5b60006124aa84828501612471565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124de826124b3565b9050919050565b6124ee816124d3565b82525050565b600060208201905061250960008301846124e5565b92915050565b612518816124d3565b811461252357600080fd5b50565b6000813590506125358161250f565b92915050565b6000806040838503121561255257612551612277565b5b600061256085828601612526565b925050602061257185828601612471565b9150509250929050565b61258481612450565b82525050565b600060208201905061259f600083018461257b565b92915050565b6000806000606084860312156125be576125bd612277565b5b60006125cc86828701612526565b93505060206125dd86828701612526565b92505060406125ee86828701612471565b9150509250925092565b60006020828403121561260e5761260d612277565b5b600061261c84828501612526565b91505092915050565b600060ff82169050919050565b61263b81612625565b82525050565b60006020820190506126566000830184612632565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61269e826123e4565b810181811067ffffffffffffffff821117156126bd576126bc612666565b5b80604052505050565b60006126d061226d565b90506126dc8282612695565b919050565b600067ffffffffffffffff8211156126fc576126fb612666565b5b612705826123e4565b9050602081019050919050565b82818337600083830152505050565b600061273461272f846126e1565b6126c6565b9050828152602081018484840111156127505761274f612661565b5b61275b848285612712565b509392505050565b600082601f8301126127785761277761265c565b5b8135612788848260208601612721565b91505092915050565b6000602082840312156127a7576127a6612277565b5b600082013567ffffffffffffffff8111156127c5576127c461227c565b5b6127d184828501612763565b91505092915050565b600080fd5b600080fd5b60008083601f8401126127fa576127f961265c565b5b8235905067ffffffffffffffff811115612817576128166127da565b5b602083019150836020820283011115612833576128326127df565b5b9250929050565b61284381612625565b811461284e57600080fd5b50565b6000813590506128608161283a565b92915050565b60008060006040848603121561287f5761287e612277565b5b600084013567ffffffffffffffff81111561289d5761289c61227c565b5b6128a9868287016127e4565b935093505060206128bc86828701612851565b9150509250925092565b600080604083850312156128dd576128dc612277565b5b60006128eb85828601612526565b92505060206128fc85828601612353565b9150509250929050565b600067ffffffffffffffff82111561292157612920612666565b5b61292a826123e4565b9050602081019050919050565b600061294a61294584612906565b6126c6565b90508281526020810184848401111561296657612965612661565b5b612971848285612712565b509392505050565b600082601f83011261298e5761298d61265c565b5b813561299e848260208601612937565b91505092915050565b600080600080608085870312156129c1576129c0612277565b5b60006129cf87828801612526565b94505060206129e087828801612526565b93505060406129f187828801612471565b925050606085013567ffffffffffffffff811115612a1257612a1161227c565b5b612a1e87828801612979565b91505092959194509250565b60008060408385031215612a4157612a40612277565b5b6000612a4f85828601612526565b9250506020612a6085828601612526565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612aa06020836123a0565b9150612aab82612a6a565b602082019050919050565b60006020820190508181036000830152612acf81612a93565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b1d57607f821691505b602082108103612b3057612b2f612ad6565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612b92602c836123a0565b9150612b9d82612b36565b604082019050919050565b60006020820190508181036000830152612bc181612b85565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c246021836123a0565b9150612c2f82612bc8565b604082019050919050565b60006020820190508181036000830152612c5381612c17565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612cb66038836123a0565b9150612cc182612c5a565b604082019050919050565b60006020820190508181036000830152612ce581612ca9565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612d486031836123a0565b9150612d5382612cec565b604082019050919050565b60006020820190508181036000830152612d7781612d3b565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612de07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612da3565b612dea8683612da3565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612e27612e22612e1d84612450565b612e02565b612450565b9050919050565b6000819050919050565b612e4183612e0c565b612e55612e4d82612e2e565b848454612db0565b825550505050565b600090565b612e6a612e5d565b612e75818484612e38565b505050565b5b81811015612e9957612e8e600082612e62565b600181019050612e7b565b5050565b601f821115612ede57612eaf81612d7e565b612eb884612d93565b81016020851015612ec7578190505b612edb612ed385612d93565b830182612e7a565b50505b505050565b600082821c905092915050565b6000612f0160001984600802612ee3565b1980831691505092915050565b6000612f1a8383612ef0565b9150826002028217905092915050565b612f3382612395565b67ffffffffffffffff811115612f4c57612f4b612666565b5b612f568254612b05565b612f61828285612e9d565b600060209050601f831160018114612f945760008415612f82578287015190505b612f8c8582612f0e565b865550612ff4565b601f198416612fa286612d7e565b60005b82811015612fca57848901518255600182019150602085019450602081019050612fa5565b86831015612fe75784890151612fe3601f891682612ef0565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006130586029836123a0565b915061306382612ffc565b604082019050919050565b600060208201905081810360008301526130878161304b565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006130ea602a836123a0565b91506130f58261308e565b604082019050919050565b60006020820190508181036000830152613119816130dd565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613156601f836123a0565b915061316182613120565b602082019050919050565b6000602082019050818103600083015261318581613149565b9050919050565b7f205768697465204c6973742053616c65206e6f74206163746976650000000000600082015250565b60006131c2601b836123a0565b91506131cd8261318c565b602082019050919050565b600060208201905081810360008301526131f1816131b5565b9050919050565b7f4e6f74206f6e2077686974656c69737400000000000000000000000000000000600082015250565b600061322e6010836123a0565b9150613239826131f8565b602082019050919050565b6000602082019050818103600083015261325d81613221565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061329e82612450565b91506132a983612450565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132de576132dd613264565b5b828201905092915050565b60006132f482612450565b91506132ff83612450565b92508282101561331257613311613264565b5b828203905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b60006133536012836123a0565b915061335e8261331d565b602082019050919050565b6000602082019050818103600083015261338281613346565b9050919050565b7f4d696e74206174206d6f737420323020617420612074696d6500000000000000600082015250565b60006133bf6019836123a0565b91506133ca82613389565b602082019050919050565b600060208201905081810360008301526133ee816133b2565b9050919050565b600061340082612450565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361343257613431613264565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f53616c65206e6f74206163746976650000000000000000000000000000000000600082015250565b60006134a2600f836123a0565b91506134ad8261346c565b602082019050919050565b600060208201905081810360008301526134d181613495565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613534602f836123a0565b915061353f826134d8565b604082019050919050565b6000602082019050818103600083015261356381613527565b9050919050565b600081905092915050565b600061358082612395565b61358a818561356a565b935061359a8185602086016123b1565b80840191505092915050565b60006135b28285613575565b91506135be8284613575565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136266026836123a0565b9150613631826135ca565b604082019050919050565b6000602082019050818103600083015261365581613619565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006136b8602c836123a0565b91506136c38261365c565b604082019050919050565b600060208201905081810360008301526136e7816136ab565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061374a6025836123a0565b9150613755826136ee565b604082019050919050565b600060208201905081810360008301526137798161373d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006137dc6024836123a0565b91506137e782613780565b604082019050919050565b6000602082019050818103600083015261380b816137cf565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006138486020836123a0565b915061385382613812565b602082019050919050565b600060208201905081810360008301526138778161383b565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006138b4601c836123a0565b91506138bf8261387e565b602082019050919050565b600060208201905081810360008301526138e3816138a7565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006139206019836123a0565b915061392b826138ea565b602082019050919050565b6000602082019050818103600083015261394f81613913565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006139b26032836123a0565b91506139bd82613956565b604082019050919050565b600060208201905081810360008301526139e1816139a5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613a2282612450565b9150613a2d83612450565b925082613a3d57613a3c6139e8565b5b828204905092915050565b6000613a5382612450565b9150613a5e83612450565b925082613a6e57613a6d6139e8565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000613aa082613a79565b613aaa8185613a84565b9350613aba8185602086016123b1565b613ac3816123e4565b840191505092915050565b6000608082019050613ae360008301876124e5565b613af060208301866124e5565b613afd604083018561257b565b8181036060830152613b0f8184613a95565b905095945050505050565b600081519050613b29816122ad565b92915050565b600060208284031215613b4557613b44612277565b5b6000613b5384828501613b1a565b9150509291505056fea2646970667358221220859c7934d6298232069b6ea34230555fee2b7a40afdbe5c322c44e097589bfca64736f6c634300080f0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d57776f514b32534a673954467976504e78456d45503957716761464258685454347773345562424c685641562f00000000000000000000

-----Decoded View---------------
Arg [0] : customBaseURI_ (string): ipfs://QmWwoQK2SJg9TFyvPNxEmEP9WqgaFBXhTT4ws4UbBLhVAV/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d57776f514b32534a673954467976504e78456d45503957
Arg [3] : 716761464258685454347773345562424c685641562f00000000000000000000


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.