ETH Price: $3,355.84 (-2.72%)
Gas: 3 Gwei

Token

Faceless Business Club (FLBC)
 

Overview

Max Total Supply

350 FLBC

Holders

145

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
w1tch.eth
Balance
2 FLBC
0x8D361d3c9FDF8EBA265cE453c959e2328E1915fc
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:
FLBC

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

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

pragma solidity 0.8.4;

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

contract FLBC is ERC721URIStorage, Ownable {

  using Counters for Counters.Counter;
  Counters.Counter private _tokenIds;
  uint256 public constant MAX_NFT_SUPPLY = 10000;
  uint256 public constant NUM_RESERVED = 250;
  uint256 public constant MAX_NUM_MINT = 25;
  uint public MINT_PRICE = 60000000000000000 wei; // 0.06 ETH
  bool public SALE_IS_ACTIVE = false;
  uint public COUNT_RESERVED;
  string public baseUri = "ipfs://QmdPUgps7gRUArw8GVc1Tjk4hpXiTXocKgQuo1NktMYyUi/";
  address public PSA = 0xA90CbD83FFacde7Fe03839371d55b4A4450C1B55;
  
  constructor() ERC721("Faceless Business Club", "FLBC") {
  }
  
  function changePSA(address newPSA) external onlyOwner {
    PSA = newPSA;
  }

  function flipSaleState() external onlyOwner {
    SALE_IS_ACTIVE = !SALE_IS_ACTIVE;
  }

  function mintVariableAmountOfTokens(address to, uint amount) external payable {
    require(SALE_IS_ACTIVE, "Tokensale is not active right now.");
    require(amount <= MAX_NUM_MINT, "Maximum number of mints per function call exceeded.");
    require(msg.value >= MINT_PRICE * amount, "Price was not paid in full.");
    require(_tokenIds.current() + amount <= MAX_NFT_SUPPLY - (NUM_RESERVED - COUNT_RESERVED), "Desired amount of Tokens exceeds the publicly available number of tokens.");
    for(uint i = 0; i < amount; i++){
      uint256 id = _tokenIds.current();
      _tokenIds.increment();
      string memory tokenURIcombined = string(abi.encodePacked(baseUri, UintToString(id),  ".json"));
      _safeMint(to, id);
      _setTokenURI(id, tokenURIcombined);
    }
  }

  function mintReservedByOwner(address to, uint amount) external onlyOwner {
    // mints the limited amount of Reserved Tokens by Team
    require(COUNT_RESERVED + amount <= NUM_RESERVED, "Not enough reserved tokens left for the provided input amount to be minted.");
    require(amount <= MAX_NUM_MINT, "Maximum number of mints per function call exceeded.");
    require(_tokenIds.current() + amount <= MAX_NFT_SUPPLY, "Your desired amount of Tokens exceeds the Maximum token supply.");
    for(uint i = 0; i < amount; i++){
      COUNT_RESERVED = COUNT_RESERVED + 1;
      uint256 id = _tokenIds.current();
      _tokenIds.increment();
      string memory tokenURIcombined = string(abi.encodePacked(baseUri, UintToString(id),  ".json"));
      _safeMint(to, id);
      _setTokenURI(id, tokenURIcombined);
    }
  }

  function setBaseUri(string memory newBaseUri) external onlyOwner {
    baseUri = newBaseUri;
  }

  function setTokenURI(uint256 tokenId, string memory _tokenURI) external onlyOwner {
    _setTokenURI(tokenId, _tokenURI);
  }

  function tokenURI(uint256 tokenId) public view override returns (string memory) {
    return super.tokenURI(tokenId);
  }

  function tokensIndicesOfOwner(address _owner) external view returns(uint256[] memory) {
    uint256 tokenCount = balanceOf(_owner);
    if (tokenCount == 0) {
      return new uint256[](0);
    } 
    else {
      uint256[] memory result = new uint256[](tokenCount);
      uint256 indexCounter = 0;
      for (uint256 i = 0; i <= totalSupply() - 1; i++) {
        if (ownerOf(i) == _owner){
          result[indexCounter] = i;
          indexCounter += 1;
        }
      }
      return result;
    }
  }
  
  function totalSupply() public view returns(uint){
    return _tokenIds.current();
  }

  function UintToString(uint256 value) internal pure returns (string memory) {
    // utility function for the right tokenURI generation
    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);
  }

  function withdrawFunds() public {
    payable(PSA).transfer(address(this).balance);
  }

}

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

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).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 6 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COUNT_RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NUM_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PSA","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_IS_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newPSA","type":"address"}],"name":"changePSA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintReservedByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintVariableAmountOfTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensIndicesOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266d529ae9e8600006009556000600a60006101000a81548160ff0219169083151502179055506040518060600160405280603681526020016200489260369139600c90805190602001906200005b92919062000253565b5073a90cbd83ffacde7fe03839371d55b4a4450c1b55600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000be57600080fd5b506040518060400160405280601681526020017f466163656c65737320427573696e65737320436c7562000000000000000000008152506040518060400160405280600481526020017f464c42430000000000000000000000000000000000000000000000000000000081525081600090805190602001906200014392919062000253565b5080600190805190602001906200015c92919062000253565b5050506200017f620001736200018560201b60201c565b6200018d60201b60201c565b62000368565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002619062000303565b90600052602060002090601f016020900481019282620002855760008555620002d1565b82601f10620002a057805160ff1916838001178555620002d1565b82800160010185558215620002d1579182015b82811115620002d0578251825591602001919060010190620002b3565b5b509050620002e09190620002e4565b5090565b5b80821115620002ff576000816000905550600101620002e5565b5090565b600060028204905060018216806200031c57607f821691505b6020821081141562000333576200033262000339565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61451a80620003786000396000f3fe6080604052600436106101ee5760003560e01c806370a082311161010d578063b5077f44116100a0578063c87b56dd1161006f578063c87b56dd146106a6578063de15af71146106e3578063e985e9c51461070e578063f2fde38b1461074b578063f7100de614610774576101ee565b8063b5077f44146105fc578063b6f5beed14610627578063b88d4fde14610652578063c002d23d1461067b576101ee565b80639abc8320116100dc5780639abc832014610554578063a0bcfc7f1461057f578063a22cb465146105a8578063a84867fa146105d1576101ee565b806370a08231146104aa578063715018a6146104e75780638da5cb5b146104fe57806395d89b4114610529576101ee565b806323b872dd1161018557806342842e0e1161015457806342842e0e146103f057806344abaddd146104195780634f381353146104425780636352211e1461046d576101ee565b806323b872dd1461037d57806324600fc3146103a65780632d76c880146103bd57806334918dfd146103d9576101ee565b8063081812fc116101c1578063081812fc146102c3578063095ea7b314610300578063162094c41461032957806318160ddd14610352576101ee565b806301ffc9a7146101f357806303818ca51461023057806306eda1b51461026d57806306fdde0314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612e59565b61079d565b6040516102279190613584565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190612cb2565b61087f565b6040516102649190613562565b60405180910390f35b34801561027957600080fd5b50610282610a52565b60405161028f9190613584565b60405180910390f35b3480156102a457600080fd5b506102ad610a65565b6040516102ba919061359f565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e59190612eec565b610af7565b6040516102f791906134fb565b60405180910390f35b34801561030c57600080fd5b5061032760048036038101906103229190612e1d565b610b7c565b005b34801561033557600080fd5b50610350600480360381019061034b9190612f15565b610c94565b005b34801561035e57600080fd5b50610367610d1e565b60405161037491906138c1565b60405180910390f35b34801561038957600080fd5b506103a4600480360381019061039f9190612d17565b610d2f565b005b3480156103b257600080fd5b506103bb610d8f565b005b6103d760048036038101906103d29190612e1d565b610dfa565b005b3480156103e557600080fd5b506103ee610fcf565b005b3480156103fc57600080fd5b5061041760048036038101906104129190612d17565b611077565b005b34801561042557600080fd5b50610440600480360381019061043b9190612e1d565b611097565b005b34801561044e57600080fd5b50610457611296565b60405161046491906138c1565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f9190612eec565b61129b565b6040516104a191906134fb565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc9190612cb2565b61134d565b6040516104de91906138c1565b60405180910390f35b3480156104f357600080fd5b506104fc611405565b005b34801561050a57600080fd5b5061051361148d565b60405161052091906134fb565b60405180910390f35b34801561053557600080fd5b5061053e6114b7565b60405161054b919061359f565b60405180910390f35b34801561056057600080fd5b50610569611549565b604051610576919061359f565b60405180910390f35b34801561058b57600080fd5b506105a660048036038101906105a19190612eab565b6115d7565b005b3480156105b457600080fd5b506105cf60048036038101906105ca9190612de1565b61166d565b005b3480156105dd57600080fd5b506105e66117ee565b6040516105f391906134fb565b60405180910390f35b34801561060857600080fd5b50610611611814565b60405161061e91906138c1565b60405180910390f35b34801561063357600080fd5b5061063c61181a565b60405161064991906138c1565b60405180910390f35b34801561065e57600080fd5b5061067960048036038101906106749190612d66565b611820565b005b34801561068757600080fd5b50610690611882565b60405161069d91906138c1565b60405180910390f35b3480156106b257600080fd5b506106cd60048036038101906106c89190612eec565b611888565b6040516106da919061359f565b60405180910390f35b3480156106ef57600080fd5b506106f861189a565b60405161070591906138c1565b60405180910390f35b34801561071a57600080fd5b5061073560048036038101906107309190612cdb565b61189f565b6040516107429190613584565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d9190612cb2565b611933565b005b34801561078057600080fd5b5061079b60048036038101906107969190612cb2565b611a2b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610878575061087782611aeb565b5b9050919050565b6060600061088c8361134d565b9050600081141561090f57600067ffffffffffffffff8111156108d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156109065781602001602082028036833780820191505090505b50915050610a4d565b60008167ffffffffffffffff811115610951577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561097f5781602001602082028036833780820191505090505b5090506000805b6001610990610d1e565b61099a9190613ad5565b8111610a45578573ffffffffffffffffffffffffffffffffffffffff166109c08261129b565b73ffffffffffffffffffffffffffffffffffffffff161415610a325780838381518110610a16577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050600182610a2f91906139f4565b91505b8080610a3d90613c22565b915050610986565b508193505050505b919050565b600a60009054906101000a900460ff1681565b606060008054610a7490613bbf565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa090613bbf565b8015610aed5780601f10610ac257610100808354040283529160200191610aed565b820191906000526020600020905b815481529060010190602001808311610ad057829003601f168201915b5050505050905090565b6000610b0282611b55565b610b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b38906137e1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b878261129b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bef90613881565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c17611bc1565b73ffffffffffffffffffffffffffffffffffffffff161480610c465750610c4581610c40611bc1565b61189f565b5b610c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7c90613701565b60405180910390fd5b610c8f8383611bc9565b505050565b610c9c611bc1565b73ffffffffffffffffffffffffffffffffffffffff16610cba61148d565b73ffffffffffffffffffffffffffffffffffffffff1614610d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0790613801565b60405180910390fd5b610d1a8282611c82565b5050565b6000610d2a6008611cf6565b905090565b610d40610d3a611bc1565b82611d04565b610d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d76906138a1565b60405180910390fd5b610d8a838383611de2565b505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610df7573d6000803e3d6000fd5b50565b600a60009054906101000a900460ff16610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4090613781565b60405180910390fd5b6019811115610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8490613861565b60405180910390fd5b80600954610e9b9190613a7b565b341015610edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed4906136a1565b60405180910390fd5b600b5460fa610eec9190613ad5565b612710610ef99190613ad5565b81610f046008611cf6565b610f0e91906139f4565b1115610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f46906135c1565b60405180910390fd5b60005b81811015610fca576000610f666008611cf6565b9050610f72600861203e565b6000600c610f7f83612054565b604051602001610f909291906134cc565b6040516020818303038152906040529050610fab8583612201565b610fb58282611c82565b50508080610fc290613c22565b915050610f52565b505050565b610fd7611bc1565b73ffffffffffffffffffffffffffffffffffffffff16610ff561148d565b73ffffffffffffffffffffffffffffffffffffffff161461104b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104290613801565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b61109283838360405180602001604052806000815250611820565b505050565b61109f611bc1565b73ffffffffffffffffffffffffffffffffffffffff166110bd61148d565b73ffffffffffffffffffffffffffffffffffffffff1614611113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110a90613801565b60405180910390fd5b60fa81600b5461112391906139f4565b1115611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b90613641565b60405180910390fd5b60198111156111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f90613861565b60405180910390fd5b612710816111b66008611cf6565b6111c091906139f4565b1115611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f8906136e1565b60405180910390fd5b60005b81811015611291576001600b5461121b91906139f4565b600b81905550600061122d6008611cf6565b9050611239600861203e565b6000600c61124683612054565b6040516020016112579291906134cc565b60405160208183030381529060405290506112728583612201565b61127c8282611c82565b5050808061128990613c22565b915050611204565b505050565b601981565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133b90613741565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b590613721565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61140d611bc1565b73ffffffffffffffffffffffffffffffffffffffff1661142b61148d565b73ffffffffffffffffffffffffffffffffffffffff1614611481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147890613801565b60405180910390fd5b61148b600061221f565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546114c690613bbf565b80601f01602080910402602001604051908101604052809291908181526020018280546114f290613bbf565b801561153f5780601f106115145761010080835404028352916020019161153f565b820191906000526020600020905b81548152906001019060200180831161152257829003601f168201915b5050505050905090565b600c805461155690613bbf565b80601f016020809104026020016040519081016040528092919081815260200182805461158290613bbf565b80156115cf5780601f106115a4576101008083540402835291602001916115cf565b820191906000526020600020905b8154815290600101906020018083116115b257829003601f168201915b505050505081565b6115df611bc1565b73ffffffffffffffffffffffffffffffffffffffff166115fd61148d565b73ffffffffffffffffffffffffffffffffffffffff1614611653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164a90613801565b60405180910390fd5b80600c9080519060200190611669929190612ad6565b5050565b611675611bc1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da90613681565b60405180910390fd5b80600560006116f0611bc1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661179d611bc1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117e29190613584565b60405180910390a35050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61271081565b600b5481565b61183161182b611bc1565b83611d04565b611870576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611867906138a1565b60405180910390fd5b61187c848484846122e5565b50505050565b60095481565b606061189382612341565b9050919050565b60fa81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61193b611bc1565b73ffffffffffffffffffffffffffffffffffffffff1661195961148d565b73ffffffffffffffffffffffffffffffffffffffff16146119af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a690613801565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1690613601565b60405180910390fd5b611a288161221f565b50565b611a33611bc1565b73ffffffffffffffffffffffffffffffffffffffff16611a5161148d565b73ffffffffffffffffffffffffffffffffffffffff1614611aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9e90613801565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c3c8361129b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611c8b82611b55565b611cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc190613761565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611cf1929190612ad6565b505050565b600081600001549050919050565b6000611d0f82611b55565b611d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d45906136c1565b60405180910390fd5b6000611d598361129b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611dc857508373ffffffffffffffffffffffffffffffffffffffff16611db084610af7565b73ffffffffffffffffffffffffffffffffffffffff16145b80611dd95750611dd8818561189f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e028261129b565b73ffffffffffffffffffffffffffffffffffffffff1614611e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4f90613821565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebf90613661565b60405180910390fd5b611ed3838383612493565b611ede600082611bc9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f2e9190613ad5565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f8591906139f4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6001816000016000828254019250508190555050565b6060600082141561209c576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121fc565b600082905060005b600082146120ce5780806120b790613c22565b915050600a826120c79190613a4a565b91506120a4565b60008167ffffffffffffffff811115612110577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121425781602001600182028036833780820191505090505b5090505b600085146121f55760018261215b9190613ad5565b9150600a8561216a9190613c6b565b603061217691906139f4565b60f81b8183815181106121b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121ee9190613a4a565b9450612146565b8093505050505b919050565b61221b828260405180602001604052806000815250612498565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122f0848484611de2565b6122fc848484846124f3565b61233b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612332906135e1565b60405180910390fd5b50505050565b606061234c82611b55565b61238b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612382906137c1565b60405180910390fd5b60006006600084815260200190815260200160002080546123ab90613bbf565b80601f01602080910402602001604051908101604052809291908181526020018280546123d790613bbf565b80156124245780601f106123f957610100808354040283529160200191612424565b820191906000526020600020905b81548152906001019060200180831161240757829003601f168201915b50505050509050600061243561268a565b905060008151141561244b57819250505061248e565b6000825111156124805780826040516020016124689291906134a8565b6040516020818303038152906040529250505061248e565b612489846126a1565b925050505b919050565b505050565b6124a28383612748565b6124af60008484846124f3565b6124ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e5906135e1565b60405180910390fd5b505050565b60006125148473ffffffffffffffffffffffffffffffffffffffff16612916565b1561267d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261253d611bc1565b8786866040518563ffffffff1660e01b815260040161255f9493929190613516565b602060405180830381600087803b15801561257957600080fd5b505af19250505080156125aa57506040513d601f19601f820116820180604052508101906125a79190612e82565b60015b61262d573d80600081146125da576040519150601f19603f3d011682016040523d82523d6000602084013e6125df565b606091505b50600081511415612625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261c906135e1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612682565b600190505b949350505050565b606060405180602001604052806000815250905090565b60606126ac82611b55565b6126eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e290613841565b60405180910390fd5b60006126f561268a565b905060008151116127155760405180602001604052806000815250612740565b8061271f84612929565b6040516020016127309291906134a8565b6040516020818303038152906040525b915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127af906137a1565b60405180910390fd5b6127c181611b55565b15612801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f890613621565b60405180910390fd5b61280d60008383612493565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461285d91906139f4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606000821415612971576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ad1565b600082905060005b600082146129a357808061298c90613c22565b915050600a8261299c9190613a4a565b9150612979565b60008167ffffffffffffffff8111156129e5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612a175781602001600182028036833780820191505090505b5090505b60008514612aca57600182612a309190613ad5565b9150600a85612a3f9190613c6b565b6030612a4b91906139f4565b60f81b818381518110612a87577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ac39190613a4a565b9450612a1b565b8093505050505b919050565b828054612ae290613bbf565b90600052602060002090601f016020900481019282612b045760008555612b4b565b82601f10612b1d57805160ff1916838001178555612b4b565b82800160010185558215612b4b579182015b82811115612b4a578251825591602001919060010190612b2f565b5b509050612b589190612b5c565b5090565b5b80821115612b75576000816000905550600101612b5d565b5090565b6000612b8c612b8784613901565b6138dc565b905082815260208101848484011115612ba457600080fd5b612baf848285613b7d565b509392505050565b6000612bca612bc584613932565b6138dc565b905082815260208101848484011115612be257600080fd5b612bed848285613b7d565b509392505050565b600081359050612c0481614488565b92915050565b600081359050612c198161449f565b92915050565b600081359050612c2e816144b6565b92915050565b600081519050612c43816144b6565b92915050565b600082601f830112612c5a57600080fd5b8135612c6a848260208601612b79565b91505092915050565b600082601f830112612c8457600080fd5b8135612c94848260208601612bb7565b91505092915050565b600081359050612cac816144cd565b92915050565b600060208284031215612cc457600080fd5b6000612cd284828501612bf5565b91505092915050565b60008060408385031215612cee57600080fd5b6000612cfc85828601612bf5565b9250506020612d0d85828601612bf5565b9150509250929050565b600080600060608486031215612d2c57600080fd5b6000612d3a86828701612bf5565b9350506020612d4b86828701612bf5565b9250506040612d5c86828701612c9d565b9150509250925092565b60008060008060808587031215612d7c57600080fd5b6000612d8a87828801612bf5565b9450506020612d9b87828801612bf5565b9350506040612dac87828801612c9d565b925050606085013567ffffffffffffffff811115612dc957600080fd5b612dd587828801612c49565b91505092959194509250565b60008060408385031215612df457600080fd5b6000612e0285828601612bf5565b9250506020612e1385828601612c0a565b9150509250929050565b60008060408385031215612e3057600080fd5b6000612e3e85828601612bf5565b9250506020612e4f85828601612c9d565b9150509250929050565b600060208284031215612e6b57600080fd5b6000612e7984828501612c1f565b91505092915050565b600060208284031215612e9457600080fd5b6000612ea284828501612c34565b91505092915050565b600060208284031215612ebd57600080fd5b600082013567ffffffffffffffff811115612ed757600080fd5b612ee384828501612c73565b91505092915050565b600060208284031215612efe57600080fd5b6000612f0c84828501612c9d565b91505092915050565b60008060408385031215612f2857600080fd5b6000612f3685828601612c9d565b925050602083013567ffffffffffffffff811115612f5357600080fd5b612f5f85828601612c73565b9150509250929050565b6000612f75838361348a565b60208301905092915050565b612f8a81613b09565b82525050565b6000612f9b82613988565b612fa581856139b6565b9350612fb083613963565b8060005b83811015612fe1578151612fc88882612f69565b9750612fd3836139a9565b925050600181019050612fb4565b5085935050505092915050565b612ff781613b1b565b82525050565b600061300882613993565b61301281856139c7565b9350613022818560208601613b8c565b61302b81613d58565b840191505092915050565b60006130418261399e565b61304b81856139d8565b935061305b818560208601613b8c565b61306481613d58565b840191505092915050565b600061307a8261399e565b61308481856139e9565b9350613094818560208601613b8c565b80840191505092915050565b600081546130ad81613bbf565b6130b781866139e9565b945060018216600081146130d257600181146130e357613116565b60ff19831686528186019350613116565b6130ec85613973565b60005b8381101561310e578154818901526001820191506020810190506130ef565b838801955050505b50505092915050565b600061312c6049836139d8565b915061313782613d69565b606082019050919050565b600061314f6032836139d8565b915061315a82613dde565b604082019050919050565b60006131726026836139d8565b915061317d82613e2d565b604082019050919050565b6000613195601c836139d8565b91506131a082613e7c565b602082019050919050565b60006131b8604b836139d8565b91506131c382613ea5565b606082019050919050565b60006131db6024836139d8565b91506131e682613f1a565b604082019050919050565b60006131fe6019836139d8565b915061320982613f69565b602082019050919050565b6000613221601b836139d8565b915061322c82613f92565b602082019050919050565b6000613244602c836139d8565b915061324f82613fbb565b604082019050919050565b6000613267603f836139d8565b91506132728261400a565b604082019050919050565b600061328a6038836139d8565b915061329582614059565b604082019050919050565b60006132ad602a836139d8565b91506132b8826140a8565b604082019050919050565b60006132d06029836139d8565b91506132db826140f7565b604082019050919050565b60006132f3602e836139d8565b91506132fe82614146565b604082019050919050565b60006133166022836139d8565b915061332182614195565b604082019050919050565b60006133396020836139d8565b9150613344826141e4565b602082019050919050565b600061335c6031836139d8565b91506133678261420d565b604082019050919050565b600061337f602c836139d8565b915061338a8261425c565b604082019050919050565b60006133a26005836139e9565b91506133ad826142ab565b600582019050919050565b60006133c56020836139d8565b91506133d0826142d4565b602082019050919050565b60006133e86029836139d8565b91506133f3826142fd565b604082019050919050565b600061340b602f836139d8565b91506134168261434c565b604082019050919050565b600061342e6033836139d8565b91506134398261439b565b604082019050919050565b60006134516021836139d8565b915061345c826143ea565b604082019050919050565b60006134746031836139d8565b915061347f82614439565b604082019050919050565b61349381613b73565b82525050565b6134a281613b73565b82525050565b60006134b4828561306f565b91506134c0828461306f565b91508190509392505050565b60006134d882856130a0565b91506134e4828461306f565b91506134ef82613395565b91508190509392505050565b60006020820190506135106000830184612f81565b92915050565b600060808201905061352b6000830187612f81565b6135386020830186612f81565b6135456040830185613499565b81810360608301526135578184612ffd565b905095945050505050565b6000602082019050818103600083015261357c8184612f90565b905092915050565b60006020820190506135996000830184612fee565b92915050565b600060208201905081810360008301526135b98184613036565b905092915050565b600060208201905081810360008301526135da8161311f565b9050919050565b600060208201905081810360008301526135fa81613142565b9050919050565b6000602082019050818103600083015261361a81613165565b9050919050565b6000602082019050818103600083015261363a81613188565b9050919050565b6000602082019050818103600083015261365a816131ab565b9050919050565b6000602082019050818103600083015261367a816131ce565b9050919050565b6000602082019050818103600083015261369a816131f1565b9050919050565b600060208201905081810360008301526136ba81613214565b9050919050565b600060208201905081810360008301526136da81613237565b9050919050565b600060208201905081810360008301526136fa8161325a565b9050919050565b6000602082019050818103600083015261371a8161327d565b9050919050565b6000602082019050818103600083015261373a816132a0565b9050919050565b6000602082019050818103600083015261375a816132c3565b9050919050565b6000602082019050818103600083015261377a816132e6565b9050919050565b6000602082019050818103600083015261379a81613309565b9050919050565b600060208201905081810360008301526137ba8161332c565b9050919050565b600060208201905081810360008301526137da8161334f565b9050919050565b600060208201905081810360008301526137fa81613372565b9050919050565b6000602082019050818103600083015261381a816133b8565b9050919050565b6000602082019050818103600083015261383a816133db565b9050919050565b6000602082019050818103600083015261385a816133fe565b9050919050565b6000602082019050818103600083015261387a81613421565b9050919050565b6000602082019050818103600083015261389a81613444565b9050919050565b600060208201905081810360008301526138ba81613467565b9050919050565b60006020820190506138d66000830184613499565b92915050565b60006138e66138f7565b90506138f28282613bf1565b919050565b6000604051905090565b600067ffffffffffffffff82111561391c5761391b613d29565b5b61392582613d58565b9050602081019050919050565b600067ffffffffffffffff82111561394d5761394c613d29565b5b61395682613d58565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006139ff82613b73565b9150613a0a83613b73565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a3f57613a3e613c9c565b5b828201905092915050565b6000613a5582613b73565b9150613a6083613b73565b925082613a7057613a6f613ccb565b5b828204905092915050565b6000613a8682613b73565b9150613a9183613b73565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613aca57613ac9613c9c565b5b828202905092915050565b6000613ae082613b73565b9150613aeb83613b73565b925082821015613afe57613afd613c9c565b5b828203905092915050565b6000613b1482613b53565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613baa578082015181840152602081019050613b8f565b83811115613bb9576000848401525b50505050565b60006002820490506001821680613bd757607f821691505b60208210811415613beb57613bea613cfa565b5b50919050565b613bfa82613d58565b810181811067ffffffffffffffff82111715613c1957613c18613d29565b5b80604052505050565b6000613c2d82613b73565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c6057613c5f613c9c565b5b600182019050919050565b6000613c7682613b73565b9150613c8183613b73565b925082613c9157613c90613ccb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4465736972656420616d6f756e74206f6620546f6b656e73206578636565647360008201527f20746865207075626c69636c7920617661696c61626c65206e756d626572206f60208201527f6620746f6b656e732e0000000000000000000000000000000000000000000000604082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420656e6f75676820726573657276656420746f6b656e73206c6566742060008201527f666f72207468652070726f766964656420696e70757420616d6f756e7420746f60208201527f206265206d696e7465642e000000000000000000000000000000000000000000604082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f507269636520776173206e6f74207061696420696e2066756c6c2e0000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f596f7572206465736972656420616d6f756e74206f6620546f6b656e7320657860008201527f636565647320746865204d6178696d756d20746f6b656e20737570706c792e00602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f546f6b656e73616c65206973206e6f7420616374697665207269676874206e6f60008201527f772e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d6178696d756d206e756d626572206f66206d696e7473207065722066756e6360008201527f74696f6e2063616c6c2065786365656465642e00000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61449181613b09565b811461449c57600080fd5b50565b6144a881613b1b565b81146144b357600080fd5b50565b6144bf81613b27565b81146144ca57600080fd5b50565b6144d681613b73565b81146144e157600080fd5b5056fea2646970667358221220c38bd90750789b4b92fd570477e10293be9c725dfe85bede68592728588e37ad64736f6c63430008040033697066733a2f2f516d645055677073376752554172773847566331546a6b346870586954586f634b6751756f314e6b744d597955692f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806370a082311161010d578063b5077f44116100a0578063c87b56dd1161006f578063c87b56dd146106a6578063de15af71146106e3578063e985e9c51461070e578063f2fde38b1461074b578063f7100de614610774576101ee565b8063b5077f44146105fc578063b6f5beed14610627578063b88d4fde14610652578063c002d23d1461067b576101ee565b80639abc8320116100dc5780639abc832014610554578063a0bcfc7f1461057f578063a22cb465146105a8578063a84867fa146105d1576101ee565b806370a08231146104aa578063715018a6146104e75780638da5cb5b146104fe57806395d89b4114610529576101ee565b806323b872dd1161018557806342842e0e1161015457806342842e0e146103f057806344abaddd146104195780634f381353146104425780636352211e1461046d576101ee565b806323b872dd1461037d57806324600fc3146103a65780632d76c880146103bd57806334918dfd146103d9576101ee565b8063081812fc116101c1578063081812fc146102c3578063095ea7b314610300578063162094c41461032957806318160ddd14610352576101ee565b806301ffc9a7146101f357806303818ca51461023057806306eda1b51461026d57806306fdde0314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612e59565b61079d565b6040516102279190613584565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190612cb2565b61087f565b6040516102649190613562565b60405180910390f35b34801561027957600080fd5b50610282610a52565b60405161028f9190613584565b60405180910390f35b3480156102a457600080fd5b506102ad610a65565b6040516102ba919061359f565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e59190612eec565b610af7565b6040516102f791906134fb565b60405180910390f35b34801561030c57600080fd5b5061032760048036038101906103229190612e1d565b610b7c565b005b34801561033557600080fd5b50610350600480360381019061034b9190612f15565b610c94565b005b34801561035e57600080fd5b50610367610d1e565b60405161037491906138c1565b60405180910390f35b34801561038957600080fd5b506103a4600480360381019061039f9190612d17565b610d2f565b005b3480156103b257600080fd5b506103bb610d8f565b005b6103d760048036038101906103d29190612e1d565b610dfa565b005b3480156103e557600080fd5b506103ee610fcf565b005b3480156103fc57600080fd5b5061041760048036038101906104129190612d17565b611077565b005b34801561042557600080fd5b50610440600480360381019061043b9190612e1d565b611097565b005b34801561044e57600080fd5b50610457611296565b60405161046491906138c1565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f9190612eec565b61129b565b6040516104a191906134fb565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc9190612cb2565b61134d565b6040516104de91906138c1565b60405180910390f35b3480156104f357600080fd5b506104fc611405565b005b34801561050a57600080fd5b5061051361148d565b60405161052091906134fb565b60405180910390f35b34801561053557600080fd5b5061053e6114b7565b60405161054b919061359f565b60405180910390f35b34801561056057600080fd5b50610569611549565b604051610576919061359f565b60405180910390f35b34801561058b57600080fd5b506105a660048036038101906105a19190612eab565b6115d7565b005b3480156105b457600080fd5b506105cf60048036038101906105ca9190612de1565b61166d565b005b3480156105dd57600080fd5b506105e66117ee565b6040516105f391906134fb565b60405180910390f35b34801561060857600080fd5b50610611611814565b60405161061e91906138c1565b60405180910390f35b34801561063357600080fd5b5061063c61181a565b60405161064991906138c1565b60405180910390f35b34801561065e57600080fd5b5061067960048036038101906106749190612d66565b611820565b005b34801561068757600080fd5b50610690611882565b60405161069d91906138c1565b60405180910390f35b3480156106b257600080fd5b506106cd60048036038101906106c89190612eec565b611888565b6040516106da919061359f565b60405180910390f35b3480156106ef57600080fd5b506106f861189a565b60405161070591906138c1565b60405180910390f35b34801561071a57600080fd5b5061073560048036038101906107309190612cdb565b61189f565b6040516107429190613584565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d9190612cb2565b611933565b005b34801561078057600080fd5b5061079b60048036038101906107969190612cb2565b611a2b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610878575061087782611aeb565b5b9050919050565b6060600061088c8361134d565b9050600081141561090f57600067ffffffffffffffff8111156108d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156109065781602001602082028036833780820191505090505b50915050610a4d565b60008167ffffffffffffffff811115610951577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561097f5781602001602082028036833780820191505090505b5090506000805b6001610990610d1e565b61099a9190613ad5565b8111610a45578573ffffffffffffffffffffffffffffffffffffffff166109c08261129b565b73ffffffffffffffffffffffffffffffffffffffff161415610a325780838381518110610a16577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050600182610a2f91906139f4565b91505b8080610a3d90613c22565b915050610986565b508193505050505b919050565b600a60009054906101000a900460ff1681565b606060008054610a7490613bbf565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa090613bbf565b8015610aed5780601f10610ac257610100808354040283529160200191610aed565b820191906000526020600020905b815481529060010190602001808311610ad057829003601f168201915b5050505050905090565b6000610b0282611b55565b610b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b38906137e1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b878261129b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bef90613881565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c17611bc1565b73ffffffffffffffffffffffffffffffffffffffff161480610c465750610c4581610c40611bc1565b61189f565b5b610c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7c90613701565b60405180910390fd5b610c8f8383611bc9565b505050565b610c9c611bc1565b73ffffffffffffffffffffffffffffffffffffffff16610cba61148d565b73ffffffffffffffffffffffffffffffffffffffff1614610d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0790613801565b60405180910390fd5b610d1a8282611c82565b5050565b6000610d2a6008611cf6565b905090565b610d40610d3a611bc1565b82611d04565b610d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d76906138a1565b60405180910390fd5b610d8a838383611de2565b505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610df7573d6000803e3d6000fd5b50565b600a60009054906101000a900460ff16610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4090613781565b60405180910390fd5b6019811115610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8490613861565b60405180910390fd5b80600954610e9b9190613a7b565b341015610edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed4906136a1565b60405180910390fd5b600b5460fa610eec9190613ad5565b612710610ef99190613ad5565b81610f046008611cf6565b610f0e91906139f4565b1115610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f46906135c1565b60405180910390fd5b60005b81811015610fca576000610f666008611cf6565b9050610f72600861203e565b6000600c610f7f83612054565b604051602001610f909291906134cc565b6040516020818303038152906040529050610fab8583612201565b610fb58282611c82565b50508080610fc290613c22565b915050610f52565b505050565b610fd7611bc1565b73ffffffffffffffffffffffffffffffffffffffff16610ff561148d565b73ffffffffffffffffffffffffffffffffffffffff161461104b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104290613801565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b61109283838360405180602001604052806000815250611820565b505050565b61109f611bc1565b73ffffffffffffffffffffffffffffffffffffffff166110bd61148d565b73ffffffffffffffffffffffffffffffffffffffff1614611113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110a90613801565b60405180910390fd5b60fa81600b5461112391906139f4565b1115611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b90613641565b60405180910390fd5b60198111156111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f90613861565b60405180910390fd5b612710816111b66008611cf6565b6111c091906139f4565b1115611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f8906136e1565b60405180910390fd5b60005b81811015611291576001600b5461121b91906139f4565b600b81905550600061122d6008611cf6565b9050611239600861203e565b6000600c61124683612054565b6040516020016112579291906134cc565b60405160208183030381529060405290506112728583612201565b61127c8282611c82565b5050808061128990613c22565b915050611204565b505050565b601981565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133b90613741565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b590613721565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61140d611bc1565b73ffffffffffffffffffffffffffffffffffffffff1661142b61148d565b73ffffffffffffffffffffffffffffffffffffffff1614611481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147890613801565b60405180910390fd5b61148b600061221f565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546114c690613bbf565b80601f01602080910402602001604051908101604052809291908181526020018280546114f290613bbf565b801561153f5780601f106115145761010080835404028352916020019161153f565b820191906000526020600020905b81548152906001019060200180831161152257829003601f168201915b5050505050905090565b600c805461155690613bbf565b80601f016020809104026020016040519081016040528092919081815260200182805461158290613bbf565b80156115cf5780601f106115a4576101008083540402835291602001916115cf565b820191906000526020600020905b8154815290600101906020018083116115b257829003601f168201915b505050505081565b6115df611bc1565b73ffffffffffffffffffffffffffffffffffffffff166115fd61148d565b73ffffffffffffffffffffffffffffffffffffffff1614611653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164a90613801565b60405180910390fd5b80600c9080519060200190611669929190612ad6565b5050565b611675611bc1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da90613681565b60405180910390fd5b80600560006116f0611bc1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661179d611bc1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117e29190613584565b60405180910390a35050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61271081565b600b5481565b61183161182b611bc1565b83611d04565b611870576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611867906138a1565b60405180910390fd5b61187c848484846122e5565b50505050565b60095481565b606061189382612341565b9050919050565b60fa81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61193b611bc1565b73ffffffffffffffffffffffffffffffffffffffff1661195961148d565b73ffffffffffffffffffffffffffffffffffffffff16146119af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a690613801565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1690613601565b60405180910390fd5b611a288161221f565b50565b611a33611bc1565b73ffffffffffffffffffffffffffffffffffffffff16611a5161148d565b73ffffffffffffffffffffffffffffffffffffffff1614611aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9e90613801565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c3c8361129b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611c8b82611b55565b611cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc190613761565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611cf1929190612ad6565b505050565b600081600001549050919050565b6000611d0f82611b55565b611d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d45906136c1565b60405180910390fd5b6000611d598361129b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611dc857508373ffffffffffffffffffffffffffffffffffffffff16611db084610af7565b73ffffffffffffffffffffffffffffffffffffffff16145b80611dd95750611dd8818561189f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e028261129b565b73ffffffffffffffffffffffffffffffffffffffff1614611e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4f90613821565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebf90613661565b60405180910390fd5b611ed3838383612493565b611ede600082611bc9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f2e9190613ad5565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f8591906139f4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6001816000016000828254019250508190555050565b6060600082141561209c576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121fc565b600082905060005b600082146120ce5780806120b790613c22565b915050600a826120c79190613a4a565b91506120a4565b60008167ffffffffffffffff811115612110577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121425781602001600182028036833780820191505090505b5090505b600085146121f55760018261215b9190613ad5565b9150600a8561216a9190613c6b565b603061217691906139f4565b60f81b8183815181106121b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121ee9190613a4a565b9450612146565b8093505050505b919050565b61221b828260405180602001604052806000815250612498565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122f0848484611de2565b6122fc848484846124f3565b61233b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612332906135e1565b60405180910390fd5b50505050565b606061234c82611b55565b61238b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612382906137c1565b60405180910390fd5b60006006600084815260200190815260200160002080546123ab90613bbf565b80601f01602080910402602001604051908101604052809291908181526020018280546123d790613bbf565b80156124245780601f106123f957610100808354040283529160200191612424565b820191906000526020600020905b81548152906001019060200180831161240757829003601f168201915b50505050509050600061243561268a565b905060008151141561244b57819250505061248e565b6000825111156124805780826040516020016124689291906134a8565b6040516020818303038152906040529250505061248e565b612489846126a1565b925050505b919050565b505050565b6124a28383612748565b6124af60008484846124f3565b6124ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e5906135e1565b60405180910390fd5b505050565b60006125148473ffffffffffffffffffffffffffffffffffffffff16612916565b1561267d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261253d611bc1565b8786866040518563ffffffff1660e01b815260040161255f9493929190613516565b602060405180830381600087803b15801561257957600080fd5b505af19250505080156125aa57506040513d601f19601f820116820180604052508101906125a79190612e82565b60015b61262d573d80600081146125da576040519150601f19603f3d011682016040523d82523d6000602084013e6125df565b606091505b50600081511415612625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261c906135e1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612682565b600190505b949350505050565b606060405180602001604052806000815250905090565b60606126ac82611b55565b6126eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e290613841565b60405180910390fd5b60006126f561268a565b905060008151116127155760405180602001604052806000815250612740565b8061271f84612929565b6040516020016127309291906134a8565b6040516020818303038152906040525b915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127af906137a1565b60405180910390fd5b6127c181611b55565b15612801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f890613621565b60405180910390fd5b61280d60008383612493565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461285d91906139f4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606000821415612971576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ad1565b600082905060005b600082146129a357808061298c90613c22565b915050600a8261299c9190613a4a565b9150612979565b60008167ffffffffffffffff8111156129e5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612a175781602001600182028036833780820191505090505b5090505b60008514612aca57600182612a309190613ad5565b9150600a85612a3f9190613c6b565b6030612a4b91906139f4565b60f81b818381518110612a87577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ac39190613a4a565b9450612a1b565b8093505050505b919050565b828054612ae290613bbf565b90600052602060002090601f016020900481019282612b045760008555612b4b565b82601f10612b1d57805160ff1916838001178555612b4b565b82800160010185558215612b4b579182015b82811115612b4a578251825591602001919060010190612b2f565b5b509050612b589190612b5c565b5090565b5b80821115612b75576000816000905550600101612b5d565b5090565b6000612b8c612b8784613901565b6138dc565b905082815260208101848484011115612ba457600080fd5b612baf848285613b7d565b509392505050565b6000612bca612bc584613932565b6138dc565b905082815260208101848484011115612be257600080fd5b612bed848285613b7d565b509392505050565b600081359050612c0481614488565b92915050565b600081359050612c198161449f565b92915050565b600081359050612c2e816144b6565b92915050565b600081519050612c43816144b6565b92915050565b600082601f830112612c5a57600080fd5b8135612c6a848260208601612b79565b91505092915050565b600082601f830112612c8457600080fd5b8135612c94848260208601612bb7565b91505092915050565b600081359050612cac816144cd565b92915050565b600060208284031215612cc457600080fd5b6000612cd284828501612bf5565b91505092915050565b60008060408385031215612cee57600080fd5b6000612cfc85828601612bf5565b9250506020612d0d85828601612bf5565b9150509250929050565b600080600060608486031215612d2c57600080fd5b6000612d3a86828701612bf5565b9350506020612d4b86828701612bf5565b9250506040612d5c86828701612c9d565b9150509250925092565b60008060008060808587031215612d7c57600080fd5b6000612d8a87828801612bf5565b9450506020612d9b87828801612bf5565b9350506040612dac87828801612c9d565b925050606085013567ffffffffffffffff811115612dc957600080fd5b612dd587828801612c49565b91505092959194509250565b60008060408385031215612df457600080fd5b6000612e0285828601612bf5565b9250506020612e1385828601612c0a565b9150509250929050565b60008060408385031215612e3057600080fd5b6000612e3e85828601612bf5565b9250506020612e4f85828601612c9d565b9150509250929050565b600060208284031215612e6b57600080fd5b6000612e7984828501612c1f565b91505092915050565b600060208284031215612e9457600080fd5b6000612ea284828501612c34565b91505092915050565b600060208284031215612ebd57600080fd5b600082013567ffffffffffffffff811115612ed757600080fd5b612ee384828501612c73565b91505092915050565b600060208284031215612efe57600080fd5b6000612f0c84828501612c9d565b91505092915050565b60008060408385031215612f2857600080fd5b6000612f3685828601612c9d565b925050602083013567ffffffffffffffff811115612f5357600080fd5b612f5f85828601612c73565b9150509250929050565b6000612f75838361348a565b60208301905092915050565b612f8a81613b09565b82525050565b6000612f9b82613988565b612fa581856139b6565b9350612fb083613963565b8060005b83811015612fe1578151612fc88882612f69565b9750612fd3836139a9565b925050600181019050612fb4565b5085935050505092915050565b612ff781613b1b565b82525050565b600061300882613993565b61301281856139c7565b9350613022818560208601613b8c565b61302b81613d58565b840191505092915050565b60006130418261399e565b61304b81856139d8565b935061305b818560208601613b8c565b61306481613d58565b840191505092915050565b600061307a8261399e565b61308481856139e9565b9350613094818560208601613b8c565b80840191505092915050565b600081546130ad81613bbf565b6130b781866139e9565b945060018216600081146130d257600181146130e357613116565b60ff19831686528186019350613116565b6130ec85613973565b60005b8381101561310e578154818901526001820191506020810190506130ef565b838801955050505b50505092915050565b600061312c6049836139d8565b915061313782613d69565b606082019050919050565b600061314f6032836139d8565b915061315a82613dde565b604082019050919050565b60006131726026836139d8565b915061317d82613e2d565b604082019050919050565b6000613195601c836139d8565b91506131a082613e7c565b602082019050919050565b60006131b8604b836139d8565b91506131c382613ea5565b606082019050919050565b60006131db6024836139d8565b91506131e682613f1a565b604082019050919050565b60006131fe6019836139d8565b915061320982613f69565b602082019050919050565b6000613221601b836139d8565b915061322c82613f92565b602082019050919050565b6000613244602c836139d8565b915061324f82613fbb565b604082019050919050565b6000613267603f836139d8565b91506132728261400a565b604082019050919050565b600061328a6038836139d8565b915061329582614059565b604082019050919050565b60006132ad602a836139d8565b91506132b8826140a8565b604082019050919050565b60006132d06029836139d8565b91506132db826140f7565b604082019050919050565b60006132f3602e836139d8565b91506132fe82614146565b604082019050919050565b60006133166022836139d8565b915061332182614195565b604082019050919050565b60006133396020836139d8565b9150613344826141e4565b602082019050919050565b600061335c6031836139d8565b91506133678261420d565b604082019050919050565b600061337f602c836139d8565b915061338a8261425c565b604082019050919050565b60006133a26005836139e9565b91506133ad826142ab565b600582019050919050565b60006133c56020836139d8565b91506133d0826142d4565b602082019050919050565b60006133e86029836139d8565b91506133f3826142fd565b604082019050919050565b600061340b602f836139d8565b91506134168261434c565b604082019050919050565b600061342e6033836139d8565b91506134398261439b565b604082019050919050565b60006134516021836139d8565b915061345c826143ea565b604082019050919050565b60006134746031836139d8565b915061347f82614439565b604082019050919050565b61349381613b73565b82525050565b6134a281613b73565b82525050565b60006134b4828561306f565b91506134c0828461306f565b91508190509392505050565b60006134d882856130a0565b91506134e4828461306f565b91506134ef82613395565b91508190509392505050565b60006020820190506135106000830184612f81565b92915050565b600060808201905061352b6000830187612f81565b6135386020830186612f81565b6135456040830185613499565b81810360608301526135578184612ffd565b905095945050505050565b6000602082019050818103600083015261357c8184612f90565b905092915050565b60006020820190506135996000830184612fee565b92915050565b600060208201905081810360008301526135b98184613036565b905092915050565b600060208201905081810360008301526135da8161311f565b9050919050565b600060208201905081810360008301526135fa81613142565b9050919050565b6000602082019050818103600083015261361a81613165565b9050919050565b6000602082019050818103600083015261363a81613188565b9050919050565b6000602082019050818103600083015261365a816131ab565b9050919050565b6000602082019050818103600083015261367a816131ce565b9050919050565b6000602082019050818103600083015261369a816131f1565b9050919050565b600060208201905081810360008301526136ba81613214565b9050919050565b600060208201905081810360008301526136da81613237565b9050919050565b600060208201905081810360008301526136fa8161325a565b9050919050565b6000602082019050818103600083015261371a8161327d565b9050919050565b6000602082019050818103600083015261373a816132a0565b9050919050565b6000602082019050818103600083015261375a816132c3565b9050919050565b6000602082019050818103600083015261377a816132e6565b9050919050565b6000602082019050818103600083015261379a81613309565b9050919050565b600060208201905081810360008301526137ba8161332c565b9050919050565b600060208201905081810360008301526137da8161334f565b9050919050565b600060208201905081810360008301526137fa81613372565b9050919050565b6000602082019050818103600083015261381a816133b8565b9050919050565b6000602082019050818103600083015261383a816133db565b9050919050565b6000602082019050818103600083015261385a816133fe565b9050919050565b6000602082019050818103600083015261387a81613421565b9050919050565b6000602082019050818103600083015261389a81613444565b9050919050565b600060208201905081810360008301526138ba81613467565b9050919050565b60006020820190506138d66000830184613499565b92915050565b60006138e66138f7565b90506138f28282613bf1565b919050565b6000604051905090565b600067ffffffffffffffff82111561391c5761391b613d29565b5b61392582613d58565b9050602081019050919050565b600067ffffffffffffffff82111561394d5761394c613d29565b5b61395682613d58565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006139ff82613b73565b9150613a0a83613b73565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a3f57613a3e613c9c565b5b828201905092915050565b6000613a5582613b73565b9150613a6083613b73565b925082613a7057613a6f613ccb565b5b828204905092915050565b6000613a8682613b73565b9150613a9183613b73565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613aca57613ac9613c9c565b5b828202905092915050565b6000613ae082613b73565b9150613aeb83613b73565b925082821015613afe57613afd613c9c565b5b828203905092915050565b6000613b1482613b53565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613baa578082015181840152602081019050613b8f565b83811115613bb9576000848401525b50505050565b60006002820490506001821680613bd757607f821691505b60208210811415613beb57613bea613cfa565b5b50919050565b613bfa82613d58565b810181811067ffffffffffffffff82111715613c1957613c18613d29565b5b80604052505050565b6000613c2d82613b73565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c6057613c5f613c9c565b5b600182019050919050565b6000613c7682613b73565b9150613c8183613b73565b925082613c9157613c90613ccb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4465736972656420616d6f756e74206f6620546f6b656e73206578636565647360008201527f20746865207075626c69636c7920617661696c61626c65206e756d626572206f60208201527f6620746f6b656e732e0000000000000000000000000000000000000000000000604082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420656e6f75676820726573657276656420746f6b656e73206c6566742060008201527f666f72207468652070726f766964656420696e70757420616d6f756e7420746f60208201527f206265206d696e7465642e000000000000000000000000000000000000000000604082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f507269636520776173206e6f74207061696420696e2066756c6c2e0000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f596f7572206465736972656420616d6f756e74206f6620546f6b656e7320657860008201527f636565647320746865204d6178696d756d20746f6b656e20737570706c792e00602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f546f6b656e73616c65206973206e6f7420616374697665207269676874206e6f60008201527f772e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d6178696d756d206e756d626572206f66206d696e7473207065722066756e6360008201527f74696f6e2063616c6c2065786365656465642e00000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61449181613b09565b811461449c57600080fd5b50565b6144a881613b1b565b81146144b357600080fd5b50565b6144bf81613b27565b81146144ca57600080fd5b50565b6144d681613b73565b81146144e157600080fd5b5056fea2646970667358221220c38bd90750789b4b92fd570477e10293be9c725dfe85bede68592728588e37ad64736f6c63430008040033

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.