ETH Price: $2,599.53 (-4.55%)
 

Overview

Max Total Supply

150 LATINX

Holders

69

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 LATINX
0xa9b6cdab3c0c8f331aa105a38da0c928b73026b0
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:
LatinX

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

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

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

contract LatinX is ERC721, ERC721Enumerable, ERC721Burnable, Ownable {
    using Counters for Counters.Counter;

    Counters.Counter private _counter;
    uint public MAX_SUPPLY = 1000;
    uint256 public price = .08 ether;
    string public baseURI;
    bool public saleIsActive = false;
    uint public constant maxPassTxn = 5;
    address private _manager;
    uint256 public startDate;

    constructor() ERC721("Latin X", "LATINX") Ownable() {}

    function setManager(address manager) public onlyOwner {
        _manager = manager;
    }

    function getManager() public view onlyOwnerOrManager returns (address) {
        return _manager;
    }

    modifier onlyOwnerOrManager() {
        require(
            owner() == _msgSender() || _manager == _msgSender(),
            "Caller is not the owner or manager"
        );
        _;
    }

    function setBaseURI(string memory newBaseURI) public onlyOwnerOrManager {
        baseURI = newBaseURI;
    }

    function setMaxSupply(uint _maxSupply) public onlyOwnerOrManager {
        MAX_SUPPLY = _maxSupply;
    }

    function setPrice(uint256 _price) public onlyOwnerOrManager {
        price = _price;
    }

    function setStartDate(uint256 _startDate) public onlyOwnerOrManager {
        startDate = _startDate;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function totalToken() public view returns (uint256) {
        return _counter.current();
    }

    function contractBalance()
        public
        view
        onlyOwnerOrManager
        returns (uint256)
    {
        return address(this).balance;
    }

    function flipSale() public onlyOwnerOrManager {
        saleIsActive = !saleIsActive;
    }

    function withdrawAll(address _address) public onlyOwnerOrManager {
        uint256 balance = address(this).balance;
        require(balance > 0, "Balance is zero");
        (bool success, ) = _address.call{value: balance}("");
        require(success, "Transfer failed.");
    }

    function _widthdraw(
        address _address,
        uint256 _amount
    ) public onlyOwnerOrManager {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }

    function reserveLatinX(
        uint256 reserveAmount,
        address mintAddress
    ) public onlyOwnerOrManager {
        require(
            totalSupply() + reserveAmount <= MAX_SUPPLY,
            "LatinX Sold Out"
        );
        for (uint256 i = 0; i < reserveAmount; i++) {
            _safeMint(mintAddress, _counter.current() + 1);
            _counter.increment();
        }
    }

    function mintLatinX(uint32 numberOfTokens) public payable {
        require(
            block.timestamp >= startDate,
            "Sale must be active to mint LatinX"
        );
        require(
            numberOfTokens >= 1,
            "You must at least mint 1 Token"
        );
        require(
            price * numberOfTokens <= msg.value,
            "Ether value sent is not correct"
        );
        require(
            numberOfTokens <= maxPassTxn,
            "You can only mint 5 LatinX's at a time"
        );
        require(
            totalSupply() + numberOfTokens <= MAX_SUPPLY,
            "LatinX's Sold Out"
        );

        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 mintIndex = _counter.current() + 1;
            if (mintIndex <= MAX_SUPPLY) {
                _safeMint(msg.sender, mintIndex);
                _counter.increment();
            }
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(
        bytes4 interfaceId
    ) public view override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
}

File 2 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 15 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 15 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: invalid token ID");
        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) {
        _requireMinted(tokenId);

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

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

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

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

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

File 5 of 15 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 15 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;

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

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _burn(tokenId);
    }
}

File 8 of 15 : 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 9 of 15 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 10 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

File 11 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 12 of 15 : 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 15 : 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 14 of 15 : 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);
}

File 15 of 15 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (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);

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"_widthdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSale","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":[],"name":"getManager","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":"maxPassTxn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"numberOfTokens","type":"uint32"}],"name":"mintLatinX","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"reserveAmount","type":"uint256"},{"internalType":"address","name":"mintAddress","type":"address"}],"name":"reserveLatinX","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"manager","type":"address"}],"name":"setManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startDate","type":"uint256"}],"name":"setStartDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalToken","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":[{"internalType":"address","name":"_address","type":"address"}],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526103e8600c5567011c37937e080000600d556000600f60006101000a81548160ff0219169083151502179055503480156200003e57600080fd5b506040518060400160405280600781526020017f4c6174696e2058000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4c4154494e5800000000000000000000000000000000000000000000000000008152508160009081620000bc91906200043f565b508060019081620000ce91906200043f565b505050620000f1620000e5620000f760201b60201c565b620000ff60201b60201c565b62000526565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200024757607f821691505b6020821081036200025d576200025c620001ff565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002c77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000288565b620002d3868362000288565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003206200031a6200031484620002eb565b620002f5565b620002eb565b9050919050565b6000819050919050565b6200033c83620002ff565b620003546200034b8262000327565b84845462000295565b825550505050565b600090565b6200036b6200035c565b6200037881848462000331565b505050565b5b81811015620003a0576200039460008262000361565b6001810190506200037e565b5050565b601f821115620003ef57620003b98162000263565b620003c48462000278565b81016020851015620003d4578190505b620003ec620003e38562000278565b8301826200037d565b50505b505050565b600082821c905092915050565b60006200041460001984600802620003f4565b1980831691505092915050565b60006200042f838362000401565b9150826002028217905092915050565b6200044a82620001c5565b67ffffffffffffffff811115620004665762000465620001d0565b5b6200047282546200022e565b6200047f828285620003a4565b600060209050601f831160018114620004b75760008415620004a2578287015190505b620004ae858262000421565b8655506200051e565b601f198416620004c78662000263565b60005b82811015620004f157848901518255600182019150602085019450602081019050620004ca565b868310156200051157848901516200050d601f89168262000401565b8355505b6001600288020188555050505b505050505050565b614e4680620005366000396000f3fe6080604052600436106102305760003560e01c8063763c9c781161012e578063b4e380d5116100ab578063d50095841161006f578063d500958414610818578063e985e9c514610843578063eb8d244414610880578063f2fde38b146108ab578063fa09e630146108d457610230565b8063b4e380d514610735578063b88d4fde1461075e578063c87b56dd14610787578063cf1582e8146107c4578063d0ebdbe7146107ef57610230565b806391b7f5ed116100f257806391b7f5ed1461067157806395d89b411461069a578063a035b1fe146106c5578063a22cb465146106f0578063aad390071461071957610230565b8063763c9c78146105b25780637ba5e621146105db57806382d95df5146105f25780638b7afe2e1461061b5780638da5cb5b1461064657610230565b806342842e0e116101bc5780636352211e116101805780636352211e146104cd5780636c0360eb1461050a5780636f8b44b01461053557806370a082311461055e578063715018a61461059b57610230565b806342842e0e146103ea57806342966c68146104135780634f6ccce71461043c57806355f804b314610479578063626be567146104a257610230565b80630b97bc86116102035780630b97bc861461030357806318160ddd1461032e57806323b872dd146103595780632f745c591461038257806332cb6b0c146103bf57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906134aa565b6108fd565b60405161026991906134f2565b60405180910390f35b34801561027e57600080fd5b5061028761090f565b604051610294919061359d565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf91906135f5565b6109a1565b6040516102d19190613663565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc91906136aa565b6109e7565b005b34801561030f57600080fd5b50610318610afe565b60405161032591906136f9565b60405180910390f35b34801561033a57600080fd5b50610343610b04565b60405161035091906136f9565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b9190613714565b610b11565b005b34801561038e57600080fd5b506103a960048036038101906103a491906136aa565b610b71565b6040516103b691906136f9565b60405180910390f35b3480156103cb57600080fd5b506103d4610c16565b6040516103e191906136f9565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c9190613714565b610c1c565b005b34801561041f57600080fd5b5061043a600480360381019061043591906135f5565b610c3c565b005b34801561044857600080fd5b50610463600480360381019061045e91906135f5565b610c98565b60405161047091906136f9565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b919061389c565b610d09565b005b3480156104ae57600080fd5b506104b7610df7565b6040516104c491906136f9565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef91906135f5565b610e08565b6040516105019190613663565b60405180910390f35b34801561051657600080fd5b5061051f610eb9565b60405161052c919061359d565b60405180910390f35b34801561054157600080fd5b5061055c600480360381019061055791906135f5565b610f47565b005b34801561056a57600080fd5b50610585600480360381019061058091906138e5565b61102c565b60405161059291906136f9565b60405180910390f35b3480156105a757600080fd5b506105b06110e3565b005b3480156105be57600080fd5b506105d960048036038101906105d49190613912565b6110f7565b005b3480156105e757600080fd5b506105f0611275565b005b3480156105fe57600080fd5b50610619600480360381019061061491906135f5565b61137c565b005b34801561062757600080fd5b50610630611461565b60405161063d91906136f9565b60405180910390f35b34801561065257600080fd5b5061065b611544565b6040516106689190613663565b60405180910390f35b34801561067d57600080fd5b50610698600480360381019061069391906135f5565b61156e565b005b3480156106a657600080fd5b506106af611653565b6040516106bc919061359d565b60405180910390f35b3480156106d157600080fd5b506106da6116e5565b6040516106e791906136f9565b60405180910390f35b3480156106fc57600080fd5b506107176004803603810190610712919061397e565b6116eb565b005b610733600480360381019061072e91906139fa565b611701565b005b34801561074157600080fd5b5061075c600480360381019061075791906136aa565b6118ee565b005b34801561076a57600080fd5b5061078560048036038101906107809190613ac8565b611a7a565b005b34801561079357600080fd5b506107ae60048036038101906107a991906135f5565b611adc565b6040516107bb919061359d565b60405180910390f35b3480156107d057600080fd5b506107d9611b44565b6040516107e691906136f9565b60405180910390f35b3480156107fb57600080fd5b50610816600480360381019061081191906138e5565b611b49565b005b34801561082457600080fd5b5061082d611b95565b60405161083a9190613663565b60405180910390f35b34801561084f57600080fd5b5061086a60048036038101906108659190613b4b565b611c9a565b60405161087791906134f2565b60405180910390f35b34801561088c57600080fd5b50610895611d2e565b6040516108a291906134f2565b60405180910390f35b3480156108b757600080fd5b506108d260048036038101906108cd91906138e5565b611d41565b005b3480156108e057600080fd5b506108fb60048036038101906108f691906138e5565b611dc4565b005b600061090882611f98565b9050919050565b60606000805461091e90613bba565b80601f016020809104026020016040519081016040528092919081815260200182805461094a90613bba565b80156109975780601f1061096c57610100808354040283529160200191610997565b820191906000526020600020905b81548152906001019060200180831161097a57829003601f168201915b5050505050905090565b60006109ac82612012565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109f282610e08565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5990613c5d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8161205d565b73ffffffffffffffffffffffffffffffffffffffff161480610ab05750610aaf81610aaa61205d565b611c9a565b5b610aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae690613cef565b60405180910390fd5b610af98383612065565b505050565b60105481565b6000600880549050905090565b610b22610b1c61205d565b8261211e565b610b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5890613d81565b60405180910390fd5b610b6c8383836121b3565b505050565b6000610b7c8361102c565b8210610bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb490613e13565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600c5481565b610c3783838360405180602001604052806000815250611a7a565b505050565b610c4d610c4761205d565b8261211e565b610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8390613d81565b60405180910390fd5b610c9581612419565b50565b6000610ca2610b04565b8210610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda90613ea5565b60405180910390fd5b60088281548110610cf757610cf6613ec5565b5b90600052602060002001549050919050565b610d1161205d565b73ffffffffffffffffffffffffffffffffffffffff16610d2f611544565b73ffffffffffffffffffffffffffffffffffffffff161480610da55750610d5461205d565b73ffffffffffffffffffffffffffffffffffffffff16600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb90613f66565b60405180910390fd5b80600e9081610df39190614132565b5050565b6000610e03600b612536565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea790614250565b60405180910390fd5b80915050919050565b600e8054610ec690613bba565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef290613bba565b8015610f3f5780601f10610f1457610100808354040283529160200191610f3f565b820191906000526020600020905b815481529060010190602001808311610f2257829003601f168201915b505050505081565b610f4f61205d565b73ffffffffffffffffffffffffffffffffffffffff16610f6d611544565b73ffffffffffffffffffffffffffffffffffffffff161480610fe35750610f9261205d565b73ffffffffffffffffffffffffffffffffffffffff16600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101990613f66565b60405180910390fd5b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361109c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611093906142e2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110eb612544565b6110f560006125c2565b565b6110ff61205d565b73ffffffffffffffffffffffffffffffffffffffff1661111d611544565b73ffffffffffffffffffffffffffffffffffffffff161480611193575061114261205d565b73ffffffffffffffffffffffffffffffffffffffff16600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c990613f66565b60405180910390fd5b600c54826111de610b04565b6111e89190614331565b1115611229576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611220906143b1565b60405180910390fd5b60005b8281101561127057611253826001611244600b612536565b61124e9190614331565b612688565b61125d600b6126a6565b8080611268906143d1565b91505061122c565b505050565b61127d61205d565b73ffffffffffffffffffffffffffffffffffffffff1661129b611544565b73ffffffffffffffffffffffffffffffffffffffff16148061131157506112c061205d565b73ffffffffffffffffffffffffffffffffffffffff16600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134790613f66565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b61138461205d565b73ffffffffffffffffffffffffffffffffffffffff166113a2611544565b73ffffffffffffffffffffffffffffffffffffffff16148061141857506113c761205d565b73ffffffffffffffffffffffffffffffffffffffff16600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144e90613f66565b60405180910390fd5b8060108190555050565b600061146b61205d565b73ffffffffffffffffffffffffffffffffffffffff16611489611544565b73ffffffffffffffffffffffffffffffffffffffff1614806114ff57506114ae61205d565b73ffffffffffffffffffffffffffffffffffffffff16600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61153e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153590613f66565b60405180910390fd5b47905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61157661205d565b73ffffffffffffffffffffffffffffffffffffffff16611594611544565b73ffffffffffffffffffffffffffffffffffffffff16148061160a57506115b961205d565b73ffffffffffffffffffffffffffffffffffffffff16600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611649576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164090613f66565b60405180910390fd5b80600d8190555050565b60606001805461166290613bba565b80601f016020809104026020016040519081016040528092919081815260200182805461168e90613bba565b80156116db5780601f106116b0576101008083540402835291602001916116db565b820191906000526020600020905b8154815290600101906020018083116116be57829003601f168201915b5050505050905090565b600d5481565b6116fd6116f661205d565b83836126bc565b5050565b601054421015611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d9061448b565b60405180910390fd5b60018163ffffffff161015611790576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611787906144f7565b60405180910390fd5b348163ffffffff16600d546117a59190614517565b11156117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd906145a5565b60405180910390fd5b60058163ffffffff161115611830576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182790614637565b60405180910390fd5b600c548163ffffffff16611842610b04565b61184c9190614331565b111561188d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611884906146a3565b60405180910390fd5b60005b8163ffffffff168110156118ea57600060016118ac600b612536565b6118b69190614331565b9050600c5481116118d6576118cb3382612688565b6118d5600b6126a6565b5b5080806118e2906143d1565b915050611890565b5050565b6118f661205d565b73ffffffffffffffffffffffffffffffffffffffff16611914611544565b73ffffffffffffffffffffffffffffffffffffffff16148061198a575061193961205d565b73ffffffffffffffffffffffffffffffffffffffff16600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6119c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c090613f66565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516119ef906146f4565b60006040518083038185875af1925050503d8060008114611a2c576040519150601f19603f3d011682016040523d82523d6000602084013e611a31565b606091505b5050905080611a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6c90614755565b60405180910390fd5b505050565b611a8b611a8561205d565b8361211e565b611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac190613d81565b60405180910390fd5b611ad684848484612828565b50505050565b6060611ae782612012565b6000611af1612884565b90506000815111611b115760405180602001604052806000815250611b3c565b80611b1b84612916565b604051602001611b2c9291906147b1565b6040516020818303038152906040525b915050919050565b600581565b611b51612544565b80600f60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611b9f61205d565b73ffffffffffffffffffffffffffffffffffffffff16611bbd611544565b73ffffffffffffffffffffffffffffffffffffffff161480611c335750611be261205d565b73ffffffffffffffffffffffffffffffffffffffff16600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6990613f66565b60405180910390fd5b600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b611d49612544565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daf90614847565b60405180910390fd5b611dc1816125c2565b50565b611dcc61205d565b73ffffffffffffffffffffffffffffffffffffffff16611dea611544565b73ffffffffffffffffffffffffffffffffffffffff161480611e605750611e0f61205d565b73ffffffffffffffffffffffffffffffffffffffff16600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9690613f66565b60405180910390fd5b600047905060008111611ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ede906148b3565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611f0d906146f4565b60006040518083038185875af1925050503d8060008114611f4a576040519150601f19603f3d011682016040523d82523d6000602084013e611f4f565b606091505b5050905080611f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8a90614755565b60405180910390fd5b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061200b575061200a82612a76565b5b9050919050565b61201b81612b58565b61205a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205190614250565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120d883610e08565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061212a83610e08565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061216c575061216b8185611c9a565b5b806121aa57508373ffffffffffffffffffffffffffffffffffffffff16612192846109a1565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121d382610e08565b73ffffffffffffffffffffffffffffffffffffffff1614612229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222090614945565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228f906149d7565b60405180910390fd5b6122a3838383612bc4565b6122ae600082612065565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122fe91906149f7565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123559190614331565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612414838383612bd4565b505050565b600061242482610e08565b905061243281600084612bc4565b61243d600083612065565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461248d91906149f7565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461253281600084612bd4565b5050565b600081600001549050919050565b61254c61205d565b73ffffffffffffffffffffffffffffffffffffffff1661256a611544565b73ffffffffffffffffffffffffffffffffffffffff16146125c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b790614a77565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126a2828260405180602001604052806000815250612bd9565b5050565b6001816000016000828254019250508190555050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361272a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272190614ae3565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161281b91906134f2565b60405180910390a3505050565b6128338484846121b3565b61283f84848484612c34565b61287e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287590614b75565b60405180910390fd5b50505050565b6060600e805461289390613bba565b80601f01602080910402602001604051908101604052809291908181526020018280546128bf90613bba565b801561290c5780601f106128e15761010080835404028352916020019161290c565b820191906000526020600020905b8154815290600101906020018083116128ef57829003601f168201915b5050505050905090565b60606000820361295d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a71565b600082905060005b6000821461298f578080612978906143d1565b915050600a826129889190614bc4565b9150612965565b60008167ffffffffffffffff8111156129ab576129aa613771565b5b6040519080825280601f01601f1916602001820160405280156129dd5781602001600182028036833780820191505090505b5090505b60008514612a6a576001826129f691906149f7565b9150600a85612a059190614bf5565b6030612a119190614331565b60f81b818381518110612a2757612a26613ec5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a639190614bc4565b94506129e1565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b4157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612b515750612b5082612dbb565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b612bcf838383612e25565b505050565b505050565b612be38383612f37565b612bf06000848484612c34565b612c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2690614b75565b60405180910390fd5b505050565b6000612c558473ffffffffffffffffffffffffffffffffffffffff16613110565b15612dae578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c7e61205d565b8786866040518563ffffffff1660e01b8152600401612ca09493929190614c7b565b6020604051808303816000875af1925050508015612cdc57506040513d601f19601f82011682018060405250810190612cd99190614cdc565b60015b612d5e573d8060008114612d0c576040519150601f19603f3d011682016040523d82523d6000602084013e612d11565b606091505b506000815103612d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4d90614b75565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612db3565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612e30838383613133565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e7257612e6d81613138565b612eb1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612eb057612eaf8382613181565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ef357612eee816132ee565b612f32565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612f3157612f3082826133bf565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9d90614d55565b60405180910390fd5b612faf81612b58565b15612fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe690614dc1565b60405180910390fd5b612ffb60008383612bc4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461304b9190614331565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461310c60008383612bd4565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161318e8461102c565b61319891906149f7565b905060006007600084815260200190815260200160002054905081811461327d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061330291906149f7565b905060006009600084815260200190815260200160002054905060006008838154811061333257613331613ec5565b5b90600052602060002001549050806008838154811061335457613353613ec5565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806133a3576133a2614de1565b5b6001900381819060005260206000200160009055905550505050565b60006133ca8361102c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61348781613452565b811461349257600080fd5b50565b6000813590506134a48161347e565b92915050565b6000602082840312156134c0576134bf613448565b5b60006134ce84828501613495565b91505092915050565b60008115159050919050565b6134ec816134d7565b82525050565b600060208201905061350760008301846134e3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561354757808201518184015260208101905061352c565b60008484015250505050565b6000601f19601f8301169050919050565b600061356f8261350d565b6135798185613518565b9350613589818560208601613529565b61359281613553565b840191505092915050565b600060208201905081810360008301526135b78184613564565b905092915050565b6000819050919050565b6135d2816135bf565b81146135dd57600080fd5b50565b6000813590506135ef816135c9565b92915050565b60006020828403121561360b5761360a613448565b5b6000613619848285016135e0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061364d82613622565b9050919050565b61365d81613642565b82525050565b60006020820190506136786000830184613654565b92915050565b61368781613642565b811461369257600080fd5b50565b6000813590506136a48161367e565b92915050565b600080604083850312156136c1576136c0613448565b5b60006136cf85828601613695565b92505060206136e0858286016135e0565b9150509250929050565b6136f3816135bf565b82525050565b600060208201905061370e60008301846136ea565b92915050565b60008060006060848603121561372d5761372c613448565b5b600061373b86828701613695565b935050602061374c86828701613695565b925050604061375d868287016135e0565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6137a982613553565b810181811067ffffffffffffffff821117156137c8576137c7613771565b5b80604052505050565b60006137db61343e565b90506137e782826137a0565b919050565b600067ffffffffffffffff82111561380757613806613771565b5b61381082613553565b9050602081019050919050565b82818337600083830152505050565b600061383f61383a846137ec565b6137d1565b90508281526020810184848401111561385b5761385a61376c565b5b61386684828561381d565b509392505050565b600082601f83011261388357613882613767565b5b813561389384826020860161382c565b91505092915050565b6000602082840312156138b2576138b1613448565b5b600082013567ffffffffffffffff8111156138d0576138cf61344d565b5b6138dc8482850161386e565b91505092915050565b6000602082840312156138fb576138fa613448565b5b600061390984828501613695565b91505092915050565b6000806040838503121561392957613928613448565b5b6000613937858286016135e0565b925050602061394885828601613695565b9150509250929050565b61395b816134d7565b811461396657600080fd5b50565b60008135905061397881613952565b92915050565b6000806040838503121561399557613994613448565b5b60006139a385828601613695565b92505060206139b485828601613969565b9150509250929050565b600063ffffffff82169050919050565b6139d7816139be565b81146139e257600080fd5b50565b6000813590506139f4816139ce565b92915050565b600060208284031215613a1057613a0f613448565b5b6000613a1e848285016139e5565b91505092915050565b600067ffffffffffffffff821115613a4257613a41613771565b5b613a4b82613553565b9050602081019050919050565b6000613a6b613a6684613a27565b6137d1565b905082815260208101848484011115613a8757613a8661376c565b5b613a9284828561381d565b509392505050565b600082601f830112613aaf57613aae613767565b5b8135613abf848260208601613a58565b91505092915050565b60008060008060808587031215613ae257613ae1613448565b5b6000613af087828801613695565b9450506020613b0187828801613695565b9350506040613b12878288016135e0565b925050606085013567ffffffffffffffff811115613b3357613b3261344d565b5b613b3f87828801613a9a565b91505092959194509250565b60008060408385031215613b6257613b61613448565b5b6000613b7085828601613695565b9250506020613b8185828601613695565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613bd257607f821691505b602082108103613be557613be4613b8b565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c47602183613518565b9150613c5282613beb565b604082019050919050565b60006020820190508181036000830152613c7681613c3a565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000613cd9603e83613518565b9150613ce482613c7d565b604082019050919050565b60006020820190508181036000830152613d0881613ccc565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000613d6b602e83613518565b9150613d7682613d0f565b604082019050919050565b60006020820190508181036000830152613d9a81613d5e565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613dfd602b83613518565b9150613e0882613da1565b604082019050919050565b60006020820190508181036000830152613e2c81613df0565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613e8f602c83613518565b9150613e9a82613e33565b604082019050919050565b60006020820190508181036000830152613ebe81613e82565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f43616c6c6572206973206e6f7420746865206f776e6572206f72206d616e616760008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f50602283613518565b9150613f5b82613ef4565b604082019050919050565b60006020820190508181036000830152613f7f81613f43565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613fe87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613fab565b613ff28683613fab565b95508019841693508086168417925050509392505050565b6000819050919050565b600061402f61402a614025846135bf565b61400a565b6135bf565b9050919050565b6000819050919050565b61404983614014565b61405d61405582614036565b848454613fb8565b825550505050565b600090565b614072614065565b61407d818484614040565b505050565b5b818110156140a15761409660008261406a565b600181019050614083565b5050565b601f8211156140e6576140b781613f86565b6140c084613f9b565b810160208510156140cf578190505b6140e36140db85613f9b565b830182614082565b50505b505050565b600082821c905092915050565b6000614109600019846008026140eb565b1980831691505092915050565b600061412283836140f8565b9150826002028217905092915050565b61413b8261350d565b67ffffffffffffffff81111561415457614153613771565b5b61415e8254613bba565b6141698282856140a5565b600060209050601f83116001811461419c576000841561418a578287015190505b6141948582614116565b8655506141fc565b601f1984166141aa86613f86565b60005b828110156141d2578489015182556001820191506020850194506020810190506141ad565b868310156141ef57848901516141eb601f8916826140f8565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061423a601883613518565b915061424582614204565b602082019050919050565b600060208201905081810360008301526142698161422d565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006142cc602983613518565b91506142d782614270565b604082019050919050565b600060208201905081810360008301526142fb816142bf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061433c826135bf565b9150614347836135bf565b925082820190508082111561435f5761435e614302565b5b92915050565b7f4c6174696e5820536f6c64204f75740000000000000000000000000000000000600082015250565b600061439b600f83613518565b91506143a682614365565b602082019050919050565b600060208201905081810360008301526143ca8161438e565b9050919050565b60006143dc826135bf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361440e5761440d614302565b5b600182019050919050565b7f53616c65206d7573742062652061637469766520746f206d696e74204c61746960008201527f6e58000000000000000000000000000000000000000000000000000000000000602082015250565b6000614475602283613518565b915061448082614419565b604082019050919050565b600060208201905081810360008301526144a481614468565b9050919050565b7f596f75206d757374206174206c65617374206d696e74203120546f6b656e0000600082015250565b60006144e1601e83613518565b91506144ec826144ab565b602082019050919050565b60006020820190508181036000830152614510816144d4565b9050919050565b6000614522826135bf565b915061452d836135bf565b925082820261453b816135bf565b9150828204841483151761455257614551614302565b5b5092915050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b600061458f601f83613518565b915061459a82614559565b602082019050919050565b600060208201905081810360008301526145be81614582565b9050919050565b7f596f752063616e206f6e6c79206d696e742035204c6174696e5827732061742060008201527f612074696d650000000000000000000000000000000000000000000000000000602082015250565b6000614621602683613518565b915061462c826145c5565b604082019050919050565b6000602082019050818103600083015261465081614614565b9050919050565b7f4c6174696e58277320536f6c64204f7574000000000000000000000000000000600082015250565b600061468d601183613518565b915061469882614657565b602082019050919050565b600060208201905081810360008301526146bc81614680565b9050919050565b600081905092915050565b50565b60006146de6000836146c3565b91506146e9826146ce565b600082019050919050565b60006146ff826146d1565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061473f601083613518565b915061474a82614709565b602082019050919050565b6000602082019050818103600083015261476e81614732565b9050919050565b600081905092915050565b600061478b8261350d565b6147958185614775565b93506147a5818560208601613529565b80840191505092915050565b60006147bd8285614780565b91506147c98284614780565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614831602683613518565b915061483c826147d5565b604082019050919050565b6000602082019050818103600083015261486081614824565b9050919050565b7f42616c616e6365206973207a65726f0000000000000000000000000000000000600082015250565b600061489d600f83613518565b91506148a882614867565b602082019050919050565b600060208201905081810360008301526148cc81614890565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061492f602583613518565b915061493a826148d3565b604082019050919050565b6000602082019050818103600083015261495e81614922565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006149c1602483613518565b91506149cc82614965565b604082019050919050565b600060208201905081810360008301526149f0816149b4565b9050919050565b6000614a02826135bf565b9150614a0d836135bf565b9250828203905081811115614a2557614a24614302565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a61602083613518565b9150614a6c82614a2b565b602082019050919050565b60006020820190508181036000830152614a9081614a54565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614acd601983613518565b9150614ad882614a97565b602082019050919050565b60006020820190508181036000830152614afc81614ac0565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614b5f603283613518565b9150614b6a82614b03565b604082019050919050565b60006020820190508181036000830152614b8e81614b52565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614bcf826135bf565b9150614bda836135bf565b925082614bea57614be9614b95565b5b828204905092915050565b6000614c00826135bf565b9150614c0b836135bf565b925082614c1b57614c1a614b95565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614c4d82614c26565b614c578185614c31565b9350614c67818560208601613529565b614c7081613553565b840191505092915050565b6000608082019050614c906000830187613654565b614c9d6020830186613654565b614caa60408301856136ea565b8181036060830152614cbc8184614c42565b905095945050505050565b600081519050614cd68161347e565b92915050565b600060208284031215614cf257614cf1613448565b5b6000614d0084828501614cc7565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614d3f602083613518565b9150614d4a82614d09565b602082019050919050565b60006020820190508181036000830152614d6e81614d32565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614dab601c83613518565b9150614db682614d75565b602082019050919050565b60006020820190508181036000830152614dda81614d9e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea264697066735822122028e27aa1f091b26855e262fa21820f60812fb09606985b8d7242f49a5987450164736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102305760003560e01c8063763c9c781161012e578063b4e380d5116100ab578063d50095841161006f578063d500958414610818578063e985e9c514610843578063eb8d244414610880578063f2fde38b146108ab578063fa09e630146108d457610230565b8063b4e380d514610735578063b88d4fde1461075e578063c87b56dd14610787578063cf1582e8146107c4578063d0ebdbe7146107ef57610230565b806391b7f5ed116100f257806391b7f5ed1461067157806395d89b411461069a578063a035b1fe146106c5578063a22cb465146106f0578063aad390071461071957610230565b8063763c9c78146105b25780637ba5e621146105db57806382d95df5146105f25780638b7afe2e1461061b5780638da5cb5b1461064657610230565b806342842e0e116101bc5780636352211e116101805780636352211e146104cd5780636c0360eb1461050a5780636f8b44b01461053557806370a082311461055e578063715018a61461059b57610230565b806342842e0e146103ea57806342966c68146104135780634f6ccce71461043c57806355f804b314610479578063626be567146104a257610230565b80630b97bc86116102035780630b97bc861461030357806318160ddd1461032e57806323b872dd146103595780632f745c591461038257806332cb6b0c146103bf57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906134aa565b6108fd565b60405161026991906134f2565b60405180910390f35b34801561027e57600080fd5b5061028761090f565b604051610294919061359d565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf91906135f5565b6109a1565b6040516102d19190613663565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc91906136aa565b6109e7565b005b34801561030f57600080fd5b50610318610afe565b60405161032591906136f9565b60405180910390f35b34801561033a57600080fd5b50610343610b04565b60405161035091906136f9565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b9190613714565b610b11565b005b34801561038e57600080fd5b506103a960048036038101906103a491906136aa565b610b71565b6040516103b691906136f9565b60405180910390f35b3480156103cb57600080fd5b506103d4610c16565b6040516103e191906136f9565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c9190613714565b610c1c565b005b34801561041f57600080fd5b5061043a600480360381019061043591906135f5565b610c3c565b005b34801561044857600080fd5b50610463600480360381019061045e91906135f5565b610c98565b60405161047091906136f9565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b919061389c565b610d09565b005b3480156104ae57600080fd5b506104b7610df7565b6040516104c491906136f9565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef91906135f5565b610e08565b6040516105019190613663565b60405180910390f35b34801561051657600080fd5b5061051f610eb9565b60405161052c919061359d565b60405180910390f35b34801561054157600080fd5b5061055c600480360381019061055791906135f5565b610f47565b005b34801561056a57600080fd5b50610585600480360381019061058091906138e5565b61102c565b60405161059291906136f9565b60405180910390f35b3480156105a757600080fd5b506105b06110e3565b005b3480156105be57600080fd5b506105d960048036038101906105d49190613912565b6110f7565b005b3480156105e757600080fd5b506105f0611275565b005b3480156105fe57600080fd5b50610619600480360381019061061491906135f5565b61137c565b005b34801561062757600080fd5b50610630611461565b60405161063d91906136f9565b60405180910390f35b34801561065257600080fd5b5061065b611544565b6040516106689190613663565b60405180910390f35b34801561067d57600080fd5b50610698600480360381019061069391906135f5565b61156e565b005b3480156106a657600080fd5b506106af611653565b6040516106bc919061359d565b60405180910390f35b3480156106d157600080fd5b506106da6116e5565b6040516106e791906136f9565b60405180910390f35b3480156106fc57600080fd5b506107176004803603810190610712919061397e565b6116eb565b005b610733600480360381019061072e91906139fa565b611701565b005b34801561074157600080fd5b5061075c600480360381019061075791906136aa565b6118ee565b005b34801561076a57600080fd5b5061078560048036038101906107809190613ac8565b611a7a565b005b34801561079357600080fd5b506107ae60048036038101906107a991906135f5565b611adc565b6040516107bb919061359d565b60405180910390f35b3480156107d057600080fd5b506107d9611b44565b6040516107e691906136f9565b60405180910390f35b3480156107fb57600080fd5b50610816600480360381019061081191906138e5565b611b49565b005b34801561082457600080fd5b5061082d611b95565b60405161083a9190613663565b60405180910390f35b34801561084f57600080fd5b5061086a60048036038101906108659190613b4b565b611c9a565b60405161087791906134f2565b60405180910390f35b34801561088c57600080fd5b50610895611d2e565b6040516108a291906134f2565b60405180910390f35b3480156108b757600080fd5b506108d260048036038101906108cd91906138e5565b611d41565b005b3480156108e057600080fd5b506108fb60048036038101906108f691906138e5565b611dc4565b005b600061090882611f98565b9050919050565b60606000805461091e90613bba565b80601f016020809104026020016040519081016040528092919081815260200182805461094a90613bba565b80156109975780601f1061096c57610100808354040283529160200191610997565b820191906000526020600020905b81548152906001019060200180831161097a57829003601f168201915b5050505050905090565b60006109ac82612012565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109f282610e08565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5990613c5d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8161205d565b73ffffffffffffffffffffffffffffffffffffffff161480610ab05750610aaf81610aaa61205d565b611c9a565b5b610aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae690613cef565b60405180910390fd5b610af98383612065565b505050565b60105481565b6000600880549050905090565b610b22610b1c61205d565b8261211e565b610b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5890613d81565b60405180910390fd5b610b6c8383836121b3565b505050565b6000610b7c8361102c565b8210610bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb490613e13565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600c5481565b610c3783838360405180602001604052806000815250611a7a565b505050565b610c4d610c4761205d565b8261211e565b610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8390613d81565b60405180910390fd5b610c9581612419565b50565b6000610ca2610b04565b8210610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda90613ea5565b60405180910390fd5b60088281548110610cf757610cf6613ec5565b5b90600052602060002001549050919050565b610d1161205d565b73ffffffffffffffffffffffffffffffffffffffff16610d2f611544565b73ffffffffffffffffffffffffffffffffffffffff161480610da55750610d5461205d565b73ffffffffffffffffffffffffffffffffffffffff16600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb90613f66565b60405180910390fd5b80600e9081610df39190614132565b5050565b6000610e03600b612536565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea790614250565b60405180910390fd5b80915050919050565b600e8054610ec690613bba565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef290613bba565b8015610f3f5780601f10610f1457610100808354040283529160200191610f3f565b820191906000526020600020905b815481529060010190602001808311610f2257829003601f168201915b505050505081565b610f4f61205d565b73ffffffffffffffffffffffffffffffffffffffff16610f6d611544565b73ffffffffffffffffffffffffffffffffffffffff161480610fe35750610f9261205d565b73ffffffffffffffffffffffffffffffffffffffff16600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101990613f66565b60405180910390fd5b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361109c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611093906142e2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110eb612544565b6110f560006125c2565b565b6110ff61205d565b73ffffffffffffffffffffffffffffffffffffffff1661111d611544565b73ffffffffffffffffffffffffffffffffffffffff161480611193575061114261205d565b73ffffffffffffffffffffffffffffffffffffffff16600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c990613f66565b60405180910390fd5b600c54826111de610b04565b6111e89190614331565b1115611229576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611220906143b1565b60405180910390fd5b60005b8281101561127057611253826001611244600b612536565b61124e9190614331565b612688565b61125d600b6126a6565b8080611268906143d1565b91505061122c565b505050565b61127d61205d565b73ffffffffffffffffffffffffffffffffffffffff1661129b611544565b73ffffffffffffffffffffffffffffffffffffffff16148061131157506112c061205d565b73ffffffffffffffffffffffffffffffffffffffff16600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134790613f66565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b61138461205d565b73ffffffffffffffffffffffffffffffffffffffff166113a2611544565b73ffffffffffffffffffffffffffffffffffffffff16148061141857506113c761205d565b73ffffffffffffffffffffffffffffffffffffffff16600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144e90613f66565b60405180910390fd5b8060108190555050565b600061146b61205d565b73ffffffffffffffffffffffffffffffffffffffff16611489611544565b73ffffffffffffffffffffffffffffffffffffffff1614806114ff57506114ae61205d565b73ffffffffffffffffffffffffffffffffffffffff16600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61153e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153590613f66565b60405180910390fd5b47905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61157661205d565b73ffffffffffffffffffffffffffffffffffffffff16611594611544565b73ffffffffffffffffffffffffffffffffffffffff16148061160a57506115b961205d565b73ffffffffffffffffffffffffffffffffffffffff16600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611649576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164090613f66565b60405180910390fd5b80600d8190555050565b60606001805461166290613bba565b80601f016020809104026020016040519081016040528092919081815260200182805461168e90613bba565b80156116db5780601f106116b0576101008083540402835291602001916116db565b820191906000526020600020905b8154815290600101906020018083116116be57829003601f168201915b5050505050905090565b600d5481565b6116fd6116f661205d565b83836126bc565b5050565b601054421015611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d9061448b565b60405180910390fd5b60018163ffffffff161015611790576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611787906144f7565b60405180910390fd5b348163ffffffff16600d546117a59190614517565b11156117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd906145a5565b60405180910390fd5b60058163ffffffff161115611830576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182790614637565b60405180910390fd5b600c548163ffffffff16611842610b04565b61184c9190614331565b111561188d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611884906146a3565b60405180910390fd5b60005b8163ffffffff168110156118ea57600060016118ac600b612536565b6118b69190614331565b9050600c5481116118d6576118cb3382612688565b6118d5600b6126a6565b5b5080806118e2906143d1565b915050611890565b5050565b6118f661205d565b73ffffffffffffffffffffffffffffffffffffffff16611914611544565b73ffffffffffffffffffffffffffffffffffffffff16148061198a575061193961205d565b73ffffffffffffffffffffffffffffffffffffffff16600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6119c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c090613f66565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516119ef906146f4565b60006040518083038185875af1925050503d8060008114611a2c576040519150601f19603f3d011682016040523d82523d6000602084013e611a31565b606091505b5050905080611a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6c90614755565b60405180910390fd5b505050565b611a8b611a8561205d565b8361211e565b611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac190613d81565b60405180910390fd5b611ad684848484612828565b50505050565b6060611ae782612012565b6000611af1612884565b90506000815111611b115760405180602001604052806000815250611b3c565b80611b1b84612916565b604051602001611b2c9291906147b1565b6040516020818303038152906040525b915050919050565b600581565b611b51612544565b80600f60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611b9f61205d565b73ffffffffffffffffffffffffffffffffffffffff16611bbd611544565b73ffffffffffffffffffffffffffffffffffffffff161480611c335750611be261205d565b73ffffffffffffffffffffffffffffffffffffffff16600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6990613f66565b60405180910390fd5b600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b611d49612544565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daf90614847565b60405180910390fd5b611dc1816125c2565b50565b611dcc61205d565b73ffffffffffffffffffffffffffffffffffffffff16611dea611544565b73ffffffffffffffffffffffffffffffffffffffff161480611e605750611e0f61205d565b73ffffffffffffffffffffffffffffffffffffffff16600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9690613f66565b60405180910390fd5b600047905060008111611ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ede906148b3565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611f0d906146f4565b60006040518083038185875af1925050503d8060008114611f4a576040519150601f19603f3d011682016040523d82523d6000602084013e611f4f565b606091505b5050905080611f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8a90614755565b60405180910390fd5b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061200b575061200a82612a76565b5b9050919050565b61201b81612b58565b61205a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205190614250565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120d883610e08565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061212a83610e08565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061216c575061216b8185611c9a565b5b806121aa57508373ffffffffffffffffffffffffffffffffffffffff16612192846109a1565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121d382610e08565b73ffffffffffffffffffffffffffffffffffffffff1614612229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222090614945565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228f906149d7565b60405180910390fd5b6122a3838383612bc4565b6122ae600082612065565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122fe91906149f7565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123559190614331565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612414838383612bd4565b505050565b600061242482610e08565b905061243281600084612bc4565b61243d600083612065565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461248d91906149f7565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461253281600084612bd4565b5050565b600081600001549050919050565b61254c61205d565b73ffffffffffffffffffffffffffffffffffffffff1661256a611544565b73ffffffffffffffffffffffffffffffffffffffff16146125c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b790614a77565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126a2828260405180602001604052806000815250612bd9565b5050565b6001816000016000828254019250508190555050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361272a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272190614ae3565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161281b91906134f2565b60405180910390a3505050565b6128338484846121b3565b61283f84848484612c34565b61287e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287590614b75565b60405180910390fd5b50505050565b6060600e805461289390613bba565b80601f01602080910402602001604051908101604052809291908181526020018280546128bf90613bba565b801561290c5780601f106128e15761010080835404028352916020019161290c565b820191906000526020600020905b8154815290600101906020018083116128ef57829003601f168201915b5050505050905090565b60606000820361295d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a71565b600082905060005b6000821461298f578080612978906143d1565b915050600a826129889190614bc4565b9150612965565b60008167ffffffffffffffff8111156129ab576129aa613771565b5b6040519080825280601f01601f1916602001820160405280156129dd5781602001600182028036833780820191505090505b5090505b60008514612a6a576001826129f691906149f7565b9150600a85612a059190614bf5565b6030612a119190614331565b60f81b818381518110612a2757612a26613ec5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a639190614bc4565b94506129e1565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b4157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612b515750612b5082612dbb565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b612bcf838383612e25565b505050565b505050565b612be38383612f37565b612bf06000848484612c34565b612c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2690614b75565b60405180910390fd5b505050565b6000612c558473ffffffffffffffffffffffffffffffffffffffff16613110565b15612dae578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c7e61205d565b8786866040518563ffffffff1660e01b8152600401612ca09493929190614c7b565b6020604051808303816000875af1925050508015612cdc57506040513d601f19601f82011682018060405250810190612cd99190614cdc565b60015b612d5e573d8060008114612d0c576040519150601f19603f3d011682016040523d82523d6000602084013e612d11565b606091505b506000815103612d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4d90614b75565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612db3565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612e30838383613133565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e7257612e6d81613138565b612eb1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612eb057612eaf8382613181565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ef357612eee816132ee565b612f32565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612f3157612f3082826133bf565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9d90614d55565b60405180910390fd5b612faf81612b58565b15612fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe690614dc1565b60405180910390fd5b612ffb60008383612bc4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461304b9190614331565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461310c60008383612bd4565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161318e8461102c565b61319891906149f7565b905060006007600084815260200190815260200160002054905081811461327d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061330291906149f7565b905060006009600084815260200190815260200160002054905060006008838154811061333257613331613ec5565b5b90600052602060002001549050806008838154811061335457613353613ec5565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806133a3576133a2614de1565b5b6001900381819060005260206000200160009055905550505050565b60006133ca8361102c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61348781613452565b811461349257600080fd5b50565b6000813590506134a48161347e565b92915050565b6000602082840312156134c0576134bf613448565b5b60006134ce84828501613495565b91505092915050565b60008115159050919050565b6134ec816134d7565b82525050565b600060208201905061350760008301846134e3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561354757808201518184015260208101905061352c565b60008484015250505050565b6000601f19601f8301169050919050565b600061356f8261350d565b6135798185613518565b9350613589818560208601613529565b61359281613553565b840191505092915050565b600060208201905081810360008301526135b78184613564565b905092915050565b6000819050919050565b6135d2816135bf565b81146135dd57600080fd5b50565b6000813590506135ef816135c9565b92915050565b60006020828403121561360b5761360a613448565b5b6000613619848285016135e0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061364d82613622565b9050919050565b61365d81613642565b82525050565b60006020820190506136786000830184613654565b92915050565b61368781613642565b811461369257600080fd5b50565b6000813590506136a48161367e565b92915050565b600080604083850312156136c1576136c0613448565b5b60006136cf85828601613695565b92505060206136e0858286016135e0565b9150509250929050565b6136f3816135bf565b82525050565b600060208201905061370e60008301846136ea565b92915050565b60008060006060848603121561372d5761372c613448565b5b600061373b86828701613695565b935050602061374c86828701613695565b925050604061375d868287016135e0565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6137a982613553565b810181811067ffffffffffffffff821117156137c8576137c7613771565b5b80604052505050565b60006137db61343e565b90506137e782826137a0565b919050565b600067ffffffffffffffff82111561380757613806613771565b5b61381082613553565b9050602081019050919050565b82818337600083830152505050565b600061383f61383a846137ec565b6137d1565b90508281526020810184848401111561385b5761385a61376c565b5b61386684828561381d565b509392505050565b600082601f83011261388357613882613767565b5b813561389384826020860161382c565b91505092915050565b6000602082840312156138b2576138b1613448565b5b600082013567ffffffffffffffff8111156138d0576138cf61344d565b5b6138dc8482850161386e565b91505092915050565b6000602082840312156138fb576138fa613448565b5b600061390984828501613695565b91505092915050565b6000806040838503121561392957613928613448565b5b6000613937858286016135e0565b925050602061394885828601613695565b9150509250929050565b61395b816134d7565b811461396657600080fd5b50565b60008135905061397881613952565b92915050565b6000806040838503121561399557613994613448565b5b60006139a385828601613695565b92505060206139b485828601613969565b9150509250929050565b600063ffffffff82169050919050565b6139d7816139be565b81146139e257600080fd5b50565b6000813590506139f4816139ce565b92915050565b600060208284031215613a1057613a0f613448565b5b6000613a1e848285016139e5565b91505092915050565b600067ffffffffffffffff821115613a4257613a41613771565b5b613a4b82613553565b9050602081019050919050565b6000613a6b613a6684613a27565b6137d1565b905082815260208101848484011115613a8757613a8661376c565b5b613a9284828561381d565b509392505050565b600082601f830112613aaf57613aae613767565b5b8135613abf848260208601613a58565b91505092915050565b60008060008060808587031215613ae257613ae1613448565b5b6000613af087828801613695565b9450506020613b0187828801613695565b9350506040613b12878288016135e0565b925050606085013567ffffffffffffffff811115613b3357613b3261344d565b5b613b3f87828801613a9a565b91505092959194509250565b60008060408385031215613b6257613b61613448565b5b6000613b7085828601613695565b9250506020613b8185828601613695565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613bd257607f821691505b602082108103613be557613be4613b8b565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c47602183613518565b9150613c5282613beb565b604082019050919050565b60006020820190508181036000830152613c7681613c3a565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000613cd9603e83613518565b9150613ce482613c7d565b604082019050919050565b60006020820190508181036000830152613d0881613ccc565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000613d6b602e83613518565b9150613d7682613d0f565b604082019050919050565b60006020820190508181036000830152613d9a81613d5e565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613dfd602b83613518565b9150613e0882613da1565b604082019050919050565b60006020820190508181036000830152613e2c81613df0565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613e8f602c83613518565b9150613e9a82613e33565b604082019050919050565b60006020820190508181036000830152613ebe81613e82565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f43616c6c6572206973206e6f7420746865206f776e6572206f72206d616e616760008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f50602283613518565b9150613f5b82613ef4565b604082019050919050565b60006020820190508181036000830152613f7f81613f43565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613fe87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613fab565b613ff28683613fab565b95508019841693508086168417925050509392505050565b6000819050919050565b600061402f61402a614025846135bf565b61400a565b6135bf565b9050919050565b6000819050919050565b61404983614014565b61405d61405582614036565b848454613fb8565b825550505050565b600090565b614072614065565b61407d818484614040565b505050565b5b818110156140a15761409660008261406a565b600181019050614083565b5050565b601f8211156140e6576140b781613f86565b6140c084613f9b565b810160208510156140cf578190505b6140e36140db85613f9b565b830182614082565b50505b505050565b600082821c905092915050565b6000614109600019846008026140eb565b1980831691505092915050565b600061412283836140f8565b9150826002028217905092915050565b61413b8261350d565b67ffffffffffffffff81111561415457614153613771565b5b61415e8254613bba565b6141698282856140a5565b600060209050601f83116001811461419c576000841561418a578287015190505b6141948582614116565b8655506141fc565b601f1984166141aa86613f86565b60005b828110156141d2578489015182556001820191506020850194506020810190506141ad565b868310156141ef57848901516141eb601f8916826140f8565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061423a601883613518565b915061424582614204565b602082019050919050565b600060208201905081810360008301526142698161422d565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006142cc602983613518565b91506142d782614270565b604082019050919050565b600060208201905081810360008301526142fb816142bf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061433c826135bf565b9150614347836135bf565b925082820190508082111561435f5761435e614302565b5b92915050565b7f4c6174696e5820536f6c64204f75740000000000000000000000000000000000600082015250565b600061439b600f83613518565b91506143a682614365565b602082019050919050565b600060208201905081810360008301526143ca8161438e565b9050919050565b60006143dc826135bf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361440e5761440d614302565b5b600182019050919050565b7f53616c65206d7573742062652061637469766520746f206d696e74204c61746960008201527f6e58000000000000000000000000000000000000000000000000000000000000602082015250565b6000614475602283613518565b915061448082614419565b604082019050919050565b600060208201905081810360008301526144a481614468565b9050919050565b7f596f75206d757374206174206c65617374206d696e74203120546f6b656e0000600082015250565b60006144e1601e83613518565b91506144ec826144ab565b602082019050919050565b60006020820190508181036000830152614510816144d4565b9050919050565b6000614522826135bf565b915061452d836135bf565b925082820261453b816135bf565b9150828204841483151761455257614551614302565b5b5092915050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b600061458f601f83613518565b915061459a82614559565b602082019050919050565b600060208201905081810360008301526145be81614582565b9050919050565b7f596f752063616e206f6e6c79206d696e742035204c6174696e5827732061742060008201527f612074696d650000000000000000000000000000000000000000000000000000602082015250565b6000614621602683613518565b915061462c826145c5565b604082019050919050565b6000602082019050818103600083015261465081614614565b9050919050565b7f4c6174696e58277320536f6c64204f7574000000000000000000000000000000600082015250565b600061468d601183613518565b915061469882614657565b602082019050919050565b600060208201905081810360008301526146bc81614680565b9050919050565b600081905092915050565b50565b60006146de6000836146c3565b91506146e9826146ce565b600082019050919050565b60006146ff826146d1565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061473f601083613518565b915061474a82614709565b602082019050919050565b6000602082019050818103600083015261476e81614732565b9050919050565b600081905092915050565b600061478b8261350d565b6147958185614775565b93506147a5818560208601613529565b80840191505092915050565b60006147bd8285614780565b91506147c98284614780565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614831602683613518565b915061483c826147d5565b604082019050919050565b6000602082019050818103600083015261486081614824565b9050919050565b7f42616c616e6365206973207a65726f0000000000000000000000000000000000600082015250565b600061489d600f83613518565b91506148a882614867565b602082019050919050565b600060208201905081810360008301526148cc81614890565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061492f602583613518565b915061493a826148d3565b604082019050919050565b6000602082019050818103600083015261495e81614922565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006149c1602483613518565b91506149cc82614965565b604082019050919050565b600060208201905081810360008301526149f0816149b4565b9050919050565b6000614a02826135bf565b9150614a0d836135bf565b9250828203905081811115614a2557614a24614302565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a61602083613518565b9150614a6c82614a2b565b602082019050919050565b60006020820190508181036000830152614a9081614a54565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614acd601983613518565b9150614ad882614a97565b602082019050919050565b60006020820190508181036000830152614afc81614ac0565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614b5f603283613518565b9150614b6a82614b03565b604082019050919050565b60006020820190508181036000830152614b8e81614b52565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614bcf826135bf565b9150614bda836135bf565b925082614bea57614be9614b95565b5b828204905092915050565b6000614c00826135bf565b9150614c0b836135bf565b925082614c1b57614c1a614b95565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614c4d82614c26565b614c578185614c31565b9350614c67818560208601613529565b614c7081613553565b840191505092915050565b6000608082019050614c906000830187613654565b614c9d6020830186613654565b614caa60408301856136ea565b8181036060830152614cbc8184614c42565b905095945050505050565b600081519050614cd68161347e565b92915050565b600060208284031215614cf257614cf1613448565b5b6000614d0084828501614cc7565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614d3f602083613518565b9150614d4a82614d09565b602082019050919050565b60006020820190508181036000830152614d6e81614d32565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614dab601c83613518565b9150614db682614d75565b602082019050919050565b60006020820190508181036000830152614dda81614d9e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea264697066735822122028e27aa1f091b26855e262fa21820f60812fb09606985b8d7242f49a5987450164736f6c63430008110033

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.