ETH Price: $3,178.46 (-8.42%)
Gas: 2 Gwei

Token

Tiramisu Recipe by STILLZ (TMISU)
 

Overview

Max Total Supply

0 TMISU

Holders

668

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 TMISU
0x85c747c576116196236c7152b96184f6cd154659
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Tiramisu

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : Tiramisu.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.4;

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

contract Tiramisu is ERC721, Ownable {
    using Strings for uint256;

    string public baseTokenURI;
    mapping(address => bool) public claimedWL; // stores addresses that have claimed whitelisted tokens

    uint64 public constant PRICE = 0.05 ether;
    bytes32 public root; // merkle root set in constructor
    uint16 public tokenSupply;
    uint16 public constant MAX_SUPPLY = 1000;
    bool public premintPhase = true;

    address public constant ADDR_80 = 0x95645e9fCfEe7882DA368963d5A460308df24DD6;
    address public constant ADDR_20 = 0x705a47eBC6fCE487a3C64A2dA64cE2E3B8b2EF55;

    constructor(string memory baseURI, bytes32 initialRoot) ERC721('Tiramisu Recipe by STILLZ', 'TMISU') {
        baseTokenURI = baseURI;

        uint16 mintIndex = tokenSupply;
        for (uint16 i; i < 10; i++) {
            _incrementTokenSupply();
            _safeMint(ADDR_80, mintIndex + i);
        }

        setMerkleRoot(initialRoot);
    }

    /// @dev minting tokens after the premint phase
    function mint() external payable {
        require(!premintPhase, 'premint phase');
        require(msg.value == PRICE, 'incorrect ether amount supplied');
        issueToken(msg.sender);
    }

    /// @dev issues token to recipient
    function issueToken(address recipient) private {
        uint16 mintIndex = tokenSupply;
        require(mintIndex < MAX_SUPPLY, 'exceeds token supply');
        _incrementTokenSupply();
        _safeMint(recipient, mintIndex);
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        string memory json = ".json";
        string memory baseURI = baseTokenURI;
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), json)) : "";
    }

    function isApprovedForAll(address owner, address operator) public view override returns (bool) {
        return (operator == 0x7Be8076f4EA4A4AD08075C2508e481d6C946D12b) ?
        true
        :
        super.isApprovedForAll(owner, operator);
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0);
        (bool status1,) = ADDR_80.call{value : (balance * 8) / 10}("");
        (bool status2,) = ADDR_20.call{value : (balance * 2) / 10}("");
        require(status1 == true && status2 == true, 'withdraw failed');
    }

    function setIsPremintPhase(bool _isPremintPhase) public onlyOwner {
        premintPhase = _isPremintPhase;
    }

    function getTokensLeft() public view returns (uint16) {
        return MAX_SUPPLY - tokenSupply;
    }

    function _incrementTokenSupply() private {
        unchecked {
            tokenSupply += 1;
        }
    }


    function setMerkleRoot(bytes32 newRoot) public onlyOwner {
        root = newRoot;
    }

    function _leaf(address account) private pure returns (bytes32) {
        return keccak256(abi.encodePacked(account));
    }

    function _verify(bytes32 leaf, bytes32[] memory proof) private view returns (bool) {
        return MerkleProof.verify(proof, root, leaf);
    }

    /// @dev allows whitelisted users to claim their tokens during the premint phase
    function redeem(bytes32[] calldata proof) external {
        require(premintPhase, 'not a premint phase');
        require(_verify(_leaf(msg.sender), proof), "invalid merkle proof");
        require(!claimedWL[msg.sender], "already claimed");
        claimedWL[msg.sender] = true;
        issueToken(msg.sender);
    }
}

File 2 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

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 {
        _setApprovalForAll(_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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 3 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 12 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 5 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 7 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 8 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 10 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 11 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 12 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"bytes32","name":"initialRoot","type":"bytes32"}],"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":"ADDR_20","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADDR_80","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimedWL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokensLeft","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","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":"premintPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPremintPhase","type":"bool"}],"name":"setIsPremintPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"setMerkleRoot","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":"tokenSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600a60026101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040516200511b3803806200511b8339818101604052810190620000529190620009ea565b6040518060400160405280601981526020017f546972616d69737520526563697065206279205354494c4c5a000000000000008152506040518060400160405280600581526020017f544d4953550000000000000000000000000000000000000000000000000000008152508160009080519060200190620000d69291906200086e565b508060019080519060200190620000ef9291906200086e565b5050506200011262000106620001c960201b60201c565b620001d160201b60201c565b81600790805190602001906200012a9291906200086e565b506000600a60009054906101000a900461ffff16905060005b600a8161ffff161015620001ae57620001616200029760201b60201c565b620001987395645e9fcfee7882da368963d5a460308df24dd6828462000188919062000cab565b61ffff16620002ca60201b60201c565b8080620001a59062000e6b565b91505062000143565b50620001c082620002f060201b60201c565b50505062001037565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600a60008282829054906101000a900461ffff160192506101000a81548161ffff021916908361ffff160217905550565b620002ec8282604051806020016040528060008152506200038960201b60201c565b5050565b62000300620001c960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000326620003f760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200037f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003769062000bfd565b60405180910390fd5b8060098190555050565b6200039b83836200042160201b60201c565b620003b060008484846200061b60201b60201c565b620003f2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e99062000b97565b60405180910390fd5b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000494576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200048b9062000bdb565b60405180910390fd5b620004a581620007d560201b60201c565b15620004e8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004df9062000bb9565b60405180910390fd5b620004fc600083836200084160201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200054e919062000cea565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a462000617600083836200084660201b60201c565b5050565b6000620006498473ffffffffffffffffffffffffffffffffffffffff166200084b60201b620018731760201c565b15620007c8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200067b620001c960201b60201c565b8786866040518563ffffffff1660e01b81526004016200069f949392919062000b43565b602060405180830381600087803b158015620006ba57600080fd5b505af1925050508015620006ee57506040513d601f19601f82011682018060405250810190620006eb9190620009be565b60015b62000777573d806000811462000721576040519150601f19603f3d011682016040523d82523d6000602084013e62000726565b606091505b506000815114156200076f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007669062000b97565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620007cd565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546200087c9062000dff565b90600052602060002090601f016020900481019282620008a05760008555620008ec565b82601f10620008bb57805160ff1916838001178555620008ec565b82800160010185558215620008ec579182015b82811115620008eb578251825591602001919060010190620008ce565b5b509050620008fb9190620008ff565b5090565b5b808211156200091a57600081600090555060010162000900565b5090565b6000620009356200092f8462000c48565b62000c1f565b9050828152602081018484840111156200094e57600080fd5b6200095b84828562000dc9565b509392505050565b600081519050620009748162001003565b92915050565b6000815190506200098b816200101d565b92915050565b600082601f830112620009a357600080fd5b8151620009b58482602086016200091e565b91505092915050565b600060208284031215620009d157600080fd5b6000620009e1848285016200097a565b91505092915050565b60008060408385031215620009fe57600080fd5b600083015167ffffffffffffffff81111562000a1957600080fd5b62000a278582860162000991565b925050602062000a3a8582860162000963565b9150509250929050565b62000a4f8162000d47565b82525050565b600062000a628262000c7e565b62000a6e818562000c89565b935062000a8081856020860162000dc9565b62000a8b8162000f28565b840191505092915050565b600062000aa560328362000c9a565b915062000ab28262000f39565b604082019050919050565b600062000acc601c8362000c9a565b915062000ad98262000f88565b602082019050919050565b600062000af360208362000c9a565b915062000b008262000fb1565b602082019050919050565b600062000b1a60208362000c9a565b915062000b278262000fda565b602082019050919050565b62000b3d8162000dbf565b82525050565b600060808201905062000b5a600083018762000a44565b62000b69602083018662000a44565b62000b78604083018562000b32565b818103606083015262000b8c818462000a55565b905095945050505050565b6000602082019050818103600083015262000bb28162000a96565b9050919050565b6000602082019050818103600083015262000bd48162000abd565b9050919050565b6000602082019050818103600083015262000bf68162000ae4565b9050919050565b6000602082019050818103600083015262000c188162000b0b565b9050919050565b600062000c2b62000c3e565b905062000c39828262000e35565b919050565b6000604051905090565b600067ffffffffffffffff82111562000c665762000c6562000ef9565b5b62000c718262000f28565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000cb88262000d91565b915062000cc58362000d91565b92508261ffff0382111562000cdf5762000cde62000e9b565b5b828201905092915050565b600062000cf78262000dbf565b915062000d048362000dbf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d3c5762000d3b62000e9b565b5b828201905092915050565b600062000d548262000d9f565b9050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000de957808201518184015260208101905062000dcc565b8381111562000df9576000848401525b50505050565b6000600282049050600182168062000e1857607f821691505b6020821081141562000e2f5762000e2e62000eca565b5b50919050565b62000e408262000f28565b810181811067ffffffffffffffff8211171562000e625762000e6162000ef9565b5b80604052505050565b600062000e788262000d91565b915061ffff82141562000e905762000e8f62000e9b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6200100e8162000d5b565b81146200101a57600080fd5b50565b620010288162000d65565b81146200103457600080fd5b50565b6140d480620010476000396000f3fe6080604052600436106101e35760003560e01c80637824407f11610102578063ba1dc4e211610095578063de5f986611610064578063de5f9866146106ad578063e985e9c5146106d8578063ebf0c71714610715578063f2fde38b14610740576101e3565b8063ba1dc4e2146105dd578063bd612d7014610608578063c87b56dd14610645578063d547cfb714610682576101e3565b806395d89b41116100d157806395d89b4114610535578063a22cb46514610560578063b88d4fde14610589578063b8e39879146105b2576101e3565b80637824407f1461048b5780637cb64759146104b65780638d859f3e146104df5780638da5cb5b1461050a576101e3565b80633ccfd60b1161017a5780635c9b7571116101495780635c9b7571146103d15780636352211e146103fa57806370a0823114610437578063715018a614610474576101e3565b80633ccfd60b1461033f57806342842e0e14610356578063524c2a041461037f57806355f804b3146103a8576101e3565b80631249c58b116101b65780631249c58b146102b6578063224b1fd3146102c057806323b872dd146102eb57806332cb6b0c14610314576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612c6d565b610769565b60405161021c919061324d565b60405180910390f35b34801561023157600080fd5b5061023a61084b565b6040516102479190613283565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612d00565b6108dd565b60405161028491906131e6565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612b9a565b610962565b005b6102be610a7a565b005b3480156102cc57600080fd5b506102d5610b28565b6040516102e291906131e6565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d9190612a94565b610b40565b005b34801561032057600080fd5b50610329610ba0565b6040516103369190613585565b60405180910390f35b34801561034b57600080fd5b50610354610ba6565b005b34801561036257600080fd5b5061037d60048036038101906103789190612a94565b610dc0565b005b34801561038b57600080fd5b506103a660048036038101906103a19190612bd6565b610de0565b005b3480156103b457600080fd5b506103cf60048036038101906103ca9190612cbf565b610fb3565b005b3480156103dd57600080fd5b506103f860048036038101906103f39190612c1b565b611049565b005b34801561040657600080fd5b50610421600480360381019061041c9190612d00565b6110e2565b60405161042e91906131e6565b60405180910390f35b34801561044357600080fd5b5061045e60048036038101906104599190612a2f565b611194565b60405161046b91906135a0565b60405180910390f35b34801561048057600080fd5b5061048961124c565b005b34801561049757600080fd5b506104a06112d4565b6040516104ad9190613585565b60405180910390f35b3480156104c257600080fd5b506104dd60048036038101906104d89190612c44565b6112e8565b005b3480156104eb57600080fd5b506104f461136e565b60405161050191906135bb565b60405180910390f35b34801561051657600080fd5b5061051f611379565b60405161052c91906131e6565b60405180910390f35b34801561054157600080fd5b5061054a6113a3565b6040516105579190613283565b60405180910390f35b34801561056c57600080fd5b5061058760048036038101906105829190612b5e565b611435565b005b34801561059557600080fd5b506105b060048036038101906105ab9190612ae3565b61144b565b005b3480156105be57600080fd5b506105c76114ad565b6040516105d491906131e6565b60405180910390f35b3480156105e957600080fd5b506105f26114c5565b6040516105ff919061324d565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a9190612a2f565b6114d8565b60405161063c919061324d565b60405180910390f35b34801561065157600080fd5b5061066c60048036038101906106679190612d00565b6114f8565b6040516106799190613283565b60405180910390f35b34801561068e57600080fd5b5061069761165f565b6040516106a49190613283565b60405180910390f35b3480156106b957600080fd5b506106c26116ed565b6040516106cf9190613585565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa9190612a58565b611712565b60405161070c919061324d565b60405180910390f35b34801561072157600080fd5b5061072a611775565b6040516107379190613268565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190612a2f565b61177b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610844575061084382611896565b5b9050919050565b60606000805461085a906138d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610886906138d6565b80156108d35780601f106108a8576101008083540402835291602001916108d3565b820191906000526020600020905b8154815290600101906020018083116108b657829003601f168201915b5050505050905090565b60006108e882611900565b610927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091e906134a5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096d826110e2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d590613505565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109fd61196c565b73ffffffffffffffffffffffffffffffffffffffff161480610a2c5750610a2b81610a2661196c565b611712565b5b610a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6290613425565b60405180910390fd5b610a758383611974565b505050565b600a60029054906101000a900460ff1615610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac190613545565b60405180910390fd5b66b1a2bc2ec5000067ffffffffffffffff163414610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1490613385565b60405180910390fd5b610b2633611a2d565b565b73705a47ebc6fce487a3c64a2da64ce2e3b8b2ef5581565b610b51610b4b61196c565b82611aa8565b610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8790613525565b60405180910390fd5b610b9b838383611b86565b505050565b6103e881565b610bae61196c565b73ffffffffffffffffffffffffffffffffffffffff16610bcc611379565b73ffffffffffffffffffffffffffffffffffffffff1614610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c19906134c5565b60405180910390fd5b600047905060008111610c3457600080fd5b60007395645e9fcfee7882da368963d5a460308df24dd673ffffffffffffffffffffffffffffffffffffffff16600a600884610c709190613732565b610c7a9190613701565b604051610c86906131d1565b60006040518083038185875af1925050503d8060008114610cc3576040519150601f19603f3d011682016040523d82523d6000602084013e610cc8565b606091505b50509050600073705a47ebc6fce487a3c64a2da64ce2e3b8b2ef5573ffffffffffffffffffffffffffffffffffffffff16600a600285610d089190613732565b610d129190613701565b604051610d1e906131d1565b60006040518083038185875af1925050503d8060008114610d5b576040519150601f19603f3d011682016040523d82523d6000602084013e610d60565b606091505b5050905060011515821515148015610d7c575060011515811515145b610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db290613565565b60405180910390fd5b505050565b610ddb8383836040518060200160405280600081525061144b565b505050565b600a60029054906101000a900460ff16610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e26906133e5565b60405180910390fd5b610e82610e3b33611ded565b838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050611e1d565b610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb890613305565b60405180910390fd5b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4590613365565b60405180910390fd5b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610faf33611a2d565b5050565b610fbb61196c565b73ffffffffffffffffffffffffffffffffffffffff16610fd9611379565b73ffffffffffffffffffffffffffffffffffffffff161461102f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611026906134c5565b60405180910390fd5b80600790805190602001906110459291906127f4565b5050565b61105161196c565b73ffffffffffffffffffffffffffffffffffffffff1661106f611379565b73ffffffffffffffffffffffffffffffffffffffff16146110c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bc906134c5565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561118b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118290613465565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc90613445565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61125461196c565b73ffffffffffffffffffffffffffffffffffffffff16611272611379565b73ffffffffffffffffffffffffffffffffffffffff16146112c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bf906134c5565b60405180910390fd5b6112d26000611e34565b565b600a60009054906101000a900461ffff1681565b6112f061196c565b73ffffffffffffffffffffffffffffffffffffffff1661130e611379565b73ffffffffffffffffffffffffffffffffffffffff1614611364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135b906134c5565b60405180910390fd5b8060098190555050565b66b1a2bc2ec5000081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546113b2906138d6565b80601f01602080910402602001604051908101604052809291908181526020018280546113de906138d6565b801561142b5780601f106114005761010080835404028352916020019161142b565b820191906000526020600020905b81548152906001019060200180831161140e57829003601f168201915b5050505050905090565b61144761144061196c565b8383611efa565b5050565b61145c61145661196c565b83611aa8565b61149b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149290613525565b60405180910390fd5b6114a784848484612067565b50505050565b7395645e9fcfee7882da368963d5a460308df24dd681565b600a60029054906101000a900460ff1681565b60086020528060005260406000206000915054906101000a900460ff1681565b606061150382611900565b611542576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611539906134e5565b60405180910390fd5b60006040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250905060006007805461158b906138d6565b80601f01602080910402602001604051908101604052809291908181526020018280546115b7906138d6565b80156116045780601f106115d957610100808354040283529160200191611604565b820191906000526020600020905b8154815290600101906020018083116115e757829003601f168201915b5050505050905060008151116116295760405180602001604052806000815250611656565b80611633856120c3565b83604051602001611646939291906131a0565b6040516020818303038152906040525b92505050919050565b6007805461166c906138d6565b80601f0160208091040260200160405190810160405280929190818152602001828054611698906138d6565b80156116e55780601f106116ba576101008083540402835291602001916116e5565b820191906000526020600020905b8154815290600101906020018083116116c857829003601f168201915b505050505081565b6000600a60009054906101000a900461ffff166103e861170d919061378c565b905090565b6000737be8076f4ea4a4ad08075c2508e481d6c946d12b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461176a576117658383612270565b61176d565b60015b905092915050565b60095481565b61178361196c565b73ffffffffffffffffffffffffffffffffffffffff166117a1611379565b73ffffffffffffffffffffffffffffffffffffffff16146117f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ee906134c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185e906132e5565b60405180910390fd5b61187081611e34565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119e7836110e2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000600a60009054906101000a900461ffff1690506103e861ffff168161ffff1610611a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a85906132a5565b60405180910390fd5b611a96612304565b611aa4828261ffff16612337565b5050565b6000611ab382611900565b611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae990613405565b60405180910390fd5b6000611afd836110e2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b6c57508373ffffffffffffffffffffffffffffffffffffffff16611b54846108dd565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b7d5750611b7c8185611712565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ba6826110e2565b73ffffffffffffffffffffffffffffffffffffffff1614611bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf390613325565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c63906133a5565b60405180910390fd5b611c77838383612355565b611c82600082611974565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cd291906137c0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d2991906136ab565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611de883838361235a565b505050565b600081604051602001611e009190613185565b604051602081830303815290604052805190602001209050919050565b6000611e2c826009548561235f565b905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f60906133c5565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161205a919061324d565b60405180910390a3505050565b612072848484611b86565b61207e84848484612376565b6120bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b4906132c5565b60405180910390fd5b50505050565b6060600082141561210b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061226b565b600082905060005b6000821461213d57808061212690613939565b915050600a826121369190613701565b9150612113565b60008167ffffffffffffffff81111561217f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121b15781602001600182028036833780820191505090505b5090505b60008514612264576001826121ca91906137c0565b9150600a856121d991906139a6565b60306121e591906136ab565b60f81b818381518110612221577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561225d9190613701565b94506121b5565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6001600a60008282829054906101000a900461ffff160192506101000a81548161ffff021916908361ffff160217905550565b61235182826040518060200160405280600081525061250d565b5050565b505050565b505050565b60008261236c8584612568565b1490509392505050565b60006123978473ffffffffffffffffffffffffffffffffffffffff16611873565b15612500578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123c061196c565b8786866040518563ffffffff1660e01b81526004016123e29493929190613201565b602060405180830381600087803b1580156123fc57600080fd5b505af192505050801561242d57506040513d601f19601f8201168201806040525081019061242a9190612c96565b60015b6124b0573d806000811461245d576040519150601f19603f3d011682016040523d82523d6000602084013e612462565b606091505b506000815114156124a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249f906132c5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612505565b600190505b949350505050565b6125178383612603565b6125246000848484612376565b612563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255a906132c5565b60405180910390fd5b505050565b60008082905060005b84518110156125f85760008582815181106125b5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116125d7576125d083826127dd565b92506125e4565b6125e181846127dd565b92505b5080806125f090613939565b915050612571565b508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266a90613485565b60405180910390fd5b61267c81611900565b156126bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b390613345565b60405180910390fd5b6126c860008383612355565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461271891906136ab565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127d96000838361235a565b5050565b600082600052816020526040600020905092915050565b828054612800906138d6565b90600052602060002090601f0160209004810192826128225760008555612869565b82601f1061283b57805160ff1916838001178555612869565b82800160010185558215612869579182015b8281111561286857825182559160200191906001019061284d565b5b509050612876919061287a565b5090565b5b8082111561289357600081600090555060010161287b565b5090565b60006128aa6128a5846135fb565b6135d6565b9050828152602081018484840111156128c257600080fd5b6128cd848285613894565b509392505050565b60006128e86128e38461362c565b6135d6565b90508281526020810184848401111561290057600080fd5b61290b848285613894565b509392505050565b6000813590506129228161402b565b92915050565b60008083601f84011261293a57600080fd5b8235905067ffffffffffffffff81111561295357600080fd5b60208301915083602082028301111561296b57600080fd5b9250929050565b60008135905061298181614042565b92915050565b60008135905061299681614059565b92915050565b6000813590506129ab81614070565b92915050565b6000815190506129c081614070565b92915050565b600082601f8301126129d757600080fd5b81356129e7848260208601612897565b91505092915050565b600082601f830112612a0157600080fd5b8135612a118482602086016128d5565b91505092915050565b600081359050612a2981614087565b92915050565b600060208284031215612a4157600080fd5b6000612a4f84828501612913565b91505092915050565b60008060408385031215612a6b57600080fd5b6000612a7985828601612913565b9250506020612a8a85828601612913565b9150509250929050565b600080600060608486031215612aa957600080fd5b6000612ab786828701612913565b9350506020612ac886828701612913565b9250506040612ad986828701612a1a565b9150509250925092565b60008060008060808587031215612af957600080fd5b6000612b0787828801612913565b9450506020612b1887828801612913565b9350506040612b2987828801612a1a565b925050606085013567ffffffffffffffff811115612b4657600080fd5b612b52878288016129c6565b91505092959194509250565b60008060408385031215612b7157600080fd5b6000612b7f85828601612913565b9250506020612b9085828601612972565b9150509250929050565b60008060408385031215612bad57600080fd5b6000612bbb85828601612913565b9250506020612bcc85828601612a1a565b9150509250929050565b60008060208385031215612be957600080fd5b600083013567ffffffffffffffff811115612c0357600080fd5b612c0f85828601612928565b92509250509250929050565b600060208284031215612c2d57600080fd5b6000612c3b84828501612972565b91505092915050565b600060208284031215612c5657600080fd5b6000612c6484828501612987565b91505092915050565b600060208284031215612c7f57600080fd5b6000612c8d8482850161299c565b91505092915050565b600060208284031215612ca857600080fd5b6000612cb6848285016129b1565b91505092915050565b600060208284031215612cd157600080fd5b600082013567ffffffffffffffff811115612ceb57600080fd5b612cf7848285016129f0565b91505092915050565b600060208284031215612d1257600080fd5b6000612d2084828501612a1a565b91505092915050565b612d32816137f4565b82525050565b612d49612d44826137f4565b613982565b82525050565b612d5881613806565b82525050565b612d6781613812565b82525050565b6000612d788261365d565b612d828185613673565b9350612d928185602086016138a3565b612d9b81613a93565b840191505092915050565b6000612db182613668565b612dbb818561368f565b9350612dcb8185602086016138a3565b612dd481613a93565b840191505092915050565b6000612dea82613668565b612df481856136a0565b9350612e048185602086016138a3565b80840191505092915050565b6000612e1d60148361368f565b9150612e2882613ab1565b602082019050919050565b6000612e4060328361368f565b9150612e4b82613ada565b604082019050919050565b6000612e6360268361368f565b9150612e6e82613b29565b604082019050919050565b6000612e8660148361368f565b9150612e9182613b78565b602082019050919050565b6000612ea960258361368f565b9150612eb482613ba1565b604082019050919050565b6000612ecc601c8361368f565b9150612ed782613bf0565b602082019050919050565b6000612eef600f8361368f565b9150612efa82613c19565b602082019050919050565b6000612f12601f8361368f565b9150612f1d82613c42565b602082019050919050565b6000612f3560248361368f565b9150612f4082613c6b565b604082019050919050565b6000612f5860198361368f565b9150612f6382613cba565b602082019050919050565b6000612f7b60138361368f565b9150612f8682613ce3565b602082019050919050565b6000612f9e602c8361368f565b9150612fa982613d0c565b604082019050919050565b6000612fc160388361368f565b9150612fcc82613d5b565b604082019050919050565b6000612fe4602a8361368f565b9150612fef82613daa565b604082019050919050565b600061300760298361368f565b915061301282613df9565b604082019050919050565b600061302a60208361368f565b915061303582613e48565b602082019050919050565b600061304d602c8361368f565b915061305882613e71565b604082019050919050565b600061307060208361368f565b915061307b82613ec0565b602082019050919050565b6000613093602f8361368f565b915061309e82613ee9565b604082019050919050565b60006130b660218361368f565b91506130c182613f38565b604082019050919050565b60006130d9600083613684565b91506130e482613f87565b600082019050919050565b60006130fc60318361368f565b915061310782613f8a565b604082019050919050565b600061311f600d8361368f565b915061312a82613fd9565b602082019050919050565b6000613142600f8361368f565b915061314d82614002565b602082019050919050565b61316181613848565b82525050565b61317081613876565b82525050565b61317f81613880565b82525050565b60006131918284612d38565b60148201915081905092915050565b60006131ac8286612ddf565b91506131b88285612ddf565b91506131c48284612ddf565b9150819050949350505050565b60006131dc826130cc565b9150819050919050565b60006020820190506131fb6000830184612d29565b92915050565b60006080820190506132166000830187612d29565b6132236020830186612d29565b6132306040830185613167565b81810360608301526132428184612d6d565b905095945050505050565b60006020820190506132626000830184612d4f565b92915050565b600060208201905061327d6000830184612d5e565b92915050565b6000602082019050818103600083015261329d8184612da6565b905092915050565b600060208201905081810360008301526132be81612e10565b9050919050565b600060208201905081810360008301526132de81612e33565b9050919050565b600060208201905081810360008301526132fe81612e56565b9050919050565b6000602082019050818103600083015261331e81612e79565b9050919050565b6000602082019050818103600083015261333e81612e9c565b9050919050565b6000602082019050818103600083015261335e81612ebf565b9050919050565b6000602082019050818103600083015261337e81612ee2565b9050919050565b6000602082019050818103600083015261339e81612f05565b9050919050565b600060208201905081810360008301526133be81612f28565b9050919050565b600060208201905081810360008301526133de81612f4b565b9050919050565b600060208201905081810360008301526133fe81612f6e565b9050919050565b6000602082019050818103600083015261341e81612f91565b9050919050565b6000602082019050818103600083015261343e81612fb4565b9050919050565b6000602082019050818103600083015261345e81612fd7565b9050919050565b6000602082019050818103600083015261347e81612ffa565b9050919050565b6000602082019050818103600083015261349e8161301d565b9050919050565b600060208201905081810360008301526134be81613040565b9050919050565b600060208201905081810360008301526134de81613063565b9050919050565b600060208201905081810360008301526134fe81613086565b9050919050565b6000602082019050818103600083015261351e816130a9565b9050919050565b6000602082019050818103600083015261353e816130ef565b9050919050565b6000602082019050818103600083015261355e81613112565b9050919050565b6000602082019050818103600083015261357e81613135565b9050919050565b600060208201905061359a6000830184613158565b92915050565b60006020820190506135b56000830184613167565b92915050565b60006020820190506135d06000830184613176565b92915050565b60006135e06135f1565b90506135ec8282613908565b919050565b6000604051905090565b600067ffffffffffffffff82111561361657613615613a64565b5b61361f82613a93565b9050602081019050919050565b600067ffffffffffffffff82111561364757613646613a64565b5b61365082613a93565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006136b682613876565b91506136c183613876565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136f6576136f56139d7565b5b828201905092915050565b600061370c82613876565b915061371783613876565b92508261372757613726613a06565b5b828204905092915050565b600061373d82613876565b915061374883613876565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613781576137806139d7565b5b828202905092915050565b600061379782613848565b91506137a283613848565b9250828210156137b5576137b46139d7565b5b828203905092915050565b60006137cb82613876565b91506137d683613876565b9250828210156137e9576137e86139d7565b5b828203905092915050565b60006137ff82613856565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156138c15780820151818401526020810190506138a6565b838111156138d0576000848401525b50505050565b600060028204905060018216806138ee57607f821691505b6020821081141561390257613901613a35565b5b50919050565b61391182613a93565b810181811067ffffffffffffffff821117156139305761392f613a64565b5b80604052505050565b600061394482613876565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613977576139766139d7565b5b600182019050919050565b600061398d82613994565b9050919050565b600061399f82613aa4565b9050919050565b60006139b182613876565b91506139bc83613876565b9250826139cc576139cb613a06565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f6578636565647320746f6b656e20737570706c79000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f696e76616c6964206d65726b6c652070726f6f66000000000000000000000000600082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f616c726561647920636c61696d65640000000000000000000000000000000000600082015250565b7f696e636f727265637420657468657220616d6f756e7420737570706c69656400600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f6e6f742061207072656d696e7420706861736500000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f7072656d696e7420706861736500000000000000000000000000000000000000600082015250565b7f7769746864726177206661696c65640000000000000000000000000000000000600082015250565b614034816137f4565b811461403f57600080fd5b50565b61404b81613806565b811461405657600080fd5b50565b61406281613812565b811461406d57600080fd5b50565b6140798161381c565b811461408457600080fd5b50565b61409081613876565b811461409b57600080fd5b5056fea26469706673582212205690a7852e9489338623b6f8ac18ab71eac7e357bbcede11e9e6eaae33ae927b64736f6c634300080400330000000000000000000000000000000000000000000000000000000000000040e340dcfa13a49cff21769c8a2b1777f7745be66c45017c75b8022e72b68b71280000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5577364e706632424638367551456a3271484e446454416d51323539746e4b453451616668554364326d61782f00000000000000000000

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80637824407f11610102578063ba1dc4e211610095578063de5f986611610064578063de5f9866146106ad578063e985e9c5146106d8578063ebf0c71714610715578063f2fde38b14610740576101e3565b8063ba1dc4e2146105dd578063bd612d7014610608578063c87b56dd14610645578063d547cfb714610682576101e3565b806395d89b41116100d157806395d89b4114610535578063a22cb46514610560578063b88d4fde14610589578063b8e39879146105b2576101e3565b80637824407f1461048b5780637cb64759146104b65780638d859f3e146104df5780638da5cb5b1461050a576101e3565b80633ccfd60b1161017a5780635c9b7571116101495780635c9b7571146103d15780636352211e146103fa57806370a0823114610437578063715018a614610474576101e3565b80633ccfd60b1461033f57806342842e0e14610356578063524c2a041461037f57806355f804b3146103a8576101e3565b80631249c58b116101b65780631249c58b146102b6578063224b1fd3146102c057806323b872dd146102eb57806332cb6b0c14610314576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612c6d565b610769565b60405161021c919061324d565b60405180910390f35b34801561023157600080fd5b5061023a61084b565b6040516102479190613283565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612d00565b6108dd565b60405161028491906131e6565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612b9a565b610962565b005b6102be610a7a565b005b3480156102cc57600080fd5b506102d5610b28565b6040516102e291906131e6565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d9190612a94565b610b40565b005b34801561032057600080fd5b50610329610ba0565b6040516103369190613585565b60405180910390f35b34801561034b57600080fd5b50610354610ba6565b005b34801561036257600080fd5b5061037d60048036038101906103789190612a94565b610dc0565b005b34801561038b57600080fd5b506103a660048036038101906103a19190612bd6565b610de0565b005b3480156103b457600080fd5b506103cf60048036038101906103ca9190612cbf565b610fb3565b005b3480156103dd57600080fd5b506103f860048036038101906103f39190612c1b565b611049565b005b34801561040657600080fd5b50610421600480360381019061041c9190612d00565b6110e2565b60405161042e91906131e6565b60405180910390f35b34801561044357600080fd5b5061045e60048036038101906104599190612a2f565b611194565b60405161046b91906135a0565b60405180910390f35b34801561048057600080fd5b5061048961124c565b005b34801561049757600080fd5b506104a06112d4565b6040516104ad9190613585565b60405180910390f35b3480156104c257600080fd5b506104dd60048036038101906104d89190612c44565b6112e8565b005b3480156104eb57600080fd5b506104f461136e565b60405161050191906135bb565b60405180910390f35b34801561051657600080fd5b5061051f611379565b60405161052c91906131e6565b60405180910390f35b34801561054157600080fd5b5061054a6113a3565b6040516105579190613283565b60405180910390f35b34801561056c57600080fd5b5061058760048036038101906105829190612b5e565b611435565b005b34801561059557600080fd5b506105b060048036038101906105ab9190612ae3565b61144b565b005b3480156105be57600080fd5b506105c76114ad565b6040516105d491906131e6565b60405180910390f35b3480156105e957600080fd5b506105f26114c5565b6040516105ff919061324d565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a9190612a2f565b6114d8565b60405161063c919061324d565b60405180910390f35b34801561065157600080fd5b5061066c60048036038101906106679190612d00565b6114f8565b6040516106799190613283565b60405180910390f35b34801561068e57600080fd5b5061069761165f565b6040516106a49190613283565b60405180910390f35b3480156106b957600080fd5b506106c26116ed565b6040516106cf9190613585565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa9190612a58565b611712565b60405161070c919061324d565b60405180910390f35b34801561072157600080fd5b5061072a611775565b6040516107379190613268565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190612a2f565b61177b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610844575061084382611896565b5b9050919050565b60606000805461085a906138d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610886906138d6565b80156108d35780601f106108a8576101008083540402835291602001916108d3565b820191906000526020600020905b8154815290600101906020018083116108b657829003601f168201915b5050505050905090565b60006108e882611900565b610927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091e906134a5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096d826110e2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d590613505565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109fd61196c565b73ffffffffffffffffffffffffffffffffffffffff161480610a2c5750610a2b81610a2661196c565b611712565b5b610a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6290613425565b60405180910390fd5b610a758383611974565b505050565b600a60029054906101000a900460ff1615610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac190613545565b60405180910390fd5b66b1a2bc2ec5000067ffffffffffffffff163414610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1490613385565b60405180910390fd5b610b2633611a2d565b565b73705a47ebc6fce487a3c64a2da64ce2e3b8b2ef5581565b610b51610b4b61196c565b82611aa8565b610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8790613525565b60405180910390fd5b610b9b838383611b86565b505050565b6103e881565b610bae61196c565b73ffffffffffffffffffffffffffffffffffffffff16610bcc611379565b73ffffffffffffffffffffffffffffffffffffffff1614610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c19906134c5565b60405180910390fd5b600047905060008111610c3457600080fd5b60007395645e9fcfee7882da368963d5a460308df24dd673ffffffffffffffffffffffffffffffffffffffff16600a600884610c709190613732565b610c7a9190613701565b604051610c86906131d1565b60006040518083038185875af1925050503d8060008114610cc3576040519150601f19603f3d011682016040523d82523d6000602084013e610cc8565b606091505b50509050600073705a47ebc6fce487a3c64a2da64ce2e3b8b2ef5573ffffffffffffffffffffffffffffffffffffffff16600a600285610d089190613732565b610d129190613701565b604051610d1e906131d1565b60006040518083038185875af1925050503d8060008114610d5b576040519150601f19603f3d011682016040523d82523d6000602084013e610d60565b606091505b5050905060011515821515148015610d7c575060011515811515145b610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db290613565565b60405180910390fd5b505050565b610ddb8383836040518060200160405280600081525061144b565b505050565b600a60029054906101000a900460ff16610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e26906133e5565b60405180910390fd5b610e82610e3b33611ded565b838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050611e1d565b610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb890613305565b60405180910390fd5b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4590613365565b60405180910390fd5b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610faf33611a2d565b5050565b610fbb61196c565b73ffffffffffffffffffffffffffffffffffffffff16610fd9611379565b73ffffffffffffffffffffffffffffffffffffffff161461102f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611026906134c5565b60405180910390fd5b80600790805190602001906110459291906127f4565b5050565b61105161196c565b73ffffffffffffffffffffffffffffffffffffffff1661106f611379565b73ffffffffffffffffffffffffffffffffffffffff16146110c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bc906134c5565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561118b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118290613465565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc90613445565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61125461196c565b73ffffffffffffffffffffffffffffffffffffffff16611272611379565b73ffffffffffffffffffffffffffffffffffffffff16146112c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bf906134c5565b60405180910390fd5b6112d26000611e34565b565b600a60009054906101000a900461ffff1681565b6112f061196c565b73ffffffffffffffffffffffffffffffffffffffff1661130e611379565b73ffffffffffffffffffffffffffffffffffffffff1614611364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135b906134c5565b60405180910390fd5b8060098190555050565b66b1a2bc2ec5000081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546113b2906138d6565b80601f01602080910402602001604051908101604052809291908181526020018280546113de906138d6565b801561142b5780601f106114005761010080835404028352916020019161142b565b820191906000526020600020905b81548152906001019060200180831161140e57829003601f168201915b5050505050905090565b61144761144061196c565b8383611efa565b5050565b61145c61145661196c565b83611aa8565b61149b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149290613525565b60405180910390fd5b6114a784848484612067565b50505050565b7395645e9fcfee7882da368963d5a460308df24dd681565b600a60029054906101000a900460ff1681565b60086020528060005260406000206000915054906101000a900460ff1681565b606061150382611900565b611542576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611539906134e5565b60405180910390fd5b60006040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250905060006007805461158b906138d6565b80601f01602080910402602001604051908101604052809291908181526020018280546115b7906138d6565b80156116045780601f106115d957610100808354040283529160200191611604565b820191906000526020600020905b8154815290600101906020018083116115e757829003601f168201915b5050505050905060008151116116295760405180602001604052806000815250611656565b80611633856120c3565b83604051602001611646939291906131a0565b6040516020818303038152906040525b92505050919050565b6007805461166c906138d6565b80601f0160208091040260200160405190810160405280929190818152602001828054611698906138d6565b80156116e55780601f106116ba576101008083540402835291602001916116e5565b820191906000526020600020905b8154815290600101906020018083116116c857829003601f168201915b505050505081565b6000600a60009054906101000a900461ffff166103e861170d919061378c565b905090565b6000737be8076f4ea4a4ad08075c2508e481d6c946d12b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461176a576117658383612270565b61176d565b60015b905092915050565b60095481565b61178361196c565b73ffffffffffffffffffffffffffffffffffffffff166117a1611379565b73ffffffffffffffffffffffffffffffffffffffff16146117f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ee906134c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185e906132e5565b60405180910390fd5b61187081611e34565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119e7836110e2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000600a60009054906101000a900461ffff1690506103e861ffff168161ffff1610611a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a85906132a5565b60405180910390fd5b611a96612304565b611aa4828261ffff16612337565b5050565b6000611ab382611900565b611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae990613405565b60405180910390fd5b6000611afd836110e2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b6c57508373ffffffffffffffffffffffffffffffffffffffff16611b54846108dd565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b7d5750611b7c8185611712565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ba6826110e2565b73ffffffffffffffffffffffffffffffffffffffff1614611bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf390613325565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c63906133a5565b60405180910390fd5b611c77838383612355565b611c82600082611974565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cd291906137c0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d2991906136ab565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611de883838361235a565b505050565b600081604051602001611e009190613185565b604051602081830303815290604052805190602001209050919050565b6000611e2c826009548561235f565b905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f60906133c5565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161205a919061324d565b60405180910390a3505050565b612072848484611b86565b61207e84848484612376565b6120bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b4906132c5565b60405180910390fd5b50505050565b6060600082141561210b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061226b565b600082905060005b6000821461213d57808061212690613939565b915050600a826121369190613701565b9150612113565b60008167ffffffffffffffff81111561217f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121b15781602001600182028036833780820191505090505b5090505b60008514612264576001826121ca91906137c0565b9150600a856121d991906139a6565b60306121e591906136ab565b60f81b818381518110612221577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561225d9190613701565b94506121b5565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6001600a60008282829054906101000a900461ffff160192506101000a81548161ffff021916908361ffff160217905550565b61235182826040518060200160405280600081525061250d565b5050565b505050565b505050565b60008261236c8584612568565b1490509392505050565b60006123978473ffffffffffffffffffffffffffffffffffffffff16611873565b15612500578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123c061196c565b8786866040518563ffffffff1660e01b81526004016123e29493929190613201565b602060405180830381600087803b1580156123fc57600080fd5b505af192505050801561242d57506040513d601f19601f8201168201806040525081019061242a9190612c96565b60015b6124b0573d806000811461245d576040519150601f19603f3d011682016040523d82523d6000602084013e612462565b606091505b506000815114156124a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249f906132c5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612505565b600190505b949350505050565b6125178383612603565b6125246000848484612376565b612563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255a906132c5565b60405180910390fd5b505050565b60008082905060005b84518110156125f85760008582815181106125b5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116125d7576125d083826127dd565b92506125e4565b6125e181846127dd565b92505b5080806125f090613939565b915050612571565b508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266a90613485565b60405180910390fd5b61267c81611900565b156126bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b390613345565b60405180910390fd5b6126c860008383612355565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461271891906136ab565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127d96000838361235a565b5050565b600082600052816020526040600020905092915050565b828054612800906138d6565b90600052602060002090601f0160209004810192826128225760008555612869565b82601f1061283b57805160ff1916838001178555612869565b82800160010185558215612869579182015b8281111561286857825182559160200191906001019061284d565b5b509050612876919061287a565b5090565b5b8082111561289357600081600090555060010161287b565b5090565b60006128aa6128a5846135fb565b6135d6565b9050828152602081018484840111156128c257600080fd5b6128cd848285613894565b509392505050565b60006128e86128e38461362c565b6135d6565b90508281526020810184848401111561290057600080fd5b61290b848285613894565b509392505050565b6000813590506129228161402b565b92915050565b60008083601f84011261293a57600080fd5b8235905067ffffffffffffffff81111561295357600080fd5b60208301915083602082028301111561296b57600080fd5b9250929050565b60008135905061298181614042565b92915050565b60008135905061299681614059565b92915050565b6000813590506129ab81614070565b92915050565b6000815190506129c081614070565b92915050565b600082601f8301126129d757600080fd5b81356129e7848260208601612897565b91505092915050565b600082601f830112612a0157600080fd5b8135612a118482602086016128d5565b91505092915050565b600081359050612a2981614087565b92915050565b600060208284031215612a4157600080fd5b6000612a4f84828501612913565b91505092915050565b60008060408385031215612a6b57600080fd5b6000612a7985828601612913565b9250506020612a8a85828601612913565b9150509250929050565b600080600060608486031215612aa957600080fd5b6000612ab786828701612913565b9350506020612ac886828701612913565b9250506040612ad986828701612a1a565b9150509250925092565b60008060008060808587031215612af957600080fd5b6000612b0787828801612913565b9450506020612b1887828801612913565b9350506040612b2987828801612a1a565b925050606085013567ffffffffffffffff811115612b4657600080fd5b612b52878288016129c6565b91505092959194509250565b60008060408385031215612b7157600080fd5b6000612b7f85828601612913565b9250506020612b9085828601612972565b9150509250929050565b60008060408385031215612bad57600080fd5b6000612bbb85828601612913565b9250506020612bcc85828601612a1a565b9150509250929050565b60008060208385031215612be957600080fd5b600083013567ffffffffffffffff811115612c0357600080fd5b612c0f85828601612928565b92509250509250929050565b600060208284031215612c2d57600080fd5b6000612c3b84828501612972565b91505092915050565b600060208284031215612c5657600080fd5b6000612c6484828501612987565b91505092915050565b600060208284031215612c7f57600080fd5b6000612c8d8482850161299c565b91505092915050565b600060208284031215612ca857600080fd5b6000612cb6848285016129b1565b91505092915050565b600060208284031215612cd157600080fd5b600082013567ffffffffffffffff811115612ceb57600080fd5b612cf7848285016129f0565b91505092915050565b600060208284031215612d1257600080fd5b6000612d2084828501612a1a565b91505092915050565b612d32816137f4565b82525050565b612d49612d44826137f4565b613982565b82525050565b612d5881613806565b82525050565b612d6781613812565b82525050565b6000612d788261365d565b612d828185613673565b9350612d928185602086016138a3565b612d9b81613a93565b840191505092915050565b6000612db182613668565b612dbb818561368f565b9350612dcb8185602086016138a3565b612dd481613a93565b840191505092915050565b6000612dea82613668565b612df481856136a0565b9350612e048185602086016138a3565b80840191505092915050565b6000612e1d60148361368f565b9150612e2882613ab1565b602082019050919050565b6000612e4060328361368f565b9150612e4b82613ada565b604082019050919050565b6000612e6360268361368f565b9150612e6e82613b29565b604082019050919050565b6000612e8660148361368f565b9150612e9182613b78565b602082019050919050565b6000612ea960258361368f565b9150612eb482613ba1565b604082019050919050565b6000612ecc601c8361368f565b9150612ed782613bf0565b602082019050919050565b6000612eef600f8361368f565b9150612efa82613c19565b602082019050919050565b6000612f12601f8361368f565b9150612f1d82613c42565b602082019050919050565b6000612f3560248361368f565b9150612f4082613c6b565b604082019050919050565b6000612f5860198361368f565b9150612f6382613cba565b602082019050919050565b6000612f7b60138361368f565b9150612f8682613ce3565b602082019050919050565b6000612f9e602c8361368f565b9150612fa982613d0c565b604082019050919050565b6000612fc160388361368f565b9150612fcc82613d5b565b604082019050919050565b6000612fe4602a8361368f565b9150612fef82613daa565b604082019050919050565b600061300760298361368f565b915061301282613df9565b604082019050919050565b600061302a60208361368f565b915061303582613e48565b602082019050919050565b600061304d602c8361368f565b915061305882613e71565b604082019050919050565b600061307060208361368f565b915061307b82613ec0565b602082019050919050565b6000613093602f8361368f565b915061309e82613ee9565b604082019050919050565b60006130b660218361368f565b91506130c182613f38565b604082019050919050565b60006130d9600083613684565b91506130e482613f87565b600082019050919050565b60006130fc60318361368f565b915061310782613f8a565b604082019050919050565b600061311f600d8361368f565b915061312a82613fd9565b602082019050919050565b6000613142600f8361368f565b915061314d82614002565b602082019050919050565b61316181613848565b82525050565b61317081613876565b82525050565b61317f81613880565b82525050565b60006131918284612d38565b60148201915081905092915050565b60006131ac8286612ddf565b91506131b88285612ddf565b91506131c48284612ddf565b9150819050949350505050565b60006131dc826130cc565b9150819050919050565b60006020820190506131fb6000830184612d29565b92915050565b60006080820190506132166000830187612d29565b6132236020830186612d29565b6132306040830185613167565b81810360608301526132428184612d6d565b905095945050505050565b60006020820190506132626000830184612d4f565b92915050565b600060208201905061327d6000830184612d5e565b92915050565b6000602082019050818103600083015261329d8184612da6565b905092915050565b600060208201905081810360008301526132be81612e10565b9050919050565b600060208201905081810360008301526132de81612e33565b9050919050565b600060208201905081810360008301526132fe81612e56565b9050919050565b6000602082019050818103600083015261331e81612e79565b9050919050565b6000602082019050818103600083015261333e81612e9c565b9050919050565b6000602082019050818103600083015261335e81612ebf565b9050919050565b6000602082019050818103600083015261337e81612ee2565b9050919050565b6000602082019050818103600083015261339e81612f05565b9050919050565b600060208201905081810360008301526133be81612f28565b9050919050565b600060208201905081810360008301526133de81612f4b565b9050919050565b600060208201905081810360008301526133fe81612f6e565b9050919050565b6000602082019050818103600083015261341e81612f91565b9050919050565b6000602082019050818103600083015261343e81612fb4565b9050919050565b6000602082019050818103600083015261345e81612fd7565b9050919050565b6000602082019050818103600083015261347e81612ffa565b9050919050565b6000602082019050818103600083015261349e8161301d565b9050919050565b600060208201905081810360008301526134be81613040565b9050919050565b600060208201905081810360008301526134de81613063565b9050919050565b600060208201905081810360008301526134fe81613086565b9050919050565b6000602082019050818103600083015261351e816130a9565b9050919050565b6000602082019050818103600083015261353e816130ef565b9050919050565b6000602082019050818103600083015261355e81613112565b9050919050565b6000602082019050818103600083015261357e81613135565b9050919050565b600060208201905061359a6000830184613158565b92915050565b60006020820190506135b56000830184613167565b92915050565b60006020820190506135d06000830184613176565b92915050565b60006135e06135f1565b90506135ec8282613908565b919050565b6000604051905090565b600067ffffffffffffffff82111561361657613615613a64565b5b61361f82613a93565b9050602081019050919050565b600067ffffffffffffffff82111561364757613646613a64565b5b61365082613a93565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006136b682613876565b91506136c183613876565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136f6576136f56139d7565b5b828201905092915050565b600061370c82613876565b915061371783613876565b92508261372757613726613a06565b5b828204905092915050565b600061373d82613876565b915061374883613876565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613781576137806139d7565b5b828202905092915050565b600061379782613848565b91506137a283613848565b9250828210156137b5576137b46139d7565b5b828203905092915050565b60006137cb82613876565b91506137d683613876565b9250828210156137e9576137e86139d7565b5b828203905092915050565b60006137ff82613856565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156138c15780820151818401526020810190506138a6565b838111156138d0576000848401525b50505050565b600060028204905060018216806138ee57607f821691505b6020821081141561390257613901613a35565b5b50919050565b61391182613a93565b810181811067ffffffffffffffff821117156139305761392f613a64565b5b80604052505050565b600061394482613876565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613977576139766139d7565b5b600182019050919050565b600061398d82613994565b9050919050565b600061399f82613aa4565b9050919050565b60006139b182613876565b91506139bc83613876565b9250826139cc576139cb613a06565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f6578636565647320746f6b656e20737570706c79000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f696e76616c6964206d65726b6c652070726f6f66000000000000000000000000600082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f616c726561647920636c61696d65640000000000000000000000000000000000600082015250565b7f696e636f727265637420657468657220616d6f756e7420737570706c69656400600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f6e6f742061207072656d696e7420706861736500000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f7072656d696e7420706861736500000000000000000000000000000000000000600082015250565b7f7769746864726177206661696c65640000000000000000000000000000000000600082015250565b614034816137f4565b811461403f57600080fd5b50565b61404b81613806565b811461405657600080fd5b50565b61406281613812565b811461406d57600080fd5b50565b6140798161381c565b811461408457600080fd5b50565b61409081613876565b811461409b57600080fd5b5056fea26469706673582212205690a7852e9489338623b6f8ac18ab71eac7e357bbcede11e9e6eaae33ae927b64736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000000040e340dcfa13a49cff21769c8a2b1777f7745be66c45017c75b8022e72b68b71280000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5577364e706632424638367551456a3271484e446454416d51323539746e4b453451616668554364326d61782f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmUw6Npf2BF86uQEj2qHNDdTAmQ259tnKE4QafhUCd2max/
Arg [1] : initialRoot (bytes32): 0xe340dcfa13a49cff21769c8a2b1777f7745be66c45017c75b8022e72b68b7128

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : e340dcfa13a49cff21769c8a2b1777f7745be66c45017c75b8022e72b68b7128
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d5577364e706632424638367551456a3271484e44645441
Arg [4] : 6d51323539746e4b453451616668554364326d61782f00000000000000000000


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.