ETH Price: $3,089.33 (-0.45%)
Gas: 2 Gwei

Token

Poodle Pals (POODLPAL)
 

Overview

Max Total Supply

115 POODLPAL

Holders

67

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
themissnguyen.eth
Balance
1 POODLPAL
0xe40dcd3e8587c72cf741293c55d0ecb1fca5a852
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:
PoodlePals

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 6 : poodle_pals.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.1;

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

contract PoodlePals is
    Ownable,
    ReentrancyGuard,
    ERC721A
{
    uint256 public maxTokens = 1111; // total tokens that can be minted

    uint256 public PRICE = 0.02 ether;

    uint256 public maxMint = 20; // max that can be minted during pre or pub sale

    uint256 public amountForDevs = 100; // for marketing etc

    mapping(address => bool) private _allowList;
    mapping(address => uint256) private _allowListClaimed;

    // counters
    mapping(address => uint8) public _preSaleListCounter;
    mapping(address => uint8) public _pubSaleListCounter;

    // Contract Data
    string private _baseTokenURI;

    constructor() ERC721A("Poodle Pals", "POODLPAL") {
    }

    // Sale Switches
    bool public preMintActive = false;
    bool public pubMintActive = false;

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    /* Sale Switches */
    function setPreMint(bool state) public onlyOwner {
        preMintActive = state;
    }

    function setPubMint(bool state) public onlyOwner {
        pubMintActive = state;
    }

    /* Allowlist Management */
    function addToAllowList(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Can't add the null address");
            _allowList[addresses[i]] = true;

            /**
            * @dev We don't want to reset _allowListClaimed count
            * if we try to add someone more than once.
            */
            _allowListClaimed[addresses[i]] > 0 ? _allowListClaimed[addresses[i]] : 0;
        }
    }

    function allowListClaimedBy(address owner) external view returns (uint256){
        require(owner != address(0), "Zero address not on Allow List");

        return _allowListClaimed[owner];
    }

    function onAllowList(address addr) external view returns (bool) {
        return _allowList[addr];
    }

    function removeFromAllowList(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Can't add the null address");

            /// @dev We don't want to reset possible _allowListClaimed numbers.
            _allowList[addresses[i]] = false;
        }
    }

    /* Setters */
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function setMaxMint(uint256 quantity) external onlyOwner {
        maxMint = quantity;
    }

    function setMaxTokens(uint256 quantity) external onlyOwner {
        maxTokens = quantity;
    }

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

    /* Minting */
    function preMint(uint8 quantity)
        external
        payable
        nonReentrant
        callerIsUser
    {
        // activation check
        require(preMintActive, "Pre minting is not active");
        require(_allowList[msg.sender], "You are not on the Allow List");
        require(totalSupply() + quantity <= maxTokens, "Not enough tokens left");
        require(
            _preSaleListCounter[msg.sender] + quantity <= maxMint,
            "Exceeds mint limit per wallet"
        );
        require(PRICE * quantity == msg.value, "Incorrect funds");

        // mint
        _safeMint(msg.sender, quantity);

        // increment counters
        _preSaleListCounter[msg.sender] = _preSaleListCounter[msg.sender] + quantity;
    }

    function publicMint(uint8 quantity)
        external
        payable
        nonReentrant
        callerIsUser
    {
        // activation check
        require(pubMintActive, "Public minting is not active");
        require(totalSupply() + quantity <= maxTokens, "Not enough tokens left");
        require(
            _pubSaleListCounter[msg.sender] + quantity <= maxMint,
            "Exceeds mint limit per wallet"
        );
        require(PRICE * quantity == msg.value, "Incorrect funds");

        // mint
        _safeMint(msg.sender, quantity);

        // increment counters
        _pubSaleListCounter[msg.sender] = _pubSaleListCounter[msg.sender] + quantity;
    }

    // for marketing etc.
    function devMint(uint256 quantity) external onlyOwner {
        require(
            totalSupply() + quantity <= amountForDevs,
            "too many already minted before dev mint"
        );
        _safeMint(msg.sender, quantity);
    }

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

File 2 of 6 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

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

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

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

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

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

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

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

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

File 3 of 6 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // ==============================
    //            IERC165
    // ==============================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 6 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 5 of 6 : 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 6 of 6 : 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":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_preSaleListCounter","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_pubSaleListCounter","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"allowListClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountForDevs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"onAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"}],"name":"preMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pubMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromAllowList","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setMaxTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setPreMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setPubMint","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"}]

6080604052610457600a5566470de4df820000600b556014600c556064600d556013805461ffff191690553480156200003757600080fd5b506040518060400160405280600b81526020016a506f6f646c652050616c7360a81b815250604051806040016040528060088152602001671413d3d11314105360c21b8152506200009762000091620000d460201b60201c565b620000d8565b600180558151620000b090600490602085019062000128565b508051620000c690600590602084019062000128565b50506000600255506200020a565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200013690620001ce565b90600052602060002090601f0160209004810192826200015a5760008555620001a5565b82601f106200017557805160ff1916838001178555620001a5565b82800160010185558215620001a5579182015b82811115620001a557825182559160200191906001019062000188565b50620001b3929150620001b7565b5090565b5b80821115620001b35760008155600101620001b8565b600181811c90821680620001e357607f821691505b6020821081036200020457634e487b7160e01b600052602260045260246000fd5b50919050565b61223c806200021a6000396000f3fe6080604052600436106102245760003560e01c806370a0823111610123578063a22cb465116100ab578063e83157421161006f578063e831574214610664578063e985e9c51461067a578063f2fde38b146106c3578063fa4de74d146106e3578063fbe1aa511461071357600080fd5b8063a22cb465146105a2578063a51312c8146105c2578063b88d4fde146105e2578063c87b56dd14610602578063e672b5f71461062257600080fd5b8063858e83b5116100f2578063858e83b5146105265780638d859f3e146105395780638da5cb5b1461054f57806395d89b411461056d578063a1a64cbf1461058257600080fd5b806370a08231146104bb578063715018a6146104db5780637263cfe2146104f05780637501f7411461051057600080fd5b8063375a069a116101b157806342842e0e1161017557806342842e0e1461041c578063547520fe1461043c57806355f804b31461045c5780636352211e1461047c5780636eb48bcb1461049c57600080fd5b8063375a069a1461037b57806337a747bf1461039b5780633a065892146103ae5780633ccfd60b146103e7578063423f8b78146103fc57600080fd5b8063095ea7b3116101f8578063095ea7b3146102e657806311e776fe1461030857806318160ddd146103285780631a12c91d1461034157806323b872dd1461035b57600080fd5b806208ffdd1461022957806301ffc9a71461025c57806306fdde031461028c578063081812fc146102ae575b600080fd5b34801561023557600080fd5b50610249610244366004611cc4565b610729565b6040519081526020015b60405180910390f35b34801561026857600080fd5b5061027c610277366004611cf5565b6107a2565b6040519015158152602001610253565b34801561029857600080fd5b506102a16107f4565b6040516102539190611d6a565b3480156102ba57600080fd5b506102ce6102c9366004611d7d565b610886565b6040516001600160a01b039091168152602001610253565b3480156102f257600080fd5b50610306610301366004611d96565b6108ca565b005b34801561031457600080fd5b50610306610323366004611d7d565b61099c565b34801561033457600080fd5b5060035460025403610249565b34801561034d57600080fd5b5060135461027c9060ff1681565b34801561036757600080fd5b50610306610376366004611dc0565b6109cb565b34801561038757600080fd5b50610306610396366004611d7d565b6109db565b6103066103a9366004611dfc565b610a8b565b3480156103ba57600080fd5b5061027c6103c9366004611cc4565b6001600160a01b03166000908152600e602052604090205460ff1690565b3480156103f357600080fd5b50610306610d5d565b34801561040857600080fd5b50610306610417366004611e2f565b610dba565b34801561042857600080fd5b50610306610437366004611dc0565b610dfe565b34801561044857600080fd5b50610306610457366004611d7d565b610e19565b34801561046857600080fd5b50610306610477366004611ed6565b610e48565b34801561048857600080fd5b506102ce610497366004611d7d565b610e85565b3480156104a857600080fd5b5060135461027c90610100900460ff1681565b3480156104c757600080fd5b506102496104d6366004611cc4565b610e90565b3480156104e757600080fd5b50610306610edf565b3480156104fc57600080fd5b5061030661050b366004611f1f565b610f15565b34801561051c57600080fd5b50610249600c5481565b610306610534366004611dfc565b6110d8565b34801561054557600080fd5b50610249600b5481565b34801561055b57600080fd5b506000546001600160a01b03166102ce565b34801561057957600080fd5b506102a1611350565b34801561058e57600080fd5b5061030661059d366004611e2f565b61135f565b3480156105ae57600080fd5b506103066105bd366004611f94565b61139c565b3480156105ce57600080fd5b506103066105dd366004611f1f565b611431565b3480156105ee57600080fd5b506103066105fd366004611fc7565b61154c565b34801561060e57600080fd5b506102a161061d366004611d7d565b611596565b34801561062e57600080fd5b5061065261063d366004611cc4565b60116020526000908152604090205460ff1681565b60405160ff9091168152602001610253565b34801561067057600080fd5b50610249600a5481565b34801561068657600080fd5b5061027c610695366004612043565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b3480156106cf57600080fd5b506103066106de366004611cc4565b61161a565b3480156106ef57600080fd5b506106526106fe366004611cc4565b60106020526000908152604090205460ff1681565b34801561071f57600080fd5b50610249600d5481565b60006001600160a01b0382166107865760405162461bcd60e51b815260206004820152601e60248201527f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c697374000060448201526064015b60405180910390fd5b506001600160a01b03166000908152600f602052604090205490565b60006301ffc9a760e01b6001600160e01b0319831614806107d357506380ac58cd60e01b6001600160e01b03198316145b806107ee5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600480546108039061206d565b80601f016020809104026020016040519081016040528092919081815260200182805461082f9061206d565b801561087c5780601f106108515761010080835404028352916020019161087c565b820191906000526020600020905b81548152906001019060200180831161085f57829003601f168201915b5050505050905090565b6000610891826116b2565b6108ae576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b60006108d5826116da565b9050806001600160a01b0316836001600160a01b0316036109095760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610940576109238133610695565b610940576040516367d9dca160e11b815260040160405180910390fd5b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b031633146109c65760405162461bcd60e51b815260040161077d906120a7565b600a55565b6109d6838383611741565b505050565b6000546001600160a01b03163314610a055760405162461bcd60e51b815260040161077d906120a7565b600d5481610a166003546002540390565b610a2091906120f2565b1115610a7e5760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b606482015260840161077d565b610a8833826118e8565b50565b600260015403610add5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161077d565b6002600155323314610b315760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161077d565b60135460ff16610b835760405162461bcd60e51b815260206004820152601960248201527f507265206d696e74696e67206973206e6f742061637469766500000000000000604482015260640161077d565b336000908152600e602052604090205460ff16610be25760405162461bcd60e51b815260206004820152601d60248201527f596f7520617265206e6f74206f6e2074686520416c6c6f77204c697374000000604482015260640161077d565b600a548160ff16610bf66003546002540390565b610c0091906120f2565b1115610c475760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604482015260640161077d565b600c5433600090815260106020526040902054610c6890839060ff1661210a565b60ff161115610cb95760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d696e74206c696d6974207065722077616c6c6574000000604482015260640161077d565b348160ff16600b54610ccb919061212f565b14610d0a5760405162461bcd60e51b815260206004820152600f60248201526e496e636f72726563742066756e647360881b604482015260640161077d565b610d17338260ff166118e8565b33600090815260106020526040902054610d3590829060ff1661210a565b336000908152601060205260409020805460ff191660ff929092169190911790555060018055565b6000546001600160a01b03163314610d875760405162461bcd60e51b815260040161077d906120a7565b6040514790339082156108fc029083906000818181858888f19350505050158015610db6573d6000803e3d6000fd5b5050565b6000546001600160a01b03163314610de45760405162461bcd60e51b815260040161077d906120a7565b601380549115156101000261ff0019909216919091179055565b6109d68383836040518060200160405280600081525061154c565b6000546001600160a01b03163314610e435760405162461bcd60e51b815260040161077d906120a7565b600c55565b6000546001600160a01b03163314610e725760405162461bcd60e51b815260040161077d906120a7565b8051610db6906012906020840190611c0f565b60006107ee826116da565b60006001600160a01b038216610eb9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610f095760405162461bcd60e51b815260040161077d906120a7565b610f136000611902565b565b6000546001600160a01b03163314610f3f5760405162461bcd60e51b815260040161077d906120a7565b60005b818110156109d6576000838383818110610f5e57610f5e61214e565b9050602002016020810190610f739190611cc4565b6001600160a01b031603610fc95760405162461bcd60e51b815260206004820152601a60248201527f43616e27742061646420746865206e756c6c2061646472657373000000000000604482015260640161077d565b6001600e6000858585818110610fe157610fe161214e565b9050602002016020810190610ff69190611cc4565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155600f818585858181106110365761103661214e565b905060200201602081019061104b9190611cc4565b6001600160a01b03166001600160a01b0316815260200190815260200160002054116110785760006110c5565b600f600084848481811061108e5761108e61214e565b90506020020160208101906110a39190611cc4565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b50806110d081612164565b915050610f42565b60026001540361112a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161077d565b600260015532331461117e5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161077d565b601354610100900460ff166111d55760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74696e67206973206e6f742061637469766500000000604482015260640161077d565b600a548160ff166111e96003546002540390565b6111f391906120f2565b111561123a5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604482015260640161077d565b600c543360009081526011602052604090205461125b90839060ff1661210a565b60ff1611156112ac5760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d696e74206c696d6974207065722077616c6c6574000000604482015260640161077d565b348160ff16600b546112be919061212f565b146112fd5760405162461bcd60e51b815260206004820152600f60248201526e496e636f72726563742066756e647360881b604482015260640161077d565b61130a338260ff166118e8565b3360009081526011602052604090205461132890829060ff1661210a565b336000908152601160205260409020805460ff191660ff929092169190911790555060018055565b6060600580546108039061206d565b6000546001600160a01b031633146113895760405162461bcd60e51b815260040161077d906120a7565b6013805460ff1916911515919091179055565b336001600160a01b038316036113c55760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b0316331461145b5760405162461bcd60e51b815260040161077d906120a7565b60005b818110156109d657600083838381811061147a5761147a61214e565b905060200201602081019061148f9190611cc4565b6001600160a01b0316036114e55760405162461bcd60e51b815260206004820152601a60248201527f43616e27742061646420746865206e756c6c2061646472657373000000000000604482015260640161077d565b6000600e60008585858181106114fd576114fd61214e565b90506020020160208101906115129190611cc4565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061154481612164565b91505061145e565b611557848484611741565b6001600160a01b0383163b156115905761157384848484611952565b611590576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606115a1826116b2565b6115be57604051630a14c4b560e41b815260040160405180910390fd5b60006115c8611a3e565b905080516000036115e85760405180602001604052806000815250611613565b806115f284611a4d565b60405160200161160392919061217d565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146116445760405162461bcd60e51b815260040161077d906120a7565b6001600160a01b0381166116a95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161077d565b610a8881611902565b6000600254821080156107ee575050600090815260066020526040902054600160e01b161590565b6000816002548110156117285760008181526006602052604081205490600160e01b82169003611726575b80600003611613575060001901600081815260066020526040902054611705565b505b604051636f96cda160e11b815260040160405180910390fd5b600061174c826116da565b9050836001600160a01b0316816001600160a01b03161461177f5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061179d575061179d8533610695565b806117b85750336117ad84610886565b6001600160a01b0316145b9050806117d857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166117ff57604051633a954ecd60e21b815260040160405180910390fd5b600083815260086020908152604080832080546001600160a01b03191690556001600160a01b038881168452600783528184208054600019019055871683528083208054600101905585835260069091528120600160e11b4260a01b87178117909155831690036118a05760018301600081815260066020526040812054900361189e57600254811461189e5760008181526006602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610db6828260405180602001604052806000815250611a9c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119879033908990889088906004016121ac565b6020604051808303816000875af19250505080156119c2575060408051601f3d908101601f191682019092526119bf918101906121e9565b60015b611a20573d8080156119f0576040519150601f19603f3d011682016040523d82523d6000602084013e6119f5565b606091505b508051600003611a18576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060601280546108039061206d565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611a8a57600183039250600a81066030018353600a9004611a6c565b50819003601f19909101908152919050565b6002546001600160a01b038416611ac557604051622e076360e81b815260040160405180910390fd5b82600003611ae65760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526007602090815260408083208054680100000000000000018902019055848352600690915290204260a01b86176001861460e11b1790558190818501903b15611bbb575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b846000878480600101955087611952565b611ba1576040516368d2bf6b60e11b815260040160405180910390fd5b808210611b39578260025414611bb657600080fd5b611c00565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611bbc575b50600255611590600085838684565b828054611c1b9061206d565b90600052602060002090601f016020900481019282611c3d5760008555611c83565b82601f10611c5657805160ff1916838001178555611c83565b82800160010185558215611c83579182015b82811115611c83578251825591602001919060010190611c68565b50611c8f929150611c93565b5090565b5b80821115611c8f5760008155600101611c94565b80356001600160a01b0381168114611cbf57600080fd5b919050565b600060208284031215611cd657600080fd5b61161382611ca8565b6001600160e01b031981168114610a8857600080fd5b600060208284031215611d0757600080fd5b813561161381611cdf565b60005b83811015611d2d578181015183820152602001611d15565b838111156115905750506000910152565b60008151808452611d56816020860160208601611d12565b601f01601f19169290920160200192915050565b6020815260006116136020830184611d3e565b600060208284031215611d8f57600080fd5b5035919050565b60008060408385031215611da957600080fd5b611db283611ca8565b946020939093013593505050565b600080600060608486031215611dd557600080fd5b611dde84611ca8565b9250611dec60208501611ca8565b9150604084013590509250925092565b600060208284031215611e0e57600080fd5b813560ff8116811461161357600080fd5b80358015158114611cbf57600080fd5b600060208284031215611e4157600080fd5b61161382611e1f565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e7b57611e7b611e4a565b604051601f8501601f19908116603f01168101908282118183101715611ea357611ea3611e4a565b81604052809350858152868686011115611ebc57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ee857600080fd5b813567ffffffffffffffff811115611eff57600080fd5b8201601f81018413611f1057600080fd5b611a3684823560208401611e60565b60008060208385031215611f3257600080fd5b823567ffffffffffffffff80821115611f4a57600080fd5b818501915085601f830112611f5e57600080fd5b813581811115611f6d57600080fd5b8660208260051b8501011115611f8257600080fd5b60209290920196919550909350505050565b60008060408385031215611fa757600080fd5b611fb083611ca8565b9150611fbe60208401611e1f565b90509250929050565b60008060008060808587031215611fdd57600080fd5b611fe685611ca8565b9350611ff460208601611ca8565b925060408501359150606085013567ffffffffffffffff81111561201757600080fd5b8501601f8101871361202857600080fd5b61203787823560208401611e60565b91505092959194509250565b6000806040838503121561205657600080fd5b61205f83611ca8565b9150611fbe60208401611ca8565b600181811c9082168061208157607f821691505b6020821081036120a157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612105576121056120dc565b500190565b600060ff821660ff84168060ff03821115612127576121276120dc565b019392505050565b6000816000190483118215151615612149576121496120dc565b500290565b634e487b7160e01b600052603260045260246000fd5b600060018201612176576121766120dc565b5060010190565b6000835161218f818460208801611d12565b8351908301906121a3818360208801611d12565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121df90830184611d3e565b9695505050505050565b6000602082840312156121fb57600080fd5b815161161381611cdf56fea26469706673582212206f31f41ec5ab48b3ec0863a63b0147c344fb5ba0c653c2e2f988eeccb846ff5b64736f6c634300080e0033

Deployed Bytecode

0x6080604052600436106102245760003560e01c806370a0823111610123578063a22cb465116100ab578063e83157421161006f578063e831574214610664578063e985e9c51461067a578063f2fde38b146106c3578063fa4de74d146106e3578063fbe1aa511461071357600080fd5b8063a22cb465146105a2578063a51312c8146105c2578063b88d4fde146105e2578063c87b56dd14610602578063e672b5f71461062257600080fd5b8063858e83b5116100f2578063858e83b5146105265780638d859f3e146105395780638da5cb5b1461054f57806395d89b411461056d578063a1a64cbf1461058257600080fd5b806370a08231146104bb578063715018a6146104db5780637263cfe2146104f05780637501f7411461051057600080fd5b8063375a069a116101b157806342842e0e1161017557806342842e0e1461041c578063547520fe1461043c57806355f804b31461045c5780636352211e1461047c5780636eb48bcb1461049c57600080fd5b8063375a069a1461037b57806337a747bf1461039b5780633a065892146103ae5780633ccfd60b146103e7578063423f8b78146103fc57600080fd5b8063095ea7b3116101f8578063095ea7b3146102e657806311e776fe1461030857806318160ddd146103285780631a12c91d1461034157806323b872dd1461035b57600080fd5b806208ffdd1461022957806301ffc9a71461025c57806306fdde031461028c578063081812fc146102ae575b600080fd5b34801561023557600080fd5b50610249610244366004611cc4565b610729565b6040519081526020015b60405180910390f35b34801561026857600080fd5b5061027c610277366004611cf5565b6107a2565b6040519015158152602001610253565b34801561029857600080fd5b506102a16107f4565b6040516102539190611d6a565b3480156102ba57600080fd5b506102ce6102c9366004611d7d565b610886565b6040516001600160a01b039091168152602001610253565b3480156102f257600080fd5b50610306610301366004611d96565b6108ca565b005b34801561031457600080fd5b50610306610323366004611d7d565b61099c565b34801561033457600080fd5b5060035460025403610249565b34801561034d57600080fd5b5060135461027c9060ff1681565b34801561036757600080fd5b50610306610376366004611dc0565b6109cb565b34801561038757600080fd5b50610306610396366004611d7d565b6109db565b6103066103a9366004611dfc565b610a8b565b3480156103ba57600080fd5b5061027c6103c9366004611cc4565b6001600160a01b03166000908152600e602052604090205460ff1690565b3480156103f357600080fd5b50610306610d5d565b34801561040857600080fd5b50610306610417366004611e2f565b610dba565b34801561042857600080fd5b50610306610437366004611dc0565b610dfe565b34801561044857600080fd5b50610306610457366004611d7d565b610e19565b34801561046857600080fd5b50610306610477366004611ed6565b610e48565b34801561048857600080fd5b506102ce610497366004611d7d565b610e85565b3480156104a857600080fd5b5060135461027c90610100900460ff1681565b3480156104c757600080fd5b506102496104d6366004611cc4565b610e90565b3480156104e757600080fd5b50610306610edf565b3480156104fc57600080fd5b5061030661050b366004611f1f565b610f15565b34801561051c57600080fd5b50610249600c5481565b610306610534366004611dfc565b6110d8565b34801561054557600080fd5b50610249600b5481565b34801561055b57600080fd5b506000546001600160a01b03166102ce565b34801561057957600080fd5b506102a1611350565b34801561058e57600080fd5b5061030661059d366004611e2f565b61135f565b3480156105ae57600080fd5b506103066105bd366004611f94565b61139c565b3480156105ce57600080fd5b506103066105dd366004611f1f565b611431565b3480156105ee57600080fd5b506103066105fd366004611fc7565b61154c565b34801561060e57600080fd5b506102a161061d366004611d7d565b611596565b34801561062e57600080fd5b5061065261063d366004611cc4565b60116020526000908152604090205460ff1681565b60405160ff9091168152602001610253565b34801561067057600080fd5b50610249600a5481565b34801561068657600080fd5b5061027c610695366004612043565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b3480156106cf57600080fd5b506103066106de366004611cc4565b61161a565b3480156106ef57600080fd5b506106526106fe366004611cc4565b60106020526000908152604090205460ff1681565b34801561071f57600080fd5b50610249600d5481565b60006001600160a01b0382166107865760405162461bcd60e51b815260206004820152601e60248201527f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c697374000060448201526064015b60405180910390fd5b506001600160a01b03166000908152600f602052604090205490565b60006301ffc9a760e01b6001600160e01b0319831614806107d357506380ac58cd60e01b6001600160e01b03198316145b806107ee5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600480546108039061206d565b80601f016020809104026020016040519081016040528092919081815260200182805461082f9061206d565b801561087c5780601f106108515761010080835404028352916020019161087c565b820191906000526020600020905b81548152906001019060200180831161085f57829003601f168201915b5050505050905090565b6000610891826116b2565b6108ae576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b60006108d5826116da565b9050806001600160a01b0316836001600160a01b0316036109095760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610940576109238133610695565b610940576040516367d9dca160e11b815260040160405180910390fd5b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b031633146109c65760405162461bcd60e51b815260040161077d906120a7565b600a55565b6109d6838383611741565b505050565b6000546001600160a01b03163314610a055760405162461bcd60e51b815260040161077d906120a7565b600d5481610a166003546002540390565b610a2091906120f2565b1115610a7e5760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b606482015260840161077d565b610a8833826118e8565b50565b600260015403610add5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161077d565b6002600155323314610b315760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161077d565b60135460ff16610b835760405162461bcd60e51b815260206004820152601960248201527f507265206d696e74696e67206973206e6f742061637469766500000000000000604482015260640161077d565b336000908152600e602052604090205460ff16610be25760405162461bcd60e51b815260206004820152601d60248201527f596f7520617265206e6f74206f6e2074686520416c6c6f77204c697374000000604482015260640161077d565b600a548160ff16610bf66003546002540390565b610c0091906120f2565b1115610c475760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604482015260640161077d565b600c5433600090815260106020526040902054610c6890839060ff1661210a565b60ff161115610cb95760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d696e74206c696d6974207065722077616c6c6574000000604482015260640161077d565b348160ff16600b54610ccb919061212f565b14610d0a5760405162461bcd60e51b815260206004820152600f60248201526e496e636f72726563742066756e647360881b604482015260640161077d565b610d17338260ff166118e8565b33600090815260106020526040902054610d3590829060ff1661210a565b336000908152601060205260409020805460ff191660ff929092169190911790555060018055565b6000546001600160a01b03163314610d875760405162461bcd60e51b815260040161077d906120a7565b6040514790339082156108fc029083906000818181858888f19350505050158015610db6573d6000803e3d6000fd5b5050565b6000546001600160a01b03163314610de45760405162461bcd60e51b815260040161077d906120a7565b601380549115156101000261ff0019909216919091179055565b6109d68383836040518060200160405280600081525061154c565b6000546001600160a01b03163314610e435760405162461bcd60e51b815260040161077d906120a7565b600c55565b6000546001600160a01b03163314610e725760405162461bcd60e51b815260040161077d906120a7565b8051610db6906012906020840190611c0f565b60006107ee826116da565b60006001600160a01b038216610eb9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610f095760405162461bcd60e51b815260040161077d906120a7565b610f136000611902565b565b6000546001600160a01b03163314610f3f5760405162461bcd60e51b815260040161077d906120a7565b60005b818110156109d6576000838383818110610f5e57610f5e61214e565b9050602002016020810190610f739190611cc4565b6001600160a01b031603610fc95760405162461bcd60e51b815260206004820152601a60248201527f43616e27742061646420746865206e756c6c2061646472657373000000000000604482015260640161077d565b6001600e6000858585818110610fe157610fe161214e565b9050602002016020810190610ff69190611cc4565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155600f818585858181106110365761103661214e565b905060200201602081019061104b9190611cc4565b6001600160a01b03166001600160a01b0316815260200190815260200160002054116110785760006110c5565b600f600084848481811061108e5761108e61214e565b90506020020160208101906110a39190611cc4565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b50806110d081612164565b915050610f42565b60026001540361112a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161077d565b600260015532331461117e5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161077d565b601354610100900460ff166111d55760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74696e67206973206e6f742061637469766500000000604482015260640161077d565b600a548160ff166111e96003546002540390565b6111f391906120f2565b111561123a5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604482015260640161077d565b600c543360009081526011602052604090205461125b90839060ff1661210a565b60ff1611156112ac5760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d696e74206c696d6974207065722077616c6c6574000000604482015260640161077d565b348160ff16600b546112be919061212f565b146112fd5760405162461bcd60e51b815260206004820152600f60248201526e496e636f72726563742066756e647360881b604482015260640161077d565b61130a338260ff166118e8565b3360009081526011602052604090205461132890829060ff1661210a565b336000908152601160205260409020805460ff191660ff929092169190911790555060018055565b6060600580546108039061206d565b6000546001600160a01b031633146113895760405162461bcd60e51b815260040161077d906120a7565b6013805460ff1916911515919091179055565b336001600160a01b038316036113c55760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b0316331461145b5760405162461bcd60e51b815260040161077d906120a7565b60005b818110156109d657600083838381811061147a5761147a61214e565b905060200201602081019061148f9190611cc4565b6001600160a01b0316036114e55760405162461bcd60e51b815260206004820152601a60248201527f43616e27742061646420746865206e756c6c2061646472657373000000000000604482015260640161077d565b6000600e60008585858181106114fd576114fd61214e565b90506020020160208101906115129190611cc4565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061154481612164565b91505061145e565b611557848484611741565b6001600160a01b0383163b156115905761157384848484611952565b611590576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606115a1826116b2565b6115be57604051630a14c4b560e41b815260040160405180910390fd5b60006115c8611a3e565b905080516000036115e85760405180602001604052806000815250611613565b806115f284611a4d565b60405160200161160392919061217d565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146116445760405162461bcd60e51b815260040161077d906120a7565b6001600160a01b0381166116a95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161077d565b610a8881611902565b6000600254821080156107ee575050600090815260066020526040902054600160e01b161590565b6000816002548110156117285760008181526006602052604081205490600160e01b82169003611726575b80600003611613575060001901600081815260066020526040902054611705565b505b604051636f96cda160e11b815260040160405180910390fd5b600061174c826116da565b9050836001600160a01b0316816001600160a01b03161461177f5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061179d575061179d8533610695565b806117b85750336117ad84610886565b6001600160a01b0316145b9050806117d857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166117ff57604051633a954ecd60e21b815260040160405180910390fd5b600083815260086020908152604080832080546001600160a01b03191690556001600160a01b038881168452600783528184208054600019019055871683528083208054600101905585835260069091528120600160e11b4260a01b87178117909155831690036118a05760018301600081815260066020526040812054900361189e57600254811461189e5760008181526006602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610db6828260405180602001604052806000815250611a9c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119879033908990889088906004016121ac565b6020604051808303816000875af19250505080156119c2575060408051601f3d908101601f191682019092526119bf918101906121e9565b60015b611a20573d8080156119f0576040519150601f19603f3d011682016040523d82523d6000602084013e6119f5565b606091505b508051600003611a18576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060601280546108039061206d565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611a8a57600183039250600a81066030018353600a9004611a6c565b50819003601f19909101908152919050565b6002546001600160a01b038416611ac557604051622e076360e81b815260040160405180910390fd5b82600003611ae65760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526007602090815260408083208054680100000000000000018902019055848352600690915290204260a01b86176001861460e11b1790558190818501903b15611bbb575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b846000878480600101955087611952565b611ba1576040516368d2bf6b60e11b815260040160405180910390fd5b808210611b39578260025414611bb657600080fd5b611c00565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611bbc575b50600255611590600085838684565b828054611c1b9061206d565b90600052602060002090601f016020900481019282611c3d5760008555611c83565b82601f10611c5657805160ff1916838001178555611c83565b82800160010185558215611c83579182015b82811115611c83578251825591602001919060010190611c68565b50611c8f929150611c93565b5090565b5b80821115611c8f5760008155600101611c94565b80356001600160a01b0381168114611cbf57600080fd5b919050565b600060208284031215611cd657600080fd5b61161382611ca8565b6001600160e01b031981168114610a8857600080fd5b600060208284031215611d0757600080fd5b813561161381611cdf565b60005b83811015611d2d578181015183820152602001611d15565b838111156115905750506000910152565b60008151808452611d56816020860160208601611d12565b601f01601f19169290920160200192915050565b6020815260006116136020830184611d3e565b600060208284031215611d8f57600080fd5b5035919050565b60008060408385031215611da957600080fd5b611db283611ca8565b946020939093013593505050565b600080600060608486031215611dd557600080fd5b611dde84611ca8565b9250611dec60208501611ca8565b9150604084013590509250925092565b600060208284031215611e0e57600080fd5b813560ff8116811461161357600080fd5b80358015158114611cbf57600080fd5b600060208284031215611e4157600080fd5b61161382611e1f565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e7b57611e7b611e4a565b604051601f8501601f19908116603f01168101908282118183101715611ea357611ea3611e4a565b81604052809350858152868686011115611ebc57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ee857600080fd5b813567ffffffffffffffff811115611eff57600080fd5b8201601f81018413611f1057600080fd5b611a3684823560208401611e60565b60008060208385031215611f3257600080fd5b823567ffffffffffffffff80821115611f4a57600080fd5b818501915085601f830112611f5e57600080fd5b813581811115611f6d57600080fd5b8660208260051b8501011115611f8257600080fd5b60209290920196919550909350505050565b60008060408385031215611fa757600080fd5b611fb083611ca8565b9150611fbe60208401611e1f565b90509250929050565b60008060008060808587031215611fdd57600080fd5b611fe685611ca8565b9350611ff460208601611ca8565b925060408501359150606085013567ffffffffffffffff81111561201757600080fd5b8501601f8101871361202857600080fd5b61203787823560208401611e60565b91505092959194509250565b6000806040838503121561205657600080fd5b61205f83611ca8565b9150611fbe60208401611ca8565b600181811c9082168061208157607f821691505b6020821081036120a157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612105576121056120dc565b500190565b600060ff821660ff84168060ff03821115612127576121276120dc565b019392505050565b6000816000190483118215151615612149576121496120dc565b500290565b634e487b7160e01b600052603260045260246000fd5b600060018201612176576121766120dc565b5060010190565b6000835161218f818460208801611d12565b8351908301906121a3818360208801611d12565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121df90830184611d3e565b9695505050505050565b6000602082840312156121fb57600080fd5b815161161381611cdf56fea26469706673582212206f31f41ec5ab48b3ec0863a63b0147c344fb5ba0c653c2e2f988eeccb846ff5b64736f6c634300080e0033

Deployed Bytecode Sourcemap

198:4677:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1873:195;;;;;;;;;;-1:-1:-1;1873:195:5;;;;;:::i;:::-;;:::i;:::-;;;529:25:6;;;517:2;502:18;1873:195:5;;;;;;;;4874:607:3;;;;;;;;;;-1:-1:-1;4874:607:3;;;;;:::i;:::-;;:::i;:::-;;;1116:14:6;;1109:22;1091:41;;1079:2;1064:18;4874:607:3;951:187:6;9762:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11763:200::-;;;;;;;;;;-1:-1:-1;11763:200:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2243:32:6;;;2225:51;;2213:2;2198:18;11763:200:3;2079:203:6;11239:463:3;;;;;;;;;;-1:-1:-1;11239:463:3;;;;;:::i;:::-;;:::i;:::-;;2770:96:5;;;;;;;;;;-1:-1:-1;2770:96:5;;;;;:::i;:::-;;:::i;3957:309:3:-;;;;;;;;;;-1:-1:-1;4219:12:3;;4203:13;;:28;3957:309;;912:33:5;;;;;;;;;;-1:-1:-1;912:33:5;;;;;;;;12623:164:3;;;;;;;;;;-1:-1:-1;12623:164:3;;;;;:::i;:::-;;:::i;4486:239:5:-;;;;;;;;;;-1:-1:-1;4486:239:5;;;;;:::i;:::-;;:::i;3026:745::-;;;;;;:::i;:::-;;:::i;2074:104::-;;;;;;;;;;-1:-1:-1;2074:104:5;;;;;:::i;:::-;-1:-1:-1;;;;;2155:16:5;2132:4;2155:16;;;:10;:16;;;;;;;;;2074:104;4731:142;;;;;;;;;;;;;:::i;1232:87::-;;;;;;;;;;-1:-1:-1;1232:87:5;;;;;:::i;:::-;;:::i;12853:179:3:-;;;;;;;;;;-1:-1:-1;12853:179:3;;;;;:::i;:::-;;:::i;2672:92:5:-;;;;;;;;;;-1:-1:-1;2672:92:5;;;;;:::i;:::-;;:::i;2566:100::-;;;;;;;;;;-1:-1:-1;2566:100:5;;;;;:::i;:::-;;:::i;9558:142:3:-;;;;;;;;;;-1:-1:-1;9558:142:3;;;;;:::i;:::-;;:::i;951:33:5:-;;;;;;;;;;-1:-1:-1;951:33:5;;;;;;;;;;;5540:221:3;;;;;;;;;;-1:-1:-1;5540:221:3;;;;;:::i;:::-;;:::i;1668:101:0:-;;;;;;;;;;;;;:::i;1356:511:5:-;;;;;;;;;;-1:-1:-1;1356:511:5;;;;;:::i;:::-;;:::i;386:27::-;;;;;;;;;;;;;;;;3777:677;;;;;;:::i;:::-;;:::i;346:33::-;;;;;;;;;;;;;;;;1036:85:0;;;;;;;;;;-1:-1:-1;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;1036:85;;9924:102:3;;;;;;;;;;;;;:::i;1139:87:5:-;;;;;;;;;;-1:-1:-1;1139:87:5;;;;;:::i;:::-;;:::i;12030:303:3:-;;;;;;;;;;-1:-1:-1;12030:303:3;;;;;:::i;:::-;;:::i;2184:358:5:-;;;;;;;;;;-1:-1:-1;2184:358:5;;;;;:::i;:::-;;:::i;13098:385:3:-;;;;;;;;;;-1:-1:-1;13098:385:3;;;;;:::i;:::-;;:::i;10092:313::-;;;;;;;;;;-1:-1:-1;10092:313:3;;;;;:::i;:::-;;:::i;714:52:5:-;;;;;;;;;;-1:-1:-1;714:52:5;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6451:4:6;6439:17;;;6421:36;;6409:2;6394:18;714:52:5;6279:184:6;273:31:5;;;;;;;;;;;;;;;;12399:162:3;;;;;;;;;;-1:-1:-1;12399:162:3;;;;;:::i;:::-;-1:-1:-1;;;;;12519:25:3;;;12496:4;12519:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;12399:162;1918:198:0;;;;;;;;;;-1:-1:-1;1918:198:0;;;;;:::i;:::-;;:::i;656:52:5:-;;;;;;;;;;-1:-1:-1;656:52:5;;;;;:::i;:::-;;;;;;;;;;;;;;;;469:34;;;;;;;;;;;;;;;;1873:195;1939:7;-1:-1:-1;;;;;1965:19:5;;1957:62;;;;-1:-1:-1;;;1957:62:5;;6935:2:6;1957:62:5;;;6917:21:6;6974:2;6954:18;;;6947:30;7013:32;6993:18;;;6986:60;7063:18;;1957:62:5;;;;;;;;;-1:-1:-1;;;;;;2037:24:5;;;;;:17;:24;;;;;;;1873:195::o;4874:607:3:-;4959:4;-1:-1:-1;;;;;;;;;5254:25:3;;;;:101;;-1:-1:-1;;;;;;;;;;5330:25:3;;;5254:101;:177;;;-1:-1:-1;;;;;;;;;;5406:25:3;;;5254:177;5235:196;4874:607;-1:-1:-1;;4874:607:3:o;9762:98::-;9816:13;9848:5;9841:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9762:98;:::o;11763:200::-;11831:7;11855:16;11863:7;11855;:16::i;:::-;11850:64;;11880:34;;-1:-1:-1;;;11880:34:3;;;;;;;;;;;11850:64;-1:-1:-1;11932:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;11932:24:3;;11763:200::o;11239:463::-;11311:13;11343:27;11362:7;11343:18;:27::i;:::-;11311:61;;11392:5;-1:-1:-1;;;;;11386:11:3;:2;-1:-1:-1;;;;;11386:11:3;;11382:48;;11406:24;;-1:-1:-1;;;11406:24:3;;;;;;;;;;;11382:48;27439:10;-1:-1:-1;;;;;11445:28:3;;;11441:172;;11492:44;11509:5;27439:10;12399:162;:::i;11492:44::-;11487:126;;11563:35;;-1:-1:-1;;;11563:35:3;;;;;;;;;;;11487:126;11623:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;11623:29:3;-1:-1:-1;;;;;11623:29:3;;;;;;;;;11667:28;;11623:24;;11667:28;;;;;;;11301:401;11239:463;;:::o;2770:96:5:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;27439:10:3;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2839:9:5::1;:20:::0;2770:96::o;12623:164:3:-;12752:28;12762:4;12768:2;12772:7;12752:9;:28::i;:::-;12623:164;;;:::o;4486:239:5:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;27439:10:3;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;4599:13:5::1;;4587:8;4571:13;4219:12:3::0;;4203:13;;:28;;3957:309;4571:13:5::1;:24;;;;:::i;:::-;:41;;4550:127;;;::::0;-1:-1:-1;;;4550:127:5;;8305:2:6;4550:127:5::1;::::0;::::1;8287:21:6::0;8344:2;8324:18;;;8317:30;8383:34;8363:18;;;8356:62;-1:-1:-1;;;8434:18:6;;;8427:37;8481:19;;4550:127:5::1;8103:403:6::0;4550:127:5::1;4687:31;4697:10;4709:8;4687:9;:31::i;:::-;4486:239:::0;:::o;3026:745::-;1744:1:1;2325:7;;:19;2317:63;;;;-1:-1:-1;;;2317:63:1;;8713:2:6;2317:63:1;;;8695:21:6;8752:2;8732:18;;;8725:30;8791:33;8771:18;;;8764:61;8842:18;;2317:63:1;8511:355:6;2317:63:1;1744:1;2455:7;:18;1033:9:5::1;1046:10;1033:23;1025:66;;;::::0;-1:-1:-1;;;1025:66:5;;9073:2:6;1025:66:5::1;::::0;::::1;9055:21:6::0;9112:2;9092:18;;;9085:30;9151:32;9131:18;;;9124:60;9201:18;;1025:66:5::1;8871:354:6::0;1025:66:5::1;3184:13:::2;::::0;::::2;;3176:51;;;::::0;-1:-1:-1;;;3176:51:5;;9432:2:6;3176:51:5::2;::::0;::::2;9414:21:6::0;9471:2;9451:18;;;9444:30;9510:27;9490:18;;;9483:55;9555:18;;3176:51:5::2;9230:349:6::0;3176:51:5::2;3256:10;3245:22;::::0;;;:10:::2;:22;::::0;;;;;::::2;;3237:64;;;::::0;-1:-1:-1;;;3237:64:5;;9786:2:6;3237:64:5::2;::::0;::::2;9768:21:6::0;9825:2;9805:18;;;9798:30;9864:31;9844:18;;;9837:59;9913:18;;3237:64:5::2;9584:353:6::0;3237:64:5::2;3347:9;;3335:8;3319:24;;:13;4219:12:3::0;;4203:13;;:28;;3957:309;3319:13:5::2;:24;;;;:::i;:::-;:37;;3311:72;;;::::0;-1:-1:-1;;;3311:72:5;;10144:2:6;3311:72:5::2;::::0;::::2;10126:21:6::0;10183:2;10163:18;;;10156:30;-1:-1:-1;;;10202:18:6;;;10195:52;10264:18;;3311:72:5::2;9942:346:6::0;3311:72:5::2;3460:7;::::0;3434:10:::2;3414:31;::::0;;;:19:::2;:31;::::0;;;;;:42:::2;::::0;3448:8;;3414:31:::2;;:42;:::i;:::-;:53;;;;3393:129;;;::::0;-1:-1:-1;;;3393:129:5;;10704:2:6;3393:129:5::2;::::0;::::2;10686:21:6::0;10743:2;10723:18;;;10716:30;10782:31;10762:18;;;10755:59;10831:18;;3393:129:5::2;10502:353:6::0;3393:129:5::2;3560:9;3548:8;3540:16;;:5;;:16;;;;:::i;:::-;:29;3532:57;;;::::0;-1:-1:-1;;;3532:57:5;;11235:2:6;3532:57:5::2;::::0;::::2;11217:21:6::0;11274:2;11254:18;;;11247:30;-1:-1:-1;;;11293:18:6;;;11286:45;11348:18;;3532:57:5::2;11033:339:6::0;3532:57:5::2;3616:31;3626:10;3638:8;3616:31;;:9;:31::i;:::-;3742:10;3722:31;::::0;;;:19:::2;:31;::::0;;;;;:42:::2;::::0;3756:8;;3722:31:::2;;:42;:::i;:::-;3708:10;3688:31;::::0;;;:19:::2;:31;::::0;;;;:76;;-1:-1:-1;;3688:76:5::2;;::::0;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;;2628:22:1;;3026:745:5:o;4731:142::-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;27439:10:3;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;4829:37:5::1;::::0;4798:21:::1;::::0;4837:10:::1;::::0;4829:37;::::1;;;::::0;4798:21;;4780:15:::1;4829:37:::0;4780:15;4829:37;4798:21;4837:10;4829:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;4770:103;4731:142::o:0;1232:87::-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;27439:10:3;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1291:13:5::1;:21:::0;;;::::1;;;;-1:-1:-1::0;;1291:21:5;;::::1;::::0;;;::::1;::::0;;1232:87::o;12853:179:3:-;12986:39;13003:4;13009:2;13013:7;12986:39;;;;;;;;;;;;:16;:39::i;2672:92:5:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;27439:10:3;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2739:7:5::1;:18:::0;2672:92::o;2566:100::-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;27439:10:3;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2636:23:5;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;9558:142:3:-:0;9622:7;9664:27;9683:7;9664:18;:27::i;5540:221::-;5604:7;-1:-1:-1;;;;;5627:19:3;;5623:60;;5655:28;;-1:-1:-1;;;5655:28:3;;;;;;;;;;;5623:60;-1:-1:-1;;;;;;5700:25:3;;;;;:18;:25;;;;;;1017:13;5700:54;;5540:221::o;1668:101:0:-;1082:7;1108:6;-1:-1:-1;;;;;1108:6:0;27439:10:3;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;1356:511:5:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;27439:10:3;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1444:9:5::1;1439:422;1459:20:::0;;::::1;1439:422;;;1532:1;1508:9:::0;;1518:1;1508:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;1508:26:5::1;::::0;1500:65:::1;;;::::0;-1:-1:-1;;;1500:65:5;;11711:2:6;1500:65:5::1;::::0;::::1;11693:21:6::0;11750:2;11730:18;;;11723:30;11789:28;11769:18;;;11762:56;11835:18;;1500:65:5::1;11509:350:6::0;1500:65:5::1;1606:4;1579:10;:24;1590:9;;1600:1;1590:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;1579:24:5::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;1579:24:5;;;:31;;-1:-1:-1;;1579:31:5::1;::::0;::::1;;::::0;;;::::1;::::0;;;1777:17:::1;-1:-1:-1::0;1795:9:5;;1805:1;1795:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;1777:31:5::1;-1:-1:-1::0;;;;;1777:31:5::1;;;;;;;;;;;;;:35;:73;;1849:1;1777:73;;;1815:17;:31;1833:9;;1843:1;1833:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;1815:31:5::1;-1:-1:-1::0;;;;;1815:31:5::1;;;;;;;;;;;;;1777:73;-1:-1:-1::0;1481:3:5;::::1;::::0;::::1;:::i;:::-;;;;1439:422;;3777:677:::0;1744:1:1;2325:7;;:19;2317:63;;;;-1:-1:-1;;;2317:63:1;;8713:2:6;2317:63:1;;;8695:21:6;8752:2;8732:18;;;8725:30;8791:33;8771:18;;;8764:61;8842:18;;2317:63:1;8511:355:6;2317:63:1;1744:1;2455:7;:18;1033:9:5::1;1046:10;1033:23;1025:66;;;::::0;-1:-1:-1;;;1025:66:5;;9073:2:6;1025:66:5::1;::::0;::::1;9055:21:6::0;9112:2;9092:18;;;9085:30;9151:32;9131:18;;;9124:60;9201:18;;1025:66:5::1;8871:354:6::0;1025:66:5::1;3938:13:::2;::::0;::::2;::::0;::::2;;;3930:54;;;::::0;-1:-1:-1;;;3930:54:5;;12206:2:6;3930:54:5::2;::::0;::::2;12188:21:6::0;12245:2;12225:18;;;12218:30;12284;12264:18;;;12257:58;12332:18;;3930:54:5::2;12004:352:6::0;3930:54:5::2;4030:9;;4018:8;4002:24;;:13;4219:12:3::0;;4203:13;;:28;;3957:309;4002:13:5::2;:24;;;;:::i;:::-;:37;;3994:72;;;::::0;-1:-1:-1;;;3994:72:5;;10144:2:6;3994:72:5::2;::::0;::::2;10126:21:6::0;10183:2;10163:18;;;10156:30;-1:-1:-1;;;10202:18:6;;;10195:52;10264:18;;3994:72:5::2;9942:346:6::0;3994:72:5::2;4143:7;::::0;4117:10:::2;4097:31;::::0;;;:19:::2;:31;::::0;;;;;:42:::2;::::0;4131:8;;4097:31:::2;;:42;:::i;:::-;:53;;;;4076:129;;;::::0;-1:-1:-1;;;4076:129:5;;10704:2:6;4076:129:5::2;::::0;::::2;10686:21:6::0;10743:2;10723:18;;;10716:30;10782:31;10762:18;;;10755:59;10831:18;;4076:129:5::2;10502:353:6::0;4076:129:5::2;4243:9;4231:8;4223:16;;:5;;:16;;;;:::i;:::-;:29;4215:57;;;::::0;-1:-1:-1;;;4215:57:5;;11235:2:6;4215:57:5::2;::::0;::::2;11217:21:6::0;11274:2;11254:18;;;11247:30;-1:-1:-1;;;11293:18:6;;;11286:45;11348:18;;4215:57:5::2;11033:339:6::0;4215:57:5::2;4299:31;4309:10;4321:8;4299:31;;:9;:31::i;:::-;4425:10;4405:31;::::0;;;:19:::2;:31;::::0;;;;;:42:::2;::::0;4439:8;;4405:31:::2;;:42;:::i;:::-;4391:10;4371:31;::::0;;;:19:::2;:31;::::0;;;;:76;;-1:-1:-1;;4371:76:5::2;;::::0;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;;2628:22:1;;3777:677:5:o;9924:102:3:-;9980:13;10012:7;10005:14;;;;;:::i;1139:87:5:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;27439:10:3;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1198:13:5::1;:21:::0;;-1:-1:-1;;1198:21:5::1;::::0;::::1;;::::0;;;::::1;::::0;;1139:87::o;12030:303:3:-;27439:10;-1:-1:-1;;;;;12128:31:3;;;12124:61;;12168:17;;-1:-1:-1;;;12168:17:3;;;;;;;;;;;12124:61;27439:10;12196:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;12196:49:3;;;;;;;;;;;;:60;;-1:-1:-1;;12196:60:3;;;;;;;;;;12271:55;;1091:41:6;;;12196:49:3;;27439:10;12271:55;;1064:18:6;12271:55:3;;;;;;;12030:303;;:::o;2184:358:5:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;27439:10:3;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2277:9:5::1;2272:264;2292:20:::0;;::::1;2272:264;;;2365:1;2341:9:::0;;2351:1;2341:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2341:26:5::1;::::0;2333:65:::1;;;::::0;-1:-1:-1;;;2333:65:5;;11711:2:6;2333:65:5::1;::::0;::::1;11693:21:6::0;11750:2;11730:18;;;11723:30;11789:28;11769:18;;;11762:56;11835:18;;2333:65:5::1;11509:350:6::0;2333:65:5::1;2520:5;2493:10;:24;2504:9;;2514:1;2504:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2493:24:5::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;2493:24:5;:32;;-1:-1:-1;;2493:32:5::1;::::0;::::1;;::::0;;;::::1;::::0;;2314:3;::::1;::::0;::::1;:::i;:::-;;;;2272:264;;13098:385:3::0;13259:28;13269:4;13275:2;13279:7;13259:9;:28::i;:::-;-1:-1:-1;;;;;13301:14:3;;;:19;13297:180;;13339:56;13370:4;13376:2;13380:7;13389:5;13339:30;:56::i;:::-;13334:143;;13422:40;;-1:-1:-1;;;13422:40:3;;;;;;;;;;;13334:143;13098:385;;;;:::o;10092:313::-;10165:13;10195:16;10203:7;10195;:16::i;:::-;10190:59;;10220:29;;-1:-1:-1;;;10220:29:3;;;;;;;;;;;10190:59;10260:21;10284:10;:8;:10::i;:::-;10260:34;;10317:7;10311:21;10336:1;10311:26;:87;;;;;;;;;;;;;;;;;10364:7;10373:18;10383:7;10373:9;:18::i;:::-;10347:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10311:87;10304:94;10092:313;-1:-1:-1;;;10092:313:3:o;1918:198:0:-;1082:7;1108:6;-1:-1:-1;;;;;1108:6:0;27439:10:3;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;;13038:2:6;1998:73:0::1;::::0;::::1;13020:21:6::0;13077:2;13057:18;;;13050:30;13116:34;13096:18;;;13089:62;-1:-1:-1;;;13167:18:6;;;13160:36;13213:19;;1998:73:0::1;12836:402:6::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;13729:268:3:-:0;13786:4;13873:13;;13863:7;:23;13821:150;;;;-1:-1:-1;;13923:26:3;;;;:17;:26;;;;;;-1:-1:-1;;;13923:43:3;:48;;13729:268::o;7135:1105::-;7202:7;7236;7334:13;;7327:4;:20;7323:853;;;7371:14;7388:23;;;:17;:23;;;;;;;-1:-1:-1;;;7475:23:3;;:28;;7471:687;;7986:111;7993:6;8003:1;7993:11;7986:111;;-1:-1:-1;;;8063:6:3;8045:25;;;;:17;:25;;;;;;7986:111;;7471:687;7349:827;7323:853;8202:31;;-1:-1:-1;;;8202:31:3;;;;;;;;;;;18829:2460;18939:27;18969;18988:7;18969:18;:27::i;:::-;18939:57;;19052:4;-1:-1:-1;;;;;19011:45:3;19027:19;-1:-1:-1;;;;;19011:45:3;;19007:86;;19065:28;;-1:-1:-1;;;19065:28:3;;;;;;;;;;;19007:86;19104:22;27439:10;-1:-1:-1;;;;;19130:27:3;;;;:86;;-1:-1:-1;19173:43:3;19190:4;27439:10;12399:162;:::i;19173:43::-;19130:145;;;-1:-1:-1;27439:10:3;19232:20;19244:7;19232:11;:20::i;:::-;-1:-1:-1;;;;;19232:43:3;;19130:145;19104:172;;19292:17;19287:66;;19318:35;;-1:-1:-1;;;19318:35:3;;;;;;;;;;;19287:66;-1:-1:-1;;;;;19367:16:3;;19363:52;;19392:23;;-1:-1:-1;;;19392:23:3;;;;;;;;;;;19363:52;19539:24;;;;:15;:24;;;;;;;;19532:31;;-1:-1:-1;;;;;;19532:31:3;;;-1:-1:-1;;;;;19924:24:3;;;;;:18;:24;;;;;19922:26;;-1:-1:-1;;19922:26:3;;;19992:22;;;;;;;19990:24;;-1:-1:-1;19990:24:3;;;20278:26;;;:17;:26;;;;;-1:-1:-1;;;20364:15:3;1656:3;20364:41;20323:83;;:126;;20278:171;;;20566:46;;:51;;20562:616;;20669:1;20659:11;;20637:19;20790:30;;;:17;:30;;;;;;:35;;20786:378;;20926:13;;20911:11;:28;20907:239;;21071:30;;;;:17;:30;;;;;:52;;;20907:239;20619:559;20562:616;21222:7;21218:2;-1:-1:-1;;;;;21203:27:3;21212:4;-1:-1:-1;;;;;21203:27:3;;;;;;;;;;;18929:2360;;18829:2460;;;:::o;14076:102::-;14144:27;14154:2;14158:8;14144:27;;;;;;;;;;;;:9;:27::i;2270:187:0:-;2343:16;2362:6;;-1:-1:-1;;;;;2378:17:0;;;-1:-1:-1;;;;;;2378:17:0;;;;;;2410:40;;2362:6;;;;;;;2410:40;;2343:16;2410:40;2333:124;2270:187;:::o;24893:697:3:-;25071:88;;-1:-1:-1;;;25071:88:3;;25051:4;;-1:-1:-1;;;;;25071:45:3;;;;;:88;;27439:10;;25138:4;;25144:7;;25153:5;;25071:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25071:88:3;;;;;;;;-1:-1:-1;;25071:88:3;;;;;;;;;;;;:::i;:::-;;;25067:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25349:6;:13;25366:1;25349:18;25345:229;;25394:40;;-1:-1:-1;;;25394:40:3;;;;;;;;;;;25345:229;25534:6;25528:13;25519:6;25515:2;25511:15;25504:38;25067:517;-1:-1:-1;;;;;;25227:64:3;-1:-1:-1;;;25227:64:3;;-1:-1:-1;25067:517:3;24893:697;;;;;;:::o;2890:112:5:-;2950:13;2982;2975:20;;;;;:::i;27557:1904:3:-;28020:4;28014:11;;28027:3;28010:21;;28103:17;;;;28786:11;;;28667:5;28916:2;28930;28920:13;;28912:22;28786:11;28899:36;28970:2;28960:13;;28561:666;28988:4;28561:666;;;29158:1;29153:3;29149:11;29142:18;;29208:2;29202:4;29198:13;29194:2;29190:22;29185:3;29177:36;29081:2;29071:13;;28561:666;;;-1:-1:-1;29255:13:3;;;-1:-1:-1;;29368:12:3;;;29426:19;;;29368:12;27557:1904;-1:-1:-1;27557:1904:3:o;14538:2184::-;14679:13;;-1:-1:-1;;;;;14706:16:3;;14702:48;;14731:19;;-1:-1:-1;;;14731:19:3;;;;;;;;;;;14702:48;14764:8;14776:1;14764:13;14760:44;;14786:18;;-1:-1:-1;;;14786:18:3;;;;;;;;;;;14760:44;-1:-1:-1;;;;;15340:22:3;;;;;;:18;:22;;;;1151:2;15340:22;;;:70;;15378:31;15366:44;;15340:70;;;15646:31;;;:17;:31;;;;;15737:15;1656:3;15737:41;15696:83;;-1:-1:-1;15814:13:3;;1909:3;15799:56;15696:160;15646:210;;:31;;15934:23;;;;15976:14;:19;15972:622;;16015:308;16045:38;;16070:12;;-1:-1:-1;;;;;16045:38:3;;;16062:1;;16045:38;;16062:1;;16045:38;16110:69;16149:1;16153:2;16157:14;;;;;;16173:5;16110:30;:69::i;:::-;16105:172;;16214:40;;-1:-1:-1;;;16214:40:3;;;;;;;;;;;16105:172;16318:3;16303:12;:18;16015:308;;16402:12;16385:13;;:29;16381:43;;16416:8;;;16381:43;15972:622;;;16463:117;16493:40;;16518:14;;;;;-1:-1:-1;;;;;16493:40:3;;;16510:1;;16493:40;;16510:1;;16493:40;16575:3;16560:12;:18;16463:117;;15972:622;-1:-1:-1;16607:13:3;:28;16655:60;16684:1;16688:2;16692:12;16706:8;16655:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:6;82:20;;-1:-1:-1;;;;;131:31:6;;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;565:131::-;-1:-1:-1;;;;;;639:32:6;;629:43;;619:71;;686:1;683;676:12;701:245;759:6;812:2;800:9;791:7;787:23;783:32;780:52;;;828:1;825;818:12;780:52;867:9;854:23;886:30;910:5;886:30;:::i;1143:258::-;1215:1;1225:113;1239:6;1236:1;1233:13;1225:113;;;1315:11;;;1309:18;1296:11;;;1289:39;1261:2;1254:10;1225:113;;;1356:6;1353:1;1350:13;1347:48;;;-1:-1:-1;;1391:1:6;1373:16;;1366:27;1143:258::o;1406:::-;1448:3;1486:5;1480:12;1513:6;1508:3;1501:19;1529:63;1585:6;1578:4;1573:3;1569:14;1562:4;1555:5;1551:16;1529:63;:::i;:::-;1646:2;1625:15;-1:-1:-1;;1621:29:6;1612:39;;;;1653:4;1608:50;;1406:258;-1:-1:-1;;1406:258:6:o;1669:220::-;1818:2;1807:9;1800:21;1781:4;1838:45;1879:2;1868:9;1864:18;1856:6;1838:45;:::i;1894:180::-;1953:6;2006:2;1994:9;1985:7;1981:23;1977:32;1974:52;;;2022:1;2019;2012:12;1974:52;-1:-1:-1;2045:23:6;;1894:180;-1:-1:-1;1894:180:6:o;2287:254::-;2355:6;2363;2416:2;2404:9;2395:7;2391:23;2387:32;2384:52;;;2432:1;2429;2422:12;2384:52;2455:29;2474:9;2455:29;:::i;:::-;2445:39;2531:2;2516:18;;;;2503:32;;-1:-1:-1;;;2287:254:6:o;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;2879:269::-;2936:6;2989:2;2977:9;2968:7;2964:23;2960:32;2957:52;;;3005:1;3002;2995:12;2957:52;3044:9;3031:23;3094:4;3087:5;3083:16;3076:5;3073:27;3063:55;;3114:1;3111;3104:12;3153:160;3218:20;;3274:13;;3267:21;3257:32;;3247:60;;3303:1;3300;3293:12;3318:180;3374:6;3427:2;3415:9;3406:7;3402:23;3398:32;3395:52;;;3443:1;3440;3433:12;3395:52;3466:26;3482:9;3466:26;:::i;3503:127::-;3564:10;3559:3;3555:20;3552:1;3545:31;3595:4;3592:1;3585:15;3619:4;3616:1;3609:15;3635:632;3700:5;3730:18;3771:2;3763:6;3760:14;3757:40;;;3777:18;;:::i;:::-;3852:2;3846:9;3820:2;3906:15;;-1:-1:-1;;3902:24:6;;;3928:2;3898:33;3894:42;3882:55;;;3952:18;;;3972:22;;;3949:46;3946:72;;;3998:18;;:::i;:::-;4038:10;4034:2;4027:22;4067:6;4058:15;;4097:6;4089;4082:22;4137:3;4128:6;4123:3;4119:16;4116:25;4113:45;;;4154:1;4151;4144:12;4113:45;4204:6;4199:3;4192:4;4184:6;4180:17;4167:44;4259:1;4252:4;4243:6;4235;4231:19;4227:30;4220:41;;;;3635:632;;;;;:::o;4272:451::-;4341:6;4394:2;4382:9;4373:7;4369:23;4365:32;4362:52;;;4410:1;4407;4400:12;4362:52;4450:9;4437:23;4483:18;4475:6;4472:30;4469:50;;;4515:1;4512;4505:12;4469:50;4538:22;;4591:4;4583:13;;4579:27;-1:-1:-1;4569:55:6;;4620:1;4617;4610:12;4569:55;4643:74;4709:7;4704:2;4691:16;4686:2;4682;4678:11;4643:74;:::i;4728:615::-;4814:6;4822;4875:2;4863:9;4854:7;4850:23;4846:32;4843:52;;;4891:1;4888;4881:12;4843:52;4931:9;4918:23;4960:18;5001:2;4993:6;4990:14;4987:34;;;5017:1;5014;5007:12;4987:34;5055:6;5044:9;5040:22;5030:32;;5100:7;5093:4;5089:2;5085:13;5081:27;5071:55;;5122:1;5119;5112:12;5071:55;5162:2;5149:16;5188:2;5180:6;5177:14;5174:34;;;5204:1;5201;5194:12;5174:34;5257:7;5252:2;5242:6;5239:1;5235:14;5231:2;5227:23;5223:32;5220:45;5217:65;;;5278:1;5275;5268:12;5217:65;5309:2;5301:11;;;;;5331:6;;-1:-1:-1;4728:615:6;;-1:-1:-1;;;;4728:615:6:o;5348:254::-;5413:6;5421;5474:2;5462:9;5453:7;5449:23;5445:32;5442:52;;;5490:1;5487;5480:12;5442:52;5513:29;5532:9;5513:29;:::i;:::-;5503:39;;5561:35;5592:2;5581:9;5577:18;5561:35;:::i;:::-;5551:45;;5348:254;;;;;:::o;5607:667::-;5702:6;5710;5718;5726;5779:3;5767:9;5758:7;5754:23;5750:33;5747:53;;;5796:1;5793;5786:12;5747:53;5819:29;5838:9;5819:29;:::i;:::-;5809:39;;5867:38;5901:2;5890:9;5886:18;5867:38;:::i;:::-;5857:48;;5952:2;5941:9;5937:18;5924:32;5914:42;;6007:2;5996:9;5992:18;5979:32;6034:18;6026:6;6023:30;6020:50;;;6066:1;6063;6056:12;6020:50;6089:22;;6142:4;6134:13;;6130:27;-1:-1:-1;6120:55:6;;6171:1;6168;6161:12;6120:55;6194:74;6260:7;6255:2;6242:16;6237:2;6233;6229:11;6194:74;:::i;:::-;6184:84;;;5607:667;;;;;;;:::o;6468:260::-;6536:6;6544;6597:2;6585:9;6576:7;6572:23;6568:32;6565:52;;;6613:1;6610;6603:12;6565:52;6636:29;6655:9;6636:29;:::i;:::-;6626:39;;6684:38;6718:2;6707:9;6703:18;6684:38;:::i;7092:380::-;7171:1;7167:12;;;;7214;;;7235:61;;7289:4;7281:6;7277:17;7267:27;;7235:61;7342:2;7334:6;7331:14;7311:18;7308:38;7305:161;;7388:10;7383:3;7379:20;7376:1;7369:31;7423:4;7420:1;7413:15;7451:4;7448:1;7441:15;7305:161;;7092:380;;;:::o;7477:356::-;7679:2;7661:21;;;7698:18;;;7691:30;7757:34;7752:2;7737:18;;7730:62;7824:2;7809:18;;7477:356::o;7838:127::-;7899:10;7894:3;7890:20;7887:1;7880:31;7930:4;7927:1;7920:15;7954:4;7951:1;7944:15;7970:128;8010:3;8041:1;8037:6;8034:1;8031:13;8028:39;;;8047:18;;:::i;:::-;-1:-1:-1;8083:9:6;;7970:128::o;10293:204::-;10331:3;10367:4;10364:1;10360:12;10399:4;10396:1;10392:12;10434:3;10428:4;10424:14;10419:3;10416:23;10413:49;;;10442:18;;:::i;:::-;10478:13;;10293:204;-1:-1:-1;;;10293:204:6:o;10860:168::-;10900:7;10966:1;10962;10958:6;10954:14;10951:1;10948:21;10943:1;10936:9;10929:17;10925:45;10922:71;;;10973:18;;:::i;:::-;-1:-1:-1;11013:9:6;;10860:168::o;11377:127::-;11438:10;11433:3;11429:20;11426:1;11419:31;11469:4;11466:1;11459:15;11493:4;11490:1;11483:15;11864:135;11903:3;11924:17;;;11921:43;;11944:18;;:::i;:::-;-1:-1:-1;11991:1:6;11980:13;;11864:135::o;12361:470::-;12540:3;12578:6;12572:13;12594:53;12640:6;12635:3;12628:4;12620:6;12616:17;12594:53;:::i;:::-;12710:13;;12669:16;;;;12732:57;12710:13;12669:16;12766:4;12754:17;;12732:57;:::i;:::-;12805:20;;12361:470;-1:-1:-1;;;;12361:470:6:o;13243:489::-;-1:-1:-1;;;;;13512:15:6;;;13494:34;;13564:15;;13559:2;13544:18;;13537:43;13611:2;13596:18;;13589:34;;;13659:3;13654:2;13639:18;;13632:31;;;13437:4;;13680:46;;13706:19;;13698:6;13680:46;:::i;:::-;13672:54;13243:489;-1:-1:-1;;;;;;13243:489:6:o;13737:249::-;13806:6;13859:2;13847:9;13838:7;13834:23;13830:32;13827:52;;;13875:1;13872;13865:12;13827:52;13907:9;13901:16;13926:30;13950:5;13926:30;:::i

Swarm Source

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