ETH Price: $2,592.93 (-3.44%)
Gas: 4 Gwei

Contract

0x2fBC53e14EA8e4c23bE832A0389817E77744FDC1
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Approval For...204652492024-08-05 22:08:116 days ago1722895691IN
Otomotors: OTO Token
0 ETH0.00019074.09064671
Transfer From200516342024-06-09 3:38:4764 days ago1717904327IN
Otomotors: OTO Token
0 ETH0.000539226.14197814
Transfer From200516342024-06-09 3:38:4764 days ago1717904327IN
Otomotors: OTO Token
0 ETH0.000547716.23860815
Set Approval For...199010992024-05-19 2:47:2385 days ago1716086843IN
Otomotors: OTO Token
0 ETH0.000141773.04112679
Set Approval For...196858312024-04-19 0:10:59115 days ago1713485459IN
Otomotors: OTO Token
0 ETH0.000187027.54759821
Set Approval For...195477712024-03-30 15:51:47134 days ago1711813907IN
Otomotors: OTO Token
0 ETH0.0011667625.02763539
Set Approval For...195366882024-03-29 2:28:35136 days ago1711679315IN
Otomotors: OTO Token
0 ETH0.0011753125.17209469
Set Approval For...193260102024-02-28 12:24:35165 days ago1709123075IN
Otomotors: OTO Token
0 ETH0.0014846559.88689464
Set Approval For...193248462024-02-28 8:28:59166 days ago1709108939IN
Otomotors: OTO Token
0 ETH0.0022505448.20093201
Set Approval For...191700372024-02-06 15:19:11187 days ago1707232751IN
Otomotors: OTO Token
0 ETH0.0026786157.45766277
Set Approval For...191668642024-02-06 4:36:59188 days ago1707194219IN
Otomotors: OTO Token
0 ETH0.0008752418.77444947
Set Approval For...189895142024-01-12 8:05:59213 days ago1705046759IN
Otomotors: OTO Token
0 ETH0.0007770616.66837192
Set Approval For...189324892024-01-04 7:30:23221 days ago1704353423IN
Otomotors: OTO Token
0 ETH0.0004256117.22654278
Set Approval For...189324722024-01-04 7:26:47221 days ago1704353207IN
Otomotors: OTO Token
0 ETH0.0003792915.29982808
Approve188946782023-12-30 0:06:11226 days ago1703894771IN
Otomotors: OTO Token
0 ETH0.0009441519.18512808
Approve188941882023-12-29 22:27:35226 days ago1703888855IN
Otomotors: OTO Token
0 ETH0.0011107922.57110122
Approve188941602023-12-29 22:21:35226 days ago1703888495IN
Otomotors: OTO Token
0 ETH0.0013677527.79263948
Approve188941542023-12-29 22:20:23226 days ago1703888423IN
Otomotors: OTO Token
0 ETH0.0011033122.41918587
Set Approval For...186876182023-11-30 23:13:23255 days ago1701386003IN
Otomotors: OTO Token
0 ETH0.0011192241.88864465
Set Approval For...186876182023-11-30 23:13:23255 days ago1701386003IN
Otomotors: OTO Token
0 ETH0.0019522941.87770305
Set Approval For...186392222023-11-24 4:35:35262 days ago1700800535IN
Otomotors: OTO Token
0 ETH0.0004735419.10155894
Set Approval For...185942652023-11-17 21:25:35268 days ago1700256335IN
Otomotors: OTO Token
0 ETH0.0013250528.42315346
Set Approval For...181964492023-09-23 5:31:23324 days ago1695447083IN
Otomotors: OTO Token
0 ETH0.00037057.93311471
Safe Transfer Fr...181964142023-09-23 5:24:23324 days ago1695446663IN
Otomotors: OTO Token
0 ETH0.0019696322.42888693
Set Approval For...181687252023-09-19 8:19:47328 days ago1695111587IN
Otomotors: OTO Token
0 ETH0.000513511.01485102
View all transactions

Latest 5 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
140903662022-01-27 22:21:16927 days ago1643322076
Otomotors: OTO Token
1.68 ETH
134264062021-10-16 2:40:051031 days ago1634352005
Otomotors: OTO Token
18.56 ETH
133898582021-10-10 8:28:481037 days ago1633854528
Otomotors: OTO Token
15.52 ETH
133861092021-10-09 18:24:291037 days ago1633803869
Otomotors: OTO Token
43.04 ETH
133855472021-10-09 16:13:241037 days ago1633796004
Otomotors: OTO Token
11.12 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Otomotors

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

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

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

contract Otomotors is ERC721Enumerable, Ownable {
    uint256 public mintPrice = 80000000000000000; //0.08 ETH
    uint256 public maxPurchase = 10;
    bool public saleIsActive = false;

    // batch 1: 5001 nfts. ids: 1-5,001
    // batch 2: 5002 nfts. ids: 5,002-10,003
    // batch 3: 5003 nfts. ids: 10,004-15,007
    uint256 public currentBatch = 1;
    uint256 public BATCH_SIZE = 5000;

    string _baseTokenURI;

    event SaleActivation(bool isActive);

    constructor() ERC721("Otomotors", "OTO") {}

    function startNewBatch() external onlyOwner {
        uint256 expectedSupply = 0;

        for (uint256 i = 1; i <= currentBatch; i++) {
            expectedSupply += getBatchSize(i);
        }

        require(
            expectedSupply == totalSupply(),
            "The previous batch must be complete to start the next batch"
        );

        currentBatch += 1;
    }

    function devMint(address _to, uint256 _count) external onlyOwner {
        uint256 batchMax = getBatchMaxSupply(currentBatch);

        require(
            totalSupply() + _count <= batchMax,
            "Purchase would exceed max supply of Otomotors"
        );

        for (uint256 i = 0; i < _count; i++) {
            uint256 mintIndex = totalSupply();
            if (totalSupply() < batchMax) {
                _safeMint(_to, mintIndex);
            }
        }
    }

    function mint(address _to, uint256 _count) external payable {
        require(saleIsActive, "Sale must be active to mint Otomotor");

        uint256 batchMax = getBatchMaxSupply(currentBatch);

        require(_count <= maxPurchase, "Can only mint 10 tokens at a time");
        require(
            totalSupply() + _count <= batchMax,
            "Purchase would exceed max supply of Otomotors"
        );
        require(
            mintPrice * _count <= msg.value,
            "Ether value sent is not correct"
        );

        for (uint256 i = 0; i < _count; i++) {
            uint256 mintIndex = totalSupply();
            if (totalSupply() < batchMax) {
                _safeMint(_to, mintIndex);
            }
        }
    }

    function setSaleIsActive(bool _active) external onlyOwner {
        saleIsActive = _active;
        emit SaleActivation(_active);
    }

    function setMintPrice(uint256 _mintPrice) external onlyOwner {
        mintPrice = _mintPrice;
    }

    function setMaxPurchase(uint256 _maxPurchase) external onlyOwner {
        maxPurchase = _maxPurchase;
    }

    function withdraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

    function getTotalSupply() external view returns (uint256) {
        return totalSupply();
    }

    function setBaseURI(string memory baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function getBatchSize(uint256 batchNumber) public view returns (uint256) {
        if (batchNumber == 0) return 0;
        return BATCH_SIZE + batchNumber;
    }

    function getBatchMaxSupply(uint256 batchNumber)
        public
        view
        returns (uint256)
    {
        uint256 maxSupply = 0;

        for (uint256 i = 1; i <= batchNumber; i++) {
            maxSupply += getBatchSize(i);
        }

        return maxSupply;
    }

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

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

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 3 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "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":false,"internalType":"bool","name":"isActive","type":"bool"}],"name":"SaleActivation","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":"BATCH_SIZE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentBatch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"batchNumber","type":"uint256"}],"name":"getBatchMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"batchNumber","type":"uint256"}],"name":"getBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPurchase","type":"uint256"}],"name":"setMaxPurchase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_active","type":"bool"}],"name":"setSaleIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startNewBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405267011c37937e080000600b55600a600c556000600d60006101000a81548160ff0219169083151502179055506001600e55611388600f553480156200004857600080fd5b506040518060400160405280600981526020017f4f746f6d6f746f727300000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4f544f00000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000cd929190620001dd565b508060019080519060200190620000e6929190620001dd565b50505062000109620000fd6200010f60201b60201c565b6200011760201b60201c565b620002f2565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001eb906200028d565b90600052602060002090601f0160209004810192826200020f57600085556200025b565b82601f106200022a57805160ff19168380011785556200025b565b828001600101855582156200025b579182015b828111156200025a5782518255916020019190600101906200023d565b5b5090506200026a91906200026e565b5090565b5b80821115620002895760008160009055506001016200026f565b5090565b60006002820490506001821680620002a657607f821691505b60208210811415620002bd57620002bc620002c3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6143eb80620003026000396000f3fe6080604052600436106102045760003560e01c80636352211e11610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610746578063e985e9c514610783578063eb8d2444146107c0578063f2fde38b146107eb578063f4a0a5281461081457610204565b8063a22cb4651461068c578063b88d4fde146106b5578063b955e9b9146106de578063c4e41b221461071b57610204565b8063715018a6116100e7578063715018a6146105c957806376cd940e146105e05780638da5cb5b1461060b57806395d89b4114610636578063977b055b1461066157610204565b80636352211e146104fb5780636817c76c1461053857806370a082311461056357806371189742146105a057610204565b80632ef448c01161019b57806342842e0e1161016a57806342842e0e1461041857806349faa4d4146104415780634f6ccce71461046c57806355f804b3146104a9578063627804af146104d257610204565b80632ef448c01461036b5780632f745c59146103a85780633ccfd60b146103e557806340c10f19146103fc57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd146103005780631ef76deb1461032b57806323b872dd1461034257610204565b806301ffc9a71461020957806302c889891461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612fc5565b61083d565b60405161023d9190613515565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612f98565b6108b7565b005b34801561027b57600080fd5b50610284610987565b6040516102919190613530565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190613068565b610a19565b6040516102ce91906134ae565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190612f58565b610a9e565b005b34801561030c57600080fd5b50610315610bb6565b6040516103229190613832565b60405180910390f35b34801561033757600080fd5b50610340610bc3565b005b34801561034e57600080fd5b5061036960048036038101906103649190612e42565b610ce0565b005b34801561037757600080fd5b50610392600480360381019061038d9190613068565b610d40565b60405161039f9190613832565b60405180910390f35b3480156103b457600080fd5b506103cf60048036038101906103ca9190612f58565b610d88565b6040516103dc9190613832565b60405180910390f35b3480156103f157600080fd5b506103fa610e2d565b005b61041660048036038101906104119190612f58565b610ef9565b005b34801561042457600080fd5b5061043f600480360381019061043a9190612e42565b61108c565b005b34801561044d57600080fd5b506104566110ac565b6040516104639190613832565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190613068565b6110b2565b6040516104a09190613832565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb919061301f565b611123565b005b3480156104de57600080fd5b506104f960048036038101906104f49190612f58565b6111b9565b005b34801561050757600080fd5b50610522600480360381019061051d9190613068565b6112e4565b60405161052f91906134ae565b60405180910390f35b34801561054457600080fd5b5061054d611396565b60405161055a9190613832565b60405180910390f35b34801561056f57600080fd5b5061058a60048036038101906105859190612dd5565b61139c565b6040516105979190613832565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c29190613068565b611454565b005b3480156105d557600080fd5b506105de6114da565b005b3480156105ec57600080fd5b506105f5611562565b6040516106029190613832565b60405180910390f35b34801561061757600080fd5b50610620611568565b60405161062d91906134ae565b60405180910390f35b34801561064257600080fd5b5061064b611592565b6040516106589190613530565b60405180910390f35b34801561066d57600080fd5b50610676611624565b6040516106839190613832565b60405180910390f35b34801561069857600080fd5b506106b360048036038101906106ae9190612f18565b61162a565b005b3480156106c157600080fd5b506106dc60048036038101906106d79190612e95565b6117ab565b005b3480156106ea57600080fd5b5061070560048036038101906107009190613068565b61180d565b6040516107129190613832565b60405180910390f35b34801561072757600080fd5b50610730611836565b60405161073d9190613832565b60405180910390f35b34801561075257600080fd5b5061076d60048036038101906107689190613068565b611845565b60405161077a9190613530565b60405180910390f35b34801561078f57600080fd5b506107aa60048036038101906107a59190612e02565b6118ec565b6040516107b79190613515565b60405180910390f35b3480156107cc57600080fd5b506107d5611980565b6040516107e29190613515565b60405180910390f35b3480156107f757600080fd5b50610812600480360381019061080d9190612dd5565b611993565b005b34801561082057600080fd5b5061083b60048036038101906108369190613068565b611a8b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108b057506108af82611b11565b5b9050919050565b6108bf611bf3565b73ffffffffffffffffffffffffffffffffffffffff166108dd611568565b73ffffffffffffffffffffffffffffffffffffffff1614610933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092a90613752565b60405180910390fd5b80600d60006101000a81548160ff0219169083151502179055507f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f8160405161097c9190613515565b60405180910390a150565b60606000805461099690613ae2565b80601f01602080910402602001604051908101604052809291908181526020018280546109c290613ae2565b8015610a0f5780601f106109e457610100808354040283529160200191610a0f565b820191906000526020600020905b8154815290600101906020018083116109f257829003601f168201915b5050505050905090565b6000610a2482611bfb565b610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a90613732565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aa9826112e4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b11906137b2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b39611bf3565b73ffffffffffffffffffffffffffffffffffffffff161480610b685750610b6781610b62611bf3565b6118ec565b5b610ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9e90613692565b60405180910390fd5b610bb18383611c67565b505050565b6000600880549050905090565b610bcb611bf3565b73ffffffffffffffffffffffffffffffffffffffff16610be9611568565b73ffffffffffffffffffffffffffffffffffffffff1614610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3690613752565b60405180910390fd5b600080600190505b600e548111610c7957610c598161180d565b82610c649190613917565b91508080610c7190613b45565b915050610c47565b50610c82610bb6565b8114610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba906135b2565b60405180910390fd5b6001600e6000828254610cd69190613917565b9250508190555050565b610cf1610ceb611bf3565b82611d20565b610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d27906137d2565b60405180910390fd5b610d3b838383611dfe565b505050565b600080600090506000600190505b838111610d7e57610d5e8161180d565b82610d699190613917565b91508080610d7690613b45565b915050610d4e565b5080915050919050565b6000610d938361139c565b8210610dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcb90613552565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610e35611bf3565b73ffffffffffffffffffffffffffffffffffffffff16610e53611568565b73ffffffffffffffffffffffffffffffffffffffff1614610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea090613752565b60405180910390fd5b610eb1611568565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ef6573d6000803e3d6000fd5b50565b600d60009054906101000a900460ff16610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f906136b2565b60405180910390fd5b6000610f55600e54610d40565b9050600c54821115610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9390613812565b60405180910390fd5b8082610fa6610bb6565b610fb09190613917565b1115610ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe890613672565b60405180910390fd5b3482600b54611000919061399e565b1115611041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103890613632565b60405180910390fd5b60005b82811015611086576000611056610bb6565b905082611061610bb6565b101561107257611071858261205a565b5b50808061107e90613b45565b915050611044565b50505050565b6110a7838383604051806020016040528060008152506117ab565b505050565b600f5481565b60006110bc610bb6565b82106110fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f4906137f2565b60405180910390fd5b6008828154811061111157611110613c7b565b5b90600052602060002001549050919050565b61112b611bf3565b73ffffffffffffffffffffffffffffffffffffffff16611149611568565b73ffffffffffffffffffffffffffffffffffffffff161461119f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119690613752565b60405180910390fd5b80601090805190602001906111b5929190612be9565b5050565b6111c1611bf3565b73ffffffffffffffffffffffffffffffffffffffff166111df611568565b73ffffffffffffffffffffffffffffffffffffffff1614611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122c90613752565b60405180910390fd5b6000611242600e54610d40565b9050808261124e610bb6565b6112589190613917565b1115611299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129090613672565b60405180910390fd5b60005b828110156112de5760006112ae610bb6565b9050826112b9610bb6565b10156112ca576112c9858261205a565b5b5080806112d690613b45565b91505061129c565b50505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561138d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611384906136f2565b60405180910390fd5b80915050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561140d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611404906136d2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61145c611bf3565b73ffffffffffffffffffffffffffffffffffffffff1661147a611568565b73ffffffffffffffffffffffffffffffffffffffff16146114d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c790613752565b60405180910390fd5b80600c8190555050565b6114e2611bf3565b73ffffffffffffffffffffffffffffffffffffffff16611500611568565b73ffffffffffffffffffffffffffffffffffffffff1614611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d90613752565b60405180910390fd5b6115606000612078565b565b600e5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546115a190613ae2565b80601f01602080910402602001604051908101604052809291908181526020018280546115cd90613ae2565b801561161a5780601f106115ef5761010080835404028352916020019161161a565b820191906000526020600020905b8154815290600101906020018083116115fd57829003601f168201915b5050505050905090565b600c5481565b611632611bf3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169790613612565b60405180910390fd5b80600560006116ad611bf3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661175a611bf3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161179f9190613515565b60405180910390a35050565b6117bc6117b6611bf3565b83611d20565b6117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f2906137d2565b60405180910390fd5b6118078484848461213e565b50505050565b6000808214156118205760009050611831565b81600f5461182e9190613917565b90505b919050565b6000611840610bb6565b905090565b606061185082611bfb565b61188f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188690613792565b60405180910390fd5b600061189961219a565b905060008151116118b957604051806020016040528060008152506118e4565b806118c38461222c565b6040516020016118d492919061348a565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60009054906101000a900460ff1681565b61199b611bf3565b73ffffffffffffffffffffffffffffffffffffffff166119b9611568565b73ffffffffffffffffffffffffffffffffffffffff1614611a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0690613752565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7690613592565b60405180910390fd5b611a8881612078565b50565b611a93611bf3565b73ffffffffffffffffffffffffffffffffffffffff16611ab1611568565b73ffffffffffffffffffffffffffffffffffffffff1614611b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afe90613752565b60405180910390fd5b80600b8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611bdc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611bec5750611beb8261238d565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cda836112e4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d2b82611bfb565b611d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6190613652565b60405180910390fd5b6000611d75836112e4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611de457508373ffffffffffffffffffffffffffffffffffffffff16611dcc84610a19565b73ffffffffffffffffffffffffffffffffffffffff16145b80611df55750611df481856118ec565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e1e826112e4565b73ffffffffffffffffffffffffffffffffffffffff1614611e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6b90613772565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edb906135f2565b60405180910390fd5b611eef8383836123f7565b611efa600082611c67565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f4a91906139f8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fa19190613917565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61207482826040518060200160405280600081525061250b565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612149848484611dfe565b61215584848484612566565b612194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218b90613572565b60405180910390fd5b50505050565b6060601080546121a990613ae2565b80601f01602080910402602001604051908101604052809291908181526020018280546121d590613ae2565b80156122225780601f106121f757610100808354040283529160200191612222565b820191906000526020600020905b81548152906001019060200180831161220557829003601f168201915b5050505050905090565b60606000821415612274576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612388565b600082905060005b600082146122a657808061228f90613b45565b915050600a8261229f919061396d565b915061227c565b60008167ffffffffffffffff8111156122c2576122c1613caa565b5b6040519080825280601f01601f1916602001820160405280156122f45781602001600182028036833780820191505090505b5090505b600085146123815760018261230d91906139f8565b9150600a8561231c9190613b8e565b60306123289190613917565b60f81b81838151811061233e5761233d613c7b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561237a919061396d565b94506122f8565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6124028383836126fd565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124455761244081612702565b612484565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461248357612482838261274b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124c7576124c2816128b8565b612506565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612505576125048282612989565b5b5b505050565b6125158383612a08565b6125226000848484612566565b612561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255890613572565b60405180910390fd5b505050565b60006125878473ffffffffffffffffffffffffffffffffffffffff16612bd6565b156126f0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125b0611bf3565b8786866040518563ffffffff1660e01b81526004016125d294939291906134c9565b602060405180830381600087803b1580156125ec57600080fd5b505af192505050801561261d57506040513d601f19601f8201168201806040525081019061261a9190612ff2565b60015b6126a0573d806000811461264d576040519150601f19603f3d011682016040523d82523d6000602084013e612652565b606091505b50600081511415612698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268f90613572565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126f5565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016127588461139c565b61276291906139f8565b9050600060076000848152602001908152602001600020549050818114612847576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128cc91906139f8565b90506000600960008481526020019081526020016000205490506000600883815481106128fc576128fb613c7b565b5b90600052602060002001549050806008838154811061291e5761291d613c7b565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061296d5761296c613c4c565b5b6001900381819060005260206000200160009055905550505050565b60006129948361139c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6f90613712565b60405180910390fd5b612a8181611bfb565b15612ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab8906135d2565b60405180910390fd5b612acd600083836123f7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b1d9190613917565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612bf590613ae2565b90600052602060002090601f016020900481019282612c175760008555612c5e565b82601f10612c3057805160ff1916838001178555612c5e565b82800160010185558215612c5e579182015b82811115612c5d578251825591602001919060010190612c42565b5b509050612c6b9190612c6f565b5090565b5b80821115612c88576000816000905550600101612c70565b5090565b6000612c9f612c9a84613872565b61384d565b905082815260208101848484011115612cbb57612cba613cde565b5b612cc6848285613aa0565b509392505050565b6000612ce1612cdc846138a3565b61384d565b905082815260208101848484011115612cfd57612cfc613cde565b5b612d08848285613aa0565b509392505050565b600081359050612d1f81614359565b92915050565b600081359050612d3481614370565b92915050565b600081359050612d4981614387565b92915050565b600081519050612d5e81614387565b92915050565b600082601f830112612d7957612d78613cd9565b5b8135612d89848260208601612c8c565b91505092915050565b600082601f830112612da757612da6613cd9565b5b8135612db7848260208601612cce565b91505092915050565b600081359050612dcf8161439e565b92915050565b600060208284031215612deb57612dea613ce8565b5b6000612df984828501612d10565b91505092915050565b60008060408385031215612e1957612e18613ce8565b5b6000612e2785828601612d10565b9250506020612e3885828601612d10565b9150509250929050565b600080600060608486031215612e5b57612e5a613ce8565b5b6000612e6986828701612d10565b9350506020612e7a86828701612d10565b9250506040612e8b86828701612dc0565b9150509250925092565b60008060008060808587031215612eaf57612eae613ce8565b5b6000612ebd87828801612d10565b9450506020612ece87828801612d10565b9350506040612edf87828801612dc0565b925050606085013567ffffffffffffffff811115612f0057612eff613ce3565b5b612f0c87828801612d64565b91505092959194509250565b60008060408385031215612f2f57612f2e613ce8565b5b6000612f3d85828601612d10565b9250506020612f4e85828601612d25565b9150509250929050565b60008060408385031215612f6f57612f6e613ce8565b5b6000612f7d85828601612d10565b9250506020612f8e85828601612dc0565b9150509250929050565b600060208284031215612fae57612fad613ce8565b5b6000612fbc84828501612d25565b91505092915050565b600060208284031215612fdb57612fda613ce8565b5b6000612fe984828501612d3a565b91505092915050565b60006020828403121561300857613007613ce8565b5b600061301684828501612d4f565b91505092915050565b60006020828403121561303557613034613ce8565b5b600082013567ffffffffffffffff81111561305357613052613ce3565b5b61305f84828501612d92565b91505092915050565b60006020828403121561307e5761307d613ce8565b5b600061308c84828501612dc0565b91505092915050565b61309e81613a2c565b82525050565b6130ad81613a3e565b82525050565b60006130be826138d4565b6130c881856138ea565b93506130d8818560208601613aaf565b6130e181613ced565b840191505092915050565b60006130f7826138df565b61310181856138fb565b9350613111818560208601613aaf565b61311a81613ced565b840191505092915050565b6000613130826138df565b61313a818561390c565b935061314a818560208601613aaf565b80840191505092915050565b6000613163602b836138fb565b915061316e82613cfe565b604082019050919050565b60006131866032836138fb565b915061319182613d4d565b604082019050919050565b60006131a96026836138fb565b91506131b482613d9c565b604082019050919050565b60006131cc603b836138fb565b91506131d782613deb565b604082019050919050565b60006131ef601c836138fb565b91506131fa82613e3a565b602082019050919050565b60006132126024836138fb565b915061321d82613e63565b604082019050919050565b60006132356019836138fb565b915061324082613eb2565b602082019050919050565b6000613258601f836138fb565b915061326382613edb565b602082019050919050565b600061327b602c836138fb565b915061328682613f04565b604082019050919050565b600061329e602d836138fb565b91506132a982613f53565b604082019050919050565b60006132c16038836138fb565b91506132cc82613fa2565b604082019050919050565b60006132e46024836138fb565b91506132ef82613ff1565b604082019050919050565b6000613307602a836138fb565b915061331282614040565b604082019050919050565b600061332a6029836138fb565b91506133358261408f565b604082019050919050565b600061334d6020836138fb565b9150613358826140de565b602082019050919050565b6000613370602c836138fb565b915061337b82614107565b604082019050919050565b60006133936020836138fb565b915061339e82614156565b602082019050919050565b60006133b66029836138fb565b91506133c18261417f565b604082019050919050565b60006133d9602f836138fb565b91506133e4826141ce565b604082019050919050565b60006133fc6021836138fb565b91506134078261421d565b604082019050919050565b600061341f6031836138fb565b915061342a8261426c565b604082019050919050565b6000613442602c836138fb565b915061344d826142bb565b604082019050919050565b60006134656021836138fb565b91506134708261430a565b604082019050919050565b61348481613a96565b82525050565b60006134968285613125565b91506134a28284613125565b91508190509392505050565b60006020820190506134c36000830184613095565b92915050565b60006080820190506134de6000830187613095565b6134eb6020830186613095565b6134f8604083018561347b565b818103606083015261350a81846130b3565b905095945050505050565b600060208201905061352a60008301846130a4565b92915050565b6000602082019050818103600083015261354a81846130ec565b905092915050565b6000602082019050818103600083015261356b81613156565b9050919050565b6000602082019050818103600083015261358b81613179565b9050919050565b600060208201905081810360008301526135ab8161319c565b9050919050565b600060208201905081810360008301526135cb816131bf565b9050919050565b600060208201905081810360008301526135eb816131e2565b9050919050565b6000602082019050818103600083015261360b81613205565b9050919050565b6000602082019050818103600083015261362b81613228565b9050919050565b6000602082019050818103600083015261364b8161324b565b9050919050565b6000602082019050818103600083015261366b8161326e565b9050919050565b6000602082019050818103600083015261368b81613291565b9050919050565b600060208201905081810360008301526136ab816132b4565b9050919050565b600060208201905081810360008301526136cb816132d7565b9050919050565b600060208201905081810360008301526136eb816132fa565b9050919050565b6000602082019050818103600083015261370b8161331d565b9050919050565b6000602082019050818103600083015261372b81613340565b9050919050565b6000602082019050818103600083015261374b81613363565b9050919050565b6000602082019050818103600083015261376b81613386565b9050919050565b6000602082019050818103600083015261378b816133a9565b9050919050565b600060208201905081810360008301526137ab816133cc565b9050919050565b600060208201905081810360008301526137cb816133ef565b9050919050565b600060208201905081810360008301526137eb81613412565b9050919050565b6000602082019050818103600083015261380b81613435565b9050919050565b6000602082019050818103600083015261382b81613458565b9050919050565b6000602082019050613847600083018461347b565b92915050565b6000613857613868565b90506138638282613b14565b919050565b6000604051905090565b600067ffffffffffffffff82111561388d5761388c613caa565b5b61389682613ced565b9050602081019050919050565b600067ffffffffffffffff8211156138be576138bd613caa565b5b6138c782613ced565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061392282613a96565b915061392d83613a96565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561396257613961613bbf565b5b828201905092915050565b600061397882613a96565b915061398383613a96565b92508261399357613992613bee565b5b828204905092915050565b60006139a982613a96565b91506139b483613a96565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139ed576139ec613bbf565b5b828202905092915050565b6000613a0382613a96565b9150613a0e83613a96565b925082821015613a2157613a20613bbf565b5b828203905092915050565b6000613a3782613a76565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613acd578082015181840152602081019050613ab2565b83811115613adc576000848401525b50505050565b60006002820490506001821680613afa57607f821691505b60208210811415613b0e57613b0d613c1d565b5b50919050565b613b1d82613ced565b810181811067ffffffffffffffff82111715613b3c57613b3b613caa565b5b80604052505050565b6000613b5082613a96565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b8357613b82613bbf565b5b600182019050919050565b6000613b9982613a96565b9150613ba483613a96565b925082613bb457613bb3613bee565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5468652070726576696f7573206261746368206d75737420626520636f6d706c60008201527f65746520746f20737461727420746865206e6578742062617463680000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f66204f746f6d6f746f727300000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e74204f746f6d60008201527f6f746f7200000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b61436281613a2c565b811461436d57600080fd5b50565b61437981613a3e565b811461438457600080fd5b50565b61439081613a4a565b811461439b57600080fd5b50565b6143a781613a96565b81146143b257600080fd5b5056fea264697066735822122046f3559c4d18089e094c72b2770c91a15859489c802feee045ad4a7558493e0f64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636352211e11610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610746578063e985e9c514610783578063eb8d2444146107c0578063f2fde38b146107eb578063f4a0a5281461081457610204565b8063a22cb4651461068c578063b88d4fde146106b5578063b955e9b9146106de578063c4e41b221461071b57610204565b8063715018a6116100e7578063715018a6146105c957806376cd940e146105e05780638da5cb5b1461060b57806395d89b4114610636578063977b055b1461066157610204565b80636352211e146104fb5780636817c76c1461053857806370a082311461056357806371189742146105a057610204565b80632ef448c01161019b57806342842e0e1161016a57806342842e0e1461041857806349faa4d4146104415780634f6ccce71461046c57806355f804b3146104a9578063627804af146104d257610204565b80632ef448c01461036b5780632f745c59146103a85780633ccfd60b146103e557806340c10f19146103fc57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd146103005780631ef76deb1461032b57806323b872dd1461034257610204565b806301ffc9a71461020957806302c889891461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612fc5565b61083d565b60405161023d9190613515565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612f98565b6108b7565b005b34801561027b57600080fd5b50610284610987565b6040516102919190613530565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190613068565b610a19565b6040516102ce91906134ae565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190612f58565b610a9e565b005b34801561030c57600080fd5b50610315610bb6565b6040516103229190613832565b60405180910390f35b34801561033757600080fd5b50610340610bc3565b005b34801561034e57600080fd5b5061036960048036038101906103649190612e42565b610ce0565b005b34801561037757600080fd5b50610392600480360381019061038d9190613068565b610d40565b60405161039f9190613832565b60405180910390f35b3480156103b457600080fd5b506103cf60048036038101906103ca9190612f58565b610d88565b6040516103dc9190613832565b60405180910390f35b3480156103f157600080fd5b506103fa610e2d565b005b61041660048036038101906104119190612f58565b610ef9565b005b34801561042457600080fd5b5061043f600480360381019061043a9190612e42565b61108c565b005b34801561044d57600080fd5b506104566110ac565b6040516104639190613832565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190613068565b6110b2565b6040516104a09190613832565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb919061301f565b611123565b005b3480156104de57600080fd5b506104f960048036038101906104f49190612f58565b6111b9565b005b34801561050757600080fd5b50610522600480360381019061051d9190613068565b6112e4565b60405161052f91906134ae565b60405180910390f35b34801561054457600080fd5b5061054d611396565b60405161055a9190613832565b60405180910390f35b34801561056f57600080fd5b5061058a60048036038101906105859190612dd5565b61139c565b6040516105979190613832565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c29190613068565b611454565b005b3480156105d557600080fd5b506105de6114da565b005b3480156105ec57600080fd5b506105f5611562565b6040516106029190613832565b60405180910390f35b34801561061757600080fd5b50610620611568565b60405161062d91906134ae565b60405180910390f35b34801561064257600080fd5b5061064b611592565b6040516106589190613530565b60405180910390f35b34801561066d57600080fd5b50610676611624565b6040516106839190613832565b60405180910390f35b34801561069857600080fd5b506106b360048036038101906106ae9190612f18565b61162a565b005b3480156106c157600080fd5b506106dc60048036038101906106d79190612e95565b6117ab565b005b3480156106ea57600080fd5b5061070560048036038101906107009190613068565b61180d565b6040516107129190613832565b60405180910390f35b34801561072757600080fd5b50610730611836565b60405161073d9190613832565b60405180910390f35b34801561075257600080fd5b5061076d60048036038101906107689190613068565b611845565b60405161077a9190613530565b60405180910390f35b34801561078f57600080fd5b506107aa60048036038101906107a59190612e02565b6118ec565b6040516107b79190613515565b60405180910390f35b3480156107cc57600080fd5b506107d5611980565b6040516107e29190613515565b60405180910390f35b3480156107f757600080fd5b50610812600480360381019061080d9190612dd5565b611993565b005b34801561082057600080fd5b5061083b60048036038101906108369190613068565b611a8b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108b057506108af82611b11565b5b9050919050565b6108bf611bf3565b73ffffffffffffffffffffffffffffffffffffffff166108dd611568565b73ffffffffffffffffffffffffffffffffffffffff1614610933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092a90613752565b60405180910390fd5b80600d60006101000a81548160ff0219169083151502179055507f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f8160405161097c9190613515565b60405180910390a150565b60606000805461099690613ae2565b80601f01602080910402602001604051908101604052809291908181526020018280546109c290613ae2565b8015610a0f5780601f106109e457610100808354040283529160200191610a0f565b820191906000526020600020905b8154815290600101906020018083116109f257829003601f168201915b5050505050905090565b6000610a2482611bfb565b610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a90613732565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aa9826112e4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b11906137b2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b39611bf3565b73ffffffffffffffffffffffffffffffffffffffff161480610b685750610b6781610b62611bf3565b6118ec565b5b610ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9e90613692565b60405180910390fd5b610bb18383611c67565b505050565b6000600880549050905090565b610bcb611bf3565b73ffffffffffffffffffffffffffffffffffffffff16610be9611568565b73ffffffffffffffffffffffffffffffffffffffff1614610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3690613752565b60405180910390fd5b600080600190505b600e548111610c7957610c598161180d565b82610c649190613917565b91508080610c7190613b45565b915050610c47565b50610c82610bb6565b8114610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba906135b2565b60405180910390fd5b6001600e6000828254610cd69190613917565b9250508190555050565b610cf1610ceb611bf3565b82611d20565b610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d27906137d2565b60405180910390fd5b610d3b838383611dfe565b505050565b600080600090506000600190505b838111610d7e57610d5e8161180d565b82610d699190613917565b91508080610d7690613b45565b915050610d4e565b5080915050919050565b6000610d938361139c565b8210610dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcb90613552565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610e35611bf3565b73ffffffffffffffffffffffffffffffffffffffff16610e53611568565b73ffffffffffffffffffffffffffffffffffffffff1614610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea090613752565b60405180910390fd5b610eb1611568565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ef6573d6000803e3d6000fd5b50565b600d60009054906101000a900460ff16610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f906136b2565b60405180910390fd5b6000610f55600e54610d40565b9050600c54821115610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9390613812565b60405180910390fd5b8082610fa6610bb6565b610fb09190613917565b1115610ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe890613672565b60405180910390fd5b3482600b54611000919061399e565b1115611041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103890613632565b60405180910390fd5b60005b82811015611086576000611056610bb6565b905082611061610bb6565b101561107257611071858261205a565b5b50808061107e90613b45565b915050611044565b50505050565b6110a7838383604051806020016040528060008152506117ab565b505050565b600f5481565b60006110bc610bb6565b82106110fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f4906137f2565b60405180910390fd5b6008828154811061111157611110613c7b565b5b90600052602060002001549050919050565b61112b611bf3565b73ffffffffffffffffffffffffffffffffffffffff16611149611568565b73ffffffffffffffffffffffffffffffffffffffff161461119f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119690613752565b60405180910390fd5b80601090805190602001906111b5929190612be9565b5050565b6111c1611bf3565b73ffffffffffffffffffffffffffffffffffffffff166111df611568565b73ffffffffffffffffffffffffffffffffffffffff1614611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122c90613752565b60405180910390fd5b6000611242600e54610d40565b9050808261124e610bb6565b6112589190613917565b1115611299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129090613672565b60405180910390fd5b60005b828110156112de5760006112ae610bb6565b9050826112b9610bb6565b10156112ca576112c9858261205a565b5b5080806112d690613b45565b91505061129c565b50505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561138d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611384906136f2565b60405180910390fd5b80915050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561140d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611404906136d2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61145c611bf3565b73ffffffffffffffffffffffffffffffffffffffff1661147a611568565b73ffffffffffffffffffffffffffffffffffffffff16146114d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c790613752565b60405180910390fd5b80600c8190555050565b6114e2611bf3565b73ffffffffffffffffffffffffffffffffffffffff16611500611568565b73ffffffffffffffffffffffffffffffffffffffff1614611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d90613752565b60405180910390fd5b6115606000612078565b565b600e5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546115a190613ae2565b80601f01602080910402602001604051908101604052809291908181526020018280546115cd90613ae2565b801561161a5780601f106115ef5761010080835404028352916020019161161a565b820191906000526020600020905b8154815290600101906020018083116115fd57829003601f168201915b5050505050905090565b600c5481565b611632611bf3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169790613612565b60405180910390fd5b80600560006116ad611bf3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661175a611bf3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161179f9190613515565b60405180910390a35050565b6117bc6117b6611bf3565b83611d20565b6117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f2906137d2565b60405180910390fd5b6118078484848461213e565b50505050565b6000808214156118205760009050611831565b81600f5461182e9190613917565b90505b919050565b6000611840610bb6565b905090565b606061185082611bfb565b61188f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188690613792565b60405180910390fd5b600061189961219a565b905060008151116118b957604051806020016040528060008152506118e4565b806118c38461222c565b6040516020016118d492919061348a565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60009054906101000a900460ff1681565b61199b611bf3565b73ffffffffffffffffffffffffffffffffffffffff166119b9611568565b73ffffffffffffffffffffffffffffffffffffffff1614611a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0690613752565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7690613592565b60405180910390fd5b611a8881612078565b50565b611a93611bf3565b73ffffffffffffffffffffffffffffffffffffffff16611ab1611568565b73ffffffffffffffffffffffffffffffffffffffff1614611b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afe90613752565b60405180910390fd5b80600b8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611bdc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611bec5750611beb8261238d565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cda836112e4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d2b82611bfb565b611d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6190613652565b60405180910390fd5b6000611d75836112e4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611de457508373ffffffffffffffffffffffffffffffffffffffff16611dcc84610a19565b73ffffffffffffffffffffffffffffffffffffffff16145b80611df55750611df481856118ec565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e1e826112e4565b73ffffffffffffffffffffffffffffffffffffffff1614611e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6b90613772565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edb906135f2565b60405180910390fd5b611eef8383836123f7565b611efa600082611c67565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f4a91906139f8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fa19190613917565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61207482826040518060200160405280600081525061250b565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612149848484611dfe565b61215584848484612566565b612194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218b90613572565b60405180910390fd5b50505050565b6060601080546121a990613ae2565b80601f01602080910402602001604051908101604052809291908181526020018280546121d590613ae2565b80156122225780601f106121f757610100808354040283529160200191612222565b820191906000526020600020905b81548152906001019060200180831161220557829003601f168201915b5050505050905090565b60606000821415612274576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612388565b600082905060005b600082146122a657808061228f90613b45565b915050600a8261229f919061396d565b915061227c565b60008167ffffffffffffffff8111156122c2576122c1613caa565b5b6040519080825280601f01601f1916602001820160405280156122f45781602001600182028036833780820191505090505b5090505b600085146123815760018261230d91906139f8565b9150600a8561231c9190613b8e565b60306123289190613917565b60f81b81838151811061233e5761233d613c7b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561237a919061396d565b94506122f8565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6124028383836126fd565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124455761244081612702565b612484565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461248357612482838261274b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124c7576124c2816128b8565b612506565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612505576125048282612989565b5b5b505050565b6125158383612a08565b6125226000848484612566565b612561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255890613572565b60405180910390fd5b505050565b60006125878473ffffffffffffffffffffffffffffffffffffffff16612bd6565b156126f0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125b0611bf3565b8786866040518563ffffffff1660e01b81526004016125d294939291906134c9565b602060405180830381600087803b1580156125ec57600080fd5b505af192505050801561261d57506040513d601f19601f8201168201806040525081019061261a9190612ff2565b60015b6126a0573d806000811461264d576040519150601f19603f3d011682016040523d82523d6000602084013e612652565b606091505b50600081511415612698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268f90613572565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126f5565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016127588461139c565b61276291906139f8565b9050600060076000848152602001908152602001600020549050818114612847576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128cc91906139f8565b90506000600960008481526020019081526020016000205490506000600883815481106128fc576128fb613c7b565b5b90600052602060002001549050806008838154811061291e5761291d613c7b565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061296d5761296c613c4c565b5b6001900381819060005260206000200160009055905550505050565b60006129948361139c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6f90613712565b60405180910390fd5b612a8181611bfb565b15612ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab8906135d2565b60405180910390fd5b612acd600083836123f7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b1d9190613917565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612bf590613ae2565b90600052602060002090601f016020900481019282612c175760008555612c5e565b82601f10612c3057805160ff1916838001178555612c5e565b82800160010185558215612c5e579182015b82811115612c5d578251825591602001919060010190612c42565b5b509050612c6b9190612c6f565b5090565b5b80821115612c88576000816000905550600101612c70565b5090565b6000612c9f612c9a84613872565b61384d565b905082815260208101848484011115612cbb57612cba613cde565b5b612cc6848285613aa0565b509392505050565b6000612ce1612cdc846138a3565b61384d565b905082815260208101848484011115612cfd57612cfc613cde565b5b612d08848285613aa0565b509392505050565b600081359050612d1f81614359565b92915050565b600081359050612d3481614370565b92915050565b600081359050612d4981614387565b92915050565b600081519050612d5e81614387565b92915050565b600082601f830112612d7957612d78613cd9565b5b8135612d89848260208601612c8c565b91505092915050565b600082601f830112612da757612da6613cd9565b5b8135612db7848260208601612cce565b91505092915050565b600081359050612dcf8161439e565b92915050565b600060208284031215612deb57612dea613ce8565b5b6000612df984828501612d10565b91505092915050565b60008060408385031215612e1957612e18613ce8565b5b6000612e2785828601612d10565b9250506020612e3885828601612d10565b9150509250929050565b600080600060608486031215612e5b57612e5a613ce8565b5b6000612e6986828701612d10565b9350506020612e7a86828701612d10565b9250506040612e8b86828701612dc0565b9150509250925092565b60008060008060808587031215612eaf57612eae613ce8565b5b6000612ebd87828801612d10565b9450506020612ece87828801612d10565b9350506040612edf87828801612dc0565b925050606085013567ffffffffffffffff811115612f0057612eff613ce3565b5b612f0c87828801612d64565b91505092959194509250565b60008060408385031215612f2f57612f2e613ce8565b5b6000612f3d85828601612d10565b9250506020612f4e85828601612d25565b9150509250929050565b60008060408385031215612f6f57612f6e613ce8565b5b6000612f7d85828601612d10565b9250506020612f8e85828601612dc0565b9150509250929050565b600060208284031215612fae57612fad613ce8565b5b6000612fbc84828501612d25565b91505092915050565b600060208284031215612fdb57612fda613ce8565b5b6000612fe984828501612d3a565b91505092915050565b60006020828403121561300857613007613ce8565b5b600061301684828501612d4f565b91505092915050565b60006020828403121561303557613034613ce8565b5b600082013567ffffffffffffffff81111561305357613052613ce3565b5b61305f84828501612d92565b91505092915050565b60006020828403121561307e5761307d613ce8565b5b600061308c84828501612dc0565b91505092915050565b61309e81613a2c565b82525050565b6130ad81613a3e565b82525050565b60006130be826138d4565b6130c881856138ea565b93506130d8818560208601613aaf565b6130e181613ced565b840191505092915050565b60006130f7826138df565b61310181856138fb565b9350613111818560208601613aaf565b61311a81613ced565b840191505092915050565b6000613130826138df565b61313a818561390c565b935061314a818560208601613aaf565b80840191505092915050565b6000613163602b836138fb565b915061316e82613cfe565b604082019050919050565b60006131866032836138fb565b915061319182613d4d565b604082019050919050565b60006131a96026836138fb565b91506131b482613d9c565b604082019050919050565b60006131cc603b836138fb565b91506131d782613deb565b604082019050919050565b60006131ef601c836138fb565b91506131fa82613e3a565b602082019050919050565b60006132126024836138fb565b915061321d82613e63565b604082019050919050565b60006132356019836138fb565b915061324082613eb2565b602082019050919050565b6000613258601f836138fb565b915061326382613edb565b602082019050919050565b600061327b602c836138fb565b915061328682613f04565b604082019050919050565b600061329e602d836138fb565b91506132a982613f53565b604082019050919050565b60006132c16038836138fb565b91506132cc82613fa2565b604082019050919050565b60006132e46024836138fb565b91506132ef82613ff1565b604082019050919050565b6000613307602a836138fb565b915061331282614040565b604082019050919050565b600061332a6029836138fb565b91506133358261408f565b604082019050919050565b600061334d6020836138fb565b9150613358826140de565b602082019050919050565b6000613370602c836138fb565b915061337b82614107565b604082019050919050565b60006133936020836138fb565b915061339e82614156565b602082019050919050565b60006133b66029836138fb565b91506133c18261417f565b604082019050919050565b60006133d9602f836138fb565b91506133e4826141ce565b604082019050919050565b60006133fc6021836138fb565b91506134078261421d565b604082019050919050565b600061341f6031836138fb565b915061342a8261426c565b604082019050919050565b6000613442602c836138fb565b915061344d826142bb565b604082019050919050565b60006134656021836138fb565b91506134708261430a565b604082019050919050565b61348481613a96565b82525050565b60006134968285613125565b91506134a28284613125565b91508190509392505050565b60006020820190506134c36000830184613095565b92915050565b60006080820190506134de6000830187613095565b6134eb6020830186613095565b6134f8604083018561347b565b818103606083015261350a81846130b3565b905095945050505050565b600060208201905061352a60008301846130a4565b92915050565b6000602082019050818103600083015261354a81846130ec565b905092915050565b6000602082019050818103600083015261356b81613156565b9050919050565b6000602082019050818103600083015261358b81613179565b9050919050565b600060208201905081810360008301526135ab8161319c565b9050919050565b600060208201905081810360008301526135cb816131bf565b9050919050565b600060208201905081810360008301526135eb816131e2565b9050919050565b6000602082019050818103600083015261360b81613205565b9050919050565b6000602082019050818103600083015261362b81613228565b9050919050565b6000602082019050818103600083015261364b8161324b565b9050919050565b6000602082019050818103600083015261366b8161326e565b9050919050565b6000602082019050818103600083015261368b81613291565b9050919050565b600060208201905081810360008301526136ab816132b4565b9050919050565b600060208201905081810360008301526136cb816132d7565b9050919050565b600060208201905081810360008301526136eb816132fa565b9050919050565b6000602082019050818103600083015261370b8161331d565b9050919050565b6000602082019050818103600083015261372b81613340565b9050919050565b6000602082019050818103600083015261374b81613363565b9050919050565b6000602082019050818103600083015261376b81613386565b9050919050565b6000602082019050818103600083015261378b816133a9565b9050919050565b600060208201905081810360008301526137ab816133cc565b9050919050565b600060208201905081810360008301526137cb816133ef565b9050919050565b600060208201905081810360008301526137eb81613412565b9050919050565b6000602082019050818103600083015261380b81613435565b9050919050565b6000602082019050818103600083015261382b81613458565b9050919050565b6000602082019050613847600083018461347b565b92915050565b6000613857613868565b90506138638282613b14565b919050565b6000604051905090565b600067ffffffffffffffff82111561388d5761388c613caa565b5b61389682613ced565b9050602081019050919050565b600067ffffffffffffffff8211156138be576138bd613caa565b5b6138c782613ced565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061392282613a96565b915061392d83613a96565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561396257613961613bbf565b5b828201905092915050565b600061397882613a96565b915061398383613a96565b92508261399357613992613bee565b5b828204905092915050565b60006139a982613a96565b91506139b483613a96565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139ed576139ec613bbf565b5b828202905092915050565b6000613a0382613a96565b9150613a0e83613a96565b925082821015613a2157613a20613bbf565b5b828203905092915050565b6000613a3782613a76565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613acd578082015181840152602081019050613ab2565b83811115613adc576000848401525b50505050565b60006002820490506001821680613afa57607f821691505b60208210811415613b0e57613b0d613c1d565b5b50919050565b613b1d82613ced565b810181811067ffffffffffffffff82111715613b3c57613b3b613caa565b5b80604052505050565b6000613b5082613a96565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b8357613b82613bbf565b5b600182019050919050565b6000613b9982613a96565b9150613ba483613a96565b925082613bb457613bb3613bee565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5468652070726576696f7573206261746368206d75737420626520636f6d706c60008201527f65746520746f20737461727420746865206e6578742062617463680000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f66204f746f6d6f746f727300000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e74204f746f6d60008201527f6f746f7200000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b61436281613a2c565b811461436d57600080fd5b50565b61437981613a3e565b811461438457600080fd5b50565b61439081613a4a565b811461439b57600080fd5b50565b6143a781613a96565b81146143b257600080fd5b5056fea264697066735822122046f3559c4d18089e094c72b2770c91a15859489c802feee045ad4a7558493e0f64736f6c63430008070033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

OTO Motors is a platform for NFT OTOmobiles created for both collectors and gamers.Each OTOmobile is a digitally registered ERC-721 standard NFT on the Ethereum network.Owners of the OTOmobiles can constantly Level-Up their asset’s performance, registered features and overall value.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.