ETH Price: $3,304.72 (-3.53%)
Gas: 6 Gwei

Token

The Lizard Lab (LIZRD)
 

Overview

Max Total Supply

5,000 LIZRD

Holders

1,559

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
fiatsux.eth
Balance
2 LIZRD
0x2d1257388bc636d9d5a04d033a0663f826df4f5e
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Lizard Lab is a community-based storytelling experiment combining puzzles, expansive lore, and 5,000 lizard experiments.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LizardLab

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

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

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

 contract LizardLab is ERC721, Ownable {
    using Address for address;
    
    //some call it 'provenance'
    string public PROOF_OF_ANCESTRY;
    
    //where the wild things are (or will be)
    string public baseURI;

    //fives are good numbers... lets go with 5s
    uint256 public constant MAX_LIZARDS = 5000;
    uint256 public constant PRICE = 0.05 ether;
    uint256 public constant FOR_THE_WARCHEST = 100;
    uint256 public totalSupply;

    //do not get any ideas too soon
    bool public presaleActive = false;
    uint256 public presaleWave;
    bool public saleActive = false;

    //has [REDACTED] populated the war chest?
    bool public redactedClaimed = false;

    //who gets what
    address redLizard = 0xfb55e7ECbBA9715A9A9DD31DB3c777D8B98cB4Dc;
    address blueLizard = 0x87E9Ab2D6f4f744f36aad379f0157da30d3E2670;
    address greenLizard = 0x86bE508e686AB58ab9442c6A9800B1a941a6D60D;
    address warChest = 0x30471c24BDb0b9dDb75d9cA5D4E13049fc69FEfD;

    //some lizard keepers are...more privileged than others
    mapping (address => bool) public claimWhitelist;
    mapping (address => uint256) public presaleWhitelist;

    //there is a lot to unpack here
    constructor() ERC721("The Lizard Lab", "LIZRD") {   
    }
    
    //don't let them all escape!!  [REDACTED] needs them
    function recapture() public onlyOwner {
        require(bytes(PROOF_OF_ANCESTRY).length > 0,                "No distributing Lizards until provenance is established.");
        require(!redactedClaimed,                                   "Only once, even for you [REDACTED]");
        require(totalSupply + FOR_THE_WARCHEST <= MAX_LIZARDS,      "You have missed your chance, [REDACTED].");
        for (uint256 i = 0; i < FOR_THE_WARCHEST; i++) {
            _safeMint(warChest, totalSupply + i);
        }

        totalSupply += FOR_THE_WARCHEST;
        redactedClaimed = true;
    }

    //a freebie for you, thank you for your support
    function claim() public {
        require(presaleActive || saleActive,                        "A sale period must be active to claim");
        require(claimWhitelist[msg.sender],                         "No claim available for this address");
        require(totalSupply + 1 <= MAX_LIZARDS,                     "Claim would exceed max supply of tokens");

        _safeMint( msg.sender, totalSupply);
        totalSupply += 1;
        claimWhitelist[msg.sender] = false;
    }
    
    //thanks for hanging out..
    function mintPresale(uint256 numberOfMints) public payable {
        uint256 reserved = presaleWhitelist[msg.sender];
        require(presaleActive,                                      "Presale must be active to mint");
        require(reserved > 0,                                       "No tokens reserved for this address");
        require(numberOfMints <= reserved,                          "Can't mint more than reserved");
        require(totalSupply + numberOfMints <= MAX_LIZARDS,         "Purchase would exceed max supply of tokens");
        require(PRICE * numberOfMints == msg.value,                 "Ether value sent is not correct");
        presaleWhitelist[msg.sender] = reserved - numberOfMints;

        for(uint256 i; i < numberOfMints; i++){
            _safeMint( msg.sender, totalSupply + i );
        }

        totalSupply += numberOfMints;
    }
    
    //..and now for the rest of you
    function mint(uint256 numberOfMints) public payable {
        require(saleActive,                                         "Sale must be active to mint");
        require(numberOfMints > 0 && numberOfMints < 6,             "Invalid purchase amount");
        require(totalSupply + numberOfMints <= MAX_LIZARDS,         "Purchase would exceed max supply of tokens");
        require(PRICE * numberOfMints == msg.value,                 "Ether value sent is not correct");
        
        for(uint256 i; i < numberOfMints; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }

        totalSupply += numberOfMints;
    }

    //these lizards are free
    function editClaimList(address[] calldata claimAddresses) public onlyOwner {
        for(uint256 i; i < claimAddresses.length; i++){
            claimWhitelist[claimAddresses[i]] = true;
        }
    }
    
    //somebody has to keep track of all of this
    function editPresaleList(address[] calldata presaleAddresses, uint256[] calldata amount) public onlyOwner {
        for(uint256 i; i < presaleAddresses.length; i++){
            presaleWhitelist[presaleAddresses[i]] = amount[i];
        }

        presaleWave = presaleWave + 1;
    }

    //[REDACTED] made me put this here..as to not..tinker with anything
    function setAncestry(string memory provenance) public onlyOwner {
        require(bytes(PROOF_OF_ANCESTRY).length == 0, "Now now, [REDACTED], do not go and try to play god...twice.");

        PROOF_OF_ANCESTRY = provenance;
    }

    //and a flip of the (small) switch
    function togglePresale() public onlyOwner {
        require(bytes(PROOF_OF_ANCESTRY).length > 0, "No distributing Lizards until provenance is established.");

        presaleActive = !presaleActive;
    }

    //the flip of a slightly larger switch
    function toggleSale() public onlyOwner {
        require(bytes(PROOF_OF_ANCESTRY).length > 0, "No distributing Lizards until provenance is established.");

        presaleActive = false;
        saleActive = !saleActive;
    }
    
    //for the grand reveal and where things are now.. where things will forever be.. lizards willing
    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }
    
    //come have a looksy
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    //coins for the lizards
    function withdraw() public {
        uint256 balance = address(this).balance;
        payable(redLizard).transfer((balance * 400) / 1000);
        payable(greenLizard).transfer((balance * 400) / 1000);
        payable(blueLizard).transfer((balance * 200) / 1000);
    }    
}

File 2 of 11 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 3 of 11 : 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 11 : 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 5 of 11 : 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 6 of 11 : 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 7 of 11 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FOR_THE_WARCHEST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_LIZARDS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROOF_OF_ANCESTRY","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"claimAddresses","type":"address[]"}],"name":"editClaimList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"presaleAddresses","type":"address[]"},{"internalType":"uint256[]","name":"amount","type":"uint256[]"}],"name":"editPresaleList","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":"uint256","name":"numberOfMints","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"mintPresale","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":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleWave","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recapture","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"redactedClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"provenance","type":"string"}],"name":"setAncestry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60006101000a81548160ff0219169083151502179055506000600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff02191690831515021790555073fb55e7ecbba9715a9a9dd31db3c777d8b98cb4dc600c60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507387e9ab2d6f4f744f36aad379f0157da30d3e2670600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507386be508e686ab58ab9442c6a9800b1a941a6d60d600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507330471c24bdb0b9ddb75d9ca5d4e13049fc69fefd600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620001b657600080fd5b506040518060400160405280600e81526020017f546865204c697a617264204c61620000000000000000000000000000000000008152506040518060400160405280600581526020017f4c495a524400000000000000000000000000000000000000000000000000000081525081600090805190602001906200023b9291906200034b565b508060019080519060200190620002549291906200034b565b505050620002776200026b6200027d60201b60201c565b6200028560201b60201c565b62000460565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000359906200042a565b90600052602060002090601f0160209004810192826200037d5760008555620003c9565b82601f106200039857805160ff1916838001178555620003c9565b82800160010185558215620003c9579182015b82811115620003c8578251825591602001919060010190620003ab565b5b509050620003d89190620003dc565b5090565b5b80821115620003f7576000816000905550600101620003dd565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200044357607f821691505b602082108114156200045a5762000459620003fb565b5b50919050565b614c4c80620004706000396000f3fe6080604052600436106102305760003560e01c80636c0360eb1161012e578063a22cb465116100ab578063e985e9c51161006f578063e985e9c5146107be578063eb8835ab146107fb578063f2fde38b14610838578063f353983214610861578063f759867a1461088c57610230565b8063a22cb465146106d9578063b88d4fde14610702578063c87b56dd1461072b578063db723ca414610768578063e6b4b0ba1461079357610230565b80638d859f3e116100f25780638d859f3e146106115780638da5cb5b1461063c5780638f35de131461066757806395d89b4114610692578063a0712d68146106bd57610230565b80636c0360eb1461055257806370a082311461057d578063715018a6146105ba57806376da3a46146105d15780637d8966e4146105fa57610230565b806334393743116101bc57806353135ca01161018057806353135ca01461047f57806355f804b3146104aa5780636352211e146104d357806368428a1b146105105780636a1aa8281461053b57610230565b806334393743146103e85780633ccfd60b146103ff57806342842e0e146104165780634569af321461043f5780634e71d92d1461046857610230565b806318160ddd1161020357806318160ddd1461030357806321b1b5541461032e578063234121f01461035757806323b872dd14610382578063287001d2146103ab57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906130cb565b6108a8565b6040516102699190613113565b60405180910390f35b34801561027e57600080fd5b5061028761098a565b60405161029491906131c7565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf919061321f565b610a1c565b6040516102d1919061328d565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc91906132d4565b610aa1565b005b34801561030f57600080fd5b50610318610bb9565b6040516103259190613323565b60405180910390f35b34801561033a57600080fd5b50610355600480360381019061035091906133f9565b610bbf565b005b34801561036357600080fd5b5061036c610cfc565b6040516103799190613323565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a4919061347a565b610d01565b005b3480156103b757600080fd5b506103d260048036038101906103cd91906134cd565b610d61565b6040516103df9190613113565b60405180910390f35b3480156103f457600080fd5b506103fd610d81565b005b34801561040b57600080fd5b50610414610e7a565b005b34801561042257600080fd5b5061043d6004803603810190610438919061347a565b61100a565b005b34801561044b57600080fd5b506104666004803603810190610461919061362a565b61102a565b005b34801561047457600080fd5b5061047d611111565b005b34801561048b57600080fd5b506104946112d6565b6040516104a19190613113565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc919061362a565b6112e9565b005b3480156104df57600080fd5b506104fa60048036038101906104f5919061321f565b61137f565b604051610507919061328d565b60405180910390f35b34801561051c57600080fd5b50610525611431565b6040516105329190613113565b60405180910390f35b34801561054757600080fd5b50610550611444565b005b34801561055e57600080fd5b50610567611644565b60405161057491906131c7565b60405180910390f35b34801561058957600080fd5b506105a4600480360381019061059f91906134cd565b6116d2565b6040516105b19190613323565b60405180910390f35b3480156105c657600080fd5b506105cf61178a565b005b3480156105dd57600080fd5b506105f860048036038101906105f39190613673565b611812565b005b34801561060657600080fd5b5061060f611933565b005b34801561061d57600080fd5b50610626611a47565b6040516106339190613323565b60405180910390f35b34801561064857600080fd5b50610651611a52565b60405161065e919061328d565b60405180910390f35b34801561067357600080fd5b5061067c611a7c565b60405161068991906131c7565b60405180910390f35b34801561069e57600080fd5b506106a7611b0a565b6040516106b491906131c7565b60405180910390f35b6106d760048036038101906106d2919061321f565b611b9c565b005b3480156106e557600080fd5b5061070060048036038101906106fb91906136ec565b611d32565b005b34801561070e57600080fd5b50610729600480360381019061072491906137cd565b611eb3565b005b34801561073757600080fd5b50610752600480360381019061074d919061321f565b611f15565b60405161075f91906131c7565b60405180910390f35b34801561077457600080fd5b5061077d611fbc565b60405161078a9190613323565b60405180910390f35b34801561079f57600080fd5b506107a8611fc2565b6040516107b59190613323565b60405180910390f35b3480156107ca57600080fd5b506107e560048036038101906107e09190613850565b611fc8565b6040516107f29190613113565b60405180910390f35b34801561080757600080fd5b50610822600480360381019061081d91906134cd565b61205c565b60405161082f9190613323565b60405180910390f35b34801561084457600080fd5b5061085f600480360381019061085a91906134cd565b612074565b005b34801561086d57600080fd5b5061087661216c565b6040516108839190613113565b60405180910390f35b6108a660048036038101906108a1919061321f565b61217f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109835750610982826123e0565b5b9050919050565b606060008054610999906138bf565b80601f01602080910402602001604051908101604052809291908181526020018280546109c5906138bf565b8015610a125780601f106109e757610100808354040283529160200191610a12565b820191906000526020600020905b8154815290600101906020018083116109f557829003601f168201915b5050505050905090565b6000610a278261244a565b610a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5d90613963565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aac8261137f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b14906139f5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b3c6124b6565b73ffffffffffffffffffffffffffffffffffffffff161480610b6b5750610b6a81610b656124b6565b611fc8565b5b610baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba190613a87565b60405180910390fd5b610bb483836124be565b505050565b60095481565b610bc76124b6565b73ffffffffffffffffffffffffffffffffffffffff16610be5611a52565b73ffffffffffffffffffffffffffffffffffffffff1614610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3290613af3565b60405180910390fd5b60005b84849050811015610ce057828282818110610c5c57610c5b613b13565b5b9050602002013560116000878785818110610c7a57610c79613b13565b5b9050602002016020810190610c8f91906134cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080610cd890613b71565b915050610c3e565b506001600b54610cf09190613bba565b600b8190555050505050565b606481565b610d12610d0c6124b6565b82612577565b610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4890613c82565b60405180910390fd5b610d5c838383612655565b505050565b60106020528060005260406000206000915054906101000a900460ff1681565b610d896124b6565b73ffffffffffffffffffffffffffffffffffffffff16610da7611a52565b73ffffffffffffffffffffffffffffffffffffffff1614610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df490613af3565b60405180910390fd5b600060078054610e0c906138bf565b905011610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4590613d14565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000479050600c60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e861019084610ecc9190613d34565b610ed69190613dbd565b9081150290604051600060405180830381858888f19350505050158015610f01573d6000803e3d6000fd5b50600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e861019084610f4f9190613d34565b610f599190613dbd565b9081150290604051600060405180830381858888f19350505050158015610f84573d6000803e3d6000fd5b50600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e860c884610fd19190613d34565b610fdb9190613dbd565b9081150290604051600060405180830381858888f19350505050158015611006573d6000803e3d6000fd5b5050565b61102583838360405180602001604052806000815250611eb3565b505050565b6110326124b6565b73ffffffffffffffffffffffffffffffffffffffff16611050611a52565b73ffffffffffffffffffffffffffffffffffffffff16146110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109d90613af3565b60405180910390fd5b6000600780546110b5906138bf565b9050146110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee90613e60565b60405180910390fd5b806007908051906020019061110d929190612fbc565b5050565b600a60009054906101000a900460ff16806111385750600c60009054906101000a900460ff165b611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e90613ef2565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fa90613f84565b60405180910390fd5b61138860016009546112159190613bba565b1115611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d90614016565b60405180910390fd5b611262336009546128b1565b6001600960008282546112759190613bba565b925050819055506000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b600a60009054906101000a900460ff1681565b6112f16124b6565b73ffffffffffffffffffffffffffffffffffffffff1661130f611a52565b73ffffffffffffffffffffffffffffffffffffffff1614611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c90613af3565b60405180910390fd5b806008908051906020019061137b929190612fbc565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141f906140a8565b60405180910390fd5b80915050919050565b600c60009054906101000a900460ff1681565b61144c6124b6565b73ffffffffffffffffffffffffffffffffffffffff1661146a611a52565b73ffffffffffffffffffffffffffffffffffffffff16146114c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b790613af3565b60405180910390fd5b6000600780546114cf906138bf565b905011611511576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150890613d14565b60405180910390fd5b600c60019054906101000a900460ff1615611561576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115589061413a565b60405180910390fd5b61138860646009546115739190613bba565b11156115b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ab906141cc565b60405180910390fd5b60005b606481101561160c576115f9600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826009546115f49190613bba565b6128b1565b808061160490613b71565b9150506115b7565b506064600960008282546116209190613bba565b925050819055506001600c60016101000a81548160ff021916908315150217905550565b60088054611651906138bf565b80601f016020809104026020016040519081016040528092919081815260200182805461167d906138bf565b80156116ca5780601f1061169f576101008083540402835291602001916116ca565b820191906000526020600020905b8154815290600101906020018083116116ad57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173a9061425e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117926124b6565b73ffffffffffffffffffffffffffffffffffffffff166117b0611a52565b73ffffffffffffffffffffffffffffffffffffffff1614611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd90613af3565b60405180910390fd5b61181060006128cf565b565b61181a6124b6565b73ffffffffffffffffffffffffffffffffffffffff16611838611a52565b73ffffffffffffffffffffffffffffffffffffffff161461188e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188590613af3565b60405180910390fd5b60005b8282905081101561192e576001601060008585858181106118b5576118b4613b13565b5b90506020020160208101906118ca91906134cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061192690613b71565b915050611891565b505050565b61193b6124b6565b73ffffffffffffffffffffffffffffffffffffffff16611959611a52565b73ffffffffffffffffffffffffffffffffffffffff16146119af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a690613af3565b60405180910390fd5b6000600780546119be906138bf565b905011611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f790613d14565b60405180910390fd5b6000600a60006101000a81548160ff021916908315150217905550600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b66b1a2bc2ec5000081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60078054611a89906138bf565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab5906138bf565b8015611b025780601f10611ad757610100808354040283529160200191611b02565b820191906000526020600020905b815481529060010190602001808311611ae557829003601f168201915b505050505081565b606060018054611b19906138bf565b80601f0160208091040260200160405190810160405280929190818152602001828054611b45906138bf565b8015611b925780601f10611b6757610100808354040283529160200191611b92565b820191906000526020600020905b815481529060010190602001808311611b7557829003601f168201915b5050505050905090565b600c60009054906101000a900460ff16611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be2906142ca565b60405180910390fd5b600081118015611bfb5750600681105b611c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3190614336565b60405180910390fd5b61138881600954611c4b9190613bba565b1115611c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c83906143c8565b60405180910390fd5b348166b1a2bc2ec50000611ca09190613d34565b14611ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd790614434565b60405180910390fd5b60005b81811015611d1557611d023382600954611cfd9190613bba565b6128b1565b8080611d0d90613b71565b915050611ce3565b508060096000828254611d289190613bba565b9250508190555050565b611d3a6124b6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9f906144a0565b60405180910390fd5b8060056000611db56124b6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e626124b6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ea79190613113565b60405180910390a35050565b611ec4611ebe6124b6565b83612577565b611f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efa90613c82565b60405180910390fd5b611f0f84848484612995565b50505050565b6060611f208261244a565b611f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5690614532565b60405180910390fd5b6000611f696129f1565b90506000815111611f895760405180602001604052806000815250611fb4565b80611f9384612a83565b604051602001611fa492919061458e565b6040516020818303038152906040525b915050919050565b600b5481565b61138881565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60116020528060005260406000206000915090505481565b61207c6124b6565b73ffffffffffffffffffffffffffffffffffffffff1661209a611a52565b73ffffffffffffffffffffffffffffffffffffffff16146120f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e790613af3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612160576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215790614624565b60405180910390fd5b612169816128cf565b50565b600c60019054906101000a900460ff1681565b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600a60009054906101000a900460ff16612212576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220990614690565b60405180910390fd5b60008111612255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224c90614722565b60405180910390fd5b80821115612298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228f9061478e565b60405180910390fd5b611388826009546122a99190613bba565b11156122ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e1906143c8565b60405180910390fd5b348266b1a2bc2ec500006122fe9190613d34565b1461233e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233590614434565b60405180910390fd5b818161234a91906147ae565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b828110156123c2576123af33826009546123aa9190613bba565b6128b1565b80806123ba90613b71565b915050612390565b5081600960008282546123d59190613bba565b925050819055505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125318361137f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006125828261244a565b6125c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b890614854565b60405180910390fd5b60006125cc8361137f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061263b57508373ffffffffffffffffffffffffffffffffffffffff1661262384610a1c565b73ffffffffffffffffffffffffffffffffffffffff16145b8061264c575061264b8185611fc8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126758261137f565b73ffffffffffffffffffffffffffffffffffffffff16146126cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c2906148e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561273b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273290614978565b60405180910390fd5b612746838383612be4565b6127516000826124be565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127a191906147ae565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127f89190613bba565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6128cb828260405180602001604052806000815250612be9565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129a0848484612655565b6129ac84848484612c44565b6129eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e290614a0a565b60405180910390fd5b50505050565b606060088054612a00906138bf565b80601f0160208091040260200160405190810160405280929190818152602001828054612a2c906138bf565b8015612a795780601f10612a4e57610100808354040283529160200191612a79565b820191906000526020600020905b815481529060010190602001808311612a5c57829003601f168201915b5050505050905090565b60606000821415612acb576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bdf565b600082905060005b60008214612afd578080612ae690613b71565b915050600a82612af69190613dbd565b9150612ad3565b60008167ffffffffffffffff811115612b1957612b186134ff565b5b6040519080825280601f01601f191660200182016040528015612b4b5781602001600182028036833780820191505090505b5090505b60008514612bd857600182612b6491906147ae565b9150600a85612b739190614a2a565b6030612b7f9190613bba565b60f81b818381518110612b9557612b94613b13565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bd19190613dbd565b9450612b4f565b8093505050505b919050565b505050565b612bf38383612ddb565b612c006000848484612c44565b612c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3690614a0a565b60405180910390fd5b505050565b6000612c658473ffffffffffffffffffffffffffffffffffffffff16612fa9565b15612dce578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c8e6124b6565b8786866040518563ffffffff1660e01b8152600401612cb09493929190614ab0565b602060405180830381600087803b158015612cca57600080fd5b505af1925050508015612cfb57506040513d601f19601f82011682018060405250810190612cf89190614b11565b60015b612d7e573d8060008114612d2b576040519150601f19603f3d011682016040523d82523d6000602084013e612d30565b606091505b50600081511415612d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6d90614a0a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612dd3565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4290614b8a565b60405180910390fd5b612e548161244a565b15612e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8b90614bf6565b60405180910390fd5b612ea060008383612be4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ef09190613bba565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612fc8906138bf565b90600052602060002090601f016020900481019282612fea5760008555613031565b82601f1061300357805160ff1916838001178555613031565b82800160010185558215613031579182015b82811115613030578251825591602001919060010190613015565b5b50905061303e9190613042565b5090565b5b8082111561305b576000816000905550600101613043565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6130a881613073565b81146130b357600080fd5b50565b6000813590506130c58161309f565b92915050565b6000602082840312156130e1576130e0613069565b5b60006130ef848285016130b6565b91505092915050565b60008115159050919050565b61310d816130f8565b82525050565b60006020820190506131286000830184613104565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561316857808201518184015260208101905061314d565b83811115613177576000848401525b50505050565b6000601f19601f8301169050919050565b60006131998261312e565b6131a38185613139565b93506131b381856020860161314a565b6131bc8161317d565b840191505092915050565b600060208201905081810360008301526131e1818461318e565b905092915050565b6000819050919050565b6131fc816131e9565b811461320757600080fd5b50565b600081359050613219816131f3565b92915050565b60006020828403121561323557613234613069565b5b60006132438482850161320a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132778261324c565b9050919050565b6132878161326c565b82525050565b60006020820190506132a2600083018461327e565b92915050565b6132b18161326c565b81146132bc57600080fd5b50565b6000813590506132ce816132a8565b92915050565b600080604083850312156132eb576132ea613069565b5b60006132f9858286016132bf565b925050602061330a8582860161320a565b9150509250929050565b61331d816131e9565b82525050565b60006020820190506133386000830184613314565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126133635761336261333e565b5b8235905067ffffffffffffffff8111156133805761337f613343565b5b60208301915083602082028301111561339c5761339b613348565b5b9250929050565b60008083601f8401126133b9576133b861333e565b5b8235905067ffffffffffffffff8111156133d6576133d5613343565b5b6020830191508360208202830111156133f2576133f1613348565b5b9250929050565b6000806000806040858703121561341357613412613069565b5b600085013567ffffffffffffffff8111156134315761343061306e565b5b61343d8782880161334d565b9450945050602085013567ffffffffffffffff8111156134605761345f61306e565b5b61346c878288016133a3565b925092505092959194509250565b60008060006060848603121561349357613492613069565b5b60006134a1868287016132bf565b93505060206134b2868287016132bf565b92505060406134c38682870161320a565b9150509250925092565b6000602082840312156134e3576134e2613069565b5b60006134f1848285016132bf565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135378261317d565b810181811067ffffffffffffffff82111715613556576135556134ff565b5b80604052505050565b600061356961305f565b9050613575828261352e565b919050565b600067ffffffffffffffff821115613595576135946134ff565b5b61359e8261317d565b9050602081019050919050565b82818337600083830152505050565b60006135cd6135c88461357a565b61355f565b9050828152602081018484840111156135e9576135e86134fa565b5b6135f48482856135ab565b509392505050565b600082601f8301126136115761361061333e565b5b81356136218482602086016135ba565b91505092915050565b6000602082840312156136405761363f613069565b5b600082013567ffffffffffffffff81111561365e5761365d61306e565b5b61366a848285016135fc565b91505092915050565b6000806020838503121561368a57613689613069565b5b600083013567ffffffffffffffff8111156136a8576136a761306e565b5b6136b48582860161334d565b92509250509250929050565b6136c9816130f8565b81146136d457600080fd5b50565b6000813590506136e6816136c0565b92915050565b6000806040838503121561370357613702613069565b5b6000613711858286016132bf565b9250506020613722858286016136d7565b9150509250929050565b600067ffffffffffffffff821115613747576137466134ff565b5b6137508261317d565b9050602081019050919050565b600061377061376b8461372c565b61355f565b90508281526020810184848401111561378c5761378b6134fa565b5b6137978482856135ab565b509392505050565b600082601f8301126137b4576137b361333e565b5b81356137c484826020860161375d565b91505092915050565b600080600080608085870312156137e7576137e6613069565b5b60006137f5878288016132bf565b9450506020613806878288016132bf565b93505060406138178782880161320a565b925050606085013567ffffffffffffffff8111156138385761383761306e565b5b6138448782880161379f565b91505092959194509250565b6000806040838503121561386757613866613069565b5b6000613875858286016132bf565b9250506020613886858286016132bf565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806138d757607f821691505b602082108114156138eb576138ea613890565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061394d602c83613139565b9150613958826138f1565b604082019050919050565b6000602082019050818103600083015261397c81613940565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006139df602183613139565b91506139ea82613983565b604082019050919050565b60006020820190508181036000830152613a0e816139d2565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613a71603883613139565b9150613a7c82613a15565b604082019050919050565b60006020820190508181036000830152613aa081613a64565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613add602083613139565b9150613ae882613aa7565b602082019050919050565b60006020820190508181036000830152613b0c81613ad0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613b7c826131e9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613baf57613bae613b42565b5b600182019050919050565b6000613bc5826131e9565b9150613bd0836131e9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c0557613c04613b42565b5b828201905092915050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613c6c603183613139565b9150613c7782613c10565b604082019050919050565b60006020820190508181036000830152613c9b81613c5f565b9050919050565b7f4e6f20646973747269627574696e67204c697a6172647320756e74696c20707260008201527f6f76656e616e63652069732065737461626c69736865642e0000000000000000602082015250565b6000613cfe603883613139565b9150613d0982613ca2565b604082019050919050565b60006020820190508181036000830152613d2d81613cf1565b9050919050565b6000613d3f826131e9565b9150613d4a836131e9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d8357613d82613b42565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613dc8826131e9565b9150613dd3836131e9565b925082613de357613de2613d8e565b5b828204905092915050565b7f4e6f77206e6f772c205b52454441435445445d2c20646f206e6f7420676f206160008201527f6e642074727920746f20706c617920676f642e2e2e74776963652e0000000000602082015250565b6000613e4a603b83613139565b9150613e5582613dee565b604082019050919050565b60006020820190508181036000830152613e7981613e3d565b9050919050565b7f412073616c6520706572696f64206d7573742062652061637469766520746f2060008201527f636c61696d000000000000000000000000000000000000000000000000000000602082015250565b6000613edc602583613139565b9150613ee782613e80565b604082019050919050565b60006020820190508181036000830152613f0b81613ecf565b9050919050565b7f4e6f20636c61696d20617661696c61626c6520666f722074686973206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613f6e602383613139565b9150613f7982613f12565b604082019050919050565b60006020820190508181036000830152613f9d81613f61565b9050919050565b7f436c61696d20776f756c6420657863656564206d617820737570706c79206f6660008201527f20746f6b656e7300000000000000000000000000000000000000000000000000602082015250565b6000614000602783613139565b915061400b82613fa4565b604082019050919050565b6000602082019050818103600083015261402f81613ff3565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614092602983613139565b915061409d82614036565b604082019050919050565b600060208201905081810360008301526140c181614085565b9050919050565b7f4f6e6c79206f6e63652c206576656e20666f7220796f75205b5245444143544560008201527f445d000000000000000000000000000000000000000000000000000000000000602082015250565b6000614124602283613139565b915061412f826140c8565b604082019050919050565b6000602082019050818103600083015261415381614117565b9050919050565b7f596f752068617665206d697373656420796f7572206368616e63652c205b524560008201527f4441435445445d2e000000000000000000000000000000000000000000000000602082015250565b60006141b6602883613139565b91506141c18261415a565b604082019050919050565b600060208201905081810360008301526141e5816141a9565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614248602a83613139565b9150614253826141ec565b604082019050919050565b600060208201905081810360008301526142778161423b565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b60006142b4601b83613139565b91506142bf8261427e565b602082019050919050565b600060208201905081810360008301526142e3816142a7565b9050919050565b7f496e76616c696420707572636861736520616d6f756e74000000000000000000600082015250565b6000614320601783613139565b915061432b826142ea565b602082019050919050565b6000602082019050818103600083015261434f81614313565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b60006143b2602a83613139565b91506143bd82614356565b604082019050919050565b600060208201905081810360008301526143e1816143a5565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b600061441e601f83613139565b9150614429826143e8565b602082019050919050565b6000602082019050818103600083015261444d81614411565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061448a601983613139565b915061449582614454565b602082019050919050565b600060208201905081810360008301526144b98161447d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061451c602f83613139565b9150614527826144c0565b604082019050919050565b6000602082019050818103600083015261454b8161450f565b9050919050565b600081905092915050565b60006145688261312e565b6145728185614552565b935061458281856020860161314a565b80840191505092915050565b600061459a828561455d565b91506145a6828461455d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061460e602683613139565b9150614619826145b2565b604082019050919050565b6000602082019050818103600083015261463d81614601565b9050919050565b7f50726573616c65206d7573742062652061637469766520746f206d696e740000600082015250565b600061467a601e83613139565b915061468582614644565b602082019050919050565b600060208201905081810360008301526146a98161466d565b9050919050565b7f4e6f20746f6b656e7320726573657276656420666f722074686973206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061470c602383613139565b9150614717826146b0565b604082019050919050565b6000602082019050818103600083015261473b816146ff565b9050919050565b7f43616e2774206d696e74206d6f7265207468616e207265736572766564000000600082015250565b6000614778601d83613139565b915061478382614742565b602082019050919050565b600060208201905081810360008301526147a78161476b565b9050919050565b60006147b9826131e9565b91506147c4836131e9565b9250828210156147d7576147d6613b42565b5b828203905092915050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061483e602c83613139565b9150614849826147e2565b604082019050919050565b6000602082019050818103600083015261486d81614831565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006148d0602983613139565b91506148db82614874565b604082019050919050565b600060208201905081810360008301526148ff816148c3565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614962602483613139565b915061496d82614906565b604082019050919050565b6000602082019050818103600083015261499181614955565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006149f4603283613139565b91506149ff82614998565b604082019050919050565b60006020820190508181036000830152614a23816149e7565b9050919050565b6000614a35826131e9565b9150614a40836131e9565b925082614a5057614a4f613d8e565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614a8282614a5b565b614a8c8185614a66565b9350614a9c81856020860161314a565b614aa58161317d565b840191505092915050565b6000608082019050614ac5600083018761327e565b614ad2602083018661327e565b614adf6040830185613314565b8181036060830152614af18184614a77565b905095945050505050565b600081519050614b0b8161309f565b92915050565b600060208284031215614b2757614b26613069565b5b6000614b3584828501614afc565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614b74602083613139565b9150614b7f82614b3e565b602082019050919050565b60006020820190508181036000830152614ba381614b67565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614be0601c83613139565b9150614beb82614baa565b602082019050919050565b60006020820190508181036000830152614c0f81614bd3565b905091905056fea2646970667358221220993bd0920ed0a6cb818810dd4362e788cf7057518faae4722d4d8e8ff1ce6b7b64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102305760003560e01c80636c0360eb1161012e578063a22cb465116100ab578063e985e9c51161006f578063e985e9c5146107be578063eb8835ab146107fb578063f2fde38b14610838578063f353983214610861578063f759867a1461088c57610230565b8063a22cb465146106d9578063b88d4fde14610702578063c87b56dd1461072b578063db723ca414610768578063e6b4b0ba1461079357610230565b80638d859f3e116100f25780638d859f3e146106115780638da5cb5b1461063c5780638f35de131461066757806395d89b4114610692578063a0712d68146106bd57610230565b80636c0360eb1461055257806370a082311461057d578063715018a6146105ba57806376da3a46146105d15780637d8966e4146105fa57610230565b806334393743116101bc57806353135ca01161018057806353135ca01461047f57806355f804b3146104aa5780636352211e146104d357806368428a1b146105105780636a1aa8281461053b57610230565b806334393743146103e85780633ccfd60b146103ff57806342842e0e146104165780634569af321461043f5780634e71d92d1461046857610230565b806318160ddd1161020357806318160ddd1461030357806321b1b5541461032e578063234121f01461035757806323b872dd14610382578063287001d2146103ab57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906130cb565b6108a8565b6040516102699190613113565b60405180910390f35b34801561027e57600080fd5b5061028761098a565b60405161029491906131c7565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf919061321f565b610a1c565b6040516102d1919061328d565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc91906132d4565b610aa1565b005b34801561030f57600080fd5b50610318610bb9565b6040516103259190613323565b60405180910390f35b34801561033a57600080fd5b50610355600480360381019061035091906133f9565b610bbf565b005b34801561036357600080fd5b5061036c610cfc565b6040516103799190613323565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a4919061347a565b610d01565b005b3480156103b757600080fd5b506103d260048036038101906103cd91906134cd565b610d61565b6040516103df9190613113565b60405180910390f35b3480156103f457600080fd5b506103fd610d81565b005b34801561040b57600080fd5b50610414610e7a565b005b34801561042257600080fd5b5061043d6004803603810190610438919061347a565b61100a565b005b34801561044b57600080fd5b506104666004803603810190610461919061362a565b61102a565b005b34801561047457600080fd5b5061047d611111565b005b34801561048b57600080fd5b506104946112d6565b6040516104a19190613113565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc919061362a565b6112e9565b005b3480156104df57600080fd5b506104fa60048036038101906104f5919061321f565b61137f565b604051610507919061328d565b60405180910390f35b34801561051c57600080fd5b50610525611431565b6040516105329190613113565b60405180910390f35b34801561054757600080fd5b50610550611444565b005b34801561055e57600080fd5b50610567611644565b60405161057491906131c7565b60405180910390f35b34801561058957600080fd5b506105a4600480360381019061059f91906134cd565b6116d2565b6040516105b19190613323565b60405180910390f35b3480156105c657600080fd5b506105cf61178a565b005b3480156105dd57600080fd5b506105f860048036038101906105f39190613673565b611812565b005b34801561060657600080fd5b5061060f611933565b005b34801561061d57600080fd5b50610626611a47565b6040516106339190613323565b60405180910390f35b34801561064857600080fd5b50610651611a52565b60405161065e919061328d565b60405180910390f35b34801561067357600080fd5b5061067c611a7c565b60405161068991906131c7565b60405180910390f35b34801561069e57600080fd5b506106a7611b0a565b6040516106b491906131c7565b60405180910390f35b6106d760048036038101906106d2919061321f565b611b9c565b005b3480156106e557600080fd5b5061070060048036038101906106fb91906136ec565b611d32565b005b34801561070e57600080fd5b50610729600480360381019061072491906137cd565b611eb3565b005b34801561073757600080fd5b50610752600480360381019061074d919061321f565b611f15565b60405161075f91906131c7565b60405180910390f35b34801561077457600080fd5b5061077d611fbc565b60405161078a9190613323565b60405180910390f35b34801561079f57600080fd5b506107a8611fc2565b6040516107b59190613323565b60405180910390f35b3480156107ca57600080fd5b506107e560048036038101906107e09190613850565b611fc8565b6040516107f29190613113565b60405180910390f35b34801561080757600080fd5b50610822600480360381019061081d91906134cd565b61205c565b60405161082f9190613323565b60405180910390f35b34801561084457600080fd5b5061085f600480360381019061085a91906134cd565b612074565b005b34801561086d57600080fd5b5061087661216c565b6040516108839190613113565b60405180910390f35b6108a660048036038101906108a1919061321f565b61217f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109835750610982826123e0565b5b9050919050565b606060008054610999906138bf565b80601f01602080910402602001604051908101604052809291908181526020018280546109c5906138bf565b8015610a125780601f106109e757610100808354040283529160200191610a12565b820191906000526020600020905b8154815290600101906020018083116109f557829003601f168201915b5050505050905090565b6000610a278261244a565b610a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5d90613963565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aac8261137f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b14906139f5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b3c6124b6565b73ffffffffffffffffffffffffffffffffffffffff161480610b6b5750610b6a81610b656124b6565b611fc8565b5b610baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba190613a87565b60405180910390fd5b610bb483836124be565b505050565b60095481565b610bc76124b6565b73ffffffffffffffffffffffffffffffffffffffff16610be5611a52565b73ffffffffffffffffffffffffffffffffffffffff1614610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3290613af3565b60405180910390fd5b60005b84849050811015610ce057828282818110610c5c57610c5b613b13565b5b9050602002013560116000878785818110610c7a57610c79613b13565b5b9050602002016020810190610c8f91906134cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080610cd890613b71565b915050610c3e565b506001600b54610cf09190613bba565b600b8190555050505050565b606481565b610d12610d0c6124b6565b82612577565b610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4890613c82565b60405180910390fd5b610d5c838383612655565b505050565b60106020528060005260406000206000915054906101000a900460ff1681565b610d896124b6565b73ffffffffffffffffffffffffffffffffffffffff16610da7611a52565b73ffffffffffffffffffffffffffffffffffffffff1614610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df490613af3565b60405180910390fd5b600060078054610e0c906138bf565b905011610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4590613d14565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000479050600c60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e861019084610ecc9190613d34565b610ed69190613dbd565b9081150290604051600060405180830381858888f19350505050158015610f01573d6000803e3d6000fd5b50600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e861019084610f4f9190613d34565b610f599190613dbd565b9081150290604051600060405180830381858888f19350505050158015610f84573d6000803e3d6000fd5b50600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e860c884610fd19190613d34565b610fdb9190613dbd565b9081150290604051600060405180830381858888f19350505050158015611006573d6000803e3d6000fd5b5050565b61102583838360405180602001604052806000815250611eb3565b505050565b6110326124b6565b73ffffffffffffffffffffffffffffffffffffffff16611050611a52565b73ffffffffffffffffffffffffffffffffffffffff16146110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109d90613af3565b60405180910390fd5b6000600780546110b5906138bf565b9050146110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee90613e60565b60405180910390fd5b806007908051906020019061110d929190612fbc565b5050565b600a60009054906101000a900460ff16806111385750600c60009054906101000a900460ff165b611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e90613ef2565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fa90613f84565b60405180910390fd5b61138860016009546112159190613bba565b1115611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d90614016565b60405180910390fd5b611262336009546128b1565b6001600960008282546112759190613bba565b925050819055506000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b600a60009054906101000a900460ff1681565b6112f16124b6565b73ffffffffffffffffffffffffffffffffffffffff1661130f611a52565b73ffffffffffffffffffffffffffffffffffffffff1614611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c90613af3565b60405180910390fd5b806008908051906020019061137b929190612fbc565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141f906140a8565b60405180910390fd5b80915050919050565b600c60009054906101000a900460ff1681565b61144c6124b6565b73ffffffffffffffffffffffffffffffffffffffff1661146a611a52565b73ffffffffffffffffffffffffffffffffffffffff16146114c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b790613af3565b60405180910390fd5b6000600780546114cf906138bf565b905011611511576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150890613d14565b60405180910390fd5b600c60019054906101000a900460ff1615611561576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115589061413a565b60405180910390fd5b61138860646009546115739190613bba565b11156115b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ab906141cc565b60405180910390fd5b60005b606481101561160c576115f9600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826009546115f49190613bba565b6128b1565b808061160490613b71565b9150506115b7565b506064600960008282546116209190613bba565b925050819055506001600c60016101000a81548160ff021916908315150217905550565b60088054611651906138bf565b80601f016020809104026020016040519081016040528092919081815260200182805461167d906138bf565b80156116ca5780601f1061169f576101008083540402835291602001916116ca565b820191906000526020600020905b8154815290600101906020018083116116ad57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173a9061425e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117926124b6565b73ffffffffffffffffffffffffffffffffffffffff166117b0611a52565b73ffffffffffffffffffffffffffffffffffffffff1614611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd90613af3565b60405180910390fd5b61181060006128cf565b565b61181a6124b6565b73ffffffffffffffffffffffffffffffffffffffff16611838611a52565b73ffffffffffffffffffffffffffffffffffffffff161461188e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188590613af3565b60405180910390fd5b60005b8282905081101561192e576001601060008585858181106118b5576118b4613b13565b5b90506020020160208101906118ca91906134cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061192690613b71565b915050611891565b505050565b61193b6124b6565b73ffffffffffffffffffffffffffffffffffffffff16611959611a52565b73ffffffffffffffffffffffffffffffffffffffff16146119af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a690613af3565b60405180910390fd5b6000600780546119be906138bf565b905011611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f790613d14565b60405180910390fd5b6000600a60006101000a81548160ff021916908315150217905550600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b66b1a2bc2ec5000081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60078054611a89906138bf565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab5906138bf565b8015611b025780601f10611ad757610100808354040283529160200191611b02565b820191906000526020600020905b815481529060010190602001808311611ae557829003601f168201915b505050505081565b606060018054611b19906138bf565b80601f0160208091040260200160405190810160405280929190818152602001828054611b45906138bf565b8015611b925780601f10611b6757610100808354040283529160200191611b92565b820191906000526020600020905b815481529060010190602001808311611b7557829003601f168201915b5050505050905090565b600c60009054906101000a900460ff16611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be2906142ca565b60405180910390fd5b600081118015611bfb5750600681105b611c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3190614336565b60405180910390fd5b61138881600954611c4b9190613bba565b1115611c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c83906143c8565b60405180910390fd5b348166b1a2bc2ec50000611ca09190613d34565b14611ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd790614434565b60405180910390fd5b60005b81811015611d1557611d023382600954611cfd9190613bba565b6128b1565b8080611d0d90613b71565b915050611ce3565b508060096000828254611d289190613bba565b9250508190555050565b611d3a6124b6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9f906144a0565b60405180910390fd5b8060056000611db56124b6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e626124b6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ea79190613113565b60405180910390a35050565b611ec4611ebe6124b6565b83612577565b611f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efa90613c82565b60405180910390fd5b611f0f84848484612995565b50505050565b6060611f208261244a565b611f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5690614532565b60405180910390fd5b6000611f696129f1565b90506000815111611f895760405180602001604052806000815250611fb4565b80611f9384612a83565b604051602001611fa492919061458e565b6040516020818303038152906040525b915050919050565b600b5481565b61138881565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60116020528060005260406000206000915090505481565b61207c6124b6565b73ffffffffffffffffffffffffffffffffffffffff1661209a611a52565b73ffffffffffffffffffffffffffffffffffffffff16146120f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e790613af3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612160576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215790614624565b60405180910390fd5b612169816128cf565b50565b600c60019054906101000a900460ff1681565b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600a60009054906101000a900460ff16612212576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220990614690565b60405180910390fd5b60008111612255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224c90614722565b60405180910390fd5b80821115612298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228f9061478e565b60405180910390fd5b611388826009546122a99190613bba565b11156122ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e1906143c8565b60405180910390fd5b348266b1a2bc2ec500006122fe9190613d34565b1461233e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233590614434565b60405180910390fd5b818161234a91906147ae565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b828110156123c2576123af33826009546123aa9190613bba565b6128b1565b80806123ba90613b71565b915050612390565b5081600960008282546123d59190613bba565b925050819055505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125318361137f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006125828261244a565b6125c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b890614854565b60405180910390fd5b60006125cc8361137f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061263b57508373ffffffffffffffffffffffffffffffffffffffff1661262384610a1c565b73ffffffffffffffffffffffffffffffffffffffff16145b8061264c575061264b8185611fc8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126758261137f565b73ffffffffffffffffffffffffffffffffffffffff16146126cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c2906148e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561273b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273290614978565b60405180910390fd5b612746838383612be4565b6127516000826124be565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127a191906147ae565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127f89190613bba565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6128cb828260405180602001604052806000815250612be9565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129a0848484612655565b6129ac84848484612c44565b6129eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e290614a0a565b60405180910390fd5b50505050565b606060088054612a00906138bf565b80601f0160208091040260200160405190810160405280929190818152602001828054612a2c906138bf565b8015612a795780601f10612a4e57610100808354040283529160200191612a79565b820191906000526020600020905b815481529060010190602001808311612a5c57829003601f168201915b5050505050905090565b60606000821415612acb576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bdf565b600082905060005b60008214612afd578080612ae690613b71565b915050600a82612af69190613dbd565b9150612ad3565b60008167ffffffffffffffff811115612b1957612b186134ff565b5b6040519080825280601f01601f191660200182016040528015612b4b5781602001600182028036833780820191505090505b5090505b60008514612bd857600182612b6491906147ae565b9150600a85612b739190614a2a565b6030612b7f9190613bba565b60f81b818381518110612b9557612b94613b13565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bd19190613dbd565b9450612b4f565b8093505050505b919050565b505050565b612bf38383612ddb565b612c006000848484612c44565b612c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3690614a0a565b60405180910390fd5b505050565b6000612c658473ffffffffffffffffffffffffffffffffffffffff16612fa9565b15612dce578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c8e6124b6565b8786866040518563ffffffff1660e01b8152600401612cb09493929190614ab0565b602060405180830381600087803b158015612cca57600080fd5b505af1925050508015612cfb57506040513d601f19601f82011682018060405250810190612cf89190614b11565b60015b612d7e573d8060008114612d2b576040519150601f19603f3d011682016040523d82523d6000602084013e612d30565b606091505b50600081511415612d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6d90614a0a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612dd3565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4290614b8a565b60405180910390fd5b612e548161244a565b15612e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8b90614bf6565b60405180910390fd5b612ea060008383612be4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ef09190613bba565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612fc8906138bf565b90600052602060002090601f016020900481019282612fea5760008555613031565b82601f1061300357805160ff1916838001178555613031565b82800160010185558215613031579182015b82811115613030578251825591602001919060010190613015565b5b50905061303e9190613042565b5090565b5b8082111561305b576000816000905550600101613043565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6130a881613073565b81146130b357600080fd5b50565b6000813590506130c58161309f565b92915050565b6000602082840312156130e1576130e0613069565b5b60006130ef848285016130b6565b91505092915050565b60008115159050919050565b61310d816130f8565b82525050565b60006020820190506131286000830184613104565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561316857808201518184015260208101905061314d565b83811115613177576000848401525b50505050565b6000601f19601f8301169050919050565b60006131998261312e565b6131a38185613139565b93506131b381856020860161314a565b6131bc8161317d565b840191505092915050565b600060208201905081810360008301526131e1818461318e565b905092915050565b6000819050919050565b6131fc816131e9565b811461320757600080fd5b50565b600081359050613219816131f3565b92915050565b60006020828403121561323557613234613069565b5b60006132438482850161320a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132778261324c565b9050919050565b6132878161326c565b82525050565b60006020820190506132a2600083018461327e565b92915050565b6132b18161326c565b81146132bc57600080fd5b50565b6000813590506132ce816132a8565b92915050565b600080604083850312156132eb576132ea613069565b5b60006132f9858286016132bf565b925050602061330a8582860161320a565b9150509250929050565b61331d816131e9565b82525050565b60006020820190506133386000830184613314565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126133635761336261333e565b5b8235905067ffffffffffffffff8111156133805761337f613343565b5b60208301915083602082028301111561339c5761339b613348565b5b9250929050565b60008083601f8401126133b9576133b861333e565b5b8235905067ffffffffffffffff8111156133d6576133d5613343565b5b6020830191508360208202830111156133f2576133f1613348565b5b9250929050565b6000806000806040858703121561341357613412613069565b5b600085013567ffffffffffffffff8111156134315761343061306e565b5b61343d8782880161334d565b9450945050602085013567ffffffffffffffff8111156134605761345f61306e565b5b61346c878288016133a3565b925092505092959194509250565b60008060006060848603121561349357613492613069565b5b60006134a1868287016132bf565b93505060206134b2868287016132bf565b92505060406134c38682870161320a565b9150509250925092565b6000602082840312156134e3576134e2613069565b5b60006134f1848285016132bf565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135378261317d565b810181811067ffffffffffffffff82111715613556576135556134ff565b5b80604052505050565b600061356961305f565b9050613575828261352e565b919050565b600067ffffffffffffffff821115613595576135946134ff565b5b61359e8261317d565b9050602081019050919050565b82818337600083830152505050565b60006135cd6135c88461357a565b61355f565b9050828152602081018484840111156135e9576135e86134fa565b5b6135f48482856135ab565b509392505050565b600082601f8301126136115761361061333e565b5b81356136218482602086016135ba565b91505092915050565b6000602082840312156136405761363f613069565b5b600082013567ffffffffffffffff81111561365e5761365d61306e565b5b61366a848285016135fc565b91505092915050565b6000806020838503121561368a57613689613069565b5b600083013567ffffffffffffffff8111156136a8576136a761306e565b5b6136b48582860161334d565b92509250509250929050565b6136c9816130f8565b81146136d457600080fd5b50565b6000813590506136e6816136c0565b92915050565b6000806040838503121561370357613702613069565b5b6000613711858286016132bf565b9250506020613722858286016136d7565b9150509250929050565b600067ffffffffffffffff821115613747576137466134ff565b5b6137508261317d565b9050602081019050919050565b600061377061376b8461372c565b61355f565b90508281526020810184848401111561378c5761378b6134fa565b5b6137978482856135ab565b509392505050565b600082601f8301126137b4576137b361333e565b5b81356137c484826020860161375d565b91505092915050565b600080600080608085870312156137e7576137e6613069565b5b60006137f5878288016132bf565b9450506020613806878288016132bf565b93505060406138178782880161320a565b925050606085013567ffffffffffffffff8111156138385761383761306e565b5b6138448782880161379f565b91505092959194509250565b6000806040838503121561386757613866613069565b5b6000613875858286016132bf565b9250506020613886858286016132bf565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806138d757607f821691505b602082108114156138eb576138ea613890565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061394d602c83613139565b9150613958826138f1565b604082019050919050565b6000602082019050818103600083015261397c81613940565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006139df602183613139565b91506139ea82613983565b604082019050919050565b60006020820190508181036000830152613a0e816139d2565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613a71603883613139565b9150613a7c82613a15565b604082019050919050565b60006020820190508181036000830152613aa081613a64565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613add602083613139565b9150613ae882613aa7565b602082019050919050565b60006020820190508181036000830152613b0c81613ad0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613b7c826131e9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613baf57613bae613b42565b5b600182019050919050565b6000613bc5826131e9565b9150613bd0836131e9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c0557613c04613b42565b5b828201905092915050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613c6c603183613139565b9150613c7782613c10565b604082019050919050565b60006020820190508181036000830152613c9b81613c5f565b9050919050565b7f4e6f20646973747269627574696e67204c697a6172647320756e74696c20707260008201527f6f76656e616e63652069732065737461626c69736865642e0000000000000000602082015250565b6000613cfe603883613139565b9150613d0982613ca2565b604082019050919050565b60006020820190508181036000830152613d2d81613cf1565b9050919050565b6000613d3f826131e9565b9150613d4a836131e9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d8357613d82613b42565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613dc8826131e9565b9150613dd3836131e9565b925082613de357613de2613d8e565b5b828204905092915050565b7f4e6f77206e6f772c205b52454441435445445d2c20646f206e6f7420676f206160008201527f6e642074727920746f20706c617920676f642e2e2e74776963652e0000000000602082015250565b6000613e4a603b83613139565b9150613e5582613dee565b604082019050919050565b60006020820190508181036000830152613e7981613e3d565b9050919050565b7f412073616c6520706572696f64206d7573742062652061637469766520746f2060008201527f636c61696d000000000000000000000000000000000000000000000000000000602082015250565b6000613edc602583613139565b9150613ee782613e80565b604082019050919050565b60006020820190508181036000830152613f0b81613ecf565b9050919050565b7f4e6f20636c61696d20617661696c61626c6520666f722074686973206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613f6e602383613139565b9150613f7982613f12565b604082019050919050565b60006020820190508181036000830152613f9d81613f61565b9050919050565b7f436c61696d20776f756c6420657863656564206d617820737570706c79206f6660008201527f20746f6b656e7300000000000000000000000000000000000000000000000000602082015250565b6000614000602783613139565b915061400b82613fa4565b604082019050919050565b6000602082019050818103600083015261402f81613ff3565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614092602983613139565b915061409d82614036565b604082019050919050565b600060208201905081810360008301526140c181614085565b9050919050565b7f4f6e6c79206f6e63652c206576656e20666f7220796f75205b5245444143544560008201527f445d000000000000000000000000000000000000000000000000000000000000602082015250565b6000614124602283613139565b915061412f826140c8565b604082019050919050565b6000602082019050818103600083015261415381614117565b9050919050565b7f596f752068617665206d697373656420796f7572206368616e63652c205b524560008201527f4441435445445d2e000000000000000000000000000000000000000000000000602082015250565b60006141b6602883613139565b91506141c18261415a565b604082019050919050565b600060208201905081810360008301526141e5816141a9565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614248602a83613139565b9150614253826141ec565b604082019050919050565b600060208201905081810360008301526142778161423b565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b60006142b4601b83613139565b91506142bf8261427e565b602082019050919050565b600060208201905081810360008301526142e3816142a7565b9050919050565b7f496e76616c696420707572636861736520616d6f756e74000000000000000000600082015250565b6000614320601783613139565b915061432b826142ea565b602082019050919050565b6000602082019050818103600083015261434f81614313565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b60006143b2602a83613139565b91506143bd82614356565b604082019050919050565b600060208201905081810360008301526143e1816143a5565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b600061441e601f83613139565b9150614429826143e8565b602082019050919050565b6000602082019050818103600083015261444d81614411565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061448a601983613139565b915061449582614454565b602082019050919050565b600060208201905081810360008301526144b98161447d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061451c602f83613139565b9150614527826144c0565b604082019050919050565b6000602082019050818103600083015261454b8161450f565b9050919050565b600081905092915050565b60006145688261312e565b6145728185614552565b935061458281856020860161314a565b80840191505092915050565b600061459a828561455d565b91506145a6828461455d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061460e602683613139565b9150614619826145b2565b604082019050919050565b6000602082019050818103600083015261463d81614601565b9050919050565b7f50726573616c65206d7573742062652061637469766520746f206d696e740000600082015250565b600061467a601e83613139565b915061468582614644565b602082019050919050565b600060208201905081810360008301526146a98161466d565b9050919050565b7f4e6f20746f6b656e7320726573657276656420666f722074686973206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061470c602383613139565b9150614717826146b0565b604082019050919050565b6000602082019050818103600083015261473b816146ff565b9050919050565b7f43616e2774206d696e74206d6f7265207468616e207265736572766564000000600082015250565b6000614778601d83613139565b915061478382614742565b602082019050919050565b600060208201905081810360008301526147a78161476b565b9050919050565b60006147b9826131e9565b91506147c4836131e9565b9250828210156147d7576147d6613b42565b5b828203905092915050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061483e602c83613139565b9150614849826147e2565b604082019050919050565b6000602082019050818103600083015261486d81614831565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006148d0602983613139565b91506148db82614874565b604082019050919050565b600060208201905081810360008301526148ff816148c3565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614962602483613139565b915061496d82614906565b604082019050919050565b6000602082019050818103600083015261499181614955565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006149f4603283613139565b91506149ff82614998565b604082019050919050565b60006020820190508181036000830152614a23816149e7565b9050919050565b6000614a35826131e9565b9150614a40836131e9565b925082614a5057614a4f613d8e565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614a8282614a5b565b614a8c8185614a66565b9350614a9c81856020860161314a565b614aa58161317d565b840191505092915050565b6000608082019050614ac5600083018761327e565b614ad2602083018661327e565b614adf6040830185613314565b8181036060830152614af18184614a77565b905095945050505050565b600081519050614b0b8161309f565b92915050565b600060208284031215614b2757614b26613069565b5b6000614b3584828501614afc565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614b74602083613139565b9150614b7f82614b3e565b602082019050919050565b60006020820190508181036000830152614ba381614b67565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614be0601c83613139565b9150614beb82614baa565b602082019050919050565b60006020820190508181036000830152614c0f81614bd3565b905091905056fea2646970667358221220993bd0920ed0a6cb818810dd4362e788cf7057518faae4722d4d8e8ff1ce6b7b64736f6c63430008090033

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.