ETH Price: $3,457.80 (+6.49%)
Gas: 8 Gwei

Token

LODB Angels Collection (LODBA)
 

Overview

Max Total Supply

1,438 LODBA

Holders

518

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 LODBA
0xb7e5e7b005c1ecdc67f1e51a5f4a217cda17af93
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:
LeagueOfDivineBeingsAngels

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

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

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



// ERC-721
string constant TOKEN_NAME = "LODB Angels Collection";
string constant TOKEN_SYMBOL = "LODBA";

// Token Metadata
string constant BASE_URI = "ipfs://QmUV8D1YUV6sEk6gGi8gso3dEDevWsJidsK5Ubz1P87k8q/";

// Minting Payment
uint constant SALE_PRICE = 0.0333 ether;

// Token Supply
uint constant MAX_SUPPLY = 10000;
uint constant RESERVED_SUPPLY = 100;
uint constant FOR_SALE_SUPPLY = MAX_SUPPLY - RESERVED_SUPPLY;

// Presale
address constant DEVILS_CONTRACT_ADDRESS = 0xF642D8A98845a25844D3911Fa1da1D70587c0Acc;

// Sale Price
uint constant PUBLIC_SALE_PRICE = 0.0333 ether;

// Sale Schedule
uint constant PUBLIC_SALE_OPEN_TIME = 1636171260; // Saturday November 06, 2021 00:01:00 (am) in time zone America/New York (EDT)
                                      
// OpenSea
address constant OPENSEA_PROXY_REGISTRY_ADDRESS = 0xa5409ec958C83C3f309868babACA7c86DCB077c1; 

struct LeagueOfDivineBeingsAngelsParams {
  address owner;
  address payable treasury;
}

contract LeagueOfDivineBeingsAngels is
  Ownable,
  ERC721Enumerable
{
  // # Token Supply
  uint private _totalMintedCount = 0;
  uint private _reservedMintedCount = 0;
  uint private _saleMintedCount = 0;

  // # Minting Payment
  address payable private _treasury;
  event SetTreasury(address prevTreasury, address newTreasury);

  // # Sale Schedule
  event SalePaused();
  event SaleUnpaused();

  // # Sale Pausable
  bool private _salePaused = false;

  // # Presale
  mapping(uint => bool) public claimedDevils;



  constructor(LeagueOfDivineBeingsAngelsParams memory p)
    ERC721(TOKEN_NAME, TOKEN_SYMBOL)
  {
    setTreasury(p.treasury);
    transferOwnership(p.owner);
  }



  // # Token Metadata

  function _baseURI() override internal pure returns (string memory) {
    return BASE_URI;
  }



  // # Minting Supply

  function _requireNotSoldOut() private view {
    require(
      _saleMintedCount <= FOR_SALE_SUPPLY,
      "SOLD OUT"
    );
  }

  function _requireValidQuantity(uint quantity) private pure {
    require(
      quantity > 0,
      "quantity must be greater than 0"
    );
    require(
      quantity <= FOR_SALE_SUPPLY,
      "quantity must be less than FOR_SALE_SUPPLY"
    );
  }

  function _requireEnoughSupplyRemaining(uint mintQuantity) private view {
    require(
      _saleMintedCount + mintQuantity <= FOR_SALE_SUPPLY,
      string(abi.encode("Not enough supply remaining to mint quantity of ", mintQuantity))
    );
  }



  // # Sale Pausable

  function salePaused() external view returns (bool) {
    return _salePaused;
  }

  function _requireSaleNotPaused() private view {
    require(!_salePaused, "Sale is paused");
  }

  function _requireSalePaused() private view {
    require(_salePaused, "Sale not paused");
  }

  function pauseSale() public onlyOwner {
    _requireSaleNotPaused();
    _salePaused = true;
    emit SalePaused();
  }

  function unpauseSale() public onlyOwner {
    _requireSalePaused();
    _salePaused = false;
    emit SaleUnpaused();
  }



  // # Minting Helpers

  function _safeMintQuantity(address to, uint quantity) private {
    uint fromTokenId = _totalMintedCount + 1;
    uint toTokenId = _totalMintedCount + quantity + 1;
    _totalMintedCount += quantity;
    for (uint i = fromTokenId; i < toTokenId; i++) {
      _safeMint(to, i);
    }
  }



  // # Sale Mint

  function presaleMint(uint[] calldata sacredDevilTokenIds, address to) external
  {
    uint quantity = sacredDevilTokenIds.length;
    _requireNotSoldOut();
    require( 
      // solhint-disable-next-line not-rely-on-time
      block.timestamp < PUBLIC_SALE_OPEN_TIME,
      "Presale has ended"
    );
    _requireSaleNotPaused();
    _requireValidQuantity(quantity);
    _requireEnoughSupplyRemaining(quantity);
    // Check the caller passed Sacred Devil token IDs that
    // - Caller owns the corresponding Sacred Devil tokens
    // - The Sacred Devil token ID has not been used before
    for (uint i = 0; i < quantity; i++) {
      uint256 sdTokenId = sacredDevilTokenIds[i];
      address ownerOfSDToken = IERC721(DEVILS_CONTRACT_ADDRESS).ownerOf(sdTokenId);
      require(
        ownerOfSDToken == msg.sender,
        string(abi.encodePacked("You do not own LOSD#", Strings.toString(sdTokenId)))
      );
      require(
        claimedDevils[sdTokenId] == false,
        string(abi.encodePacked("Already minted with LOSD#", Strings.toString(sdTokenId)))
      );
      claimedDevils[sdTokenId] = true;
    }
    _saleMintedCount += quantity;
    _safeMintQuantity(to, quantity);
  }

  function publicSaleMint(address to, uint quantity) external payable
  {
    _requireNotSoldOut();
    require(
      // solhint-disable-next-line not-rely-on-time
      block.timestamp >= PUBLIC_SALE_OPEN_TIME,
      "Public sale not open"
    );
    _requireSaleNotPaused();
    _requireValidQuantity(quantity);
    _requireEnoughSupplyRemaining(quantity);

    _saleMintedCount += quantity;
    _payForMintQuantity(quantity);
    _safeMintQuantity(to, quantity);
  }



  // # Reserved Tokens Minting

  function giftAllRemainingReservedTokensToTreasury() external onlyOwner {
    gift(treasury(), RESERVED_SUPPLY - _reservedMintedCount);
  }

  function gift(address to, uint quantity) public onlyOwner {
    require(
      _reservedMintedCount < RESERVED_SUPPLY,
      "Already gifted all reserved tokens"
    );
    require(
      _reservedMintedCount + quantity <= RESERVED_SUPPLY,
      "Not enough reserved supply to gift"
    );
    _reservedMintedCount += quantity;
    _safeMintQuantity(to, quantity);
  }



  // # For receiving payments

  function setTreasury(address payable newTreasury) public onlyOwner {
    require(
      newTreasury != address(0),
      "Setting treasury to 0 address"
    );
    _treasury = newTreasury;
    emit SetTreasury(_treasury, newTreasury);
  }

  function treasury() public view returns (address) {
    return _treasury;
  }

  function _payForMintQuantity(uint quantity) private {
    require(
      _treasury != address(0),
      "Sending payment to treasury with 0 address"
    );
    uint totalPrice = quantity * SALE_PRICE;
    require(
      totalPrice == msg.value,
      "Incorrect amount of ethers"
    );
    // solhint-disable-next-line avoid-low-level-calls
    (bool sendValueSuccess, ) = _treasury.call{value: totalPrice}("");
    require(
      sendValueSuccess,
      "Failed to send ethers to treasury"
    );
  }



  // # OpenSea approval

  function isApprovedForAll(address owner, address operator)
      override virtual
      public view
      returns (bool)
  {
      ProxyRegistry proxyRegistry = ProxyRegistry(OPENSEA_PROXY_REGISTRY_ADDRESS);
      if (address(proxyRegistry.proxies(owner)) == operator) {
          return true;
      }

      return super.isApprovedForAll(owner, operator);
  }
}

// solhint-disable no-empty-blocks
abstract contract OwnableDelegateProxy {}

abstract contract ProxyRegistry {
  mapping(address => OwnableDelegateProxy) public proxies;
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 5 of 15 : ERC721Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "../../../security/Pausable.sol";

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 15 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 8 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 10 of 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 11 of 15 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

File 14 of 15 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"components":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address payable","name":"treasury","type":"address"}],"internalType":"struct LeagueOfDivineBeingsAngelsParams","name":"p","type":"tuple"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[],"name":"SalePaused","type":"event"},{"anonymous":false,"inputs":[],"name":"SaleUnpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"prevTreasury","type":"address"},{"indexed":false,"internalType":"address","name":"newTreasury","type":"address"}],"name":"SetTreasury","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimedDevils","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"giftAllRemainingReservedTokensToTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"sacredDevilTokenIds","type":"uint256[]"},{"internalType":"address","name":"to","type":"address"}],"name":"presaleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newTreasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600b556000600c556000600d556000600e60146101000a81548160ff0219169083151502179055503480156200003b57600080fd5b506040516200588e3803806200588e833981810160405281019062000061919062000631565b6040518060400160405280601681526020017f4c4f444220416e67656c7320436f6c6c656374696f6e000000000000000000008152506040518060400160405280600581526020017f4c4f444241000000000000000000000000000000000000000000000000000000815250620000ed620000e16200015260201b60201c565b6200015a60201b60201c565b81600190805190602001906200010592919062000500565b5080600290805190602001906200011e92919062000500565b5050506200013681602001516200021e60201b60201c565b6200014b8160000151620003c160201b60201c565b50620009e4565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200022e6200015260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000254620004d760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a49062000754565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000320576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003179062000710565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f190c262dc6f09322c68a13bf67c9659e58367755ba6190fa7ce5ca8aa45a877d600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682604051620003b6929190620006e3565b60405180910390a150565b620003d16200015260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003f7620004d760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000450576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004479062000754565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620004c3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ba9062000732565b60405180910390fd5b620004d4816200015a60201b60201c565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200050e9062000834565b90600052602060002090601f0160209004810192826200053257600085556200057e565b82601f106200054d57805160ff19168380011785556200057e565b828001600101855582156200057e579182015b828111156200057d57825182559160200191906001019062000560565b5b5090506200058d919062000591565b5090565b5b80821115620005ac57600081600090555060010162000592565b5090565b600081519050620005c181620009b0565b92915050565b600081519050620005d881620009ca565b92915050565b600060408284031215620005f157600080fd5b620005fd604062000776565b905060006200060f84828501620005b0565b60008301525060206200062584828501620005c7565b60208301525092915050565b6000604082840312156200064457600080fd5b60006200065484828501620005de565b91505092915050565b6200066881620007f8565b82525050565b60006200067d601d836200079f565b91506200068a826200090f565b602082019050919050565b6000620006a46026836200079f565b9150620006b18262000938565b604082019050919050565b6000620006cb6020836200079f565b9150620006d88262000987565b602082019050919050565b6000604082019050620006fa60008301856200065d565b6200070960208301846200065d565b9392505050565b600060208201905081810360008301526200072b816200066e565b9050919050565b600060208201905081810360008301526200074d8162000695565b9050919050565b600060208201905081810360008301526200076f81620006bc565b9050919050565b60006200078262000795565b90506200079082826200086a565b919050565b6000604051905090565b600082825260208201905092915050565b6000620007bd82620007d8565b9050919050565b6000620007d182620007d8565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000805826200080c565b9050919050565b6000620008198262000820565b9050919050565b60006200082d82620007d8565b9050919050565b600060028204905060018216806200084d57607f821691505b60208210811415620008645762000863620008a0565b5b50919050565b6200087582620008fe565b810181811067ffffffffffffffff82111715620008975762000896620008cf565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f53657474696e6720747265617375727920746f20302061646472657373000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620009bb81620007b0565b8114620009c757600080fd5b50565b620009d581620007c4565b8114620009e157600080fd5b50565b614e9a80620009f46000396000f3fe6080604052600436106101c25760003560e01c80636352211e116100f7578063b8255b4f11610095578063cbce4c9711610064578063cbce4c971461061f578063e985e9c514610648578063f0f4426014610685578063f2fde38b146106ae576101c2565b8063b8255b4f14610565578063b88d4fde146105a2578063bb33d729146105cb578063c87b56dd146105e2576101c2565b80638da5cb5b116100d15780638da5cb5b146104ca57806395d89b41146104f5578063a22cb46514610520578063ac5ae11b14610549576101c2565b80636352211e1461043957806370a0823114610476578063715018a6146104b3576101c2565b8063300aa3301161016457806355367ba91161013e57806355367ba9146103a357806356c43224146103ba5780635d08c1ae146103e357806361d027b31461040e576101c2565b8063300aa3301461032657806342842e0e1461033d5780634f6ccce714610366576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780632f745c59146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190613505565b6106d7565b6040516101fb9190613c5e565b60405180910390f35b34801561021057600080fd5b50610219610751565b6040516102269190613c79565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190613580565b6107e3565b6040516102639190613bce565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190613471565b610868565b005b3480156102a157600080fd5b506102aa610980565b6040516102b791906140a9565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e2919061336b565b61098d565b005b3480156102f557600080fd5b50610310600480360381019061030b9190613471565b6109ed565b60405161031d91906140a9565b60405180910390f35b34801561033257600080fd5b5061033b610a92565b005b34801561034957600080fd5b50610364600480360381019061035f919061336b565b610b2f565b005b34801561037257600080fd5b5061038d60048036038101906103889190613580565b610b4f565b60405161039a91906140a9565b60405180910390f35b3480156103af57600080fd5b506103b8610be6565b005b3480156103c657600080fd5b506103e160048036038101906103dc91906134ad565b610cb3565b005b3480156103ef57600080fd5b506103f8610fa9565b6040516104059190613c5e565b60405180910390f35b34801561041a57600080fd5b50610423610fc0565b6040516104309190613bce565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b9190613580565b610fea565b60405161046d9190613bce565b60405180910390f35b34801561048257600080fd5b5061049d600480360381019061049891906132b4565b61109c565b6040516104aa91906140a9565b60405180910390f35b3480156104bf57600080fd5b506104c8611154565b005b3480156104d657600080fd5b506104df6111dc565b6040516104ec9190613bce565b60405180910390f35b34801561050157600080fd5b5061050a611205565b6040516105179190613c79565b60405180910390f35b34801561052c57600080fd5b5061054760048036038101906105429190613435565b611297565b005b610563600480360381019061055e9190613471565b611418565b005b34801561057157600080fd5b5061058c60048036038101906105879190613580565b6114b1565b6040516105999190613c5e565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c491906133ba565b6114d1565b005b3480156105d757600080fd5b506105e0611533565b005b3480156105ee57600080fd5b5061060960048036038101906106049190613580565b611600565b6040516106169190613c79565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190613471565b6116a7565b005b34801561065457600080fd5b5061066f600480360381019061066a919061332f565b6117e0565b60405161067c9190613c5e565b60405180910390f35b34801561069157600080fd5b506106ac60048036038101906106a79190613306565b6118d4565b005b3480156106ba57600080fd5b506106d560048036038101906106d091906132b4565b611a5f565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074a575061074982611b57565b5b9050919050565b6060600180546107609061438d565b80601f016020809104026020016040519081016040528092919081815260200182805461078c9061438d565b80156107d95780601f106107ae576101008083540402835291602001916107d9565b820191906000526020600020905b8154815290600101906020018083116107bc57829003601f168201915b5050505050905090565b60006107ee82611c39565b61082d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082490613f69565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087382610fea565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108db90614009565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610903611ca5565b73ffffffffffffffffffffffffffffffffffffffff16148061093257506109318161092c611ca5565b6117e0565b5b610971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096890613ec9565b60405180910390fd5b61097b8383611cad565b505050565b6000600980549050905090565b61099e610998611ca5565b82611d66565b6109dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d490614029565b60405180910390fd5b6109e8838383611e44565b505050565b60006109f88361109c565b8210610a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3090613d1b565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a9a611ca5565b73ffffffffffffffffffffffffffffffffffffffff16610ab86111dc565b73ffffffffffffffffffffffffffffffffffffffff1614610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0590613f89565b60405180910390fd5b610b2d610b19610fc0565b600c546064610b289190614249565b6116a7565b565b610b4a838383604051806020016040528060008152506114d1565b505050565b6000610b59610980565b8210610b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9190614049565b60405180910390fd5b60098281548110610bd4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610bee611ca5565b73ffffffffffffffffffffffffffffffffffffffff16610c0c6111dc565b73ffffffffffffffffffffffffffffffffffffffff1614610c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5990613f89565b60405180910390fd5b610c6a6120a0565b6001600e60146101000a81548160ff0219169083151502179055507f8a98cbd0cab14e33b8a5e5710b9b59bceec8af9a5b4b3bb32fb275cf04ea048d60405160405180910390a1565b6000838390509050610cc36120f2565b636185fdfc4210610d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0090613c9b565b60405180910390fd5b610d116120a0565b610d1a81612147565b610d23816121de565b60005b81811015610f7f576000858583818110610d69577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201359050600073f642d8a98845a25844d3911fa1da1d70587c0acc73ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401610dc191906140a9565b60206040518083038186803b158015610dd957600080fd5b505afa158015610ded573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e1191906132dd565b90503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e4b83612262565b604051602001610e5b9190613b75565b60405160208183030381529060405290610eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea29190613c79565b60405180910390fd5b5060001515600f600084815260200190815260200160002060009054906101000a900460ff16151514610edd83612262565b604051602001610eed9190613bac565b60405160208183030381529060405290610f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f349190613c79565b60405180910390fd5b506001600f600084815260200190815260200160002060006101000a81548160ff02191690831515021790555050508080610f77906143f0565b915050610d26565b5080600d6000828254610f929190614168565b92505081905550610fa3828261240f565b50505050565b6000600e60149054906101000a900460ff16905090565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108a90613f29565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561110d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110490613f09565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61115c611ca5565b73ffffffffffffffffffffffffffffffffffffffff1661117a6111dc565b73ffffffffffffffffffffffffffffffffffffffff16146111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c790613f89565b60405180910390fd5b6111da600061248b565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546112149061438d565b80601f01602080910402602001604051908101604052809291908181526020018280546112409061438d565b801561128d5780601f106112625761010080835404028352916020019161128d565b820191906000526020600020905b81548152906001019060200180831161127057829003601f168201915b5050505050905090565b61129f611ca5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561130d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130490613e69565b60405180910390fd5b806006600061131a611ca5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113c7611ca5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161140c9190613c5e565b60405180910390a35050565b6114206120f2565b636185fdfc421015611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e90614069565b60405180910390fd5b61146f6120a0565b61147881612147565b611481816121de565b80600d60008282546114939190614168565b925050819055506114a38161254f565b6114ad828261240f565b5050565b600f6020528060005260406000206000915054906101000a900460ff1681565b6114e26114dc611ca5565b83611d66565b611521576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151890614029565b60405180910390fd5b61152d8484848461270d565b50505050565b61153b611ca5565b73ffffffffffffffffffffffffffffffffffffffff166115596111dc565b73ffffffffffffffffffffffffffffffffffffffff16146115af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a690613f89565b60405180910390fd5b6115b7612769565b6000600e60146101000a81548160ff0219169083151502179055507ffc5afa2a710e95f2fb260ade6fe6305d7ae901d23c06de6eb054d03c092a3bcd60405160405180910390a1565b606061160b82611c39565b61164a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164190613fe9565b60405180910390fd5b60006116546127ba565b90506000815111611674576040518060200160405280600081525061169f565b8061167e84612262565b60405160200161168f929190613b51565b6040516020818303038152906040525b915050919050565b6116af611ca5565b73ffffffffffffffffffffffffffffffffffffffff166116cd6111dc565b73ffffffffffffffffffffffffffffffffffffffff1614611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a90613f89565b60405180910390fd5b6064600c5410611768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175f90613cdb565b60405180910390fd5b606481600c546117789190614168565b11156117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090613ee9565b60405180910390fd5b80600c60008282546117cb9190614168565b925050819055506117dc828261240f565b5050565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161184a9190613bce565b60206040518083038186803b15801561186257600080fd5b505afa158015611876573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061189a9190613557565b73ffffffffffffffffffffffffffffffffffffffff1614156118c05760019150506118ce565b6118ca84846127da565b9150505b92915050565b6118dc611ca5565b73ffffffffffffffffffffffffffffffffffffffff166118fa6111dc565b73ffffffffffffffffffffffffffffffffffffffff1614611950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194790613f89565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b790613d7b565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f190c262dc6f09322c68a13bf67c9659e58367755ba6190fa7ce5ca8aa45a877d600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682604051611a54929190613be9565b60405180910390a150565b611a67611ca5565b73ffffffffffffffffffffffffffffffffffffffff16611a856111dc565b73ffffffffffffffffffffffffffffffffffffffff1614611adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad290613f89565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4290613d9b565b60405180910390fd5b611b548161248b565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c2257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c325750611c318261286e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d2083610fea565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d7182611c39565b611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da790613e89565b60405180910390fd5b6000611dbb83610fea565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e2a57508373ffffffffffffffffffffffffffffffffffffffff16611e12846107e3565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e3b5750611e3a81856117e0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e6482610fea565b73ffffffffffffffffffffffffffffffffffffffff1614611eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb190613fa9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2190613e49565b60405180910390fd5b611f358383836128d8565b611f40600082611cad565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f909190614249565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fe79190614168565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600e60149054906101000a900460ff16156120f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e790614089565b60405180910390fd5b565b60646127106121019190614249565b600d541115612145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213c90613cbb565b60405180910390fd5b565b6000811161218a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218190613e29565b60405180910390fd5b60646127106121999190614249565b8111156121db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d290613e09565b60405180910390fd5b50565b60646127106121ed9190614249565b81600d546121fb9190614168565b11158160405160200161220e9190613ddb565b6040516020818303038152906040529061225e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122559190613c79565b60405180910390fd5b5050565b606060008214156122aa576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061240a565b600082905060005b600082146122dc5780806122c5906143f0565b915050600a826122d591906141be565b91506122b2565b60008167ffffffffffffffff81111561231e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123505781602001600182028036833780820191505090505b5090505b60008514612403576001826123699190614249565b9150600a856123789190614439565b60306123849190614168565b60f81b8183815181106123c0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123fc91906141be565b9450612354565b8093505050505b919050565b60006001600b546124209190614168565b90506000600183600b546124349190614168565b61243e9190614168565b905082600b60008282546124529190614168565b9250508190555060008290505b818110156124845761247185826129ec565b808061247c906143f0565b91505061245f565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d890613fc9565b60405180910390fd5b600066764e2c6f054000826125f691906141ef565b905034811461263a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263190613ea9565b60405180910390fd5b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161268290613b97565b60006040518083038185875af1925050503d80600081146126bf576040519150601f19603f3d011682016040523d82523d6000602084013e6126c4565b606091505b5050905080612708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ff90613d5b565b60405180910390fd5b505050565b612718848484611e44565b61272484848484612a0a565b612763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275a90613d3b565b60405180910390fd5b50505050565b600e60149054906101000a900460ff166127b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127af90613cfb565b60405180910390fd5b565b6060604051806060016040528060368152602001614e2f60369139905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6128e3838383612ba1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129265761292181612ba6565b612965565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612964576129638382612bef565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129a8576129a381612d5c565b6129e7565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146129e6576129e58282612e9f565b5b5b505050565b612a06828260405180602001604052806000815250612f1e565b5050565b6000612a2b8473ffffffffffffffffffffffffffffffffffffffff16612f79565b15612b94578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a54611ca5565b8786866040518563ffffffff1660e01b8152600401612a769493929190613c12565b602060405180830381600087803b158015612a9057600080fd5b505af1925050508015612ac157506040513d601f19601f82011682018060405250810190612abe919061352e565b60015b612b44573d8060008114612af1576040519150601f19603f3d011682016040523d82523d6000602084013e612af6565b606091505b50600081511415612b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3390613d3b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b99565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612bfc8461109c565b612c069190614249565b9050600060086000848152602001908152602001600020549050818114612ceb576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050612d709190614249565b90506000600a6000848152602001908152602001600020549050600060098381548110612dc6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110612e0e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612e83577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612eaa8361109c565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b612f288383612f8c565b612f356000848484612a0a565b612f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6b90613d3b565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff390613f49565b60405180910390fd5b61300581611c39565b15613045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303c90613dbb565b60405180910390fd5b613051600083836128d8565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130a19190614168565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061316d613168846140e9565b6140c4565b90508281526020810184848401111561318557600080fd5b61319084828561434b565b509392505050565b6000813590506131a781614da4565b92915050565b6000815190506131bc81614da4565b92915050565b6000813590506131d181614dbb565b92915050565b60008083601f8401126131e957600080fd5b8235905067ffffffffffffffff81111561320257600080fd5b60208301915083602082028301111561321a57600080fd5b9250929050565b60008135905061323081614dd2565b92915050565b60008135905061324581614de9565b92915050565b60008151905061325a81614de9565b92915050565b600082601f83011261327157600080fd5b813561328184826020860161315a565b91505092915050565b60008151905061329981614e00565b92915050565b6000813590506132ae81614e17565b92915050565b6000602082840312156132c657600080fd5b60006132d484828501613198565b91505092915050565b6000602082840312156132ef57600080fd5b60006132fd848285016131ad565b91505092915050565b60006020828403121561331857600080fd5b6000613326848285016131c2565b91505092915050565b6000806040838503121561334257600080fd5b600061335085828601613198565b925050602061336185828601613198565b9150509250929050565b60008060006060848603121561338057600080fd5b600061338e86828701613198565b935050602061339f86828701613198565b92505060406133b08682870161329f565b9150509250925092565b600080600080608085870312156133d057600080fd5b60006133de87828801613198565b94505060206133ef87828801613198565b93505060406134008782880161329f565b925050606085013567ffffffffffffffff81111561341d57600080fd5b61342987828801613260565b91505092959194509250565b6000806040838503121561344857600080fd5b600061345685828601613198565b925050602061346785828601613221565b9150509250929050565b6000806040838503121561348457600080fd5b600061349285828601613198565b92505060206134a38582860161329f565b9150509250929050565b6000806000604084860312156134c257600080fd5b600084013567ffffffffffffffff8111156134dc57600080fd5b6134e8868287016131d7565b935093505060206134fb86828701613198565b9150509250925092565b60006020828403121561351757600080fd5b600061352584828501613236565b91505092915050565b60006020828403121561354057600080fd5b600061354e8482850161324b565b91505092915050565b60006020828403121561356957600080fd5b60006135778482850161328a565b91505092915050565b60006020828403121561359257600080fd5b60006135a08482850161329f565b91505092915050565b6135b281614315565b82525050565b6135c18161427d565b82525050565b6135d0816142a1565b82525050565b60006135e18261411a565b6135eb8185614130565b93506135fb81856020860161435a565b61360481614526565b840191505092915050565b600061361a82614125565b613624818561414c565b935061363481856020860161435a565b61363d81614526565b840191505092915050565b600061365382614125565b61365d818561415d565b935061366d81856020860161435a565b80840191505092915050565b600061368660118361414c565b915061369182614537565b602082019050919050565b60006136a960088361414c565b91506136b482614560565b602082019050919050565b60006136cc60228361414c565b91506136d782614589565b604082019050919050565b60006136ef600f8361414c565b91506136fa826145d8565b602082019050919050565b6000613712602b8361414c565b915061371d82614601565b604082019050919050565b600061373560328361414c565b915061374082614650565b604082019050919050565b600061375860218361414c565b91506137638261469f565b604082019050919050565b600061377b601d8361414c565b9150613786826146ee565b602082019050919050565b600061379e60268361414c565b91506137a982614717565b604082019050919050565b60006137c1601c8361414c565b91506137cc82614766565b602082019050919050565b60006137e460308361414c565b91506137ef8261478f565b604082019050919050565b6000613807602a8361414c565b9150613812826147de565b604082019050919050565b600061382a601f8361414c565b91506138358261482d565b602082019050919050565b600061384d60248361414c565b915061385882614856565b604082019050919050565b600061387060198361414c565b915061387b826148a5565b602082019050919050565b6000613893602c8361414c565b915061389e826148ce565b604082019050919050565b60006138b6601a8361414c565b91506138c18261491d565b602082019050919050565b60006138d960388361414c565b91506138e482614946565b604082019050919050565b60006138fc60228361414c565b915061390782614995565b604082019050919050565b600061391f602a8361414c565b915061392a826149e4565b604082019050919050565b600061394260298361414c565b915061394d82614a33565b604082019050919050565b600061396560208361414c565b915061397082614a82565b602082019050919050565b6000613988602c8361414c565b915061399382614aab565b604082019050919050565b60006139ab60208361414c565b91506139b682614afa565b602082019050919050565b60006139ce60298361414c565b91506139d982614b23565b604082019050919050565b60006139f1602a8361414c565b91506139fc82614b72565b604082019050919050565b6000613a14602f8361414c565b9150613a1f82614bc1565b604082019050919050565b6000613a3760148361415d565b9150613a4282614c10565b601482019050919050565b6000613a5a60218361414c565b9150613a6582614c39565b604082019050919050565b6000613a7d600083614141565b9150613a8882614c88565b600082019050919050565b6000613aa060318361414c565b9150613aab82614c8b565b604082019050919050565b6000613ac3602c8361414c565b9150613ace82614cda565b604082019050919050565b6000613ae660148361414c565b9150613af182614d29565b602082019050919050565b6000613b0960198361415d565b9150613b1482614d52565b601982019050919050565b6000613b2c600e8361414c565b9150613b3782614d7b565b602082019050919050565b613b4b8161430b565b82525050565b6000613b5d8285613648565b9150613b698284613648565b91508190509392505050565b6000613b8082613a2a565b9150613b8c8284613648565b915081905092915050565b6000613ba282613a70565b9150819050919050565b6000613bb782613afc565b9150613bc38284613648565b915081905092915050565b6000602082019050613be360008301846135b8565b92915050565b6000604082019050613bfe60008301856135a9565b613c0b60208301846135a9565b9392505050565b6000608082019050613c2760008301876135b8565b613c3460208301866135b8565b613c416040830185613b42565b8181036060830152613c5381846135d6565b905095945050505050565b6000602082019050613c7360008301846135c7565b92915050565b60006020820190508181036000830152613c93818461360f565b905092915050565b60006020820190508181036000830152613cb481613679565b9050919050565b60006020820190508181036000830152613cd48161369c565b9050919050565b60006020820190508181036000830152613cf4816136bf565b9050919050565b60006020820190508181036000830152613d14816136e2565b9050919050565b60006020820190508181036000830152613d3481613705565b9050919050565b60006020820190508181036000830152613d5481613728565b9050919050565b60006020820190508181036000830152613d748161374b565b9050919050565b60006020820190508181036000830152613d948161376e565b9050919050565b60006020820190508181036000830152613db481613791565b9050919050565b60006020820190508181036000830152613dd4816137b4565b9050919050565b60006040820190508181036000830152613df4816137d7565b9050613e036020830184613b42565b92915050565b60006020820190508181036000830152613e22816137fa565b9050919050565b60006020820190508181036000830152613e428161381d565b9050919050565b60006020820190508181036000830152613e6281613840565b9050919050565b60006020820190508181036000830152613e8281613863565b9050919050565b60006020820190508181036000830152613ea281613886565b9050919050565b60006020820190508181036000830152613ec2816138a9565b9050919050565b60006020820190508181036000830152613ee2816138cc565b9050919050565b60006020820190508181036000830152613f02816138ef565b9050919050565b60006020820190508181036000830152613f2281613912565b9050919050565b60006020820190508181036000830152613f4281613935565b9050919050565b60006020820190508181036000830152613f6281613958565b9050919050565b60006020820190508181036000830152613f828161397b565b9050919050565b60006020820190508181036000830152613fa28161399e565b9050919050565b60006020820190508181036000830152613fc2816139c1565b9050919050565b60006020820190508181036000830152613fe2816139e4565b9050919050565b6000602082019050818103600083015261400281613a07565b9050919050565b6000602082019050818103600083015261402281613a4d565b9050919050565b6000602082019050818103600083015261404281613a93565b9050919050565b6000602082019050818103600083015261406281613ab6565b9050919050565b6000602082019050818103600083015261408281613ad9565b9050919050565b600060208201905081810360008301526140a281613b1f565b9050919050565b60006020820190506140be6000830184613b42565b92915050565b60006140ce6140df565b90506140da82826143bf565b919050565b6000604051905090565b600067ffffffffffffffff821115614104576141036144f7565b5b61410d82614526565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006141738261430b565b915061417e8361430b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141b3576141b261446a565b5b828201905092915050565b60006141c98261430b565b91506141d48361430b565b9250826141e4576141e3614499565b5b828204905092915050565b60006141fa8261430b565b91506142058361430b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561423e5761423d61446a565b5b828202905092915050565b60006142548261430b565b915061425f8361430b565b9250828210156142725761427161446a565b5b828203905092915050565b6000614288826142eb565b9050919050565b600061429a826142eb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006142e48261427d565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061432082614327565b9050919050565b600061433282614339565b9050919050565b6000614344826142eb565b9050919050565b82818337600083830152505050565b60005b8381101561437857808201518184015260208101905061435d565b83811115614387576000848401525b50505050565b600060028204905060018216806143a557607f821691505b602082108114156143b9576143b86144c8565b5b50919050565b6143c882614526565b810181811067ffffffffffffffff821117156143e7576143e66144f7565b5b80604052505050565b60006143fb8261430b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561442e5761442d61446a565b5b600182019050919050565b60006144448261430b565b915061444f8361430b565b92508261445f5761445e614499565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f50726573616c652068617320656e646564000000000000000000000000000000600082015250565b7f534f4c44204f5554000000000000000000000000000000000000000000000000600082015250565b7f416c72656164792067696674656420616c6c20726573657276656420746f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206e6f74207061757365640000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4661696c656420746f2073656e642065746865727320746f207472656173757260008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f53657474696e6720747265617375727920746f20302061646472657373000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420656e6f75676820737570706c792072656d61696e696e6720746f206d60008201527f696e74207175616e74697479206f662000000000000000000000000000000000602082015250565b7f7175616e74697479206d757374206265206c657373207468616e20464f525f5360008201527f414c455f535550504c5900000000000000000000000000000000000000000000602082015250565b7f7175616e74697479206d7573742062652067726561746572207468616e203000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e636f727265637420616d6f756e74206f6620657468657273000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4e6f7420656e6f75676820726573657276656420737570706c7920746f20676960008201527f6674000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f53656e64696e67207061796d656e7420746f207472656173757279207769746860008201527f2030206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f596f7520646f206e6f74206f776e204c4f534423000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206e6f74206f70656e000000000000000000000000600082015250565b7f416c7265616479206d696e7465642077697468204c4f53442300000000000000600082015250565b7f53616c6520697320706175736564000000000000000000000000000000000000600082015250565b614dad8161427d565b8114614db857600080fd5b50565b614dc48161428f565b8114614dcf57600080fd5b50565b614ddb816142a1565b8114614de657600080fd5b50565b614df2816142ad565b8114614dfd57600080fd5b50565b614e09816142d9565b8114614e1457600080fd5b50565b614e208161430b565b8114614e2b57600080fd5b5056fe697066733a2f2f516d55563844315955563673456b366747693867736f33644544657657734a6964734b3555627a315038376b38712fa26469706673582212203ae51609eec2e5ee6ca29094e4d071ddec0edb8e76cd14af4b72e3ad1519629864736f6c634300080400330000000000000000000000002716dd6c1dfe9237a238d7939585168b81d39b140000000000000000000000002716dd6c1dfe9237a238d7939585168b81d39b14

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80636352211e116100f7578063b8255b4f11610095578063cbce4c9711610064578063cbce4c971461061f578063e985e9c514610648578063f0f4426014610685578063f2fde38b146106ae576101c2565b8063b8255b4f14610565578063b88d4fde146105a2578063bb33d729146105cb578063c87b56dd146105e2576101c2565b80638da5cb5b116100d15780638da5cb5b146104ca57806395d89b41146104f5578063a22cb46514610520578063ac5ae11b14610549576101c2565b80636352211e1461043957806370a0823114610476578063715018a6146104b3576101c2565b8063300aa3301161016457806355367ba91161013e57806355367ba9146103a357806356c43224146103ba5780635d08c1ae146103e357806361d027b31461040e576101c2565b8063300aa3301461032657806342842e0e1461033d5780634f6ccce714610366576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780632f745c59146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190613505565b6106d7565b6040516101fb9190613c5e565b60405180910390f35b34801561021057600080fd5b50610219610751565b6040516102269190613c79565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190613580565b6107e3565b6040516102639190613bce565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190613471565b610868565b005b3480156102a157600080fd5b506102aa610980565b6040516102b791906140a9565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e2919061336b565b61098d565b005b3480156102f557600080fd5b50610310600480360381019061030b9190613471565b6109ed565b60405161031d91906140a9565b60405180910390f35b34801561033257600080fd5b5061033b610a92565b005b34801561034957600080fd5b50610364600480360381019061035f919061336b565b610b2f565b005b34801561037257600080fd5b5061038d60048036038101906103889190613580565b610b4f565b60405161039a91906140a9565b60405180910390f35b3480156103af57600080fd5b506103b8610be6565b005b3480156103c657600080fd5b506103e160048036038101906103dc91906134ad565b610cb3565b005b3480156103ef57600080fd5b506103f8610fa9565b6040516104059190613c5e565b60405180910390f35b34801561041a57600080fd5b50610423610fc0565b6040516104309190613bce565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b9190613580565b610fea565b60405161046d9190613bce565b60405180910390f35b34801561048257600080fd5b5061049d600480360381019061049891906132b4565b61109c565b6040516104aa91906140a9565b60405180910390f35b3480156104bf57600080fd5b506104c8611154565b005b3480156104d657600080fd5b506104df6111dc565b6040516104ec9190613bce565b60405180910390f35b34801561050157600080fd5b5061050a611205565b6040516105179190613c79565b60405180910390f35b34801561052c57600080fd5b5061054760048036038101906105429190613435565b611297565b005b610563600480360381019061055e9190613471565b611418565b005b34801561057157600080fd5b5061058c60048036038101906105879190613580565b6114b1565b6040516105999190613c5e565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c491906133ba565b6114d1565b005b3480156105d757600080fd5b506105e0611533565b005b3480156105ee57600080fd5b5061060960048036038101906106049190613580565b611600565b6040516106169190613c79565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190613471565b6116a7565b005b34801561065457600080fd5b5061066f600480360381019061066a919061332f565b6117e0565b60405161067c9190613c5e565b60405180910390f35b34801561069157600080fd5b506106ac60048036038101906106a79190613306565b6118d4565b005b3480156106ba57600080fd5b506106d560048036038101906106d091906132b4565b611a5f565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074a575061074982611b57565b5b9050919050565b6060600180546107609061438d565b80601f016020809104026020016040519081016040528092919081815260200182805461078c9061438d565b80156107d95780601f106107ae576101008083540402835291602001916107d9565b820191906000526020600020905b8154815290600101906020018083116107bc57829003601f168201915b5050505050905090565b60006107ee82611c39565b61082d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082490613f69565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087382610fea565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108db90614009565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610903611ca5565b73ffffffffffffffffffffffffffffffffffffffff16148061093257506109318161092c611ca5565b6117e0565b5b610971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096890613ec9565b60405180910390fd5b61097b8383611cad565b505050565b6000600980549050905090565b61099e610998611ca5565b82611d66565b6109dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d490614029565b60405180910390fd5b6109e8838383611e44565b505050565b60006109f88361109c565b8210610a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3090613d1b565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a9a611ca5565b73ffffffffffffffffffffffffffffffffffffffff16610ab86111dc565b73ffffffffffffffffffffffffffffffffffffffff1614610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0590613f89565b60405180910390fd5b610b2d610b19610fc0565b600c546064610b289190614249565b6116a7565b565b610b4a838383604051806020016040528060008152506114d1565b505050565b6000610b59610980565b8210610b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9190614049565b60405180910390fd5b60098281548110610bd4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610bee611ca5565b73ffffffffffffffffffffffffffffffffffffffff16610c0c6111dc565b73ffffffffffffffffffffffffffffffffffffffff1614610c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5990613f89565b60405180910390fd5b610c6a6120a0565b6001600e60146101000a81548160ff0219169083151502179055507f8a98cbd0cab14e33b8a5e5710b9b59bceec8af9a5b4b3bb32fb275cf04ea048d60405160405180910390a1565b6000838390509050610cc36120f2565b636185fdfc4210610d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0090613c9b565b60405180910390fd5b610d116120a0565b610d1a81612147565b610d23816121de565b60005b81811015610f7f576000858583818110610d69577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201359050600073f642d8a98845a25844d3911fa1da1d70587c0acc73ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401610dc191906140a9565b60206040518083038186803b158015610dd957600080fd5b505afa158015610ded573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e1191906132dd565b90503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e4b83612262565b604051602001610e5b9190613b75565b60405160208183030381529060405290610eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea29190613c79565b60405180910390fd5b5060001515600f600084815260200190815260200160002060009054906101000a900460ff16151514610edd83612262565b604051602001610eed9190613bac565b60405160208183030381529060405290610f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f349190613c79565b60405180910390fd5b506001600f600084815260200190815260200160002060006101000a81548160ff02191690831515021790555050508080610f77906143f0565b915050610d26565b5080600d6000828254610f929190614168565b92505081905550610fa3828261240f565b50505050565b6000600e60149054906101000a900460ff16905090565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108a90613f29565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561110d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110490613f09565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61115c611ca5565b73ffffffffffffffffffffffffffffffffffffffff1661117a6111dc565b73ffffffffffffffffffffffffffffffffffffffff16146111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c790613f89565b60405180910390fd5b6111da600061248b565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546112149061438d565b80601f01602080910402602001604051908101604052809291908181526020018280546112409061438d565b801561128d5780601f106112625761010080835404028352916020019161128d565b820191906000526020600020905b81548152906001019060200180831161127057829003601f168201915b5050505050905090565b61129f611ca5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561130d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130490613e69565b60405180910390fd5b806006600061131a611ca5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113c7611ca5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161140c9190613c5e565b60405180910390a35050565b6114206120f2565b636185fdfc421015611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e90614069565b60405180910390fd5b61146f6120a0565b61147881612147565b611481816121de565b80600d60008282546114939190614168565b925050819055506114a38161254f565b6114ad828261240f565b5050565b600f6020528060005260406000206000915054906101000a900460ff1681565b6114e26114dc611ca5565b83611d66565b611521576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151890614029565b60405180910390fd5b61152d8484848461270d565b50505050565b61153b611ca5565b73ffffffffffffffffffffffffffffffffffffffff166115596111dc565b73ffffffffffffffffffffffffffffffffffffffff16146115af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a690613f89565b60405180910390fd5b6115b7612769565b6000600e60146101000a81548160ff0219169083151502179055507ffc5afa2a710e95f2fb260ade6fe6305d7ae901d23c06de6eb054d03c092a3bcd60405160405180910390a1565b606061160b82611c39565b61164a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164190613fe9565b60405180910390fd5b60006116546127ba565b90506000815111611674576040518060200160405280600081525061169f565b8061167e84612262565b60405160200161168f929190613b51565b6040516020818303038152906040525b915050919050565b6116af611ca5565b73ffffffffffffffffffffffffffffffffffffffff166116cd6111dc565b73ffffffffffffffffffffffffffffffffffffffff1614611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a90613f89565b60405180910390fd5b6064600c5410611768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175f90613cdb565b60405180910390fd5b606481600c546117789190614168565b11156117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090613ee9565b60405180910390fd5b80600c60008282546117cb9190614168565b925050819055506117dc828261240f565b5050565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161184a9190613bce565b60206040518083038186803b15801561186257600080fd5b505afa158015611876573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061189a9190613557565b73ffffffffffffffffffffffffffffffffffffffff1614156118c05760019150506118ce565b6118ca84846127da565b9150505b92915050565b6118dc611ca5565b73ffffffffffffffffffffffffffffffffffffffff166118fa6111dc565b73ffffffffffffffffffffffffffffffffffffffff1614611950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194790613f89565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b790613d7b565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f190c262dc6f09322c68a13bf67c9659e58367755ba6190fa7ce5ca8aa45a877d600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682604051611a54929190613be9565b60405180910390a150565b611a67611ca5565b73ffffffffffffffffffffffffffffffffffffffff16611a856111dc565b73ffffffffffffffffffffffffffffffffffffffff1614611adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad290613f89565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4290613d9b565b60405180910390fd5b611b548161248b565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c2257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c325750611c318261286e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d2083610fea565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d7182611c39565b611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da790613e89565b60405180910390fd5b6000611dbb83610fea565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e2a57508373ffffffffffffffffffffffffffffffffffffffff16611e12846107e3565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e3b5750611e3a81856117e0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e6482610fea565b73ffffffffffffffffffffffffffffffffffffffff1614611eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb190613fa9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2190613e49565b60405180910390fd5b611f358383836128d8565b611f40600082611cad565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f909190614249565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fe79190614168565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600e60149054906101000a900460ff16156120f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e790614089565b60405180910390fd5b565b60646127106121019190614249565b600d541115612145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213c90613cbb565b60405180910390fd5b565b6000811161218a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218190613e29565b60405180910390fd5b60646127106121999190614249565b8111156121db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d290613e09565b60405180910390fd5b50565b60646127106121ed9190614249565b81600d546121fb9190614168565b11158160405160200161220e9190613ddb565b6040516020818303038152906040529061225e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122559190613c79565b60405180910390fd5b5050565b606060008214156122aa576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061240a565b600082905060005b600082146122dc5780806122c5906143f0565b915050600a826122d591906141be565b91506122b2565b60008167ffffffffffffffff81111561231e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123505781602001600182028036833780820191505090505b5090505b60008514612403576001826123699190614249565b9150600a856123789190614439565b60306123849190614168565b60f81b8183815181106123c0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123fc91906141be565b9450612354565b8093505050505b919050565b60006001600b546124209190614168565b90506000600183600b546124349190614168565b61243e9190614168565b905082600b60008282546124529190614168565b9250508190555060008290505b818110156124845761247185826129ec565b808061247c906143f0565b91505061245f565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d890613fc9565b60405180910390fd5b600066764e2c6f054000826125f691906141ef565b905034811461263a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263190613ea9565b60405180910390fd5b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161268290613b97565b60006040518083038185875af1925050503d80600081146126bf576040519150601f19603f3d011682016040523d82523d6000602084013e6126c4565b606091505b5050905080612708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ff90613d5b565b60405180910390fd5b505050565b612718848484611e44565b61272484848484612a0a565b612763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275a90613d3b565b60405180910390fd5b50505050565b600e60149054906101000a900460ff166127b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127af90613cfb565b60405180910390fd5b565b6060604051806060016040528060368152602001614e2f60369139905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6128e3838383612ba1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129265761292181612ba6565b612965565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612964576129638382612bef565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129a8576129a381612d5c565b6129e7565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146129e6576129e58282612e9f565b5b5b505050565b612a06828260405180602001604052806000815250612f1e565b5050565b6000612a2b8473ffffffffffffffffffffffffffffffffffffffff16612f79565b15612b94578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a54611ca5565b8786866040518563ffffffff1660e01b8152600401612a769493929190613c12565b602060405180830381600087803b158015612a9057600080fd5b505af1925050508015612ac157506040513d601f19601f82011682018060405250810190612abe919061352e565b60015b612b44573d8060008114612af1576040519150601f19603f3d011682016040523d82523d6000602084013e612af6565b606091505b50600081511415612b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3390613d3b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b99565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612bfc8461109c565b612c069190614249565b9050600060086000848152602001908152602001600020549050818114612ceb576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050612d709190614249565b90506000600a6000848152602001908152602001600020549050600060098381548110612dc6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110612e0e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612e83577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612eaa8361109c565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b612f288383612f8c565b612f356000848484612a0a565b612f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6b90613d3b565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff390613f49565b60405180910390fd5b61300581611c39565b15613045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303c90613dbb565b60405180910390fd5b613051600083836128d8565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130a19190614168565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061316d613168846140e9565b6140c4565b90508281526020810184848401111561318557600080fd5b61319084828561434b565b509392505050565b6000813590506131a781614da4565b92915050565b6000815190506131bc81614da4565b92915050565b6000813590506131d181614dbb565b92915050565b60008083601f8401126131e957600080fd5b8235905067ffffffffffffffff81111561320257600080fd5b60208301915083602082028301111561321a57600080fd5b9250929050565b60008135905061323081614dd2565b92915050565b60008135905061324581614de9565b92915050565b60008151905061325a81614de9565b92915050565b600082601f83011261327157600080fd5b813561328184826020860161315a565b91505092915050565b60008151905061329981614e00565b92915050565b6000813590506132ae81614e17565b92915050565b6000602082840312156132c657600080fd5b60006132d484828501613198565b91505092915050565b6000602082840312156132ef57600080fd5b60006132fd848285016131ad565b91505092915050565b60006020828403121561331857600080fd5b6000613326848285016131c2565b91505092915050565b6000806040838503121561334257600080fd5b600061335085828601613198565b925050602061336185828601613198565b9150509250929050565b60008060006060848603121561338057600080fd5b600061338e86828701613198565b935050602061339f86828701613198565b92505060406133b08682870161329f565b9150509250925092565b600080600080608085870312156133d057600080fd5b60006133de87828801613198565b94505060206133ef87828801613198565b93505060406134008782880161329f565b925050606085013567ffffffffffffffff81111561341d57600080fd5b61342987828801613260565b91505092959194509250565b6000806040838503121561344857600080fd5b600061345685828601613198565b925050602061346785828601613221565b9150509250929050565b6000806040838503121561348457600080fd5b600061349285828601613198565b92505060206134a38582860161329f565b9150509250929050565b6000806000604084860312156134c257600080fd5b600084013567ffffffffffffffff8111156134dc57600080fd5b6134e8868287016131d7565b935093505060206134fb86828701613198565b9150509250925092565b60006020828403121561351757600080fd5b600061352584828501613236565b91505092915050565b60006020828403121561354057600080fd5b600061354e8482850161324b565b91505092915050565b60006020828403121561356957600080fd5b60006135778482850161328a565b91505092915050565b60006020828403121561359257600080fd5b60006135a08482850161329f565b91505092915050565b6135b281614315565b82525050565b6135c18161427d565b82525050565b6135d0816142a1565b82525050565b60006135e18261411a565b6135eb8185614130565b93506135fb81856020860161435a565b61360481614526565b840191505092915050565b600061361a82614125565b613624818561414c565b935061363481856020860161435a565b61363d81614526565b840191505092915050565b600061365382614125565b61365d818561415d565b935061366d81856020860161435a565b80840191505092915050565b600061368660118361414c565b915061369182614537565b602082019050919050565b60006136a960088361414c565b91506136b482614560565b602082019050919050565b60006136cc60228361414c565b91506136d782614589565b604082019050919050565b60006136ef600f8361414c565b91506136fa826145d8565b602082019050919050565b6000613712602b8361414c565b915061371d82614601565b604082019050919050565b600061373560328361414c565b915061374082614650565b604082019050919050565b600061375860218361414c565b91506137638261469f565b604082019050919050565b600061377b601d8361414c565b9150613786826146ee565b602082019050919050565b600061379e60268361414c565b91506137a982614717565b604082019050919050565b60006137c1601c8361414c565b91506137cc82614766565b602082019050919050565b60006137e460308361414c565b91506137ef8261478f565b604082019050919050565b6000613807602a8361414c565b9150613812826147de565b604082019050919050565b600061382a601f8361414c565b91506138358261482d565b602082019050919050565b600061384d60248361414c565b915061385882614856565b604082019050919050565b600061387060198361414c565b915061387b826148a5565b602082019050919050565b6000613893602c8361414c565b915061389e826148ce565b604082019050919050565b60006138b6601a8361414c565b91506138c18261491d565b602082019050919050565b60006138d960388361414c565b91506138e482614946565b604082019050919050565b60006138fc60228361414c565b915061390782614995565b604082019050919050565b600061391f602a8361414c565b915061392a826149e4565b604082019050919050565b600061394260298361414c565b915061394d82614a33565b604082019050919050565b600061396560208361414c565b915061397082614a82565b602082019050919050565b6000613988602c8361414c565b915061399382614aab565b604082019050919050565b60006139ab60208361414c565b91506139b682614afa565b602082019050919050565b60006139ce60298361414c565b91506139d982614b23565b604082019050919050565b60006139f1602a8361414c565b91506139fc82614b72565b604082019050919050565b6000613a14602f8361414c565b9150613a1f82614bc1565b604082019050919050565b6000613a3760148361415d565b9150613a4282614c10565b601482019050919050565b6000613a5a60218361414c565b9150613a6582614c39565b604082019050919050565b6000613a7d600083614141565b9150613a8882614c88565b600082019050919050565b6000613aa060318361414c565b9150613aab82614c8b565b604082019050919050565b6000613ac3602c8361414c565b9150613ace82614cda565b604082019050919050565b6000613ae660148361414c565b9150613af182614d29565b602082019050919050565b6000613b0960198361415d565b9150613b1482614d52565b601982019050919050565b6000613b2c600e8361414c565b9150613b3782614d7b565b602082019050919050565b613b4b8161430b565b82525050565b6000613b5d8285613648565b9150613b698284613648565b91508190509392505050565b6000613b8082613a2a565b9150613b8c8284613648565b915081905092915050565b6000613ba282613a70565b9150819050919050565b6000613bb782613afc565b9150613bc38284613648565b915081905092915050565b6000602082019050613be360008301846135b8565b92915050565b6000604082019050613bfe60008301856135a9565b613c0b60208301846135a9565b9392505050565b6000608082019050613c2760008301876135b8565b613c3460208301866135b8565b613c416040830185613b42565b8181036060830152613c5381846135d6565b905095945050505050565b6000602082019050613c7360008301846135c7565b92915050565b60006020820190508181036000830152613c93818461360f565b905092915050565b60006020820190508181036000830152613cb481613679565b9050919050565b60006020820190508181036000830152613cd48161369c565b9050919050565b60006020820190508181036000830152613cf4816136bf565b9050919050565b60006020820190508181036000830152613d14816136e2565b9050919050565b60006020820190508181036000830152613d3481613705565b9050919050565b60006020820190508181036000830152613d5481613728565b9050919050565b60006020820190508181036000830152613d748161374b565b9050919050565b60006020820190508181036000830152613d948161376e565b9050919050565b60006020820190508181036000830152613db481613791565b9050919050565b60006020820190508181036000830152613dd4816137b4565b9050919050565b60006040820190508181036000830152613df4816137d7565b9050613e036020830184613b42565b92915050565b60006020820190508181036000830152613e22816137fa565b9050919050565b60006020820190508181036000830152613e428161381d565b9050919050565b60006020820190508181036000830152613e6281613840565b9050919050565b60006020820190508181036000830152613e8281613863565b9050919050565b60006020820190508181036000830152613ea281613886565b9050919050565b60006020820190508181036000830152613ec2816138a9565b9050919050565b60006020820190508181036000830152613ee2816138cc565b9050919050565b60006020820190508181036000830152613f02816138ef565b9050919050565b60006020820190508181036000830152613f2281613912565b9050919050565b60006020820190508181036000830152613f4281613935565b9050919050565b60006020820190508181036000830152613f6281613958565b9050919050565b60006020820190508181036000830152613f828161397b565b9050919050565b60006020820190508181036000830152613fa28161399e565b9050919050565b60006020820190508181036000830152613fc2816139c1565b9050919050565b60006020820190508181036000830152613fe2816139e4565b9050919050565b6000602082019050818103600083015261400281613a07565b9050919050565b6000602082019050818103600083015261402281613a4d565b9050919050565b6000602082019050818103600083015261404281613a93565b9050919050565b6000602082019050818103600083015261406281613ab6565b9050919050565b6000602082019050818103600083015261408281613ad9565b9050919050565b600060208201905081810360008301526140a281613b1f565b9050919050565b60006020820190506140be6000830184613b42565b92915050565b60006140ce6140df565b90506140da82826143bf565b919050565b6000604051905090565b600067ffffffffffffffff821115614104576141036144f7565b5b61410d82614526565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006141738261430b565b915061417e8361430b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141b3576141b261446a565b5b828201905092915050565b60006141c98261430b565b91506141d48361430b565b9250826141e4576141e3614499565b5b828204905092915050565b60006141fa8261430b565b91506142058361430b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561423e5761423d61446a565b5b828202905092915050565b60006142548261430b565b915061425f8361430b565b9250828210156142725761427161446a565b5b828203905092915050565b6000614288826142eb565b9050919050565b600061429a826142eb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006142e48261427d565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061432082614327565b9050919050565b600061433282614339565b9050919050565b6000614344826142eb565b9050919050565b82818337600083830152505050565b60005b8381101561437857808201518184015260208101905061435d565b83811115614387576000848401525b50505050565b600060028204905060018216806143a557607f821691505b602082108114156143b9576143b86144c8565b5b50919050565b6143c882614526565b810181811067ffffffffffffffff821117156143e7576143e66144f7565b5b80604052505050565b60006143fb8261430b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561442e5761442d61446a565b5b600182019050919050565b60006144448261430b565b915061444f8361430b565b92508261445f5761445e614499565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f50726573616c652068617320656e646564000000000000000000000000000000600082015250565b7f534f4c44204f5554000000000000000000000000000000000000000000000000600082015250565b7f416c72656164792067696674656420616c6c20726573657276656420746f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206e6f74207061757365640000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4661696c656420746f2073656e642065746865727320746f207472656173757260008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f53657474696e6720747265617375727920746f20302061646472657373000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420656e6f75676820737570706c792072656d61696e696e6720746f206d60008201527f696e74207175616e74697479206f662000000000000000000000000000000000602082015250565b7f7175616e74697479206d757374206265206c657373207468616e20464f525f5360008201527f414c455f535550504c5900000000000000000000000000000000000000000000602082015250565b7f7175616e74697479206d7573742062652067726561746572207468616e203000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e636f727265637420616d6f756e74206f6620657468657273000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4e6f7420656e6f75676820726573657276656420737570706c7920746f20676960008201527f6674000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f53656e64696e67207061796d656e7420746f207472656173757279207769746860008201527f2030206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f596f7520646f206e6f74206f776e204c4f534423000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206e6f74206f70656e000000000000000000000000600082015250565b7f416c7265616479206d696e7465642077697468204c4f53442300000000000000600082015250565b7f53616c6520697320706175736564000000000000000000000000000000000000600082015250565b614dad8161427d565b8114614db857600080fd5b50565b614dc48161428f565b8114614dcf57600080fd5b50565b614ddb816142a1565b8114614de657600080fd5b50565b614df2816142ad565b8114614dfd57600080fd5b50565b614e09816142d9565b8114614e1457600080fd5b50565b614e208161430b565b8114614e2b57600080fd5b5056fe697066733a2f2f516d55563844315955563673456b366747693867736f33644544657657734a6964734b3555627a315038376b38712fa26469706673582212203ae51609eec2e5ee6ca29094e4d071ddec0edb8e76cd14af4b72e3ad1519629864736f6c63430008040033

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

0000000000000000000000002716dd6c1dfe9237a238d7939585168b81d39b140000000000000000000000002716dd6c1dfe9237a238d7939585168b81d39b14

-----Decoded View---------------
Arg [0] : p (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000002716dd6c1dfe9237a238d7939585168b81d39b14
Arg [1] : 0000000000000000000000002716dd6c1dfe9237a238d7939585168b81d39b14


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.