ETH Price: $3,159.37 (+1.99%)

Token

Sock Pops (SP)
 

Overview

Max Total Supply

1,569 SP

Holders

209

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
versian.eth
Balance
40 SP
0xa5f6d896e8b4d29ac6e5d8c4b26f8d2073ac90ae
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:
SockPops

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.4;

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



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

  uint256 public latePrice = 10000000000000000;
  uint256 public earlyPrice = 0;
  uint256 public mintLimit = 20;
  

  uint256 public maxSupply = 5000;
  uint256 public maxFreeMintSupply = 1000;

  Counters.Counter private _tokenIdCounter;


  bool public publicSaleState = false;

  string public baseURI;


  address private deployer;
  address payable private artist = payable(0xAaB32294f0c6D35b1e08cEDc46a7a9fb4b2cbc41);
  address payable private teamLead = payable(0xa91d6B3B06043296A7003327A31AF8eF2a598c02);

  constructor() ERC721("Sock Pops", "SP") { 
    deployer = msg.sender;
  }

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

  function setBaseURI(string calldata newBaseUri) external onlyOwner {
    baseURI = newBaseUri;
  }
  
  function changeStatePublicSale() public onlyOwner returns(bool) {
    publicSaleState = !publicSaleState;
    return publicSaleState;
  }

  function changeFreeMaxMints (uint256 newMax) external onlyOwner{
    maxFreeMintSupply = newMax;
  }

  function airdropToWallet(address walletAddress, uint amount) public onlyOwner{
    mintInternal(walletAddress, amount);
  }

  function mint(uint numberOfTokens) external payable {
    require(publicSaleState, "Sale is not active");
    require(msg.value >= getCurrentMintPrice().mul(numberOfTokens), "Insufficient payment");
    require(numberOfTokens <= mintLimit, "Too many tokens for one transaction");

    mintInternal(msg.sender, numberOfTokens);
  }

  function getCurrentMintPrice() public view returns(uint256){
    if(totalSupply() < maxFreeMintSupply){
      return earlyPrice;
    }else{
      return latePrice;
    }
  }

  function mintInternal(address wallet, uint amount) internal {

    uint currentTokenSupply = _tokenIdCounter.current();
    require(currentTokenSupply.add(amount) <= maxSupply, "Not enough tokens left");

    
    for(uint i = 0; i< amount; i++){
    currentTokenSupply++;
    _safeMint(wallet, currentTokenSupply);
    _tokenIdCounter.increment();
    }
  }

  function reserve(uint256 numberOfTokens) external onlyOwner {
    mintInternal(msg.sender, numberOfTokens);
  }

  function totalSupply() public view returns (uint){
    return _tokenIdCounter.current();
}
  
  function withdrawAll() public onlyOwner {
    require(address(this).balance > 0, "No balance to withdraw");
    uint256 balance = address(this).balance;
    artist.transfer(balance*30/100);
    teamLead.transfer(balance*30/100);
    payable(deployer).transfer(address(this).balance); 
  }

}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

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

pragma solidity ^0.8.0;

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

        uint256 size;
        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 11 of 13 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"walletAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdropToWallet","outputs":[],"stateMutability":"nonpayable","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"changeFreeMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"changeStatePublicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earlyPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"latePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","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":"mintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"publicSaleState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseUri","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":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052662386f26fc1000060075560006008556014600955611388600a556103e8600b556000600d60006101000a81548160ff02191690831515021790555073aab32294f0c6d35b1e08cedc46a7a9fb4b2cbc41601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a91d6b3b06043296a7003327a31af8ef2a598c02601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000f757600080fd5b506040518060400160405280600981526020017f536f636b20506f707300000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f53500000000000000000000000000000000000000000000000000000000000008152506200018462000178620001ff60201b60201c565b6200020760201b60201c565b81600190805190602001906200019c929190620002cb565b508060029080519060200190620001b5929190620002cb565b50505033600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003e0565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002d9906200037b565b90600052602060002090601f016020900481019282620002fd576000855562000349565b82601f106200031857805160ff191683800117855562000349565b8280016001018555821562000349579182015b82811115620003485782518255916020019190600101906200032b565b5b5090506200035891906200035c565b5090565b5b80821115620003775760008160009055506001016200035d565b5090565b600060028204905060018216806200039457607f821691505b60208210811415620003ab57620003aa620003b1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613b2d80620003f06000396000f3fe6080604052600436106101e35760003560e01c8063819b25ba11610102578063c87b56dd11610095578063e82ded2111610064578063e82ded21146106ad578063e985e9c5146106d8578063f2fde38b14610715578063fbdd8a781461073e576101e3565b8063c87b56dd146105f1578063d1cbf17d1461062e578063d5abeb0114610659578063da0f02ca14610684576101e3565b8063996517cf116100d1578063996517cf14610558578063a0712d6814610583578063a22cb4651461059f578063b88d4fde146105c8576101e3565b8063819b25ba146104c2578063853828b6146104eb5780638da5cb5b1461050257806395d89b411461052d576101e3565b806323d989171161017a5780636c0360eb116101495780636c0360eb1461041857806370a0823114610443578063715018a61461048057806371adc02a14610497576101e3565b806323d989171461036057806342842e0e1461038957806355f804b3146103b25780636352211e146103db576101e3565b806318160ddd116101b657806318160ddd146102b657806322d59d54146102e1578063239c47c01461030c57806323b872dd14610337576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612950565b610769565b60405161021c9190612e4a565b60405180910390f35b34801561023157600080fd5b5061023a61084b565b6040516102479190612e65565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906129e7565b6108dd565b6040516102849190612de3565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612914565b610962565b005b3480156102c257600080fd5b506102cb610a7a565b6040516102d89190613127565b60405180910390f35b3480156102ed57600080fd5b506102f6610a8b565b6040516103039190613127565b60405180910390f35b34801561031857600080fd5b50610321610a91565b60405161032e9190613127565b60405180910390f35b34801561034357600080fd5b5061035e6004803603810190610359919061280e565b610a97565b005b34801561036c57600080fd5b5061038760048036038101906103829190612914565b610af7565b005b34801561039557600080fd5b506103b060048036038101906103ab919061280e565b610b81565b005b3480156103be57600080fd5b506103d960048036038101906103d491906129a2565b610ba1565b005b3480156103e757600080fd5b5061040260048036038101906103fd91906129e7565b610c33565b60405161040f9190612de3565b60405180910390f35b34801561042457600080fd5b5061042d610ce5565b60405161043a9190612e65565b60405180910390f35b34801561044f57600080fd5b5061046a600480360381019061046591906127a9565b610d73565b6040516104779190613127565b60405180910390f35b34801561048c57600080fd5b50610495610e2b565b005b3480156104a357600080fd5b506104ac610eb3565b6040516104b99190612e4a565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e491906129e7565b610ec6565b005b3480156104f757600080fd5b50610500610f4f565b005b34801561050e57600080fd5b50610517611181565b6040516105249190612de3565b60405180910390f35b34801561053957600080fd5b506105426111aa565b60405161054f9190612e65565b60405180910390f35b34801561056457600080fd5b5061056d61123c565b60405161057a9190613127565b60405180910390f35b61059d600480360381019061059891906129e7565b611242565b005b3480156105ab57600080fd5b506105c660048036038101906105c191906128d8565b61133f565b005b3480156105d457600080fd5b506105ef60048036038101906105ea919061285d565b6114c0565b005b3480156105fd57600080fd5b50610618600480360381019061061391906129e7565b611522565b6040516106259190612e65565b60405180910390f35b34801561063a57600080fd5b506106436115c9565b6040516106509190612e4a565b60405180910390f35b34801561066557600080fd5b5061066e611686565b60405161067b9190613127565b60405180910390f35b34801561069057600080fd5b506106ab60048036038101906106a691906129e7565b61168c565b005b3480156106b957600080fd5b506106c2611712565b6040516106cf9190613127565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa91906127d2565b611738565b60405161070c9190612e4a565b60405180910390f35b34801561072157600080fd5b5061073c600480360381019061073791906127a9565b6117cc565b005b34801561074a57600080fd5b506107536118c4565b6040516107609190613127565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108445750610843826118ca565b5b9050919050565b60606001805461085a906133a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610886906133a6565b80156108d35780601f106108a8576101008083540402835291602001916108d3565b820191906000526020600020905b8154815290600101906020018083116108b657829003601f168201915b5050505050905090565b60006108e882611934565b610927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091e90613047565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096d82610c33565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d5906130e7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109fd6119a0565b73ffffffffffffffffffffffffffffffffffffffff161480610a2c5750610a2b81610a266119a0565b611738565b5b610a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6290612f87565b60405180910390fd5b610a7583836119a8565b505050565b6000610a86600c611a61565b905090565b600b5481565b60085481565b610aa8610aa26119a0565b82611a6f565b610ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ade90613107565b60405180910390fd5b610af2838383611b4d565b505050565b610aff6119a0565b73ffffffffffffffffffffffffffffffffffffffff16610b1d611181565b73ffffffffffffffffffffffffffffffffffffffff1614610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90613067565b60405180910390fd5b610b7d8282611da9565b5050565b610b9c838383604051806020016040528060008152506114c0565b505050565b610ba96119a0565b73ffffffffffffffffffffffffffffffffffffffff16610bc7611181565b73ffffffffffffffffffffffffffffffffffffffff1614610c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1490613067565b60405180910390fd5b8181600e9190610c2e9291906125eb565b505050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd390612fc7565b60405180910390fd5b80915050919050565b600e8054610cf2906133a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1e906133a6565b8015610d6b5780601f10610d4057610100808354040283529160200191610d6b565b820191906000526020600020905b815481529060010190602001808311610d4e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb90612fa7565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e336119a0565b73ffffffffffffffffffffffffffffffffffffffff16610e51611181565b73ffffffffffffffffffffffffffffffffffffffff1614610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e90613067565b60405180910390fd5b610eb16000611e54565b565b600d60009054906101000a900460ff1681565b610ece6119a0565b73ffffffffffffffffffffffffffffffffffffffff16610eec611181565b73ffffffffffffffffffffffffffffffffffffffff1614610f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3990613067565b60405180910390fd5b610f4c3382611da9565b50565b610f576119a0565b73ffffffffffffffffffffffffffffffffffffffff16610f75611181565b73ffffffffffffffffffffffffffffffffffffffff1614610fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc290613067565b60405180910390fd5b6000471161100e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611005906130c7565b60405180910390fd5b6000479050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064601e8461105e9190613262565b6110689190613231565b9081150290604051600060405180830381858888f19350505050158015611093573d6000803e3d6000fd5b50601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064601e846110df9190613262565b6110e99190613231565b9081150290604051600060405180830381858888f19350505050158015611114573d6000803e3d6000fd5b50600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561117d573d6000803e3d6000fd5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546111b9906133a6565b80601f01602080910402602001604051908101604052809291908181526020018280546111e5906133a6565b80156112325780601f1061120757610100808354040283529160200191611232565b820191906000526020600020905b81548152906001019060200180831161121557829003601f168201915b5050505050905090565b60095481565b600d60009054906101000a900460ff16611291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128890612f47565b60405180910390fd5b6112ab8161129d611712565b611f1890919063ffffffff16565b3410156112ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e490613027565b60405180910390fd5b600954811115611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132990612e87565b60405180910390fd5b61133c3382611da9565b50565b6113476119a0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ac90612f27565b60405180910390fd5b80600660006113c26119a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661146f6119a0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114b49190612e4a565b60405180910390a35050565b6114d16114cb6119a0565b83611a6f565b611510576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150790613107565b60405180910390fd5b61151c84848484611f2e565b50505050565b606061152d82611934565b61156c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611563906130a7565b60405180910390fd5b6000611576611f8a565b9050600081511161159657604051806020016040528060008152506115c1565b806115a08461201c565b6040516020016115b1929190612dbf565b6040516020818303038152906040525b915050919050565b60006115d36119a0565b73ffffffffffffffffffffffffffffffffffffffff166115f1611181565b73ffffffffffffffffffffffffffffffffffffffff1614611647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163e90613067565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550600d60009054906101000a900460ff16905090565b600a5481565b6116946119a0565b73ffffffffffffffffffffffffffffffffffffffff166116b2611181565b73ffffffffffffffffffffffffffffffffffffffff1614611708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ff90613067565b60405180910390fd5b80600b8190555050565b6000600b5461171f610a7a565b101561172f576008549050611735565b60075490505b90565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117d46119a0565b73ffffffffffffffffffffffffffffffffffffffff166117f2611181565b73ffffffffffffffffffffffffffffffffffffffff1614611848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183f90613067565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118af90612ec7565b60405180910390fd5b6118c181611e54565b50565b60075481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a1b83610c33565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611a7a82611934565b611ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab090612f67565b60405180910390fd5b6000611ac483610c33565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b3357508373ffffffffffffffffffffffffffffffffffffffff16611b1b846108dd565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b445750611b438185611738565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b6d82610c33565b73ffffffffffffffffffffffffffffffffffffffff1614611bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bba90613087565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2a90612f07565b60405180910390fd5b611c3e8383836121c9565b611c496000826119a8565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c9991906132bc565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cf091906131db565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000611db5600c611a61565b9050600a54611dcd83836121ce90919063ffffffff16565b1115611e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0590612fe7565b60405180910390fd5b60005b82811015611e4e578180611e2490613409565b925050611e3184836121e4565b611e3b600c612202565b8080611e4690613409565b915050611e11565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611f269190613262565b905092915050565b611f39848484611b4d565b611f4584848484612218565b611f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7b90612ea7565b60405180910390fd5b50505050565b6060600e8054611f99906133a6565b80601f0160208091040260200160405190810160405280929190818152602001828054611fc5906133a6565b80156120125780601f10611fe757610100808354040283529160200191612012565b820191906000526020600020905b815481529060010190602001808311611ff557829003601f168201915b5050505050905090565b60606000821415612064576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121c4565b600082905060005b6000821461209657808061207f90613409565b915050600a8261208f9190613231565b915061206c565b60008167ffffffffffffffff8111156120d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561210a5781602001600182028036833780820191505090505b5090505b600085146121bd5760018261212391906132bc565b9150600a856121329190613452565b603061213e91906131db565b60f81b81838151811061217a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121b69190613231565b945061210e565b8093505050505b919050565b505050565b600081836121dc91906131db565b905092915050565b6121fe8282604051806020016040528060008152506123af565b5050565b6001816000016000828254019250508190555050565b60006122398473ffffffffffffffffffffffffffffffffffffffff1661240a565b156123a2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122626119a0565b8786866040518563ffffffff1660e01b81526004016122849493929190612dfe565b602060405180830381600087803b15801561229e57600080fd5b505af19250505080156122cf57506040513d601f19601f820116820180604052508101906122cc9190612979565b60015b612352573d80600081146122ff576040519150601f19603f3d011682016040523d82523d6000602084013e612304565b606091505b5060008151141561234a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234190612ea7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123a7565b600190505b949350505050565b6123b9838361241d565b6123c66000848484612218565b612405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fc90612ea7565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561248d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248490613007565b60405180910390fd5b61249681611934565b156124d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cd90612ee7565b60405180910390fd5b6124e2600083836121c9565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461253291906131db565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546125f7906133a6565b90600052602060002090601f0160209004810192826126195760008555612660565b82601f1061263257803560ff1916838001178555612660565b82800160010185558215612660579182015b8281111561265f578235825591602001919060010190612644565b5b50905061266d9190612671565b5090565b5b8082111561268a576000816000905550600101612672565b5090565b60006126a161269c84613167565b613142565b9050828152602081018484840111156126b957600080fd5b6126c4848285613364565b509392505050565b6000813590506126db81613a9b565b92915050565b6000813590506126f081613ab2565b92915050565b60008135905061270581613ac9565b92915050565b60008151905061271a81613ac9565b92915050565b600082601f83011261273157600080fd5b813561274184826020860161268e565b91505092915050565b60008083601f84011261275c57600080fd5b8235905067ffffffffffffffff81111561277557600080fd5b60208301915083600182028301111561278d57600080fd5b9250929050565b6000813590506127a381613ae0565b92915050565b6000602082840312156127bb57600080fd5b60006127c9848285016126cc565b91505092915050565b600080604083850312156127e557600080fd5b60006127f3858286016126cc565b9250506020612804858286016126cc565b9150509250929050565b60008060006060848603121561282357600080fd5b6000612831868287016126cc565b9350506020612842868287016126cc565b925050604061285386828701612794565b9150509250925092565b6000806000806080858703121561287357600080fd5b6000612881878288016126cc565b9450506020612892878288016126cc565b93505060406128a387828801612794565b925050606085013567ffffffffffffffff8111156128c057600080fd5b6128cc87828801612720565b91505092959194509250565b600080604083850312156128eb57600080fd5b60006128f9858286016126cc565b925050602061290a858286016126e1565b9150509250929050565b6000806040838503121561292757600080fd5b6000612935858286016126cc565b925050602061294685828601612794565b9150509250929050565b60006020828403121561296257600080fd5b6000612970848285016126f6565b91505092915050565b60006020828403121561298b57600080fd5b60006129998482850161270b565b91505092915050565b600080602083850312156129b557600080fd5b600083013567ffffffffffffffff8111156129cf57600080fd5b6129db8582860161274a565b92509250509250929050565b6000602082840312156129f957600080fd5b6000612a0784828501612794565b91505092915050565b612a19816132f0565b82525050565b612a2881613302565b82525050565b6000612a3982613198565b612a4381856131ae565b9350612a53818560208601613373565b612a5c8161353f565b840191505092915050565b6000612a72826131a3565b612a7c81856131bf565b9350612a8c818560208601613373565b612a958161353f565b840191505092915050565b6000612aab826131a3565b612ab581856131d0565b9350612ac5818560208601613373565b80840191505092915050565b6000612ade6023836131bf565b9150612ae982613550565b604082019050919050565b6000612b016032836131bf565b9150612b0c8261359f565b604082019050919050565b6000612b246026836131bf565b9150612b2f826135ee565b604082019050919050565b6000612b47601c836131bf565b9150612b528261363d565b602082019050919050565b6000612b6a6024836131bf565b9150612b7582613666565b604082019050919050565b6000612b8d6019836131bf565b9150612b98826136b5565b602082019050919050565b6000612bb06012836131bf565b9150612bbb826136de565b602082019050919050565b6000612bd3602c836131bf565b9150612bde82613707565b604082019050919050565b6000612bf66038836131bf565b9150612c0182613756565b604082019050919050565b6000612c19602a836131bf565b9150612c24826137a5565b604082019050919050565b6000612c3c6029836131bf565b9150612c47826137f4565b604082019050919050565b6000612c5f6016836131bf565b9150612c6a82613843565b602082019050919050565b6000612c826020836131bf565b9150612c8d8261386c565b602082019050919050565b6000612ca56014836131bf565b9150612cb082613895565b602082019050919050565b6000612cc8602c836131bf565b9150612cd3826138be565b604082019050919050565b6000612ceb6020836131bf565b9150612cf68261390d565b602082019050919050565b6000612d0e6029836131bf565b9150612d1982613936565b604082019050919050565b6000612d31602f836131bf565b9150612d3c82613985565b604082019050919050565b6000612d546016836131bf565b9150612d5f826139d4565b602082019050919050565b6000612d776021836131bf565b9150612d82826139fd565b604082019050919050565b6000612d9a6031836131bf565b9150612da582613a4c565b604082019050919050565b612db98161335a565b82525050565b6000612dcb8285612aa0565b9150612dd78284612aa0565b91508190509392505050565b6000602082019050612df86000830184612a10565b92915050565b6000608082019050612e136000830187612a10565b612e206020830186612a10565b612e2d6040830185612db0565b8181036060830152612e3f8184612a2e565b905095945050505050565b6000602082019050612e5f6000830184612a1f565b92915050565b60006020820190508181036000830152612e7f8184612a67565b905092915050565b60006020820190508181036000830152612ea081612ad1565b9050919050565b60006020820190508181036000830152612ec081612af4565b9050919050565b60006020820190508181036000830152612ee081612b17565b9050919050565b60006020820190508181036000830152612f0081612b3a565b9050919050565b60006020820190508181036000830152612f2081612b5d565b9050919050565b60006020820190508181036000830152612f4081612b80565b9050919050565b60006020820190508181036000830152612f6081612ba3565b9050919050565b60006020820190508181036000830152612f8081612bc6565b9050919050565b60006020820190508181036000830152612fa081612be9565b9050919050565b60006020820190508181036000830152612fc081612c0c565b9050919050565b60006020820190508181036000830152612fe081612c2f565b9050919050565b6000602082019050818103600083015261300081612c52565b9050919050565b6000602082019050818103600083015261302081612c75565b9050919050565b6000602082019050818103600083015261304081612c98565b9050919050565b6000602082019050818103600083015261306081612cbb565b9050919050565b6000602082019050818103600083015261308081612cde565b9050919050565b600060208201905081810360008301526130a081612d01565b9050919050565b600060208201905081810360008301526130c081612d24565b9050919050565b600060208201905081810360008301526130e081612d47565b9050919050565b6000602082019050818103600083015261310081612d6a565b9050919050565b6000602082019050818103600083015261312081612d8d565b9050919050565b600060208201905061313c6000830184612db0565b92915050565b600061314c61315d565b905061315882826133d8565b919050565b6000604051905090565b600067ffffffffffffffff82111561318257613181613510565b5b61318b8261353f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006131e68261335a565b91506131f18361335a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561322657613225613483565b5b828201905092915050565b600061323c8261335a565b91506132478361335a565b925082613257576132566134b2565b5b828204905092915050565b600061326d8261335a565b91506132788361335a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132b1576132b0613483565b5b828202905092915050565b60006132c78261335a565b91506132d28361335a565b9250828210156132e5576132e4613483565b5b828203905092915050565b60006132fb8261333a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613391578082015181840152602081019050613376565b838111156133a0576000848401525b50505050565b600060028204905060018216806133be57607f821691505b602082108114156133d2576133d16134e1565b5b50919050565b6133e18261353f565b810181811067ffffffffffffffff82111715613400576133ff613510565b5b80604052505050565b60006134148261335a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561344757613446613483565b5b600182019050919050565b600061345d8261335a565b91506134688361335a565b925082613478576134776134b2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f546f6f206d616e7920746f6b656e7320666f72206f6e65207472616e7361637460008201527f696f6e0000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f2062616c616e636520746f20776974686472617700000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b613aa4816132f0565b8114613aaf57600080fd5b50565b613abb81613302565b8114613ac657600080fd5b50565b613ad28161330e565b8114613add57600080fd5b50565b613ae98161335a565b8114613af457600080fd5b5056fea2646970667358221220d0a71cdc5de4e8e80639f33c685ece1d2b454a612cb2d7a8be3330902d8ef49c64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c8063819b25ba11610102578063c87b56dd11610095578063e82ded2111610064578063e82ded21146106ad578063e985e9c5146106d8578063f2fde38b14610715578063fbdd8a781461073e576101e3565b8063c87b56dd146105f1578063d1cbf17d1461062e578063d5abeb0114610659578063da0f02ca14610684576101e3565b8063996517cf116100d1578063996517cf14610558578063a0712d6814610583578063a22cb4651461059f578063b88d4fde146105c8576101e3565b8063819b25ba146104c2578063853828b6146104eb5780638da5cb5b1461050257806395d89b411461052d576101e3565b806323d989171161017a5780636c0360eb116101495780636c0360eb1461041857806370a0823114610443578063715018a61461048057806371adc02a14610497576101e3565b806323d989171461036057806342842e0e1461038957806355f804b3146103b25780636352211e146103db576101e3565b806318160ddd116101b657806318160ddd146102b657806322d59d54146102e1578063239c47c01461030c57806323b872dd14610337576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612950565b610769565b60405161021c9190612e4a565b60405180910390f35b34801561023157600080fd5b5061023a61084b565b6040516102479190612e65565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906129e7565b6108dd565b6040516102849190612de3565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612914565b610962565b005b3480156102c257600080fd5b506102cb610a7a565b6040516102d89190613127565b60405180910390f35b3480156102ed57600080fd5b506102f6610a8b565b6040516103039190613127565b60405180910390f35b34801561031857600080fd5b50610321610a91565b60405161032e9190613127565b60405180910390f35b34801561034357600080fd5b5061035e6004803603810190610359919061280e565b610a97565b005b34801561036c57600080fd5b5061038760048036038101906103829190612914565b610af7565b005b34801561039557600080fd5b506103b060048036038101906103ab919061280e565b610b81565b005b3480156103be57600080fd5b506103d960048036038101906103d491906129a2565b610ba1565b005b3480156103e757600080fd5b5061040260048036038101906103fd91906129e7565b610c33565b60405161040f9190612de3565b60405180910390f35b34801561042457600080fd5b5061042d610ce5565b60405161043a9190612e65565b60405180910390f35b34801561044f57600080fd5b5061046a600480360381019061046591906127a9565b610d73565b6040516104779190613127565b60405180910390f35b34801561048c57600080fd5b50610495610e2b565b005b3480156104a357600080fd5b506104ac610eb3565b6040516104b99190612e4a565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e491906129e7565b610ec6565b005b3480156104f757600080fd5b50610500610f4f565b005b34801561050e57600080fd5b50610517611181565b6040516105249190612de3565b60405180910390f35b34801561053957600080fd5b506105426111aa565b60405161054f9190612e65565b60405180910390f35b34801561056457600080fd5b5061056d61123c565b60405161057a9190613127565b60405180910390f35b61059d600480360381019061059891906129e7565b611242565b005b3480156105ab57600080fd5b506105c660048036038101906105c191906128d8565b61133f565b005b3480156105d457600080fd5b506105ef60048036038101906105ea919061285d565b6114c0565b005b3480156105fd57600080fd5b50610618600480360381019061061391906129e7565b611522565b6040516106259190612e65565b60405180910390f35b34801561063a57600080fd5b506106436115c9565b6040516106509190612e4a565b60405180910390f35b34801561066557600080fd5b5061066e611686565b60405161067b9190613127565b60405180910390f35b34801561069057600080fd5b506106ab60048036038101906106a691906129e7565b61168c565b005b3480156106b957600080fd5b506106c2611712565b6040516106cf9190613127565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa91906127d2565b611738565b60405161070c9190612e4a565b60405180910390f35b34801561072157600080fd5b5061073c600480360381019061073791906127a9565b6117cc565b005b34801561074a57600080fd5b506107536118c4565b6040516107609190613127565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108445750610843826118ca565b5b9050919050565b60606001805461085a906133a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610886906133a6565b80156108d35780601f106108a8576101008083540402835291602001916108d3565b820191906000526020600020905b8154815290600101906020018083116108b657829003601f168201915b5050505050905090565b60006108e882611934565b610927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091e90613047565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096d82610c33565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d5906130e7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109fd6119a0565b73ffffffffffffffffffffffffffffffffffffffff161480610a2c5750610a2b81610a266119a0565b611738565b5b610a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6290612f87565b60405180910390fd5b610a7583836119a8565b505050565b6000610a86600c611a61565b905090565b600b5481565b60085481565b610aa8610aa26119a0565b82611a6f565b610ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ade90613107565b60405180910390fd5b610af2838383611b4d565b505050565b610aff6119a0565b73ffffffffffffffffffffffffffffffffffffffff16610b1d611181565b73ffffffffffffffffffffffffffffffffffffffff1614610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90613067565b60405180910390fd5b610b7d8282611da9565b5050565b610b9c838383604051806020016040528060008152506114c0565b505050565b610ba96119a0565b73ffffffffffffffffffffffffffffffffffffffff16610bc7611181565b73ffffffffffffffffffffffffffffffffffffffff1614610c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1490613067565b60405180910390fd5b8181600e9190610c2e9291906125eb565b505050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd390612fc7565b60405180910390fd5b80915050919050565b600e8054610cf2906133a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1e906133a6565b8015610d6b5780601f10610d4057610100808354040283529160200191610d6b565b820191906000526020600020905b815481529060010190602001808311610d4e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb90612fa7565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e336119a0565b73ffffffffffffffffffffffffffffffffffffffff16610e51611181565b73ffffffffffffffffffffffffffffffffffffffff1614610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e90613067565b60405180910390fd5b610eb16000611e54565b565b600d60009054906101000a900460ff1681565b610ece6119a0565b73ffffffffffffffffffffffffffffffffffffffff16610eec611181565b73ffffffffffffffffffffffffffffffffffffffff1614610f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3990613067565b60405180910390fd5b610f4c3382611da9565b50565b610f576119a0565b73ffffffffffffffffffffffffffffffffffffffff16610f75611181565b73ffffffffffffffffffffffffffffffffffffffff1614610fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc290613067565b60405180910390fd5b6000471161100e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611005906130c7565b60405180910390fd5b6000479050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064601e8461105e9190613262565b6110689190613231565b9081150290604051600060405180830381858888f19350505050158015611093573d6000803e3d6000fd5b50601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064601e846110df9190613262565b6110e99190613231565b9081150290604051600060405180830381858888f19350505050158015611114573d6000803e3d6000fd5b50600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561117d573d6000803e3d6000fd5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546111b9906133a6565b80601f01602080910402602001604051908101604052809291908181526020018280546111e5906133a6565b80156112325780601f1061120757610100808354040283529160200191611232565b820191906000526020600020905b81548152906001019060200180831161121557829003601f168201915b5050505050905090565b60095481565b600d60009054906101000a900460ff16611291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128890612f47565b60405180910390fd5b6112ab8161129d611712565b611f1890919063ffffffff16565b3410156112ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e490613027565b60405180910390fd5b600954811115611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132990612e87565b60405180910390fd5b61133c3382611da9565b50565b6113476119a0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ac90612f27565b60405180910390fd5b80600660006113c26119a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661146f6119a0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114b49190612e4a565b60405180910390a35050565b6114d16114cb6119a0565b83611a6f565b611510576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150790613107565b60405180910390fd5b61151c84848484611f2e565b50505050565b606061152d82611934565b61156c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611563906130a7565b60405180910390fd5b6000611576611f8a565b9050600081511161159657604051806020016040528060008152506115c1565b806115a08461201c565b6040516020016115b1929190612dbf565b6040516020818303038152906040525b915050919050565b60006115d36119a0565b73ffffffffffffffffffffffffffffffffffffffff166115f1611181565b73ffffffffffffffffffffffffffffffffffffffff1614611647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163e90613067565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550600d60009054906101000a900460ff16905090565b600a5481565b6116946119a0565b73ffffffffffffffffffffffffffffffffffffffff166116b2611181565b73ffffffffffffffffffffffffffffffffffffffff1614611708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ff90613067565b60405180910390fd5b80600b8190555050565b6000600b5461171f610a7a565b101561172f576008549050611735565b60075490505b90565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117d46119a0565b73ffffffffffffffffffffffffffffffffffffffff166117f2611181565b73ffffffffffffffffffffffffffffffffffffffff1614611848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183f90613067565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118af90612ec7565b60405180910390fd5b6118c181611e54565b50565b60075481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a1b83610c33565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611a7a82611934565b611ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab090612f67565b60405180910390fd5b6000611ac483610c33565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b3357508373ffffffffffffffffffffffffffffffffffffffff16611b1b846108dd565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b445750611b438185611738565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b6d82610c33565b73ffffffffffffffffffffffffffffffffffffffff1614611bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bba90613087565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2a90612f07565b60405180910390fd5b611c3e8383836121c9565b611c496000826119a8565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c9991906132bc565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cf091906131db565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000611db5600c611a61565b9050600a54611dcd83836121ce90919063ffffffff16565b1115611e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0590612fe7565b60405180910390fd5b60005b82811015611e4e578180611e2490613409565b925050611e3184836121e4565b611e3b600c612202565b8080611e4690613409565b915050611e11565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611f269190613262565b905092915050565b611f39848484611b4d565b611f4584848484612218565b611f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7b90612ea7565b60405180910390fd5b50505050565b6060600e8054611f99906133a6565b80601f0160208091040260200160405190810160405280929190818152602001828054611fc5906133a6565b80156120125780601f10611fe757610100808354040283529160200191612012565b820191906000526020600020905b815481529060010190602001808311611ff557829003601f168201915b5050505050905090565b60606000821415612064576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121c4565b600082905060005b6000821461209657808061207f90613409565b915050600a8261208f9190613231565b915061206c565b60008167ffffffffffffffff8111156120d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561210a5781602001600182028036833780820191505090505b5090505b600085146121bd5760018261212391906132bc565b9150600a856121329190613452565b603061213e91906131db565b60f81b81838151811061217a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121b69190613231565b945061210e565b8093505050505b919050565b505050565b600081836121dc91906131db565b905092915050565b6121fe8282604051806020016040528060008152506123af565b5050565b6001816000016000828254019250508190555050565b60006122398473ffffffffffffffffffffffffffffffffffffffff1661240a565b156123a2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122626119a0565b8786866040518563ffffffff1660e01b81526004016122849493929190612dfe565b602060405180830381600087803b15801561229e57600080fd5b505af19250505080156122cf57506040513d601f19601f820116820180604052508101906122cc9190612979565b60015b612352573d80600081146122ff576040519150601f19603f3d011682016040523d82523d6000602084013e612304565b606091505b5060008151141561234a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234190612ea7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123a7565b600190505b949350505050565b6123b9838361241d565b6123c66000848484612218565b612405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fc90612ea7565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561248d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248490613007565b60405180910390fd5b61249681611934565b156124d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cd90612ee7565b60405180910390fd5b6124e2600083836121c9565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461253291906131db565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546125f7906133a6565b90600052602060002090601f0160209004810192826126195760008555612660565b82601f1061263257803560ff1916838001178555612660565b82800160010185558215612660579182015b8281111561265f578235825591602001919060010190612644565b5b50905061266d9190612671565b5090565b5b8082111561268a576000816000905550600101612672565b5090565b60006126a161269c84613167565b613142565b9050828152602081018484840111156126b957600080fd5b6126c4848285613364565b509392505050565b6000813590506126db81613a9b565b92915050565b6000813590506126f081613ab2565b92915050565b60008135905061270581613ac9565b92915050565b60008151905061271a81613ac9565b92915050565b600082601f83011261273157600080fd5b813561274184826020860161268e565b91505092915050565b60008083601f84011261275c57600080fd5b8235905067ffffffffffffffff81111561277557600080fd5b60208301915083600182028301111561278d57600080fd5b9250929050565b6000813590506127a381613ae0565b92915050565b6000602082840312156127bb57600080fd5b60006127c9848285016126cc565b91505092915050565b600080604083850312156127e557600080fd5b60006127f3858286016126cc565b9250506020612804858286016126cc565b9150509250929050565b60008060006060848603121561282357600080fd5b6000612831868287016126cc565b9350506020612842868287016126cc565b925050604061285386828701612794565b9150509250925092565b6000806000806080858703121561287357600080fd5b6000612881878288016126cc565b9450506020612892878288016126cc565b93505060406128a387828801612794565b925050606085013567ffffffffffffffff8111156128c057600080fd5b6128cc87828801612720565b91505092959194509250565b600080604083850312156128eb57600080fd5b60006128f9858286016126cc565b925050602061290a858286016126e1565b9150509250929050565b6000806040838503121561292757600080fd5b6000612935858286016126cc565b925050602061294685828601612794565b9150509250929050565b60006020828403121561296257600080fd5b6000612970848285016126f6565b91505092915050565b60006020828403121561298b57600080fd5b60006129998482850161270b565b91505092915050565b600080602083850312156129b557600080fd5b600083013567ffffffffffffffff8111156129cf57600080fd5b6129db8582860161274a565b92509250509250929050565b6000602082840312156129f957600080fd5b6000612a0784828501612794565b91505092915050565b612a19816132f0565b82525050565b612a2881613302565b82525050565b6000612a3982613198565b612a4381856131ae565b9350612a53818560208601613373565b612a5c8161353f565b840191505092915050565b6000612a72826131a3565b612a7c81856131bf565b9350612a8c818560208601613373565b612a958161353f565b840191505092915050565b6000612aab826131a3565b612ab581856131d0565b9350612ac5818560208601613373565b80840191505092915050565b6000612ade6023836131bf565b9150612ae982613550565b604082019050919050565b6000612b016032836131bf565b9150612b0c8261359f565b604082019050919050565b6000612b246026836131bf565b9150612b2f826135ee565b604082019050919050565b6000612b47601c836131bf565b9150612b528261363d565b602082019050919050565b6000612b6a6024836131bf565b9150612b7582613666565b604082019050919050565b6000612b8d6019836131bf565b9150612b98826136b5565b602082019050919050565b6000612bb06012836131bf565b9150612bbb826136de565b602082019050919050565b6000612bd3602c836131bf565b9150612bde82613707565b604082019050919050565b6000612bf66038836131bf565b9150612c0182613756565b604082019050919050565b6000612c19602a836131bf565b9150612c24826137a5565b604082019050919050565b6000612c3c6029836131bf565b9150612c47826137f4565b604082019050919050565b6000612c5f6016836131bf565b9150612c6a82613843565b602082019050919050565b6000612c826020836131bf565b9150612c8d8261386c565b602082019050919050565b6000612ca56014836131bf565b9150612cb082613895565b602082019050919050565b6000612cc8602c836131bf565b9150612cd3826138be565b604082019050919050565b6000612ceb6020836131bf565b9150612cf68261390d565b602082019050919050565b6000612d0e6029836131bf565b9150612d1982613936565b604082019050919050565b6000612d31602f836131bf565b9150612d3c82613985565b604082019050919050565b6000612d546016836131bf565b9150612d5f826139d4565b602082019050919050565b6000612d776021836131bf565b9150612d82826139fd565b604082019050919050565b6000612d9a6031836131bf565b9150612da582613a4c565b604082019050919050565b612db98161335a565b82525050565b6000612dcb8285612aa0565b9150612dd78284612aa0565b91508190509392505050565b6000602082019050612df86000830184612a10565b92915050565b6000608082019050612e136000830187612a10565b612e206020830186612a10565b612e2d6040830185612db0565b8181036060830152612e3f8184612a2e565b905095945050505050565b6000602082019050612e5f6000830184612a1f565b92915050565b60006020820190508181036000830152612e7f8184612a67565b905092915050565b60006020820190508181036000830152612ea081612ad1565b9050919050565b60006020820190508181036000830152612ec081612af4565b9050919050565b60006020820190508181036000830152612ee081612b17565b9050919050565b60006020820190508181036000830152612f0081612b3a565b9050919050565b60006020820190508181036000830152612f2081612b5d565b9050919050565b60006020820190508181036000830152612f4081612b80565b9050919050565b60006020820190508181036000830152612f6081612ba3565b9050919050565b60006020820190508181036000830152612f8081612bc6565b9050919050565b60006020820190508181036000830152612fa081612be9565b9050919050565b60006020820190508181036000830152612fc081612c0c565b9050919050565b60006020820190508181036000830152612fe081612c2f565b9050919050565b6000602082019050818103600083015261300081612c52565b9050919050565b6000602082019050818103600083015261302081612c75565b9050919050565b6000602082019050818103600083015261304081612c98565b9050919050565b6000602082019050818103600083015261306081612cbb565b9050919050565b6000602082019050818103600083015261308081612cde565b9050919050565b600060208201905081810360008301526130a081612d01565b9050919050565b600060208201905081810360008301526130c081612d24565b9050919050565b600060208201905081810360008301526130e081612d47565b9050919050565b6000602082019050818103600083015261310081612d6a565b9050919050565b6000602082019050818103600083015261312081612d8d565b9050919050565b600060208201905061313c6000830184612db0565b92915050565b600061314c61315d565b905061315882826133d8565b919050565b6000604051905090565b600067ffffffffffffffff82111561318257613181613510565b5b61318b8261353f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006131e68261335a565b91506131f18361335a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561322657613225613483565b5b828201905092915050565b600061323c8261335a565b91506132478361335a565b925082613257576132566134b2565b5b828204905092915050565b600061326d8261335a565b91506132788361335a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132b1576132b0613483565b5b828202905092915050565b60006132c78261335a565b91506132d28361335a565b9250828210156132e5576132e4613483565b5b828203905092915050565b60006132fb8261333a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613391578082015181840152602081019050613376565b838111156133a0576000848401525b50505050565b600060028204905060018216806133be57607f821691505b602082108114156133d2576133d16134e1565b5b50919050565b6133e18261353f565b810181811067ffffffffffffffff82111715613400576133ff613510565b5b80604052505050565b60006134148261335a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561344757613446613483565b5b600182019050919050565b600061345d8261335a565b91506134688361335a565b925082613478576134776134b2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f546f6f206d616e7920746f6b656e7320666f72206f6e65207472616e7361637460008201527f696f6e0000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f2062616c616e636520746f20776974686472617700000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b613aa4816132f0565b8114613aaf57600080fd5b50565b613abb81613302565b8114613ac657600080fd5b50565b613ad28161330e565b8114613add57600080fd5b50565b613ae98161335a565b8114613af457600080fd5b5056fea2646970667358221220d0a71cdc5de4e8e80639f33c685ece1d2b454a612cb2d7a8be3330902d8ef49c64736f6c63430008040033

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.