ETH Price: $3,290.00 (+1.49%)
Gas: 2 Gwei

Token

Rich Piggy Society (RPC)
 

Overview

Max Total Supply

5 RPC

Holders

5

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 RPC
0x88447ea197b6a4b07d68259dc9ce9d43ecd6e145
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:
RichPiggySociety

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

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

import "@openzeppelin/contracts/utils/math/SafeMath.sol";

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

contract RichPiggySociety is ERC721, Ownable {
    
    using SafeMath for uint256;

    using Strings for uint256;

    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    string private baseURI;

    uint256 public constant price = 0.005 ether;

    uint public constant maxPurchase = 20;

    uint256 public constant MAX = 10000;

    bool public saleIsActive = false;

    constructor(string memory _baseURI) ERC721("Rich Piggy Society", "RPC") { 
        setBaseURI(_baseURI);
    }

    
    function totalSupply() public view returns (uint256) {
        return _tokenIds.current();
    }
    
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
    
    function setBaseURI(string memory _baseURI) public onlyOwner {
        baseURI = _baseURI;
    }
    
    function tokenURI(uint256 tokenId) public view override returns (string memory){
        require(_exists(tokenId), "Token does not exist.");        
        return string(abi.encodePacked(baseURI, tokenId.toString()));
    }

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }    
    
    function mint(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint ");
        require(numberOfTokens > 0 && numberOfTokens <= maxPurchase, "Can only mint 20 tokens at a time");
        require(totalSupply().add(numberOfTokens) <= MAX, "Purchase would exceed the max supply");  
        require(msg.value >= price.mul(numberOfTokens), "Ether value sent is not correct");           

        for(uint i = 0; i < numberOfTokens; i++) {                  
            if (totalSupply() < MAX) {
                _tokenIds.increment();  
                uint mintIndex = totalSupply();                 
                _safeMint(msg.sender, mintIndex);
            }
        }
    }
}

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 : 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 4 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

File 5 of 13 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 13 : 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 v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 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":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":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","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"_baseURI","type":"string"}],"name":"setBaseURI","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600960006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b5060405162003c0338038062003c038339818101604052810190620000529190620003fb565b6040518060400160405280601281526020017f5269636820506967677920536f636965747900000000000000000000000000008152506040518060400160405280600381526020017f52504300000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000d6929190620002cd565b508060019080519060200190620000ef929190620002cd565b50505062000112620001066200012a60201b60201c565b6200013260201b60201c565b6200012381620001f860201b60201c565b5062000653565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002086200012a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200022e620002a360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000287576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027e9062000473565b60405180910390fd5b80600890805190602001906200029f929190620002cd565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002db906200053b565b90600052602060002090601f016020900481019282620002ff57600085556200034b565b82601f106200031a57805160ff19168380011785556200034b565b828001600101855582156200034b579182015b828111156200034a5782518255916020019190600101906200032d565b5b5090506200035a91906200035e565b5090565b5b80821115620003795760008160009055506001016200035f565b5090565b6000620003946200038e84620004be565b62000495565b905082815260208101848484011115620003b357620003b26200060a565b5b620003c084828562000505565b509392505050565b600082601f830112620003e057620003df62000605565b5b8151620003f28482602086016200037d565b91505092915050565b60006020828403121562000414576200041362000614565b5b600082015167ffffffffffffffff8111156200043557620004346200060f565b5b6200044384828501620003c8565b91505092915050565b60006200045b602083620004f4565b915062000468826200062a565b602082019050919050565b600060208201905081810360008301526200048e816200044c565b9050919050565b6000620004a1620004b4565b9050620004af828262000571565b919050565b6000604051905090565b600067ffffffffffffffff821115620004dc57620004db620005d6565b5b620004e78262000619565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200052557808201518184015260208101905062000508565b8381111562000535576000848401525b50505050565b600060028204905060018216806200055457607f821691505b602082108114156200056b576200056a620005a7565b5b50919050565b6200057c8262000619565b810181811067ffffffffffffffff821117156200059e576200059d620005d6565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6135a080620006636000396000f3fe6080604052600436106101665760003560e01c8063715018a6116100d1578063a22cb4651161008a578063d49d518111610064578063d49d5181146104f5578063e985e9c514610520578063eb8d24441461055d578063f2fde38b1461058857610166565b8063a22cb46514610466578063b88d4fde1461048f578063c87b56dd146104b857610166565b8063715018a6146103875780638da5cb5b1461039e57806395d89b41146103c9578063977b055b146103f4578063a035b1fe1461041f578063a0712d681461044a57610166565b806334918dfd1161012357806334918dfd1461028d5780633ccfd60b146102a457806342842e0e146102bb57806355f804b3146102e45780636352211e1461030d57806370a082311461034a57610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b31461021057806318160ddd1461023957806323b872dd14610264575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612317565b6105b1565b60405161019f919061287d565b60405180910390f35b3480156101b457600080fd5b506101bd610693565b6040516101ca9190612898565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f591906123ba565b610725565b6040516102079190612816565b60405180910390f35b34801561021c57600080fd5b50610237600480360381019061023291906122d7565b6107aa565b005b34801561024557600080fd5b5061024e6108c2565b60405161025b9190612b3a565b60405180910390f35b34801561027057600080fd5b5061028b600480360381019061028691906121c1565b6108d3565b005b34801561029957600080fd5b506102a2610933565b005b3480156102b057600080fd5b506102b96109db565b005b3480156102c757600080fd5b506102e260048036038101906102dd91906121c1565b610aa6565b005b3480156102f057600080fd5b5061030b60048036038101906103069190612371565b610ac6565b005b34801561031957600080fd5b50610334600480360381019061032f91906123ba565b610b5c565b6040516103419190612816565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c9190612154565b610c0e565b60405161037e9190612b3a565b60405180910390f35b34801561039357600080fd5b5061039c610cc6565b005b3480156103aa57600080fd5b506103b3610d4e565b6040516103c09190612816565b60405180910390f35b3480156103d557600080fd5b506103de610d78565b6040516103eb9190612898565b60405180910390f35b34801561040057600080fd5b50610409610e0a565b6040516104169190612b3a565b60405180910390f35b34801561042b57600080fd5b50610434610e0f565b6040516104419190612b3a565b60405180910390f35b610464600480360381019061045f91906123ba565b610e1a565b005b34801561047257600080fd5b5061048d60048036038101906104889190612297565b610fc8565b005b34801561049b57600080fd5b506104b660048036038101906104b19190612214565b610fde565b005b3480156104c457600080fd5b506104df60048036038101906104da91906123ba565b611040565b6040516104ec9190612898565b60405180910390f35b34801561050157600080fd5b5061050a6110bc565b6040516105179190612b3a565b60405180910390f35b34801561052c57600080fd5b5061054760048036038101906105429190612181565b6110c2565b604051610554919061287d565b60405180910390f35b34801561056957600080fd5b50610572611156565b60405161057f919061287d565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190612154565b611169565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061068c575061068b82611261565b5b9050919050565b6060600080546106a290612dff565b80601f01602080910402602001604051908101604052809291908181526020018280546106ce90612dff565b801561071b5780601f106106f05761010080835404028352916020019161071b565b820191906000526020600020905b8154815290600101906020018083116106fe57829003601f168201915b5050505050905090565b6000610730826112cb565b61076f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076690612a7a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107b582610b5c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081d90612ada565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610845611337565b73ffffffffffffffffffffffffffffffffffffffff16148061087457506108738161086e611337565b6110c2565b5b6108b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108aa906129da565b60405180910390fd5b6108bd838361133f565b505050565b60006108ce60076113f8565b905090565b6108e46108de611337565b82611406565b610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a90612afa565b60405180910390fd5b61092e8383836114e4565b505050565b61093b611337565b73ffffffffffffffffffffffffffffffffffffffff16610959610d4e565b73ffffffffffffffffffffffffffffffffffffffff16146109af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a690612a9a565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b6109e3611337565b73ffffffffffffffffffffffffffffffffffffffff16610a01610d4e565b73ffffffffffffffffffffffffffffffffffffffff1614610a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4e90612a9a565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610aa2573d6000803e3d6000fd5b5050565b610ac183838360405180602001604052806000815250610fde565b505050565b610ace611337565b73ffffffffffffffffffffffffffffffffffffffff16610aec610d4e565b73ffffffffffffffffffffffffffffffffffffffff1614610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3990612a9a565b60405180910390fd5b8060089080519060200190610b58929190611f68565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfc90612a1a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c76906129fa565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cce611337565b73ffffffffffffffffffffffffffffffffffffffff16610cec610d4e565b73ffffffffffffffffffffffffffffffffffffffff1614610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990612a9a565b60405180910390fd5b610d4c6000611740565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610d8790612dff565b80601f0160208091040260200160405190810160405280929190818152602001828054610db390612dff565b8015610e005780601f10610dd557610100808354040283529160200191610e00565b820191906000526020600020905b815481529060010190602001808311610de357829003601f168201915b5050505050905090565b601481565b6611c37937e0800081565b600960009054906101000a900460ff16610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6090612b1a565b60405180910390fd5b600081118015610e7a575060148111155b610eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb0906129ba565b60405180910390fd5b612710610ed682610ec86108c2565b61180690919063ffffffff16565b1115610f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0e906128ba565b60405180910390fd5b610f31816611c37937e0800061181c90919063ffffffff16565b341015610f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6a9061297a565b60405180910390fd5b60005b81811015610fc457612710610f896108c2565b1015610fb157610f996007611832565b6000610fa36108c2565b9050610faf3382611848565b505b8080610fbc90612e62565b915050610f76565b5050565b610fda610fd3611337565b8383611866565b5050565b610fef610fe9611337565b83611406565b61102e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102590612afa565b60405180910390fd5b61103a848484846119d3565b50505050565b606061104b826112cb565b61108a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108190612a5a565b60405180910390fd5b600861109583611a2f565b6040516020016110a69291906127f2565b6040516020818303038152906040529050919050565b61271081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600960009054906101000a900460ff1681565b611171611337565b73ffffffffffffffffffffffffffffffffffffffff1661118f610d4e565b73ffffffffffffffffffffffffffffffffffffffff16146111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc90612a9a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124c906128fa565b60405180910390fd5b61125e81611740565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166113b283610b5c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611411826112cb565b611450576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114479061299a565b60405180910390fd5b600061145b83610b5c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114ca57508373ffffffffffffffffffffffffffffffffffffffff166114b284610725565b73ffffffffffffffffffffffffffffffffffffffff16145b806114db57506114da81856110c2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661150482610b5c565b73ffffffffffffffffffffffffffffffffffffffff161461155a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155190612aba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c19061293a565b60405180910390fd5b6115d5838383611b90565b6115e060008261133f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116309190612d15565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116879190612c34565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836118149190612c34565b905092915050565b6000818361182a9190612cbb565b905092915050565b6001816000016000828254019250508190555050565b611862828260405180602001604052806000815250611b95565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc9061295a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119c6919061287d565b60405180910390a3505050565b6119de8484846114e4565b6119ea84848484611bf0565b611a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a20906128da565b60405180910390fd5b50505050565b60606000821415611a77576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611b8b565b600082905060005b60008214611aa9578080611a9290612e62565b915050600a82611aa29190612c8a565b9150611a7f565b60008167ffffffffffffffff811115611ac557611ac4612f98565b5b6040519080825280601f01601f191660200182016040528015611af75781602001600182028036833780820191505090505b5090505b60008514611b8457600182611b109190612d15565b9150600a85611b1f9190612eab565b6030611b2b9190612c34565b60f81b818381518110611b4157611b40612f69565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611b7d9190612c8a565b9450611afb565b8093505050505b919050565b505050565b611b9f8383611d87565b611bac6000848484611bf0565b611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be2906128da565b60405180910390fd5b505050565b6000611c118473ffffffffffffffffffffffffffffffffffffffff16611f55565b15611d7a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c3a611337565b8786866040518563ffffffff1660e01b8152600401611c5c9493929190612831565b602060405180830381600087803b158015611c7657600080fd5b505af1925050508015611ca757506040513d601f19601f82011682018060405250810190611ca49190612344565b60015b611d2a573d8060008114611cd7576040519150601f19603f3d011682016040523d82523d6000602084013e611cdc565b606091505b50600081511415611d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d19906128da565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611d7f565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dee90612a3a565b60405180910390fd5b611e00816112cb565b15611e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e379061291a565b60405180910390fd5b611e4c60008383611b90565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e9c9190612c34565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054611f7490612dff565b90600052602060002090601f016020900481019282611f965760008555611fdd565b82601f10611faf57805160ff1916838001178555611fdd565b82800160010185558215611fdd579182015b82811115611fdc578251825591602001919060010190611fc1565b5b509050611fea9190611fee565b5090565b5b80821115612007576000816000905550600101611fef565b5090565b600061201e61201984612b7a565b612b55565b90508281526020810184848401111561203a57612039612fcc565b5b612045848285612dbd565b509392505050565b600061206061205b84612bab565b612b55565b90508281526020810184848401111561207c5761207b612fcc565b5b612087848285612dbd565b509392505050565b60008135905061209e8161350e565b92915050565b6000813590506120b381613525565b92915050565b6000813590506120c88161353c565b92915050565b6000815190506120dd8161353c565b92915050565b600082601f8301126120f8576120f7612fc7565b5b813561210884826020860161200b565b91505092915050565b600082601f83011261212657612125612fc7565b5b813561213684826020860161204d565b91505092915050565b60008135905061214e81613553565b92915050565b60006020828403121561216a57612169612fd6565b5b60006121788482850161208f565b91505092915050565b6000806040838503121561219857612197612fd6565b5b60006121a68582860161208f565b92505060206121b78582860161208f565b9150509250929050565b6000806000606084860312156121da576121d9612fd6565b5b60006121e88682870161208f565b93505060206121f98682870161208f565b925050604061220a8682870161213f565b9150509250925092565b6000806000806080858703121561222e5761222d612fd6565b5b600061223c8782880161208f565b945050602061224d8782880161208f565b935050604061225e8782880161213f565b925050606085013567ffffffffffffffff81111561227f5761227e612fd1565b5b61228b878288016120e3565b91505092959194509250565b600080604083850312156122ae576122ad612fd6565b5b60006122bc8582860161208f565b92505060206122cd858286016120a4565b9150509250929050565b600080604083850312156122ee576122ed612fd6565b5b60006122fc8582860161208f565b925050602061230d8582860161213f565b9150509250929050565b60006020828403121561232d5761232c612fd6565b5b600061233b848285016120b9565b91505092915050565b60006020828403121561235a57612359612fd6565b5b6000612368848285016120ce565b91505092915050565b60006020828403121561238757612386612fd6565b5b600082013567ffffffffffffffff8111156123a5576123a4612fd1565b5b6123b184828501612111565b91505092915050565b6000602082840312156123d0576123cf612fd6565b5b60006123de8482850161213f565b91505092915050565b6123f081612d49565b82525050565b6123ff81612d5b565b82525050565b600061241082612bf1565b61241a8185612c07565b935061242a818560208601612dcc565b61243381612fdb565b840191505092915050565b600061244982612bfc565b6124538185612c18565b9350612463818560208601612dcc565b61246c81612fdb565b840191505092915050565b600061248282612bfc565b61248c8185612c29565b935061249c818560208601612dcc565b80840191505092915050565b600081546124b581612dff565b6124bf8186612c29565b945060018216600081146124da57600181146124eb5761251e565b60ff1983168652818601935061251e565b6124f485612bdc565b60005b83811015612516578154818901526001820191506020810190506124f7565b838801955050505b50505092915050565b6000612534602483612c18565b915061253f82612fec565b604082019050919050565b6000612557603283612c18565b91506125628261303b565b604082019050919050565b600061257a602683612c18565b91506125858261308a565b604082019050919050565b600061259d601c83612c18565b91506125a8826130d9565b602082019050919050565b60006125c0602483612c18565b91506125cb82613102565b604082019050919050565b60006125e3601983612c18565b91506125ee82613151565b602082019050919050565b6000612606601f83612c18565b91506126118261317a565b602082019050919050565b6000612629602c83612c18565b9150612634826131a3565b604082019050919050565b600061264c602183612c18565b9150612657826131f2565b604082019050919050565b600061266f603883612c18565b915061267a82613241565b604082019050919050565b6000612692602a83612c18565b915061269d82613290565b604082019050919050565b60006126b5602983612c18565b91506126c0826132df565b604082019050919050565b60006126d8602083612c18565b91506126e38261332e565b602082019050919050565b60006126fb601583612c18565b915061270682613357565b602082019050919050565b600061271e602c83612c18565b915061272982613380565b604082019050919050565b6000612741602083612c18565b915061274c826133cf565b602082019050919050565b6000612764602983612c18565b915061276f826133f8565b604082019050919050565b6000612787602183612c18565b915061279282613447565b604082019050919050565b60006127aa603183612c18565b91506127b582613496565b604082019050919050565b60006127cd601c83612c18565b91506127d8826134e5565b602082019050919050565b6127ec81612db3565b82525050565b60006127fe82856124a8565b915061280a8284612477565b91508190509392505050565b600060208201905061282b60008301846123e7565b92915050565b600060808201905061284660008301876123e7565b61285360208301866123e7565b61286060408301856127e3565b81810360608301526128728184612405565b905095945050505050565b600060208201905061289260008301846123f6565b92915050565b600060208201905081810360008301526128b2818461243e565b905092915050565b600060208201905081810360008301526128d381612527565b9050919050565b600060208201905081810360008301526128f38161254a565b9050919050565b600060208201905081810360008301526129138161256d565b9050919050565b6000602082019050818103600083015261293381612590565b9050919050565b60006020820190508181036000830152612953816125b3565b9050919050565b60006020820190508181036000830152612973816125d6565b9050919050565b60006020820190508181036000830152612993816125f9565b9050919050565b600060208201905081810360008301526129b38161261c565b9050919050565b600060208201905081810360008301526129d38161263f565b9050919050565b600060208201905081810360008301526129f381612662565b9050919050565b60006020820190508181036000830152612a1381612685565b9050919050565b60006020820190508181036000830152612a33816126a8565b9050919050565b60006020820190508181036000830152612a53816126cb565b9050919050565b60006020820190508181036000830152612a73816126ee565b9050919050565b60006020820190508181036000830152612a9381612711565b9050919050565b60006020820190508181036000830152612ab381612734565b9050919050565b60006020820190508181036000830152612ad381612757565b9050919050565b60006020820190508181036000830152612af38161277a565b9050919050565b60006020820190508181036000830152612b138161279d565b9050919050565b60006020820190508181036000830152612b33816127c0565b9050919050565b6000602082019050612b4f60008301846127e3565b92915050565b6000612b5f612b70565b9050612b6b8282612e31565b919050565b6000604051905090565b600067ffffffffffffffff821115612b9557612b94612f98565b5b612b9e82612fdb565b9050602081019050919050565b600067ffffffffffffffff821115612bc657612bc5612f98565b5b612bcf82612fdb565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c3f82612db3565b9150612c4a83612db3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c7f57612c7e612edc565b5b828201905092915050565b6000612c9582612db3565b9150612ca083612db3565b925082612cb057612caf612f0b565b5b828204905092915050565b6000612cc682612db3565b9150612cd183612db3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d0a57612d09612edc565b5b828202905092915050565b6000612d2082612db3565b9150612d2b83612db3565b925082821015612d3e57612d3d612edc565b5b828203905092915050565b6000612d5482612d93565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612dea578082015181840152602081019050612dcf565b83811115612df9576000848401525b50505050565b60006002820490506001821680612e1757607f821691505b60208210811415612e2b57612e2a612f3a565b5b50919050565b612e3a82612fdb565b810181811067ffffffffffffffff82111715612e5957612e58612f98565b5b80604052505050565b6000612e6d82612db3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ea057612e9f612edc565b5b600182019050919050565b6000612eb682612db3565b9150612ec183612db3565b925082612ed157612ed0612f0b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f507572636861736520776f756c642065786365656420746865206d617820737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e742000000000600082015250565b61351781612d49565b811461352257600080fd5b50565b61352e81612d5b565b811461353957600080fd5b50565b61354581612d67565b811461355057600080fd5b50565b61355c81612db3565b811461356757600080fd5b5056fea2646970667358221220fc46954a390e93bed4849f1f9ab3aca20ba22044a504ed14fd61960d2061c5c164736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d63684e5537616d537577794a4b65507052737655467a5066756d5865764d397a6977783861466961396570732f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101665760003560e01c8063715018a6116100d1578063a22cb4651161008a578063d49d518111610064578063d49d5181146104f5578063e985e9c514610520578063eb8d24441461055d578063f2fde38b1461058857610166565b8063a22cb46514610466578063b88d4fde1461048f578063c87b56dd146104b857610166565b8063715018a6146103875780638da5cb5b1461039e57806395d89b41146103c9578063977b055b146103f4578063a035b1fe1461041f578063a0712d681461044a57610166565b806334918dfd1161012357806334918dfd1461028d5780633ccfd60b146102a457806342842e0e146102bb57806355f804b3146102e45780636352211e1461030d57806370a082311461034a57610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b31461021057806318160ddd1461023957806323b872dd14610264575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612317565b6105b1565b60405161019f919061287d565b60405180910390f35b3480156101b457600080fd5b506101bd610693565b6040516101ca9190612898565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f591906123ba565b610725565b6040516102079190612816565b60405180910390f35b34801561021c57600080fd5b50610237600480360381019061023291906122d7565b6107aa565b005b34801561024557600080fd5b5061024e6108c2565b60405161025b9190612b3a565b60405180910390f35b34801561027057600080fd5b5061028b600480360381019061028691906121c1565b6108d3565b005b34801561029957600080fd5b506102a2610933565b005b3480156102b057600080fd5b506102b96109db565b005b3480156102c757600080fd5b506102e260048036038101906102dd91906121c1565b610aa6565b005b3480156102f057600080fd5b5061030b60048036038101906103069190612371565b610ac6565b005b34801561031957600080fd5b50610334600480360381019061032f91906123ba565b610b5c565b6040516103419190612816565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c9190612154565b610c0e565b60405161037e9190612b3a565b60405180910390f35b34801561039357600080fd5b5061039c610cc6565b005b3480156103aa57600080fd5b506103b3610d4e565b6040516103c09190612816565b60405180910390f35b3480156103d557600080fd5b506103de610d78565b6040516103eb9190612898565b60405180910390f35b34801561040057600080fd5b50610409610e0a565b6040516104169190612b3a565b60405180910390f35b34801561042b57600080fd5b50610434610e0f565b6040516104419190612b3a565b60405180910390f35b610464600480360381019061045f91906123ba565b610e1a565b005b34801561047257600080fd5b5061048d60048036038101906104889190612297565b610fc8565b005b34801561049b57600080fd5b506104b660048036038101906104b19190612214565b610fde565b005b3480156104c457600080fd5b506104df60048036038101906104da91906123ba565b611040565b6040516104ec9190612898565b60405180910390f35b34801561050157600080fd5b5061050a6110bc565b6040516105179190612b3a565b60405180910390f35b34801561052c57600080fd5b5061054760048036038101906105429190612181565b6110c2565b604051610554919061287d565b60405180910390f35b34801561056957600080fd5b50610572611156565b60405161057f919061287d565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190612154565b611169565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061068c575061068b82611261565b5b9050919050565b6060600080546106a290612dff565b80601f01602080910402602001604051908101604052809291908181526020018280546106ce90612dff565b801561071b5780601f106106f05761010080835404028352916020019161071b565b820191906000526020600020905b8154815290600101906020018083116106fe57829003601f168201915b5050505050905090565b6000610730826112cb565b61076f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076690612a7a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107b582610b5c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081d90612ada565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610845611337565b73ffffffffffffffffffffffffffffffffffffffff16148061087457506108738161086e611337565b6110c2565b5b6108b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108aa906129da565b60405180910390fd5b6108bd838361133f565b505050565b60006108ce60076113f8565b905090565b6108e46108de611337565b82611406565b610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a90612afa565b60405180910390fd5b61092e8383836114e4565b505050565b61093b611337565b73ffffffffffffffffffffffffffffffffffffffff16610959610d4e565b73ffffffffffffffffffffffffffffffffffffffff16146109af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a690612a9a565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b6109e3611337565b73ffffffffffffffffffffffffffffffffffffffff16610a01610d4e565b73ffffffffffffffffffffffffffffffffffffffff1614610a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4e90612a9a565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610aa2573d6000803e3d6000fd5b5050565b610ac183838360405180602001604052806000815250610fde565b505050565b610ace611337565b73ffffffffffffffffffffffffffffffffffffffff16610aec610d4e565b73ffffffffffffffffffffffffffffffffffffffff1614610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3990612a9a565b60405180910390fd5b8060089080519060200190610b58929190611f68565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfc90612a1a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c76906129fa565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cce611337565b73ffffffffffffffffffffffffffffffffffffffff16610cec610d4e565b73ffffffffffffffffffffffffffffffffffffffff1614610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990612a9a565b60405180910390fd5b610d4c6000611740565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610d8790612dff565b80601f0160208091040260200160405190810160405280929190818152602001828054610db390612dff565b8015610e005780601f10610dd557610100808354040283529160200191610e00565b820191906000526020600020905b815481529060010190602001808311610de357829003601f168201915b5050505050905090565b601481565b6611c37937e0800081565b600960009054906101000a900460ff16610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6090612b1a565b60405180910390fd5b600081118015610e7a575060148111155b610eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb0906129ba565b60405180910390fd5b612710610ed682610ec86108c2565b61180690919063ffffffff16565b1115610f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0e906128ba565b60405180910390fd5b610f31816611c37937e0800061181c90919063ffffffff16565b341015610f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6a9061297a565b60405180910390fd5b60005b81811015610fc457612710610f896108c2565b1015610fb157610f996007611832565b6000610fa36108c2565b9050610faf3382611848565b505b8080610fbc90612e62565b915050610f76565b5050565b610fda610fd3611337565b8383611866565b5050565b610fef610fe9611337565b83611406565b61102e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102590612afa565b60405180910390fd5b61103a848484846119d3565b50505050565b606061104b826112cb565b61108a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108190612a5a565b60405180910390fd5b600861109583611a2f565b6040516020016110a69291906127f2565b6040516020818303038152906040529050919050565b61271081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600960009054906101000a900460ff1681565b611171611337565b73ffffffffffffffffffffffffffffffffffffffff1661118f610d4e565b73ffffffffffffffffffffffffffffffffffffffff16146111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc90612a9a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124c906128fa565b60405180910390fd5b61125e81611740565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166113b283610b5c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611411826112cb565b611450576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114479061299a565b60405180910390fd5b600061145b83610b5c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114ca57508373ffffffffffffffffffffffffffffffffffffffff166114b284610725565b73ffffffffffffffffffffffffffffffffffffffff16145b806114db57506114da81856110c2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661150482610b5c565b73ffffffffffffffffffffffffffffffffffffffff161461155a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155190612aba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c19061293a565b60405180910390fd5b6115d5838383611b90565b6115e060008261133f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116309190612d15565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116879190612c34565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836118149190612c34565b905092915050565b6000818361182a9190612cbb565b905092915050565b6001816000016000828254019250508190555050565b611862828260405180602001604052806000815250611b95565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc9061295a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119c6919061287d565b60405180910390a3505050565b6119de8484846114e4565b6119ea84848484611bf0565b611a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a20906128da565b60405180910390fd5b50505050565b60606000821415611a77576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611b8b565b600082905060005b60008214611aa9578080611a9290612e62565b915050600a82611aa29190612c8a565b9150611a7f565b60008167ffffffffffffffff811115611ac557611ac4612f98565b5b6040519080825280601f01601f191660200182016040528015611af75781602001600182028036833780820191505090505b5090505b60008514611b8457600182611b109190612d15565b9150600a85611b1f9190612eab565b6030611b2b9190612c34565b60f81b818381518110611b4157611b40612f69565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611b7d9190612c8a565b9450611afb565b8093505050505b919050565b505050565b611b9f8383611d87565b611bac6000848484611bf0565b611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be2906128da565b60405180910390fd5b505050565b6000611c118473ffffffffffffffffffffffffffffffffffffffff16611f55565b15611d7a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c3a611337565b8786866040518563ffffffff1660e01b8152600401611c5c9493929190612831565b602060405180830381600087803b158015611c7657600080fd5b505af1925050508015611ca757506040513d601f19601f82011682018060405250810190611ca49190612344565b60015b611d2a573d8060008114611cd7576040519150601f19603f3d011682016040523d82523d6000602084013e611cdc565b606091505b50600081511415611d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d19906128da565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611d7f565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dee90612a3a565b60405180910390fd5b611e00816112cb565b15611e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e379061291a565b60405180910390fd5b611e4c60008383611b90565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e9c9190612c34565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054611f7490612dff565b90600052602060002090601f016020900481019282611f965760008555611fdd565b82601f10611faf57805160ff1916838001178555611fdd565b82800160010185558215611fdd579182015b82811115611fdc578251825591602001919060010190611fc1565b5b509050611fea9190611fee565b5090565b5b80821115612007576000816000905550600101611fef565b5090565b600061201e61201984612b7a565b612b55565b90508281526020810184848401111561203a57612039612fcc565b5b612045848285612dbd565b509392505050565b600061206061205b84612bab565b612b55565b90508281526020810184848401111561207c5761207b612fcc565b5b612087848285612dbd565b509392505050565b60008135905061209e8161350e565b92915050565b6000813590506120b381613525565b92915050565b6000813590506120c88161353c565b92915050565b6000815190506120dd8161353c565b92915050565b600082601f8301126120f8576120f7612fc7565b5b813561210884826020860161200b565b91505092915050565b600082601f83011261212657612125612fc7565b5b813561213684826020860161204d565b91505092915050565b60008135905061214e81613553565b92915050565b60006020828403121561216a57612169612fd6565b5b60006121788482850161208f565b91505092915050565b6000806040838503121561219857612197612fd6565b5b60006121a68582860161208f565b92505060206121b78582860161208f565b9150509250929050565b6000806000606084860312156121da576121d9612fd6565b5b60006121e88682870161208f565b93505060206121f98682870161208f565b925050604061220a8682870161213f565b9150509250925092565b6000806000806080858703121561222e5761222d612fd6565b5b600061223c8782880161208f565b945050602061224d8782880161208f565b935050604061225e8782880161213f565b925050606085013567ffffffffffffffff81111561227f5761227e612fd1565b5b61228b878288016120e3565b91505092959194509250565b600080604083850312156122ae576122ad612fd6565b5b60006122bc8582860161208f565b92505060206122cd858286016120a4565b9150509250929050565b600080604083850312156122ee576122ed612fd6565b5b60006122fc8582860161208f565b925050602061230d8582860161213f565b9150509250929050565b60006020828403121561232d5761232c612fd6565b5b600061233b848285016120b9565b91505092915050565b60006020828403121561235a57612359612fd6565b5b6000612368848285016120ce565b91505092915050565b60006020828403121561238757612386612fd6565b5b600082013567ffffffffffffffff8111156123a5576123a4612fd1565b5b6123b184828501612111565b91505092915050565b6000602082840312156123d0576123cf612fd6565b5b60006123de8482850161213f565b91505092915050565b6123f081612d49565b82525050565b6123ff81612d5b565b82525050565b600061241082612bf1565b61241a8185612c07565b935061242a818560208601612dcc565b61243381612fdb565b840191505092915050565b600061244982612bfc565b6124538185612c18565b9350612463818560208601612dcc565b61246c81612fdb565b840191505092915050565b600061248282612bfc565b61248c8185612c29565b935061249c818560208601612dcc565b80840191505092915050565b600081546124b581612dff565b6124bf8186612c29565b945060018216600081146124da57600181146124eb5761251e565b60ff1983168652818601935061251e565b6124f485612bdc565b60005b83811015612516578154818901526001820191506020810190506124f7565b838801955050505b50505092915050565b6000612534602483612c18565b915061253f82612fec565b604082019050919050565b6000612557603283612c18565b91506125628261303b565b604082019050919050565b600061257a602683612c18565b91506125858261308a565b604082019050919050565b600061259d601c83612c18565b91506125a8826130d9565b602082019050919050565b60006125c0602483612c18565b91506125cb82613102565b604082019050919050565b60006125e3601983612c18565b91506125ee82613151565b602082019050919050565b6000612606601f83612c18565b91506126118261317a565b602082019050919050565b6000612629602c83612c18565b9150612634826131a3565b604082019050919050565b600061264c602183612c18565b9150612657826131f2565b604082019050919050565b600061266f603883612c18565b915061267a82613241565b604082019050919050565b6000612692602a83612c18565b915061269d82613290565b604082019050919050565b60006126b5602983612c18565b91506126c0826132df565b604082019050919050565b60006126d8602083612c18565b91506126e38261332e565b602082019050919050565b60006126fb601583612c18565b915061270682613357565b602082019050919050565b600061271e602c83612c18565b915061272982613380565b604082019050919050565b6000612741602083612c18565b915061274c826133cf565b602082019050919050565b6000612764602983612c18565b915061276f826133f8565b604082019050919050565b6000612787602183612c18565b915061279282613447565b604082019050919050565b60006127aa603183612c18565b91506127b582613496565b604082019050919050565b60006127cd601c83612c18565b91506127d8826134e5565b602082019050919050565b6127ec81612db3565b82525050565b60006127fe82856124a8565b915061280a8284612477565b91508190509392505050565b600060208201905061282b60008301846123e7565b92915050565b600060808201905061284660008301876123e7565b61285360208301866123e7565b61286060408301856127e3565b81810360608301526128728184612405565b905095945050505050565b600060208201905061289260008301846123f6565b92915050565b600060208201905081810360008301526128b2818461243e565b905092915050565b600060208201905081810360008301526128d381612527565b9050919050565b600060208201905081810360008301526128f38161254a565b9050919050565b600060208201905081810360008301526129138161256d565b9050919050565b6000602082019050818103600083015261293381612590565b9050919050565b60006020820190508181036000830152612953816125b3565b9050919050565b60006020820190508181036000830152612973816125d6565b9050919050565b60006020820190508181036000830152612993816125f9565b9050919050565b600060208201905081810360008301526129b38161261c565b9050919050565b600060208201905081810360008301526129d38161263f565b9050919050565b600060208201905081810360008301526129f381612662565b9050919050565b60006020820190508181036000830152612a1381612685565b9050919050565b60006020820190508181036000830152612a33816126a8565b9050919050565b60006020820190508181036000830152612a53816126cb565b9050919050565b60006020820190508181036000830152612a73816126ee565b9050919050565b60006020820190508181036000830152612a9381612711565b9050919050565b60006020820190508181036000830152612ab381612734565b9050919050565b60006020820190508181036000830152612ad381612757565b9050919050565b60006020820190508181036000830152612af38161277a565b9050919050565b60006020820190508181036000830152612b138161279d565b9050919050565b60006020820190508181036000830152612b33816127c0565b9050919050565b6000602082019050612b4f60008301846127e3565b92915050565b6000612b5f612b70565b9050612b6b8282612e31565b919050565b6000604051905090565b600067ffffffffffffffff821115612b9557612b94612f98565b5b612b9e82612fdb565b9050602081019050919050565b600067ffffffffffffffff821115612bc657612bc5612f98565b5b612bcf82612fdb565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c3f82612db3565b9150612c4a83612db3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c7f57612c7e612edc565b5b828201905092915050565b6000612c9582612db3565b9150612ca083612db3565b925082612cb057612caf612f0b565b5b828204905092915050565b6000612cc682612db3565b9150612cd183612db3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d0a57612d09612edc565b5b828202905092915050565b6000612d2082612db3565b9150612d2b83612db3565b925082821015612d3e57612d3d612edc565b5b828203905092915050565b6000612d5482612d93565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612dea578082015181840152602081019050612dcf565b83811115612df9576000848401525b50505050565b60006002820490506001821680612e1757607f821691505b60208210811415612e2b57612e2a612f3a565b5b50919050565b612e3a82612fdb565b810181811067ffffffffffffffff82111715612e5957612e58612f98565b5b80604052505050565b6000612e6d82612db3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ea057612e9f612edc565b5b600182019050919050565b6000612eb682612db3565b9150612ec183612db3565b925082612ed157612ed0612f0b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f507572636861736520776f756c642065786365656420746865206d617820737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e742000000000600082015250565b61351781612d49565b811461352257600080fd5b50565b61352e81612d5b565b811461353957600080fd5b50565b61354581612d67565b811461355057600080fd5b50565b61355c81612db3565b811461356757600080fd5b5056fea2646970667358221220fc46954a390e93bed4849f1f9ab3aca20ba22044a504ed14fd61960d2061c5c164736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d63684e5537616d537577794a4b65507052737655467a5066756d5865764d397a6977783861466961396570732f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseURI (string): https://ipfs.io/ipfs/QmchNU7amSuwyJKePpRsvUFzPfumXevM9ziwx8aFia9eps/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [2] : 68747470733a2f2f697066732e696f2f697066732f516d63684e5537616d5375
Arg [3] : 77794a4b65507052737655467a5066756d5865764d397a697778386146696139
Arg [4] : 6570732f00000000000000000000000000000000000000000000000000000000


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.