ETH Price: $3,276.29 (+0.92%)
Gas: 6 Gwei

Token

MetaPredator (MP)
 

Overview

Max Total Supply

3,333 MP

Holders

496

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 MP
0xda602e5035078c7abaaf44f5d01e806c1da481dd
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:
MetaPredator

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.9;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./ERC721Slim.sol";

contract MetaPredator is ERC721Slim, Ownable {
    using Strings for uint256;

    uint256 public constant MAX_SUPPLY = 3333;
    uint256 public constant MAX_PURCHASE_PER_TX = 10;
    uint256 public constant MAX_PURCHASE_PER_WALLET = 10;

    mapping(address => uint8) public _minters;
    string public _baseUri;
    bool public _saleStarted;

    constructor() ERC721Slim("MetaPredator", "MP") {
        _baseUri = "https://www.metapredator.io/assets/";
        _saleStarted = false;
    }

    modifier maxSupplyCheck(uint8 amount) {
        require(amount + totalMinted() <= MAX_SUPPLY, "MetaPredator: exceed maximum supply");
        _;
    }

    function purchase(uint8 amount) external maxSupplyCheck(amount) {
        require(tx.origin == msg.sender, "MetaPredator: are you botting??");
        require(_saleStarted, "MetaPredator: sale is not started");
        require(amount <= MAX_PURCHASE_PER_TX, "MetaPredator: exceed maximum amount per tx");
        require(
            _minters[msg.sender] + amount <= MAX_PURCHASE_PER_WALLET,
            "MetaPredator: exceed maximum amount per wallet"
        );

        _minters[msg.sender] += amount;
        _safeBatchMint(msg.sender, amount);
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "MetaPredator: URI query for nonexistent token");
        return string(abi.encodePacked(_baseUri, tokenId.toString(), ".json"));
    }

    // ========== Admin operations ===========

    function setSaleState(bool newState) external onlyOwner {
        _saleStarted = newState;
    }

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

    function devMint(uint8 amount, address to) external onlyOwner maxSupplyCheck(amount) {
        _safeBatchMint(to, amount);
    }

    function withdraw() external onlyOwner {
        uint256 balance = (address(this).balance * 90) / 100;

        Address.sendValue(payable(0xCE4c3478E82Aea54e62Db24465ad7BfAec753D08), (balance * 100) / 1000);
        Address.sendValue(payable(0x601Bd113546bd7dA62D785396c4126d249b1fb33), (balance * 200) / 1000);
        Address.sendValue(payable(0x176C0387CE0c140A755240471604010FCa59fbF1), (balance * 100) / 1000);
        Address.sendValue(payable(0xf12AE22C236d13a3BeC51BA4a4C5Fa907EAD11ed), (balance * 100) / 1000);
        Address.sendValue(payable(0xD347b09be433A55FC19bBE1D6A1Cb89b7B04D1B0), (balance * 100) / 1000);
        Address.sendValue(payable(0x32c0fBdE13005eBC8cE3F237bF047C8D97DF02dc), (balance * 100) / 1000);
        Address.sendValue(payable(0x01aBf92800a224bb69a03c0396D8fBF892747f6D), (balance * 100) / 1000);
        Address.sendValue(payable(0xC2E2C81DC7C6fE6b332fa05854D3b1e92839C5a2), (balance * 40) / 1000);
        Address.sendValue(payable(0xBd7A7cC8Ed95c6Bc18c29865398982c0C47c60A3), (balance * 15) / 1000);
        Address.sendValue(payable(0x514d97D3F5ff3C8dcc1e19983E01b3f0Cd7A6eb7), (balance * 15) / 1000);
        Address.sendValue(payable(0x9aF86d53186A4C96a03cdb8f4fbFE0d2256C809c), (balance * 15) / 1000);
        Address.sendValue(payable(0x2A9C6c066AD731b1E26Fdc6F428Ac9ED8733485f), (balance * 15) / 1000);

        Address.sendValue(payable(msg.sender), address(this).balance);
    }
}

File 2 of 13 : 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 3 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 13 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

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

pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension and the Enumerable extensions.
 *
 * This implementation is called `Slim` because the gas usage is extremely saved in the minting, transfer operations.
 * But as a drawback, those view functions like balanceOf and any functions from IERC721Enumerable
 * will be costly because it needs heavy iterations over the array that stores the token array.
 */
contract ERC721Slim is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    uint256 private _burntTokens = 0;
    address[] private _tokenOwners;
    mapping(uint256 => address) _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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

        uint256 balance = 0;
        for (uint i = 0; i < _tokenOwners.length; i++) {
            if (_tokenOwners[i] == owner) {
                balance++;
            }
        }

        return balance;
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721Slim: owner query for nonexistent token");
        address owner = _tokenOwners[tokenId];
        require(owner != address(0), "ERC721Slim: 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");
        return "";
    }

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

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721Slim: 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), "ERC721Slim: 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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Slim: 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), "ERC721Slim: 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), "ERC721Slim: 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 tokenId < _tokenOwners.length && _tokenOwners[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), "ERC721Slim: operator query for nonexistent token");
        address owner = ERC721Slim.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` in batch and transfers it to `to`.
     *
     * Requirements:
     *
     * - `to` must not be a zero address.
     * - `amount` must not be zero
     */
    function _safeBatchMint(address to, uint256 amount) internal returns (uint256 startId) {
        require(to != address(0), "ERC721Slim: mint to the zero address");
        require(amount > 0, "ERC721Slim: mint nothing");
        startId = _tokenOwners.length;

        for (uint256 i = 0; i < amount; i++) {
            _tokenOwners.push(to);

            emit Transfer(address(0), to, _tokenOwners.length - 1);
        }

        require(
            _checkOnERC721Received(address(0), to, startId, ""),
            "ERC721Slim: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - 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) internal virtual {
        _safeMint(to, "");
    }

    /**
     * @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,
        bytes memory _data
    ) internal virtual {
        uint256 tokenId = _mint(to);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721Slim: 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:
     *
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to) internal virtual returns (uint256) {
        require(to != address(0), "ERC721Slim: mint to the zero address");

        uint256 tokenId = _tokenOwners.length;
        _tokenOwners.push(to);

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

        return 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 = ERC721Slim.ownerOf(tokenId);

        _tokenOwners[tokenId] = address(0);
        delete _tokenApprovals[tokenId];
        _burntTokens++;

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

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

        _tokenOwners[tokenId] = to;
        _tokenApprovals[tokenId] = address(0);

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(_tokenOwners[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, "ERC721Slim: 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("ERC721Slim: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    // ========================================
    //    IERC721Enumerable implementations
    // ========================================

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() public override view returns (uint256) {
        return _tokenOwners.length - _burntTokens;
    }

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

        for (uint i = 0; i < _totalSupply; i++) {
            if (_tokenOwners[i] != owner) continue;

            if (index == 0) {
                return i;
            }

            index--;
        }

        revert("ERC721Slim: owner index out of bounds");
    }

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256) {
        require(index < _tokenOwners.length, "ERC721Slim: global index out of bounds");

        // Adjusted token orders by skipping burnt tokens
        uint256 burntTokens = 0;
        for (uint256 i = 0; i < _tokenOwners.length; i++) {
            if (_tokenOwners[i] == address(0)) {
                burntTokens++;
            }

            if (i == index + burntTokens) return i;
        }

        revert("ERC721Slim: global index out of bounds");
    }

    // ========================================
    //    Miscellaneous functions
    // ========================================

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalMinted() public view returns (uint256) {
        return _tokenOwners.length;
    }
}

File 7 of 13 : 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 8 of 13 : 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 9 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 13 : 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 11 of 13 : 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 12 of 13 : 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 13 of 13 : 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":[],"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":"MAX_PURCHASE_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PURCHASE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_minters","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_saleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"},{"internalType":"address","name":"to","type":"address"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"purchase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006002553480156200001657600080fd5b506040518060400160405280600c81526020017f4d6574615072656461746f7200000000000000000000000000000000000000008152506040518060400160405280600281526020017f4d5000000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200009b929190620001f8565b508060019080519060200190620000b4929190620001f8565b505050620000d7620000cb6200012a60201b60201c565b6200013260201b60201c565b6040518060600160405280602381526020016200471b602391396008908051906020019062000108929190620001f8565b506000600960006101000a81548160ff0219169083151502179055506200030d565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020690620002d7565b90600052602060002090601f0160209004810192826200022a576000855562000276565b82601f106200024557805160ff191683800117855562000276565b8280016001018555821562000276579182015b828111156200027557825182559160200191906001019062000258565b5b50905062000285919062000289565b5090565b5b80821115620002a45760008160009055506001016200028a565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002f057607f821691505b60208210811415620003075762000306620002a8565b5b50919050565b6143fe806200031d6000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c806342842e0e1161010f578063a0bcfc7f116100a2578063c4e3709511610071578063c4e370951461055a578063c87b56dd14610576578063e985e9c5146105a6578063f2fde38b146105d6576101e5565b8063a0bcfc7f146104e8578063a22cb46514610504578063a2309ff814610520578063b88d4fde1461053e576101e5565b8063715018a6116100de578063715018a61461048457806387c348bf1461048e5780638da5cb5b146104ac57806395d89b41146104ca576101e5565b806342842e0e146103d85780634f6ccce7146103f45780636352211e1461042457806370a0823114610454576101e5565b80632c335e0e116101875780633575597d116101565780633575597d146103625780633abc1a44146103925780633ccfd60b146103b05780633e63eb2a146103ba576101e5565b80632c335e0e146102da5780632f745c59146102f85780633298df761461032857806332cb6b0c14610344576101e5565b8063095ea7b3116101c3578063095ea7b31461026857806318160ddd1461028457806323b872dd146102a25780632c0628eb146102be576101e5565b806301ffc9a7146101ea57806306fdde031461021a578063081812fc14610238575b600080fd5b61020460048036038101906101ff91906129b4565b6105f2565b60405161021191906129fc565b60405180910390f35b61022261073c565b60405161022f9190612ab0565b60405180910390f35b610252600480360381019061024d9190612b08565b6107ce565b60405161025f9190612b76565b60405180910390f35b610282600480360381019061027d9190612bbd565b610853565b005b61028c61096b565b6040516102999190612c0c565b60405180910390f35b6102bc60048036038101906102b79190612c27565b610985565b005b6102d860048036038101906102d39190612cb3565b6109e5565b005b6102e2610acf565b6040516102ef9190612c0c565b60405180910390f35b610312600480360381019061030d9190612bbd565b610ad4565b60405161031f9190612c0c565b60405180910390f35b610342600480360381019061033d9190612cf3565b610bd7565b005b61034c610e59565b6040516103599190612c0c565b60405180910390f35b61037c60048036038101906103779190612d20565b610e5f565b6040516103899190612d5c565b60405180910390f35b61039a610e7f565b6040516103a79190612c0c565b60405180910390f35b6103b8610e84565b005b6103c26111be565b6040516103cf9190612ab0565b60405180910390f35b6103f260048036038101906103ed9190612c27565b61124c565b005b61040e60048036038101906104099190612b08565b61126c565b60405161041b9190612c0c565b60405180910390f35b61043e60048036038101906104399190612b08565b6113b9565b60405161044b9190612b76565b60405180910390f35b61046e60048036038101906104699190612d20565b6114bf565b60405161047b9190612c0c565b60405180910390f35b61048c6115df565b005b610496611667565b6040516104a391906129fc565b60405180910390f35b6104b461167a565b6040516104c19190612b76565b60405180910390f35b6104d26116a4565b6040516104df9190612ab0565b60405180910390f35b61050260048036038101906104fd9190612eac565b611736565b005b61051e60048036038101906105199190612f21565b6117cc565b005b6105286117e2565b6040516105359190612c0c565b60405180910390f35b61055860048036038101906105539190613002565b6117ef565b005b610574600480360381019061056f9190613085565b611851565b005b610590600480360381019061058b9190612b08565b6118ea565b60405161059d9190612ab0565b60405180910390f35b6105c060048036038101906105bb91906130b2565b611966565b6040516105cd91906129fc565b60405180910390f35b6105f060048036038101906105eb9190612d20565b6119fa565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106bd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061072557507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610735575061073482611af2565b5b9050919050565b60606000805461074b90613121565b80601f016020809104026020016040519081016040528092919081815260200182805461077790613121565b80156107c45780601f10610799576101008083540402835291602001916107c4565b820191906000526020600020905b8154815290600101906020018083116107a757829003601f168201915b5050505050905090565b60006107d982611b5c565b610818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080f906131c5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085e826113b9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c690613257565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108ee611be4565b73ffffffffffffffffffffffffffffffffffffffff16148061091d575061091c81610917611be4565b611966565b5b61095c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610953906132e9565b60405180910390fd5b6109668383611bec565b505050565b60006002546003805490506109809190613338565b905090565b610996610990611be4565b82611cdb565b6109d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cc906133de565b60405180910390fd5b6109e0838383611db9565b505050565b6109ed611be4565b73ffffffffffffffffffffffffffffffffffffffff16610a0b61167a565b73ffffffffffffffffffffffffffffffffffffffff1614610a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a589061344a565b60405180910390fd5b81610d05610a6d6117e2565b8260ff16610a7b919061346a565b1115610abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab390613532565b60405180910390fd5b610ac9828460ff1661200b565b50505050565b600a81565b600080600380549050905060005b81811015610b95578473ffffffffffffffffffffffffffffffffffffffff1660038281548110610b1557610b14613552565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b6057610b82565b6000841415610b73578092505050610bd1565b8380610b7e90613581565b9450505b8080610b8d906135ab565b915050610ae2565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc890613666565b60405180910390fd5b92915050565b80610d05610be36117e2565b8260ff16610bf1919061346a565b1115610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990613532565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c97906136d2565b60405180910390fd5b600960009054906101000a900460ff16610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce690613764565b60405180910390fd5b600a8260ff161115610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d906137f6565b60405180910390fd5b600a82600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d909190613816565b60ff161115610dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcb906138bf565b60405180910390fd5b81600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16610e2f9190613816565b92506101000a81548160ff021916908360ff160217905550610e54338360ff1661200b565b505050565b610d0581565b60076020528060005260406000206000915054906101000a900460ff1681565b600a81565b610e8c611be4565b73ffffffffffffffffffffffffffffffffffffffff16610eaa61167a565b73ffffffffffffffffffffffffffffffffffffffff1614610f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef79061344a565b60405180910390fd5b60006064605a47610f1191906138df565b610f1b9190613968565b9050610f5473ce4c3478e82aea54e62db24465ad7bfaec753d086103e8606484610f4591906138df565b610f4f9190613968565b612217565b610f8b73601bd113546bd7da62d785396c4126d249b1fb336103e860c884610f7c91906138df565b610f869190613968565b612217565b610fc273176c0387ce0c140a755240471604010fca59fbf16103e8606484610fb391906138df565b610fbd9190613968565b612217565b610ff973f12ae22c236d13a3bec51ba4a4c5fa907ead11ed6103e8606484610fea91906138df565b610ff49190613968565b612217565b61103073d347b09be433a55fc19bbe1d6a1cb89b7b04d1b06103e860648461102191906138df565b61102b9190613968565b612217565b6110677332c0fbde13005ebc8ce3f237bf047c8d97df02dc6103e860648461105891906138df565b6110629190613968565b612217565b61109e7301abf92800a224bb69a03c0396d8fbf892747f6d6103e860648461108f91906138df565b6110999190613968565b612217565b6110d573c2e2c81dc7c6fe6b332fa05854d3b1e92839c5a26103e86028846110c691906138df565b6110d09190613968565b612217565b61110c73bd7a7cc8ed95c6bc18c29865398982c0c47c60a36103e8600f846110fd91906138df565b6111079190613968565b612217565b61114373514d97d3f5ff3c8dcc1e19983e01b3f0cd7a6eb76103e8600f8461113491906138df565b61113e9190613968565b612217565b61117a739af86d53186a4c96a03cdb8f4fbfe0d2256c809c6103e8600f8461116b91906138df565b6111759190613968565b612217565b6111b1732a9c6c066ad731b1e26fdc6f428ac9ed8733485f6103e8600f846111a291906138df565b6111ac9190613968565b612217565b6111bb3347612217565b50565b600880546111cb90613121565b80601f01602080910402602001604051908101604052809291908181526020018280546111f790613121565b80156112445780601f1061121957610100808354040283529160200191611244565b820191906000526020600020905b81548152906001019060200180831161122757829003601f168201915b505050505081565b611267838383604051806020016040528060008152506117ef565b505050565b600060038054905082106112b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ac90613a0b565b60405180910390fd5b6000805b60038054905081101561137857600073ffffffffffffffffffffffffffffffffffffffff16600382815481106112f2576112f1613552565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611348578180611344906135ab565b9250505b8184611354919061346a565b8114156113655780925050506113b4565b8080611370906135ab565b9150506112b9565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab90613a0b565b60405180910390fd5b919050565b60006113c482611b5c565b611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90613a9d565b60405180910390fd5b60006003838154811061141957611418613552565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ad90613a9d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611530576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152790613b2f565b60405180910390fd5b6000805b6003805490508110156115d5578373ffffffffffffffffffffffffffffffffffffffff166003828154811061156c5761156b613552565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156115c25781806115be906135ab565b9250505b80806115cd906135ab565b915050611534565b5080915050919050565b6115e7611be4565b73ffffffffffffffffffffffffffffffffffffffff1661160561167a565b73ffffffffffffffffffffffffffffffffffffffff161461165b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116529061344a565b60405180910390fd5b611665600061230b565b565b600960009054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546116b390613121565b80601f01602080910402602001604051908101604052809291908181526020018280546116df90613121565b801561172c5780601f106117015761010080835404028352916020019161172c565b820191906000526020600020905b81548152906001019060200180831161170f57829003601f168201915b5050505050905090565b61173e611be4565b73ffffffffffffffffffffffffffffffffffffffff1661175c61167a565b73ffffffffffffffffffffffffffffffffffffffff16146117b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a99061344a565b60405180910390fd5b80600890805190602001906117c89291906128a5565b5050565b6117de6117d7611be4565b83836123d1565b5050565b6000600380549050905090565b6118006117fa611be4565b83611cdb565b61183f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611836906133de565b60405180910390fd5b61184b8484848461253e565b50505050565b611859611be4565b73ffffffffffffffffffffffffffffffffffffffff1661187761167a565b73ffffffffffffffffffffffffffffffffffffffff16146118cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c49061344a565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b60606118f582611b5c565b611934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192b90613bc1565b60405180910390fd5b600861193f8361259a565b604051602001611950929190613cfd565b6040516020818303038152906040529050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a02611be4565b73ffffffffffffffffffffffffffffffffffffffff16611a2061167a565b73ffffffffffffffffffffffffffffffffffffffff1614611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d9061344a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611add90613d9e565b60405180910390fd5b611aef8161230b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060038054905082108015611bdd5750600073ffffffffffffffffffffffffffffffffffffffff1660038381548110611b9957611b98613552565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1660038381548110611c6a57611c69613552565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ce682611b5c565b611d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1c90613e30565b60405180910390fd5b6000611d30836113b9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d9f57508373ffffffffffffffffffffffffffffffffffffffff16611d87846107ce565b73ffffffffffffffffffffffffffffffffffffffff16145b80611db05750611daf8185611966565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611dd9826113b9565b73ffffffffffffffffffffffffffffffffffffffff1614611e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2690613ec2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9690613f54565b60405180910390fd5b8160038281548110611eb457611eb3613552565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561207c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207390613fe6565b60405180910390fd5b600082116120bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b690614052565b60405180910390fd5b600380549050905060005b828110156121b5576003849080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016003805490506121479190613338565b8473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480806121ad906135ab565b9150506120ca565b506121d260008483604051806020016040528060008152506126fb565b612211576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612208906140e4565b60405180910390fd5b92915050565b8047101561225a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225190614150565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612280906141a1565b60006040518083038185875af1925050503d80600081146122bd576040519150601f19603f3d011682016040523d82523d6000602084013e6122c2565b606091505b5050905080612306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fd90614228565b60405180910390fd5b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612440576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243790614294565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161253191906129fc565b60405180910390a3505050565b612549848484611db9565b612555848484846126fb565b612594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258b906140e4565b60405180910390fd5b50505050565b606060008214156125e2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126f6565b600082905060005b600082146126145780806125fd906135ab565b915050600a8261260d9190613968565b91506125ea565b60008167ffffffffffffffff8111156126305761262f612d81565b5b6040519080825280601f01601f1916602001820160405280156126625781602001600182028036833780820191505090505b5090505b600085146126ef5760018261267b9190613338565b9150600a8561268a91906142b4565b6030612696919061346a565b60f81b8183815181106126ac576126ab613552565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126e89190613968565b9450612666565b8093505050505b919050565b600061271c8473ffffffffffffffffffffffffffffffffffffffff16612892565b15612885578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612745611be4565b8786866040518563ffffffff1660e01b8152600401612767949392919061433a565b602060405180830381600087803b15801561278157600080fd5b505af19250505080156127b257506040513d601f19601f820116820180604052508101906127af919061439b565b60015b612835573d80600081146127e2576040519150601f19603f3d011682016040523d82523d6000602084013e6127e7565b606091505b5060008151141561282d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612824906140e4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061288a565b600190505b949350505050565b600080823b905060008111915050919050565b8280546128b190613121565b90600052602060002090601f0160209004810192826128d3576000855561291a565b82601f106128ec57805160ff191683800117855561291a565b8280016001018555821561291a579182015b828111156129195782518255916020019190600101906128fe565b5b509050612927919061292b565b5090565b5b8082111561294457600081600090555060010161292c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6129918161295c565b811461299c57600080fd5b50565b6000813590506129ae81612988565b92915050565b6000602082840312156129ca576129c9612952565b5b60006129d88482850161299f565b91505092915050565b60008115159050919050565b6129f6816129e1565b82525050565b6000602082019050612a1160008301846129ed565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a51578082015181840152602081019050612a36565b83811115612a60576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a8282612a17565b612a8c8185612a22565b9350612a9c818560208601612a33565b612aa581612a66565b840191505092915050565b60006020820190508181036000830152612aca8184612a77565b905092915050565b6000819050919050565b612ae581612ad2565b8114612af057600080fd5b50565b600081359050612b0281612adc565b92915050565b600060208284031215612b1e57612b1d612952565b5b6000612b2c84828501612af3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b6082612b35565b9050919050565b612b7081612b55565b82525050565b6000602082019050612b8b6000830184612b67565b92915050565b612b9a81612b55565b8114612ba557600080fd5b50565b600081359050612bb781612b91565b92915050565b60008060408385031215612bd457612bd3612952565b5b6000612be285828601612ba8565b9250506020612bf385828601612af3565b9150509250929050565b612c0681612ad2565b82525050565b6000602082019050612c216000830184612bfd565b92915050565b600080600060608486031215612c4057612c3f612952565b5b6000612c4e86828701612ba8565b9350506020612c5f86828701612ba8565b9250506040612c7086828701612af3565b9150509250925092565b600060ff82169050919050565b612c9081612c7a565b8114612c9b57600080fd5b50565b600081359050612cad81612c87565b92915050565b60008060408385031215612cca57612cc9612952565b5b6000612cd885828601612c9e565b9250506020612ce985828601612ba8565b9150509250929050565b600060208284031215612d0957612d08612952565b5b6000612d1784828501612c9e565b91505092915050565b600060208284031215612d3657612d35612952565b5b6000612d4484828501612ba8565b91505092915050565b612d5681612c7a565b82525050565b6000602082019050612d716000830184612d4d565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612db982612a66565b810181811067ffffffffffffffff82111715612dd857612dd7612d81565b5b80604052505050565b6000612deb612948565b9050612df78282612db0565b919050565b600067ffffffffffffffff821115612e1757612e16612d81565b5b612e2082612a66565b9050602081019050919050565b82818337600083830152505050565b6000612e4f612e4a84612dfc565b612de1565b905082815260208101848484011115612e6b57612e6a612d7c565b5b612e76848285612e2d565b509392505050565b600082601f830112612e9357612e92612d77565b5b8135612ea3848260208601612e3c565b91505092915050565b600060208284031215612ec257612ec1612952565b5b600082013567ffffffffffffffff811115612ee057612edf612957565b5b612eec84828501612e7e565b91505092915050565b612efe816129e1565b8114612f0957600080fd5b50565b600081359050612f1b81612ef5565b92915050565b60008060408385031215612f3857612f37612952565b5b6000612f4685828601612ba8565b9250506020612f5785828601612f0c565b9150509250929050565b600067ffffffffffffffff821115612f7c57612f7b612d81565b5b612f8582612a66565b9050602081019050919050565b6000612fa5612fa084612f61565b612de1565b905082815260208101848484011115612fc157612fc0612d7c565b5b612fcc848285612e2d565b509392505050565b600082601f830112612fe957612fe8612d77565b5b8135612ff9848260208601612f92565b91505092915050565b6000806000806080858703121561301c5761301b612952565b5b600061302a87828801612ba8565b945050602061303b87828801612ba8565b935050604061304c87828801612af3565b925050606085013567ffffffffffffffff81111561306d5761306c612957565b5b61307987828801612fd4565b91505092959194509250565b60006020828403121561309b5761309a612952565b5b60006130a984828501612f0c565b91505092915050565b600080604083850312156130c9576130c8612952565b5b60006130d785828601612ba8565b92505060206130e885828601612ba8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061313957607f821691505b6020821081141561314d5761314c6130f2565b5b50919050565b7f455243373231536c696d3a20617070726f76656420717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b60006131af603083612a22565b91506131ba82613153565b604082019050919050565b600060208201905081810360008301526131de816131a2565b9050919050565b7f455243373231536c696d3a20617070726f76616c20746f2063757272656e742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613241602583612a22565b915061324c826131e5565b604082019050919050565b6000602082019050818103600083015261327081613234565b9050919050565b7f455243373231536c696d3a20617070726f76652063616c6c6572206973206e6f60008201527f74206f776e6572206e6f7220617070726f76656420666f7220616c6c00000000602082015250565b60006132d3603c83612a22565b91506132de82613277565b604082019050919050565b60006020820190508181036000830152613302816132c6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061334382612ad2565b915061334e83612ad2565b92508282101561336157613360613309565b5b828203905092915050565b7f455243373231536c696d3a207472616e736665722063616c6c6572206973206e60008201527f6f74206f776e6572206e6f7220617070726f7665640000000000000000000000602082015250565b60006133c8603583612a22565b91506133d38261336c565b604082019050919050565b600060208201905081810360008301526133f7816133bb565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613434602083612a22565b915061343f826133fe565b602082019050919050565b6000602082019050818103600083015261346381613427565b9050919050565b600061347582612ad2565b915061348083612ad2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134b5576134b4613309565b5b828201905092915050565b7f4d6574615072656461746f723a20657863656564206d6178696d756d2073757060008201527f706c790000000000000000000000000000000000000000000000000000000000602082015250565b600061351c602383612a22565b9150613527826134c0565b604082019050919050565b6000602082019050818103600083015261354b8161350f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061358c82612ad2565b915060008214156135a05761359f613309565b5b600182039050919050565b60006135b682612ad2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135e9576135e8613309565b5b600182019050919050565b7f455243373231536c696d3a206f776e657220696e646578206f7574206f66206260008201527f6f756e6473000000000000000000000000000000000000000000000000000000602082015250565b6000613650602583612a22565b915061365b826135f4565b604082019050919050565b6000602082019050818103600083015261367f81613643565b9050919050565b7f4d6574615072656461746f723a2061726520796f7520626f7474696e673f3f00600082015250565b60006136bc601f83612a22565b91506136c782613686565b602082019050919050565b600060208201905081810360008301526136eb816136af565b9050919050565b7f4d6574615072656461746f723a2073616c65206973206e6f742073746172746560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b600061374e602183612a22565b9150613759826136f2565b604082019050919050565b6000602082019050818103600083015261377d81613741565b9050919050565b7f4d6574615072656461746f723a20657863656564206d6178696d756d20616d6f60008201527f756e742070657220747800000000000000000000000000000000000000000000602082015250565b60006137e0602a83612a22565b91506137eb82613784565b604082019050919050565b6000602082019050818103600083015261380f816137d3565b9050919050565b600061382182612c7a565b915061382c83612c7a565b92508260ff0382111561384257613841613309565b5b828201905092915050565b7f4d6574615072656461746f723a20657863656564206d6178696d756d20616d6f60008201527f756e74207065722077616c6c6574000000000000000000000000000000000000602082015250565b60006138a9602e83612a22565b91506138b48261384d565b604082019050919050565b600060208201905081810360008301526138d88161389c565b9050919050565b60006138ea82612ad2565b91506138f583612ad2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561392e5761392d613309565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061397382612ad2565b915061397e83612ad2565b92508261398e5761398d613939565b5b828204905092915050565b7f455243373231536c696d3a20676c6f62616c20696e646578206f7574206f662060008201527f626f756e64730000000000000000000000000000000000000000000000000000602082015250565b60006139f5602683612a22565b9150613a0082613999565b604082019050919050565b60006020820190508181036000830152613a24816139e8565b9050919050565b7f455243373231536c696d3a206f776e657220717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613a87602d83612a22565b9150613a9282613a2b565b604082019050919050565b60006020820190508181036000830152613ab681613a7a565b9050919050565b7f455243373231536c696d3a2062616c616e636520717565727920666f7220746860008201527f65207a65726f2061646472657373000000000000000000000000000000000000602082015250565b6000613b19602e83612a22565b9150613b2482613abd565b604082019050919050565b60006020820190508181036000830152613b4881613b0c565b9050919050565b7f4d6574615072656461746f723a2055524920717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613bab602d83612a22565b9150613bb682613b4f565b604082019050919050565b60006020820190508181036000830152613bda81613b9e565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613c0e81613121565b613c188186613be1565b94506001821660008114613c335760018114613c4457613c77565b60ff19831686528186019350613c77565b613c4d85613bec565b60005b83811015613c6f57815481890152600182019150602081019050613c50565b838801955050505b50505092915050565b6000613c8b82612a17565b613c958185613be1565b9350613ca5818560208601612a33565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613ce7600583613be1565b9150613cf282613cb1565b600582019050919050565b6000613d098285613c01565b9150613d158284613c80565b9150613d2082613cda565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d88602683612a22565b9150613d9382613d2c565b604082019050919050565b60006020820190508181036000830152613db781613d7b565b9050919050565b7f455243373231536c696d3a206f70657261746f7220717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b6000613e1a603083612a22565b9150613e2582613dbe565b604082019050919050565b60006020820190508181036000830152613e4981613e0d565b9050919050565b7f455243373231536c696d3a207472616e736665722066726f6d20696e636f727260008201527f656374206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613eac602983612a22565b9150613eb782613e50565b604082019050919050565b60006020820190508181036000830152613edb81613e9f565b9050919050565b7f455243373231536c696d3a207472616e7366657220746f20746865207a65726f60008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b6000613f3e602883612a22565b9150613f4982613ee2565b604082019050919050565b60006020820190508181036000830152613f6d81613f31565b9050919050565b7f455243373231536c696d3a206d696e7420746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613fd0602483612a22565b9150613fdb82613f74565b604082019050919050565b60006020820190508181036000830152613fff81613fc3565b9050919050565b7f455243373231536c696d3a206d696e74206e6f7468696e670000000000000000600082015250565b600061403c601883612a22565b915061404782614006565b602082019050919050565b6000602082019050818103600083015261406b8161402f565b9050919050565b7f455243373231536c696d3a207472616e7366657220746f206e6f6e204552433760008201527f3231526563656976657220696d706c656d656e74657200000000000000000000602082015250565b60006140ce603683612a22565b91506140d982614072565b604082019050919050565b600060208201905081810360008301526140fd816140c1565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b600061413a601d83612a22565b915061414582614104565b602082019050919050565b600060208201905081810360008301526141698161412d565b9050919050565b600081905092915050565b50565b600061418b600083614170565b91506141968261417b565b600082019050919050565b60006141ac8261417e565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000614212603a83612a22565b915061421d826141b6565b604082019050919050565b6000602082019050818103600083015261424181614205565b9050919050565b7f455243373231536c696d3a20617070726f766520746f2063616c6c6572000000600082015250565b600061427e601d83612a22565b915061428982614248565b602082019050919050565b600060208201905081810360008301526142ad81614271565b9050919050565b60006142bf82612ad2565b91506142ca83612ad2565b9250826142da576142d9613939565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061430c826142e5565b61431681856142f0565b9350614326818560208601612a33565b61432f81612a66565b840191505092915050565b600060808201905061434f6000830187612b67565b61435c6020830186612b67565b6143696040830185612bfd565b818103606083015261437b8184614301565b905095945050505050565b60008151905061439581612988565b92915050565b6000602082840312156143b1576143b0612952565b5b60006143bf84828501614386565b9150509291505056fea26469706673582212208a214d42e0679ef12d5966291c54d3de58c258fe424cb310d941539fd9a6145b64736f6c6343000809003368747470733a2f2f7777772e6d6574617072656461746f722e696f2f6173736574732f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c806342842e0e1161010f578063a0bcfc7f116100a2578063c4e3709511610071578063c4e370951461055a578063c87b56dd14610576578063e985e9c5146105a6578063f2fde38b146105d6576101e5565b8063a0bcfc7f146104e8578063a22cb46514610504578063a2309ff814610520578063b88d4fde1461053e576101e5565b8063715018a6116100de578063715018a61461048457806387c348bf1461048e5780638da5cb5b146104ac57806395d89b41146104ca576101e5565b806342842e0e146103d85780634f6ccce7146103f45780636352211e1461042457806370a0823114610454576101e5565b80632c335e0e116101875780633575597d116101565780633575597d146103625780633abc1a44146103925780633ccfd60b146103b05780633e63eb2a146103ba576101e5565b80632c335e0e146102da5780632f745c59146102f85780633298df761461032857806332cb6b0c14610344576101e5565b8063095ea7b3116101c3578063095ea7b31461026857806318160ddd1461028457806323b872dd146102a25780632c0628eb146102be576101e5565b806301ffc9a7146101ea57806306fdde031461021a578063081812fc14610238575b600080fd5b61020460048036038101906101ff91906129b4565b6105f2565b60405161021191906129fc565b60405180910390f35b61022261073c565b60405161022f9190612ab0565b60405180910390f35b610252600480360381019061024d9190612b08565b6107ce565b60405161025f9190612b76565b60405180910390f35b610282600480360381019061027d9190612bbd565b610853565b005b61028c61096b565b6040516102999190612c0c565b60405180910390f35b6102bc60048036038101906102b79190612c27565b610985565b005b6102d860048036038101906102d39190612cb3565b6109e5565b005b6102e2610acf565b6040516102ef9190612c0c565b60405180910390f35b610312600480360381019061030d9190612bbd565b610ad4565b60405161031f9190612c0c565b60405180910390f35b610342600480360381019061033d9190612cf3565b610bd7565b005b61034c610e59565b6040516103599190612c0c565b60405180910390f35b61037c60048036038101906103779190612d20565b610e5f565b6040516103899190612d5c565b60405180910390f35b61039a610e7f565b6040516103a79190612c0c565b60405180910390f35b6103b8610e84565b005b6103c26111be565b6040516103cf9190612ab0565b60405180910390f35b6103f260048036038101906103ed9190612c27565b61124c565b005b61040e60048036038101906104099190612b08565b61126c565b60405161041b9190612c0c565b60405180910390f35b61043e60048036038101906104399190612b08565b6113b9565b60405161044b9190612b76565b60405180910390f35b61046e60048036038101906104699190612d20565b6114bf565b60405161047b9190612c0c565b60405180910390f35b61048c6115df565b005b610496611667565b6040516104a391906129fc565b60405180910390f35b6104b461167a565b6040516104c19190612b76565b60405180910390f35b6104d26116a4565b6040516104df9190612ab0565b60405180910390f35b61050260048036038101906104fd9190612eac565b611736565b005b61051e60048036038101906105199190612f21565b6117cc565b005b6105286117e2565b6040516105359190612c0c565b60405180910390f35b61055860048036038101906105539190613002565b6117ef565b005b610574600480360381019061056f9190613085565b611851565b005b610590600480360381019061058b9190612b08565b6118ea565b60405161059d9190612ab0565b60405180910390f35b6105c060048036038101906105bb91906130b2565b611966565b6040516105cd91906129fc565b60405180910390f35b6105f060048036038101906105eb9190612d20565b6119fa565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106bd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061072557507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610735575061073482611af2565b5b9050919050565b60606000805461074b90613121565b80601f016020809104026020016040519081016040528092919081815260200182805461077790613121565b80156107c45780601f10610799576101008083540402835291602001916107c4565b820191906000526020600020905b8154815290600101906020018083116107a757829003601f168201915b5050505050905090565b60006107d982611b5c565b610818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080f906131c5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085e826113b9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c690613257565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108ee611be4565b73ffffffffffffffffffffffffffffffffffffffff16148061091d575061091c81610917611be4565b611966565b5b61095c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610953906132e9565b60405180910390fd5b6109668383611bec565b505050565b60006002546003805490506109809190613338565b905090565b610996610990611be4565b82611cdb565b6109d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cc906133de565b60405180910390fd5b6109e0838383611db9565b505050565b6109ed611be4565b73ffffffffffffffffffffffffffffffffffffffff16610a0b61167a565b73ffffffffffffffffffffffffffffffffffffffff1614610a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a589061344a565b60405180910390fd5b81610d05610a6d6117e2565b8260ff16610a7b919061346a565b1115610abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab390613532565b60405180910390fd5b610ac9828460ff1661200b565b50505050565b600a81565b600080600380549050905060005b81811015610b95578473ffffffffffffffffffffffffffffffffffffffff1660038281548110610b1557610b14613552565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b6057610b82565b6000841415610b73578092505050610bd1565b8380610b7e90613581565b9450505b8080610b8d906135ab565b915050610ae2565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc890613666565b60405180910390fd5b92915050565b80610d05610be36117e2565b8260ff16610bf1919061346a565b1115610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990613532565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c97906136d2565b60405180910390fd5b600960009054906101000a900460ff16610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce690613764565b60405180910390fd5b600a8260ff161115610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d906137f6565b60405180910390fd5b600a82600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d909190613816565b60ff161115610dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcb906138bf565b60405180910390fd5b81600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16610e2f9190613816565b92506101000a81548160ff021916908360ff160217905550610e54338360ff1661200b565b505050565b610d0581565b60076020528060005260406000206000915054906101000a900460ff1681565b600a81565b610e8c611be4565b73ffffffffffffffffffffffffffffffffffffffff16610eaa61167a565b73ffffffffffffffffffffffffffffffffffffffff1614610f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef79061344a565b60405180910390fd5b60006064605a47610f1191906138df565b610f1b9190613968565b9050610f5473ce4c3478e82aea54e62db24465ad7bfaec753d086103e8606484610f4591906138df565b610f4f9190613968565b612217565b610f8b73601bd113546bd7da62d785396c4126d249b1fb336103e860c884610f7c91906138df565b610f869190613968565b612217565b610fc273176c0387ce0c140a755240471604010fca59fbf16103e8606484610fb391906138df565b610fbd9190613968565b612217565b610ff973f12ae22c236d13a3bec51ba4a4c5fa907ead11ed6103e8606484610fea91906138df565b610ff49190613968565b612217565b61103073d347b09be433a55fc19bbe1d6a1cb89b7b04d1b06103e860648461102191906138df565b61102b9190613968565b612217565b6110677332c0fbde13005ebc8ce3f237bf047c8d97df02dc6103e860648461105891906138df565b6110629190613968565b612217565b61109e7301abf92800a224bb69a03c0396d8fbf892747f6d6103e860648461108f91906138df565b6110999190613968565b612217565b6110d573c2e2c81dc7c6fe6b332fa05854d3b1e92839c5a26103e86028846110c691906138df565b6110d09190613968565b612217565b61110c73bd7a7cc8ed95c6bc18c29865398982c0c47c60a36103e8600f846110fd91906138df565b6111079190613968565b612217565b61114373514d97d3f5ff3c8dcc1e19983e01b3f0cd7a6eb76103e8600f8461113491906138df565b61113e9190613968565b612217565b61117a739af86d53186a4c96a03cdb8f4fbfe0d2256c809c6103e8600f8461116b91906138df565b6111759190613968565b612217565b6111b1732a9c6c066ad731b1e26fdc6f428ac9ed8733485f6103e8600f846111a291906138df565b6111ac9190613968565b612217565b6111bb3347612217565b50565b600880546111cb90613121565b80601f01602080910402602001604051908101604052809291908181526020018280546111f790613121565b80156112445780601f1061121957610100808354040283529160200191611244565b820191906000526020600020905b81548152906001019060200180831161122757829003601f168201915b505050505081565b611267838383604051806020016040528060008152506117ef565b505050565b600060038054905082106112b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ac90613a0b565b60405180910390fd5b6000805b60038054905081101561137857600073ffffffffffffffffffffffffffffffffffffffff16600382815481106112f2576112f1613552565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611348578180611344906135ab565b9250505b8184611354919061346a565b8114156113655780925050506113b4565b8080611370906135ab565b9150506112b9565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab90613a0b565b60405180910390fd5b919050565b60006113c482611b5c565b611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90613a9d565b60405180910390fd5b60006003838154811061141957611418613552565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ad90613a9d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611530576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152790613b2f565b60405180910390fd5b6000805b6003805490508110156115d5578373ffffffffffffffffffffffffffffffffffffffff166003828154811061156c5761156b613552565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156115c25781806115be906135ab565b9250505b80806115cd906135ab565b915050611534565b5080915050919050565b6115e7611be4565b73ffffffffffffffffffffffffffffffffffffffff1661160561167a565b73ffffffffffffffffffffffffffffffffffffffff161461165b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116529061344a565b60405180910390fd5b611665600061230b565b565b600960009054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546116b390613121565b80601f01602080910402602001604051908101604052809291908181526020018280546116df90613121565b801561172c5780601f106117015761010080835404028352916020019161172c565b820191906000526020600020905b81548152906001019060200180831161170f57829003601f168201915b5050505050905090565b61173e611be4565b73ffffffffffffffffffffffffffffffffffffffff1661175c61167a565b73ffffffffffffffffffffffffffffffffffffffff16146117b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a99061344a565b60405180910390fd5b80600890805190602001906117c89291906128a5565b5050565b6117de6117d7611be4565b83836123d1565b5050565b6000600380549050905090565b6118006117fa611be4565b83611cdb565b61183f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611836906133de565b60405180910390fd5b61184b8484848461253e565b50505050565b611859611be4565b73ffffffffffffffffffffffffffffffffffffffff1661187761167a565b73ffffffffffffffffffffffffffffffffffffffff16146118cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c49061344a565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b60606118f582611b5c565b611934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192b90613bc1565b60405180910390fd5b600861193f8361259a565b604051602001611950929190613cfd565b6040516020818303038152906040529050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a02611be4565b73ffffffffffffffffffffffffffffffffffffffff16611a2061167a565b73ffffffffffffffffffffffffffffffffffffffff1614611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d9061344a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611add90613d9e565b60405180910390fd5b611aef8161230b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060038054905082108015611bdd5750600073ffffffffffffffffffffffffffffffffffffffff1660038381548110611b9957611b98613552565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1660038381548110611c6a57611c69613552565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ce682611b5c565b611d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1c90613e30565b60405180910390fd5b6000611d30836113b9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d9f57508373ffffffffffffffffffffffffffffffffffffffff16611d87846107ce565b73ffffffffffffffffffffffffffffffffffffffff16145b80611db05750611daf8185611966565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611dd9826113b9565b73ffffffffffffffffffffffffffffffffffffffff1614611e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2690613ec2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9690613f54565b60405180910390fd5b8160038281548110611eb457611eb3613552565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561207c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207390613fe6565b60405180910390fd5b600082116120bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b690614052565b60405180910390fd5b600380549050905060005b828110156121b5576003849080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016003805490506121479190613338565b8473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480806121ad906135ab565b9150506120ca565b506121d260008483604051806020016040528060008152506126fb565b612211576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612208906140e4565b60405180910390fd5b92915050565b8047101561225a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225190614150565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612280906141a1565b60006040518083038185875af1925050503d80600081146122bd576040519150601f19603f3d011682016040523d82523d6000602084013e6122c2565b606091505b5050905080612306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fd90614228565b60405180910390fd5b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612440576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243790614294565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161253191906129fc565b60405180910390a3505050565b612549848484611db9565b612555848484846126fb565b612594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258b906140e4565b60405180910390fd5b50505050565b606060008214156125e2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126f6565b600082905060005b600082146126145780806125fd906135ab565b915050600a8261260d9190613968565b91506125ea565b60008167ffffffffffffffff8111156126305761262f612d81565b5b6040519080825280601f01601f1916602001820160405280156126625781602001600182028036833780820191505090505b5090505b600085146126ef5760018261267b9190613338565b9150600a8561268a91906142b4565b6030612696919061346a565b60f81b8183815181106126ac576126ab613552565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126e89190613968565b9450612666565b8093505050505b919050565b600061271c8473ffffffffffffffffffffffffffffffffffffffff16612892565b15612885578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612745611be4565b8786866040518563ffffffff1660e01b8152600401612767949392919061433a565b602060405180830381600087803b15801561278157600080fd5b505af19250505080156127b257506040513d601f19601f820116820180604052508101906127af919061439b565b60015b612835573d80600081146127e2576040519150601f19603f3d011682016040523d82523d6000602084013e6127e7565b606091505b5060008151141561282d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612824906140e4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061288a565b600190505b949350505050565b600080823b905060008111915050919050565b8280546128b190613121565b90600052602060002090601f0160209004810192826128d3576000855561291a565b82601f106128ec57805160ff191683800117855561291a565b8280016001018555821561291a579182015b828111156129195782518255916020019190600101906128fe565b5b509050612927919061292b565b5090565b5b8082111561294457600081600090555060010161292c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6129918161295c565b811461299c57600080fd5b50565b6000813590506129ae81612988565b92915050565b6000602082840312156129ca576129c9612952565b5b60006129d88482850161299f565b91505092915050565b60008115159050919050565b6129f6816129e1565b82525050565b6000602082019050612a1160008301846129ed565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a51578082015181840152602081019050612a36565b83811115612a60576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a8282612a17565b612a8c8185612a22565b9350612a9c818560208601612a33565b612aa581612a66565b840191505092915050565b60006020820190508181036000830152612aca8184612a77565b905092915050565b6000819050919050565b612ae581612ad2565b8114612af057600080fd5b50565b600081359050612b0281612adc565b92915050565b600060208284031215612b1e57612b1d612952565b5b6000612b2c84828501612af3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b6082612b35565b9050919050565b612b7081612b55565b82525050565b6000602082019050612b8b6000830184612b67565b92915050565b612b9a81612b55565b8114612ba557600080fd5b50565b600081359050612bb781612b91565b92915050565b60008060408385031215612bd457612bd3612952565b5b6000612be285828601612ba8565b9250506020612bf385828601612af3565b9150509250929050565b612c0681612ad2565b82525050565b6000602082019050612c216000830184612bfd565b92915050565b600080600060608486031215612c4057612c3f612952565b5b6000612c4e86828701612ba8565b9350506020612c5f86828701612ba8565b9250506040612c7086828701612af3565b9150509250925092565b600060ff82169050919050565b612c9081612c7a565b8114612c9b57600080fd5b50565b600081359050612cad81612c87565b92915050565b60008060408385031215612cca57612cc9612952565b5b6000612cd885828601612c9e565b9250506020612ce985828601612ba8565b9150509250929050565b600060208284031215612d0957612d08612952565b5b6000612d1784828501612c9e565b91505092915050565b600060208284031215612d3657612d35612952565b5b6000612d4484828501612ba8565b91505092915050565b612d5681612c7a565b82525050565b6000602082019050612d716000830184612d4d565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612db982612a66565b810181811067ffffffffffffffff82111715612dd857612dd7612d81565b5b80604052505050565b6000612deb612948565b9050612df78282612db0565b919050565b600067ffffffffffffffff821115612e1757612e16612d81565b5b612e2082612a66565b9050602081019050919050565b82818337600083830152505050565b6000612e4f612e4a84612dfc565b612de1565b905082815260208101848484011115612e6b57612e6a612d7c565b5b612e76848285612e2d565b509392505050565b600082601f830112612e9357612e92612d77565b5b8135612ea3848260208601612e3c565b91505092915050565b600060208284031215612ec257612ec1612952565b5b600082013567ffffffffffffffff811115612ee057612edf612957565b5b612eec84828501612e7e565b91505092915050565b612efe816129e1565b8114612f0957600080fd5b50565b600081359050612f1b81612ef5565b92915050565b60008060408385031215612f3857612f37612952565b5b6000612f4685828601612ba8565b9250506020612f5785828601612f0c565b9150509250929050565b600067ffffffffffffffff821115612f7c57612f7b612d81565b5b612f8582612a66565b9050602081019050919050565b6000612fa5612fa084612f61565b612de1565b905082815260208101848484011115612fc157612fc0612d7c565b5b612fcc848285612e2d565b509392505050565b600082601f830112612fe957612fe8612d77565b5b8135612ff9848260208601612f92565b91505092915050565b6000806000806080858703121561301c5761301b612952565b5b600061302a87828801612ba8565b945050602061303b87828801612ba8565b935050604061304c87828801612af3565b925050606085013567ffffffffffffffff81111561306d5761306c612957565b5b61307987828801612fd4565b91505092959194509250565b60006020828403121561309b5761309a612952565b5b60006130a984828501612f0c565b91505092915050565b600080604083850312156130c9576130c8612952565b5b60006130d785828601612ba8565b92505060206130e885828601612ba8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061313957607f821691505b6020821081141561314d5761314c6130f2565b5b50919050565b7f455243373231536c696d3a20617070726f76656420717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b60006131af603083612a22565b91506131ba82613153565b604082019050919050565b600060208201905081810360008301526131de816131a2565b9050919050565b7f455243373231536c696d3a20617070726f76616c20746f2063757272656e742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613241602583612a22565b915061324c826131e5565b604082019050919050565b6000602082019050818103600083015261327081613234565b9050919050565b7f455243373231536c696d3a20617070726f76652063616c6c6572206973206e6f60008201527f74206f776e6572206e6f7220617070726f76656420666f7220616c6c00000000602082015250565b60006132d3603c83612a22565b91506132de82613277565b604082019050919050565b60006020820190508181036000830152613302816132c6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061334382612ad2565b915061334e83612ad2565b92508282101561336157613360613309565b5b828203905092915050565b7f455243373231536c696d3a207472616e736665722063616c6c6572206973206e60008201527f6f74206f776e6572206e6f7220617070726f7665640000000000000000000000602082015250565b60006133c8603583612a22565b91506133d38261336c565b604082019050919050565b600060208201905081810360008301526133f7816133bb565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613434602083612a22565b915061343f826133fe565b602082019050919050565b6000602082019050818103600083015261346381613427565b9050919050565b600061347582612ad2565b915061348083612ad2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134b5576134b4613309565b5b828201905092915050565b7f4d6574615072656461746f723a20657863656564206d6178696d756d2073757060008201527f706c790000000000000000000000000000000000000000000000000000000000602082015250565b600061351c602383612a22565b9150613527826134c0565b604082019050919050565b6000602082019050818103600083015261354b8161350f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061358c82612ad2565b915060008214156135a05761359f613309565b5b600182039050919050565b60006135b682612ad2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135e9576135e8613309565b5b600182019050919050565b7f455243373231536c696d3a206f776e657220696e646578206f7574206f66206260008201527f6f756e6473000000000000000000000000000000000000000000000000000000602082015250565b6000613650602583612a22565b915061365b826135f4565b604082019050919050565b6000602082019050818103600083015261367f81613643565b9050919050565b7f4d6574615072656461746f723a2061726520796f7520626f7474696e673f3f00600082015250565b60006136bc601f83612a22565b91506136c782613686565b602082019050919050565b600060208201905081810360008301526136eb816136af565b9050919050565b7f4d6574615072656461746f723a2073616c65206973206e6f742073746172746560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b600061374e602183612a22565b9150613759826136f2565b604082019050919050565b6000602082019050818103600083015261377d81613741565b9050919050565b7f4d6574615072656461746f723a20657863656564206d6178696d756d20616d6f60008201527f756e742070657220747800000000000000000000000000000000000000000000602082015250565b60006137e0602a83612a22565b91506137eb82613784565b604082019050919050565b6000602082019050818103600083015261380f816137d3565b9050919050565b600061382182612c7a565b915061382c83612c7a565b92508260ff0382111561384257613841613309565b5b828201905092915050565b7f4d6574615072656461746f723a20657863656564206d6178696d756d20616d6f60008201527f756e74207065722077616c6c6574000000000000000000000000000000000000602082015250565b60006138a9602e83612a22565b91506138b48261384d565b604082019050919050565b600060208201905081810360008301526138d88161389c565b9050919050565b60006138ea82612ad2565b91506138f583612ad2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561392e5761392d613309565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061397382612ad2565b915061397e83612ad2565b92508261398e5761398d613939565b5b828204905092915050565b7f455243373231536c696d3a20676c6f62616c20696e646578206f7574206f662060008201527f626f756e64730000000000000000000000000000000000000000000000000000602082015250565b60006139f5602683612a22565b9150613a0082613999565b604082019050919050565b60006020820190508181036000830152613a24816139e8565b9050919050565b7f455243373231536c696d3a206f776e657220717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613a87602d83612a22565b9150613a9282613a2b565b604082019050919050565b60006020820190508181036000830152613ab681613a7a565b9050919050565b7f455243373231536c696d3a2062616c616e636520717565727920666f7220746860008201527f65207a65726f2061646472657373000000000000000000000000000000000000602082015250565b6000613b19602e83612a22565b9150613b2482613abd565b604082019050919050565b60006020820190508181036000830152613b4881613b0c565b9050919050565b7f4d6574615072656461746f723a2055524920717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613bab602d83612a22565b9150613bb682613b4f565b604082019050919050565b60006020820190508181036000830152613bda81613b9e565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613c0e81613121565b613c188186613be1565b94506001821660008114613c335760018114613c4457613c77565b60ff19831686528186019350613c77565b613c4d85613bec565b60005b83811015613c6f57815481890152600182019150602081019050613c50565b838801955050505b50505092915050565b6000613c8b82612a17565b613c958185613be1565b9350613ca5818560208601612a33565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613ce7600583613be1565b9150613cf282613cb1565b600582019050919050565b6000613d098285613c01565b9150613d158284613c80565b9150613d2082613cda565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d88602683612a22565b9150613d9382613d2c565b604082019050919050565b60006020820190508181036000830152613db781613d7b565b9050919050565b7f455243373231536c696d3a206f70657261746f7220717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b6000613e1a603083612a22565b9150613e2582613dbe565b604082019050919050565b60006020820190508181036000830152613e4981613e0d565b9050919050565b7f455243373231536c696d3a207472616e736665722066726f6d20696e636f727260008201527f656374206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613eac602983612a22565b9150613eb782613e50565b604082019050919050565b60006020820190508181036000830152613edb81613e9f565b9050919050565b7f455243373231536c696d3a207472616e7366657220746f20746865207a65726f60008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b6000613f3e602883612a22565b9150613f4982613ee2565b604082019050919050565b60006020820190508181036000830152613f6d81613f31565b9050919050565b7f455243373231536c696d3a206d696e7420746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613fd0602483612a22565b9150613fdb82613f74565b604082019050919050565b60006020820190508181036000830152613fff81613fc3565b9050919050565b7f455243373231536c696d3a206d696e74206e6f7468696e670000000000000000600082015250565b600061403c601883612a22565b915061404782614006565b602082019050919050565b6000602082019050818103600083015261406b8161402f565b9050919050565b7f455243373231536c696d3a207472616e7366657220746f206e6f6e204552433760008201527f3231526563656976657220696d706c656d656e74657200000000000000000000602082015250565b60006140ce603683612a22565b91506140d982614072565b604082019050919050565b600060208201905081810360008301526140fd816140c1565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b600061413a601d83612a22565b915061414582614104565b602082019050919050565b600060208201905081810360008301526141698161412d565b9050919050565b600081905092915050565b50565b600061418b600083614170565b91506141968261417b565b600082019050919050565b60006141ac8261417e565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000614212603a83612a22565b915061421d826141b6565b604082019050919050565b6000602082019050818103600083015261424181614205565b9050919050565b7f455243373231536c696d3a20617070726f766520746f2063616c6c6572000000600082015250565b600061427e601d83612a22565b915061428982614248565b602082019050919050565b600060208201905081810360008301526142ad81614271565b9050919050565b60006142bf82612ad2565b91506142ca83612ad2565b9250826142da576142d9613939565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061430c826142e5565b61431681856142f0565b9350614326818560208601612a33565b61432f81612a66565b840191505092915050565b600060808201905061434f6000830187612b67565b61435c6020830186612b67565b6143696040830185612bfd565b818103606083015261437b8184614301565b905095945050505050565b60008151905061439581612988565b92915050565b6000602082840312156143b1576143b0612952565b5b60006143bf84828501614386565b9150509291505056fea26469706673582212208a214d42e0679ef12d5966291c54d3de58c258fe424cb310d941539fd9a6145b64736f6c63430008090033

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.