ETH Price: $2,423.42 (-0.28%)

Token

Magic Goat Box (MGX)
 

Overview

Max Total Supply

112 MGX

Holders

50

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
abmtf.eth
Balance
0 MGX
0x92584664e657b69b5f51f809d15e51896f3ccbc4
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
MagicGoatBox

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : MagicGoatBox.sol
// SPDX-License-Identifier: None
pragma solidity ^0.8.7;

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

interface IMerkleDistributor {
    function merkleRoot() external view returns (bytes32);
    function isClaimed(uint256 index) external view returns (bool);
    function claim(uint256 index, address account, uint256 amount, bytes32[] calldata merkleProof) external;

    event Claimed(uint256 index, address account, uint256 amount);
}

contract MagicGoatBox is Ownable, ERC721, IMerkleDistributor {
    using Strings for uint256;
    using SafeMath for uint256;

    uint256 public constant mintLimit = 20;
    uint256 public constant mintPrice = 0.05 ether;
    uint256 public constant maxTotalSupply = 8192;
    uint256 public constant maxReserveLimit = 500;
    
    string public baseURI = "";
    uint256 public totalSupply = 0;
    uint256 public reserveLimit = 0;
    uint256 public saleStartTime = 1631718000;

    bool public claimActive = true;
    bytes32 public override merkleRoot;
    mapping(uint256 => uint256) private claimedBitMap;

    event Minted(address indexed _user, uint256 indexed _tokenId, string _tokenURI);

    constructor(string memory _baseURI, bytes32 _merkleRoot) ERC721("Magic Goat Box", "MGX") {
        baseURI = _baseURI;
        merkleRoot = _merkleRoot;
    }

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

    function setSaleStartTime(uint256 _saleStartTime) external onlyOwner {
        saleStartTime = _saleStartTime;
    }
    
    function setClaimActive(bool _claimActive) external onlyOwner {
        claimActive = _claimActive;
    }
    
    function airdrop(address _addr, uint256 _num) external onlyOwner {
        require(reserveLimit.add(_num) <= maxReserveLimit, "Not enough tokens left.");
        
        reserveLimit = reserveLimit.add(_num);
        _batchMint(_addr, _num);
    }

    function withdraw(address payable _addr, uint256 _amount) external onlyOwner {
        require(_amount <= address(this).balance, "Insufficient balance.");

        payable(_addr).transfer(_amount);
    }
    
    function _batchMint(address _addr, uint256 _num) private {
        require(totalSupply.add(_num) <= maxTotalSupply, "Not enough tokens left.");

        uint256 tokenId = totalSupply;
        for(uint i = 0; i < _num; i++) {
            tokenId = tokenId.add(1);

            totalSupply = totalSupply.add(1);
            _safeMint(_addr, tokenId);

            emit Minted(_addr, tokenId, tokenURI(tokenId));
        }
    }

    function mint(uint256 _num) external payable {
        require(totalSupply.sub(reserveLimit).add(_num) <= maxTotalSupply.sub(maxReserveLimit), "Sold out.");
        require(block.timestamp >= saleStartTime, "Sale is not active.");
        require(_num > 0 && _num <= mintLimit, "Too many tokens for one transaction.");
        require(msg.value >= mintPrice.mul(_num), "Insufficient payment.");

        _batchMint(msg.sender, _num);
    }

    function isClaimed(uint256 index) public view override returns (bool) {
        uint256 claimedWordIndex = index / 256;
        uint256 claimedBitIndex = index % 256;
        uint256 claimedWord = claimedBitMap[claimedWordIndex];
        uint256 mask = (1 << claimedBitIndex);
        return claimedWord & mask == mask;
    }

    function _setClaimed(uint256 index) private {
        uint256 claimedWordIndex = index / 256;
        uint256 claimedBitIndex = index % 256;
        claimedBitMap[claimedWordIndex] = claimedBitMap[claimedWordIndex] | (1 << claimedBitIndex);
    }

    function claim(uint256 index, address account, uint256 amount, bytes32[] calldata merkleProof) external override {
        require(amount == 1, 'MerkleDistributor: Claim limit exceeded.');
        require(reserveLimit.add(amount) <= maxReserveLimit, "MerkleDistributor: Not enough tokens left.");
        require(claimActive, 'MerkleDistributor: Claim closed.');
        require(!isClaimed(index), 'MerkleDistributor: Drop already claimed.');

        bytes32 node = keccak256(abi.encodePacked(index, account, amount));
        require(MerkleProof.verify(merkleProof, merkleRoot, node), 'MerkleDistributor: Invalid proof.');

        _setClaimed(index);
        
        reserveLimit = reserveLimit.add(amount);
        _batchMint(account, amount);

        emit Claimed(index, account, amount);
    }
    
    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

pragma solidity ^0.8.0;

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

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}

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

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 4 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 5 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 6 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 7 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 8 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 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 : 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 11 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 12 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 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",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"},{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_tokenURI","type":"string"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"isClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxReserveLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"reserveLimit","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":"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":"saleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"bool","name":"_claimActive","type":"bool"}],"name":"setClaimActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleStartTime","type":"uint256"}],"name":"setSaleStartTime","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":"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":[{"internalType":"address payable","name":"_addr","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600790805190602001906200002b92919062000240565b50600060085560006009556361420a70600a556001600b60006101000a81548160ff0219169083151502179055503480156200006657600080fd5b5060405162004b7438038062004b7483398181016040528101906200008c919062000385565b6040518060400160405280600e81526020017f4d6167696320476f617420426f780000000000000000000000000000000000008152506040518060400160405280600381526020017f4d47580000000000000000000000000000000000000000000000000000000000815250620001186200010c6200017460201b60201c565b6200017c60201b60201c565b81600190805190602001906200013092919062000240565b5080600290805190602001906200014992919062000240565b50505081600790805190602001906200016492919062000240565b5080600c81905550505062000593565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024e906200048a565b90600052602060002090601f016020900481019282620002725760008555620002be565b82601f106200028d57805160ff1916838001178555620002be565b82800160010185558215620002be579182015b82811115620002bd578251825591602001919060010190620002a0565b5b509050620002cd9190620002d1565b5090565b5b80821115620002ec576000816000905550600101620002d2565b5090565b600062000307620003018462000414565b620003eb565b90508281526020810184848401111562000326576200032562000559565b5b6200033384828562000454565b509392505050565b6000815190506200034c8162000579565b92915050565b600082601f8301126200036a576200036962000554565b5b81516200037c848260208601620002f0565b91505092915050565b600080604083850312156200039f576200039e62000563565b5b600083015167ffffffffffffffff811115620003c057620003bf6200055e565b5b620003ce8582860162000352565b9250506020620003e1858286016200033b565b9150509250929050565b6000620003f76200040a565b9050620004058282620004c0565b919050565b6000604051905090565b600067ffffffffffffffff82111562000432576200043162000525565b5b6200043d8262000568565b9050602081019050919050565b6000819050919050565b60005b838110156200047457808201518184015260208101905062000457565b8381111562000484576000848401525b50505050565b60006002820490506001821680620004a357607f821691505b60208210811415620004ba57620004b9620004f6565b5b50919050565b620004cb8262000568565b810181811067ffffffffffffffff82111715620004ed57620004ec62000525565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000584816200044a565b81146200059057600080fd5b50565b6145d180620005a36000396000f3fe6080604052600436106101f95760003560e01c80636c0360eb1161010d5780639e34070f116100a0578063c87b56dd1161006f578063c87b56dd14610700578063d4a6a2fd1461073d578063e985e9c514610768578063f2fde38b146107a5578063f3fef3a3146107ce576101f9565b80639e34070f14610655578063a0712d6814610692578063a22cb465146106ae578063b88d4fde146106d7576101f9565b80638ba4cc3c116100dc5780638ba4cc3c146105ab5780638da5cb5b146105d457806395d89b41146105ff578063996517cf1461062a576101f9565b80636c0360eb1461050357806370a082311461052e578063715018a61461056b57806373417b0914610582576101f9565b806323b872dd1161019057806342842e0e1161015f57806342842e0e14610420578063525f8a5c1461044957806355f804b3146104725780636352211e1461049b5780636817c76c146104d8576101f9565b806323b872dd146103785780632ab4d052146103a15780632e7ba6ef146103cc5780632eb4a7ab146103f5576101f9565b806318160ddd116101cc57806318160ddd146102cc57806318f9d199146102f75780631cbaee2d1461032257806321e7345e1461034d576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612d4c565b6107f7565b604051610232919061351a565b60405180910390f35b34801561024757600080fd5b506102506108d9565b60405161025d9190613550565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612def565b61096b565b60405161029a91906134b3565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612cdf565b6109f0565b005b3480156102d857600080fd5b506102e1610b08565b6040516102ee91906138d2565b60405180910390f35b34801561030357600080fd5b5061030c610b0e565b60405161031991906138d2565b60405180910390f35b34801561032e57600080fd5b50610337610b14565b60405161034491906138d2565b60405180910390f35b34801561035957600080fd5b50610362610b1a565b60405161036f91906138d2565b60405180910390f35b34801561038457600080fd5b5061039f600480360381019061039a9190612bc9565b610b20565b005b3480156103ad57600080fd5b506103b6610b80565b6040516103c391906138d2565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190612e1c565b610b86565b005b34801561040157600080fd5b5061040a610de7565b6040516104179190613535565b60405180910390f35b34801561042c57600080fd5b5061044760048036038101906104429190612bc9565b610ded565b005b34801561045557600080fd5b50610470600480360381019061046b9190612def565b610e0d565b005b34801561047e57600080fd5b5061049960048036038101906104949190612da6565b610e93565b005b3480156104a757600080fd5b506104c260048036038101906104bd9190612def565b610f29565b6040516104cf91906134b3565b60405180910390f35b3480156104e457600080fd5b506104ed610fdb565b6040516104fa91906138d2565b60405180910390f35b34801561050f57600080fd5b50610518610fe6565b6040516105259190613550565b60405180910390f35b34801561053a57600080fd5b5061055560048036038101906105509190612b1c565b611074565b60405161056291906138d2565b60405180910390f35b34801561057757600080fd5b5061058061112c565b005b34801561058e57600080fd5b506105a960048036038101906105a49190612d1f565b6111b4565b005b3480156105b757600080fd5b506105d260048036038101906105cd9190612cdf565b61124d565b005b3480156105e057600080fd5b506105e961134b565b6040516105f691906134b3565b60405180910390f35b34801561060b57600080fd5b50610614611374565b6040516106219190613550565b60405180910390f35b34801561063657600080fd5b5061063f611406565b60405161064c91906138d2565b60405180910390f35b34801561066157600080fd5b5061067c60048036038101906106779190612def565b61140b565b604051610689919061351a565b60405180910390f35b6106ac60048036038101906106a79190612def565b611461565b005b3480156106ba57600080fd5b506106d560048036038101906106d09190612c9f565b6115e0565b005b3480156106e357600080fd5b506106fe60048036038101906106f99190612c1c565b611761565b005b34801561070c57600080fd5b5061072760048036038101906107229190612def565b6117c3565b6040516107349190613550565b60405180910390f35b34801561074957600080fd5b5061075261186b565b60405161075f919061351a565b60405180910390f35b34801561077457600080fd5b5061078f600480360381019061078a9190612b89565b61187e565b60405161079c919061351a565b60405180910390f35b3480156107b157600080fd5b506107cc60048036038101906107c79190612b1c565b611912565b005b3480156107da57600080fd5b506107f560048036038101906107f09190612b49565b611a0a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d257506108d182611b14565b5b9050919050565b6060600180546108e890613bea565b80601f016020809104026020016040519081016040528092919081815260200182805461091490613bea565b80156109615780601f1061093657610100808354040283529160200191610961565b820191906000526020600020905b81548152906001019060200180831161094457829003601f168201915b5050505050905090565b600061097682611b7e565b6109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac90613772565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109fb82610f29565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6390613812565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8b611bea565b73ffffffffffffffffffffffffffffffffffffffff161480610aba5750610ab981610ab4611bea565b61187e565b5b610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af0906136b2565b60405180910390fd5b610b038383611bf2565b505050565b60085481565b6101f481565b600a5481565b60095481565b610b31610b2b611bea565b82611cab565b610b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6790613832565b60405180910390fd5b610b7b838383611d89565b505050565b61200081565b60018314610bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc090613732565b60405180910390fd5b6101f4610be184600954611fe590919063ffffffff16565b1115610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c19906138b2565b60405180910390fd5b600b60009054906101000a900460ff16610c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6890613892565b60405180910390fd5b610c7a8561140b565b15610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb1906135f2565b60405180910390fd5b6000858585604051602001610cd193929190613476565b604051602081830303815290604052805190602001209050610d37838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c5483611ffb565b610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90613692565b60405180910390fd5b610d7f866120b1565b610d9484600954611fe590919063ffffffff16565b600981905550610da4858561210b565b7f4ec90e965519d92681267467f775ada5bd214aa92c0dc93d90a5e880ce9ed026868686604051610dd7939291906138ed565b60405180910390a1505050505050565b600c5481565b610e0883838360405180602001604052806000815250611761565b505050565b610e15611bea565b73ffffffffffffffffffffffffffffffffffffffff16610e3361134b565b73ffffffffffffffffffffffffffffffffffffffff1614610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8090613792565b60405180910390fd5b80600a8190555050565b610e9b611bea565b73ffffffffffffffffffffffffffffffffffffffff16610eb961134b565b73ffffffffffffffffffffffffffffffffffffffff1614610f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0690613792565b60405180910390fd5b8060079080519060200190610f259291906128c5565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc9906136f2565b60405180910390fd5b80915050919050565b66b1a2bc2ec5000081565b60078054610ff390613bea565b80601f016020809104026020016040519081016040528092919081815260200182805461101f90613bea565b801561106c5780601f106110415761010080835404028352916020019161106c565b820191906000526020600020905b81548152906001019060200180831161104f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc906136d2565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611134611bea565b73ffffffffffffffffffffffffffffffffffffffff1661115261134b565b73ffffffffffffffffffffffffffffffffffffffff16146111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f90613792565b60405180910390fd5b6111b26000612222565b565b6111bc611bea565b73ffffffffffffffffffffffffffffffffffffffff166111da61134b565b73ffffffffffffffffffffffffffffffffffffffff1614611230576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122790613792565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b611255611bea565b73ffffffffffffffffffffffffffffffffffffffff1661127361134b565b73ffffffffffffffffffffffffffffffffffffffff16146112c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c090613792565b60405180910390fd5b6101f46112e182600954611fe590919063ffffffff16565b1115611322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131990613612565b60405180910390fd5b61133781600954611fe590919063ffffffff16565b600981905550611347828261210b565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461138390613bea565b80601f01602080910402602001604051908101604052809291908181526020018280546113af90613bea565b80156113fc5780601f106113d1576101008083540402835291602001916113fc565b820191906000526020600020905b8154815290600101906020018083116113df57829003601f168201915b5050505050905090565b601481565b6000806101008361141c9190613a59565b905060006101008461142e9190613cce565b90506000600d60008481526020019081526020016000205490506000826001901b90508081831614945050505050919050565b6114786101f46120006122e690919063ffffffff16565b6114a1826114936009546008546122e690919063ffffffff16565b611fe590919063ffffffff16565b11156114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d990613852565b60405180910390fd5b600a54421015611527576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151e906137f2565b60405180910390fd5b600081118015611538575060148111155b611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e906135d2565b60405180910390fd5b6115918166b1a2bc2ec500006122fc90919063ffffffff16565b3410156115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca90613872565b60405180910390fd5b6115dd338261210b565b50565b6115e8611bea565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164d90613652565b60405180910390fd5b8060066000611663611bea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611710611bea565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611755919061351a565b60405180910390a35050565b61177261176c611bea565b83611cab565b6117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a890613832565b60405180910390fd5b6117bd84848484612312565b50505050565b60606117ce82611b7e565b61180d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611804906137d2565b60405180910390fd5b60006007805461181c90613bea565b9050116118385760405180602001604052806000815250611864565b60076118438361236e565b604051602001611854929190613447565b6040516020818303038152906040525b9050919050565b600b60009054906101000a900460ff1681565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61191a611bea565b73ffffffffffffffffffffffffffffffffffffffff1661193861134b565b73ffffffffffffffffffffffffffffffffffffffff161461198e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198590613792565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f590613592565b60405180910390fd5b611a0781612222565b50565b611a12611bea565b73ffffffffffffffffffffffffffffffffffffffff16611a3061134b565b73ffffffffffffffffffffffffffffffffffffffff1614611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d90613792565b60405180910390fd5b47811115611ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac090613712565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611b0f573d6000803e3d6000fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c6583610f29565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611cb682611b7e565b611cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cec90613672565b60405180910390fd5b6000611d0083610f29565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d6f57508373ffffffffffffffffffffffffffffffffffffffff16611d578461096b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d805750611d7f818561187e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611da982610f29565b73ffffffffffffffffffffffffffffffffffffffff1614611dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df6906137b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6690613632565b60405180910390fd5b611e7a8383836124cf565b611e85600082611bf2565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ed59190613ae4565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f2c9190613a03565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183611ff39190613a03565b905092915050565b60008082905060005b85518110156120a357600086828151811061202257612021613d8c565b5b6020026020010151905080831161206357828160405160200161204692919061341b565b60405160208183030381529060405280519060200120925061208f565b808360405160200161207692919061341b565b6040516020818303038152906040528051906020012092505b50808061209b90613c4d565b915050612004565b508381149150509392505050565b6000610100826120c19190613a59565b90506000610100836120d39190613cce565b9050806001901b600d60008481526020019081526020016000205417600d600084815260200190815260200160002081905550505050565b61200061212382600854611fe590919063ffffffff16565b1115612164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215b90613612565b60405180910390fd5b6000600854905060005b8281101561221c5761218a600183611fe590919063ffffffff16565b91506121a26001600854611fe590919063ffffffff16565b6008819055506121b284836124d4565b818473ffffffffffffffffffffffffffffffffffffffff167fe7cd4ce7f2a465edc730269a1305e8a48bad821e8fb7e152ec413829c01a53c46121f4856117c3565b6040516122019190613550565b60405180910390a3808061221490613c4d565b91505061216e565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836122f49190613ae4565b905092915050565b6000818361230a9190613a8a565b905092915050565b61231d848484611d89565b612329848484846124f2565b612368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235f90613572565b60405180910390fd5b50505050565b606060008214156123b6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124ca565b600082905060005b600082146123e85780806123d190613c4d565b915050600a826123e19190613a59565b91506123be565b60008167ffffffffffffffff81111561240457612403613dbb565b5b6040519080825280601f01601f1916602001820160405280156124365781602001600182028036833780820191505090505b5090505b600085146124c35760018261244f9190613ae4565b9150600a8561245e9190613cce565b603061246a9190613a03565b60f81b8183815181106124805761247f613d8c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124bc9190613a59565b945061243a565b8093505050505b919050565b505050565b6124ee828260405180602001604052806000815250612689565b5050565b60006125138473ffffffffffffffffffffffffffffffffffffffff166126e4565b1561267c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261253c611bea565b8786866040518563ffffffff1660e01b815260040161255e94939291906134ce565b602060405180830381600087803b15801561257857600080fd5b505af19250505080156125a957506040513d601f19601f820116820180604052508101906125a69190612d79565b60015b61262c573d80600081146125d9576040519150601f19603f3d011682016040523d82523d6000602084013e6125de565b606091505b50600081511415612624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261b90613572565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612681565b600190505b949350505050565b61269383836126f7565b6126a060008484846124f2565b6126df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d690613572565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275e90613752565b60405180910390fd5b61277081611b7e565b156127b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a7906135b2565b60405180910390fd5b6127bc600083836124cf565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461280c9190613a03565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546128d190613bea565b90600052602060002090601f0160209004810192826128f3576000855561293a565b82601f1061290c57805160ff191683800117855561293a565b8280016001018555821561293a579182015b8281111561293957825182559160200191906001019061291e565b5b509050612947919061294b565b5090565b5b8082111561296457600081600090555060010161294c565b5090565b600061297b61297684613949565b613924565b90508281526020810184848401111561299757612996613df9565b5b6129a2848285613ba8565b509392505050565b60006129bd6129b88461397a565b613924565b9050828152602081018484840111156129d9576129d8613df9565b5b6129e4848285613ba8565b509392505050565b6000813590506129fb81614528565b92915050565b600081359050612a108161453f565b92915050565b60008083601f840112612a2c57612a2b613def565b5b8235905067ffffffffffffffff811115612a4957612a48613dea565b5b602083019150836020820283011115612a6557612a64613df4565b5b9250929050565b600081359050612a7b81614556565b92915050565b600081359050612a908161456d565b92915050565b600081519050612aa58161456d565b92915050565b600082601f830112612ac057612abf613def565b5b8135612ad0848260208601612968565b91505092915050565b600082601f830112612aee57612aed613def565b5b8135612afe8482602086016129aa565b91505092915050565b600081359050612b1681614584565b92915050565b600060208284031215612b3257612b31613e03565b5b6000612b40848285016129ec565b91505092915050565b60008060408385031215612b6057612b5f613e03565b5b6000612b6e85828601612a01565b9250506020612b7f85828601612b07565b9150509250929050565b60008060408385031215612ba057612b9f613e03565b5b6000612bae858286016129ec565b9250506020612bbf858286016129ec565b9150509250929050565b600080600060608486031215612be257612be1613e03565b5b6000612bf0868287016129ec565b9350506020612c01868287016129ec565b9250506040612c1286828701612b07565b9150509250925092565b60008060008060808587031215612c3657612c35613e03565b5b6000612c44878288016129ec565b9450506020612c55878288016129ec565b9350506040612c6687828801612b07565b925050606085013567ffffffffffffffff811115612c8757612c86613dfe565b5b612c9387828801612aab565b91505092959194509250565b60008060408385031215612cb657612cb5613e03565b5b6000612cc4858286016129ec565b9250506020612cd585828601612a6c565b9150509250929050565b60008060408385031215612cf657612cf5613e03565b5b6000612d04858286016129ec565b9250506020612d1585828601612b07565b9150509250929050565b600060208284031215612d3557612d34613e03565b5b6000612d4384828501612a6c565b91505092915050565b600060208284031215612d6257612d61613e03565b5b6000612d7084828501612a81565b91505092915050565b600060208284031215612d8f57612d8e613e03565b5b6000612d9d84828501612a96565b91505092915050565b600060208284031215612dbc57612dbb613e03565b5b600082013567ffffffffffffffff811115612dda57612dd9613dfe565b5b612de684828501612ad9565b91505092915050565b600060208284031215612e0557612e04613e03565b5b6000612e1384828501612b07565b91505092915050565b600080600080600060808688031215612e3857612e37613e03565b5b6000612e4688828901612b07565b9550506020612e57888289016129ec565b9450506040612e6888828901612b07565b935050606086013567ffffffffffffffff811115612e8957612e88613dfe565b5b612e9588828901612a16565b92509250509295509295909350565b612ead81613b18565b82525050565b612ec4612ebf82613b18565b613c96565b82525050565b612ed381613b3c565b82525050565b612ee281613b48565b82525050565b612ef9612ef482613b48565b613ca8565b82525050565b6000612f0a826139c0565b612f1481856139d6565b9350612f24818560208601613bb7565b612f2d81613e08565b840191505092915050565b6000612f43826139cb565b612f4d81856139e7565b9350612f5d818560208601613bb7565b612f6681613e08565b840191505092915050565b6000612f7c826139cb565b612f8681856139f8565b9350612f96818560208601613bb7565b80840191505092915050565b60008154612faf81613bea565b612fb981866139f8565b94506001821660008114612fd45760018114612fe557613018565b60ff19831686528186019350613018565b612fee856139ab565b60005b8381101561301057815481890152600182019150602081019050612ff1565b838801955050505b50505092915050565b600061302e6032836139e7565b915061303982613e26565b604082019050919050565b60006130516026836139e7565b915061305c82613e75565b604082019050919050565b6000613074601c836139e7565b915061307f82613ec4565b602082019050919050565b60006130976024836139e7565b91506130a282613eed565b604082019050919050565b60006130ba6028836139e7565b91506130c582613f3c565b604082019050919050565b60006130dd6017836139e7565b91506130e882613f8b565b602082019050919050565b60006131006024836139e7565b915061310b82613fb4565b604082019050919050565b60006131236019836139e7565b915061312e82614003565b602082019050919050565b6000613146602c836139e7565b91506131518261402c565b604082019050919050565b60006131696021836139e7565b91506131748261407b565b604082019050919050565b600061318c6038836139e7565b9150613197826140ca565b604082019050919050565b60006131af602a836139e7565b91506131ba82614119565b604082019050919050565b60006131d26029836139e7565b91506131dd82614168565b604082019050919050565b60006131f56015836139e7565b9150613200826141b7565b602082019050919050565b60006132186028836139e7565b9150613223826141e0565b604082019050919050565b600061323b6020836139e7565b91506132468261422f565b602082019050919050565b600061325e602c836139e7565b915061326982614258565b604082019050919050565b60006132816020836139e7565b915061328c826142a7565b602082019050919050565b60006132a46029836139e7565b91506132af826142d0565b604082019050919050565b60006132c7602f836139e7565b91506132d28261431f565b604082019050919050565b60006132ea6013836139e7565b91506132f58261436e565b602082019050919050565b600061330d6021836139e7565b915061331882614397565b604082019050919050565b60006133306031836139e7565b915061333b826143e6565b604082019050919050565b60006133536009836139e7565b915061335e82614435565b602082019050919050565b60006133766015836139e7565b91506133818261445e565b602082019050919050565b60006133996020836139e7565b91506133a482614487565b602082019050919050565b60006133bc602a836139e7565b91506133c7826144b0565b604082019050919050565b60006133df6001836139f8565b91506133ea826144ff565b600182019050919050565b6133fe81613b9e565b82525050565b61341561341082613b9e565b613cc4565b82525050565b60006134278285612ee8565b6020820191506134378284612ee8565b6020820191508190509392505050565b60006134538285612fa2565b915061345e826133d2565b915061346a8284612f71565b91508190509392505050565b60006134828286613404565b6020820191506134928285612eb3565b6014820191506134a28284613404565b602082019150819050949350505050565b60006020820190506134c86000830184612ea4565b92915050565b60006080820190506134e36000830187612ea4565b6134f06020830186612ea4565b6134fd60408301856133f5565b818103606083015261350f8184612eff565b905095945050505050565b600060208201905061352f6000830184612eca565b92915050565b600060208201905061354a6000830184612ed9565b92915050565b6000602082019050818103600083015261356a8184612f38565b905092915050565b6000602082019050818103600083015261358b81613021565b9050919050565b600060208201905081810360008301526135ab81613044565b9050919050565b600060208201905081810360008301526135cb81613067565b9050919050565b600060208201905081810360008301526135eb8161308a565b9050919050565b6000602082019050818103600083015261360b816130ad565b9050919050565b6000602082019050818103600083015261362b816130d0565b9050919050565b6000602082019050818103600083015261364b816130f3565b9050919050565b6000602082019050818103600083015261366b81613116565b9050919050565b6000602082019050818103600083015261368b81613139565b9050919050565b600060208201905081810360008301526136ab8161315c565b9050919050565b600060208201905081810360008301526136cb8161317f565b9050919050565b600060208201905081810360008301526136eb816131a2565b9050919050565b6000602082019050818103600083015261370b816131c5565b9050919050565b6000602082019050818103600083015261372b816131e8565b9050919050565b6000602082019050818103600083015261374b8161320b565b9050919050565b6000602082019050818103600083015261376b8161322e565b9050919050565b6000602082019050818103600083015261378b81613251565b9050919050565b600060208201905081810360008301526137ab81613274565b9050919050565b600060208201905081810360008301526137cb81613297565b9050919050565b600060208201905081810360008301526137eb816132ba565b9050919050565b6000602082019050818103600083015261380b816132dd565b9050919050565b6000602082019050818103600083015261382b81613300565b9050919050565b6000602082019050818103600083015261384b81613323565b9050919050565b6000602082019050818103600083015261386b81613346565b9050919050565b6000602082019050818103600083015261388b81613369565b9050919050565b600060208201905081810360008301526138ab8161338c565b9050919050565b600060208201905081810360008301526138cb816133af565b9050919050565b60006020820190506138e760008301846133f5565b92915050565b600060608201905061390260008301866133f5565b61390f6020830185612ea4565b61391c60408301846133f5565b949350505050565b600061392e61393f565b905061393a8282613c1c565b919050565b6000604051905090565b600067ffffffffffffffff82111561396457613963613dbb565b5b61396d82613e08565b9050602081019050919050565b600067ffffffffffffffff82111561399557613994613dbb565b5b61399e82613e08565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a0e82613b9e565b9150613a1983613b9e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a4e57613a4d613cff565b5b828201905092915050565b6000613a6482613b9e565b9150613a6f83613b9e565b925082613a7f57613a7e613d2e565b5b828204905092915050565b6000613a9582613b9e565b9150613aa083613b9e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ad957613ad8613cff565b5b828202905092915050565b6000613aef82613b9e565b9150613afa83613b9e565b925082821015613b0d57613b0c613cff565b5b828203905092915050565b6000613b2382613b7e565b9050919050565b6000613b3582613b7e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613bd5578082015181840152602081019050613bba565b83811115613be4576000848401525b50505050565b60006002820490506001821680613c0257607f821691505b60208210811415613c1657613c15613d5d565b5b50919050565b613c2582613e08565b810181811067ffffffffffffffff82111715613c4457613c43613dbb565b5b80604052505050565b6000613c5882613b9e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c8b57613c8a613cff565b5b600182019050919050565b6000613ca182613cb2565b9050919050565b6000819050919050565b6000613cbd82613e19565b9050919050565b6000819050919050565b6000613cd982613b9e565b9150613ce483613b9e565b925082613cf457613cf3613d2e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f546f6f206d616e7920746f6b656e7320666f72206f6e65207472616e7361637460008201527f696f6e2e00000000000000000000000000000000000000000000000000000000602082015250565b7f4d65726b6c654469737472696275746f723a2044726f7020616c72656164792060008201527f636c61696d65642e000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c6566742e000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f6660008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742062616c616e63652e0000000000000000000000600082015250565b7f4d65726b6c654469737472696275746f723a20436c61696d206c696d6974206560008201527f786365656465642e000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f536f6c64206f75742e0000000000000000000000000000000000000000000000600082015250565b7f496e73756666696369656e74207061796d656e742e0000000000000000000000600082015250565b7f4d65726b6c654469737472696275746f723a20436c61696d20636c6f7365642e600082015250565b7f4d65726b6c654469737472696275746f723a204e6f7420656e6f75676820746f60008201527f6b656e73206c6566742e00000000000000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61453181613b18565b811461453c57600080fd5b50565b61454881613b2a565b811461455357600080fd5b50565b61455f81613b3c565b811461456a57600080fd5b50565b61457681613b52565b811461458157600080fd5b50565b61458d81613b9e565b811461459857600080fd5b5056fea2646970667358221220fdf5ba92f687957fb48850771ee7cdb016d871e50557603ebc92f55efc9b103f64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040b1adbfc49796616311aec51899c0190fc16315666e8de949db149b30e8ef3b230000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80636c0360eb1161010d5780639e34070f116100a0578063c87b56dd1161006f578063c87b56dd14610700578063d4a6a2fd1461073d578063e985e9c514610768578063f2fde38b146107a5578063f3fef3a3146107ce576101f9565b80639e34070f14610655578063a0712d6814610692578063a22cb465146106ae578063b88d4fde146106d7576101f9565b80638ba4cc3c116100dc5780638ba4cc3c146105ab5780638da5cb5b146105d457806395d89b41146105ff578063996517cf1461062a576101f9565b80636c0360eb1461050357806370a082311461052e578063715018a61461056b57806373417b0914610582576101f9565b806323b872dd1161019057806342842e0e1161015f57806342842e0e14610420578063525f8a5c1461044957806355f804b3146104725780636352211e1461049b5780636817c76c146104d8576101f9565b806323b872dd146103785780632ab4d052146103a15780632e7ba6ef146103cc5780632eb4a7ab146103f5576101f9565b806318160ddd116101cc57806318160ddd146102cc57806318f9d199146102f75780631cbaee2d1461032257806321e7345e1461034d576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612d4c565b6107f7565b604051610232919061351a565b60405180910390f35b34801561024757600080fd5b506102506108d9565b60405161025d9190613550565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612def565b61096b565b60405161029a91906134b3565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612cdf565b6109f0565b005b3480156102d857600080fd5b506102e1610b08565b6040516102ee91906138d2565b60405180910390f35b34801561030357600080fd5b5061030c610b0e565b60405161031991906138d2565b60405180910390f35b34801561032e57600080fd5b50610337610b14565b60405161034491906138d2565b60405180910390f35b34801561035957600080fd5b50610362610b1a565b60405161036f91906138d2565b60405180910390f35b34801561038457600080fd5b5061039f600480360381019061039a9190612bc9565b610b20565b005b3480156103ad57600080fd5b506103b6610b80565b6040516103c391906138d2565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190612e1c565b610b86565b005b34801561040157600080fd5b5061040a610de7565b6040516104179190613535565b60405180910390f35b34801561042c57600080fd5b5061044760048036038101906104429190612bc9565b610ded565b005b34801561045557600080fd5b50610470600480360381019061046b9190612def565b610e0d565b005b34801561047e57600080fd5b5061049960048036038101906104949190612da6565b610e93565b005b3480156104a757600080fd5b506104c260048036038101906104bd9190612def565b610f29565b6040516104cf91906134b3565b60405180910390f35b3480156104e457600080fd5b506104ed610fdb565b6040516104fa91906138d2565b60405180910390f35b34801561050f57600080fd5b50610518610fe6565b6040516105259190613550565b60405180910390f35b34801561053a57600080fd5b5061055560048036038101906105509190612b1c565b611074565b60405161056291906138d2565b60405180910390f35b34801561057757600080fd5b5061058061112c565b005b34801561058e57600080fd5b506105a960048036038101906105a49190612d1f565b6111b4565b005b3480156105b757600080fd5b506105d260048036038101906105cd9190612cdf565b61124d565b005b3480156105e057600080fd5b506105e961134b565b6040516105f691906134b3565b60405180910390f35b34801561060b57600080fd5b50610614611374565b6040516106219190613550565b60405180910390f35b34801561063657600080fd5b5061063f611406565b60405161064c91906138d2565b60405180910390f35b34801561066157600080fd5b5061067c60048036038101906106779190612def565b61140b565b604051610689919061351a565b60405180910390f35b6106ac60048036038101906106a79190612def565b611461565b005b3480156106ba57600080fd5b506106d560048036038101906106d09190612c9f565b6115e0565b005b3480156106e357600080fd5b506106fe60048036038101906106f99190612c1c565b611761565b005b34801561070c57600080fd5b5061072760048036038101906107229190612def565b6117c3565b6040516107349190613550565b60405180910390f35b34801561074957600080fd5b5061075261186b565b60405161075f919061351a565b60405180910390f35b34801561077457600080fd5b5061078f600480360381019061078a9190612b89565b61187e565b60405161079c919061351a565b60405180910390f35b3480156107b157600080fd5b506107cc60048036038101906107c79190612b1c565b611912565b005b3480156107da57600080fd5b506107f560048036038101906107f09190612b49565b611a0a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d257506108d182611b14565b5b9050919050565b6060600180546108e890613bea565b80601f016020809104026020016040519081016040528092919081815260200182805461091490613bea565b80156109615780601f1061093657610100808354040283529160200191610961565b820191906000526020600020905b81548152906001019060200180831161094457829003601f168201915b5050505050905090565b600061097682611b7e565b6109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac90613772565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109fb82610f29565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6390613812565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8b611bea565b73ffffffffffffffffffffffffffffffffffffffff161480610aba5750610ab981610ab4611bea565b61187e565b5b610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af0906136b2565b60405180910390fd5b610b038383611bf2565b505050565b60085481565b6101f481565b600a5481565b60095481565b610b31610b2b611bea565b82611cab565b610b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6790613832565b60405180910390fd5b610b7b838383611d89565b505050565b61200081565b60018314610bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc090613732565b60405180910390fd5b6101f4610be184600954611fe590919063ffffffff16565b1115610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c19906138b2565b60405180910390fd5b600b60009054906101000a900460ff16610c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6890613892565b60405180910390fd5b610c7a8561140b565b15610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb1906135f2565b60405180910390fd5b6000858585604051602001610cd193929190613476565b604051602081830303815290604052805190602001209050610d37838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c5483611ffb565b610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90613692565b60405180910390fd5b610d7f866120b1565b610d9484600954611fe590919063ffffffff16565b600981905550610da4858561210b565b7f4ec90e965519d92681267467f775ada5bd214aa92c0dc93d90a5e880ce9ed026868686604051610dd7939291906138ed565b60405180910390a1505050505050565b600c5481565b610e0883838360405180602001604052806000815250611761565b505050565b610e15611bea565b73ffffffffffffffffffffffffffffffffffffffff16610e3361134b565b73ffffffffffffffffffffffffffffffffffffffff1614610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8090613792565b60405180910390fd5b80600a8190555050565b610e9b611bea565b73ffffffffffffffffffffffffffffffffffffffff16610eb961134b565b73ffffffffffffffffffffffffffffffffffffffff1614610f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0690613792565b60405180910390fd5b8060079080519060200190610f259291906128c5565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc9906136f2565b60405180910390fd5b80915050919050565b66b1a2bc2ec5000081565b60078054610ff390613bea565b80601f016020809104026020016040519081016040528092919081815260200182805461101f90613bea565b801561106c5780601f106110415761010080835404028352916020019161106c565b820191906000526020600020905b81548152906001019060200180831161104f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc906136d2565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611134611bea565b73ffffffffffffffffffffffffffffffffffffffff1661115261134b565b73ffffffffffffffffffffffffffffffffffffffff16146111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f90613792565b60405180910390fd5b6111b26000612222565b565b6111bc611bea565b73ffffffffffffffffffffffffffffffffffffffff166111da61134b565b73ffffffffffffffffffffffffffffffffffffffff1614611230576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122790613792565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b611255611bea565b73ffffffffffffffffffffffffffffffffffffffff1661127361134b565b73ffffffffffffffffffffffffffffffffffffffff16146112c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c090613792565b60405180910390fd5b6101f46112e182600954611fe590919063ffffffff16565b1115611322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131990613612565b60405180910390fd5b61133781600954611fe590919063ffffffff16565b600981905550611347828261210b565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461138390613bea565b80601f01602080910402602001604051908101604052809291908181526020018280546113af90613bea565b80156113fc5780601f106113d1576101008083540402835291602001916113fc565b820191906000526020600020905b8154815290600101906020018083116113df57829003601f168201915b5050505050905090565b601481565b6000806101008361141c9190613a59565b905060006101008461142e9190613cce565b90506000600d60008481526020019081526020016000205490506000826001901b90508081831614945050505050919050565b6114786101f46120006122e690919063ffffffff16565b6114a1826114936009546008546122e690919063ffffffff16565b611fe590919063ffffffff16565b11156114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d990613852565b60405180910390fd5b600a54421015611527576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151e906137f2565b60405180910390fd5b600081118015611538575060148111155b611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e906135d2565b60405180910390fd5b6115918166b1a2bc2ec500006122fc90919063ffffffff16565b3410156115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca90613872565b60405180910390fd5b6115dd338261210b565b50565b6115e8611bea565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164d90613652565b60405180910390fd5b8060066000611663611bea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611710611bea565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611755919061351a565b60405180910390a35050565b61177261176c611bea565b83611cab565b6117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a890613832565b60405180910390fd5b6117bd84848484612312565b50505050565b60606117ce82611b7e565b61180d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611804906137d2565b60405180910390fd5b60006007805461181c90613bea565b9050116118385760405180602001604052806000815250611864565b60076118438361236e565b604051602001611854929190613447565b6040516020818303038152906040525b9050919050565b600b60009054906101000a900460ff1681565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61191a611bea565b73ffffffffffffffffffffffffffffffffffffffff1661193861134b565b73ffffffffffffffffffffffffffffffffffffffff161461198e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198590613792565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f590613592565b60405180910390fd5b611a0781612222565b50565b611a12611bea565b73ffffffffffffffffffffffffffffffffffffffff16611a3061134b565b73ffffffffffffffffffffffffffffffffffffffff1614611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d90613792565b60405180910390fd5b47811115611ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac090613712565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611b0f573d6000803e3d6000fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c6583610f29565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611cb682611b7e565b611cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cec90613672565b60405180910390fd5b6000611d0083610f29565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d6f57508373ffffffffffffffffffffffffffffffffffffffff16611d578461096b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d805750611d7f818561187e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611da982610f29565b73ffffffffffffffffffffffffffffffffffffffff1614611dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df6906137b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6690613632565b60405180910390fd5b611e7a8383836124cf565b611e85600082611bf2565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ed59190613ae4565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f2c9190613a03565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183611ff39190613a03565b905092915050565b60008082905060005b85518110156120a357600086828151811061202257612021613d8c565b5b6020026020010151905080831161206357828160405160200161204692919061341b565b60405160208183030381529060405280519060200120925061208f565b808360405160200161207692919061341b565b6040516020818303038152906040528051906020012092505b50808061209b90613c4d565b915050612004565b508381149150509392505050565b6000610100826120c19190613a59565b90506000610100836120d39190613cce565b9050806001901b600d60008481526020019081526020016000205417600d600084815260200190815260200160002081905550505050565b61200061212382600854611fe590919063ffffffff16565b1115612164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215b90613612565b60405180910390fd5b6000600854905060005b8281101561221c5761218a600183611fe590919063ffffffff16565b91506121a26001600854611fe590919063ffffffff16565b6008819055506121b284836124d4565b818473ffffffffffffffffffffffffffffffffffffffff167fe7cd4ce7f2a465edc730269a1305e8a48bad821e8fb7e152ec413829c01a53c46121f4856117c3565b6040516122019190613550565b60405180910390a3808061221490613c4d565b91505061216e565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836122f49190613ae4565b905092915050565b6000818361230a9190613a8a565b905092915050565b61231d848484611d89565b612329848484846124f2565b612368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235f90613572565b60405180910390fd5b50505050565b606060008214156123b6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124ca565b600082905060005b600082146123e85780806123d190613c4d565b915050600a826123e19190613a59565b91506123be565b60008167ffffffffffffffff81111561240457612403613dbb565b5b6040519080825280601f01601f1916602001820160405280156124365781602001600182028036833780820191505090505b5090505b600085146124c35760018261244f9190613ae4565b9150600a8561245e9190613cce565b603061246a9190613a03565b60f81b8183815181106124805761247f613d8c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124bc9190613a59565b945061243a565b8093505050505b919050565b505050565b6124ee828260405180602001604052806000815250612689565b5050565b60006125138473ffffffffffffffffffffffffffffffffffffffff166126e4565b1561267c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261253c611bea565b8786866040518563ffffffff1660e01b815260040161255e94939291906134ce565b602060405180830381600087803b15801561257857600080fd5b505af19250505080156125a957506040513d601f19601f820116820180604052508101906125a69190612d79565b60015b61262c573d80600081146125d9576040519150601f19603f3d011682016040523d82523d6000602084013e6125de565b606091505b50600081511415612624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261b90613572565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612681565b600190505b949350505050565b61269383836126f7565b6126a060008484846124f2565b6126df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d690613572565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275e90613752565b60405180910390fd5b61277081611b7e565b156127b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a7906135b2565b60405180910390fd5b6127bc600083836124cf565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461280c9190613a03565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546128d190613bea565b90600052602060002090601f0160209004810192826128f3576000855561293a565b82601f1061290c57805160ff191683800117855561293a565b8280016001018555821561293a579182015b8281111561293957825182559160200191906001019061291e565b5b509050612947919061294b565b5090565b5b8082111561296457600081600090555060010161294c565b5090565b600061297b61297684613949565b613924565b90508281526020810184848401111561299757612996613df9565b5b6129a2848285613ba8565b509392505050565b60006129bd6129b88461397a565b613924565b9050828152602081018484840111156129d9576129d8613df9565b5b6129e4848285613ba8565b509392505050565b6000813590506129fb81614528565b92915050565b600081359050612a108161453f565b92915050565b60008083601f840112612a2c57612a2b613def565b5b8235905067ffffffffffffffff811115612a4957612a48613dea565b5b602083019150836020820283011115612a6557612a64613df4565b5b9250929050565b600081359050612a7b81614556565b92915050565b600081359050612a908161456d565b92915050565b600081519050612aa58161456d565b92915050565b600082601f830112612ac057612abf613def565b5b8135612ad0848260208601612968565b91505092915050565b600082601f830112612aee57612aed613def565b5b8135612afe8482602086016129aa565b91505092915050565b600081359050612b1681614584565b92915050565b600060208284031215612b3257612b31613e03565b5b6000612b40848285016129ec565b91505092915050565b60008060408385031215612b6057612b5f613e03565b5b6000612b6e85828601612a01565b9250506020612b7f85828601612b07565b9150509250929050565b60008060408385031215612ba057612b9f613e03565b5b6000612bae858286016129ec565b9250506020612bbf858286016129ec565b9150509250929050565b600080600060608486031215612be257612be1613e03565b5b6000612bf0868287016129ec565b9350506020612c01868287016129ec565b9250506040612c1286828701612b07565b9150509250925092565b60008060008060808587031215612c3657612c35613e03565b5b6000612c44878288016129ec565b9450506020612c55878288016129ec565b9350506040612c6687828801612b07565b925050606085013567ffffffffffffffff811115612c8757612c86613dfe565b5b612c9387828801612aab565b91505092959194509250565b60008060408385031215612cb657612cb5613e03565b5b6000612cc4858286016129ec565b9250506020612cd585828601612a6c565b9150509250929050565b60008060408385031215612cf657612cf5613e03565b5b6000612d04858286016129ec565b9250506020612d1585828601612b07565b9150509250929050565b600060208284031215612d3557612d34613e03565b5b6000612d4384828501612a6c565b91505092915050565b600060208284031215612d6257612d61613e03565b5b6000612d7084828501612a81565b91505092915050565b600060208284031215612d8f57612d8e613e03565b5b6000612d9d84828501612a96565b91505092915050565b600060208284031215612dbc57612dbb613e03565b5b600082013567ffffffffffffffff811115612dda57612dd9613dfe565b5b612de684828501612ad9565b91505092915050565b600060208284031215612e0557612e04613e03565b5b6000612e1384828501612b07565b91505092915050565b600080600080600060808688031215612e3857612e37613e03565b5b6000612e4688828901612b07565b9550506020612e57888289016129ec565b9450506040612e6888828901612b07565b935050606086013567ffffffffffffffff811115612e8957612e88613dfe565b5b612e9588828901612a16565b92509250509295509295909350565b612ead81613b18565b82525050565b612ec4612ebf82613b18565b613c96565b82525050565b612ed381613b3c565b82525050565b612ee281613b48565b82525050565b612ef9612ef482613b48565b613ca8565b82525050565b6000612f0a826139c0565b612f1481856139d6565b9350612f24818560208601613bb7565b612f2d81613e08565b840191505092915050565b6000612f43826139cb565b612f4d81856139e7565b9350612f5d818560208601613bb7565b612f6681613e08565b840191505092915050565b6000612f7c826139cb565b612f8681856139f8565b9350612f96818560208601613bb7565b80840191505092915050565b60008154612faf81613bea565b612fb981866139f8565b94506001821660008114612fd45760018114612fe557613018565b60ff19831686528186019350613018565b612fee856139ab565b60005b8381101561301057815481890152600182019150602081019050612ff1565b838801955050505b50505092915050565b600061302e6032836139e7565b915061303982613e26565b604082019050919050565b60006130516026836139e7565b915061305c82613e75565b604082019050919050565b6000613074601c836139e7565b915061307f82613ec4565b602082019050919050565b60006130976024836139e7565b91506130a282613eed565b604082019050919050565b60006130ba6028836139e7565b91506130c582613f3c565b604082019050919050565b60006130dd6017836139e7565b91506130e882613f8b565b602082019050919050565b60006131006024836139e7565b915061310b82613fb4565b604082019050919050565b60006131236019836139e7565b915061312e82614003565b602082019050919050565b6000613146602c836139e7565b91506131518261402c565b604082019050919050565b60006131696021836139e7565b91506131748261407b565b604082019050919050565b600061318c6038836139e7565b9150613197826140ca565b604082019050919050565b60006131af602a836139e7565b91506131ba82614119565b604082019050919050565b60006131d26029836139e7565b91506131dd82614168565b604082019050919050565b60006131f56015836139e7565b9150613200826141b7565b602082019050919050565b60006132186028836139e7565b9150613223826141e0565b604082019050919050565b600061323b6020836139e7565b91506132468261422f565b602082019050919050565b600061325e602c836139e7565b915061326982614258565b604082019050919050565b60006132816020836139e7565b915061328c826142a7565b602082019050919050565b60006132a46029836139e7565b91506132af826142d0565b604082019050919050565b60006132c7602f836139e7565b91506132d28261431f565b604082019050919050565b60006132ea6013836139e7565b91506132f58261436e565b602082019050919050565b600061330d6021836139e7565b915061331882614397565b604082019050919050565b60006133306031836139e7565b915061333b826143e6565b604082019050919050565b60006133536009836139e7565b915061335e82614435565b602082019050919050565b60006133766015836139e7565b91506133818261445e565b602082019050919050565b60006133996020836139e7565b91506133a482614487565b602082019050919050565b60006133bc602a836139e7565b91506133c7826144b0565b604082019050919050565b60006133df6001836139f8565b91506133ea826144ff565b600182019050919050565b6133fe81613b9e565b82525050565b61341561341082613b9e565b613cc4565b82525050565b60006134278285612ee8565b6020820191506134378284612ee8565b6020820191508190509392505050565b60006134538285612fa2565b915061345e826133d2565b915061346a8284612f71565b91508190509392505050565b60006134828286613404565b6020820191506134928285612eb3565b6014820191506134a28284613404565b602082019150819050949350505050565b60006020820190506134c86000830184612ea4565b92915050565b60006080820190506134e36000830187612ea4565b6134f06020830186612ea4565b6134fd60408301856133f5565b818103606083015261350f8184612eff565b905095945050505050565b600060208201905061352f6000830184612eca565b92915050565b600060208201905061354a6000830184612ed9565b92915050565b6000602082019050818103600083015261356a8184612f38565b905092915050565b6000602082019050818103600083015261358b81613021565b9050919050565b600060208201905081810360008301526135ab81613044565b9050919050565b600060208201905081810360008301526135cb81613067565b9050919050565b600060208201905081810360008301526135eb8161308a565b9050919050565b6000602082019050818103600083015261360b816130ad565b9050919050565b6000602082019050818103600083015261362b816130d0565b9050919050565b6000602082019050818103600083015261364b816130f3565b9050919050565b6000602082019050818103600083015261366b81613116565b9050919050565b6000602082019050818103600083015261368b81613139565b9050919050565b600060208201905081810360008301526136ab8161315c565b9050919050565b600060208201905081810360008301526136cb8161317f565b9050919050565b600060208201905081810360008301526136eb816131a2565b9050919050565b6000602082019050818103600083015261370b816131c5565b9050919050565b6000602082019050818103600083015261372b816131e8565b9050919050565b6000602082019050818103600083015261374b8161320b565b9050919050565b6000602082019050818103600083015261376b8161322e565b9050919050565b6000602082019050818103600083015261378b81613251565b9050919050565b600060208201905081810360008301526137ab81613274565b9050919050565b600060208201905081810360008301526137cb81613297565b9050919050565b600060208201905081810360008301526137eb816132ba565b9050919050565b6000602082019050818103600083015261380b816132dd565b9050919050565b6000602082019050818103600083015261382b81613300565b9050919050565b6000602082019050818103600083015261384b81613323565b9050919050565b6000602082019050818103600083015261386b81613346565b9050919050565b6000602082019050818103600083015261388b81613369565b9050919050565b600060208201905081810360008301526138ab8161338c565b9050919050565b600060208201905081810360008301526138cb816133af565b9050919050565b60006020820190506138e760008301846133f5565b92915050565b600060608201905061390260008301866133f5565b61390f6020830185612ea4565b61391c60408301846133f5565b949350505050565b600061392e61393f565b905061393a8282613c1c565b919050565b6000604051905090565b600067ffffffffffffffff82111561396457613963613dbb565b5b61396d82613e08565b9050602081019050919050565b600067ffffffffffffffff82111561399557613994613dbb565b5b61399e82613e08565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a0e82613b9e565b9150613a1983613b9e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a4e57613a4d613cff565b5b828201905092915050565b6000613a6482613b9e565b9150613a6f83613b9e565b925082613a7f57613a7e613d2e565b5b828204905092915050565b6000613a9582613b9e565b9150613aa083613b9e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ad957613ad8613cff565b5b828202905092915050565b6000613aef82613b9e565b9150613afa83613b9e565b925082821015613b0d57613b0c613cff565b5b828203905092915050565b6000613b2382613b7e565b9050919050565b6000613b3582613b7e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613bd5578082015181840152602081019050613bba565b83811115613be4576000848401525b50505050565b60006002820490506001821680613c0257607f821691505b60208210811415613c1657613c15613d5d565b5b50919050565b613c2582613e08565b810181811067ffffffffffffffff82111715613c4457613c43613dbb565b5b80604052505050565b6000613c5882613b9e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c8b57613c8a613cff565b5b600182019050919050565b6000613ca182613cb2565b9050919050565b6000819050919050565b6000613cbd82613e19565b9050919050565b6000819050919050565b6000613cd982613b9e565b9150613ce483613b9e565b925082613cf457613cf3613d2e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f546f6f206d616e7920746f6b656e7320666f72206f6e65207472616e7361637460008201527f696f6e2e00000000000000000000000000000000000000000000000000000000602082015250565b7f4d65726b6c654469737472696275746f723a2044726f7020616c72656164792060008201527f636c61696d65642e000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c6566742e000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f6660008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742062616c616e63652e0000000000000000000000600082015250565b7f4d65726b6c654469737472696275746f723a20436c61696d206c696d6974206560008201527f786365656465642e000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f536f6c64206f75742e0000000000000000000000000000000000000000000000600082015250565b7f496e73756666696369656e74207061796d656e742e0000000000000000000000600082015250565b7f4d65726b6c654469737472696275746f723a20436c61696d20636c6f7365642e600082015250565b7f4d65726b6c654469737472696275746f723a204e6f7420656e6f75676820746f60008201527f6b656e73206c6566742e00000000000000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61453181613b18565b811461453c57600080fd5b50565b61454881613b2a565b811461455357600080fd5b50565b61455f81613b3c565b811461456a57600080fd5b50565b61457681613b52565b811461458157600080fd5b50565b61458d81613b9e565b811461459857600080fd5b5056fea2646970667358221220fdf5ba92f687957fb48850771ee7cdb016d871e50557603ebc92f55efc9b103f64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000040b1adbfc49796616311aec51899c0190fc16315666e8de949db149b30e8ef3b230000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseURI (string):
Arg [1] : _merkleRoot (bytes32): 0xb1adbfc49796616311aec51899c0190fc16315666e8de949db149b30e8ef3b23

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : b1adbfc49796616311aec51899c0190fc16315666e8de949db149b30e8ef3b23
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.