ETH Price: $2,587.51 (-2.13%)

Token

Miya Mi (MM)
 

Overview

Max Total Supply

195 MM

Holders

124

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
khanate.eth
Balance
2 MM
0x61fbb6888aa94706a4152d06fd3ae48d202ad80d
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:
MiyaMi

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 4 of 5: Miya Mi.sol
// SPDX-License-Identifier: MIT
// Audited by Game Freak Inc.

pragma solidity ^0.8.0;

import {Ownable} from "./Ownable.sol";
import {ERC721A} from "./ERC721A.sol";

contract MiyaMi is ERC721A, Ownable {

    enum MintState {
        Closed,
        Open
    }

    MintState public mintState;

    uint256 public MAX_SUPPLY = 531;
    uint256 public PRICE = 0.03 ether;
    uint256 public WALLET_LIMIT = 3;

    string public baseURI = "ipfs://";
    string public notRevealedURI = "ipfs://bafkreicj5udlihsdbu22au7fon3zgiedvtcle6ufs7tchasw4xnqszgkvq";
    bool public revealed;

    constructor(
        address recipient,
        uint256 allocation
    ) ERC721A("Miya Mi", "MM") {
        if (allocation < MAX_SUPPLY && allocation != 0)
            _mint(recipient, allocation);
    }

    // Modifiers

    modifier onlyExternallyOwnedAccount() {
        require(tx.origin == msg.sender, "Not externally owned account");
        _;
    }

    // Mint functions

    function remainingForAddress(address who) public view returns (uint256) {
        if (mintState == MintState.Open)
            return WALLET_LIMIT + _getAux(who) - _numberMinted(who);
        else revert("Invalid sale state");
    }

    function setMintState(uint256 newState) external onlyOwner {
        if (newState == 0) mintState = MintState.Closed;
        else if (newState == 1) mintState = MintState.Open;
        else revert("Invalid sale state");
    }

    function batchMint(
        address[] calldata recipients,
        uint256[] calldata quantities
    ) external onlyOwner {
        require(recipients.length == quantities.length, "Arguments length mismatch");

        uint256 supply = this.totalSupply();
        for (uint256 i; i < recipients.length; i++) {
            supply += quantities[i];
            require(supply <= MAX_SUPPLY, "Mint exceeds max supply");
            _mint(recipients[i], quantities[i]);
        }
    }

    function mint(uint256 quantity) external payable onlyExternallyOwnedAccount {
        require(this.totalSupply() + quantity <= MAX_SUPPLY, "Mint exceeds max supply");
        require(mintState == MintState.Open, "Invalid sale state");
        require(msg.value >= PRICE * quantity, "Insufficient value");
        require(remainingForAddress(msg.sender) >= quantity, "Limit for user reached");

        _mint(msg.sender, quantity);
    }

    // Token

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        if(revealed == false) {
            return notRevealedURI;
        }

        string memory baseURIStr = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURIStr, _toString(tokenId), ".json")) : '';
    }

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

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

    function setMaxSupply(uint256 newSupply) external onlyOwner {
        MAX_SUPPLY = newSupply;
    }

    function setPrice(uint256 newPrice) external onlyOwner {
        PRICE = newPrice;
    }

    function setWalletLimit(uint256 newLimit) external onlyOwner {
        WALLET_LIMIT = newLimit;
    }

    function reveal() external view onlyOwner {
        require(!revealed, "already revealed");
        revealed == true;
    }

    // Withdraw

    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
        require(success);
    }
}

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

pragma solidity ^0.8.0;

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

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

File 2 of 5: ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * @dev Returns the starting token ID. 
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count. 
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to `_startTokenId()`
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId), ".json")) : '';
    }

    /**
     * @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 Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

File 3 of 5: IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            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);

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @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 5 of 5: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"allocation","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WALLET_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintState","outputs":[{"internalType":"enum MiyaMi.MintState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"remainingForAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newState","type":"uint256"}],"name":"setMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setWalletLimit","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610213600955666a94d74f430000600a556003600b5560c06040526007608081905266697066733a2f2f60c81b60a09081526200004091600c91906200027b565b50604051806080016040528060428152602001620021f76042913980516200007191600d916020909101906200027b565b503480156200007f57600080fd5b506040516200223938038062002239833981016040819052620000a29162000321565b604051806040016040528060078152602001664d697961204d6960c81b815250604051806040016040528060028152602001614d4d60f01b8152508160029080519060200190620000f59291906200027b565b5080516200010b9060039060208401906200027b565b505060008055506200011d3362000148565b600954811080156200012e57508015155b1562000140576200014082826200019a565b50506200039a565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000546001600160a01b038316620001c457604051622e076360e81b815260040160405180910390fd5b81620001e35760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106200022e5750600055505050565b82805462000289906200035d565b90600052602060002090601f016020900481019282620002ad5760008555620002f8565b82601f10620002c857805160ff1916838001178555620002f8565b82800160010185558215620002f8579182015b82811115620002f8578251825591602001919060010190620002db565b50620003069291506200030a565b5090565b5b808211156200030657600081556001016200030b565b600080604083850312156200033557600080fd5b82516001600160a01b03811681146200034d57600080fd5b6020939093015192949293505050565b600181811c908216806200037257607f821691505b602082108114156200039457634e487b7160e01b600052602260045260246000fd5b50919050565b611e4d80620003aa6000396000f3fe6080604052600436106101f95760003560e01c80636f8b44b01161010d578063a0712d68116100a0578063c051e38a1161006f578063c051e38a1461055d578063c87b56dd1461058b578063e985e9c5146105ab578063f1d5f517146105f4578063f2fde38b1461061457600080fd5b8063a0712d68146104f5578063a22cb46514610508578063a475b5dd14610528578063b88d4fde1461053d57600080fd5b80638d859f3e116100dc5780638d859f3e1461048c5780638da5cb5b146104a257806391b7f5ed146104c057806395d89b41146104e057600080fd5b80636f8b44b01461042257806370a0823114610442578063715018a614610462578063722503801461047757600080fd5b806332cb6b0c11610190578063518302271161015f578063518302271461039357806355f804b3146103ad5780636352211e146103cd57806368573107146103ed5780636c0360eb1461040d57600080fd5b806332cb6b0c14610332578063351ed951146103485780633ccfd60b1461035e57806342842e0e1461037357600080fd5b80630bb862d1116101cc5780630bb862d1146102af57806318160ddd146102cf57806323b872dd146102f257806329471d7d1461031257600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611b0c565b610634565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610686565b60405161022a9190611c91565b34801561026157600080fd5b50610275610270366004611b8f565b610718565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611a76565b61075c565b005b3480156102bb57600080fd5b506102ad6102ca366004611b8f565b61082f565b3480156102db57600080fd5b50600154600054035b60405190815260200161022a565b3480156102fe57600080fd5b506102ad61030d366004611982565b6108e8565b34801561031e57600080fd5b506102e461032d366004611934565b6108f8565b34801561033e57600080fd5b506102e460095481565b34801561035457600080fd5b506102e4600b5481565b34801561036a57600080fd5b506102ad610969565b34801561037f57600080fd5b506102ad61038e366004611982565b6109e8565b34801561039f57600080fd5b50600e5461021e9060ff1681565b3480156103b957600080fd5b506102ad6103c8366004611b46565b610a03565b3480156103d957600080fd5b506102756103e8366004611b8f565b610a44565b3480156103f957600080fd5b506102ad610408366004611aa0565b610a4f565b34801561041957600080fd5b50610248610c1c565b34801561042e57600080fd5b506102ad61043d366004611b8f565b610caa565b34801561044e57600080fd5b506102e461045d366004611934565b610cd9565b34801561046e57600080fd5b506102ad610d28565b34801561048357600080fd5b50610248610d5e565b34801561049857600080fd5b506102e4600a5481565b3480156104ae57600080fd5b506008546001600160a01b0316610275565b3480156104cc57600080fd5b506102ad6104db366004611b8f565b610d6b565b3480156104ec57600080fd5b50610248610d9a565b6102ad610503366004611b8f565b610da9565b34801561051457600080fd5b506102ad610523366004611a3a565b610fce565b34801561053457600080fd5b506102ad611064565b34801561054957600080fd5b506102ad6105583660046119be565b6110d4565b34801561056957600080fd5b5060085461057e90600160a01b900460ff1681565b60405161022a9190611c69565b34801561059757600080fd5b506102486105a6366004611b8f565b61111e565b3480156105b757600080fd5b5061021e6105c636600461194f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561060057600080fd5b506102ad61060f366004611b8f565b61124a565b34801561062057600080fd5b506102ad61062f366004611934565b611279565b60006301ffc9a760e01b6001600160e01b03198316148061066557506380ac58cd60e01b6001600160e01b03198316145b806106805750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461069590611d53565b80601f01602080910402602001604051908101604052809291908181526020018280546106c190611d53565b801561070e5780601f106106e35761010080835404028352916020019161070e565b820191906000526020600020905b8154815290600101906020018083116106f157829003601f168201915b5050505050905090565b600061072382611311565b610740576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061076782611338565b9050806001600160a01b0316836001600160a01b0316141561079c5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107d3576107b681336105c6565b6107d3576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b031633146108625760405162461bcd60e51b815260040161085990611ca4565b60405180910390fd5b8061088557600880546000919060ff60a01b1916600160a01b835b021790555050565b80600114156108a857600880546001919060ff60a01b1916600160a01b8361087d565b60405162461bcd60e51b8152602060048201526012602482015271496e76616c69642073616c6520737461746560701b6044820152606401610859565b50565b6108f3838383611399565b505050565b60006001600854600160a01b900460ff16600181111561091a5761091a611dbf565b14156108a8576001600160a01b0382166000908152600560205260409081902054600b549181901c67ffffffffffffffff169161095a9160c01c90611cd9565b6106809190611d10565b919050565b6008546001600160a01b031633146109935760405162461bcd60e51b815260040161085990611ca4565b604051600090339047908381818185875af1925050503d80600081146109d5576040519150601f19603f3d011682016040523d82523d6000602084013e6109da565b606091505b50509050806108e557600080fd5b6108f3838383604051806020016040528060008152506110d4565b6008546001600160a01b03163314610a2d5760405162461bcd60e51b815260040161085990611ca4565b8051610a4090600c9060208401906117c2565b5050565b600061068082611338565b6008546001600160a01b03163314610a795760405162461bcd60e51b815260040161085990611ca4565b828114610ac85760405162461bcd60e51b815260206004820152601960248201527f417267756d656e7473206c656e677468206d69736d61746368000000000000006044820152606401610859565b6000306001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610b0357600080fd5b505afa158015610b17573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b3b9190611ba8565b905060005b84811015610c1457838382818110610b5a57610b5a611dd5565b9050602002013582610b6c9190611cd9565b9150600954821115610bba5760405162461bcd60e51b81526020600482015260176024820152764d696e742065786365656473206d617820737570706c7960481b6044820152606401610859565b610c02868683818110610bcf57610bcf611dd5565b9050602002016020810190610be49190611934565b858584818110610bf657610bf6611dd5565b9050602002013561153c565b80610c0c81611d8e565b915050610b40565b505050505050565b600c8054610c2990611d53565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5590611d53565b8015610ca25780601f10610c7757610100808354040283529160200191610ca2565b820191906000526020600020905b815481529060010190602001808311610c8557829003601f168201915b505050505081565b6008546001600160a01b03163314610cd45760405162461bcd60e51b815260040161085990611ca4565b600955565b60006001600160a01b038216610d02576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610d525760405162461bcd60e51b815260040161085990611ca4565b610d5c600061161a565b565b600d8054610c2990611d53565b6008546001600160a01b03163314610d955760405162461bcd60e51b815260040161085990611ca4565b600a55565b60606003805461069590611d53565b323314610df85760405162461bcd60e51b815260206004820152601c60248201527f4e6f742065787465726e616c6c79206f776e6564206163636f756e74000000006044820152606401610859565b60095481306001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610e3557600080fd5b505afa158015610e49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6d9190611ba8565b610e779190611cd9565b1115610ebf5760405162461bcd60e51b81526020600482015260176024820152764d696e742065786365656473206d617820737570706c7960481b6044820152606401610859565b6001600854600160a01b900460ff166001811115610edf57610edf611dbf565b14610f215760405162461bcd60e51b8152602060048201526012602482015271496e76616c69642073616c6520737461746560701b6044820152606401610859565b80600a54610f2f9190611cf1565b341015610f735760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742076616c756560701b6044820152606401610859565b80610f7d336108f8565b1015610fc45760405162461bcd60e51b8152602060048201526016602482015275131a5b5a5d08199bdc881d5cd95c881c995858da195960521b6044820152606401610859565b6108e5338261153c565b6001600160a01b038216331415610ff85760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461108e5760405162461bcd60e51b815260040161085990611ca4565b600e5460ff1615610d5c5760405162461bcd60e51b815260206004820152601060248201526f185b1c9958591e481c995d99585b195960821b6044820152606401610859565b6110df848484611399565b6001600160a01b0383163b15611118576110fb8484848461166c565b611118576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061112982611311565b61114657604051630a14c4b560e41b815260040160405180910390fd5b600e5460ff166111e257600d805461115d90611d53565b80601f016020809104026020016040519081016040528092919081815260200182805461118990611d53565b80156111d65780601f106111ab576101008083540402835291602001916111d6565b820191906000526020600020905b8154815290600101906020018083116111b957829003601f168201915b50505050509050919050565b60006111ec611764565b9050600c80546111fb90611d53565b151590506112185760405180602001604052806000815250611243565b8061122284611773565b604051602001611233929190611bed565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146112745760405162461bcd60e51b815260040161085990611ca4565b600b55565b6008546001600160a01b031633146112a35760405162461bcd60e51b815260040161085990611ca4565b6001600160a01b0381166113085760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610859565b6108e58161161a565b6000805482108015610680575050600090815260046020526040902054600160e01b161590565b60008160005481101561138057600081815260046020526040902054600160e01b811661137e575b80611243575060001901600081815260046020526040902054611360565b505b604051636f96cda160e11b815260040160405180910390fd5b60006113a482611338565b9050836001600160a01b0316816001600160a01b0316146113d75760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806113f557506113f585336105c6565b8061141057503361140584610718565b6001600160a01b0316145b90508061143057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661145757604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b8617811790915582166114f457600183016000818152600460205260409020546114f25760005481146114f25760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6000546001600160a01b03831661156557604051622e076360e81b815260040160405180910390fd5b816115835760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106115ce5750600055505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906116a1903390899088908890600401611c2c565b602060405180830381600087803b1580156116bb57600080fd5b505af19250505080156116eb575060408051601f3d908101601f191682019092526116e891810190611b29565b60015b611746573d808015611719576040519150601f19603f3d011682016040523d82523d6000602084013e61171e565b606091505b50805161173e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c805461069590611d53565b604080516080810191829052607f0190826030600a8206018353600a90045b80156117b057600183039250600a81066030018353600a9004611792565b50819003601f19909101908152919050565b8280546117ce90611d53565b90600052602060002090601f0160209004810192826117f05760008555611836565b82601f1061180957805160ff1916838001178555611836565b82800160010185558215611836579182015b8281111561183657825182559160200191906001019061181b565b50611842929150611846565b5090565b5b808211156118425760008155600101611847565b600067ffffffffffffffff8084111561187657611876611deb565b604051601f8501601f19908116603f0116810190828211818310171561189e5761189e611deb565b816040528093508581528686860111156118b757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461096457600080fd5b60008083601f8401126118fa57600080fd5b50813567ffffffffffffffff81111561191257600080fd5b6020830191508360208260051b850101111561192d57600080fd5b9250929050565b60006020828403121561194657600080fd5b611243826118d1565b6000806040838503121561196257600080fd5b61196b836118d1565b9150611979602084016118d1565b90509250929050565b60008060006060848603121561199757600080fd5b6119a0846118d1565b92506119ae602085016118d1565b9150604084013590509250925092565b600080600080608085870312156119d457600080fd5b6119dd856118d1565b93506119eb602086016118d1565b925060408501359150606085013567ffffffffffffffff811115611a0e57600080fd5b8501601f81018713611a1f57600080fd5b611a2e8782356020840161185b565b91505092959194509250565b60008060408385031215611a4d57600080fd5b611a56836118d1565b915060208301358015158114611a6b57600080fd5b809150509250929050565b60008060408385031215611a8957600080fd5b611a92836118d1565b946020939093013593505050565b60008060008060408587031215611ab657600080fd5b843567ffffffffffffffff80821115611ace57600080fd5b611ada888389016118e8565b90965094506020870135915080821115611af357600080fd5b50611b00878288016118e8565b95989497509550505050565b600060208284031215611b1e57600080fd5b813561124381611e01565b600060208284031215611b3b57600080fd5b815161124381611e01565b600060208284031215611b5857600080fd5b813567ffffffffffffffff811115611b6f57600080fd5b8201601f81018413611b8057600080fd5b61175c8482356020840161185b565b600060208284031215611ba157600080fd5b5035919050565b600060208284031215611bba57600080fd5b5051919050565b60008151808452611bd9816020860160208601611d27565b601f01601f19169290920160200192915050565b60008351611bff818460208801611d27565b835190830190611c13818360208801611d27565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c5f90830184611bc1565b9695505050505050565b6020810160028310611c8b57634e487b7160e01b600052602160045260246000fd5b91905290565b6020815260006112436020830184611bc1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611cec57611cec611da9565b500190565b6000816000190483118215151615611d0b57611d0b611da9565b500290565b600082821015611d2257611d22611da9565b500390565b60005b83811015611d42578181015183820152602001611d2a565b838111156111185750506000910152565b600181811c90821680611d6757607f821691505b60208210811415611d8857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611da257611da2611da9565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108e557600080fdfea26469706673582212208455cb4da9488e9a6348dd4e71a0a09c33e8bd8ae66f908c1ce20a4d6200bc9f64736f6c63430008070033697066733a2f2f6261666b726569636a3575646c6968736462753232617537666f6e337a676965647674636c65367566733774636861737734786e71737a676b767100000000000000000000000085aa86c924fa871b41f7f0392de59076d91092120000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80636f8b44b01161010d578063a0712d68116100a0578063c051e38a1161006f578063c051e38a1461055d578063c87b56dd1461058b578063e985e9c5146105ab578063f1d5f517146105f4578063f2fde38b1461061457600080fd5b8063a0712d68146104f5578063a22cb46514610508578063a475b5dd14610528578063b88d4fde1461053d57600080fd5b80638d859f3e116100dc5780638d859f3e1461048c5780638da5cb5b146104a257806391b7f5ed146104c057806395d89b41146104e057600080fd5b80636f8b44b01461042257806370a0823114610442578063715018a614610462578063722503801461047757600080fd5b806332cb6b0c11610190578063518302271161015f578063518302271461039357806355f804b3146103ad5780636352211e146103cd57806368573107146103ed5780636c0360eb1461040d57600080fd5b806332cb6b0c14610332578063351ed951146103485780633ccfd60b1461035e57806342842e0e1461037357600080fd5b80630bb862d1116101cc5780630bb862d1146102af57806318160ddd146102cf57806323b872dd146102f257806329471d7d1461031257600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611b0c565b610634565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610686565b60405161022a9190611c91565b34801561026157600080fd5b50610275610270366004611b8f565b610718565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611a76565b61075c565b005b3480156102bb57600080fd5b506102ad6102ca366004611b8f565b61082f565b3480156102db57600080fd5b50600154600054035b60405190815260200161022a565b3480156102fe57600080fd5b506102ad61030d366004611982565b6108e8565b34801561031e57600080fd5b506102e461032d366004611934565b6108f8565b34801561033e57600080fd5b506102e460095481565b34801561035457600080fd5b506102e4600b5481565b34801561036a57600080fd5b506102ad610969565b34801561037f57600080fd5b506102ad61038e366004611982565b6109e8565b34801561039f57600080fd5b50600e5461021e9060ff1681565b3480156103b957600080fd5b506102ad6103c8366004611b46565b610a03565b3480156103d957600080fd5b506102756103e8366004611b8f565b610a44565b3480156103f957600080fd5b506102ad610408366004611aa0565b610a4f565b34801561041957600080fd5b50610248610c1c565b34801561042e57600080fd5b506102ad61043d366004611b8f565b610caa565b34801561044e57600080fd5b506102e461045d366004611934565b610cd9565b34801561046e57600080fd5b506102ad610d28565b34801561048357600080fd5b50610248610d5e565b34801561049857600080fd5b506102e4600a5481565b3480156104ae57600080fd5b506008546001600160a01b0316610275565b3480156104cc57600080fd5b506102ad6104db366004611b8f565b610d6b565b3480156104ec57600080fd5b50610248610d9a565b6102ad610503366004611b8f565b610da9565b34801561051457600080fd5b506102ad610523366004611a3a565b610fce565b34801561053457600080fd5b506102ad611064565b34801561054957600080fd5b506102ad6105583660046119be565b6110d4565b34801561056957600080fd5b5060085461057e90600160a01b900460ff1681565b60405161022a9190611c69565b34801561059757600080fd5b506102486105a6366004611b8f565b61111e565b3480156105b757600080fd5b5061021e6105c636600461194f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561060057600080fd5b506102ad61060f366004611b8f565b61124a565b34801561062057600080fd5b506102ad61062f366004611934565b611279565b60006301ffc9a760e01b6001600160e01b03198316148061066557506380ac58cd60e01b6001600160e01b03198316145b806106805750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461069590611d53565b80601f01602080910402602001604051908101604052809291908181526020018280546106c190611d53565b801561070e5780601f106106e35761010080835404028352916020019161070e565b820191906000526020600020905b8154815290600101906020018083116106f157829003601f168201915b5050505050905090565b600061072382611311565b610740576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061076782611338565b9050806001600160a01b0316836001600160a01b0316141561079c5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107d3576107b681336105c6565b6107d3576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b031633146108625760405162461bcd60e51b815260040161085990611ca4565b60405180910390fd5b8061088557600880546000919060ff60a01b1916600160a01b835b021790555050565b80600114156108a857600880546001919060ff60a01b1916600160a01b8361087d565b60405162461bcd60e51b8152602060048201526012602482015271496e76616c69642073616c6520737461746560701b6044820152606401610859565b50565b6108f3838383611399565b505050565b60006001600854600160a01b900460ff16600181111561091a5761091a611dbf565b14156108a8576001600160a01b0382166000908152600560205260409081902054600b549181901c67ffffffffffffffff169161095a9160c01c90611cd9565b6106809190611d10565b919050565b6008546001600160a01b031633146109935760405162461bcd60e51b815260040161085990611ca4565b604051600090339047908381818185875af1925050503d80600081146109d5576040519150601f19603f3d011682016040523d82523d6000602084013e6109da565b606091505b50509050806108e557600080fd5b6108f3838383604051806020016040528060008152506110d4565b6008546001600160a01b03163314610a2d5760405162461bcd60e51b815260040161085990611ca4565b8051610a4090600c9060208401906117c2565b5050565b600061068082611338565b6008546001600160a01b03163314610a795760405162461bcd60e51b815260040161085990611ca4565b828114610ac85760405162461bcd60e51b815260206004820152601960248201527f417267756d656e7473206c656e677468206d69736d61746368000000000000006044820152606401610859565b6000306001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610b0357600080fd5b505afa158015610b17573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b3b9190611ba8565b905060005b84811015610c1457838382818110610b5a57610b5a611dd5565b9050602002013582610b6c9190611cd9565b9150600954821115610bba5760405162461bcd60e51b81526020600482015260176024820152764d696e742065786365656473206d617820737570706c7960481b6044820152606401610859565b610c02868683818110610bcf57610bcf611dd5565b9050602002016020810190610be49190611934565b858584818110610bf657610bf6611dd5565b9050602002013561153c565b80610c0c81611d8e565b915050610b40565b505050505050565b600c8054610c2990611d53565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5590611d53565b8015610ca25780601f10610c7757610100808354040283529160200191610ca2565b820191906000526020600020905b815481529060010190602001808311610c8557829003601f168201915b505050505081565b6008546001600160a01b03163314610cd45760405162461bcd60e51b815260040161085990611ca4565b600955565b60006001600160a01b038216610d02576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610d525760405162461bcd60e51b815260040161085990611ca4565b610d5c600061161a565b565b600d8054610c2990611d53565b6008546001600160a01b03163314610d955760405162461bcd60e51b815260040161085990611ca4565b600a55565b60606003805461069590611d53565b323314610df85760405162461bcd60e51b815260206004820152601c60248201527f4e6f742065787465726e616c6c79206f776e6564206163636f756e74000000006044820152606401610859565b60095481306001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610e3557600080fd5b505afa158015610e49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6d9190611ba8565b610e779190611cd9565b1115610ebf5760405162461bcd60e51b81526020600482015260176024820152764d696e742065786365656473206d617820737570706c7960481b6044820152606401610859565b6001600854600160a01b900460ff166001811115610edf57610edf611dbf565b14610f215760405162461bcd60e51b8152602060048201526012602482015271496e76616c69642073616c6520737461746560701b6044820152606401610859565b80600a54610f2f9190611cf1565b341015610f735760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742076616c756560701b6044820152606401610859565b80610f7d336108f8565b1015610fc45760405162461bcd60e51b8152602060048201526016602482015275131a5b5a5d08199bdc881d5cd95c881c995858da195960521b6044820152606401610859565b6108e5338261153c565b6001600160a01b038216331415610ff85760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461108e5760405162461bcd60e51b815260040161085990611ca4565b600e5460ff1615610d5c5760405162461bcd60e51b815260206004820152601060248201526f185b1c9958591e481c995d99585b195960821b6044820152606401610859565b6110df848484611399565b6001600160a01b0383163b15611118576110fb8484848461166c565b611118576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061112982611311565b61114657604051630a14c4b560e41b815260040160405180910390fd5b600e5460ff166111e257600d805461115d90611d53565b80601f016020809104026020016040519081016040528092919081815260200182805461118990611d53565b80156111d65780601f106111ab576101008083540402835291602001916111d6565b820191906000526020600020905b8154815290600101906020018083116111b957829003601f168201915b50505050509050919050565b60006111ec611764565b9050600c80546111fb90611d53565b151590506112185760405180602001604052806000815250611243565b8061122284611773565b604051602001611233929190611bed565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146112745760405162461bcd60e51b815260040161085990611ca4565b600b55565b6008546001600160a01b031633146112a35760405162461bcd60e51b815260040161085990611ca4565b6001600160a01b0381166113085760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610859565b6108e58161161a565b6000805482108015610680575050600090815260046020526040902054600160e01b161590565b60008160005481101561138057600081815260046020526040902054600160e01b811661137e575b80611243575060001901600081815260046020526040902054611360565b505b604051636f96cda160e11b815260040160405180910390fd5b60006113a482611338565b9050836001600160a01b0316816001600160a01b0316146113d75760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806113f557506113f585336105c6565b8061141057503361140584610718565b6001600160a01b0316145b90508061143057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661145757604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b8617811790915582166114f457600183016000818152600460205260409020546114f25760005481146114f25760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6000546001600160a01b03831661156557604051622e076360e81b815260040160405180910390fd5b816115835760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106115ce5750600055505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906116a1903390899088908890600401611c2c565b602060405180830381600087803b1580156116bb57600080fd5b505af19250505080156116eb575060408051601f3d908101601f191682019092526116e891810190611b29565b60015b611746573d808015611719576040519150601f19603f3d011682016040523d82523d6000602084013e61171e565b606091505b50805161173e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c805461069590611d53565b604080516080810191829052607f0190826030600a8206018353600a90045b80156117b057600183039250600a81066030018353600a9004611792565b50819003601f19909101908152919050565b8280546117ce90611d53565b90600052602060002090601f0160209004810192826117f05760008555611836565b82601f1061180957805160ff1916838001178555611836565b82800160010185558215611836579182015b8281111561183657825182559160200191906001019061181b565b50611842929150611846565b5090565b5b808211156118425760008155600101611847565b600067ffffffffffffffff8084111561187657611876611deb565b604051601f8501601f19908116603f0116810190828211818310171561189e5761189e611deb565b816040528093508581528686860111156118b757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461096457600080fd5b60008083601f8401126118fa57600080fd5b50813567ffffffffffffffff81111561191257600080fd5b6020830191508360208260051b850101111561192d57600080fd5b9250929050565b60006020828403121561194657600080fd5b611243826118d1565b6000806040838503121561196257600080fd5b61196b836118d1565b9150611979602084016118d1565b90509250929050565b60008060006060848603121561199757600080fd5b6119a0846118d1565b92506119ae602085016118d1565b9150604084013590509250925092565b600080600080608085870312156119d457600080fd5b6119dd856118d1565b93506119eb602086016118d1565b925060408501359150606085013567ffffffffffffffff811115611a0e57600080fd5b8501601f81018713611a1f57600080fd5b611a2e8782356020840161185b565b91505092959194509250565b60008060408385031215611a4d57600080fd5b611a56836118d1565b915060208301358015158114611a6b57600080fd5b809150509250929050565b60008060408385031215611a8957600080fd5b611a92836118d1565b946020939093013593505050565b60008060008060408587031215611ab657600080fd5b843567ffffffffffffffff80821115611ace57600080fd5b611ada888389016118e8565b90965094506020870135915080821115611af357600080fd5b50611b00878288016118e8565b95989497509550505050565b600060208284031215611b1e57600080fd5b813561124381611e01565b600060208284031215611b3b57600080fd5b815161124381611e01565b600060208284031215611b5857600080fd5b813567ffffffffffffffff811115611b6f57600080fd5b8201601f81018413611b8057600080fd5b61175c8482356020840161185b565b600060208284031215611ba157600080fd5b5035919050565b600060208284031215611bba57600080fd5b5051919050565b60008151808452611bd9816020860160208601611d27565b601f01601f19169290920160200192915050565b60008351611bff818460208801611d27565b835190830190611c13818360208801611d27565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c5f90830184611bc1565b9695505050505050565b6020810160028310611c8b57634e487b7160e01b600052602160045260246000fd5b91905290565b6020815260006112436020830184611bc1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611cec57611cec611da9565b500190565b6000816000190483118215151615611d0b57611d0b611da9565b500290565b600082821015611d2257611d22611da9565b500390565b60005b83811015611d42578181015183820152602001611d2a565b838111156111185750506000910152565b600181811c90821680611d6757607f821691505b60208210811415611d8857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611da257611da2611da9565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108e557600080fdfea26469706673582212208455cb4da9488e9a6348dd4e71a0a09c33e8bd8ae66f908c1ce20a4d6200bc9f64736f6c63430008070033

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

00000000000000000000000085aa86c924fa871b41f7f0392de59076d91092120000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : recipient (address): 0x85aa86C924fa871b41f7f0392de59076d9109212
Arg [1] : allocation (uint256): 0

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000085aa86c924fa871b41f7f0392de59076d9109212
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

167:3448:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4880:607:1;;;;;;;;;;-1:-1:-1;4880:607:1;;;;;:::i;:::-;;:::i;:::-;;;7362:14:5;;7355:22;7337:41;;7325:2;7310:18;4880:607:1;;;;;;;;9768:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11778:200::-;;;;;;;;;;-1:-1:-1;11778:200:1;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6660:32:5;;;6642:51;;6630:2;6615:18;11778:200:1;6496:203:5;11254:463:1;;;;;;;;;;-1:-1:-1;11254:463:1;;;;;:::i;:::-;;:::i;:::-;;1209:226:3;;;;;;;;;;-1:-1:-1;1209:226:3;;;;;:::i;:::-;;:::i;3963:309:1:-;;;;;;;;;;-1:-1:-1;4225:12:1;;4016:7;4209:13;:28;3963:309;;;11327:25:5;;;11315:2;11300:18;3963:309:1;11181:177:5;12638:164:1;;;;;;;;;;-1:-1:-1;12638:164:1;;;;;:::i;:::-;;:::i;971:232:3:-;;;;;;;;;;-1:-1:-1;971:232:3;;;;;:::i;:::-;;:::i;300:31::-;;;;;;;;;;;;;;;;376;;;;;;;;;;;;;;;;3454:159;;;;;;;;;;;;;:::i;12868:179:1:-;;;;;;;;;;-1:-1:-1;12868:179:1;;;;;:::i;:::-;;:::i;558:20:3:-;;;;;;;;;;-1:-1:-1;558:20:3;;;;;;;;2908:88;;;;;;;;;;-1:-1:-1;2908:88:3;;;;;:::i;:::-;;:::i;9564:142:1:-;;;;;;;;;;-1:-1:-1;9564:142:1;;;;;:::i;:::-;;:::i;1441:481:3:-;;;;;;;;;;-1:-1:-1;1441:481:3;;;;;:::i;:::-;;:::i;414:33::-;;;;;;;;;;;;;:::i;3002:99::-;;;;;;;;;;-1:-1:-1;3002:99:3;;;;;:::i;:::-;;:::i;5546:221:1:-;;;;;;;;;;-1:-1:-1;5546:221:1;;;;;:::i;:::-;;:::i;1661:101:4:-;;;;;;;;;;;;;:::i;453:99:3:-;;;;;;;;;;;;;:::i;337:33::-;;;;;;;;;;;;;;;;1029:85:4;;;;;;;;;;-1:-1:-1;1101:6:4;;-1:-1:-1;;;;;1101:6:4;1029:85;;3107:88:3;;;;;;;;;;-1:-1:-1;3107:88:3;;;;;:::i;:::-;;:::i;9930:102:1:-;;;;;;;;;;;;;:::i;1928:436:3:-;;;;;;:::i;:::-;;:::i;12045:303:1:-;;;;;;;;;;-1:-1:-1;12045:303:1;;;;;:::i;:::-;;:::i;3308:123:3:-;;;;;;;;;;;;;:::i;13113:385:1:-;;;;;;;;;;-1:-1:-1;13113:385:1;;;;;:::i;:::-;;:::i;267:26:3:-;;;;;;;;;;-1:-1:-1;267:26:3;;;;-1:-1:-1;;;267:26:3;;;;;;;;;;;;;:::i;2384:406::-;;;;;;;;;;-1:-1:-1;2384:406:3;;;;;:::i;:::-;;:::i;12414:162:1:-;;;;;;;;;;-1:-1:-1;12414:162:1;;;;;:::i;:::-;-1:-1:-1;;;;;12534:25:1;;;12511:4;12534:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;12414:162;3201:101:3;;;;;;;;;;-1:-1:-1;3201:101:3;;;;;:::i;:::-;;:::i;1911:198:4:-;;;;;;;;;;-1:-1:-1;1911:198:4;;;;;:::i;:::-;;:::i;4880:607:1:-;4965:4;-1:-1:-1;;;;;;;;;5260:25:1;;;;:101;;-1:-1:-1;;;;;;;;;;5336:25:1;;;5260:101;:177;;;-1:-1:-1;;;;;;;;;;5412:25:1;;;5260:177;5241:196;4880:607;-1:-1:-1;;4880:607:1:o;9768:98::-;9822:13;9854:5;9847:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9768:98;:::o;11778:200::-;11846:7;11870:16;11878:7;11870;:16::i;:::-;11865:64;;11895:34;;-1:-1:-1;;;11895:34:1;;;;;;;;;;;11865:64;-1:-1:-1;11947:24:1;;;;:15;:24;;;;;;-1:-1:-1;;;;;11947:24:1;;11778:200::o;11254:463::-;11326:13;11358:27;11377:7;11358:18;:27::i;:::-;11326:61;;11407:5;-1:-1:-1;;;;;11401:11:1;:2;-1:-1:-1;;;;;11401:11:1;;11397:48;;;11421:24;;-1:-1:-1;;;11421:24:1;;;;;;;;;;;11397:48;27455:10;-1:-1:-1;;;;;11460:28:1;;;11456:172;;11507:44;11524:5;27455:10;12414:162;:::i;11507:44::-;11502:126;;11578:35;;-1:-1:-1;;;11578:35:1;;;;;;;;;;;11502:126;11638:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;11638:29:1;-1:-1:-1;;;;;11638:29:1;;;;;;;;;11682:28;;11638:24;;11682:28;;;;;;;11316:401;11254:463;;:::o;1209:226:3:-;1101:6:4;;-1:-1:-1;;;;;1101:6:4;27455:10:1;1241:23:4;1233:68;;;;-1:-1:-1;;;1233:68:4;;;;;;;:::i;:::-;;;;;;;;;1282:13:3;1278:150:::1;;1297:9;:28:::0;;1309:16:::1;::::0;1297:9;-1:-1:-1;;;;1297:28:3::1;-1:-1:-1::0;;;1309:16:3;1297:28:::1;;;;;;1209:226:::0;:::o;1278:150::-:1;1344:8;1356:1;1344:13;1340:88;;;1359:9;:26:::0;;1371:14:::1;::::0;1359:9;-1:-1:-1;;;;1359:26:3::1;-1:-1:-1::0;;;1371:14:3;1359:26:::1;::::0;1340:88:::1;1400:28;::::0;-1:-1:-1;;;1400:28:3;;9974:2:5;1400:28:3::1;::::0;::::1;9956:21:5::0;10013:2;9993:18;;;9986:30;-1:-1:-1;;;10032:18:5;;;10025:48;10090:18;;1400:28:3::1;9772:342:5::0;1340:88:3::1;1209:226:::0;:::o;12638:164:1:-;12767:28;12777:4;12783:2;12787:7;12767:9;:28::i;:::-;12638:164;;;:::o;971:232:3:-;1034:7;1070:14;1057:9;;-1:-1:-1;;;1057:9:3;;;;:27;;;;;;;;:::i;:::-;;1053:143;;;-1:-1:-1;;;;;5932:25:1;;5905:7;5932:25;;;:18;:25;;1151:2;5932:25;;;;;1105:12:3;;5932:49:1;;;;1017:13;5931:80;;1105:27:3;;1379:3:1;6485:39;;1105:27:3;:::i;:::-;:48;;;;:::i;1053:143::-;971:232;;;:::o;3454:159::-;1101:6:4;;-1:-1:-1;;;;;1101:6:4;27455:10:1;1241:23:4;1233:68;;;;-1:-1:-1;;;1233:68:4;;;;;;;:::i;:::-;3522:58:3::1;::::0;3504:12:::1;::::0;3530:10:::1;::::0;3554:21:::1;::::0;3504:12;3522:58;3504:12;3522:58;3554:21;3530:10;3522:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3503:77;;;3598:7;3590:16;;;::::0;::::1;12868:179:1::0;13001:39;13018:4;13024:2;13028:7;13001:39;;;;;;;;;;;;:16;:39::i;2908:88:3:-;1101:6:4;;-1:-1:-1;;;;;1101:6:4;27455:10:1;1241:23:4;1233:68;;;;-1:-1:-1;;;1233:68:4;;;;;;;:::i;:::-;2976:13:3;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;;2908:88:::0;:::o;9564:142:1:-;9628:7;9670:27;9689:7;9670:18;:27::i;1441:481:3:-;1101:6:4;;-1:-1:-1;;;;;1101:6:4;27455:10:1;1241:23:4;1233:68;;;;-1:-1:-1;;;1233:68:4;;;;;;;:::i;:::-;1581:38:3;;::::1;1573:76;;;::::0;-1:-1:-1;;;1573:76:3;;11029:2:5;1573:76:3::1;::::0;::::1;11011:21:5::0;11068:2;11048:18;;;11041:30;11107:27;11087:18;;;11080:55;11152:18;;1573:76:3::1;10827:349:5::0;1573:76:3::1;1660:14;1677:4;-1:-1:-1::0;;;;;1677:16:3::1;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1660:35;;1710:9;1705:211;1721:21:::0;;::::1;1705:211;;;1773:10;;1784:1;1773:13;;;;;;;:::i;:::-;;;;;;;1763:23;;;;;:::i;:::-;;;1818:10;;1808:6;:20;;1800:56;;;::::0;-1:-1:-1;;;1800:56:3;;8162:2:5;1800:56:3::1;::::0;::::1;8144:21:5::0;8201:2;8181:18;;;8174:30;-1:-1:-1;;;8220:18:5;;;8213:53;8283:18;;1800:56:3::1;7960:347:5::0;1800:56:3::1;1870:35;1876:10;;1887:1;1876:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;1891:10;;1902:1;1891:13;;;;;;;:::i;:::-;;;;;;;1870:5;:35::i;:::-;1744:3:::0;::::1;::::0;::::1;:::i;:::-;;;;1705:211;;;;1563:359;1441:481:::0;;;;:::o;414:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3002:99::-;1101:6:4;;-1:-1:-1;;;;;1101:6:4;27455:10:1;1241:23:4;1233:68;;;;-1:-1:-1;;;1233:68:4;;;;;;;:::i;:::-;3072:10:3::1;:22:::0;3002:99::o;5546:221:1:-;5610:7;-1:-1:-1;;;;;5633:19:1;;5629:60;;5661:28;;-1:-1:-1;;;5661:28:1;;;;;;;;;;;5629:60;-1:-1:-1;;;;;;5706:25:1;;;;;:18;:25;;;;;;1017:13;5706:54;;5546:221::o;1661:101:4:-;1101:6;;-1:-1:-1;;;;;1101:6:4;27455:10:1;1241:23:4;1233:68;;;;-1:-1:-1;;;1233:68:4;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;453:99:3:-;;;;;;;:::i;3107:88::-;1101:6:4;;-1:-1:-1;;;;;1101:6:4;27455:10:1;1241:23:4;1233:68;;;;-1:-1:-1;;;1233:68:4;;;;;;;:::i;:::-;3172:5:3::1;:16:::0;3107:88::o;9930:102:1:-;9986:13;10018:7;10011:14;;;;;:::i;1928:436:3:-;868:9;881:10;868:23;860:64;;;;-1:-1:-1;;;860:64:3;;8921:2:5;860:64:3;;;8903:21:5;8960:2;8940:18;;;8933:30;8999;8979:18;;;8972:58;9047:18;;860:64:3;8719:352:5;860:64:3;2055:10:::1;;2043:8;2022:4;-1:-1:-1::0;;;;;2022:16:3::1;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:29;;;;:::i;:::-;:43;;2014:79;;;::::0;-1:-1:-1;;;2014:79:3;;8162:2:5;2014:79:3::1;::::0;::::1;8144:21:5::0;8201:2;8181:18;;;8174:30;-1:-1:-1;;;8220:18:5;;;8213:53;8283:18;;2014:79:3::1;7960:347:5::0;2014:79:3::1;2124:14;2111:9;::::0;-1:-1:-1;;;2111:9:3;::::1;;;:27;::::0;::::1;;;;;;:::i;:::-;;2103:58;;;::::0;-1:-1:-1;;;2103:58:3;;9974:2:5;2103:58:3::1;::::0;::::1;9956:21:5::0;10013:2;9993:18;;;9986:30;-1:-1:-1;;;10032:18:5;;;10025:48;10090:18;;2103:58:3::1;9772:342:5::0;2103:58:3::1;2200:8;2192:5;;:16;;;;:::i;:::-;2179:9;:29;;2171:60;;;::::0;-1:-1:-1;;;2171:60:3;;10682:2:5;2171:60:3::1;::::0;::::1;10664:21:5::0;10721:2;10701:18;;;10694:30;-1:-1:-1;;;10740:18:5;;;10733:48;10798:18;;2171:60:3::1;10480:342:5::0;2171:60:3::1;2284:8;2249:31;2269:10;2249:19;:31::i;:::-;:43;;2241:78;;;::::0;-1:-1:-1;;;2241:78:3;;9278:2:5;2241:78:3::1;::::0;::::1;9260:21:5::0;9317:2;9297:18;;;9290:30;-1:-1:-1;;;9336:18:5;;;9329:52;9398:18;;2241:78:3::1;9076:346:5::0;2241:78:3::1;2330:27;2336:10;2348:8;2330:5;:27::i;12045:303:1:-:0;-1:-1:-1;;;;;12143:31:1;;27455:10;12143:31;12139:61;;;12183:17;;-1:-1:-1;;;12183:17:1;;;;;;;;;;;12139:61;27455:10;12211:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;12211:49:1;;;;;;;;;;;;:60;;-1:-1:-1;;12211:60:1;;;;;;;;;;12286:55;;7337:41:5;;;12211:49:1;;27455:10;12286:55;;7310:18:5;12286:55:1;;;;;;;12045:303;;:::o;3308:123:3:-;1101:6:4;;-1:-1:-1;;;;;1101:6:4;27455:10:1;1241:23:4;1233:68;;;;-1:-1:-1;;;1233:68:4;;;;;;;:::i;:::-;3369:8:3::1;::::0;::::1;;3368:9;3360:38;;;::::0;-1:-1:-1;;;3360:38:3;;9629:2:5;3360:38:3::1;::::0;::::1;9611:21:5::0;9668:2;9648:18;;;9641:30;-1:-1:-1;;;9687:18:5;;;9680:46;9743:18;;3360:38:3::1;9427:340:5::0;13113:385:1;13274:28;13284:4;13290:2;13294:7;13274:9;:28::i;:::-;-1:-1:-1;;;;;13316:14:1;;;:19;13312:180;;13354:56;13385:4;13391:2;13395:7;13404:5;13354:30;:56::i;:::-;13349:143;;13437:40;;-1:-1:-1;;;13437:40:1;;;;;;;;;;;13349:143;13113:385;;;;:::o;2384:406:3:-;2457:13;2487:16;2495:7;2487;:16::i;:::-;2482:59;;2512:29;;-1:-1:-1;;;2512:29:3;;;;;;;;;;;2482:59;2555:8;;;;2552:68;;2595:14;2588:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2384:406;;;:::o;2552:68::-;2630:24;2657:10;:8;:10::i;:::-;2630:37;;2690:7;2684:21;;;;;:::i;:::-;:26;;;-1:-1:-1;2684:99:3;;;;;;;;;;;;;;;;;2737:10;2749:18;2759:7;2749:9;:18::i;:::-;2720:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2684:99;2677:106;2384:406;-1:-1:-1;;;2384:406:3:o;3201:101::-;1101:6:4;;-1:-1:-1;;;;;1101:6:4;27455:10:1;1241:23:4;1233:68;;;;-1:-1:-1;;;1233:68:4;;;;;;;:::i;:::-;3272:12:3::1;:23:::0;3201:101::o;1911:198:4:-;1101:6;;-1:-1:-1;;;;;1101:6:4;27455:10:1;1241:23:4;1233:68;;;;-1:-1:-1;;;1233:68:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:4;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:4;;8514:2:5;1991:73:4::1;::::0;::::1;8496:21:5::0;8553:2;8533:18;;;8526:30;8592:34;8572:18;;;8565:62;-1:-1:-1;;;8643:18:5;;;8636:36;8689:19;;1991:73:4::1;8312:402:5::0;1991:73:4::1;2074:28;2093:8;2074:18;:28::i;13744:268:1:-:0;13801:4;13888:13;;13878:7;:23;13836:150;;;;-1:-1:-1;;13938:26:1;;;;:17;:26;;;;;;-1:-1:-1;;;13938:43:1;:48;;13744:268::o;7141:1105::-;7208:7;7242;7340:13;;7333:4;:20;7329:853;;;7377:14;7394:23;;;:17;:23;;;;;;-1:-1:-1;;;7481:23:1;;7477:687;;7992:111;7999:11;7992:111;;-1:-1:-1;;;8069:6:1;8051:25;;;;:17;:25;;;;;;7992:111;;7477:687;7355:827;7329:853;8208:31;;-1:-1:-1;;;8208:31:1;;;;;;;;;;;18844:2460;18954:27;18984;19003:7;18984:18;:27::i;:::-;18954:57;;19067:4;-1:-1:-1;;;;;19026:45:1;19042:19;-1:-1:-1;;;;;19026:45:1;;19022:86;;19080:28;;-1:-1:-1;;;19080:28:1;;;;;;;;;;;19022:86;19119:22;27455:10;-1:-1:-1;;;;;19145:27:1;;;;:86;;-1:-1:-1;19188:43:1;19205:4;27455:10;12414:162;:::i;19188:43::-;19145:145;;;-1:-1:-1;27455:10:1;19247:20;19259:7;19247:11;:20::i;:::-;-1:-1:-1;;;;;19247:43:1;;19145:145;19119:172;;19307:17;19302:66;;19333:35;;-1:-1:-1;;;19333:35:1;;;;;;;;;;;19302:66;-1:-1:-1;;;;;19382:16:1;;19378:52;;19407:23;;-1:-1:-1;;;19407:23:1;;;;;;;;;;;19378:52;19554:24;;;;:15;:24;;;;;;;;19547:31;;-1:-1:-1;;;;;;19547:31:1;;;-1:-1:-1;;;;;19939:24:1;;;;;:18;:24;;;;;19937:26;;-1:-1:-1;;19937:26:1;;;20007:22;;;;;;;20005:24;;-1:-1:-1;20005:24:1;;;20293:26;;;:17;:26;;;;;-1:-1:-1;;;20379:15:1;1656:3;20379:41;20338:83;;:126;;20293:171;;;20581:46;;20577:616;;20684:1;20674:11;;20652:19;20805:30;;;:17;:30;;;;;;20801:378;;20941:13;;20926:11;:28;20922:239;;21086:30;;;;:17;:30;;;;;:52;;;20922:239;20634:559;20577:616;21237:7;21233:2;-1:-1:-1;;;;;21218:27:1;21227:4;-1:-1:-1;;;;;21218:27:1;;;;;;;;;;;18944:2360;;18844:2460;;;:::o;16984:1618::-;17048:20;17071:13;-1:-1:-1;;;;;17098:16:1;;17094:48;;17123:19;;-1:-1:-1;;;17123:19:1;;;;;;;;;;;17094:48;17156:13;17152:44;;17178:18;;-1:-1:-1;;;17178:18:1;;;;;;;;;;;17152:44;-1:-1:-1;;;;;17732:22:1;;;;;;:18;:22;;;;1151:2;17732:22;;;:70;;17770:31;17758:44;;17732:70;;;18038:31;;;:17;:31;;;;;18129:15;1656:3;18129:41;18088:83;;-1:-1:-1;18206:13:1;;1913:3;18191:56;18088:160;18038:210;;:31;18326:23;;;18364:109;18390:40;;18415:14;;;;;-1:-1:-1;;;;;18390:40:1;;;18407:1;;18390:40;;18407:1;;18390:40;18468:3;18453:12;:18;18364:109;;-1:-1:-1;18487:13:1;:28;12638:164;;;:::o;2263:187:4:-;2355:6;;;-1:-1:-1;;;;;2371:17:4;;;-1:-1:-1;;;;;;2371:17:4;;;;;;;2403:40;;2355:6;;;2371:17;2355:6;;2403:40;;2336:16;;2403:40;2326:124;2263:187;:::o;24909:697:1:-;25087:88;;-1:-1:-1;;;25087:88:1;;25067:4;;-1:-1:-1;;;;;25087:45:1;;;;;:88;;27455:10;;25154:4;;25160:7;;25169:5;;25087:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25087:88:1;;;;;;;;-1:-1:-1;;25087:88:1;;;;;;;;;;;;:::i;:::-;;;25083:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25365:13:1;;25361:229;;25410:40;;-1:-1:-1;;;25410:40:1;;;;;;;;;;;25361:229;25550:6;25544:13;25535:6;25531:2;25527:15;25520:38;25083:517;-1:-1:-1;;;;;;25243:64:1;-1:-1:-1;;;25243:64:1;;-1:-1:-1;25083:517:1;24909:697;;;;;;:::o;2796:106:3:-;2856:13;2888:7;2881:14;;;;;:::i;27573:1920:1:-;28038:4;28032:11;;28045:3;28028:21;;28121:17;;;;28805:11;;;28686:5;28935:2;28949;28939:13;;28931:22;28805:11;28918:36;28989:2;28979:13;;28579:668;29007:4;28579:668;;;29178:1;29173:3;29169:11;29162:18;;29228:2;29222:4;29218:13;29214:2;29210:22;29205:3;29197:36;29101:2;29091:13;;28579:668;;;-1:-1:-1;29287:13:1;;;-1:-1:-1;;29400:12:1;;;29458:19;;;29400:12;27573:1920;-1:-1:-1;27573:1920:1:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:5;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:5;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:5;;757:42;;747:70;;813:1;810;803:12;828:367;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:5;;1039:18;1028:30;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:186::-;1259:6;1312:2;1300:9;1291:7;1287:23;1283:32;1280:52;;;1328:1;1325;1318:12;1280:52;1351:29;1370:9;1351:29;:::i;1391:260::-;1459:6;1467;1520:2;1508:9;1499:7;1495:23;1491:32;1488:52;;;1536:1;1533;1526:12;1488:52;1559:29;1578:9;1559:29;:::i;:::-;1549:39;;1607:38;1641:2;1630:9;1626:18;1607:38;:::i;:::-;1597:48;;1391:260;;;;;:::o;1656:328::-;1733:6;1741;1749;1802:2;1790:9;1781:7;1777:23;1773:32;1770:52;;;1818:1;1815;1808:12;1770:52;1841:29;1860:9;1841:29;:::i;:::-;1831:39;;1889:38;1923:2;1912:9;1908:18;1889:38;:::i;:::-;1879:48;;1974:2;1963:9;1959:18;1946:32;1936:42;;1656:328;;;;;:::o;1989:666::-;2084:6;2092;2100;2108;2161:3;2149:9;2140:7;2136:23;2132:33;2129:53;;;2178:1;2175;2168:12;2129:53;2201:29;2220:9;2201:29;:::i;:::-;2191:39;;2249:38;2283:2;2272:9;2268:18;2249:38;:::i;:::-;2239:48;;2334:2;2323:9;2319:18;2306:32;2296:42;;2389:2;2378:9;2374:18;2361:32;2416:18;2408:6;2405:30;2402:50;;;2448:1;2445;2438:12;2402:50;2471:22;;2524:4;2516:13;;2512:27;-1:-1:-1;2502:55:5;;2553:1;2550;2543:12;2502:55;2576:73;2641:7;2636:2;2623:16;2618:2;2614;2610:11;2576:73;:::i;:::-;2566:83;;;1989:666;;;;;;;:::o;2660:347::-;2725:6;2733;2786:2;2774:9;2765:7;2761:23;2757:32;2754:52;;;2802:1;2799;2792:12;2754:52;2825:29;2844:9;2825:29;:::i;:::-;2815:39;;2904:2;2893:9;2889:18;2876:32;2951:5;2944:13;2937:21;2930:5;2927:32;2917:60;;2973:1;2970;2963:12;2917:60;2996:5;2986:15;;;2660:347;;;;;:::o;3012:254::-;3080:6;3088;3141:2;3129:9;3120:7;3116:23;3112:32;3109:52;;;3157:1;3154;3147:12;3109:52;3180:29;3199:9;3180:29;:::i;:::-;3170:39;3256:2;3241:18;;;;3228:32;;-1:-1:-1;;;3012:254:5:o;3271:773::-;3393:6;3401;3409;3417;3470:2;3458:9;3449:7;3445:23;3441:32;3438:52;;;3486:1;3483;3476:12;3438:52;3526:9;3513:23;3555:18;3596:2;3588:6;3585:14;3582:34;;;3612:1;3609;3602:12;3582:34;3651:70;3713:7;3704:6;3693:9;3689:22;3651:70;:::i;:::-;3740:8;;-1:-1:-1;3625:96:5;-1:-1:-1;3828:2:5;3813:18;;3800:32;;-1:-1:-1;3844:16:5;;;3841:36;;;3873:1;3870;3863:12;3841:36;;3912:72;3976:7;3965:8;3954:9;3950:24;3912:72;:::i;:::-;3271:773;;;;-1:-1:-1;4003:8:5;-1:-1:-1;;;;3271:773:5:o;4049:245::-;4107:6;4160:2;4148:9;4139:7;4135:23;4131:32;4128:52;;;4176:1;4173;4166:12;4128:52;4215:9;4202:23;4234:30;4258:5;4234:30;:::i;4299:249::-;4368:6;4421:2;4409:9;4400:7;4396:23;4392:32;4389:52;;;4437:1;4434;4427:12;4389:52;4469:9;4463:16;4488:30;4512:5;4488:30;:::i;4553:450::-;4622:6;4675:2;4663:9;4654:7;4650:23;4646:32;4643:52;;;4691:1;4688;4681:12;4643:52;4731:9;4718:23;4764:18;4756:6;4753:30;4750:50;;;4796:1;4793;4786:12;4750:50;4819:22;;4872:4;4864:13;;4860:27;-1:-1:-1;4850:55:5;;4901:1;4898;4891:12;4850:55;4924:73;4989:7;4984:2;4971:16;4966:2;4962;4958:11;4924:73;:::i;5008:180::-;5067:6;5120:2;5108:9;5099:7;5095:23;5091:32;5088:52;;;5136:1;5133;5126:12;5088:52;-1:-1:-1;5159:23:5;;5008:180;-1:-1:-1;5008:180:5:o;5193:184::-;5263:6;5316:2;5304:9;5295:7;5291:23;5287:32;5284:52;;;5332:1;5329;5322:12;5284:52;-1:-1:-1;5355:16:5;;5193:184;-1:-1:-1;5193:184:5:o;5382:257::-;5423:3;5461:5;5455:12;5488:6;5483:3;5476:19;5504:63;5560:6;5553:4;5548:3;5544:14;5537:4;5530:5;5526:16;5504:63;:::i;:::-;5621:2;5600:15;-1:-1:-1;;5596:29:5;5587:39;;;;5628:4;5583:50;;5382:257;-1:-1:-1;;5382:257:5:o;5644:637::-;5924:3;5962:6;5956:13;5978:53;6024:6;6019:3;6012:4;6004:6;6000:17;5978:53;:::i;:::-;6094:13;;6053:16;;;;6116:57;6094:13;6053:16;6150:4;6138:17;;6116:57;:::i;:::-;-1:-1:-1;;;6195:20:5;;6224:22;;;6273:1;6262:13;;5644:637;-1:-1:-1;;;;5644:637:5:o;6704:488::-;-1:-1:-1;;;;;6973:15:5;;;6955:34;;7025:15;;7020:2;7005:18;;6998:43;7072:2;7057:18;;7050:34;;;7120:3;7115:2;7100:18;;7093:31;;;6898:4;;7141:45;;7166:19;;7158:6;7141:45;:::i;:::-;7133:53;6704:488;-1:-1:-1;;;;;;6704:488:5:o;7389:342::-;7535:2;7520:18;;7568:1;7557:13;;7547:144;;7613:10;7608:3;7604:20;7601:1;7594:31;7648:4;7645:1;7638:15;7676:4;7673:1;7666:15;7547:144;7700:25;;;7389:342;:::o;7736:219::-;7885:2;7874:9;7867:21;7848:4;7905:44;7945:2;7934:9;7930:18;7922:6;7905:44;:::i;10119:356::-;10321:2;10303:21;;;10340:18;;;10333:30;10399:34;10394:2;10379:18;;10372:62;10466:2;10451:18;;10119:356::o;11363:128::-;11403:3;11434:1;11430:6;11427:1;11424:13;11421:39;;;11440:18;;:::i;:::-;-1:-1:-1;11476:9:5;;11363:128::o;11496:168::-;11536:7;11602:1;11598;11594:6;11590:14;11587:1;11584:21;11579:1;11572:9;11565:17;11561:45;11558:71;;;11609:18;;:::i;:::-;-1:-1:-1;11649:9:5;;11496:168::o;11669:125::-;11709:4;11737:1;11734;11731:8;11728:34;;;11742:18;;:::i;:::-;-1:-1:-1;11779:9:5;;11669:125::o;11799:258::-;11871:1;11881:113;11895:6;11892:1;11889:13;11881:113;;;11971:11;;;11965:18;11952:11;;;11945:39;11917:2;11910:10;11881:113;;;12012:6;12009:1;12006:13;12003:48;;;-1:-1:-1;;12047:1:5;12029:16;;12022:27;11799:258::o;12062:380::-;12141:1;12137:12;;;;12184;;;12205:61;;12259:4;12251:6;12247:17;12237:27;;12205:61;12312:2;12304:6;12301:14;12281:18;12278:38;12275:161;;;12358:10;12353:3;12349:20;12346:1;12339:31;12393:4;12390:1;12383:15;12421:4;12418:1;12411:15;12275:161;;12062:380;;;:::o;12447:135::-;12486:3;-1:-1:-1;;12507:17:5;;12504:43;;;12527:18;;:::i;:::-;-1:-1:-1;12574:1:5;12563:13;;12447:135::o;12587:127::-;12648:10;12643:3;12639:20;12636:1;12629:31;12679:4;12676:1;12669:15;12703:4;12700:1;12693:15;12719:127;12780:10;12775:3;12771:20;12768:1;12761:31;12811:4;12808:1;12801:15;12835:4;12832:1;12825:15;12851:127;12912:10;12907:3;12903:20;12900:1;12893:31;12943:4;12940:1;12933:15;12967:4;12964:1;12957:15;12983:127;13044:10;13039:3;13035:20;13032:1;13025:31;13075:4;13072:1;13065:15;13099:4;13096:1;13089:15;13115:131;-1:-1:-1;;;;;;13189:32:5;;13179:43;;13169:71;;13236:1;13233;13226:12

Swarm Source

ipfs://8455cb4da9488e9a6348dd4e71a0a09c33e8bd8ae66f908c1ce20a4d6200bc9f
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.