ETH Price: $2,333.52 (+1.95%)

Token

DimensionX (DMX)
 

Overview

Max Total Supply

0 DMX

Holders

34

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
gn0me.eth
Balance
29 DMX
0xd5739bf2f0c9d79ea5eea08994f528faef377f0c
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
DimensionX

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : DimensionX.sol
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)
// SPDX-License-Identifier: MIT

//DIMENSION X Comics Cards NFT Project
//Author: Devin Passage @martianarctic
pragma solidity ^0.8.4;

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

contract DimensionX is Context, ERC721, Whitelist {
    uint32 cardsIssued;     //total number of cards issued, which is used to check for an ultrarare card.
    uint32 cardCounter;     //which position of advancer we are currently on.
    uint32 cardId;          //this is the id of the next card that will be minted.
    uint256 mintingFee = 0.02 ether;
    enum WhitelistMode {
        off,
        free,
        required

    }
    WhitelistMode whitelist_mode = WhitelistMode.off;
    address payable public feeAddress;
    event CardMinted(address Recipient, uint256 tokenId);
    uint32[] advancer = [1,4,1,3,1,3,1,10,4,3,8,11,4,6]; //to enable our combination mechanic, we advance the next id by this amount to skip over cardIds that must be minted via combination.
    constructor() ERC721("DimensionX", "DMX") {
        
        feeAddress = payable(address(msg.sender));
        cardId = 1;
        cardCounter = 0;
        cardsIssued = 0;
    }
  
    function setFeeAddress(address payable FeeAddress) public onlyOwner {
        feeAddress = FeeAddress;
    }
    function getCardsIssued() public view returns (uint32) {
        return cardsIssued;
    }
    function doesCardExist(uint32 CardId) public view returns(bool) {
        return _exists(CardId);
    }
    function setMintingFee(uint256 Fee) public onlyOwner {
        mintingFee = Fee;
    }
    function sweepFunds() public onlyOwner {
        (bool success, ) = feeAddress.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
    function setWhitelistMode(WhitelistMode NewMode) public onlyOwner {
        whitelist_mode = NewMode;
    }
    function getWhitelistMode() public view returns(WhitelistMode) {
        return whitelist_mode;
    }
    function _baseURI() internal pure override returns (string memory) {
        return "https://www.dimensionxnft.com/m/";
    }
    function mintFreeCard() public onlyWhitelisted {
        require(removeOwnAddressFromWhitelist(msg.sender));
        require(whitelist_mode == WhitelistMode.free, "free card mode disabled, no free cards at this time");
        _mintCard();
    }
    function mintCardFromWhitelist()
        public
        payable
        onlyWhitelisted
    {
        require(msg.value >= mintingFee, 'insufficient funds');
        _mintCard();
    }
    function mintCard()
        public
        payable
    {
        require(whitelist_mode == WhitelistMode.off, "whitelisting is on, please call mintCardFromWhitelist instead");
        require(msg.value >= mintingFee, 'insufficient funds');
        _mintCard();
    }
    function mintCards(uint32 NumberOfCards)
        public
        payable
    {   
        require(whitelist_mode == WhitelistMode.off, "whitelisting is on, please call mintCardFromWhitelist instead");
        require(NumberOfCards <= 10, "10 cards max only please");
        require(msg.value >= mintingFee*NumberOfCards, 'insufficient funds');
        for(uint32 i = 0; i < NumberOfCards; i++)
            _mintCard();
    }
    function _mintCard()
        internal
        
    {
        if(cardsIssued%225 == 14) {
            //starting with the 15th card, every 225 cards will be a foil mask card.
            //anyone may call getCardsIssued to see how close the next one is.
            //**ATTENTION: IMPORTANT DISCLOSURE**
            //it is impossible to guarantee you will get a foil mask card
            //so you should mint with the assumption you will *not* get one
            uint rareId = (cardsIssued/225)*960 + 59;
            _safeMint(msg.sender, rareId);
            emit CardMinted(msg.sender, rareId );
        }
        else {
            //normal mint, skips over cardids created by combos
            _safeMint(msg.sender, cardId);
            emit CardMinted(msg.sender, cardId );
            cardId += advancer[cardCounter];
            if(cardCounter == 13)
                cardCounter = 0;
            else
                cardCounter++;
        }
        cardsIssued++;
        //_forwardFunds();
    }
    function mintAnyCard(uint32 newCardId) public onlyOwner returns (uint32) {
        //we reserve the ability to mint cards that have been skipped by the program, for example, to make
        //something that would combine with might chimera, we need to mint a card that does not exist yet.
        require(newCardId < cardId, 'Can only call this to mint a card skipped by DimensionX');
        _safeMint(msg.sender, newCardId);
        emit CardMinted(msg.sender, newCardId );
        return newCardId;
    }
    function combineCards(uint32 inCardA, uint32 inCardB) public returns (uint32){
        //card combination logic
        require(ERC721.ownerOf(inCardA) == msg.sender, 'both cards must be owned by combiner');
        require(ERC721.ownerOf(inCardB) == msg.sender, 'both cards must be owned by combiner');
        require(inCardA == inCardB-1, 'must be adjacent cardids');
        _burn(inCardA);
        _burn(inCardB);
        uint32 newCardId = 0;
        if(inCardA % 15 == 1)
            newCardId = inCardA+15;
        else if(inCardA % 15 == 6)
            newCardId = inCardA+11;
        else if(inCardA % 15 == 10)
            newCardId = inCardA+26;
        else if(inCardA % 15 == 14)
            newCardId = inCardA+30;

        _safeMint(msg.sender, newCardId);
        emit CardMinted(msg.sender, newCardId );
        return cardId;
    }
    receive() external payable
    {
    }
}

File 2 of 12 : 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 3 of 12 : 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 12 : Whitelist.sol
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;


import "@openzeppelin/contracts/access/Ownable.sol";


/**
 * @title Whitelist
 * @dev The Whitelist contract has a whitelist of addresses, and provides basic authorization control functions.
 * @dev This simplifies the implementation of "user permissions".
 */
contract Whitelist is Ownable {
  mapping(address => bool) public whitelist;
  uint32 public whitelistCount = 0;
  event WhitelistedAddressAdded(address addr);
  event WhitelistedAddressRemoved(address addr);

  /**
   * @dev Throws if called by any account that's not whitelisted.
   */
  modifier onlyWhitelisted() {
    require(whitelist[msg.sender], "account is not whitelisted");
    _;
  }

  /**
   * @dev add an address to the whitelist
   * @param addr address
   * @return success if the address was added to the whitelist, false if the address was already in the whitelist 
   */
  function addAddressToWhitelist(address addr) onlyOwner public returns(bool success) {
    if (!whitelist[addr]) {
      whitelist[addr] = true;
      whitelistCount++;
      emit WhitelistedAddressAdded(addr);
      success = true; 
    }
  }

  /**
   * @dev add addresses to the whitelist
   * @param addrs addresses
   * @return success if at least one address was added to the whitelist, 
   * false if all addresses were already in the whitelist  
   */
  function addAddressesToWhitelist(address[] memory addrs) onlyOwner public returns(bool success) {
    for (uint256 i = 0; i < addrs.length; i++) {
      if (addAddressToWhitelist(addrs[i])) {
        success = true;
      }
    }
  }

  /**
   * @dev remove an address from the whitelist
   * @param addr address
   * @return success if the address was removed from the whitelist, 
   * false if the address wasn't in the whitelist in the first place 
   */
  function removeAddressFromWhitelist(address addr) onlyOwner public returns(bool success) {
    if (whitelist[addr]) {
      whitelist[addr] = false;
      whitelistCount--;
      emit WhitelistedAddressRemoved(addr);
      success = true;
    }
  }
/**
   * @dev remove an address from the whitelist
   * @param addr address
   * @return success if the address was removed from the whitelist, 
   * false if the address wasn't in the whitelist in the first place 
   */
  function removeOwnAddressFromWhitelist(address addr) public returns(bool success) {
    require(addr == msg.sender, "can only remove own address");
    if (whitelist[addr]) {
      whitelist[addr] = false;
      whitelistCount--;
      emit WhitelistedAddressRemoved(addr);
      success = true;
    }
  }
  /**
   * @dev remove addresses from the whitelist
   * @param addrs addresses
   * @return success if at least one address was removed from the whitelist, 
   * false if all addresses weren't in the whitelist in the first place
   */
  function removeAddressesFromWhitelist(address[] memory addrs) onlyOwner public returns(bool success) {
    for (uint256 i = 0; i < addrs.length; i++) {
      if (removeAddressFromWhitelist(addrs[i])) {
        success = true;
      }
    }
  }

}

File 5 of 12 : 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 6 of 12 : 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 7 of 12 : 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 8 of 12 : 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 9 of 12 : 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 10 of 12 : 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 11 of 12 : 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 12 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"Recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"CardMinted","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"}],"name":"WhitelistedAddressAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"}],"name":"WhitelistedAddressRemoved","type":"event"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addAddressToWhitelist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"addAddressesToWhitelist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"inCardA","type":"uint32"},{"internalType":"uint32","name":"inCardB","type":"uint32"}],"name":"combineCards","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"CardId","type":"uint32"}],"name":"doesCardExist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"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":"getCardsIssued","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhitelistMode","outputs":[{"internalType":"enum DimensionX.WhitelistMode","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"newCardId","type":"uint32"}],"name":"mintAnyCard","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintCard","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintCardFromWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint32","name":"NumberOfCards","type":"uint32"}],"name":"mintCards","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintFreeCard","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"removeAddressFromWhitelist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"removeAddressesFromWhitelist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"removeOwnAddressFromWhitelist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"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":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"FeeAddress","type":"address"}],"name":"setFeeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"Fee","type":"uint256"}],"name":"setMintingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum DimensionX.WhitelistMode","name":"NewMode","type":"uint8"}],"name":"setWhitelistMode","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":"sweepFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistCount","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526000600860006101000a81548163ffffffff021916908363ffffffff16021790555066470de4df8200006009556000600a60006101000a81548160ff021916908360028111156200007e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550604051806101c00160405280600160ff168152602001600460ff168152602001600160ff168152602001600360ff168152602001600160ff168152602001600360ff168152602001600160ff168152602001600a60ff168152602001600460ff168152602001600360ff168152602001600860ff168152602001600b60ff168152602001600460ff168152602001600660ff16815250600b90600e6200012b92919062000374565b503480156200013957600080fd5b506040518060400160405280600a81526020017f44696d656e73696f6e58000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f444d5800000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001be92919062000428565b508060019080519060200190620001d792919062000428565b505050620001fa620001ee620002a660201b60201c565b620002ae60201b60201c565b33600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016008600c6101000a81548163ffffffff021916908363ffffffff16021790555060006008806101000a81548163ffffffff021916908363ffffffff1602179055506000600860046101000a81548163ffffffff021916908363ffffffff1602179055506200053d565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805482825590600052602060002090600701600890048101928215620004155791602002820160005b83821115620003e157835183826101000a81548163ffffffff021916908360ff16021790555092602001926004016020816003010492830192600103026200039e565b8015620004135782816101000a81549063ffffffff0219169055600401602081600301049283019260010302620003e1565b505b509050620004249190620004b9565b5090565b8280546200043690620004d8565b90600052602060002090601f0160209004810192826200045a5760008555620004a6565b82601f106200047557805160ff1916838001178555620004a6565b82800160010185558215620004a6579182015b82811115620004a557825182559160200191906001019062000488565b5b509050620004b59190620004b9565b5090565b5b80821115620004d4576000816000905550600101620004ba565b5090565b60006002820490506001821680620004f157607f821691505b602082108114156200050857620005076200050e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61523a806200054d6000396000f3fe60806040526004361061021e5760003560e01c80636352211e1161012357806395d89b41116100ab578063c87b56dd1161006f578063c87b56dd146107c5578063e2ec6ec314610802578063e985e9c51461083f578063f2624b5d1461087c578063f2fde38b146108a757610225565b806395d89b41146106f45780639b19251a1461071f578063a22cb4651461075c578063a8d6fe0414610785578063b88d4fde1461079c57610225565b80637efb1aff116100f25780637efb1aff1461060f5780638705fcd41461064c5780638da5cb5b14610675578063906108f7146106a05780639493907a146106b757610225565b80636352211e1461054157806370a082311461057e578063715018a6146105bb5780637b9417c8146105d257610225565b80632d6ac81b116101a65780634127535811610175578063412753581461049c57806342842e0e146104c75780634903709c146104f057806351755def146104fa578063520a11011461051657610225565b80632d6ac81b14610401578063336f41e91461042a57806337aca56f146104675780633993c2201461049257610225565b80631fe49d70116101ed5780631fe49d70146102f8578063238a47091461033557806323b872dd1461035e57806324953eaa14610387578063286dd3f5146103c457610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf57610225565b3661022557005b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906139f6565b6108d0565b60405161025e91906140c9565b60405180910390f35b34801561027357600080fd5b5061027c6109b2565b60405161028991906140ff565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613a71565b610a44565b6040516102c69190613ff5565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613979565b610ac9565b005b34801561030457600080fd5b5061031f600480360381019061031a9190613a9a565b610be1565b60405161032c91906140c9565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190613a71565b610bf9565b005b34801561036a57600080fd5b5061038560048036038101906103809190613873565b610c7f565b005b34801561039357600080fd5b506103ae60048036038101906103a991906139b5565b610cdf565b6040516103bb91906140c9565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e691906137e5565b610dd5565b6040516103f891906140c9565b60405180910390f35b34801561040d57600080fd5b5061042860048036038101906104239190613a48565b610f7f565b005b34801561043657600080fd5b50610451600480360381019061044c9190613a9a565b61104e565b60405161045e919061447c565b60405180910390f35b34801561047357600080fd5b5061047c61117d565b60405161048991906140e4565b60405180910390f35b61049a611194565b005b3480156104a857600080fd5b506104b16112a5565b6040516104be9190614010565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e99190613873565b6112cb565b005b6104f86112eb565b005b610514600480360381019061050f9190613a9a565b6113c6565b005b34801561052257600080fd5b5061052b61155e565b604051610538919061447c565b60405180910390f35b34801561054d57600080fd5b5061056860048036038101906105639190613a71565b611578565b6040516105759190613ff5565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a091906137e5565b61162a565b6040516105b29190614461565b60405180910390f35b3480156105c757600080fd5b506105d06116e2565b005b3480156105de57600080fd5b506105f960048036038101906105f491906137e5565b61176a565b60405161060691906140c9565b60405180910390f35b34801561061b57600080fd5b5061063660048036038101906106319190613ac3565b611913565b604051610643919061447c565b60405180910390f35b34801561065857600080fd5b50610673600480360381019061066e919061380e565b611ba7565b005b34801561068157600080fd5b5061068a611c67565b6040516106979190613ff5565b60405180910390f35b3480156106ac57600080fd5b506106b5611c91565b005b3480156106c357600080fd5b506106de60048036038101906106d991906137e5565b611dfb565b6040516106eb91906140c9565b60405180910390f35b34801561070057600080fd5b50610709611f97565b60405161071691906140ff565b60405180910390f35b34801561072b57600080fd5b50610746600480360381019061074191906137e5565b612029565b60405161075391906140c9565b60405180910390f35b34801561076857600080fd5b50610783600480360381019061077e919061393d565b612049565b005b34801561079157600080fd5b5061079a6121ca565b005b3480156107a857600080fd5b506107c360048036038101906107be91906138c2565b612317565b005b3480156107d157600080fd5b506107ec60048036038101906107e79190613a71565b612379565b6040516107f991906140ff565b60405180910390f35b34801561080e57600080fd5b50610829600480360381019061082491906139b5565b612420565b60405161083691906140c9565b60405180910390f35b34801561084b57600080fd5b5061086660048036038101906108619190613837565b612516565b60405161087391906140c9565b60405180910390f35b34801561088857600080fd5b506108916125aa565b60405161089e919061447c565b60405180910390f35b3480156108b357600080fd5b506108ce60048036038101906108c991906137e5565b6125c0565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109ab57506109aa826126b8565b5b9050919050565b6060600080546109c190614892565b80601f01602080910402602001604051908101604052809291908181526020018280546109ed90614892565b8015610a3a5780601f10610a0f57610100808354040283529160200191610a3a565b820191906000526020600020905b815481529060010190602001808311610a1d57829003601f168201915b5050505050905090565b6000610a4f82612722565b610a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a85906142c1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ad482611578565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3c90614381565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b6461278e565b73ffffffffffffffffffffffffffffffffffffffff161480610b935750610b9281610b8d61278e565b612516565b5b610bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc990614241565b60405180910390fd5b610bdc8383612796565b505050565b6000610bf28263ffffffff16612722565b9050919050565b610c0161278e565b73ffffffffffffffffffffffffffffffffffffffff16610c1f611c67565b73ffffffffffffffffffffffffffffffffffffffff1614610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c906142e1565b60405180910390fd5b8060098190555050565b610c90610c8a61278e565b8261284f565b610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc690614401565b60405180910390fd5b610cda83838361292d565b505050565b6000610ce961278e565b73ffffffffffffffffffffffffffffffffffffffff16610d07611c67565b73ffffffffffffffffffffffffffffffffffffffff1614610d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d54906142e1565b60405180910390fd5b60005b8251811015610dcf57610db2838281518110610da5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610dd5565b15610dbc57600191505b8080610dc7906148f5565b915050610d60565b50919050565b6000610ddf61278e565b73ffffffffffffffffffffffffffffffffffffffff16610dfd611c67565b73ffffffffffffffffffffffffffffffffffffffff1614610e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4a906142e1565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f7a576000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008600081819054906101000a900463ffffffff1680929190610f1f90614868565b91906101000a81548163ffffffff021916908363ffffffff160217905550507ff1abf01a1043b7c244d128e8595cf0c1d10743b022b03a02dffd8ca3bf729f5a82604051610f6d9190613ff5565b60405180910390a1600190505b919050565b610f8761278e565b73ffffffffffffffffffffffffffffffffffffffff16610fa5611c67565b73ffffffffffffffffffffffffffffffffffffffff1614610ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff2906142e1565b60405180910390fd5b80600a60006101000a81548160ff02191690836002811115611046577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b021790555050565b600061105861278e565b73ffffffffffffffffffffffffffffffffffffffff16611076611c67565b73ffffffffffffffffffffffffffffffffffffffff16146110cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c3906142e1565b60405180910390fd5b6008600c9054906101000a900463ffffffff1663ffffffff168263ffffffff161061112c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112390614181565b60405180910390fd5b61113c338363ffffffff16612b89565b7f91f9f8eee707de5d1301c45b783fb95d1e7fd7535bf3f7dda2f950a9b488ccb2338360405161116d9291906140a0565b60405180910390a1819050919050565b6000600a60009054906101000a900460ff16905090565b600060028111156111ce577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600a60009054906101000a900460ff166002811115611216577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d90614221565b60405180910390fd5b60095434101561129b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611292906143c1565b60405180910390fd5b6112a3612ba7565b565b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6112e683838360405180602001604052806000815250612317565b505050565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e906141a1565b60405180910390fd5b6009543410156113bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b3906143c1565b60405180910390fd5b6113c4612ba7565b565b60006002811115611400577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600a60009054906101000a900460ff166002811115611448577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14611488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147f90614221565b60405180910390fd5b600a8163ffffffff1611156114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c990614361565b60405180910390fd5b8063ffffffff166009546114e69190614659565b341015611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f906143c1565b60405180910390fd5b60005b8163ffffffff168163ffffffff16101561155a57611547612ba7565b80806115529061493e565b91505061152b565b5050565b6000600860049054906101000a900463ffffffff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890614281565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290614261565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116ea61278e565b73ffffffffffffffffffffffffffffffffffffffff16611708611c67565b73ffffffffffffffffffffffffffffffffffffffff161461175e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611755906142e1565b60405180910390fd5b6117686000612e4a565b565b600061177461278e565b73ffffffffffffffffffffffffffffffffffffffff16611792611c67565b73ffffffffffffffffffffffffffffffffffffffff16146117e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117df906142e1565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661190e576001600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008600081819054906101000a900463ffffffff16809291906118b39061493e565b91906101000a81548163ffffffff021916908363ffffffff160217905550507fd1bba68c128cc3f427e5831b3c6f99f480b6efa6b9e80c757768f6124158cc3f826040516119019190613ff5565b60405180910390a1600190505b919050565b60003373ffffffffffffffffffffffffffffffffffffffff1661193b8463ffffffff16611578565b73ffffffffffffffffffffffffffffffffffffffff1614611991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198890614441565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166119b78363ffffffff16611578565b73ffffffffffffffffffffffffffffffffffffffff1614611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0490614441565b60405180910390fd5b600182611a1a9190614725565b63ffffffff168363ffffffff1614611a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5e906143a1565b60405180910390fd5b611a768363ffffffff16612f10565b611a858263ffffffff16612f10565b60006001600f85611a96919061499c565b63ffffffff161415611ab657600f84611aaf91906145bd565b9050611b42565b6006600f85611ac5919061499c565b63ffffffff161415611ae557600b84611ade91906145bd565b9050611b41565b600a600f85611af4919061499c565b63ffffffff161415611b1457601a84611b0d91906145bd565b9050611b40565b600e600f85611b23919061499c565b63ffffffff161415611b3f57601e84611b3c91906145bd565b90505b5b5b5b611b52338263ffffffff16612b89565b7f91f9f8eee707de5d1301c45b783fb95d1e7fd7535bf3f7dda2f950a9b488ccb23382604051611b839291906140a0565b60405180910390a16008600c9054906101000a900463ffffffff1691505092915050565b611baf61278e565b73ffffffffffffffffffffffffffffffffffffffff16611bcd611c67565b73ffffffffffffffffffffffffffffffffffffffff1614611c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1a906142e1565b60405180910390fd5b80600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d14906141a1565b60405180910390fd5b611d2633611dfb565b611d2f57600080fd5b60016002811115611d69577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600a60009054906101000a900460ff166002811115611db1577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14611df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de890614421565b60405180910390fd5b611df9612ba7565b565b60003373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6290614341565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f92576000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008600081819054906101000a900463ffffffff1680929190611f3790614868565b91906101000a81548163ffffffff021916908363ffffffff160217905550507ff1abf01a1043b7c244d128e8595cf0c1d10743b022b03a02dffd8ca3bf729f5a82604051611f859190613ff5565b60405180910390a1600190505b919050565b606060018054611fa690614892565b80601f0160208091040260200160405190810160405280929190818152602001828054611fd290614892565b801561201f5780601f10611ff45761010080835404028352916020019161201f565b820191906000526020600020905b81548152906001019060200180831161200257829003601f168201915b5050505050905090565b60076020528060005260406000206000915054906101000a900460ff1681565b61205161278e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b6906141e1565b60405180910390fd5b80600560006120cc61278e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661217961278e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121be91906140c9565b60405180910390a35050565b6121d261278e565b73ffffffffffffffffffffffffffffffffffffffff166121f0611c67565b73ffffffffffffffffffffffffffffffffffffffff1614612246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223d906142e1565b60405180910390fd5b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161228e90613fe0565b60006040518083038185875af1925050503d80600081146122cb576040519150601f19603f3d011682016040523d82523d6000602084013e6122d0565b606091505b5050905080612314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b906143e1565b60405180910390fd5b50565b61232861232261278e565b8361284f565b612367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235e90614401565b60405180910390fd5b61237384848484613021565b50505050565b606061238482612722565b6123c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ba90614321565b60405180910390fd5b60006123cd61307d565b905060008151116123ed5760405180602001604052806000815250612418565b806123f7846130ba565b604051602001612408929190613fbc565b6040516020818303038152906040525b915050919050565b600061242a61278e565b73ffffffffffffffffffffffffffffffffffffffff16612448611c67565b73ffffffffffffffffffffffffffffffffffffffff161461249e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612495906142e1565b60405180910390fd5b60005b8251811015612510576124f38382815181106124e6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161176a565b156124fd57600191505b8080612508906148f5565b9150506124a1565b50919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860009054906101000a900463ffffffff1681565b6125c861278e565b73ffffffffffffffffffffffffffffffffffffffff166125e6611c67565b73ffffffffffffffffffffffffffffffffffffffff161461263c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612633906142e1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a390614141565b60405180910390fd5b6126b581612e4a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661280983611578565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061285a82612722565b612899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289090614201565b60405180910390fd5b60006128a483611578565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061291357508373ffffffffffffffffffffffffffffffffffffffff166128fb84610a44565b73ffffffffffffffffffffffffffffffffffffffff16145b8061292457506129238185612516565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661294d82611578565b73ffffffffffffffffffffffffffffffffffffffff16146129a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299a90614301565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0a906141c1565b60405180910390fd5b612a1e838383613267565b612a29600082612796565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a7991906146f1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ad09190614567565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612ba382826040518060200160405280600081525061326c565b5050565b600e60e1600860049054906101000a900463ffffffff16612bc8919061499c565b63ffffffff161415612c5f576000603b6103c060e1600860049054906101000a900463ffffffff16612bfa9190614628565b612c0491906146b3565b612c0e91906145bd565b63ffffffff169050612c203382612b89565b7f91f9f8eee707de5d1301c45b783fb95d1e7fd7535bf3f7dda2f950a9b488ccb23382604051612c51929190614077565b60405180910390a150612e07565b612c81336008600c9054906101000a900463ffffffff1663ffffffff16612b89565b7f91f9f8eee707de5d1301c45b783fb95d1e7fd7535bf3f7dda2f950a9b488ccb2336008600c9054906101000a900463ffffffff16604051612cc49291906140a0565b60405180910390a1600b60088054906101000a900463ffffffff1663ffffffff1681548110612d1c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600891828204019190066004029054906101000a900463ffffffff166008600c8282829054906101000a900463ffffffff16612d6291906145bd565b92506101000a81548163ffffffff021916908363ffffffff160217905550600d60088054906101000a900463ffffffff1663ffffffff161415612dc55760006008806101000a81548163ffffffff021916908363ffffffff160217905550612e06565b60088081819054906101000a900463ffffffff1680929190612de69061493e565b91906101000a81548163ffffffff021916908363ffffffff160217905550505b5b6008600481819054906101000a900463ffffffff1680929190612e299061493e565b91906101000a81548163ffffffff021916908363ffffffff16021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612f1b82611578565b9050612f2981600084613267565b612f34600083612796565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f8491906146f1565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b61302c84848461292d565b613038848484846132c7565b613077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306e90614121565b60405180910390fd5b50505050565b60606040518060400160405280602081526020017f68747470733a2f2f7777772e64696d656e73696f6e786e66742e636f6d2f6d2f815250905090565b60606000821415613102576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613262565b600082905060005b6000821461313457808061311d906148f5565b915050600a8261312d91906145f7565b915061310a565b60008167ffffffffffffffff811115613176577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131a85781602001600182028036833780820191505090505b5090505b6000851461325b576001826131c191906146f1565b9150600a856131d0919061496b565b60306131dc9190614567565b60f81b818381518110613218577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561325491906145f7565b94506131ac565b8093505050505b919050565b505050565b613276838361345e565b61328360008484846132c7565b6132c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b990614121565b60405180910390fd5b505050565b60006132e88473ffffffffffffffffffffffffffffffffffffffff1661362c565b15613451578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261331161278e565b8786866040518563ffffffff1660e01b8152600401613333949392919061402b565b602060405180830381600087803b15801561334d57600080fd5b505af192505050801561337e57506040513d601f19601f8201168201806040525081019061337b9190613a1f565b60015b613401573d80600081146133ae576040519150601f19603f3d011682016040523d82523d6000602084013e6133b3565b606091505b506000815114156133f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f090614121565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613456565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134c5906142a1565b60405180910390fd5b6134d781612722565b15613517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161350e90614161565b60405180910390fd5b61352360008383613267565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135739190614567565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b600061365261364d846144bc565b614497565b9050808382526020820190508285602086028201111561367157600080fd5b60005b858110156136a1578161368788826136e9565b845260208401935060208301925050600181019050613674565b5050509392505050565b60006136be6136b9846144e8565b614497565b9050828152602081018484840111156136d657600080fd5b6136e1848285614826565b509392505050565b6000813590506136f88161516a565b92915050565b60008135905061370d81615181565b92915050565b600082601f83011261372457600080fd5b813561373484826020860161363f565b91505092915050565b60008135905061374c81615198565b92915050565b600081359050613761816151af565b92915050565b600081519050613776816151af565b92915050565b600082601f83011261378d57600080fd5b813561379d8482602086016136ab565b91505092915050565b6000813590506137b5816151c6565b92915050565b6000813590506137ca816151d6565b92915050565b6000813590506137df816151ed565b92915050565b6000602082840312156137f757600080fd5b6000613805848285016136e9565b91505092915050565b60006020828403121561382057600080fd5b600061382e848285016136fe565b91505092915050565b6000806040838503121561384a57600080fd5b6000613858858286016136e9565b9250506020613869858286016136e9565b9150509250929050565b60008060006060848603121561388857600080fd5b6000613896868287016136e9565b93505060206138a7868287016136e9565b92505060406138b8868287016137bb565b9150509250925092565b600080600080608085870312156138d857600080fd5b60006138e6878288016136e9565b94505060206138f7878288016136e9565b9350506040613908878288016137bb565b925050606085013567ffffffffffffffff81111561392557600080fd5b6139318782880161377c565b91505092959194509250565b6000806040838503121561395057600080fd5b600061395e858286016136e9565b925050602061396f8582860161373d565b9150509250929050565b6000806040838503121561398c57600080fd5b600061399a858286016136e9565b92505060206139ab858286016137bb565b9150509250929050565b6000602082840312156139c757600080fd5b600082013567ffffffffffffffff8111156139e157600080fd5b6139ed84828501613713565b91505092915050565b600060208284031215613a0857600080fd5b6000613a1684828501613752565b91505092915050565b600060208284031215613a3157600080fd5b6000613a3f84828501613767565b91505092915050565b600060208284031215613a5a57600080fd5b6000613a68848285016137a6565b91505092915050565b600060208284031215613a8357600080fd5b6000613a91848285016137bb565b91505092915050565b600060208284031215613aac57600080fd5b6000613aba848285016137d0565b91505092915050565b60008060408385031215613ad657600080fd5b6000613ae4858286016137d0565b9250506020613af5858286016137d0565b9150509250929050565b613b088161476b565b82525050565b613b1781614759565b82525050565b613b268161477d565b82525050565b6000613b3782614519565b613b41818561452f565b9350613b51818560208601614835565b613b5a81614ab8565b840191505092915050565b613b6e81614802565b82525050565b6000613b7f82614524565b613b89818561454b565b9350613b99818560208601614835565b613ba281614ab8565b840191505092915050565b6000613bb882614524565b613bc2818561455c565b9350613bd2818560208601614835565b80840191505092915050565b6000613beb60328361454b565b9150613bf682614ac9565b604082019050919050565b6000613c0e60268361454b565b9150613c1982614b18565b604082019050919050565b6000613c31601c8361454b565b9150613c3c82614b67565b602082019050919050565b6000613c5460378361454b565b9150613c5f82614b90565b604082019050919050565b6000613c77601a8361454b565b9150613c8282614bdf565b602082019050919050565b6000613c9a60248361454b565b9150613ca582614c08565b604082019050919050565b6000613cbd60198361454b565b9150613cc882614c57565b602082019050919050565b6000613ce0602c8361454b565b9150613ceb82614c80565b604082019050919050565b6000613d03603d8361454b565b9150613d0e82614ccf565b604082019050919050565b6000613d2660388361454b565b9150613d3182614d1e565b604082019050919050565b6000613d49602a8361454b565b9150613d5482614d6d565b604082019050919050565b6000613d6c60298361454b565b9150613d7782614dbc565b604082019050919050565b6000613d8f60208361454b565b9150613d9a82614e0b565b602082019050919050565b6000613db2602c8361454b565b9150613dbd82614e34565b604082019050919050565b6000613dd560208361454b565b9150613de082614e83565b602082019050919050565b6000613df860298361454b565b9150613e0382614eac565b604082019050919050565b6000613e1b602f8361454b565b9150613e2682614efb565b604082019050919050565b6000613e3e601b8361454b565b9150613e4982614f4a565b602082019050919050565b6000613e6160188361454b565b9150613e6c82614f73565b602082019050919050565b6000613e8460218361454b565b9150613e8f82614f9c565b604082019050919050565b6000613ea760188361454b565b9150613eb282614feb565b602082019050919050565b6000613eca600083614540565b9150613ed582615014565b600082019050919050565b6000613eed60128361454b565b9150613ef882615017565b602082019050919050565b6000613f1060108361454b565b9150613f1b82615040565b602082019050919050565b6000613f3360318361454b565b9150613f3e82615069565b604082019050919050565b6000613f5660338361454b565b9150613f61826150b8565b604082019050919050565b6000613f7960248361454b565b9150613f8482615107565b604082019050919050565b613f98816147e8565b82525050565b613fa781614814565b82525050565b613fb6816147f2565b82525050565b6000613fc88285613bad565b9150613fd48284613bad565b91508190509392505050565b6000613feb82613ebd565b9150819050919050565b600060208201905061400a6000830184613b0e565b92915050565b60006020820190506140256000830184613aff565b92915050565b60006080820190506140406000830187613b0e565b61404d6020830186613b0e565b61405a6040830185613f8f565b818103606083015261406c8184613b2c565b905095945050505050565b600060408201905061408c6000830185613b0e565b6140996020830184613f8f565b9392505050565b60006040820190506140b56000830185613b0e565b6140c26020830184613f9e565b9392505050565b60006020820190506140de6000830184613b1d565b92915050565b60006020820190506140f96000830184613b65565b92915050565b600060208201905081810360008301526141198184613b74565b905092915050565b6000602082019050818103600083015261413a81613bde565b9050919050565b6000602082019050818103600083015261415a81613c01565b9050919050565b6000602082019050818103600083015261417a81613c24565b9050919050565b6000602082019050818103600083015261419a81613c47565b9050919050565b600060208201905081810360008301526141ba81613c6a565b9050919050565b600060208201905081810360008301526141da81613c8d565b9050919050565b600060208201905081810360008301526141fa81613cb0565b9050919050565b6000602082019050818103600083015261421a81613cd3565b9050919050565b6000602082019050818103600083015261423a81613cf6565b9050919050565b6000602082019050818103600083015261425a81613d19565b9050919050565b6000602082019050818103600083015261427a81613d3c565b9050919050565b6000602082019050818103600083015261429a81613d5f565b9050919050565b600060208201905081810360008301526142ba81613d82565b9050919050565b600060208201905081810360008301526142da81613da5565b9050919050565b600060208201905081810360008301526142fa81613dc8565b9050919050565b6000602082019050818103600083015261431a81613deb565b9050919050565b6000602082019050818103600083015261433a81613e0e565b9050919050565b6000602082019050818103600083015261435a81613e31565b9050919050565b6000602082019050818103600083015261437a81613e54565b9050919050565b6000602082019050818103600083015261439a81613e77565b9050919050565b600060208201905081810360008301526143ba81613e9a565b9050919050565b600060208201905081810360008301526143da81613ee0565b9050919050565b600060208201905081810360008301526143fa81613f03565b9050919050565b6000602082019050818103600083015261441a81613f26565b9050919050565b6000602082019050818103600083015261443a81613f49565b9050919050565b6000602082019050818103600083015261445a81613f6c565b9050919050565b60006020820190506144766000830184613f8f565b92915050565b60006020820190506144916000830184613fad565b92915050565b60006144a16144b2565b90506144ad82826148c4565b919050565b6000604051905090565b600067ffffffffffffffff8211156144d7576144d6614a89565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561450357614502614a89565b5b61450c82614ab8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614572826147e8565b915061457d836147e8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145b2576145b16149cd565b5b828201905092915050565b60006145c8826147f2565b91506145d3836147f2565b92508263ffffffff038211156145ec576145eb6149cd565b5b828201905092915050565b6000614602826147e8565b915061460d836147e8565b92508261461d5761461c6149fc565b5b828204905092915050565b6000614633826147f2565b915061463e836147f2565b92508261464e5761464d6149fc565b5b828204905092915050565b6000614664826147e8565b915061466f836147e8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146a8576146a76149cd565b5b828202905092915050565b60006146be826147f2565b91506146c9836147f2565b92508163ffffffff04831182151516156146e6576146e56149cd565b5b828202905092915050565b60006146fc826147e8565b9150614707836147e8565b92508282101561471a576147196149cd565b5b828203905092915050565b6000614730826147f2565b915061473b836147f2565b92508282101561474e5761474d6149cd565b5b828203905092915050565b6000614764826147c8565b9050919050565b6000614776826147c8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60008190506147c382615156565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600061480d826147b5565b9050919050565b600061481f826147f2565b9050919050565b82818337600083830152505050565b60005b83811015614853578082015181840152602081019050614838565b83811115614862576000848401525b50505050565b6000614873826147f2565b91506000821415614887576148866149cd565b5b600182039050919050565b600060028204905060018216806148aa57607f821691505b602082108114156148be576148bd614a5a565b5b50919050565b6148cd82614ab8565b810181811067ffffffffffffffff821117156148ec576148eb614a89565b5b80604052505050565b6000614900826147e8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614933576149326149cd565b5b600182019050919050565b6000614949826147f2565b915063ffffffff8214156149605761495f6149cd565b5b600182019050919050565b6000614976826147e8565b9150614981836147e8565b925082614991576149906149fc565b5b828206905092915050565b60006149a7826147f2565b91506149b2836147f2565b9250826149c2576149c16149fc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f43616e206f6e6c792063616c6c207468697320746f206d696e7420612063617260008201527f6420736b69707065642062792044696d656e73696f6e58000000000000000000602082015250565b7f6163636f756e74206973206e6f742077686974656c6973746564000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f77686974656c697374696e67206973206f6e2c20706c656173652063616c6c2060008201527f6d696e744361726446726f6d57686974656c69737420696e7374656164000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f63616e206f6e6c792072656d6f7665206f776e20616464726573730000000000600082015250565b7f3130206361726473206d6178206f6e6c7920706c656173650000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f6d7573742062652061646a6163656e7420636172646964730000000000000000600082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f667265652063617264206d6f64652064697361626c65642c206e6f206672656560008201527f20636172647320617420746869732074696d6500000000000000000000000000602082015250565b7f626f7468206361726473206d757374206265206f776e656420627920636f6d6260008201527f696e657200000000000000000000000000000000000000000000000000000000602082015250565b6003811061516757615166614a2b565b5b50565b61517381614759565b811461517e57600080fd5b50565b61518a8161476b565b811461519557600080fd5b50565b6151a18161477d565b81146151ac57600080fd5b50565b6151b881614789565b81146151c357600080fd5b50565b600381106151d357600080fd5b50565b6151df816147e8565b81146151ea57600080fd5b50565b6151f6816147f2565b811461520157600080fd5b5056fea26469706673582212203b9d323000572b8190f49cf767b1cd9fcd3ceed8f90387cb9a3d8e96e6c970fc64736f6c63430008040033

Deployed Bytecode

0x60806040526004361061021e5760003560e01c80636352211e1161012357806395d89b41116100ab578063c87b56dd1161006f578063c87b56dd146107c5578063e2ec6ec314610802578063e985e9c51461083f578063f2624b5d1461087c578063f2fde38b146108a757610225565b806395d89b41146106f45780639b19251a1461071f578063a22cb4651461075c578063a8d6fe0414610785578063b88d4fde1461079c57610225565b80637efb1aff116100f25780637efb1aff1461060f5780638705fcd41461064c5780638da5cb5b14610675578063906108f7146106a05780639493907a146106b757610225565b80636352211e1461054157806370a082311461057e578063715018a6146105bb5780637b9417c8146105d257610225565b80632d6ac81b116101a65780634127535811610175578063412753581461049c57806342842e0e146104c75780634903709c146104f057806351755def146104fa578063520a11011461051657610225565b80632d6ac81b14610401578063336f41e91461042a57806337aca56f146104675780633993c2201461049257610225565b80631fe49d70116101ed5780631fe49d70146102f8578063238a47091461033557806323b872dd1461035e57806324953eaa14610387578063286dd3f5146103c457610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf57610225565b3661022557005b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906139f6565b6108d0565b60405161025e91906140c9565b60405180910390f35b34801561027357600080fd5b5061027c6109b2565b60405161028991906140ff565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613a71565b610a44565b6040516102c69190613ff5565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613979565b610ac9565b005b34801561030457600080fd5b5061031f600480360381019061031a9190613a9a565b610be1565b60405161032c91906140c9565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190613a71565b610bf9565b005b34801561036a57600080fd5b5061038560048036038101906103809190613873565b610c7f565b005b34801561039357600080fd5b506103ae60048036038101906103a991906139b5565b610cdf565b6040516103bb91906140c9565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e691906137e5565b610dd5565b6040516103f891906140c9565b60405180910390f35b34801561040d57600080fd5b5061042860048036038101906104239190613a48565b610f7f565b005b34801561043657600080fd5b50610451600480360381019061044c9190613a9a565b61104e565b60405161045e919061447c565b60405180910390f35b34801561047357600080fd5b5061047c61117d565b60405161048991906140e4565b60405180910390f35b61049a611194565b005b3480156104a857600080fd5b506104b16112a5565b6040516104be9190614010565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e99190613873565b6112cb565b005b6104f86112eb565b005b610514600480360381019061050f9190613a9a565b6113c6565b005b34801561052257600080fd5b5061052b61155e565b604051610538919061447c565b60405180910390f35b34801561054d57600080fd5b5061056860048036038101906105639190613a71565b611578565b6040516105759190613ff5565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a091906137e5565b61162a565b6040516105b29190614461565b60405180910390f35b3480156105c757600080fd5b506105d06116e2565b005b3480156105de57600080fd5b506105f960048036038101906105f491906137e5565b61176a565b60405161060691906140c9565b60405180910390f35b34801561061b57600080fd5b5061063660048036038101906106319190613ac3565b611913565b604051610643919061447c565b60405180910390f35b34801561065857600080fd5b50610673600480360381019061066e919061380e565b611ba7565b005b34801561068157600080fd5b5061068a611c67565b6040516106979190613ff5565b60405180910390f35b3480156106ac57600080fd5b506106b5611c91565b005b3480156106c357600080fd5b506106de60048036038101906106d991906137e5565b611dfb565b6040516106eb91906140c9565b60405180910390f35b34801561070057600080fd5b50610709611f97565b60405161071691906140ff565b60405180910390f35b34801561072b57600080fd5b50610746600480360381019061074191906137e5565b612029565b60405161075391906140c9565b60405180910390f35b34801561076857600080fd5b50610783600480360381019061077e919061393d565b612049565b005b34801561079157600080fd5b5061079a6121ca565b005b3480156107a857600080fd5b506107c360048036038101906107be91906138c2565b612317565b005b3480156107d157600080fd5b506107ec60048036038101906107e79190613a71565b612379565b6040516107f991906140ff565b60405180910390f35b34801561080e57600080fd5b50610829600480360381019061082491906139b5565b612420565b60405161083691906140c9565b60405180910390f35b34801561084b57600080fd5b5061086660048036038101906108619190613837565b612516565b60405161087391906140c9565b60405180910390f35b34801561088857600080fd5b506108916125aa565b60405161089e919061447c565b60405180910390f35b3480156108b357600080fd5b506108ce60048036038101906108c991906137e5565b6125c0565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109ab57506109aa826126b8565b5b9050919050565b6060600080546109c190614892565b80601f01602080910402602001604051908101604052809291908181526020018280546109ed90614892565b8015610a3a5780601f10610a0f57610100808354040283529160200191610a3a565b820191906000526020600020905b815481529060010190602001808311610a1d57829003601f168201915b5050505050905090565b6000610a4f82612722565b610a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a85906142c1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ad482611578565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3c90614381565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b6461278e565b73ffffffffffffffffffffffffffffffffffffffff161480610b935750610b9281610b8d61278e565b612516565b5b610bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc990614241565b60405180910390fd5b610bdc8383612796565b505050565b6000610bf28263ffffffff16612722565b9050919050565b610c0161278e565b73ffffffffffffffffffffffffffffffffffffffff16610c1f611c67565b73ffffffffffffffffffffffffffffffffffffffff1614610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c906142e1565b60405180910390fd5b8060098190555050565b610c90610c8a61278e565b8261284f565b610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc690614401565b60405180910390fd5b610cda83838361292d565b505050565b6000610ce961278e565b73ffffffffffffffffffffffffffffffffffffffff16610d07611c67565b73ffffffffffffffffffffffffffffffffffffffff1614610d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d54906142e1565b60405180910390fd5b60005b8251811015610dcf57610db2838281518110610da5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610dd5565b15610dbc57600191505b8080610dc7906148f5565b915050610d60565b50919050565b6000610ddf61278e565b73ffffffffffffffffffffffffffffffffffffffff16610dfd611c67565b73ffffffffffffffffffffffffffffffffffffffff1614610e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4a906142e1565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f7a576000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008600081819054906101000a900463ffffffff1680929190610f1f90614868565b91906101000a81548163ffffffff021916908363ffffffff160217905550507ff1abf01a1043b7c244d128e8595cf0c1d10743b022b03a02dffd8ca3bf729f5a82604051610f6d9190613ff5565b60405180910390a1600190505b919050565b610f8761278e565b73ffffffffffffffffffffffffffffffffffffffff16610fa5611c67565b73ffffffffffffffffffffffffffffffffffffffff1614610ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff2906142e1565b60405180910390fd5b80600a60006101000a81548160ff02191690836002811115611046577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b021790555050565b600061105861278e565b73ffffffffffffffffffffffffffffffffffffffff16611076611c67565b73ffffffffffffffffffffffffffffffffffffffff16146110cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c3906142e1565b60405180910390fd5b6008600c9054906101000a900463ffffffff1663ffffffff168263ffffffff161061112c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112390614181565b60405180910390fd5b61113c338363ffffffff16612b89565b7f91f9f8eee707de5d1301c45b783fb95d1e7fd7535bf3f7dda2f950a9b488ccb2338360405161116d9291906140a0565b60405180910390a1819050919050565b6000600a60009054906101000a900460ff16905090565b600060028111156111ce577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600a60009054906101000a900460ff166002811115611216577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d90614221565b60405180910390fd5b60095434101561129b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611292906143c1565b60405180910390fd5b6112a3612ba7565b565b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6112e683838360405180602001604052806000815250612317565b505050565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e906141a1565b60405180910390fd5b6009543410156113bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b3906143c1565b60405180910390fd5b6113c4612ba7565b565b60006002811115611400577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600a60009054906101000a900460ff166002811115611448577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14611488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147f90614221565b60405180910390fd5b600a8163ffffffff1611156114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c990614361565b60405180910390fd5b8063ffffffff166009546114e69190614659565b341015611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f906143c1565b60405180910390fd5b60005b8163ffffffff168163ffffffff16101561155a57611547612ba7565b80806115529061493e565b91505061152b565b5050565b6000600860049054906101000a900463ffffffff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890614281565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290614261565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116ea61278e565b73ffffffffffffffffffffffffffffffffffffffff16611708611c67565b73ffffffffffffffffffffffffffffffffffffffff161461175e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611755906142e1565b60405180910390fd5b6117686000612e4a565b565b600061177461278e565b73ffffffffffffffffffffffffffffffffffffffff16611792611c67565b73ffffffffffffffffffffffffffffffffffffffff16146117e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117df906142e1565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661190e576001600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008600081819054906101000a900463ffffffff16809291906118b39061493e565b91906101000a81548163ffffffff021916908363ffffffff160217905550507fd1bba68c128cc3f427e5831b3c6f99f480b6efa6b9e80c757768f6124158cc3f826040516119019190613ff5565b60405180910390a1600190505b919050565b60003373ffffffffffffffffffffffffffffffffffffffff1661193b8463ffffffff16611578565b73ffffffffffffffffffffffffffffffffffffffff1614611991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198890614441565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166119b78363ffffffff16611578565b73ffffffffffffffffffffffffffffffffffffffff1614611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0490614441565b60405180910390fd5b600182611a1a9190614725565b63ffffffff168363ffffffff1614611a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5e906143a1565b60405180910390fd5b611a768363ffffffff16612f10565b611a858263ffffffff16612f10565b60006001600f85611a96919061499c565b63ffffffff161415611ab657600f84611aaf91906145bd565b9050611b42565b6006600f85611ac5919061499c565b63ffffffff161415611ae557600b84611ade91906145bd565b9050611b41565b600a600f85611af4919061499c565b63ffffffff161415611b1457601a84611b0d91906145bd565b9050611b40565b600e600f85611b23919061499c565b63ffffffff161415611b3f57601e84611b3c91906145bd565b90505b5b5b5b611b52338263ffffffff16612b89565b7f91f9f8eee707de5d1301c45b783fb95d1e7fd7535bf3f7dda2f950a9b488ccb23382604051611b839291906140a0565b60405180910390a16008600c9054906101000a900463ffffffff1691505092915050565b611baf61278e565b73ffffffffffffffffffffffffffffffffffffffff16611bcd611c67565b73ffffffffffffffffffffffffffffffffffffffff1614611c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1a906142e1565b60405180910390fd5b80600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d14906141a1565b60405180910390fd5b611d2633611dfb565b611d2f57600080fd5b60016002811115611d69577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600a60009054906101000a900460ff166002811115611db1577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14611df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de890614421565b60405180910390fd5b611df9612ba7565b565b60003373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6290614341565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f92576000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008600081819054906101000a900463ffffffff1680929190611f3790614868565b91906101000a81548163ffffffff021916908363ffffffff160217905550507ff1abf01a1043b7c244d128e8595cf0c1d10743b022b03a02dffd8ca3bf729f5a82604051611f859190613ff5565b60405180910390a1600190505b919050565b606060018054611fa690614892565b80601f0160208091040260200160405190810160405280929190818152602001828054611fd290614892565b801561201f5780601f10611ff45761010080835404028352916020019161201f565b820191906000526020600020905b81548152906001019060200180831161200257829003601f168201915b5050505050905090565b60076020528060005260406000206000915054906101000a900460ff1681565b61205161278e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b6906141e1565b60405180910390fd5b80600560006120cc61278e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661217961278e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121be91906140c9565b60405180910390a35050565b6121d261278e565b73ffffffffffffffffffffffffffffffffffffffff166121f0611c67565b73ffffffffffffffffffffffffffffffffffffffff1614612246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223d906142e1565b60405180910390fd5b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161228e90613fe0565b60006040518083038185875af1925050503d80600081146122cb576040519150601f19603f3d011682016040523d82523d6000602084013e6122d0565b606091505b5050905080612314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b906143e1565b60405180910390fd5b50565b61232861232261278e565b8361284f565b612367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235e90614401565b60405180910390fd5b61237384848484613021565b50505050565b606061238482612722565b6123c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ba90614321565b60405180910390fd5b60006123cd61307d565b905060008151116123ed5760405180602001604052806000815250612418565b806123f7846130ba565b604051602001612408929190613fbc565b6040516020818303038152906040525b915050919050565b600061242a61278e565b73ffffffffffffffffffffffffffffffffffffffff16612448611c67565b73ffffffffffffffffffffffffffffffffffffffff161461249e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612495906142e1565b60405180910390fd5b60005b8251811015612510576124f38382815181106124e6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161176a565b156124fd57600191505b8080612508906148f5565b9150506124a1565b50919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860009054906101000a900463ffffffff1681565b6125c861278e565b73ffffffffffffffffffffffffffffffffffffffff166125e6611c67565b73ffffffffffffffffffffffffffffffffffffffff161461263c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612633906142e1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a390614141565b60405180910390fd5b6126b581612e4a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661280983611578565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061285a82612722565b612899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289090614201565b60405180910390fd5b60006128a483611578565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061291357508373ffffffffffffffffffffffffffffffffffffffff166128fb84610a44565b73ffffffffffffffffffffffffffffffffffffffff16145b8061292457506129238185612516565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661294d82611578565b73ffffffffffffffffffffffffffffffffffffffff16146129a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299a90614301565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0a906141c1565b60405180910390fd5b612a1e838383613267565b612a29600082612796565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a7991906146f1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ad09190614567565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612ba382826040518060200160405280600081525061326c565b5050565b600e60e1600860049054906101000a900463ffffffff16612bc8919061499c565b63ffffffff161415612c5f576000603b6103c060e1600860049054906101000a900463ffffffff16612bfa9190614628565b612c0491906146b3565b612c0e91906145bd565b63ffffffff169050612c203382612b89565b7f91f9f8eee707de5d1301c45b783fb95d1e7fd7535bf3f7dda2f950a9b488ccb23382604051612c51929190614077565b60405180910390a150612e07565b612c81336008600c9054906101000a900463ffffffff1663ffffffff16612b89565b7f91f9f8eee707de5d1301c45b783fb95d1e7fd7535bf3f7dda2f950a9b488ccb2336008600c9054906101000a900463ffffffff16604051612cc49291906140a0565b60405180910390a1600b60088054906101000a900463ffffffff1663ffffffff1681548110612d1c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600891828204019190066004029054906101000a900463ffffffff166008600c8282829054906101000a900463ffffffff16612d6291906145bd565b92506101000a81548163ffffffff021916908363ffffffff160217905550600d60088054906101000a900463ffffffff1663ffffffff161415612dc55760006008806101000a81548163ffffffff021916908363ffffffff160217905550612e06565b60088081819054906101000a900463ffffffff1680929190612de69061493e565b91906101000a81548163ffffffff021916908363ffffffff160217905550505b5b6008600481819054906101000a900463ffffffff1680929190612e299061493e565b91906101000a81548163ffffffff021916908363ffffffff16021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612f1b82611578565b9050612f2981600084613267565b612f34600083612796565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f8491906146f1565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b61302c84848461292d565b613038848484846132c7565b613077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306e90614121565b60405180910390fd5b50505050565b60606040518060400160405280602081526020017f68747470733a2f2f7777772e64696d656e73696f6e786e66742e636f6d2f6d2f815250905090565b60606000821415613102576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613262565b600082905060005b6000821461313457808061311d906148f5565b915050600a8261312d91906145f7565b915061310a565b60008167ffffffffffffffff811115613176577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131a85781602001600182028036833780820191505090505b5090505b6000851461325b576001826131c191906146f1565b9150600a856131d0919061496b565b60306131dc9190614567565b60f81b818381518110613218577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561325491906145f7565b94506131ac565b8093505050505b919050565b505050565b613276838361345e565b61328360008484846132c7565b6132c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b990614121565b60405180910390fd5b505050565b60006132e88473ffffffffffffffffffffffffffffffffffffffff1661362c565b15613451578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261331161278e565b8786866040518563ffffffff1660e01b8152600401613333949392919061402b565b602060405180830381600087803b15801561334d57600080fd5b505af192505050801561337e57506040513d601f19601f8201168201806040525081019061337b9190613a1f565b60015b613401573d80600081146133ae576040519150601f19603f3d011682016040523d82523d6000602084013e6133b3565b606091505b506000815114156133f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f090614121565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613456565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134c5906142a1565b60405180910390fd5b6134d781612722565b15613517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161350e90614161565b60405180910390fd5b61352360008383613267565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135739190614567565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b600061365261364d846144bc565b614497565b9050808382526020820190508285602086028201111561367157600080fd5b60005b858110156136a1578161368788826136e9565b845260208401935060208301925050600181019050613674565b5050509392505050565b60006136be6136b9846144e8565b614497565b9050828152602081018484840111156136d657600080fd5b6136e1848285614826565b509392505050565b6000813590506136f88161516a565b92915050565b60008135905061370d81615181565b92915050565b600082601f83011261372457600080fd5b813561373484826020860161363f565b91505092915050565b60008135905061374c81615198565b92915050565b600081359050613761816151af565b92915050565b600081519050613776816151af565b92915050565b600082601f83011261378d57600080fd5b813561379d8482602086016136ab565b91505092915050565b6000813590506137b5816151c6565b92915050565b6000813590506137ca816151d6565b92915050565b6000813590506137df816151ed565b92915050565b6000602082840312156137f757600080fd5b6000613805848285016136e9565b91505092915050565b60006020828403121561382057600080fd5b600061382e848285016136fe565b91505092915050565b6000806040838503121561384a57600080fd5b6000613858858286016136e9565b9250506020613869858286016136e9565b9150509250929050565b60008060006060848603121561388857600080fd5b6000613896868287016136e9565b93505060206138a7868287016136e9565b92505060406138b8868287016137bb565b9150509250925092565b600080600080608085870312156138d857600080fd5b60006138e6878288016136e9565b94505060206138f7878288016136e9565b9350506040613908878288016137bb565b925050606085013567ffffffffffffffff81111561392557600080fd5b6139318782880161377c565b91505092959194509250565b6000806040838503121561395057600080fd5b600061395e858286016136e9565b925050602061396f8582860161373d565b9150509250929050565b6000806040838503121561398c57600080fd5b600061399a858286016136e9565b92505060206139ab858286016137bb565b9150509250929050565b6000602082840312156139c757600080fd5b600082013567ffffffffffffffff8111156139e157600080fd5b6139ed84828501613713565b91505092915050565b600060208284031215613a0857600080fd5b6000613a1684828501613752565b91505092915050565b600060208284031215613a3157600080fd5b6000613a3f84828501613767565b91505092915050565b600060208284031215613a5a57600080fd5b6000613a68848285016137a6565b91505092915050565b600060208284031215613a8357600080fd5b6000613a91848285016137bb565b91505092915050565b600060208284031215613aac57600080fd5b6000613aba848285016137d0565b91505092915050565b60008060408385031215613ad657600080fd5b6000613ae4858286016137d0565b9250506020613af5858286016137d0565b9150509250929050565b613b088161476b565b82525050565b613b1781614759565b82525050565b613b268161477d565b82525050565b6000613b3782614519565b613b41818561452f565b9350613b51818560208601614835565b613b5a81614ab8565b840191505092915050565b613b6e81614802565b82525050565b6000613b7f82614524565b613b89818561454b565b9350613b99818560208601614835565b613ba281614ab8565b840191505092915050565b6000613bb882614524565b613bc2818561455c565b9350613bd2818560208601614835565b80840191505092915050565b6000613beb60328361454b565b9150613bf682614ac9565b604082019050919050565b6000613c0e60268361454b565b9150613c1982614b18565b604082019050919050565b6000613c31601c8361454b565b9150613c3c82614b67565b602082019050919050565b6000613c5460378361454b565b9150613c5f82614b90565b604082019050919050565b6000613c77601a8361454b565b9150613c8282614bdf565b602082019050919050565b6000613c9a60248361454b565b9150613ca582614c08565b604082019050919050565b6000613cbd60198361454b565b9150613cc882614c57565b602082019050919050565b6000613ce0602c8361454b565b9150613ceb82614c80565b604082019050919050565b6000613d03603d8361454b565b9150613d0e82614ccf565b604082019050919050565b6000613d2660388361454b565b9150613d3182614d1e565b604082019050919050565b6000613d49602a8361454b565b9150613d5482614d6d565b604082019050919050565b6000613d6c60298361454b565b9150613d7782614dbc565b604082019050919050565b6000613d8f60208361454b565b9150613d9a82614e0b565b602082019050919050565b6000613db2602c8361454b565b9150613dbd82614e34565b604082019050919050565b6000613dd560208361454b565b9150613de082614e83565b602082019050919050565b6000613df860298361454b565b9150613e0382614eac565b604082019050919050565b6000613e1b602f8361454b565b9150613e2682614efb565b604082019050919050565b6000613e3e601b8361454b565b9150613e4982614f4a565b602082019050919050565b6000613e6160188361454b565b9150613e6c82614f73565b602082019050919050565b6000613e8460218361454b565b9150613e8f82614f9c565b604082019050919050565b6000613ea760188361454b565b9150613eb282614feb565b602082019050919050565b6000613eca600083614540565b9150613ed582615014565b600082019050919050565b6000613eed60128361454b565b9150613ef882615017565b602082019050919050565b6000613f1060108361454b565b9150613f1b82615040565b602082019050919050565b6000613f3360318361454b565b9150613f3e82615069565b604082019050919050565b6000613f5660338361454b565b9150613f61826150b8565b604082019050919050565b6000613f7960248361454b565b9150613f8482615107565b604082019050919050565b613f98816147e8565b82525050565b613fa781614814565b82525050565b613fb6816147f2565b82525050565b6000613fc88285613bad565b9150613fd48284613bad565b91508190509392505050565b6000613feb82613ebd565b9150819050919050565b600060208201905061400a6000830184613b0e565b92915050565b60006020820190506140256000830184613aff565b92915050565b60006080820190506140406000830187613b0e565b61404d6020830186613b0e565b61405a6040830185613f8f565b818103606083015261406c8184613b2c565b905095945050505050565b600060408201905061408c6000830185613b0e565b6140996020830184613f8f565b9392505050565b60006040820190506140b56000830185613b0e565b6140c26020830184613f9e565b9392505050565b60006020820190506140de6000830184613b1d565b92915050565b60006020820190506140f96000830184613b65565b92915050565b600060208201905081810360008301526141198184613b74565b905092915050565b6000602082019050818103600083015261413a81613bde565b9050919050565b6000602082019050818103600083015261415a81613c01565b9050919050565b6000602082019050818103600083015261417a81613c24565b9050919050565b6000602082019050818103600083015261419a81613c47565b9050919050565b600060208201905081810360008301526141ba81613c6a565b9050919050565b600060208201905081810360008301526141da81613c8d565b9050919050565b600060208201905081810360008301526141fa81613cb0565b9050919050565b6000602082019050818103600083015261421a81613cd3565b9050919050565b6000602082019050818103600083015261423a81613cf6565b9050919050565b6000602082019050818103600083015261425a81613d19565b9050919050565b6000602082019050818103600083015261427a81613d3c565b9050919050565b6000602082019050818103600083015261429a81613d5f565b9050919050565b600060208201905081810360008301526142ba81613d82565b9050919050565b600060208201905081810360008301526142da81613da5565b9050919050565b600060208201905081810360008301526142fa81613dc8565b9050919050565b6000602082019050818103600083015261431a81613deb565b9050919050565b6000602082019050818103600083015261433a81613e0e565b9050919050565b6000602082019050818103600083015261435a81613e31565b9050919050565b6000602082019050818103600083015261437a81613e54565b9050919050565b6000602082019050818103600083015261439a81613e77565b9050919050565b600060208201905081810360008301526143ba81613e9a565b9050919050565b600060208201905081810360008301526143da81613ee0565b9050919050565b600060208201905081810360008301526143fa81613f03565b9050919050565b6000602082019050818103600083015261441a81613f26565b9050919050565b6000602082019050818103600083015261443a81613f49565b9050919050565b6000602082019050818103600083015261445a81613f6c565b9050919050565b60006020820190506144766000830184613f8f565b92915050565b60006020820190506144916000830184613fad565b92915050565b60006144a16144b2565b90506144ad82826148c4565b919050565b6000604051905090565b600067ffffffffffffffff8211156144d7576144d6614a89565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561450357614502614a89565b5b61450c82614ab8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614572826147e8565b915061457d836147e8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145b2576145b16149cd565b5b828201905092915050565b60006145c8826147f2565b91506145d3836147f2565b92508263ffffffff038211156145ec576145eb6149cd565b5b828201905092915050565b6000614602826147e8565b915061460d836147e8565b92508261461d5761461c6149fc565b5b828204905092915050565b6000614633826147f2565b915061463e836147f2565b92508261464e5761464d6149fc565b5b828204905092915050565b6000614664826147e8565b915061466f836147e8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146a8576146a76149cd565b5b828202905092915050565b60006146be826147f2565b91506146c9836147f2565b92508163ffffffff04831182151516156146e6576146e56149cd565b5b828202905092915050565b60006146fc826147e8565b9150614707836147e8565b92508282101561471a576147196149cd565b5b828203905092915050565b6000614730826147f2565b915061473b836147f2565b92508282101561474e5761474d6149cd565b5b828203905092915050565b6000614764826147c8565b9050919050565b6000614776826147c8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60008190506147c382615156565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600061480d826147b5565b9050919050565b600061481f826147f2565b9050919050565b82818337600083830152505050565b60005b83811015614853578082015181840152602081019050614838565b83811115614862576000848401525b50505050565b6000614873826147f2565b91506000821415614887576148866149cd565b5b600182039050919050565b600060028204905060018216806148aa57607f821691505b602082108114156148be576148bd614a5a565b5b50919050565b6148cd82614ab8565b810181811067ffffffffffffffff821117156148ec576148eb614a89565b5b80604052505050565b6000614900826147e8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614933576149326149cd565b5b600182019050919050565b6000614949826147f2565b915063ffffffff8214156149605761495f6149cd565b5b600182019050919050565b6000614976826147e8565b9150614981836147e8565b925082614991576149906149fc565b5b828206905092915050565b60006149a7826147f2565b91506149b2836147f2565b9250826149c2576149c16149fc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f43616e206f6e6c792063616c6c207468697320746f206d696e7420612063617260008201527f6420736b69707065642062792044696d656e73696f6e58000000000000000000602082015250565b7f6163636f756e74206973206e6f742077686974656c6973746564000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f77686974656c697374696e67206973206f6e2c20706c656173652063616c6c2060008201527f6d696e744361726446726f6d57686974656c69737420696e7374656164000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f63616e206f6e6c792072656d6f7665206f776e20616464726573730000000000600082015250565b7f3130206361726473206d6178206f6e6c7920706c656173650000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f6d7573742062652061646a6163656e7420636172646964730000000000000000600082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f667265652063617264206d6f64652064697361626c65642c206e6f206672656560008201527f20636172647320617420746869732074696d6500000000000000000000000000602082015250565b7f626f7468206361726473206d757374206265206f776e656420627920636f6d6260008201527f696e657200000000000000000000000000000000000000000000000000000000602082015250565b6003811061516757615166614a2b565b5b50565b61517381614759565b811461517e57600080fd5b50565b61518a8161476b565b811461519557600080fd5b50565b6151a18161477d565b81146151ac57600080fd5b50565b6151b881614789565b81146151c357600080fd5b50565b600381106151d357600080fd5b50565b6151df816147e8565b81146151ea57600080fd5b50565b6151f6816147f2565b811461520157600080fd5b5056fea26469706673582212203b9d323000572b8190f49cf767b1cd9fcd3ceed8f90387cb9a3d8e96e6c970fc64736f6c63430008040033

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.