ETH Price: $3,410.34 (+1.75%)
Gas: 6 Gwei

Token

Pogpunks (POGPUNK)
 

Overview

Max Total Supply

3,276 POGPUNK

Holders

1,005

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
9 POGPUNK
0x5f7bbac91533023be41bb59cca34700f30ec6bcd
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A Punks derivative at the center of the first multi-chain metaverse.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Pogpunk

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : Pogpunk.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.0;

import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/Strings.sol';

import './interfaces/PogpunkERC721.sol';
import './interfaces/PogpunkMetadata.sol';

contract Pogpunk is ERC721Enumerable, Ownable, PogpunkERC721, PogpunkMetadata {
  using Strings for uint256;

  uint256 public constant POGPUNK_GIFT = 150;
  uint256 public constant POGPUNK_PUBLIC = 9851;
  uint256 public constant POGPUNK_MAX = POGPUNK_GIFT + POGPUNK_PUBLIC;
  uint256 public constant PURCHASE_LIMIT = 10;
  uint256 public constant PRICE = 0.035 ether;

  uint256[] public pogpunks;
  bool public isActive = false;
  bool public isAllowListActive = false;
  string public proof;

  uint256 public allowListMaxMint = 3;

  // We will use these to be able to calculate remaining correctly.
  uint256 public totalGiftSupply;
  uint256 public totalPublicSupply;

  mapping(address => bool) private _allowList;
  mapping(address => uint256) private _allowListClaimed;

  string private _contractURI = '';
  string private _tokenBaseURI = '';
  string private _tokenRevealedBaseURI = '';

  constructor() ERC721("Pogpunks", "POGPUNK") {}

  function addToAllowList(address[] calldata addresses) external override onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Can't add the null address");

      _allowList[addresses[i]] = true;
      /**
      * @dev We don't want to reset _allowListClaimed count
      * if we try to add someone more than once.
      */
      _allowListClaimed[addresses[i]] > 0 ? _allowListClaimed[addresses[i]] : 0;
    }
  }

  function onAllowList(address addr) external view override returns (bool) {
    return _allowList[addr];
  }

  function removeFromAllowList(address[] calldata addresses) external override onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Can't add the null address");

      /// @dev We don't want to reset possible _allowListClaimed numbers.
      _allowList[addresses[i]] = false;
    }
  }

  /**
  * @dev We want to be able to distinguish tokens bought during isAllowListActive
  * and tokens bought outside of isAllowListActive
  */
  function allowListClaimedBy(address owner) external view override returns (uint256){
    require(owner != address(0), 'Zero address not on Allow List');

    return _allowListClaimed[owner];
  }

  function purchase(uint256 numberOfTokens) external override payable {
    require(isActive, 'Contract is not active');
    require(!isAllowListActive, 'Only allowing from Allow List');
    require(totalSupply() + numberOfTokens < POGPUNK_MAX, 'All tokens have been minted');
    require(numberOfTokens <= PURCHASE_LIMIT, 'Would exceed PURCHASE_LIMIT');
    /**
    * @dev The last person to purchase might pay too much.
    * This way however they can't get sniped.
    * If this happens, we'll refund the Eth for the unavailable tokens.
    */
    require(totalPublicSupply < POGPUNK_PUBLIC, 'Purchase would exceed POGPUNK_PUBLIC');
    require(PRICE * numberOfTokens <= msg.value, 'ETH amount is not sufficient');

    for (uint256 i = 0; i < numberOfTokens; i++) {
      /**
      * Since they can get here while exceeding the POGPUNK_MAX,
      * we have to make sure to not mint any additional tokens.
      */
      if (totalPublicSupply < POGPUNK_PUBLIC) {

        // Public token numbering starts after POGPUNK_GIFT. And we don't want our tokens to start at 0 but at 1.

        uint256 tokenId = POGPUNK_GIFT + totalPublicSupply + 1;

        totalPublicSupply += 1;
        pogpunks.push(tokenId);
        _safeMint(msg.sender, tokenId);
      }
    }
  }

  function purchaseAllowList(uint256 numberOfTokens) external override payable {
    require(isAllowListActive, 'Allow List is not active');
    require(_allowList[msg.sender], 'You are not on the Allow List');
    require(totalSupply() < POGPUNK_MAX, 'All tokens have been minted');
    require(numberOfTokens <= allowListMaxMint, 'Cannot purchase this many tokens');
    require(totalPublicSupply + numberOfTokens <= POGPUNK_PUBLIC, 'Purchase would exceed POGPUNK_PUBLIC');
    require(_allowListClaimed[msg.sender] + numberOfTokens <= allowListMaxMint, 'Purchase exceeds max allowed');
    require(PRICE * numberOfTokens <= msg.value, 'ETH amount is not sufficient');

    for (uint256 i = 0; i < numberOfTokens; i++) {
        // @dev Public token numbering starts after POGPUNK_GIFT. We don't want our tokens to start at 0 but at 1.

      uint256 tokenId = POGPUNK_GIFT + totalPublicSupply + 1;

      totalPublicSupply += 1;
      _allowListClaimed[msg.sender] += 1;
      pogpunks.push(tokenId);
      _safeMint(msg.sender, tokenId);
    }
  }

  function gift(address to) external override onlyOwner {
    require(totalSupply() < POGPUNK_MAX, 'All tokens have been minted');
    require(totalGiftSupply + POGPUNK_GIFT <= POGPUNK_GIFT, 'Not enough tokens left to gift');

    for(uint256 i = 0; i < POGPUNK_GIFT; i++) {
      // We don't want our tokens to start at 0 but at 1.

      uint256 tokenId = totalGiftSupply + 1;

      totalGiftSupply += 1;
      pogpunks.push(tokenId);
      _safeMint(to, tokenId);
    }
  }

  function setIsActive(bool _isActive) external override onlyOwner {
    isActive = _isActive;
  }

  function setIsAllowListActive(bool _isAllowListActive) external override onlyOwner {
    isAllowListActive = _isAllowListActive;
  }

  function setAllowListMaxMint(uint256 maxMint) external override onlyOwner {
    allowListMaxMint = maxMint;
  }

  function setProof(string calldata proofString) external override onlyOwner {
    proof = proofString;
  }

  function withdraw() external override onlyOwner {
    uint256 balance = address(this).balance;

    payable(msg.sender).transfer(balance);
  }

  function setContractURI(string calldata URI) external override onlyOwner {
    _contractURI = URI;
  }

  function setBaseURI(string calldata URI) external override onlyOwner {
    _tokenBaseURI = URI;
  }

  function setRevealedBaseURI(string calldata revealedBaseURI) external override onlyOwner {
    _tokenRevealedBaseURI = revealedBaseURI;
  }

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

  function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
    require(_exists(tokenId), 'Token does not exist');

    // Convert string to bytes so we can check if it's empty or not.
    string memory revealedBaseURI = _tokenRevealedBaseURI;
    return bytes(revealedBaseURI).length > 0 ?
      string(abi.encodePacked(revealedBaseURI, tokenId.toString())) : string(abi.encodePacked(_tokenBaseURI, tokenId.toString()));
  }
  
  function getPogpunks()public view returns(uint256 [] memory){
    return pogpunks;
  }
}

File 2 of 15 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 15 : 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 5 of 15 : PogpunkERC721.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.0;

interface PogpunkERC721 {
  function addToAllowList(address[] calldata addresses) external;

  function onAllowList(address addr) external returns (bool);

  function removeFromAllowList(address[] calldata addresses) external;

  function allowListClaimedBy(address owner) external returns (uint256);

  function purchase(uint256 numberOfTokens) external payable;

  function purchaseAllowList(uint256 numberOfTokens) external payable;

  function gift(address to) external;

  function setIsActive(bool isActive) external;

  function setIsAllowListActive(bool isAllowListActive) external;

  function setAllowListMaxMint(uint256 maxMint) external;

  function setProof(string memory proofString) external;

  function withdraw() external;
}

File 6 of 15 : PogpunkMetadata.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.0;

interface PogpunkMetadata {
  function setContractURI(string calldata URI) external;

  function setBaseURI(string calldata URI) external;

  function setRevealedBaseURI(string calldata revealedBaseURI) external;

  function contractURI() external view returns(string memory);
}

File 7 of 15 : 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 8 of 15 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 9 of 15 : 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 10 of 15 : 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 11 of 15 : 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 12 of 15 : 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 13 of 15 : 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 14 of 15 : 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 15 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"POGPUNK_GIFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"POGPUNK_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"POGPUNK_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"allowListClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPogpunks","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"onAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"pogpunks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proof","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchaseAllowList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setAllowListMaxMint","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":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isAllowListActive","type":"bool"}],"name":"setIsAllowListActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"proofString","type":"string"}],"name":"setProof","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"revealedBaseURI","type":"string"}],"name":"setRevealedBaseURI","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"totalGiftSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPublicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506003600e5560405180602001604052806000815250601390805190602001906200006692919062000259565b5060405180602001604052806000815250601490805190602001906200008e92919062000259565b506040518060200160405280600081525060159080519060200190620000b692919062000259565b50348015620000c457600080fd5b506040518060400160405280600881526020017f506f6770756e6b730000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f504f4750554e4b0000000000000000000000000000000000000000000000000081525081600090805190602001906200014992919062000259565b5080600190805190602001906200016292919062000259565b50505062000185620001796200018b60201b60201c565b6200019360201b60201c565b6200036e565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002679062000309565b90600052602060002090601f0160209004810192826200028b5760008555620002d7565b82601f10620002a657805160ff1916838001178555620002d7565b82800160010185558215620002d7579182015b82811115620002d6578251825591602001919060010190620002b9565b5b509050620002e69190620002ea565b5090565b5b8082111562000305576000816000905550600101620002eb565b5090565b600060028204905060018216806200032257607f821691505b602082108114156200033957620003386200033f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6156f8806200037e6000396000f3fe6080604052600436106102925760003560e01c8063718bc4af1161015a578063b88d4fde116100c1578063e8a3d4851161007a578063e8a3d48514610a13578063e985e9c514610a3e578063efef39a114610a7b578063f23347f514610a97578063f2fde38b14610ab3578063faf924cf14610adc57610292565b8063b88d4fde14610903578063c87b56dd1461092c578063cbfc4bce14610969578063d6f407c714610992578063d75e6110146109bd578063e6a5931e146109e857610292565b80638da5cb5b116101135780638da5cb5b14610807578063938e3d7b1461083257806395d89b411461085b578063a1fe1d7114610886578063a22cb465146108b1578063a51312c8146108da57610292565b8063718bc4af1461070b5780637263cfe2146107345780637a6685f11461075d5780637f44ab2f14610786578063860906eb146107b15780638d859f3e146107dc57610292565b80632f745c59116101fe57806355f804b3116101b757806355f804b3146105eb5780636352211e146106145780636dc60ff4146106515780636e83843a1461068e57806370a08231146106b7578063715018a6146106f457610292565b80632f745c59146104c95780633a065892146105065780633ccfd60b1461054357806342842e0e1461055a5780634f6ccce71461058357806350c16768146105c057610292565b8063171993c311610250578063171993c3146103cb57806318160ddd146103f657806322f3e2d41461042157806323b872dd1461044c5780632750fc781461047557806329fc6bae1461049e57610292565b806208ffdd1461029757806301ffc9a7146102d457806306fdde0314610311578063081812fc1461033c578063095ea7b31461037957806315336f80146103a2575b600080fd5b3480156102a357600080fd5b506102be60048036038101906102b99190613eaa565b610b07565b6040516102cb9190615215565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f691906140bf565b610bbf565b6040516103089190614df8565b60405180910390f35b34801561031d57600080fd5b50610326610c39565b6040516103339190614e13565b60405180910390f35b34801561034857600080fd5b50610363600480360381019061035e9190614156565b610ccb565b6040516103709190614d6f565b60405180910390f35b34801561038557600080fd5b506103a0600480360381019061039b9190614015565b610d50565b005b3480156103ae57600080fd5b506103c960048036038101906103c49190614111565b610e68565b005b3480156103d757600080fd5b506103e0610efa565b6040516103ed9190615215565b60405180910390f35b34801561040257600080fd5b5061040b610f00565b6040516104189190615215565b60405180910390f35b34801561042d57600080fd5b50610436610f0d565b6040516104439190614df8565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e9190613f0f565b610f20565b005b34801561048157600080fd5b5061049c60048036038101906104979190614096565b610f80565b005b3480156104aa57600080fd5b506104b3611019565b6040516104c09190614df8565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb9190614015565b61102c565b6040516104fd9190615215565b60405180910390f35b34801561051257600080fd5b5061052d60048036038101906105289190613eaa565b6110d1565b60405161053a9190614df8565b60405180910390f35b34801561054f57600080fd5b50610558611127565b005b34801561056657600080fd5b50610581600480360381019061057c9190613f0f565b6111f2565b005b34801561058f57600080fd5b506105aa60048036038101906105a59190614156565b611212565b6040516105b79190615215565b60405180910390f35b3480156105cc57600080fd5b506105d56112a9565b6040516105e29190615215565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190614111565b6112bb565b005b34801561062057600080fd5b5061063b60048036038101906106369190614156565b61134d565b6040516106489190614d6f565b60405180910390f35b34801561065d57600080fd5b5061067860048036038101906106739190614156565b6113ff565b6040516106859190615215565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b09190614111565b611423565b005b3480156106c357600080fd5b506106de60048036038101906106d99190613eaa565b6114b5565b6040516106eb9190615215565b60405180910390f35b34801561070057600080fd5b5061070961156d565b005b34801561071757600080fd5b50610732600480360381019061072d9190614096565b6115f5565b005b34801561074057600080fd5b5061075b60048036038101906107569190614051565b61168e565b005b34801561076957600080fd5b50610784600480360381019061077f9190614156565b6119bc565b005b34801561079257600080fd5b5061079b611a42565b6040516107a89190615215565b60405180910390f35b3480156107bd57600080fd5b506107c6611a48565b6040516107d39190615215565b60405180910390f35b3480156107e857600080fd5b506107f1611a4d565b6040516107fe9190615215565b60405180910390f35b34801561081357600080fd5b5061081c611a58565b6040516108299190614d6f565b60405180910390f35b34801561083e57600080fd5b5061085960048036038101906108549190614111565b611a82565b005b34801561086757600080fd5b50610870611b14565b60405161087d9190614e13565b60405180910390f35b34801561089257600080fd5b5061089b611ba6565b6040516108a89190614dd6565b60405180910390f35b3480156108bd57600080fd5b506108d860048036038101906108d39190613fd9565b611bfe565b005b3480156108e657600080fd5b5061090160048036038101906108fc9190614051565b611d7f565b005b34801561090f57600080fd5b5061092a60048036038101906109259190613f5e565b611f83565b005b34801561093857600080fd5b50610953600480360381019061094e9190614156565b611fe5565b6040516109609190614e13565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190613eaa565b61212a565b005b34801561099e57600080fd5b506109a76122d2565b6040516109b49190615215565b60405180910390f35b3480156109c957600080fd5b506109d26122d8565b6040516109df9190615215565b60405180910390f35b3480156109f457600080fd5b506109fd6122dd565b604051610a0a9190615215565b60405180910390f35b348015610a1f57600080fd5b50610a286122e3565b604051610a359190614e13565b60405180910390f35b348015610a4a57600080fd5b50610a656004803603810190610a609190613ed3565b612375565b604051610a729190614df8565b60405180910390f35b610a956004803603810190610a909190614156565b612409565b005b610ab16004803603810190610aac9190614156565b612685565b005b348015610abf57600080fd5b50610ada6004803603810190610ad59190613eaa565b612a18565b005b348015610ae857600080fd5b50610af1612b10565b604051610afe9190614e13565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6f906150d5565b60405180910390fd5b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c325750610c3182612b9e565b5b9050919050565b606060008054610c48906154ed565b80601f0160208091040260200160405190810160405280929190818152602001828054610c74906154ed565b8015610cc15780601f10610c9657610100808354040283529160200191610cc1565b820191906000526020600020905b815481529060010190602001808311610ca457829003601f168201915b5050505050905090565b6000610cd682612c80565b610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c90615095565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d5b8261134d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc390615155565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610deb612cec565b73ffffffffffffffffffffffffffffffffffffffff161480610e1a5750610e1981610e14612cec565b612375565b5b610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5090614ff5565b60405180910390fd5b610e638383612cf4565b505050565b610e70612cec565b73ffffffffffffffffffffffffffffffffffffffff16610e8e611a58565b73ffffffffffffffffffffffffffffffffffffffff1614610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb906150b5565b60405180910390fd5b8181600d9190610ef5929190613ca2565b505050565b61267b81565b6000600880549050905090565b600c60009054906101000a900460ff1681565b610f31610f2b612cec565b82612dad565b610f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6790615175565b60405180910390fd5b610f7b838383612e8b565b505050565b610f88612cec565b73ffffffffffffffffffffffffffffffffffffffff16610fa6611a58565b73ffffffffffffffffffffffffffffffffffffffff1614610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff3906150b5565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b600c60019054906101000a900460ff1681565b6000611037836114b5565b8210611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f90614e75565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61112f612cec565b73ffffffffffffffffffffffffffffffffffffffff1661114d611a58565b73ffffffffffffffffffffffffffffffffffffffff16146111a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119a906150b5565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156111ee573d6000803e3d6000fd5b5050565b61120d83838360405180602001604052806000815250611f83565b505050565b600061121c610f00565b821061125d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125490615195565b60405180910390fd5b60088281548110611297577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b61267b60966112b89190615322565b81565b6112c3612cec565b73ffffffffffffffffffffffffffffffffffffffff166112e1611a58565b73ffffffffffffffffffffffffffffffffffffffff1614611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e906150b5565b60405180910390fd5b818160149190611348929190613ca2565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ed90615035565b60405180910390fd5b80915050919050565b600b818154811061140f57600080fd5b906000526020600020016000915090505481565b61142b612cec565b73ffffffffffffffffffffffffffffffffffffffff16611449611a58565b73ffffffffffffffffffffffffffffffffffffffff161461149f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611496906150b5565b60405180910390fd5b8181601591906114b0929190613ca2565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d90615015565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611575612cec565b73ffffffffffffffffffffffffffffffffffffffff16611593611a58565b73ffffffffffffffffffffffffffffffffffffffff16146115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e0906150b5565b60405180910390fd5b6115f360006130e7565b565b6115fd612cec565b73ffffffffffffffffffffffffffffffffffffffff1661161b611a58565b73ffffffffffffffffffffffffffffffffffffffff1614611671576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611668906150b5565b60405180910390fd5b80600c60016101000a81548160ff02191690831515021790555050565b611696612cec565b73ffffffffffffffffffffffffffffffffffffffff166116b4611a58565b73ffffffffffffffffffffffffffffffffffffffff161461170a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611701906150b5565b60405180910390fd5b60005b828290508110156119b757600073ffffffffffffffffffffffffffffffffffffffff16838383818110611769577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061177e9190613eaa565b73ffffffffffffffffffffffffffffffffffffffff1614156117d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cc906150f5565b60405180910390fd5b600160116000858585818110611814577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906118299190613eaa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000601260008585858181106118b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906118ce9190613eaa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116119155760006119a3565b60126000848484818110611952577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906119679190613eaa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b5080806119af9061551f565b91505061170d565b505050565b6119c4612cec565b73ffffffffffffffffffffffffffffffffffffffff166119e2611a58565b73ffffffffffffffffffffffffffffffffffffffff1614611a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2f906150b5565b60405180910390fd5b80600e8190555050565b600e5481565b609681565b667c58508723800081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a8a612cec565b73ffffffffffffffffffffffffffffffffffffffff16611aa8611a58565b73ffffffffffffffffffffffffffffffffffffffff1614611afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af5906150b5565b60405180910390fd5b818160139190611b0f929190613ca2565b505050565b606060018054611b23906154ed565b80601f0160208091040260200160405190810160405280929190818152602001828054611b4f906154ed565b8015611b9c5780601f10611b7157610100808354040283529160200191611b9c565b820191906000526020600020905b815481529060010190602001808311611b7f57829003601f168201915b5050505050905090565b6060600b805480602002602001604051908101604052809291908181526020018280548015611bf457602002820191906000526020600020905b815481526020019060010190808311611be0575b5050505050905090565b611c06612cec565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6b90614f55565b60405180910390fd5b8060056000611c81612cec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d2e612cec565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d739190614df8565b60405180910390a35050565b611d87612cec565b73ffffffffffffffffffffffffffffffffffffffff16611da5611a58565b73ffffffffffffffffffffffffffffffffffffffff1614611dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df2906150b5565b60405180910390fd5b60005b82829050811015611f7e57600073ffffffffffffffffffffffffffffffffffffffff16838383818110611e5a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611e6f9190613eaa565b73ffffffffffffffffffffffffffffffffffffffff161415611ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebd906150f5565b60405180910390fd5b600060116000858585818110611f05577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611f1a9190613eaa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611f769061551f565b915050611dfe565b505050565b611f94611f8e612cec565b83612dad565b611fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fca90615175565b60405180910390fd5b611fdf848484846131ad565b50505050565b6060611ff082612c80565b61202f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202690614f95565b60405180910390fd5b60006015805461203e906154ed565b80601f016020809104026020016040519081016040528092919081815260200182805461206a906154ed565b80156120b75780601f1061208c576101008083540402835291602001916120b7565b820191906000526020600020905b81548152906001019060200180831161209a57829003601f168201915b5050505050905060008151116120f75760146120d284613209565b6040516020016120e3929190614d4b565b604051602081830303815290604052612122565b8061210184613209565b604051602001612112929190614d27565b6040516020818303038152906040525b915050919050565b612132612cec565b73ffffffffffffffffffffffffffffffffffffffff16612150611a58565b73ffffffffffffffffffffffffffffffffffffffff16146121a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219d906150b5565b60405180910390fd5b61267b60966121b59190615322565b6121bd610f00565b106121fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f4906151d5565b60405180910390fd5b609680600f5461220d9190615322565b111561224e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224590615135565b60405180910390fd5b60005b60968110156122ce5760006001600f5461226b9190615322565b90506001600f60008282546122809190615322565b92505081905550600b8190806001815401808255809150506001900390600052602060002001600090919091909150556122ba83826133b6565b5080806122c69061551f565b915050612251565b5050565b600f5481565b600a81565b60105481565b6060601380546122f2906154ed565b80601f016020809104026020016040519081016040528092919081815260200182805461231e906154ed565b801561236b5780601f106123405761010080835404028352916020019161236b565b820191906000526020600020905b81548152906001019060200180831161234e57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c60009054906101000a900460ff16612458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244f90615075565b60405180910390fd5b600c60019054906101000a900460ff16156124a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249f90614e95565b60405180910390fd5b61267b60966124b79190615322565b816124c0610f00565b6124ca9190615322565b1061250a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612501906151d5565b60405180910390fd5b600a81111561254e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254590614f15565b60405180910390fd5b61267b60105410612594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258b90614f75565b60405180910390fd5b3481667c5850872380006125a891906153a9565b11156125e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e090614fb5565b60405180910390fd5b60005b818110156126815761267b601054101561266e576000600160105460966126139190615322565b61261d9190615322565b90506001601060008282546126329190615322565b92505081905550600b81908060018154018082558091505060019003906000526020600020016000909190919091505561266c33826133b6565b505b80806126799061551f565b9150506125ec565b5050565b600c60019054906101000a900460ff166126d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cb90614e35565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612760576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275790614e55565b60405180910390fd5b61267b609661276f9190615322565b612777610f00565b106127b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ae906151d5565b60405180910390fd5b600e548111156127fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f3906151f5565b60405180910390fd5b61267b8160105461280d9190615322565b111561284e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284590614f75565b60405180910390fd5b600e5481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461289c9190615322565b11156128dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d4906151b5565b60405180910390fd5b3481667c5850872380006128f191906153a9565b1115612932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292990614fb5565b60405180910390fd5b60005b81811015612a14576000600160105460966129509190615322565b61295a9190615322565b905060016010600082825461296f9190615322565b925050819055506001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129c69190615322565b92505081905550600b819080600181540180825580915050600190039060005260206000200160009091909190915055612a0033826133b6565b508080612a0c9061551f565b915050612935565b5050565b612a20612cec565b73ffffffffffffffffffffffffffffffffffffffff16612a3e611a58565b73ffffffffffffffffffffffffffffffffffffffff1614612a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8b906150b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612afb90614ed5565b60405180910390fd5b612b0d816130e7565b50565b600d8054612b1d906154ed565b80601f0160208091040260200160405190810160405280929190818152602001828054612b49906154ed565b8015612b965780601f10612b6b57610100808354040283529160200191612b96565b820191906000526020600020905b815481529060010190602001808311612b7957829003601f168201915b505050505081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612c6957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612c795750612c78826133d4565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612d678361134d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612db882612c80565b612df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dee90614fd5565b60405180910390fd5b6000612e028361134d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612e7157508373ffffffffffffffffffffffffffffffffffffffff16612e5984610ccb565b73ffffffffffffffffffffffffffffffffffffffff16145b80612e825750612e818185612375565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612eab8261134d565b73ffffffffffffffffffffffffffffffffffffffff1614612f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef890615115565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6890614f35565b60405180910390fd5b612f7c83838361343e565b612f87600082612cf4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fd79190615403565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461302e9190615322565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6131b8848484612e8b565b6131c484848484613552565b613203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fa90614eb5565b60405180910390fd5b50505050565b60606000821415613251576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506133b1565b600082905060005b6000821461328357808061326c9061551f565b915050600a8261327c9190615378565b9150613259565b60008167ffffffffffffffff8111156132c5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156132f75781602001600182028036833780820191505090505b5090505b600085146133aa576001826133109190615403565b9150600a8561331f9190615568565b603061332b9190615322565b60f81b818381518110613367577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133a39190615378565b94506132fb565b8093505050505b919050565b6133d08282604051806020016040528060008152506136e9565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613449838383613744565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561348c5761348781613749565b6134cb565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146134ca576134c98382613792565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561350e57613509816138ff565b61354d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461354c5761354b8282613a42565b5b5b505050565b60006135738473ffffffffffffffffffffffffffffffffffffffff16613ac1565b156136dc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261359c612cec565b8786866040518563ffffffff1660e01b81526004016135be9493929190614d8a565b602060405180830381600087803b1580156135d857600080fd5b505af192505050801561360957506040513d601f19601f8201168201806040525081019061360691906140e8565b60015b61368c573d8060008114613639576040519150601f19603f3d011682016040523d82523d6000602084013e61363e565b606091505b50600081511415613684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161367b90614eb5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506136e1565b600190505b949350505050565b6136f38383613ad4565b6137006000848484613552565b61373f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161373690614eb5565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161379f846114b5565b6137a99190615403565b905060006007600084815260200190815260200160002054905081811461388e576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506139139190615403565b9050600060096000848152602001908152602001600020549050600060088381548110613969577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106139b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613a26577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613a4d836114b5565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b3b90615055565b60405180910390fd5b613b4d81612c80565b15613b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b8490614ef5565b60405180910390fd5b613b996000838361343e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613be99190615322565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613cae906154ed565b90600052602060002090601f016020900481019282613cd05760008555613d17565b82601f10613ce957803560ff1916838001178555613d17565b82800160010185558215613d17579182015b82811115613d16578235825591602001919060010190613cfb565b5b509050613d249190613d28565b5090565b5b80821115613d41576000816000905550600101613d29565b5090565b6000613d58613d5384615261565b615230565b905082815260208101848484011115613d7057600080fd5b613d7b8482856154ab565b509392505050565b600081359050613d9281615666565b92915050565b60008083601f840112613daa57600080fd5b8235905067ffffffffffffffff811115613dc357600080fd5b602083019150836020820283011115613ddb57600080fd5b9250929050565b600081359050613df18161567d565b92915050565b600081359050613e0681615694565b92915050565b600081519050613e1b81615694565b92915050565b600082601f830112613e3257600080fd5b8135613e42848260208601613d45565b91505092915050565b60008083601f840112613e5d57600080fd5b8235905067ffffffffffffffff811115613e7657600080fd5b602083019150836001820283011115613e8e57600080fd5b9250929050565b600081359050613ea4816156ab565b92915050565b600060208284031215613ebc57600080fd5b6000613eca84828501613d83565b91505092915050565b60008060408385031215613ee657600080fd5b6000613ef485828601613d83565b9250506020613f0585828601613d83565b9150509250929050565b600080600060608486031215613f2457600080fd5b6000613f3286828701613d83565b9350506020613f4386828701613d83565b9250506040613f5486828701613e95565b9150509250925092565b60008060008060808587031215613f7457600080fd5b6000613f8287828801613d83565b9450506020613f9387828801613d83565b9350506040613fa487828801613e95565b925050606085013567ffffffffffffffff811115613fc157600080fd5b613fcd87828801613e21565b91505092959194509250565b60008060408385031215613fec57600080fd5b6000613ffa85828601613d83565b925050602061400b85828601613de2565b9150509250929050565b6000806040838503121561402857600080fd5b600061403685828601613d83565b925050602061404785828601613e95565b9150509250929050565b6000806020838503121561406457600080fd5b600083013567ffffffffffffffff81111561407e57600080fd5b61408a85828601613d98565b92509250509250929050565b6000602082840312156140a857600080fd5b60006140b684828501613de2565b91505092915050565b6000602082840312156140d157600080fd5b60006140df84828501613df7565b91505092915050565b6000602082840312156140fa57600080fd5b600061410884828501613e0c565b91505092915050565b6000806020838503121561412457600080fd5b600083013567ffffffffffffffff81111561413e57600080fd5b61414a85828601613e4b565b92509250509250929050565b60006020828403121561416857600080fd5b600061417684828501613e95565b91505092915050565b600061418b8383614d09565b60208301905092915050565b6141a081615437565b82525050565b60006141b1826152b6565b6141bb81856152e4565b93506141c683615291565b8060005b838110156141f75781516141de888261417f565b97506141e9836152d7565b9250506001810190506141ca565b5085935050505092915050565b61420d81615449565b82525050565b600061421e826152c1565b61422881856152f5565b93506142388185602086016154ba565b61424181615655565b840191505092915050565b6000614257826152cc565b6142618185615306565b93506142718185602086016154ba565b61427a81615655565b840191505092915050565b6000614290826152cc565b61429a8185615317565b93506142aa8185602086016154ba565b80840191505092915050565b600081546142c3816154ed565b6142cd8186615317565b945060018216600081146142e857600181146142f95761432c565b60ff1983168652818601935061432c565b614302856152a1565b60005b8381101561432457815481890152600182019150602081019050614305565b838801955050505b50505092915050565b6000614342601883615306565b91507f416c6c6f77204c697374206973206e6f742061637469766500000000000000006000830152602082019050919050565b6000614382601d83615306565b91507f596f7520617265206e6f74206f6e2074686520416c6c6f77204c6973740000006000830152602082019050919050565b60006143c2602b83615306565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000614428601d83615306565b91507f4f6e6c7920616c6c6f77696e672066726f6d20416c6c6f77204c6973740000006000830152602082019050919050565b6000614468603283615306565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006144ce602683615306565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614534601c83615306565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000614574601b83615306565b91507f576f756c64206578636565642050555243484153455f4c494d495400000000006000830152602082019050919050565b60006145b4602483615306565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061461a601983615306565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061465a602483615306565b91507f507572636861736520776f756c642065786365656420504f4750554e4b5f505560008301527f424c4943000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146c0601483615306565b91507f546f6b656e20646f6573206e6f742065786973740000000000000000000000006000830152602082019050919050565b6000614700601c83615306565b91507f45544820616d6f756e74206973206e6f742073756666696369656e74000000006000830152602082019050919050565b6000614740602c83615306565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006147a6603883615306565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061480c602a83615306565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614872602983615306565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006148d8602083615306565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614918601683615306565b91507f436f6e7472616374206973206e6f7420616374697665000000000000000000006000830152602082019050919050565b6000614958602c83615306565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006149be602083615306565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006149fe601e83615306565b91507f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c69737400006000830152602082019050919050565b6000614a3e601a83615306565b91507f43616e27742061646420746865206e756c6c20616464726573730000000000006000830152602082019050919050565b6000614a7e602983615306565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ae4601e83615306565b91507f4e6f7420656e6f75676820746f6b656e73206c65667420746f206769667400006000830152602082019050919050565b6000614b24602183615306565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b8a603183615306565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614bf0602c83615306565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614c56601c83615306565b91507f50757263686173652065786365656473206d617820616c6c6f776564000000006000830152602082019050919050565b6000614c96601b83615306565b91507f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006000830152602082019050919050565b6000614cd6602083615306565b91507f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e736000830152602082019050919050565b614d12816154a1565b82525050565b614d21816154a1565b82525050565b6000614d338285614285565b9150614d3f8284614285565b91508190509392505050565b6000614d5782856142b6565b9150614d638284614285565b91508190509392505050565b6000602082019050614d846000830184614197565b92915050565b6000608082019050614d9f6000830187614197565b614dac6020830186614197565b614db96040830185614d18565b8181036060830152614dcb8184614213565b905095945050505050565b60006020820190508181036000830152614df081846141a6565b905092915050565b6000602082019050614e0d6000830184614204565b92915050565b60006020820190508181036000830152614e2d818461424c565b905092915050565b60006020820190508181036000830152614e4e81614335565b9050919050565b60006020820190508181036000830152614e6e81614375565b9050919050565b60006020820190508181036000830152614e8e816143b5565b9050919050565b60006020820190508181036000830152614eae8161441b565b9050919050565b60006020820190508181036000830152614ece8161445b565b9050919050565b60006020820190508181036000830152614eee816144c1565b9050919050565b60006020820190508181036000830152614f0e81614527565b9050919050565b60006020820190508181036000830152614f2e81614567565b9050919050565b60006020820190508181036000830152614f4e816145a7565b9050919050565b60006020820190508181036000830152614f6e8161460d565b9050919050565b60006020820190508181036000830152614f8e8161464d565b9050919050565b60006020820190508181036000830152614fae816146b3565b9050919050565b60006020820190508181036000830152614fce816146f3565b9050919050565b60006020820190508181036000830152614fee81614733565b9050919050565b6000602082019050818103600083015261500e81614799565b9050919050565b6000602082019050818103600083015261502e816147ff565b9050919050565b6000602082019050818103600083015261504e81614865565b9050919050565b6000602082019050818103600083015261506e816148cb565b9050919050565b6000602082019050818103600083015261508e8161490b565b9050919050565b600060208201905081810360008301526150ae8161494b565b9050919050565b600060208201905081810360008301526150ce816149b1565b9050919050565b600060208201905081810360008301526150ee816149f1565b9050919050565b6000602082019050818103600083015261510e81614a31565b9050919050565b6000602082019050818103600083015261512e81614a71565b9050919050565b6000602082019050818103600083015261514e81614ad7565b9050919050565b6000602082019050818103600083015261516e81614b17565b9050919050565b6000602082019050818103600083015261518e81614b7d565b9050919050565b600060208201905081810360008301526151ae81614be3565b9050919050565b600060208201905081810360008301526151ce81614c49565b9050919050565b600060208201905081810360008301526151ee81614c89565b9050919050565b6000602082019050818103600083015261520e81614cc9565b9050919050565b600060208201905061522a6000830184614d18565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561525757615256615626565b5b8060405250919050565b600067ffffffffffffffff82111561527c5761527b615626565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061532d826154a1565b9150615338836154a1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561536d5761536c615599565b5b828201905092915050565b6000615383826154a1565b915061538e836154a1565b92508261539e5761539d6155c8565b5b828204905092915050565b60006153b4826154a1565b91506153bf836154a1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156153f8576153f7615599565b5b828202905092915050565b600061540e826154a1565b9150615419836154a1565b92508282101561542c5761542b615599565b5b828203905092915050565b600061544282615481565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156154d85780820151818401526020810190506154bd565b838111156154e7576000848401525b50505050565b6000600282049050600182168061550557607f821691505b60208210811415615519576155186155f7565b5b50919050565b600061552a826154a1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561555d5761555c615599565b5b600182019050919050565b6000615573826154a1565b915061557e836154a1565b92508261558e5761558d6155c8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61566f81615437565b811461567a57600080fd5b50565b61568681615449565b811461569157600080fd5b50565b61569d81615455565b81146156a857600080fd5b50565b6156b4816154a1565b81146156bf57600080fd5b5056fea26469706673582212201b215594aea5c18b6394abf7d9415a4a5256719342f19bedc2c44a7d23215e2164736f6c63430008000033

Deployed Bytecode

0x6080604052600436106102925760003560e01c8063718bc4af1161015a578063b88d4fde116100c1578063e8a3d4851161007a578063e8a3d48514610a13578063e985e9c514610a3e578063efef39a114610a7b578063f23347f514610a97578063f2fde38b14610ab3578063faf924cf14610adc57610292565b8063b88d4fde14610903578063c87b56dd1461092c578063cbfc4bce14610969578063d6f407c714610992578063d75e6110146109bd578063e6a5931e146109e857610292565b80638da5cb5b116101135780638da5cb5b14610807578063938e3d7b1461083257806395d89b411461085b578063a1fe1d7114610886578063a22cb465146108b1578063a51312c8146108da57610292565b8063718bc4af1461070b5780637263cfe2146107345780637a6685f11461075d5780637f44ab2f14610786578063860906eb146107b15780638d859f3e146107dc57610292565b80632f745c59116101fe57806355f804b3116101b757806355f804b3146105eb5780636352211e146106145780636dc60ff4146106515780636e83843a1461068e57806370a08231146106b7578063715018a6146106f457610292565b80632f745c59146104c95780633a065892146105065780633ccfd60b1461054357806342842e0e1461055a5780634f6ccce71461058357806350c16768146105c057610292565b8063171993c311610250578063171993c3146103cb57806318160ddd146103f657806322f3e2d41461042157806323b872dd1461044c5780632750fc781461047557806329fc6bae1461049e57610292565b806208ffdd1461029757806301ffc9a7146102d457806306fdde0314610311578063081812fc1461033c578063095ea7b31461037957806315336f80146103a2575b600080fd5b3480156102a357600080fd5b506102be60048036038101906102b99190613eaa565b610b07565b6040516102cb9190615215565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f691906140bf565b610bbf565b6040516103089190614df8565b60405180910390f35b34801561031d57600080fd5b50610326610c39565b6040516103339190614e13565b60405180910390f35b34801561034857600080fd5b50610363600480360381019061035e9190614156565b610ccb565b6040516103709190614d6f565b60405180910390f35b34801561038557600080fd5b506103a0600480360381019061039b9190614015565b610d50565b005b3480156103ae57600080fd5b506103c960048036038101906103c49190614111565b610e68565b005b3480156103d757600080fd5b506103e0610efa565b6040516103ed9190615215565b60405180910390f35b34801561040257600080fd5b5061040b610f00565b6040516104189190615215565b60405180910390f35b34801561042d57600080fd5b50610436610f0d565b6040516104439190614df8565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e9190613f0f565b610f20565b005b34801561048157600080fd5b5061049c60048036038101906104979190614096565b610f80565b005b3480156104aa57600080fd5b506104b3611019565b6040516104c09190614df8565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb9190614015565b61102c565b6040516104fd9190615215565b60405180910390f35b34801561051257600080fd5b5061052d60048036038101906105289190613eaa565b6110d1565b60405161053a9190614df8565b60405180910390f35b34801561054f57600080fd5b50610558611127565b005b34801561056657600080fd5b50610581600480360381019061057c9190613f0f565b6111f2565b005b34801561058f57600080fd5b506105aa60048036038101906105a59190614156565b611212565b6040516105b79190615215565b60405180910390f35b3480156105cc57600080fd5b506105d56112a9565b6040516105e29190615215565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190614111565b6112bb565b005b34801561062057600080fd5b5061063b60048036038101906106369190614156565b61134d565b6040516106489190614d6f565b60405180910390f35b34801561065d57600080fd5b5061067860048036038101906106739190614156565b6113ff565b6040516106859190615215565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b09190614111565b611423565b005b3480156106c357600080fd5b506106de60048036038101906106d99190613eaa565b6114b5565b6040516106eb9190615215565b60405180910390f35b34801561070057600080fd5b5061070961156d565b005b34801561071757600080fd5b50610732600480360381019061072d9190614096565b6115f5565b005b34801561074057600080fd5b5061075b60048036038101906107569190614051565b61168e565b005b34801561076957600080fd5b50610784600480360381019061077f9190614156565b6119bc565b005b34801561079257600080fd5b5061079b611a42565b6040516107a89190615215565b60405180910390f35b3480156107bd57600080fd5b506107c6611a48565b6040516107d39190615215565b60405180910390f35b3480156107e857600080fd5b506107f1611a4d565b6040516107fe9190615215565b60405180910390f35b34801561081357600080fd5b5061081c611a58565b6040516108299190614d6f565b60405180910390f35b34801561083e57600080fd5b5061085960048036038101906108549190614111565b611a82565b005b34801561086757600080fd5b50610870611b14565b60405161087d9190614e13565b60405180910390f35b34801561089257600080fd5b5061089b611ba6565b6040516108a89190614dd6565b60405180910390f35b3480156108bd57600080fd5b506108d860048036038101906108d39190613fd9565b611bfe565b005b3480156108e657600080fd5b5061090160048036038101906108fc9190614051565b611d7f565b005b34801561090f57600080fd5b5061092a60048036038101906109259190613f5e565b611f83565b005b34801561093857600080fd5b50610953600480360381019061094e9190614156565b611fe5565b6040516109609190614e13565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190613eaa565b61212a565b005b34801561099e57600080fd5b506109a76122d2565b6040516109b49190615215565b60405180910390f35b3480156109c957600080fd5b506109d26122d8565b6040516109df9190615215565b60405180910390f35b3480156109f457600080fd5b506109fd6122dd565b604051610a0a9190615215565b60405180910390f35b348015610a1f57600080fd5b50610a286122e3565b604051610a359190614e13565b60405180910390f35b348015610a4a57600080fd5b50610a656004803603810190610a609190613ed3565b612375565b604051610a729190614df8565b60405180910390f35b610a956004803603810190610a909190614156565b612409565b005b610ab16004803603810190610aac9190614156565b612685565b005b348015610abf57600080fd5b50610ada6004803603810190610ad59190613eaa565b612a18565b005b348015610ae857600080fd5b50610af1612b10565b604051610afe9190614e13565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6f906150d5565b60405180910390fd5b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c325750610c3182612b9e565b5b9050919050565b606060008054610c48906154ed565b80601f0160208091040260200160405190810160405280929190818152602001828054610c74906154ed565b8015610cc15780601f10610c9657610100808354040283529160200191610cc1565b820191906000526020600020905b815481529060010190602001808311610ca457829003601f168201915b5050505050905090565b6000610cd682612c80565b610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c90615095565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d5b8261134d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc390615155565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610deb612cec565b73ffffffffffffffffffffffffffffffffffffffff161480610e1a5750610e1981610e14612cec565b612375565b5b610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5090614ff5565b60405180910390fd5b610e638383612cf4565b505050565b610e70612cec565b73ffffffffffffffffffffffffffffffffffffffff16610e8e611a58565b73ffffffffffffffffffffffffffffffffffffffff1614610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb906150b5565b60405180910390fd5b8181600d9190610ef5929190613ca2565b505050565b61267b81565b6000600880549050905090565b600c60009054906101000a900460ff1681565b610f31610f2b612cec565b82612dad565b610f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6790615175565b60405180910390fd5b610f7b838383612e8b565b505050565b610f88612cec565b73ffffffffffffffffffffffffffffffffffffffff16610fa6611a58565b73ffffffffffffffffffffffffffffffffffffffff1614610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff3906150b5565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b600c60019054906101000a900460ff1681565b6000611037836114b5565b8210611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f90614e75565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61112f612cec565b73ffffffffffffffffffffffffffffffffffffffff1661114d611a58565b73ffffffffffffffffffffffffffffffffffffffff16146111a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119a906150b5565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156111ee573d6000803e3d6000fd5b5050565b61120d83838360405180602001604052806000815250611f83565b505050565b600061121c610f00565b821061125d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125490615195565b60405180910390fd5b60088281548110611297577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b61267b60966112b89190615322565b81565b6112c3612cec565b73ffffffffffffffffffffffffffffffffffffffff166112e1611a58565b73ffffffffffffffffffffffffffffffffffffffff1614611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e906150b5565b60405180910390fd5b818160149190611348929190613ca2565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ed90615035565b60405180910390fd5b80915050919050565b600b818154811061140f57600080fd5b906000526020600020016000915090505481565b61142b612cec565b73ffffffffffffffffffffffffffffffffffffffff16611449611a58565b73ffffffffffffffffffffffffffffffffffffffff161461149f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611496906150b5565b60405180910390fd5b8181601591906114b0929190613ca2565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d90615015565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611575612cec565b73ffffffffffffffffffffffffffffffffffffffff16611593611a58565b73ffffffffffffffffffffffffffffffffffffffff16146115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e0906150b5565b60405180910390fd5b6115f360006130e7565b565b6115fd612cec565b73ffffffffffffffffffffffffffffffffffffffff1661161b611a58565b73ffffffffffffffffffffffffffffffffffffffff1614611671576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611668906150b5565b60405180910390fd5b80600c60016101000a81548160ff02191690831515021790555050565b611696612cec565b73ffffffffffffffffffffffffffffffffffffffff166116b4611a58565b73ffffffffffffffffffffffffffffffffffffffff161461170a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611701906150b5565b60405180910390fd5b60005b828290508110156119b757600073ffffffffffffffffffffffffffffffffffffffff16838383818110611769577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061177e9190613eaa565b73ffffffffffffffffffffffffffffffffffffffff1614156117d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cc906150f5565b60405180910390fd5b600160116000858585818110611814577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906118299190613eaa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000601260008585858181106118b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906118ce9190613eaa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116119155760006119a3565b60126000848484818110611952577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906119679190613eaa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b5080806119af9061551f565b91505061170d565b505050565b6119c4612cec565b73ffffffffffffffffffffffffffffffffffffffff166119e2611a58565b73ffffffffffffffffffffffffffffffffffffffff1614611a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2f906150b5565b60405180910390fd5b80600e8190555050565b600e5481565b609681565b667c58508723800081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a8a612cec565b73ffffffffffffffffffffffffffffffffffffffff16611aa8611a58565b73ffffffffffffffffffffffffffffffffffffffff1614611afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af5906150b5565b60405180910390fd5b818160139190611b0f929190613ca2565b505050565b606060018054611b23906154ed565b80601f0160208091040260200160405190810160405280929190818152602001828054611b4f906154ed565b8015611b9c5780601f10611b7157610100808354040283529160200191611b9c565b820191906000526020600020905b815481529060010190602001808311611b7f57829003601f168201915b5050505050905090565b6060600b805480602002602001604051908101604052809291908181526020018280548015611bf457602002820191906000526020600020905b815481526020019060010190808311611be0575b5050505050905090565b611c06612cec565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6b90614f55565b60405180910390fd5b8060056000611c81612cec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d2e612cec565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d739190614df8565b60405180910390a35050565b611d87612cec565b73ffffffffffffffffffffffffffffffffffffffff16611da5611a58565b73ffffffffffffffffffffffffffffffffffffffff1614611dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df2906150b5565b60405180910390fd5b60005b82829050811015611f7e57600073ffffffffffffffffffffffffffffffffffffffff16838383818110611e5a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611e6f9190613eaa565b73ffffffffffffffffffffffffffffffffffffffff161415611ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebd906150f5565b60405180910390fd5b600060116000858585818110611f05577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611f1a9190613eaa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611f769061551f565b915050611dfe565b505050565b611f94611f8e612cec565b83612dad565b611fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fca90615175565b60405180910390fd5b611fdf848484846131ad565b50505050565b6060611ff082612c80565b61202f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202690614f95565b60405180910390fd5b60006015805461203e906154ed565b80601f016020809104026020016040519081016040528092919081815260200182805461206a906154ed565b80156120b75780601f1061208c576101008083540402835291602001916120b7565b820191906000526020600020905b81548152906001019060200180831161209a57829003601f168201915b5050505050905060008151116120f75760146120d284613209565b6040516020016120e3929190614d4b565b604051602081830303815290604052612122565b8061210184613209565b604051602001612112929190614d27565b6040516020818303038152906040525b915050919050565b612132612cec565b73ffffffffffffffffffffffffffffffffffffffff16612150611a58565b73ffffffffffffffffffffffffffffffffffffffff16146121a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219d906150b5565b60405180910390fd5b61267b60966121b59190615322565b6121bd610f00565b106121fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f4906151d5565b60405180910390fd5b609680600f5461220d9190615322565b111561224e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224590615135565b60405180910390fd5b60005b60968110156122ce5760006001600f5461226b9190615322565b90506001600f60008282546122809190615322565b92505081905550600b8190806001815401808255809150506001900390600052602060002001600090919091909150556122ba83826133b6565b5080806122c69061551f565b915050612251565b5050565b600f5481565b600a81565b60105481565b6060601380546122f2906154ed565b80601f016020809104026020016040519081016040528092919081815260200182805461231e906154ed565b801561236b5780601f106123405761010080835404028352916020019161236b565b820191906000526020600020905b81548152906001019060200180831161234e57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c60009054906101000a900460ff16612458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244f90615075565b60405180910390fd5b600c60019054906101000a900460ff16156124a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249f90614e95565b60405180910390fd5b61267b60966124b79190615322565b816124c0610f00565b6124ca9190615322565b1061250a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612501906151d5565b60405180910390fd5b600a81111561254e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254590614f15565b60405180910390fd5b61267b60105410612594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258b90614f75565b60405180910390fd5b3481667c5850872380006125a891906153a9565b11156125e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e090614fb5565b60405180910390fd5b60005b818110156126815761267b601054101561266e576000600160105460966126139190615322565b61261d9190615322565b90506001601060008282546126329190615322565b92505081905550600b81908060018154018082558091505060019003906000526020600020016000909190919091505561266c33826133b6565b505b80806126799061551f565b9150506125ec565b5050565b600c60019054906101000a900460ff166126d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cb90614e35565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612760576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275790614e55565b60405180910390fd5b61267b609661276f9190615322565b612777610f00565b106127b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ae906151d5565b60405180910390fd5b600e548111156127fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f3906151f5565b60405180910390fd5b61267b8160105461280d9190615322565b111561284e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284590614f75565b60405180910390fd5b600e5481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461289c9190615322565b11156128dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d4906151b5565b60405180910390fd5b3481667c5850872380006128f191906153a9565b1115612932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292990614fb5565b60405180910390fd5b60005b81811015612a14576000600160105460966129509190615322565b61295a9190615322565b905060016010600082825461296f9190615322565b925050819055506001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129c69190615322565b92505081905550600b819080600181540180825580915050600190039060005260206000200160009091909190915055612a0033826133b6565b508080612a0c9061551f565b915050612935565b5050565b612a20612cec565b73ffffffffffffffffffffffffffffffffffffffff16612a3e611a58565b73ffffffffffffffffffffffffffffffffffffffff1614612a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8b906150b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612afb90614ed5565b60405180910390fd5b612b0d816130e7565b50565b600d8054612b1d906154ed565b80601f0160208091040260200160405190810160405280929190818152602001828054612b49906154ed565b8015612b965780601f10612b6b57610100808354040283529160200191612b96565b820191906000526020600020905b815481529060010190602001808311612b7957829003601f168201915b505050505081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612c6957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612c795750612c78826133d4565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612d678361134d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612db882612c80565b612df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dee90614fd5565b60405180910390fd5b6000612e028361134d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612e7157508373ffffffffffffffffffffffffffffffffffffffff16612e5984610ccb565b73ffffffffffffffffffffffffffffffffffffffff16145b80612e825750612e818185612375565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612eab8261134d565b73ffffffffffffffffffffffffffffffffffffffff1614612f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef890615115565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6890614f35565b60405180910390fd5b612f7c83838361343e565b612f87600082612cf4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fd79190615403565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461302e9190615322565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6131b8848484612e8b565b6131c484848484613552565b613203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fa90614eb5565b60405180910390fd5b50505050565b60606000821415613251576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506133b1565b600082905060005b6000821461328357808061326c9061551f565b915050600a8261327c9190615378565b9150613259565b60008167ffffffffffffffff8111156132c5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156132f75781602001600182028036833780820191505090505b5090505b600085146133aa576001826133109190615403565b9150600a8561331f9190615568565b603061332b9190615322565b60f81b818381518110613367577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133a39190615378565b94506132fb565b8093505050505b919050565b6133d08282604051806020016040528060008152506136e9565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613449838383613744565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561348c5761348781613749565b6134cb565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146134ca576134c98382613792565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561350e57613509816138ff565b61354d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461354c5761354b8282613a42565b5b5b505050565b60006135738473ffffffffffffffffffffffffffffffffffffffff16613ac1565b156136dc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261359c612cec565b8786866040518563ffffffff1660e01b81526004016135be9493929190614d8a565b602060405180830381600087803b1580156135d857600080fd5b505af192505050801561360957506040513d601f19601f8201168201806040525081019061360691906140e8565b60015b61368c573d8060008114613639576040519150601f19603f3d011682016040523d82523d6000602084013e61363e565b606091505b50600081511415613684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161367b90614eb5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506136e1565b600190505b949350505050565b6136f38383613ad4565b6137006000848484613552565b61373f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161373690614eb5565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161379f846114b5565b6137a99190615403565b905060006007600084815260200190815260200160002054905081811461388e576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506139139190615403565b9050600060096000848152602001908152602001600020549050600060088381548110613969577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106139b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613a26577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613a4d836114b5565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b3b90615055565b60405180910390fd5b613b4d81612c80565b15613b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b8490614ef5565b60405180910390fd5b613b996000838361343e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613be99190615322565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613cae906154ed565b90600052602060002090601f016020900481019282613cd05760008555613d17565b82601f10613ce957803560ff1916838001178555613d17565b82800160010185558215613d17579182015b82811115613d16578235825591602001919060010190613cfb565b5b509050613d249190613d28565b5090565b5b80821115613d41576000816000905550600101613d29565b5090565b6000613d58613d5384615261565b615230565b905082815260208101848484011115613d7057600080fd5b613d7b8482856154ab565b509392505050565b600081359050613d9281615666565b92915050565b60008083601f840112613daa57600080fd5b8235905067ffffffffffffffff811115613dc357600080fd5b602083019150836020820283011115613ddb57600080fd5b9250929050565b600081359050613df18161567d565b92915050565b600081359050613e0681615694565b92915050565b600081519050613e1b81615694565b92915050565b600082601f830112613e3257600080fd5b8135613e42848260208601613d45565b91505092915050565b60008083601f840112613e5d57600080fd5b8235905067ffffffffffffffff811115613e7657600080fd5b602083019150836001820283011115613e8e57600080fd5b9250929050565b600081359050613ea4816156ab565b92915050565b600060208284031215613ebc57600080fd5b6000613eca84828501613d83565b91505092915050565b60008060408385031215613ee657600080fd5b6000613ef485828601613d83565b9250506020613f0585828601613d83565b9150509250929050565b600080600060608486031215613f2457600080fd5b6000613f3286828701613d83565b9350506020613f4386828701613d83565b9250506040613f5486828701613e95565b9150509250925092565b60008060008060808587031215613f7457600080fd5b6000613f8287828801613d83565b9450506020613f9387828801613d83565b9350506040613fa487828801613e95565b925050606085013567ffffffffffffffff811115613fc157600080fd5b613fcd87828801613e21565b91505092959194509250565b60008060408385031215613fec57600080fd5b6000613ffa85828601613d83565b925050602061400b85828601613de2565b9150509250929050565b6000806040838503121561402857600080fd5b600061403685828601613d83565b925050602061404785828601613e95565b9150509250929050565b6000806020838503121561406457600080fd5b600083013567ffffffffffffffff81111561407e57600080fd5b61408a85828601613d98565b92509250509250929050565b6000602082840312156140a857600080fd5b60006140b684828501613de2565b91505092915050565b6000602082840312156140d157600080fd5b60006140df84828501613df7565b91505092915050565b6000602082840312156140fa57600080fd5b600061410884828501613e0c565b91505092915050565b6000806020838503121561412457600080fd5b600083013567ffffffffffffffff81111561413e57600080fd5b61414a85828601613e4b565b92509250509250929050565b60006020828403121561416857600080fd5b600061417684828501613e95565b91505092915050565b600061418b8383614d09565b60208301905092915050565b6141a081615437565b82525050565b60006141b1826152b6565b6141bb81856152e4565b93506141c683615291565b8060005b838110156141f75781516141de888261417f565b97506141e9836152d7565b9250506001810190506141ca565b5085935050505092915050565b61420d81615449565b82525050565b600061421e826152c1565b61422881856152f5565b93506142388185602086016154ba565b61424181615655565b840191505092915050565b6000614257826152cc565b6142618185615306565b93506142718185602086016154ba565b61427a81615655565b840191505092915050565b6000614290826152cc565b61429a8185615317565b93506142aa8185602086016154ba565b80840191505092915050565b600081546142c3816154ed565b6142cd8186615317565b945060018216600081146142e857600181146142f95761432c565b60ff1983168652818601935061432c565b614302856152a1565b60005b8381101561432457815481890152600182019150602081019050614305565b838801955050505b50505092915050565b6000614342601883615306565b91507f416c6c6f77204c697374206973206e6f742061637469766500000000000000006000830152602082019050919050565b6000614382601d83615306565b91507f596f7520617265206e6f74206f6e2074686520416c6c6f77204c6973740000006000830152602082019050919050565b60006143c2602b83615306565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000614428601d83615306565b91507f4f6e6c7920616c6c6f77696e672066726f6d20416c6c6f77204c6973740000006000830152602082019050919050565b6000614468603283615306565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006144ce602683615306565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614534601c83615306565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000614574601b83615306565b91507f576f756c64206578636565642050555243484153455f4c494d495400000000006000830152602082019050919050565b60006145b4602483615306565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061461a601983615306565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061465a602483615306565b91507f507572636861736520776f756c642065786365656420504f4750554e4b5f505560008301527f424c4943000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146c0601483615306565b91507f546f6b656e20646f6573206e6f742065786973740000000000000000000000006000830152602082019050919050565b6000614700601c83615306565b91507f45544820616d6f756e74206973206e6f742073756666696369656e74000000006000830152602082019050919050565b6000614740602c83615306565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006147a6603883615306565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061480c602a83615306565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614872602983615306565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006148d8602083615306565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614918601683615306565b91507f436f6e7472616374206973206e6f7420616374697665000000000000000000006000830152602082019050919050565b6000614958602c83615306565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006149be602083615306565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006149fe601e83615306565b91507f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c69737400006000830152602082019050919050565b6000614a3e601a83615306565b91507f43616e27742061646420746865206e756c6c20616464726573730000000000006000830152602082019050919050565b6000614a7e602983615306565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ae4601e83615306565b91507f4e6f7420656e6f75676820746f6b656e73206c65667420746f206769667400006000830152602082019050919050565b6000614b24602183615306565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b8a603183615306565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614bf0602c83615306565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614c56601c83615306565b91507f50757263686173652065786365656473206d617820616c6c6f776564000000006000830152602082019050919050565b6000614c96601b83615306565b91507f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006000830152602082019050919050565b6000614cd6602083615306565b91507f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e736000830152602082019050919050565b614d12816154a1565b82525050565b614d21816154a1565b82525050565b6000614d338285614285565b9150614d3f8284614285565b91508190509392505050565b6000614d5782856142b6565b9150614d638284614285565b91508190509392505050565b6000602082019050614d846000830184614197565b92915050565b6000608082019050614d9f6000830187614197565b614dac6020830186614197565b614db96040830185614d18565b8181036060830152614dcb8184614213565b905095945050505050565b60006020820190508181036000830152614df081846141a6565b905092915050565b6000602082019050614e0d6000830184614204565b92915050565b60006020820190508181036000830152614e2d818461424c565b905092915050565b60006020820190508181036000830152614e4e81614335565b9050919050565b60006020820190508181036000830152614e6e81614375565b9050919050565b60006020820190508181036000830152614e8e816143b5565b9050919050565b60006020820190508181036000830152614eae8161441b565b9050919050565b60006020820190508181036000830152614ece8161445b565b9050919050565b60006020820190508181036000830152614eee816144c1565b9050919050565b60006020820190508181036000830152614f0e81614527565b9050919050565b60006020820190508181036000830152614f2e81614567565b9050919050565b60006020820190508181036000830152614f4e816145a7565b9050919050565b60006020820190508181036000830152614f6e8161460d565b9050919050565b60006020820190508181036000830152614f8e8161464d565b9050919050565b60006020820190508181036000830152614fae816146b3565b9050919050565b60006020820190508181036000830152614fce816146f3565b9050919050565b60006020820190508181036000830152614fee81614733565b9050919050565b6000602082019050818103600083015261500e81614799565b9050919050565b6000602082019050818103600083015261502e816147ff565b9050919050565b6000602082019050818103600083015261504e81614865565b9050919050565b6000602082019050818103600083015261506e816148cb565b9050919050565b6000602082019050818103600083015261508e8161490b565b9050919050565b600060208201905081810360008301526150ae8161494b565b9050919050565b600060208201905081810360008301526150ce816149b1565b9050919050565b600060208201905081810360008301526150ee816149f1565b9050919050565b6000602082019050818103600083015261510e81614a31565b9050919050565b6000602082019050818103600083015261512e81614a71565b9050919050565b6000602082019050818103600083015261514e81614ad7565b9050919050565b6000602082019050818103600083015261516e81614b17565b9050919050565b6000602082019050818103600083015261518e81614b7d565b9050919050565b600060208201905081810360008301526151ae81614be3565b9050919050565b600060208201905081810360008301526151ce81614c49565b9050919050565b600060208201905081810360008301526151ee81614c89565b9050919050565b6000602082019050818103600083015261520e81614cc9565b9050919050565b600060208201905061522a6000830184614d18565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561525757615256615626565b5b8060405250919050565b600067ffffffffffffffff82111561527c5761527b615626565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061532d826154a1565b9150615338836154a1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561536d5761536c615599565b5b828201905092915050565b6000615383826154a1565b915061538e836154a1565b92508261539e5761539d6155c8565b5b828204905092915050565b60006153b4826154a1565b91506153bf836154a1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156153f8576153f7615599565b5b828202905092915050565b600061540e826154a1565b9150615419836154a1565b92508282101561542c5761542b615599565b5b828203905092915050565b600061544282615481565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156154d85780820151818401526020810190506154bd565b838111156154e7576000848401525b50505050565b6000600282049050600182168061550557607f821691505b60208210811415615519576155186155f7565b5b50919050565b600061552a826154a1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561555d5761555c615599565b5b600182019050919050565b6000615573826154a1565b915061557e836154a1565b92508261558e5761558d6155c8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61566f81615437565b811461567a57600080fd5b50565b61568681615449565b811461569157600080fd5b50565b61569d81615455565b81146156a857600080fd5b50565b6156b4816154a1565b81146156bf57600080fd5b5056fea26469706673582212201b215594aea5c18b6394abf7d9415a4a5256719342f19bedc2c44a7d23215e2164736f6c63430008000033

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.