ETH Price: $3,303.87 (-3.56%)
Gas: 6 Gwei

Token

Rug Or Rich (ROR)
 

Overview

Max Total Supply

7,833 ROR

Holders

3,267

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 ROR
0x031a13674bd1e1cac28950860888c11e3244faea
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:
RugOrRich

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 5 : RORNFT.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "@openzeppelin/contracts/access/Ownable.sol";
import "./ERC721A.sol";

contract RugOrRich is ERC721A, Ownable {

    constructor() ERC721A("Rug Or Rich", "ROR") {}

    string private _uri;

    uint public maxSupply = 7833;
    bool public saleStatus = false;
    uint public price = 47 * 10**14;
    uint public maxPerTx = 7;
    uint public maxPerWallet = 7;
    uint public maxFreePerTx = 2;
    uint public maxFreePerWallet = 2;
    uint public maxFreeMintCount = 7833;
    uint public freeMintCount = 0;
 
    // ---------------------------------------------------------------------------------------------
    // MAPPINGS
    // ---------------------------------------------------------------------------------------------

    mapping(address => uint) public feeMinted; 

    mapping(address => uint) public freeMinted; 

    // ---------------------------------------------------------------------------------------------
    // OWNER SETTERS
    // ---------------------------------------------------------------------------------------------

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

    function setMaxFreeMintCount(uint _count) external onlyOwner {
        maxFreeMintCount = _count;
    }

    function setSaleStatus() external onlyOwner {
        saleStatus = !saleStatus;
    }

    function setMaxSupply(uint supply) external onlyOwner {
        maxSupply = supply;
    }

    function setPrice(uint amount) external onlyOwner {
        price = amount;
    }
    
    function setMaxPerTx(uint amount) external onlyOwner {
        maxPerTx = amount;
    }
    
    function setMaxPerWallet(uint amount) external onlyOwner {
        maxPerWallet = amount;
    }

    function setMaxFreePerTx(uint amount) external onlyOwner {
        maxFreePerTx = amount;
    }
    
    function setMaxFreePerWallet(uint amount) external onlyOwner {
        maxFreePerWallet = amount;
    }
    
    function setBaseURI(string calldata uri_) external onlyOwner {
        _uri = uri_;
    }

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

    function devMint(uint256 amount) external onlyOwner {
        require(amount > 0, "AMOUNT_ERROR!");
        require((_totalMinted() + amount) <= maxSupply, "NOT_ENOUGH_TOKENS");
        _safeMint(msg.sender, amount);
    }

    function mint(uint256 amount) external payable {
        require(amount > 0, "AMOUNT_ERROR!");
        require(saleStatus, "SALE_NOT_ACTIVE!");
        require(tx.origin == msg.sender, "NOT_ALLOW_CONTRACT_CALL!");
        require((_totalMinted() + amount) <= maxSupply, "NOT_ENOUGH_TOKENS!");
        if (freeMinted[msg.sender] + amount <= maxFreePerWallet && freeMintCount + amount <= maxFreeMintCount) {
            // free mint
            require(amount <= maxFreePerTx, "EXCEEDS_MAX_PER_TX!");
            freeMintCount += amount;
            _safeMint(msg.sender, amount);
            freeMinted[msg.sender] += amount;
        } else {
            require(amount * price <= msg.value, "NOT_ENOUGH_MONEY!");
            require(amount <= maxPerTx, "EXCEEDS_MAX_PER_TX!");
            require(feeMinted[msg.sender] + amount <= maxPerWallet, "EXCEEDS_MAX_PER_WALLET!");
            _safeMint(msg.sender, amount);
            feeMinted[msg.sender] += amount;
        }
    }

    function burn(uint256 tokenId) external {
        _burn(tokenId, true);
    }
}

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 (_addressToUint256(owner) == 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 auxiliary 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 auxiliary 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))) : '';
    }

    /**
     * @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, it can be overridden 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 (_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 for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 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 offset;
            do {
                emit Transfer(address(0), to, startTokenId + offset++);
            } while (offset < quantity);

            _currentIndex = startTokenId + quantity;
        }
        _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();

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            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));
        address approvedAddress = _tokenApprovals[tokenId];

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            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 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 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();

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"feeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaxFreeMintCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxFreePerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSaleStatus","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"}]

6080604052611e99600a819055600b805460ff191690556610b2a00671c000600c556007600d819055600e556002600f81905560105560115560006012553480156200004a57600080fd5b50604080518082018252600b81526a0a4eace409ee440a4d2c6d60ab1b6020808301918252835180850190945260038452622927a960e91b908401528151919291620000999160029162000119565b508051620000af90600390602084019062000119565b50506000805550620000c133620000c7565b620001fc565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012790620001bf565b90600052602060002090601f0160209004810192826200014b576000855562000196565b82601f106200016657805160ff191683800117855562000196565b8280016001018555821562000196579182015b828111156200019657825182559160200191906001019062000179565b50620001a4929150620001a8565b5090565b5b80821115620001a45760008155600101620001a9565b600181811c90821680620001d457607f821691505b60208210811415620001f657634e487b7160e01b600052602260045260246000fd5b50919050565b611df1806200020c6000396000f3fe6080604052600436106102465760003560e01c8063715018a611610139578063c4d6c2e9116100b6578063e268e4d31161007a578063e268e4d314610682578063e55f58bb146106a2578063e985e9c5146106b8578063f2fde38b14610701578063f9020e3314610721578063f968adbe1461073b57600080fd5b8063c4d6c2e9146105df578063c6f6f216146105ff578063c87b56dd1461061f578063d01568aa1461063f578063d5abeb011461066c57600080fd5b8063a035b1fe116100fd578063a035b1fe14610560578063a0712d6814610576578063a22cb46514610589578063a7027357146105a9578063b88d4fde146105bf57600080fd5b8063715018a6146104e25780637dc949b2146104f75780638da5cb5b1461050d57806391b7f5ed1461052b57806395d89b411461054b57600080fd5b806340f070a8116101c757806355f804b31161018b57806355f804b3146104425780636352211e146104625780636d7c4a4b146104825780636f8b44b0146104a257806370a08231146104c257600080fd5b806340f070a8146103b757806342842e0e146103d757806342966c68146103f7578063453c231014610417578063502b33af1461042d57600080fd5b8063185ce4541161020e578063185ce4541461031f57806323b872dd14610335578063375a069a14610355578063389fcf06146103755780633ccfd60b146103a257600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da57806318160ddd146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611b36565b610751565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107a3565b6040516102779190611c93565b3480156102ae57600080fd5b506102c26102bd366004611be2565b610835565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004611b0c565b610879565b005b34801561030857600080fd5b50600154600054035b604051908152602001610277565b34801561032b57600080fd5b5061031160115481565b34801561034157600080fd5b506102fa6103503660046119b8565b610919565b34801561036157600080fd5b506102fa610370366004611be2565b610929565b34801561038157600080fd5b5061031161039036600461196a565b60146020526000908152604090205481565b3480156103ae57600080fd5b506102fa610a02565b3480156103c357600080fd5b506102fa6103d2366004611be2565b610a58565b3480156103e357600080fd5b506102fa6103f23660046119b8565b610a87565b34801561040357600080fd5b506102fa610412366004611be2565b610aa2565b34801561042357600080fd5b50610311600e5481565b34801561043957600080fd5b506102fa610aad565b34801561044e57600080fd5b506102fa61045d366004611b70565b610aeb565b34801561046e57600080fd5b506102c261047d366004611be2565b610b21565b34801561048e57600080fd5b506102fa61049d366004611be2565b610b2c565b3480156104ae57600080fd5b506102fa6104bd366004611be2565b610b5b565b3480156104ce57600080fd5b506103116104dd36600461196a565b610b8a565b3480156104ee57600080fd5b506102fa610bd0565b34801561050357600080fd5b50610311600f5481565b34801561051957600080fd5b506008546001600160a01b03166102c2565b34801561053757600080fd5b506102fa610546366004611be2565b610c06565b34801561055757600080fd5b50610295610c35565b34801561056c57600080fd5b50610311600c5481565b6102fa610584366004611be2565b610c44565b34801561059557600080fd5b506102fa6105a4366004611ad0565b610f7c565b3480156105b557600080fd5b5061031160105481565b3480156105cb57600080fd5b506102fa6105da3660046119f4565b611012565b3480156105eb57600080fd5b506102fa6105fa366004611be2565b61105c565b34801561060b57600080fd5b506102fa61061a366004611be2565b61108b565b34801561062b57600080fd5b5061029561063a366004611be2565b6110ba565b34801561064b57600080fd5b5061031161065a36600461196a565b60136020526000908152604090205481565b34801561067857600080fd5b50610311600a5481565b34801561068e57600080fd5b506102fa61069d366004611be2565b61113f565b3480156106ae57600080fd5b5061031160125481565b3480156106c457600080fd5b5061026b6106d3366004611985565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561070d57600080fd5b506102fa61071c36600461196a565b61116e565b34801561072d57600080fd5b50600b5461026b9060ff1681565b34801561074757600080fd5b50610311600d5481565b60006301ffc9a760e01b6001600160e01b03198316148061078257506380ac58cd60e01b6001600160e01b03198316145b8061079d5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546107b290611d3e565b80601f01602080910402602001604051908101604052809291908181526020018280546107de90611d3e565b801561082b5780601f106108005761010080835404028352916020019161082b565b820191906000526020600020905b81548152906001019060200180831161080e57829003601f168201915b5050505050905090565b600061084082611206565b61085d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108848261122d565b9050336001600160a01b038216146108bd576108a081336106d3565b6108bd576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61092483838361128e565b505050565b6008546001600160a01b0316331461095c5760405162461bcd60e51b815260040161095390611ca6565b60405180910390fd5b6000811161099c5760405162461bcd60e51b815260206004820152600d60248201526c414d4f554e545f4552524f522160981b6044820152606401610953565b600a54816109a960005490565b6109b39190611cdb565b11156109f55760405162461bcd60e51b81526020600482015260116024820152704e4f545f454e4f5547485f544f4b454e5360781b6044820152606401610953565b6109ff338261143e565b50565b6008546001600160a01b03163314610a2c5760405162461bcd60e51b815260040161095390611ca6565b60405133904780156108fc02916000818181858888f193505050501580156109ff573d6000803e3d6000fd5b6008546001600160a01b03163314610a825760405162461bcd60e51b815260040161095390611ca6565b600f55565b61092483838360405180602001604052806000815250611012565b6109ff81600161145c565b6008546001600160a01b03163314610ad75760405162461bcd60e51b815260040161095390611ca6565b600b805460ff19811660ff90911615179055565b6008546001600160a01b03163314610b155760405162461bcd60e51b815260040161095390611ca6565b610924600983836118b5565b600061079d8261122d565b6008546001600160a01b03163314610b565760405162461bcd60e51b815260040161095390611ca6565b601055565b6008546001600160a01b03163314610b855760405162461bcd60e51b815260040161095390611ca6565b600a55565b600081610baa576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610bfa5760405162461bcd60e51b815260040161095390611ca6565b610c0460006115cf565b565b6008546001600160a01b03163314610c305760405162461bcd60e51b815260040161095390611ca6565b600c55565b6060600380546107b290611d3e565b60008111610c845760405162461bcd60e51b815260206004820152600d60248201526c414d4f554e545f4552524f522160981b6044820152606401610953565b600b5460ff16610cc95760405162461bcd60e51b815260206004820152601060248201526f53414c455f4e4f545f4143544956452160801b6044820152606401610953565b323314610d185760405162461bcd60e51b815260206004820152601860248201527f4e4f545f414c4c4f575f434f4e54524143545f43414c4c2100000000000000006044820152606401610953565b600a5481610d2560005490565b610d2f9190611cdb565b1115610d725760405162461bcd60e51b81526020600482015260126024820152714e4f545f454e4f5547485f544f4b454e532160701b6044820152606401610953565b60105433600090815260146020526040902054610d90908390611cdb565b11158015610dad575060115481601254610daa9190611cdb565b11155b15610e4657600f54811115610dfa5760405162461bcd60e51b8152602060048201526013602482015272455843454544535f4d41585f5045525f54582160681b6044820152606401610953565b8060126000828254610e0c9190611cdb565b90915550610e1c9050338261143e565b3360009081526014602052604081208054839290610e3b908490611cdb565b909155506109ff9050565b34600c5482610e559190611cf3565b1115610e975760405162461bcd60e51b81526020600482015260116024820152704e4f545f454e4f5547485f4d4f4e45592160781b6044820152606401610953565b600d54811115610edf5760405162461bcd60e51b8152602060048201526013602482015272455843454544535f4d41585f5045525f54582160681b6044820152606401610953565b600e5433600090815260136020526040902054610efd908390611cdb565b1115610f4b5760405162461bcd60e51b815260206004820152601760248201527f455843454544535f4d41585f5045525f57414c4c4554210000000000000000006044820152606401610953565b610f55338261143e565b3360009081526013602052604081208054839290610f74908490611cdb565b909155505050565b6001600160a01b038216331415610fa65760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61101d84848461128e565b6001600160a01b0383163b156110565761103984848484611621565b611056576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146110865760405162461bcd60e51b815260040161095390611ca6565b601155565b6008546001600160a01b031633146110b55760405162461bcd60e51b815260040161095390611ca6565b600d55565b60606110c582611206565b6110e257604051630a14c4b560e41b815260040160405180910390fd5b60006110ec611718565b905080516000141561110d5760405180602001604052806000815250611138565b8061111784611727565b604051602001611128929190611c27565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111695760405162461bcd60e51b815260040161095390611ca6565b600e55565b6008546001600160a01b031633146111985760405162461bcd60e51b815260040161095390611ca6565b6001600160a01b0381166111fd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610953565b6109ff816115cf565b600080548210801561079d575050600090815260046020526040902054600160e01b161590565b60008160005481101561127557600081815260046020526040902054600160e01b8116611273575b80611138575060001901600081815260046020526040902054611255565b505b604051636f96cda160e11b815260040160405180910390fd5b60006112998261122d565b9050836001600160a01b0316816001600160a01b0316146112cc5760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b03908116919086163314806112fc57506112fc86336106d3565b8061130f57506001600160a01b03821633145b90508061132f57604051632ce44b5f60e11b815260040160405180910390fd5b8461134d57604051633a954ecd60e21b815260040160405180910390fd5b811561137057600084815260066020526040902080546001600160a01b03191690555b6001600160a01b03868116600090815260056020908152604080832080546000190190559288168252828220805460010190558682526004905220600160e11b4260a01b8717811790915583166113f557600184016000818152600460205260409020546113f35760005481146113f35760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b611458828260405180602001604052806000815250611776565b5050565b60006114678361122d565b60008481526006602052604090205490915081906001600160a01b031683156114dd576000336001600160a01b03841614806114a857506114a883336106d3565b806114bb57506001600160a01b03821633145b9050806114db57604051632ce44b5f60e11b815260040160405180910390fd5b505b801561150057600085815260066020526040902080546001600160a01b03191690555b6001600160a01b038216600090815260056020908152604080832080546fffffffffffffffffffffffffffffffff01905587835260049091529020600360e01b4260a01b8417179055600160e11b831661158857600185016000818152600460205260409020546115865760005481146115865760008181526004602052604090208490555b505b60405185906000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a450506001805481019055505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611656903390899088908890600401611c56565b602060405180830381600087803b15801561167057600080fd5b505af19250505080156116a0575060408051601f3d908101601f1916820190925261169d91810190611b53565b60015b6116fb573d8080156116ce576040519150601f19603f3d011682016040523d82523d6000602084013e6116d3565b606091505b5080516116f3576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600980546107b290611d3e565b604080516080810191829052607f0190826030600a8206018353600a90045b801561176457600183039250600a81066030018353600a9004611746565b50819003601f19909101908152919050565b61178083836117e3565b6001600160a01b0383163b15610924576000548281035b6117aa6000868380600101945086611621565b6117c7576040516368d2bf6b60e11b815260040160405180910390fd5b8181106117975781600054146117dc57600080fd5b5050505050565b6000548261180357604051622e076360e81b815260040160405180910390fd5b816118215760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915281204260a01b85176001851460e11b1790555b60405160018201918301906001600160a01b038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a482811061186857500160005550565b8280546118c190611d3e565b90600052602060002090601f0160209004810192826118e35760008555611929565b82601f106118fc5782800160ff19823516178555611929565b82800160010185558215611929579182015b8281111561192957823582559160200191906001019061190e565b50611935929150611939565b5090565b5b80821115611935576000815560010161193a565b80356001600160a01b038116811461196557600080fd5b919050565b60006020828403121561197c57600080fd5b6111388261194e565b6000806040838503121561199857600080fd5b6119a18361194e565b91506119af6020840161194e565b90509250929050565b6000806000606084860312156119cd57600080fd5b6119d68461194e565b92506119e46020850161194e565b9150604084013590509250925092565b60008060008060808587031215611a0a57600080fd5b611a138561194e565b9350611a216020860161194e565b925060408501359150606085013567ffffffffffffffff80821115611a4557600080fd5b818701915087601f830112611a5957600080fd5b813581811115611a6b57611a6b611d8f565b604051601f8201601f19908116603f01168101908382118183101715611a9357611a93611d8f565b816040528281528a6020848701011115611aac57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611ae357600080fd5b611aec8361194e565b915060208301358015158114611b0157600080fd5b809150509250929050565b60008060408385031215611b1f57600080fd5b611b288361194e565b946020939093013593505050565b600060208284031215611b4857600080fd5b813561113881611da5565b600060208284031215611b6557600080fd5b815161113881611da5565b60008060208385031215611b8357600080fd5b823567ffffffffffffffff80821115611b9b57600080fd5b818501915085601f830112611baf57600080fd5b813581811115611bbe57600080fd5b866020828501011115611bd057600080fd5b60209290920196919550909350505050565b600060208284031215611bf457600080fd5b5035919050565b60008151808452611c13816020860160208601611d12565b601f01601f19169290920160200192915050565b60008351611c39818460208801611d12565b835190830190611c4d818360208801611d12565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c8990830184611bfb565b9695505050505050565b6020815260006111386020830184611bfb565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611cee57611cee611d79565b500190565b6000816000190483118215151615611d0d57611d0d611d79565b500290565b60005b83811015611d2d578181015183820152602001611d15565b838111156110565750506000910152565b600181811c90821680611d5257607f821691505b60208210811415611d7357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109ff57600080fdfea2646970667358221220d0284997e927dd53bf4d10fc21ea3e0bfd0dd63746a796e146ef7502131318c364736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102465760003560e01c8063715018a611610139578063c4d6c2e9116100b6578063e268e4d31161007a578063e268e4d314610682578063e55f58bb146106a2578063e985e9c5146106b8578063f2fde38b14610701578063f9020e3314610721578063f968adbe1461073b57600080fd5b8063c4d6c2e9146105df578063c6f6f216146105ff578063c87b56dd1461061f578063d01568aa1461063f578063d5abeb011461066c57600080fd5b8063a035b1fe116100fd578063a035b1fe14610560578063a0712d6814610576578063a22cb46514610589578063a7027357146105a9578063b88d4fde146105bf57600080fd5b8063715018a6146104e25780637dc949b2146104f75780638da5cb5b1461050d57806391b7f5ed1461052b57806395d89b411461054b57600080fd5b806340f070a8116101c757806355f804b31161018b57806355f804b3146104425780636352211e146104625780636d7c4a4b146104825780636f8b44b0146104a257806370a08231146104c257600080fd5b806340f070a8146103b757806342842e0e146103d757806342966c68146103f7578063453c231014610417578063502b33af1461042d57600080fd5b8063185ce4541161020e578063185ce4541461031f57806323b872dd14610335578063375a069a14610355578063389fcf06146103755780633ccfd60b146103a257600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da57806318160ddd146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611b36565b610751565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107a3565b6040516102779190611c93565b3480156102ae57600080fd5b506102c26102bd366004611be2565b610835565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004611b0c565b610879565b005b34801561030857600080fd5b50600154600054035b604051908152602001610277565b34801561032b57600080fd5b5061031160115481565b34801561034157600080fd5b506102fa6103503660046119b8565b610919565b34801561036157600080fd5b506102fa610370366004611be2565b610929565b34801561038157600080fd5b5061031161039036600461196a565b60146020526000908152604090205481565b3480156103ae57600080fd5b506102fa610a02565b3480156103c357600080fd5b506102fa6103d2366004611be2565b610a58565b3480156103e357600080fd5b506102fa6103f23660046119b8565b610a87565b34801561040357600080fd5b506102fa610412366004611be2565b610aa2565b34801561042357600080fd5b50610311600e5481565b34801561043957600080fd5b506102fa610aad565b34801561044e57600080fd5b506102fa61045d366004611b70565b610aeb565b34801561046e57600080fd5b506102c261047d366004611be2565b610b21565b34801561048e57600080fd5b506102fa61049d366004611be2565b610b2c565b3480156104ae57600080fd5b506102fa6104bd366004611be2565b610b5b565b3480156104ce57600080fd5b506103116104dd36600461196a565b610b8a565b3480156104ee57600080fd5b506102fa610bd0565b34801561050357600080fd5b50610311600f5481565b34801561051957600080fd5b506008546001600160a01b03166102c2565b34801561053757600080fd5b506102fa610546366004611be2565b610c06565b34801561055757600080fd5b50610295610c35565b34801561056c57600080fd5b50610311600c5481565b6102fa610584366004611be2565b610c44565b34801561059557600080fd5b506102fa6105a4366004611ad0565b610f7c565b3480156105b557600080fd5b5061031160105481565b3480156105cb57600080fd5b506102fa6105da3660046119f4565b611012565b3480156105eb57600080fd5b506102fa6105fa366004611be2565b61105c565b34801561060b57600080fd5b506102fa61061a366004611be2565b61108b565b34801561062b57600080fd5b5061029561063a366004611be2565b6110ba565b34801561064b57600080fd5b5061031161065a36600461196a565b60136020526000908152604090205481565b34801561067857600080fd5b50610311600a5481565b34801561068e57600080fd5b506102fa61069d366004611be2565b61113f565b3480156106ae57600080fd5b5061031160125481565b3480156106c457600080fd5b5061026b6106d3366004611985565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561070d57600080fd5b506102fa61071c36600461196a565b61116e565b34801561072d57600080fd5b50600b5461026b9060ff1681565b34801561074757600080fd5b50610311600d5481565b60006301ffc9a760e01b6001600160e01b03198316148061078257506380ac58cd60e01b6001600160e01b03198316145b8061079d5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546107b290611d3e565b80601f01602080910402602001604051908101604052809291908181526020018280546107de90611d3e565b801561082b5780601f106108005761010080835404028352916020019161082b565b820191906000526020600020905b81548152906001019060200180831161080e57829003601f168201915b5050505050905090565b600061084082611206565b61085d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108848261122d565b9050336001600160a01b038216146108bd576108a081336106d3565b6108bd576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61092483838361128e565b505050565b6008546001600160a01b0316331461095c5760405162461bcd60e51b815260040161095390611ca6565b60405180910390fd5b6000811161099c5760405162461bcd60e51b815260206004820152600d60248201526c414d4f554e545f4552524f522160981b6044820152606401610953565b600a54816109a960005490565b6109b39190611cdb565b11156109f55760405162461bcd60e51b81526020600482015260116024820152704e4f545f454e4f5547485f544f4b454e5360781b6044820152606401610953565b6109ff338261143e565b50565b6008546001600160a01b03163314610a2c5760405162461bcd60e51b815260040161095390611ca6565b60405133904780156108fc02916000818181858888f193505050501580156109ff573d6000803e3d6000fd5b6008546001600160a01b03163314610a825760405162461bcd60e51b815260040161095390611ca6565b600f55565b61092483838360405180602001604052806000815250611012565b6109ff81600161145c565b6008546001600160a01b03163314610ad75760405162461bcd60e51b815260040161095390611ca6565b600b805460ff19811660ff90911615179055565b6008546001600160a01b03163314610b155760405162461bcd60e51b815260040161095390611ca6565b610924600983836118b5565b600061079d8261122d565b6008546001600160a01b03163314610b565760405162461bcd60e51b815260040161095390611ca6565b601055565b6008546001600160a01b03163314610b855760405162461bcd60e51b815260040161095390611ca6565b600a55565b600081610baa576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610bfa5760405162461bcd60e51b815260040161095390611ca6565b610c0460006115cf565b565b6008546001600160a01b03163314610c305760405162461bcd60e51b815260040161095390611ca6565b600c55565b6060600380546107b290611d3e565b60008111610c845760405162461bcd60e51b815260206004820152600d60248201526c414d4f554e545f4552524f522160981b6044820152606401610953565b600b5460ff16610cc95760405162461bcd60e51b815260206004820152601060248201526f53414c455f4e4f545f4143544956452160801b6044820152606401610953565b323314610d185760405162461bcd60e51b815260206004820152601860248201527f4e4f545f414c4c4f575f434f4e54524143545f43414c4c2100000000000000006044820152606401610953565b600a5481610d2560005490565b610d2f9190611cdb565b1115610d725760405162461bcd60e51b81526020600482015260126024820152714e4f545f454e4f5547485f544f4b454e532160701b6044820152606401610953565b60105433600090815260146020526040902054610d90908390611cdb565b11158015610dad575060115481601254610daa9190611cdb565b11155b15610e4657600f54811115610dfa5760405162461bcd60e51b8152602060048201526013602482015272455843454544535f4d41585f5045525f54582160681b6044820152606401610953565b8060126000828254610e0c9190611cdb565b90915550610e1c9050338261143e565b3360009081526014602052604081208054839290610e3b908490611cdb565b909155506109ff9050565b34600c5482610e559190611cf3565b1115610e975760405162461bcd60e51b81526020600482015260116024820152704e4f545f454e4f5547485f4d4f4e45592160781b6044820152606401610953565b600d54811115610edf5760405162461bcd60e51b8152602060048201526013602482015272455843454544535f4d41585f5045525f54582160681b6044820152606401610953565b600e5433600090815260136020526040902054610efd908390611cdb565b1115610f4b5760405162461bcd60e51b815260206004820152601760248201527f455843454544535f4d41585f5045525f57414c4c4554210000000000000000006044820152606401610953565b610f55338261143e565b3360009081526013602052604081208054839290610f74908490611cdb565b909155505050565b6001600160a01b038216331415610fa65760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61101d84848461128e565b6001600160a01b0383163b156110565761103984848484611621565b611056576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146110865760405162461bcd60e51b815260040161095390611ca6565b601155565b6008546001600160a01b031633146110b55760405162461bcd60e51b815260040161095390611ca6565b600d55565b60606110c582611206565b6110e257604051630a14c4b560e41b815260040160405180910390fd5b60006110ec611718565b905080516000141561110d5760405180602001604052806000815250611138565b8061111784611727565b604051602001611128929190611c27565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111695760405162461bcd60e51b815260040161095390611ca6565b600e55565b6008546001600160a01b031633146111985760405162461bcd60e51b815260040161095390611ca6565b6001600160a01b0381166111fd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610953565b6109ff816115cf565b600080548210801561079d575050600090815260046020526040902054600160e01b161590565b60008160005481101561127557600081815260046020526040902054600160e01b8116611273575b80611138575060001901600081815260046020526040902054611255565b505b604051636f96cda160e11b815260040160405180910390fd5b60006112998261122d565b9050836001600160a01b0316816001600160a01b0316146112cc5760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b03908116919086163314806112fc57506112fc86336106d3565b8061130f57506001600160a01b03821633145b90508061132f57604051632ce44b5f60e11b815260040160405180910390fd5b8461134d57604051633a954ecd60e21b815260040160405180910390fd5b811561137057600084815260066020526040902080546001600160a01b03191690555b6001600160a01b03868116600090815260056020908152604080832080546000190190559288168252828220805460010190558682526004905220600160e11b4260a01b8717811790915583166113f557600184016000818152600460205260409020546113f35760005481146113f35760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b611458828260405180602001604052806000815250611776565b5050565b60006114678361122d565b60008481526006602052604090205490915081906001600160a01b031683156114dd576000336001600160a01b03841614806114a857506114a883336106d3565b806114bb57506001600160a01b03821633145b9050806114db57604051632ce44b5f60e11b815260040160405180910390fd5b505b801561150057600085815260066020526040902080546001600160a01b03191690555b6001600160a01b038216600090815260056020908152604080832080546fffffffffffffffffffffffffffffffff01905587835260049091529020600360e01b4260a01b8417179055600160e11b831661158857600185016000818152600460205260409020546115865760005481146115865760008181526004602052604090208490555b505b60405185906000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a450506001805481019055505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611656903390899088908890600401611c56565b602060405180830381600087803b15801561167057600080fd5b505af19250505080156116a0575060408051601f3d908101601f1916820190925261169d91810190611b53565b60015b6116fb573d8080156116ce576040519150601f19603f3d011682016040523d82523d6000602084013e6116d3565b606091505b5080516116f3576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600980546107b290611d3e565b604080516080810191829052607f0190826030600a8206018353600a90045b801561176457600183039250600a81066030018353600a9004611746565b50819003601f19909101908152919050565b61178083836117e3565b6001600160a01b0383163b15610924576000548281035b6117aa6000868380600101945086611621565b6117c7576040516368d2bf6b60e11b815260040160405180910390fd5b8181106117975781600054146117dc57600080fd5b5050505050565b6000548261180357604051622e076360e81b815260040160405180910390fd5b816118215760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915281204260a01b85176001851460e11b1790555b60405160018201918301906001600160a01b038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a482811061186857500160005550565b8280546118c190611d3e565b90600052602060002090601f0160209004810192826118e35760008555611929565b82601f106118fc5782800160ff19823516178555611929565b82800160010185558215611929579182015b8281111561192957823582559160200191906001019061190e565b50611935929150611939565b5090565b5b80821115611935576000815560010161193a565b80356001600160a01b038116811461196557600080fd5b919050565b60006020828403121561197c57600080fd5b6111388261194e565b6000806040838503121561199857600080fd5b6119a18361194e565b91506119af6020840161194e565b90509250929050565b6000806000606084860312156119cd57600080fd5b6119d68461194e565b92506119e46020850161194e565b9150604084013590509250925092565b60008060008060808587031215611a0a57600080fd5b611a138561194e565b9350611a216020860161194e565b925060408501359150606085013567ffffffffffffffff80821115611a4557600080fd5b818701915087601f830112611a5957600080fd5b813581811115611a6b57611a6b611d8f565b604051601f8201601f19908116603f01168101908382118183101715611a9357611a93611d8f565b816040528281528a6020848701011115611aac57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611ae357600080fd5b611aec8361194e565b915060208301358015158114611b0157600080fd5b809150509250929050565b60008060408385031215611b1f57600080fd5b611b288361194e565b946020939093013593505050565b600060208284031215611b4857600080fd5b813561113881611da5565b600060208284031215611b6557600080fd5b815161113881611da5565b60008060208385031215611b8357600080fd5b823567ffffffffffffffff80821115611b9b57600080fd5b818501915085601f830112611baf57600080fd5b813581811115611bbe57600080fd5b866020828501011115611bd057600080fd5b60209290920196919550909350505050565b600060208284031215611bf457600080fd5b5035919050565b60008151808452611c13816020860160208601611d12565b601f01601f19169290920160200192915050565b60008351611c39818460208801611d12565b835190830190611c4d818360208801611d12565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c8990830184611bfb565b9695505050505050565b6020815260006111386020830184611bfb565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611cee57611cee611d79565b500190565b6000816000190483118215151615611d0d57611d0d611d79565b500290565b60005b83811015611d2d578181015183820152602001611d15565b838111156110565750506000910152565b600181811c90821680611d5257607f821691505b60208210811415611d7357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109ff57600080fdfea2646970667358221220d0284997e927dd53bf4d10fc21ea3e0bfd0dd63746a796e146ef7502131318c364736f6c63430008070033

Deployed Bytecode Sourcemap

136:3387:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4874:607:2;;;;;;;;;;-1:-1:-1;4874:607:2;;;;;:::i;:::-;;:::i;:::-;;;5624:14:5;;5617:22;5599:41;;5587:2;5572:18;4874:607:2;;;;;;;;9784:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11731:200::-;;;;;;;;;;-1:-1:-1;11731:200:2;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4922:32:5;;;4904:51;;4892:2;4877:18;11731:200:2;4758:203:5;11265:405:2;;;;;;;;;;-1:-1:-1;11265:405:2;;;;;:::i;:::-;;:::i;:::-;;3957:309;;;;;;;;;;-1:-1:-1;4219:12:2;;4010:7;4203:13;:28;3957:309;;;9568:25:5;;;9556:2;9541:18;3957:309:2;9422:177:5;503:35:4;;;;;;;;;;;;;;;;12591:164:2;;;;;;;;;;-1:-1:-1;12591:164:2;;;;;:::i;:::-;;:::i;2234:222:4:-;;;;;;;;;;-1:-1:-1;2234:222:4;;;;;:::i;:::-;;:::i;849:42::-;;;;;;;;;;-1:-1:-1;849:42:4;;;;;:::i;:::-;;;;;;;;;;;;;;1123:107;;;;;;;;;;;;;:::i;1820:95::-;;;;;;;;;;-1:-1:-1;1820:95:4;;;;;:::i;:::-;;:::i;12821:179:2:-;;;;;;;;;;-1:-1:-1;12821:179:2;;;;;:::i;:::-;;:::i;3444:77:4:-;;;;;;;;;;-1:-1:-1;3444:77:4;;;;;:::i;:::-;;:::i;397:28::-;;;;;;;;;;;;;;;;1345:85;;;;;;;;;;;;;:::i;2038:89::-;;;;;;;;;;-1:-1:-1;2038:89:4;;;;;:::i;:::-;;:::i;9580:142:2:-;;;;;;;;;;-1:-1:-1;9580:142:2;;;;;:::i;:::-;;:::i;1925:103:4:-;;;;;;;;;;-1:-1:-1;1925:103:4;;;;;:::i;:::-;;:::i;1436:89::-;;;;;;;;;;-1:-1:-1;1436:89:4;;;;;:::i;:::-;;:::i;5540:231:2:-;;;;;;;;;;-1:-1:-1;5540:231:2;;;;;:::i;:::-;;:::i;1668:101:0:-;;;;;;;;;;;;;:::i;431:28:4:-;;;;;;;;;;;;;;;;1036:85:0;;;;;;;;;;-1:-1:-1;1108:6:0;;-1:-1:-1;;;;;1108:6:0;1036:85;;1531:81:4;;;;;;;;;;-1:-1:-1;1531:81:4;;;;;:::i;:::-;;:::i;9946:102:2:-;;;;;;;;;;;;;:::i;330:31:4:-;;;;;;;;;;;;;;;;2462:976;;;;;;:::i;:::-;;:::i;11998:303:2:-;;;;;;;;;;-1:-1:-1;11998:303:2;;;;;:::i;:::-;;:::i;465:32:4:-;;;;;;;;;;;;;;;;13066:385:2;;;;;;;;;;-1:-1:-1;13066:385:2;;;;;:::i;:::-;;:::i;1236:103:4:-;;;;;;;;;;-1:-1:-1;1236:103:4;;;;;:::i;:::-;;:::i;1622:87::-;;;;;;;;;;-1:-1:-1;1622:87:4;;;;;:::i;:::-;;:::i;10114:313:2:-;;;;;;;;;;-1:-1:-1;10114:313:2;;;;;:::i;:::-;;:::i;800:41:4:-;;;;;;;;;;-1:-1:-1;800:41:4;;;;;:::i;:::-;;;;;;;;;;;;;;260:28;;;;;;;;;;;;;;;;1719:95;;;;;;;;;;-1:-1:-1;1719:95:4;;;;;:::i;:::-;;:::i;544:29::-;;;;;;;;;;;;;;;;12367:162:2;;;;;;;;;;-1:-1:-1;12367:162:2;;;;;:::i;:::-;-1:-1:-1;;;;;12487:25:2;;;12464:4;12487:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;12367:162;1918:198:0;;;;;;;;;;-1:-1:-1;1918:198:0;;;;;:::i;:::-;;:::i;294:30:4:-;;;;;;;;;;-1:-1:-1;294:30:4;;;;;;;;367:24;;;;;;;;;;;;;;;;4874:607:2;4959:4;-1:-1:-1;;;;;;;;;5254:25:2;;;;:101;;-1:-1:-1;;;;;;;;;;5330:25:2;;;5254:101;:177;;;-1:-1:-1;;;;;;;;;;5406:25:2;;;5254:177;5235:196;4874:607;-1:-1:-1;;4874:607:2:o;9784:98::-;9838:13;9870:5;9863:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9784:98;:::o;11731:200::-;11799:7;11823:16;11831:7;11823;:16::i;:::-;11818:64;;11848:34;;-1:-1:-1;;;11848:34:2;;;;;;;;;;;11818:64;-1:-1:-1;11900:24:2;;;;:15;:24;;;;;;-1:-1:-1;;;;;11900:24:2;;11731:200::o;11265:405::-;11337:13;11369:27;11388:7;11369:18;:27::i;:::-;11337:61;-1:-1:-1;26127:10:2;-1:-1:-1;;;;;11413:28:2;;;11409:172;;11460:44;11477:5;26127:10;12367:162;:::i;11460:44::-;11455:126;;11531:35;;-1:-1:-1;;;11531:35:2;;;;;;;;;;;11455:126;11591:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;11591:29:2;-1:-1:-1;;;;;11591:29:2;;;;;;;;;11635:28;;11591:24;;11635:28;;;;;;;11327:343;11265:405;;:::o;12591:164::-;12720:28;12730:4;12736:2;12740:7;12720:9;:28::i;:::-;12591:164;;;:::o;2234:222:4:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;26127:10:2;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;;;;;;;;;2313:1:4::1;2304:6;:10;2296:36;;;::::0;-1:-1:-1;;;2296:36:4;;7177:2:5;2296:36:4::1;::::0;::::1;7159:21:5::0;7216:2;7196:18;;;7189:30;-1:-1:-1;;;7235:18:5;;;7228:43;7288:18;;2296:36:4::1;6975:337:5::0;2296:36:4::1;2379:9;;2368:6;2351:14;4406:7:2::0;4590:13;;4359:279;2351:14:4::1;:23;;;;:::i;:::-;2350:38;;2342:68;;;::::0;-1:-1:-1;;;2342:68:4;;8232:2:5;2342:68:4::1;::::0;::::1;8214:21:5::0;8271:2;8251:18;;;8244:30;-1:-1:-1;;;8290:18:5;;;8283:47;8347:18;;2342:68:4::1;8030:341:5::0;2342:68:4::1;2420:29;2430:10;2442:6;2420:9;:29::i;:::-;2234:222:::0;:::o;1123:107::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;26127:10:2;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1172:51:4::1;::::0;1180:10:::1;::::0;1201:21:::1;1172:51:::0;::::1;;;::::0;::::1;::::0;;;1201:21;1180:10;1172:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;1820:95:::0;1108:6:0;;-1:-1:-1;;;;;1108:6:0;26127:10:2;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1887:12:4::1;:21:::0;1820:95::o;12821:179:2:-;12954:39;12971:4;12977:2;12981:7;12954:39;;;;;;;;;;;;:16;:39::i;3444:77:4:-;3494:20;3500:7;3509:4;3494:5;:20::i;1345:85::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;26127:10:2;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1413:10:4::1;::::0;;-1:-1:-1;;1399:24:4;::::1;1413:10;::::0;;::::1;1412:11;1399:24;::::0;;1345:85::o;2038:89::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;26127:10:2;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2109:11:4::1;:4;2116::::0;;2109:11:::1;:::i;9580:142:2:-:0;9644:7;9686:27;9705:7;9686:18;:27::i;1925:103:4:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;26127:10:2;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1996:16:4::1;:25:::0;1925:103::o;1436:89::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;26127:10:2;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1500:9:4::1;:18:::0;1436:89::o;5540:231:2:-;5604:7;5645:5;5623:70;;5665:28;;-1:-1:-1;;;5665:28:2;;;;;;;;;;;5623:70;-1:-1:-1;;;;;;5710:25:2;;;;;:18;:25;;;;;;1017:13;5710:54;;5540:231::o;1668:101:0:-;1108:6;;-1:-1:-1;;;;;1108:6:0;26127:10:2;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;1531:81:4:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;26127:10:2;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1591:5:4::1;:14:::0;1531:81::o;9946:102:2:-;10002:13;10034:7;10027:14;;;;;:::i;2462:976:4:-;2536:1;2527:6;:10;2519:36;;;;-1:-1:-1;;;2519:36:4;;7177:2:5;2519:36:4;;;7159:21:5;7216:2;7196:18;;;7189:30;-1:-1:-1;;;7235:18:5;;;7228:43;7288:18;;2519:36:4;6975:337:5;2519:36:4;2573:10;;;;2565:39;;;;-1:-1:-1;;;2565:39:4;;6077:2:5;2565:39:4;;;6059:21:5;6116:2;6096:18;;;6089:30;-1:-1:-1;;;6135:18:5;;;6128:46;6191:18;;2565:39:4;5875:340:5;2565:39:4;2622:9;2635:10;2622:23;2614:60;;;;-1:-1:-1;;;2614:60:4;;9271:2:5;2614:60:4;;;9253:21:5;9310:2;9290:18;;;9283:30;9349:26;9329:18;;;9322:54;9393:18;;2614:60:4;9069:348:5;2614:60:4;2721:9;;2710:6;2693:14;4406:7:2;4590:13;;4359:279;2693:14:4;:23;;;;:::i;:::-;2692:38;;2684:69;;;;-1:-1:-1;;;2684:69:4;;8578:2:5;2684:69:4;;;8560:21:5;8617:2;8597:18;;;8590:30;-1:-1:-1;;;8636:18:5;;;8629:48;8694:18;;2684:69:4;8376:342:5;2684:69:4;2802:16;;2778:10;2767:22;;;;:10;:22;;;;;;:31;;2792:6;;2767:31;:::i;:::-;:51;;:97;;;;;2848:16;;2838:6;2822:13;;:22;;;;:::i;:::-;:42;;2767:97;2763:669;;;2923:12;;2913:6;:22;;2905:54;;;;-1:-1:-1;;;2905:54:4;;6829:2:5;2905:54:4;;;6811:21:5;6868:2;6848:18;;;6841:30;-1:-1:-1;;;6887:18:5;;;6880:49;6946:18;;2905:54:4;6627:343:5;2905:54:4;2990:6;2973:13;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;3010:29:4;;-1:-1:-1;3020:10:4;3032:6;3010:9;:29::i;:::-;3064:10;3053:22;;;;:10;:22;;;;;:32;;3079:6;;3053:22;:32;;3079:6;;3053:32;:::i;:::-;;;;-1:-1:-1;2763:669:4;;-1:-1:-1;2763:669:4;;3142:9;3133:5;;3124:6;:14;;;;:::i;:::-;:27;;3116:57;;;;-1:-1:-1;;;3116:57:4;;8925:2:5;3116:57:4;;;8907:21:5;8964:2;8944:18;;;8937:30;-1:-1:-1;;;8983:18:5;;;8976:47;9040:18;;3116:57:4;8723:341:5;3116:57:4;3205:8;;3195:6;:18;;3187:50;;;;-1:-1:-1;;;3187:50:4;;6829:2:5;3187:50:4;;;6811:21:5;6868:2;6848:18;;;6841:30;-1:-1:-1;;;6887:18:5;;;6880:49;6946:18;;3187:50:4;6627:343:5;3187:50:4;3293:12;;3269:10;3259:21;;;;:9;:21;;;;;;:30;;3283:6;;3259:30;:::i;:::-;:46;;3251:82;;;;-1:-1:-1;;;3251:82:4;;7880:2:5;3251:82:4;;;7862:21:5;7919:2;7899:18;;;7892:30;7958:25;7938:18;;;7931:53;8001:18;;3251:82:4;7678:347:5;3251:82:4;3347:29;3357:10;3369:6;3347:9;:29::i;:::-;3400:10;3390:21;;;;:9;:21;;;;;:31;;3415:6;;3390:21;:31;;3415:6;;3390:31;:::i;:::-;;;;-1:-1:-1;;2462:976:4;:::o;11998:303:2:-;-1:-1:-1;;;;;12096:31:2;;26127:10;12096:31;12092:61;;;12136:17;;-1:-1:-1;;;12136:17:2;;;;;;;;;;;12092:61;26127:10;12164:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;12164:49:2;;;;;;;;;;;;:60;;-1:-1:-1;;12164:60:2;;;;;;;;;;12239:55;;5599:41:5;;;12164:49:2;;26127:10;12239:55;;5572:18:5;12239:55:2;;;;;;;11998:303;;:::o;13066:385::-;13227:28;13237:4;13243:2;13247:7;13227:9;:28::i;:::-;-1:-1:-1;;;;;13269:14:2;;;:19;13265:180;;13307:56;13338:4;13344:2;13348:7;13357:5;13307:30;:56::i;:::-;13302:143;;13390:40;;-1:-1:-1;;;13390:40:2;;;;;;;;;;;13302:143;13066:385;;;;:::o;1236:103:4:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;26127:10:2;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1307:16:4::1;:25:::0;1236:103::o;1622:87::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;26127:10:2;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1685:8:4::1;:17:::0;1622:87::o;10114:313:2:-;10187:13;10217:16;10225:7;10217;:16::i;:::-;10212:59;;10242:29;;-1:-1:-1;;;10242:29:2;;;;;;;;;;;10212:59;10282:21;10306:10;:8;:10::i;:::-;10282:34;;10339:7;10333:21;10358:1;10333:26;;:87;;;;;;;;;;;;;;;;;10386:7;10395:18;10405:7;10395:9;:18::i;:::-;10369:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10333:87;10326:94;10114:313;-1:-1:-1;;;10114:313:2:o;1719:95:4:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;26127:10:2;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1786:12:4::1;:21:::0;1719:95::o;1918:198:0:-;1108:6;;-1:-1:-1;;;;;1108:6:0;26127:10:2;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2006:22:0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;6422:2:5;1998:73:0::1;::::0;::::1;6404:21:5::0;6461:2;6441:18;;;6434:30;6500:34;6480:18;;;6473:62;-1:-1:-1;;;6551:18:5;;;6544:36;6597:19;;1998:73:0::1;6220:402:5::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;13697:268:2:-:0;13754:4;13841:13;;13831:7;:23;13789:150;;;;-1:-1:-1;;13891:26:2;;;;:17;:26;;;;;;-1:-1:-1;;;13891:43:2;:48;;13697:268::o;7157:1105::-;7224:7;7258;7356:13;;7349:4;:20;7345:853;;;7393:14;7410:23;;;:17;:23;;;;;;-1:-1:-1;;;7497:23:2;;7493:687;;8008:111;8015:11;8008:111;;-1:-1:-1;;;8085:6:2;8067:25;;;;:17;:25;;;;;;8008:111;;7493:687;7371:827;7345:853;8224:31;;-1:-1:-1;;;8224:31:2;;;;;;;;;;;17258:2595;17368:27;17398;17417:7;17398:18;:27::i;:::-;17368:57;;17481:4;-1:-1:-1;;;;;17440:45:2;17456:19;-1:-1:-1;;;;;17440:45:2;;17436:86;;17494:28;;-1:-1:-1;;;17494:28:2;;;;;;;;;;;17436:86;17533:23;17559:24;;;:15;:24;;;;;;-1:-1:-1;;;;;17559:24:2;;;;17533:23;17620:27;;26127:10;17620:27;;:86;;-1:-1:-1;17663:43:2;17680:4;26127:10;12367:162;:::i;17663:43::-;17620:140;;;-1:-1:-1;;;;;;17722:38:2;;26127:10;17722:38;17620:140;17594:167;;17777:17;17772:66;;17803:35;;-1:-1:-1;;;17803:35:2;;;;;;;;;;;17772:66;17870:2;17848:62;;17887:23;;-1:-1:-1;;;17887:23:2;;;;;;;;;;;17848:62;18049:15;18031:39;18027:101;;18093:24;;;;:15;:24;;;;;18086:31;;-1:-1:-1;;;;;;18086:31:2;;;18027:101;-1:-1:-1;;;;;18488:24:2;;;;;;;:18;:24;;;;;;;;18486:26;;-1:-1:-1;;18486:26:2;;;18556:22;;;;;;;;18554:24;;-1:-1:-1;18554:24:2;;;18842:26;;;:17;:26;;;-1:-1:-1;;;18928:15:2;1656:3;18928:41;18887:83;;:126;;18842:171;;;19130:46;;19126:616;;19233:1;19223:11;;19201:19;19354:30;;;:17;:30;;;;;;19350:378;;19490:13;;19475:11;:28;19471:239;;19635:30;;;;:17;:30;;;;;:52;;;19471:239;19183:559;19126:616;19786:7;19782:2;-1:-1:-1;;;;;19767:27:2;19776:4;-1:-1:-1;;;;;19767:27:2;;;;;;;;;;;17358:2495;;;17258:2595;;;:::o;14044:102::-;14112:27;14122:2;14126:8;14112:27;;;;;;;;;;;;:9;:27::i;:::-;14044:102;;:::o;20230:2870::-;20309:27;20339;20358:7;20339:18;:27::i;:::-;20377:12;20465:24;;;:15;:24;;;;;;20309:57;;-1:-1:-1;20309:57:2;;-1:-1:-1;;;;;20465:24:2;20500:300;;;;20533:22;26127:10;-1:-1:-1;;;;;20559:27:2;;;;:90;;-1:-1:-1;20606:43:2;20623:4;26127:10;12367:162;:::i;20606:43::-;20559:148;;;-1:-1:-1;;;;;;20669:38:2;;26127:10;20669:38;20559:148;20533:175;;20728:17;20723:66;;20754:35;;-1:-1:-1;;;20754:35:2;;;;;;;;;;;20723:66;20519:281;20500:300;20946:15;20928:39;20924:101;;20990:24;;;;:15;:24;;;;;20983:31;;-1:-1:-1;;;;;;20983:31:2;;;20924:101;-1:-1:-1;;;;;21601:24:2;;;;;;:18;:24;;;;;;;;:59;;21629:31;21601:59;;;21891:26;;;:17;:26;;;;;-1:-1:-1;;;21979:15:2;1656:3;21979:41;21936:85;;:161;21891:206;;-1:-1:-1;;;22214:46:2;;22210:616;;22317:1;22307:11;;22285:19;22438:30;;;:17;:30;;;;;;22434:378;;22574:13;;22559:11;:28;22555:239;;22719:30;;;;:17;:30;;;;;:52;;;22555:239;22267:559;22210:616;22851:35;;22878:7;;22874:1;;-1:-1:-1;;;;;22851:35:2;;;;;22874:1;;22851:35;-1:-1:-1;;23069:12:2;:14;;;;;;-1:-1:-1;;;20230:2870:2:o;2270:187:0:-;2362:6;;;-1:-1:-1;;;;;2378:17:0;;;-1:-1:-1;;;;;;2378:17:0;;;;;;;2410:40;;2362:6;;;2378:17;2362:6;;2410:40;;2343:16;;2410:40;2333:124;2270:187;:::o;23581:697:2:-;23759:88;;-1:-1:-1;;;23759:88:2;;23739:4;;-1:-1:-1;;;;;23759:45:2;;;;;:88;;26127:10;;23826:4;;23832:7;;23841:5;;23759:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23759:88:2;;;;;;;;-1:-1:-1;;23759:88:2;;;;;;;;;;;;:::i;:::-;;;23755:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24037:13:2;;24033:229;;24082:40;;-1:-1:-1;;;24082:40:2;;;;;;;;;;;24033:229;24222:6;24216:13;24207:6;24203:2;24199:15;24192:38;23755:517;-1:-1:-1;;;;;;23915:64:2;-1:-1:-1;;;23915:64:2;;-1:-1:-1;23581:697:2;;;;;;:::o;2133:95:4:-;2185:13;2217:4;2210:11;;;;;:::i;26245:1920:2:-;26708:4;26702:11;;26715:3;26698:21;;26791:17;;;;27474:11;;;27355:5;27604:2;27618;27608:13;;27600:22;27474:11;27587:36;27658:2;27648:13;;27249:682;27676:4;27249:682;;;27862:1;27857:3;27853:11;27846:18;;27912:2;27906:4;27902:13;27898:2;27894:22;27889:3;27881:36;27769:2;27759:13;;27249:682;;;-1:-1:-1;27959:13:2;;;-1:-1:-1;;28072:12:2;;;28130:19;;;28072:12;26245:1920;-1:-1:-1;26245:1920:2:o;14520:661::-;14638:19;14644:2;14648:8;14638:5;:19::i;:::-;-1:-1:-1;;;;;14696:14:2;;;:19;14692:473;;14735:11;14749:13;14796:14;;;14828:229;14858:62;14897:1;14901:2;14905:7;;;;;;14914:5;14858:30;:62::i;:::-;14853:165;;14955:40;;-1:-1:-1;;;14955:40:2;;;;;;;;;;;14853:165;15052:3;15044:5;:11;14828:229;;15137:3;15120:13;;:20;15116:34;;15142:8;;;15116:34;14717:448;;14520:661;;;:::o;15442:1574::-;15506:20;15529:13;15574:2;15552:58;;15591:19;;-1:-1:-1;;;15591:19:2;;;;;;;;;;;15552:58;15624:13;15620:44;;15646:18;;-1:-1:-1;;;15646:18:2;;;;;;;;;;;15620:44;-1:-1:-1;;;;;16200:22:2;;;;;;:18;:22;;;;1151:2;16200:22;;;:70;;16238:31;16226:44;;16200:70;;;16506:31;;;:17;:31;;;;;16597:15;1656:3;16597:41;16556:83;;-1:-1:-1;16674:13:2;;1909:3;16659:56;16556:160;16506:210;;16759:117;16785:49;;16825:8;;;;16810:23;;;-1:-1:-1;;;;;16785:49:2;;;16802:1;;16785:49;;16802:1;;16785:49;16866:8;16857:6;:17;16759:117;;-1:-1:-1;16906:23:2;16890:13;:39;-1:-1:-1;12591:164:2:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:5;82:20;;-1:-1:-1;;;;;131:31:5;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:5;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:5:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:592::-;3310:6;3318;3371:2;3359:9;3350:7;3346:23;3342:32;3339:52;;;3387:1;3384;3377:12;3339:52;3427:9;3414:23;3456:18;3497:2;3489:6;3486:14;3483:34;;;3513:1;3510;3503:12;3483:34;3551:6;3540:9;3536:22;3526:32;;3596:7;3589:4;3585:2;3581:13;3577:27;3567:55;;3618:1;3615;3608:12;3567:55;3658:2;3645:16;3684:2;3676:6;3673:14;3670:34;;;3700:1;3697;3690:12;3670:34;3745:7;3740:2;3731:6;3727:2;3723:15;3719:24;3716:37;3713:57;;;3766:1;3763;3756:12;3713:57;3797:2;3789:11;;;;;3819:6;;-1:-1:-1;3239:592:5;;-1:-1:-1;;;;3239:592:5:o;3836:180::-;3895:6;3948:2;3936:9;3927:7;3923:23;3919:32;3916:52;;;3964:1;3961;3954:12;3916:52;-1:-1:-1;3987:23:5;;3836:180;-1:-1:-1;3836:180:5:o;4021:257::-;4062:3;4100:5;4094:12;4127:6;4122:3;4115:19;4143:63;4199:6;4192:4;4187:3;4183:14;4176:4;4169:5;4165:16;4143:63;:::i;:::-;4260:2;4239:15;-1:-1:-1;;4235:29:5;4226:39;;;;4267:4;4222:50;;4021:257;-1:-1:-1;;4021:257:5:o;4283:470::-;4462:3;4500:6;4494:13;4516:53;4562:6;4557:3;4550:4;4542:6;4538:17;4516:53;:::i;:::-;4632:13;;4591:16;;;;4654:57;4632:13;4591:16;4688:4;4676:17;;4654:57;:::i;:::-;4727:20;;4283:470;-1:-1:-1;;;;4283:470:5:o;4966:488::-;-1:-1:-1;;;;;5235:15:5;;;5217:34;;5287:15;;5282:2;5267:18;;5260:43;5334:2;5319:18;;5312:34;;;5382:3;5377:2;5362:18;;5355:31;;;5160:4;;5403:45;;5428:19;;5420:6;5403:45;:::i;:::-;5395:53;4966:488;-1:-1:-1;;;;;;4966:488:5:o;5651:219::-;5800:2;5789:9;5782:21;5763:4;5820:44;5860:2;5849:9;5845:18;5837:6;5820:44;:::i;7317:356::-;7519:2;7501:21;;;7538:18;;;7531:30;7597:34;7592:2;7577:18;;7570:62;7664:2;7649:18;;7317:356::o;9604:128::-;9644:3;9675:1;9671:6;9668:1;9665:13;9662:39;;;9681:18;;:::i;:::-;-1:-1:-1;9717:9:5;;9604:128::o;9737:168::-;9777:7;9843:1;9839;9835:6;9831:14;9828:1;9825:21;9820:1;9813:9;9806:17;9802:45;9799:71;;;9850:18;;:::i;:::-;-1:-1:-1;9890:9:5;;9737:168::o;9910:258::-;9982:1;9992:113;10006:6;10003:1;10000:13;9992:113;;;10082:11;;;10076:18;10063:11;;;10056:39;10028:2;10021:10;9992:113;;;10123:6;10120:1;10117:13;10114:48;;;-1:-1:-1;;10158:1:5;10140:16;;10133:27;9910:258::o;10173:380::-;10252:1;10248:12;;;;10295;;;10316:61;;10370:4;10362:6;10358:17;10348:27;;10316:61;10423:2;10415:6;10412:14;10392:18;10389:38;10386:161;;;10469:10;10464:3;10460:20;10457:1;10450:31;10504:4;10501:1;10494:15;10532:4;10529:1;10522:15;10386:161;;10173:380;;;:::o;10558:127::-;10619:10;10614:3;10610:20;10607:1;10600:31;10650:4;10647:1;10640:15;10674:4;10671:1;10664:15;10690:127;10751:10;10746:3;10742:20;10739:1;10732:31;10782:4;10779:1;10772:15;10806:4;10803:1;10796:15;10822:131;-1:-1:-1;;;;;;10896:32:5;;10886:43;;10876:71;;10943:1;10940;10933:12

Swarm Source

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