ETH Price: $3,378.84 (-0.84%)
Gas: 4 Gwei

Token

Brut(e) ((e))
 

Overview

Max Total Supply

1,087 (e)

Holders

760

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 (e)
0x7e0c1d963b4c8d017950c9bc8070bccb2ad9560e
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:
Brute721APRTS

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-01
*/

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

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @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)
        }
    }
}

pragma solidity ^0.8.4;

contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

contract Brute721APRTS is ERC721A, Ownable {
    string private baseURI = "https://brute-meta.herokuapp.com/nft/";
    string public contractURI = "https://brute-meta.herokuapp.com/meta";
    //Brute IMPL
    uint256 public maxSupply = 6666 + 1; // 1 extra to avoid equality checks and save gas on mint
    uint256 public mintCost = 25 * 10**15; //0.025 ETH / 25 Finney | 1 ETH = 1 * 10**18
    uint256 public maxMint = 6 + 1; //1 extra to avoid equality checks and save gas on mint
    string public provenance;
    //Giveaway IMPL
    mapping(address => bool) public giveawayClaimed;
    uint256 public giveawayCount = 666;
    uint256 public giveawaysDone;
    //Sale Control IMPL - TS
    uint256 public publicSaleStart = 1654365600; //Sat Jun 04 2022 18:00:00 GMT+0000

    function saleActive() public view returns (bool) {
        if (block.timestamp > publicSaleStart) {
            return true;
        } else {
            return false;
        }
    }

    //Opensea Proxy Registry
    address proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1; //OpenSea Mainnet Proxy

    constructor() ERC721A("Brut(e)", "(e)") {
        _safeMint(msg.sender, 1);
    }

    // Token URI Setup
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
        return string(abi.encodePacked(baseURI, _toString(tokenId)));
    }

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

    function exists(uint256 tokenId) public view returns (bool) {
        return _exists(tokenId);
    }

    // Contract URI
    function setContractURI(string calldata _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

    // Brute IMPL Setup
    function setProvenance(string calldata _provenance) external onlyOwner {
        provenance = _provenance;
    }

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

    // Minting
    function freeMint() external payable {
        require(block.timestamp > publicSaleStart, "Sale not active");
        require(giveawaysDone < giveawayCount, "All giveaways were claimed");
        require(!giveawayClaimed[msg.sender], "Giveaway already claimed");
        require(totalSupply() + 1 < maxSupply, "Mint would exceed max supply");
        giveawayClaimed[msg.sender] = true;
        giveawaysDone++;
        _safeMint(msg.sender, 1);
    }

    function publicMint(uint256 quantity) external payable {
        require(block.timestamp > publicSaleStart, "Sale not active");
        require(
            msg.value == quantity * mintCost,
            "Ether sent doesn't match minting price"
        );
        require(quantity < maxMint, "Quantity exceeds maximum allowed");
        require(
            totalSupply() + quantity < maxSupply,
            "Mint would exceed max supply"
        );
        _safeMint(msg.sender, quantity);
    }

    //Opensea Proxy
    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }
}

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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"payable","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":"","type":"address"}],"name":"giveawayClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giveawayCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giveawaysDone","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenance","type":"string"}],"name":"setProvenance","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"}]

60e060405260256080818152906200212360a039805162000029916009916020909101906200041b565b50604051806060016040528060258152602001620021486025913980516200005a91600a916020909101906200041b565b50611a0b600b556658d15e17628000600c556007600d5561029a60105563629b9da0601255601380546001600160a01b03191673a5409ec958c83c3f309868babaca7c86dcb077c1179055348015620000b257600080fd5b5060408051808201825260078152664272757428652960c81b60208083019182528351808501909452600384526228652960e81b908401528151919291620000fd916002916200041b565b508051620001139060039060208401906200041b565b50506000805550620001253362000138565b620001323360016200018a565b620005ac565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001ac828260405180602001604052806000815250620001b060201b60201c565b5050565b6000546001600160a01b038416620001da57604051622e076360e81b815260040160405180910390fd5b82620001f95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15620002c5575b60405182906001600160a01b038816906000906000805160206200216d833981519152908290a460018201916200028a906000908890876200031a565b620002a8576040516368d2bf6b60e11b815260040160405180910390fd5b8082106200024d578260005414620002bf57600080fd5b620002fa565b5b6040516001830192906001600160a01b038816906000906000805160206200216d833981519152908290a4808210620002c6575b50600090815562000314908583866001600160e01b038516565b50505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029062000351903390899088908890600401620004f4565b602060405180830381600087803b1580156200036c57600080fd5b505af19250505080156200039f575060408051601f3d908101601f191682019092526200039c91810190620004c1565b60015b620003fe573d808015620003d0576040519150601f19603f3d011682016040523d82523d6000602084013e620003d5565b606091505b508051620003f6576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b82805462000429906200056f565b90600052602060002090601f0160209004810192826200044d576000855562000498565b82601f106200046857805160ff191683800117855562000498565b8280016001018555821562000498579182015b82811115620004985782518255916020019190600101906200047b565b50620004a6929150620004aa565b5090565b5b80821115620004a65760008155600101620004ab565b600060208284031215620004d457600080fd5b81516001600160e01b031981168114620004ed57600080fd5b9392505050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620005435785810182015185820160a00152810162000525565b828111156200055657600060a084870101525b5050601f01601f19169190910160a00195945050505050565b600181811c908216806200058457607f821691505b60208210811415620005a657634e487b7160e01b600052602260045260246000fd5b50919050565b611b6780620005bc6000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063b88d4fde116100a0578063e8a3d4851161006f578063e8a3d48514610552578063e985e9c514610567578063e9be0f3f14610587578063f2fde38b1461059d578063ffe630b5146105bd57600080fd5b8063b88d4fde146104e6578063bdb4b84814610506578063c87b56dd1461051c578063d5abeb011461053c57600080fd5b80638da5cb5b116100dc5780638da5cb5b14610473578063938e3d7b1461049157806395d89b41146104b1578063a22cb465146104c657600080fd5b806370a08231146103f8578063715018a6146104185780637501f7411461042d57806385d9d0f81461044357600080fd5b80633360caa0116101905780634f558e791161015f5780634f558e791461037b57806355f804b31461039b5780635b70ea9f146103bb5780636352211e146103c357806368428a1b146103e357600080fd5b80633360caa01461031a5780633ccfd60b1461033057806342842e0e14610345578063457e45351461036557600080fd5b80630f7309e8116101cc5780630f7309e8146102af57806318160ddd146102c457806323b872dd146102e75780632db115441461030757600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e6102193660046117cb565b6105dd565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061024861062f565b60405161022a91906119d9565b34801561026157600080fd5b50610275610270366004611894565b6106c1565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a836600461179f565b610705565b005b3480156102bb57600080fd5b506102486107d8565b3480156102d057600080fd5b50600154600054035b60405190815260200161022a565b3480156102f357600080fd5b506102ad61030236600461164b565b610866565b6102ad610315366004611894565b610876565b34801561032657600080fd5b506102d960125481565b34801561033c57600080fd5b506102ad6109ee565b34801561035157600080fd5b506102ad61036036600461164b565b610a4b565b34801561037157600080fd5b506102d960115481565b34801561038757600080fd5b5061021e610396366004611894565b610a66565b3480156103a757600080fd5b506102ad6103b6366004611822565b610a71565b6102ad610aa7565b3480156103cf57600080fd5b506102756103de366004611894565b610c39565b3480156103ef57600080fd5b5061021e610c44565b34801561040457600080fd5b506102d96104133660046115f5565b610c5c565b34801561042457600080fd5b506102ad610cab565b34801561043957600080fd5b506102d9600d5481565b34801561044f57600080fd5b5061021e61045e3660046115f5565b600f6020526000908152604090205460ff1681565b34801561047f57600080fd5b506008546001600160a01b0316610275565b34801561049d57600080fd5b506102ad6104ac366004611822565b610cdf565b3480156104bd57600080fd5b50610248610d15565b3480156104d257600080fd5b506102ad6104e136600461176c565b610d24565b3480156104f257600080fd5b506102ad61050136600461168c565b610dba565b34801561051257600080fd5b506102d9600c5481565b34801561052857600080fd5b50610248610537366004611894565b610e04565b34801561054857600080fd5b506102d9600b5481565b34801561055e57600080fd5b50610248610e5e565b34801561057357600080fd5b5061021e610582366004611612565b610e6b565b34801561059357600080fd5b506102d960105481565b3480156105a957600080fd5b506102ad6105b83660046115f5565b610f39565b3480156105c957600080fd5b506102ad6105d8366004611822565b610fd1565b60006301ffc9a760e01b6001600160e01b03198316148061060e57506380ac58cd60e01b6001600160e01b03198316145b806106295750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461063e90611a84565b80601f016020809104026020016040519081016040528092919081815260200182805461066a90611a84565b80156106b75780601f1061068c576101008083540402835291602001916106b7565b820191906000526020600020905b81548152906001019060200180831161069a57829003601f168201915b5050505050905090565b60006106cc82611007565b6106e9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107108261102e565b9050806001600160a01b0316836001600160a01b031614156107455760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461077c5761075f8133610e6b565b61077c576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600e80546107e590611a84565b80601f016020809104026020016040519081016040528092919081815260200182805461081190611a84565b801561085e5780601f106108335761010080835404028352916020019161085e565b820191906000526020600020905b81548152906001019060200180831161084157829003601f168201915b505050505081565b610871838383611096565b505050565b60125442116108be5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b60448201526064015b60405180910390fd5b600c546108cb9082611a39565b34146109285760405162461bcd60e51b815260206004820152602660248201527f45746865722073656e7420646f65736e2774206d61746368206d696e74696e6760448201526520707269636560d01b60648201526084016108b5565b600d5481106109795760405162461bcd60e51b815260206004820181905260248201527f5175616e746974792065786365656473206d6178696d756d20616c6c6f77656460448201526064016108b5565b600b548161098a6001546000540390565b6109949190611a21565b106109e15760405162461bcd60e51b815260206004820152601c60248201527f4d696e7420776f756c6420657863656564206d617820737570706c790000000060448201526064016108b5565b6109eb3382611239565b50565b6008546001600160a01b03163314610a185760405162461bcd60e51b81526004016108b5906119ec565b6040514790339082156108fc029083906000818181858888f19350505050158015610a47573d6000803e3d6000fd5b5050565b61087183838360405180602001604052806000815250610dba565b600061062982611007565b6008546001600160a01b03163314610a9b5760405162461bcd60e51b81526004016108b5906119ec565b6108716009838361155c565b6012544211610aea5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b60448201526064016108b5565b60105460115410610b3d5760405162461bcd60e51b815260206004820152601a60248201527f416c6c20676976656177617973207765726520636c61696d656400000000000060448201526064016108b5565b336000908152600f602052604090205460ff1615610b9d5760405162461bcd60e51b815260206004820152601860248201527f476976656177617920616c726561647920636c61696d6564000000000000000060448201526064016108b5565b600b5460015460005403610bb2906001611a21565b10610bff5760405162461bcd60e51b815260206004820152601c60248201527f4d696e7420776f756c6420657863656564206d617820737570706c790000000060448201526064016108b5565b336000908152600f60205260408120805460ff191660011790556011805491610c2783611abf565b9190505550610c37336001611239565b565b60006106298261102e565b6000601254421115610c565750600190565b50600090565b60006001600160a01b038216610c85576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610cd55760405162461bcd60e51b81526004016108b5906119ec565b610c376000611253565b6008546001600160a01b03163314610d095760405162461bcd60e51b81526004016108b5906119ec565b610871600a838361155c565b60606003805461063e90611a84565b6001600160a01b038216331415610d4e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dc5848484611096565b6001600160a01b0383163b15610dfe57610de1848484846112a5565b610dfe576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610e0f82611007565b610e2c57604051630a14c4b560e41b815260040160405180910390fd5b6009610e378361139c565b604051602001610e489291906118f5565b6040516020818303038152906040529050919050565b600a80546107e590611a84565b60135460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b158015610eb857600080fd5b505afa158015610ecc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef09190611805565b6001600160a01b03161415610f09576001915050610629565b50506001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b03163314610f635760405162461bcd60e51b81526004016108b5906119ec565b6001600160a01b038116610fc85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b5565b6109eb81611253565b6008546001600160a01b03163314610ffb5760405162461bcd60e51b81526004016108b5906119ec565b610871600e838361155c565b6000805482108015610629575050600090815260046020526040902054600160e01b161590565b60008160005481101561107d57600081815260046020526040902054600160e01b811661107b575b80611074575060001901600081815260046020526040902054611056565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b60006110a18261102e565b9050836001600160a01b0316816001600160a01b0316146110d45760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806110f257506110f28533610e6b565b8061110d575033611102846106c1565b6001600160a01b0316145b90508061112d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661115457604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b8617811790915582166111f157600183016000818152600460205260409020546111ef5760005481146111ef5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610a478282604051806020016040528060008152506113eb565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112da90339089908890889060040161199c565b602060405180830381600087803b1580156112f457600080fd5b505af1925050508015611324575060408051601f3d908101601f19168201909252611321918101906117e8565b60015b61137f573d808015611352576040519150601f19603f3d011682016040523d82523d6000602084013e611357565b606091505b508051611377576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b604080516080810191829052607f0190826030600a8206018353600a90045b80156113d957600183039250600a81066030018353600a90046113bb565b50819003601f19909101908152919050565b6000546001600160a01b03841661141457604051622e076360e81b815260040160405180910390fd5b826114325760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611507575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46114d060008784806001019550876112a5565b6114ed576040516368d2bf6b60e11b815260040160405180910390fd5b80821061148557826000541461150257600080fd5b61154c565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611508575b506000908155610dfe9085838684565b82805461156890611a84565b90600052602060002090601f01602090048101928261158a57600085556115d0565b82601f106115a35782800160ff198235161785556115d0565b828001600101855582156115d0579182015b828111156115d05782358255916020019190600101906115b5565b506115dc9291506115e0565b5090565b5b808211156115dc57600081556001016115e1565b60006020828403121561160757600080fd5b813561107481611b06565b6000806040838503121561162557600080fd5b823561163081611b06565b9150602083013561164081611b06565b809150509250929050565b60008060006060848603121561166057600080fd5b833561166b81611b06565b9250602084013561167b81611b06565b929592945050506040919091013590565b600080600080608085870312156116a257600080fd5b84356116ad81611b06565b935060208501356116bd81611b06565b925060408501359150606085013567ffffffffffffffff808211156116e157600080fd5b818701915087601f8301126116f557600080fd5b81358181111561170757611707611af0565b604051601f8201601f19908116603f0116810190838211818310171561172f5761172f611af0565b816040528281528a602084870101111561174857600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561177f57600080fd5b823561178a81611b06565b91506020830135801515811461164057600080fd5b600080604083850312156117b257600080fd5b82356117bd81611b06565b946020939093013593505050565b6000602082840312156117dd57600080fd5b813561107481611b1b565b6000602082840312156117fa57600080fd5b815161107481611b1b565b60006020828403121561181757600080fd5b815161107481611b06565b6000806020838503121561183557600080fd5b823567ffffffffffffffff8082111561184d57600080fd5b818501915085601f83011261186157600080fd5b81358181111561187057600080fd5b86602082850101111561188257600080fd5b60209290920196919550909350505050565b6000602082840312156118a657600080fd5b5035919050565b600081518084526118c5816020860160208601611a58565b601f01601f19169290920160200192915050565b600081516118eb818560208601611a58565b9290920192915050565b600080845481600182811c91508083168061191157607f831692505b602080841082141561193157634e487b7160e01b86526022600452602486fd5b818015611945576001811461195657611983565b60ff19861689528489019650611983565b60008b81526020902060005b8681101561197b5781548b820152908501908301611962565b505084890196505b50505050505061199381856118d9565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119cf908301846118ad565b9695505050505050565b60208152600061107460208301846118ad565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611a3457611a34611ada565b500190565b6000816000190483118215151615611a5357611a53611ada565b500290565b60005b83811015611a73578181015183820152602001611a5b565b83811115610dfe5750506000910152565b600181811c90821680611a9857607f821691505b60208210811415611ab957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ad357611ad3611ada565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146109eb57600080fd5b6001600160e01b0319811681146109eb57600080fdfea2646970667358221220dea7c5ddefcc1d457ed6f7e7ced091d0a8e043405bf8499a98dd84c6a8bae46a64736f6c6343000807003368747470733a2f2f62727574652d6d6574612e6865726f6b756170702e636f6d2f6e66742f68747470733a2f2f62727574652d6d6574612e6865726f6b756170702e636f6d2f6d657461ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063b88d4fde116100a0578063e8a3d4851161006f578063e8a3d48514610552578063e985e9c514610567578063e9be0f3f14610587578063f2fde38b1461059d578063ffe630b5146105bd57600080fd5b8063b88d4fde146104e6578063bdb4b84814610506578063c87b56dd1461051c578063d5abeb011461053c57600080fd5b80638da5cb5b116100dc5780638da5cb5b14610473578063938e3d7b1461049157806395d89b41146104b1578063a22cb465146104c657600080fd5b806370a08231146103f8578063715018a6146104185780637501f7411461042d57806385d9d0f81461044357600080fd5b80633360caa0116101905780634f558e791161015f5780634f558e791461037b57806355f804b31461039b5780635b70ea9f146103bb5780636352211e146103c357806368428a1b146103e357600080fd5b80633360caa01461031a5780633ccfd60b1461033057806342842e0e14610345578063457e45351461036557600080fd5b80630f7309e8116101cc5780630f7309e8146102af57806318160ddd146102c457806323b872dd146102e75780632db115441461030757600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e6102193660046117cb565b6105dd565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061024861062f565b60405161022a91906119d9565b34801561026157600080fd5b50610275610270366004611894565b6106c1565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a836600461179f565b610705565b005b3480156102bb57600080fd5b506102486107d8565b3480156102d057600080fd5b50600154600054035b60405190815260200161022a565b3480156102f357600080fd5b506102ad61030236600461164b565b610866565b6102ad610315366004611894565b610876565b34801561032657600080fd5b506102d960125481565b34801561033c57600080fd5b506102ad6109ee565b34801561035157600080fd5b506102ad61036036600461164b565b610a4b565b34801561037157600080fd5b506102d960115481565b34801561038757600080fd5b5061021e610396366004611894565b610a66565b3480156103a757600080fd5b506102ad6103b6366004611822565b610a71565b6102ad610aa7565b3480156103cf57600080fd5b506102756103de366004611894565b610c39565b3480156103ef57600080fd5b5061021e610c44565b34801561040457600080fd5b506102d96104133660046115f5565b610c5c565b34801561042457600080fd5b506102ad610cab565b34801561043957600080fd5b506102d9600d5481565b34801561044f57600080fd5b5061021e61045e3660046115f5565b600f6020526000908152604090205460ff1681565b34801561047f57600080fd5b506008546001600160a01b0316610275565b34801561049d57600080fd5b506102ad6104ac366004611822565b610cdf565b3480156104bd57600080fd5b50610248610d15565b3480156104d257600080fd5b506102ad6104e136600461176c565b610d24565b3480156104f257600080fd5b506102ad61050136600461168c565b610dba565b34801561051257600080fd5b506102d9600c5481565b34801561052857600080fd5b50610248610537366004611894565b610e04565b34801561054857600080fd5b506102d9600b5481565b34801561055e57600080fd5b50610248610e5e565b34801561057357600080fd5b5061021e610582366004611612565b610e6b565b34801561059357600080fd5b506102d960105481565b3480156105a957600080fd5b506102ad6105b83660046115f5565b610f39565b3480156105c957600080fd5b506102ad6105d8366004611822565b610fd1565b60006301ffc9a760e01b6001600160e01b03198316148061060e57506380ac58cd60e01b6001600160e01b03198316145b806106295750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461063e90611a84565b80601f016020809104026020016040519081016040528092919081815260200182805461066a90611a84565b80156106b75780601f1061068c576101008083540402835291602001916106b7565b820191906000526020600020905b81548152906001019060200180831161069a57829003601f168201915b5050505050905090565b60006106cc82611007565b6106e9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107108261102e565b9050806001600160a01b0316836001600160a01b031614156107455760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461077c5761075f8133610e6b565b61077c576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600e80546107e590611a84565b80601f016020809104026020016040519081016040528092919081815260200182805461081190611a84565b801561085e5780601f106108335761010080835404028352916020019161085e565b820191906000526020600020905b81548152906001019060200180831161084157829003601f168201915b505050505081565b610871838383611096565b505050565b60125442116108be5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b60448201526064015b60405180910390fd5b600c546108cb9082611a39565b34146109285760405162461bcd60e51b815260206004820152602660248201527f45746865722073656e7420646f65736e2774206d61746368206d696e74696e6760448201526520707269636560d01b60648201526084016108b5565b600d5481106109795760405162461bcd60e51b815260206004820181905260248201527f5175616e746974792065786365656473206d6178696d756d20616c6c6f77656460448201526064016108b5565b600b548161098a6001546000540390565b6109949190611a21565b106109e15760405162461bcd60e51b815260206004820152601c60248201527f4d696e7420776f756c6420657863656564206d617820737570706c790000000060448201526064016108b5565b6109eb3382611239565b50565b6008546001600160a01b03163314610a185760405162461bcd60e51b81526004016108b5906119ec565b6040514790339082156108fc029083906000818181858888f19350505050158015610a47573d6000803e3d6000fd5b5050565b61087183838360405180602001604052806000815250610dba565b600061062982611007565b6008546001600160a01b03163314610a9b5760405162461bcd60e51b81526004016108b5906119ec565b6108716009838361155c565b6012544211610aea5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b60448201526064016108b5565b60105460115410610b3d5760405162461bcd60e51b815260206004820152601a60248201527f416c6c20676976656177617973207765726520636c61696d656400000000000060448201526064016108b5565b336000908152600f602052604090205460ff1615610b9d5760405162461bcd60e51b815260206004820152601860248201527f476976656177617920616c726561647920636c61696d6564000000000000000060448201526064016108b5565b600b5460015460005403610bb2906001611a21565b10610bff5760405162461bcd60e51b815260206004820152601c60248201527f4d696e7420776f756c6420657863656564206d617820737570706c790000000060448201526064016108b5565b336000908152600f60205260408120805460ff191660011790556011805491610c2783611abf565b9190505550610c37336001611239565b565b60006106298261102e565b6000601254421115610c565750600190565b50600090565b60006001600160a01b038216610c85576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610cd55760405162461bcd60e51b81526004016108b5906119ec565b610c376000611253565b6008546001600160a01b03163314610d095760405162461bcd60e51b81526004016108b5906119ec565b610871600a838361155c565b60606003805461063e90611a84565b6001600160a01b038216331415610d4e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dc5848484611096565b6001600160a01b0383163b15610dfe57610de1848484846112a5565b610dfe576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610e0f82611007565b610e2c57604051630a14c4b560e41b815260040160405180910390fd5b6009610e378361139c565b604051602001610e489291906118f5565b6040516020818303038152906040529050919050565b600a80546107e590611a84565b60135460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b158015610eb857600080fd5b505afa158015610ecc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef09190611805565b6001600160a01b03161415610f09576001915050610629565b50506001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b03163314610f635760405162461bcd60e51b81526004016108b5906119ec565b6001600160a01b038116610fc85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b5565b6109eb81611253565b6008546001600160a01b03163314610ffb5760405162461bcd60e51b81526004016108b5906119ec565b610871600e838361155c565b6000805482108015610629575050600090815260046020526040902054600160e01b161590565b60008160005481101561107d57600081815260046020526040902054600160e01b811661107b575b80611074575060001901600081815260046020526040902054611056565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b60006110a18261102e565b9050836001600160a01b0316816001600160a01b0316146110d45760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806110f257506110f28533610e6b565b8061110d575033611102846106c1565b6001600160a01b0316145b90508061112d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661115457604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b8617811790915582166111f157600183016000818152600460205260409020546111ef5760005481146111ef5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610a478282604051806020016040528060008152506113eb565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112da90339089908890889060040161199c565b602060405180830381600087803b1580156112f457600080fd5b505af1925050508015611324575060408051601f3d908101601f19168201909252611321918101906117e8565b60015b61137f573d808015611352576040519150601f19603f3d011682016040523d82523d6000602084013e611357565b606091505b508051611377576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b604080516080810191829052607f0190826030600a8206018353600a90045b80156113d957600183039250600a81066030018353600a90046113bb565b50819003601f19909101908152919050565b6000546001600160a01b03841661141457604051622e076360e81b815260040160405180910390fd5b826114325760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611507575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46114d060008784806001019550876112a5565b6114ed576040516368d2bf6b60e11b815260040160405180910390fd5b80821061148557826000541461150257600080fd5b61154c565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611508575b506000908155610dfe9085838684565b82805461156890611a84565b90600052602060002090601f01602090048101928261158a57600085556115d0565b82601f106115a35782800160ff198235161785556115d0565b828001600101855582156115d0579182015b828111156115d05782358255916020019190600101906115b5565b506115dc9291506115e0565b5090565b5b808211156115dc57600081556001016115e1565b60006020828403121561160757600080fd5b813561107481611b06565b6000806040838503121561162557600080fd5b823561163081611b06565b9150602083013561164081611b06565b809150509250929050565b60008060006060848603121561166057600080fd5b833561166b81611b06565b9250602084013561167b81611b06565b929592945050506040919091013590565b600080600080608085870312156116a257600080fd5b84356116ad81611b06565b935060208501356116bd81611b06565b925060408501359150606085013567ffffffffffffffff808211156116e157600080fd5b818701915087601f8301126116f557600080fd5b81358181111561170757611707611af0565b604051601f8201601f19908116603f0116810190838211818310171561172f5761172f611af0565b816040528281528a602084870101111561174857600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561177f57600080fd5b823561178a81611b06565b91506020830135801515811461164057600080fd5b600080604083850312156117b257600080fd5b82356117bd81611b06565b946020939093013593505050565b6000602082840312156117dd57600080fd5b813561107481611b1b565b6000602082840312156117fa57600080fd5b815161107481611b1b565b60006020828403121561181757600080fd5b815161107481611b06565b6000806020838503121561183557600080fd5b823567ffffffffffffffff8082111561184d57600080fd5b818501915085601f83011261186157600080fd5b81358181111561187057600080fd5b86602082850101111561188257600080fd5b60209290920196919550909350505050565b6000602082840312156118a657600080fd5b5035919050565b600081518084526118c5816020860160208601611a58565b601f01601f19169290920160200192915050565b600081516118eb818560208601611a58565b9290920192915050565b600080845481600182811c91508083168061191157607f831692505b602080841082141561193157634e487b7160e01b86526022600452602486fd5b818015611945576001811461195657611983565b60ff19861689528489019650611983565b60008b81526020902060005b8681101561197b5781548b820152908501908301611962565b505084890196505b50505050505061199381856118d9565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119cf908301846118ad565b9695505050505050565b60208152600061107460208301846118ad565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611a3457611a34611ada565b500190565b6000816000190483118215151615611a5357611a53611ada565b500290565b60005b83811015611a73578181015183820152602001611a5b565b83811115610dfe5750506000910152565b600181811c90821680611a9857607f821691505b60208210811415611ab957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ad357611ad3611ada565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146109eb57600080fd5b6001600160e01b0319811681146109eb57600080fdfea2646970667358221220dea7c5ddefcc1d457ed6f7e7ced091d0a8e043405bf8499a98dd84c6a8bae46a64736f6c63430008070033

Deployed Bytecode Sourcemap

42879:3669:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16535:665;;;;;;;;;;-1:-1:-1;16535:665:0;;;;;:::i;:::-;;:::i;:::-;;;7200:14:1;;7193:22;7175:41;;7163:2;7148:18;16535:665:0;;;;;;;;21791:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23988:245::-;;;;;;;;;;-1:-1:-1;23988:245:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6498:32:1;;;6480:51;;6468:2;6453:18;23988:245:0;6334:203:1;23448:474:0;;;;;;;;;;-1:-1:-1;23448:474:0;;;;;:::i;:::-;;:::i;:::-;;43373:24;;;;;;;;;;;;;:::i;15589:315::-;;;;;;;;;;-1:-1:-1;15855:12:0;;15642:7;15839:13;:28;15589:315;;;10542:25:1;;;10530:2;10515:18;15589:315:0;10396:177:1;24997:170:0;;;;;;;;;;-1:-1:-1;24997:170:0;;;;;:::i;:::-;;:::i;45564:507::-;;;;;;:::i;:::-;;:::i;43585:43::-;;;;;;;;;;;;;;;;44930:143;;;;;;;;;;;;;:::i;25238:185::-;;;;;;;;;;-1:-1:-1;25238:185:0;;;;;:::i;:::-;;:::i;43520:28::-;;;;;;;;;;;;;;;;44526:102;;;;;;;;;;-1:-1:-1;44526:102:0;;;;;:::i;:::-;;:::i;44416:::-;;;;;;;;;;-1:-1:-1;44416:102:0;;;;;:::i;:::-;;:::i;45097:459::-;;;:::i;21580:144::-;;;;;;;;;;-1:-1:-1;21580:144:0;;;;;:::i;:::-;;:::i;43673:189::-;;;;;;;;;;;;;:::i;17264:224::-;;;;;;;;;;-1:-1:-1;17264:224:0;;;;;:::i;:::-;;:::i;2549:103::-;;;;;;;;;;;;;:::i;43280:30::-;;;;;;;;;;;;;;;;43425:47;;;;;;;;;;-1:-1:-1;43425:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;1898:87;;;;;;;;;;-1:-1:-1;1971:6:0;;-1:-1:-1;;;;;1971:6:0;1898:87;;44657:118;;;;;;;;;;-1:-1:-1;44657:118:0;;;;;:::i;:::-;;:::i;21960:104::-;;;;;;;;;;;;;:::i;24305:340::-;;;;;;;;;;-1:-1:-1;24305:340:0;;;;;:::i;:::-;;:::i;25494:396::-;;;;;;;;;;-1:-1:-1;25494:396:0;;;;;:::i;:::-;;:::i;43191:37::-;;;;;;;;;;;;;;;;44121:287;;;;;;;;;;-1:-1:-1;44121:287:0;;;;;:::i;:::-;;:::i;43092:35::-;;;;;;;;;;;;;;;;43000:67;;;;;;;;;;;;;:::i;46100:445::-;;;;;;;;;;-1:-1:-1;46100:445:0;;;;;:::i;:::-;;:::i;43479:34::-;;;;;;;;;;;;;;;;2807:238;;;;;;;;;;-1:-1:-1;2807:238:0;;;;;:::i;:::-;;:::i;44808:114::-;;;;;;;;;;-1:-1:-1;44808:114:0;;;;;:::i;:::-;;:::i;16535:665::-;16665:4;-1:-1:-1;;;;;;;;;16970:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;17047:25:0;;;16970:102;:179;;;-1:-1:-1;;;;;;;;;;17124:25:0;;;16970:179;16950:199;16535:665;-1:-1:-1;;16535:665:0:o;21791:100::-;21845:13;21878:5;21871:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21791:100;:::o;23988:245::-;24092:7;24122:16;24130:7;24122;:16::i;:::-;24117:64;;24147:34;;-1:-1:-1;;;24147:34:0;;;;;;;;;;;24117:64;-1:-1:-1;24201:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24201:24:0;;23988:245::o;23448:474::-;23521:13;23553:27;23572:7;23553:18;:27::i;:::-;23521:61;;23603:5;-1:-1:-1;;;;;23597:11:0;:2;-1:-1:-1;;;;;23597:11:0;;23593:48;;;23617:24;;-1:-1:-1;;;23617:24:0;;;;;;;;;;;23593:48;40600:10;-1:-1:-1;;;;;23658:28:0;;;23654:175;;23706:44;23723:5;40600:10;46100:445;:::i;23706:44::-;23701:128;;23778:35;;-1:-1:-1;;;23778:35:0;;;;;;;;;;;23701:128;23841:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;23841:29:0;-1:-1:-1;;;;;23841:29:0;;;;;;;;;23886:28;;23841:24;;23886:28;;;;;;;23510:412;23448:474;;:::o;43373:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24997:170::-;25131:28;25141:4;25147:2;25151:7;25131:9;:28::i;:::-;24997:170;;;:::o;45564:507::-;45656:15;;45638;:33;45630:61;;;;-1:-1:-1;;;45630:61:0;;8824:2:1;45630:61:0;;;8806:21:1;8863:2;8843:18;;;8836:30;-1:-1:-1;;;8882:18:1;;;8875:45;8937:18;;45630:61:0;;;;;;;;;45748:8;;45737:19;;:8;:19;:::i;:::-;45724:9;:32;45702:120;;;;-1:-1:-1;;;45702:120:0;;8010:2:1;45702:120:0;;;7992:21:1;8049:2;8029:18;;;8022:30;8088:34;8068:18;;;8061:62;-1:-1:-1;;;8139:18:1;;;8132:36;8185:19;;45702:120:0;7808:402:1;45702:120:0;45852:7;;45841:8;:18;45833:63;;;;-1:-1:-1;;;45833:63:0;;10237:2:1;45833:63:0;;;10219:21:1;;;10256:18;;;10249:30;10315:34;10295:18;;;10288:62;10367:18;;45833:63:0;10035:356:1;45833:63:0;45956:9;;45945:8;45929:13;15855:12;;15642:7;15839:13;:28;;15589:315;45929:13;:24;;;;:::i;:::-;:36;45907:114;;;;-1:-1:-1;;;45907:114:0;;7653:2:1;45907:114:0;;;7635:21:1;7692:2;7672:18;;;7665:30;7731;7711:18;;;7704:58;7779:18;;45907:114:0;7451:352:1;45907:114:0;46032:31;46042:10;46054:8;46032:9;:31::i;:::-;45564:507;:::o;44930:143::-;1971:6;;-1:-1:-1;;;;;1971:6:0;40600:10;2118:23;2110:68;;;;-1:-1:-1;;;2110:68:0;;;;;;;:::i;:::-;45028:37:::1;::::0;44996:21:::1;::::0;45036:10:::1;::::0;45028:37;::::1;;;::::0;44996:21;;44978:15:::1;45028:37:::0;44978:15;45028:37;44996:21;45036:10;45028:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;44967:106;44930:143::o:0;25238:185::-;25376:39;25393:4;25399:2;25403:7;25376:39;;;;;;;;;;;;:16;:39::i;44526:102::-;44580:4;44604:16;44612:7;44604;:16::i;44416:102::-;1971:6;;-1:-1:-1;;;;;1971:6:0;40600:10;2118:23;2110:68;;;;-1:-1:-1;;;2110:68:0;;;;;;;:::i;:::-;44492:18:::1;:7;44502:8:::0;;44492:18:::1;:::i;45097:459::-:0;45171:15;;45153;:33;45145:61;;;;-1:-1:-1;;;45145:61:0;;8824:2:1;45145:61:0;;;8806:21:1;8863:2;8843:18;;;8836:30;-1:-1:-1;;;8882:18:1;;;8875:45;8937:18;;45145:61:0;8622:339:1;45145:61:0;45241:13;;45225;;:29;45217:68;;;;-1:-1:-1;;;45217:68:0;;9882:2:1;45217:68:0;;;9864:21:1;9921:2;9901:18;;;9894:30;9960:28;9940:18;;;9933:56;10006:18;;45217:68:0;9680:350:1;45217:68:0;45321:10;45305:27;;;;:15;:27;;;;;;;;45304:28;45296:65;;;;-1:-1:-1;;;45296:65:0;;9529:2:1;45296:65:0;;;9511:21:1;9568:2;9548:18;;;9541:30;9607:26;9587:18;;;9580:54;9651:18;;45296:65:0;9327:348:1;45296:65:0;45400:9;;15855:12;;15642:7;15839:13;:28;45380:17;;45396:1;45380:17;:::i;:::-;:29;45372:70;;;;-1:-1:-1;;;45372:70:0;;7653:2:1;45372:70:0;;;7635:21:1;7692:2;7672:18;;;7665:30;7731;7711:18;;;7704:58;7779:18;;45372:70:0;7451:352:1;45372:70:0;45469:10;45453:27;;;;:15;:27;;;;;:34;;-1:-1:-1;;45453:34:0;45483:4;45453:34;;;45498:13;:15;;;;;;:::i;:::-;;;;;;45524:24;45534:10;45546:1;45524:9;:24::i;:::-;45097:459::o;21580:144::-;21644:7;21687:27;21706:7;21687:18;:27::i;43673:189::-;43716:4;43755:15;;43737;:33;43733:122;;;-1:-1:-1;43794:4:0;;43673:189::o;43733:122::-;-1:-1:-1;43838:5:0;;43673:189::o;17264:224::-;17328:7;-1:-1:-1;;;;;17352:19:0;;17348:60;;17380:28;;-1:-1:-1;;;17380:28:0;;;;;;;;;;;17348:60;-1:-1:-1;;;;;;17426:25:0;;;;;:18;:25;;;;;;12559:13;17426:54;;17264:224::o;2549:103::-;1971:6;;-1:-1:-1;;;;;1971:6:0;40600:10;2118:23;2110:68;;;;-1:-1:-1;;;2110:68:0;;;;;;;:::i;:::-;2614:30:::1;2641:1;2614:18;:30::i;44657:118::-:0;1971:6;;-1:-1:-1;;;;;1971:6:0;40600:10;2118:23;2110:68;;;;-1:-1:-1;;;2110:68:0;;;;;;;:::i;:::-;44741:26:::1;:11;44755:12:::0;;44741:26:::1;:::i;21960:104::-:0;22016:13;22049:7;22042:14;;;;;:::i;24305:340::-;-1:-1:-1;;;;;24436:31:0;;40600:10;24436:31;24432:61;;;24476:17;;-1:-1:-1;;;24476:17:0;;;;;;;;;;;24432:61;40600:10;24506:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;24506:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;24506:60:0;;;;;;;;;;24582:55;;7175:41:1;;;24506:49:0;;40600:10;24582:55;;7148:18:1;24582:55:0;;;;;;;24305:340;;:::o;25494:396::-;25661:28;25671:4;25677:2;25681:7;25661:9;:28::i;:::-;-1:-1:-1;;;;;25704:14:0;;;:19;25700:183;;25743:56;25774:4;25780:2;25784:7;25793:5;25743:30;:56::i;:::-;25738:145;;25827:40;;-1:-1:-1;;;25827:40:0;;;;;;;;;;;25738:145;25494:396;;;;:::o;44121:287::-;44239:13;44275:16;44283:7;44275;:16::i;:::-;44270:59;;44300:29;;-1:-1:-1;;;44300:29:0;;;;;;;;;;;44270:59;44371:7;44380:18;44390:7;44380:9;:18::i;:::-;44354:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44340:60;;44121:287;;;:::o;43000:67::-;;;;;;;:::i;46100:445::-;46354:20;;46398:28;;-1:-1:-1;;;46398:28:0;;-1:-1:-1;;;;;6498:32:1;;;46398:28:0;;;6480:51:1;46225:4:0;;46354:20;;;46390:49;;;;46354:20;;46398:21;;6453:18:1;;46398:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;46390:49:0;;46386:93;;;46463:4;46456:11;;;;;46386:93;-1:-1:-1;;;;;;;24887:25:0;;;24858:4;24887:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;46100:445::o;2807:238::-;1971:6;;-1:-1:-1;;;;;1971:6:0;40600:10;2118:23;2110:68;;;;-1:-1:-1;;;2110:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2910:22:0;::::1;2888:110;;;::::0;-1:-1:-1;;;2888:110:0;;8417:2:1;2888:110:0::1;::::0;::::1;8399:21:1::0;8456:2;8436:18;;;8429:30;8495:34;8475:18;;;8468:62;-1:-1:-1;;;8546:18:1;;;8539:36;8592:19;;2888:110:0::1;8215:402:1::0;2888:110:0::1;3009:28;3028:8;3009:18;:28::i;44808:114::-:0;1971:6;;-1:-1:-1;;;;;1971:6:0;40600:10;2118:23;2110:68;;;;-1:-1:-1;;;2110:68:0;;;;;;;:::i;:::-;44890:24:::1;:10;44903:11:::0;;44890:24:::1;:::i;26145:273::-:0;26202:4;26292:13;;26282:7;:23;26239:152;;;;-1:-1:-1;;26343:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;26343:43:0;:48;;26145:273::o;18967:1161::-;19061:7;19101;19203:13;;19196:4;:20;19192:869;;;19241:14;19258:23;;;:17;:23;;;;;;-1:-1:-1;;;19347:23:0;;19343:699;;19866:113;19873:11;19866:113;;-1:-1:-1;;;19944:6:0;19926:25;;;;:17;:25;;;;;;19866:113;;;20012:6;18967:1161;-1:-1:-1;;;18967:1161:0:o;19343:699::-;19218:843;19192:869;20089:31;;-1:-1:-1;;;20089:31:0;;;;;;;;;;;31643:2528;31758:27;31788;31807:7;31788:18;:27::i;:::-;31758:57;;31873:4;-1:-1:-1;;;;;31832:45:0;31848:19;-1:-1:-1;;;;;31832:45:0;;31828:99;;31899:28;;-1:-1:-1;;;31899:28:0;;;;;;;;;;;31828:99;31940:22;40600:10;-1:-1:-1;;;;;31966:27:0;;;;:87;;-1:-1:-1;32010:43:0;32027:4;40600:10;46100:445;:::i;32010:43::-;31966:147;;;-1:-1:-1;40600:10:0;32070:20;32082:7;32070:11;:20::i;:::-;-1:-1:-1;;;;;32070:43:0;;31966:147;31940:174;;32132:17;32127:66;;32158:35;;-1:-1:-1;;;32158:35:0;;;;;;;;;;;32127:66;-1:-1:-1;;;;;32208:16:0;;32204:52;;32233:23;;-1:-1:-1;;;32233:23:0;;;;;;;;;;;32204:52;32385:24;;;;:15;:24;;;;;;;;32378:31;;-1:-1:-1;;;;;;32378:31:0;;;-1:-1:-1;;;;;32777:24:0;;;;;:18;:24;;;;;32775:26;;-1:-1:-1;;32775:26:0;;;32846:22;;;;;;;32844:24;;-1:-1:-1;32844:24:0;;;33139:26;;;:17;:26;;;;;-1:-1:-1;;;33227:15:0;13213:3;33227:41;33185:84;;:128;;33139:174;;;33433:46;;33429:626;;33537:1;33527:11;;33505:19;33660:30;;;:17;:30;;;;;;33656:384;;33798:13;;33783:11;:28;33779:242;;33945:30;;;;:17;:30;;;;;:52;;;33779:242;33486:569;33429:626;34102:7;34098:2;-1:-1:-1;;;;;34083:27:0;34092:4;-1:-1:-1;;;;;34083:27:0;;;;;;;;;;;31747:2424;;31643:2528;;;:::o;26502:104::-;26571:27;26581:2;26585:8;26571:27;;;;;;;;;;;;:9;:27::i;3205:191::-;3298:6;;;-1:-1:-1;;;;;3315:17:0;;;-1:-1:-1;;;;;;3315:17:0;;;;;;;3348:40;;3298:6;;;3315:17;3298:6;;3348:40;;3279:16;;3348:40;3268:128;3205:191;:::o;37867:831::-;38064:171;;-1:-1:-1;;;38064:171:0;;38030:4;;-1:-1:-1;;;;;38064:45:0;;;;;:171;;40600:10;;38166:4;;38189:7;;38215:5;;38064:171;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38064:171:0;;;;;;;;-1:-1:-1;;38064:171:0;;;;;;;;;;;;:::i;:::-;;;38047:644;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38449:13:0;;38445:235;;38495:40;;-1:-1:-1;;;38495:40:0;;;;;;;;;;;38445:235;38638:6;38632:13;38623:6;38619:2;38615:15;38608:38;38047:644;-1:-1:-1;;;;;;38308:81:0;-1:-1:-1;;;38308:81:0;;-1:-1:-1;37867:831:0;;;;;;:::o;40724:1992::-;41225:4;41219:11;;41232:3;41215:21;;41310:17;;;;42006:11;;;41885:5;42138:2;42152;42142:13;;42134:22;42006:11;42121:36;42193:2;42183:13;;41777:697;42212:4;41777:697;;;42403:1;42398:3;42394:11;42387:18;;42454:2;42448:4;42444:13;42440:2;42436:22;42431:3;42423:36;42307:2;42297:13;;41777:697;;;-1:-1:-1;42504:13:0;;;-1:-1:-1;;42619:12:0;;;42679:19;;;42619:12;40724:1992;-1:-1:-1;40724:1992:0:o;26979:2461::-;27102:20;27125:13;-1:-1:-1;;;;;27153:16:0;;27149:48;;27178:19;;-1:-1:-1;;;27178:19:0;;;;;;;;;;;27149:48;27212:13;27208:44;;27234:18;;-1:-1:-1;;;27234:18:0;;;;;;;;;;;27208:44;-1:-1:-1;;;;;27801:22:0;;;;;;:18;:22;;;;12696:2;27801:22;;;:104;;27873:31;27844:61;;27801:104;;;28148:31;;;:17;:31;;;;;28241:15;13213:3;28241:41;28199:84;;-1:-1:-1;28319:13:0;;13472:3;28304:56;28199:162;28148:213;;:31;;28442:23;;;;28486:14;:19;28482:826;;28526:504;28557:38;;28582:12;;-1:-1:-1;;;;;28557:38:0;;;28574:1;;28557:38;;28574:1;;28557:38;28649:212;28718:1;28751:2;28784:14;;;;;;28829:5;28649:30;:212::i;:::-;28618:365;;28919:40;;-1:-1:-1;;;28919:40:0;;;;;;;;;;;28618:365;29025:3;29010:12;:18;28526:504;;29111:12;29094:13;;:29;29090:43;;29125:8;;;29090:43;28482:826;;;29174:119;29205:40;;29230:14;;;;;-1:-1:-1;;;;;29205:40:0;;;29222:1;;29205:40;;29222:1;;29205:40;29288:3;29273:12;:18;29174:119;;28482:826;-1:-1:-1;29322:13:0;:28;;;29372:60;;29405:2;29409:12;29423:8;29372:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:247:1;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;181:9;168:23;200:31;225:5;200:31;:::i;266:388::-;334:6;342;395:2;383:9;374:7;370:23;366:32;363:52;;;411:1;408;401:12;363:52;450:9;437:23;469:31;494:5;469:31;:::i;:::-;519:5;-1:-1:-1;576:2:1;561:18;;548:32;589:33;548:32;589:33;:::i;:::-;641:7;631:17;;;266:388;;;;;:::o;659:456::-;736:6;744;752;805:2;793:9;784:7;780:23;776:32;773:52;;;821:1;818;811:12;773:52;860:9;847:23;879:31;904:5;879:31;:::i;:::-;929:5;-1:-1:-1;986:2:1;971:18;;958:32;999:33;958:32;999:33;:::i;:::-;659:456;;1051:7;;-1:-1:-1;;;1105:2:1;1090:18;;;;1077:32;;659:456::o;1120:1266::-;1215:6;1223;1231;1239;1292:3;1280:9;1271:7;1267:23;1263:33;1260:53;;;1309:1;1306;1299:12;1260:53;1348:9;1335:23;1367:31;1392:5;1367:31;:::i;:::-;1417:5;-1:-1:-1;1474:2:1;1459:18;;1446:32;1487:33;1446:32;1487:33;:::i;:::-;1539:7;-1:-1:-1;1593:2:1;1578:18;;1565:32;;-1:-1:-1;1648:2:1;1633:18;;1620:32;1671:18;1701:14;;;1698:34;;;1728:1;1725;1718:12;1698:34;1766:6;1755:9;1751:22;1741:32;;1811:7;1804:4;1800:2;1796:13;1792:27;1782:55;;1833:1;1830;1823:12;1782:55;1869:2;1856:16;1891:2;1887;1884:10;1881:36;;;1897:18;;:::i;:::-;1972:2;1966:9;1940:2;2026:13;;-1:-1:-1;;2022:22:1;;;2046:2;2018:31;2014:40;2002:53;;;2070:18;;;2090:22;;;2067:46;2064:72;;;2116:18;;:::i;:::-;2156:10;2152:2;2145:22;2191:2;2183:6;2176:18;2231:7;2226:2;2221;2217;2213:11;2209:20;2206:33;2203:53;;;2252:1;2249;2242:12;2203:53;2308:2;2303;2299;2295:11;2290:2;2282:6;2278:15;2265:46;2353:1;2348:2;2343;2335:6;2331:15;2327:24;2320:35;2374:6;2364:16;;;;;;;1120:1266;;;;;;;:::o;2391:416::-;2456:6;2464;2517:2;2505:9;2496:7;2492:23;2488:32;2485:52;;;2533:1;2530;2523:12;2485:52;2572:9;2559:23;2591:31;2616:5;2591:31;:::i;:::-;2641:5;-1:-1:-1;2698:2:1;2683:18;;2670:32;2740:15;;2733:23;2721:36;;2711:64;;2771:1;2768;2761:12;2812:315;2880:6;2888;2941:2;2929:9;2920:7;2916:23;2912:32;2909:52;;;2957:1;2954;2947:12;2909:52;2996:9;2983:23;3015:31;3040:5;3015:31;:::i;:::-;3065:5;3117:2;3102:18;;;;3089:32;;-1:-1:-1;;;2812:315:1:o;3132:245::-;3190:6;3243:2;3231:9;3222:7;3218:23;3214:32;3211:52;;;3259:1;3256;3249:12;3211:52;3298:9;3285:23;3317:30;3341:5;3317:30;:::i;3382:249::-;3451:6;3504:2;3492:9;3483:7;3479:23;3475:32;3472:52;;;3520:1;3517;3510:12;3472:52;3552:9;3546:16;3571:30;3595:5;3571:30;:::i;3636:280::-;3735:6;3788:2;3776:9;3767:7;3763:23;3759:32;3756:52;;;3804:1;3801;3794:12;3756:52;3836:9;3830:16;3855:31;3880:5;3855:31;:::i;3921:592::-;3992:6;4000;4053:2;4041:9;4032:7;4028:23;4024:32;4021:52;;;4069:1;4066;4059:12;4021:52;4109:9;4096:23;4138:18;4179:2;4171:6;4168:14;4165:34;;;4195:1;4192;4185:12;4165:34;4233:6;4222:9;4218:22;4208:32;;4278:7;4271:4;4267:2;4263:13;4259:27;4249:55;;4300:1;4297;4290:12;4249:55;4340:2;4327:16;4366:2;4358:6;4355:14;4352:34;;;4382:1;4379;4372:12;4352:34;4427:7;4422:2;4413:6;4409:2;4405:15;4401:24;4398:37;4395:57;;;4448:1;4445;4438:12;4395:57;4479:2;4471:11;;;;;4501:6;;-1:-1:-1;3921:592:1;;-1:-1:-1;;;;3921:592:1:o;4518:180::-;4577:6;4630:2;4618:9;4609:7;4605:23;4601:32;4598:52;;;4646:1;4643;4636:12;4598:52;-1:-1:-1;4669:23:1;;4518:180;-1:-1:-1;4518:180:1:o;4703:257::-;4744:3;4782:5;4776:12;4809:6;4804:3;4797:19;4825:63;4881:6;4874:4;4869:3;4865:14;4858:4;4851:5;4847:16;4825:63;:::i;:::-;4942:2;4921:15;-1:-1:-1;;4917:29:1;4908:39;;;;4949:4;4904:50;;4703:257;-1:-1:-1;;4703:257:1:o;4965:185::-;5007:3;5045:5;5039:12;5060:52;5105:6;5100:3;5093:4;5086:5;5082:16;5060:52;:::i;:::-;5128:16;;;;;4965:185;-1:-1:-1;;4965:185:1:o;5155:1174::-;5331:3;5360:1;5393:6;5387:13;5423:3;5445:1;5473:9;5469:2;5465:18;5455:28;;5533:2;5522:9;5518:18;5555;5545:61;;5599:4;5591:6;5587:17;5577:27;;5545:61;5625:2;5673;5665:6;5662:14;5642:18;5639:38;5636:165;;;-1:-1:-1;;;5700:33:1;;5756:4;5753:1;5746:15;5786:4;5707:3;5774:17;5636:165;5817:18;5844:104;;;;5962:1;5957:320;;;;5810:467;;5844:104;-1:-1:-1;;5877:24:1;;5865:37;;5922:16;;;;-1:-1:-1;5844:104:1;;5957:320;10651:1;10644:14;;;10688:4;10675:18;;6052:1;6066:165;6080:6;6077:1;6074:13;6066:165;;;6158:14;;6145:11;;;6138:35;6201:16;;;;6095:10;;6066:165;;;6070:3;;6260:6;6255:3;6251:16;6244:23;;5810:467;;;;;;;6293:30;6319:3;6311:6;6293:30;:::i;:::-;6286:37;5155:1174;-1:-1:-1;;;;;5155:1174:1:o;6542:488::-;-1:-1:-1;;;;;6811:15:1;;;6793:34;;6863:15;;6858:2;6843:18;;6836:43;6910:2;6895:18;;6888:34;;;6958:3;6953:2;6938:18;;6931:31;;;6736:4;;6979:45;;7004:19;;6996:6;6979:45;:::i;:::-;6971:53;6542:488;-1:-1:-1;;;;;;6542:488:1:o;7227:219::-;7376:2;7365:9;7358:21;7339:4;7396:44;7436:2;7425:9;7421:18;7413:6;7396:44;:::i;8966:356::-;9168:2;9150:21;;;9187:18;;;9180:30;9246:34;9241:2;9226:18;;9219:62;9313:2;9298:18;;8966:356::o;10704:128::-;10744:3;10775:1;10771:6;10768:1;10765:13;10762:39;;;10781:18;;:::i;:::-;-1:-1:-1;10817:9:1;;10704:128::o;10837:168::-;10877:7;10943:1;10939;10935:6;10931:14;10928:1;10925:21;10920:1;10913:9;10906:17;10902:45;10899:71;;;10950:18;;:::i;:::-;-1:-1:-1;10990:9:1;;10837:168::o;11010:258::-;11082:1;11092:113;11106:6;11103:1;11100:13;11092:113;;;11182:11;;;11176:18;11163:11;;;11156:39;11128:2;11121:10;11092:113;;;11223:6;11220:1;11217:13;11214:48;;;-1:-1:-1;;11258:1:1;11240:16;;11233:27;11010:258::o;11273:380::-;11352:1;11348:12;;;;11395;;;11416:61;;11470:4;11462:6;11458:17;11448:27;;11416:61;11523:2;11515:6;11512:14;11492:18;11489:38;11486:161;;;11569:10;11564:3;11560:20;11557:1;11550:31;11604:4;11601:1;11594:15;11632:4;11629:1;11622:15;11486:161;;11273:380;;;:::o;11658:135::-;11697:3;-1:-1:-1;;11718:17:1;;11715:43;;;11738:18;;:::i;:::-;-1:-1:-1;11785:1:1;11774:13;;11658:135::o;11798:127::-;11859:10;11854:3;11850:20;11847:1;11840:31;11890:4;11887:1;11880:15;11914:4;11911:1;11904:15;11930:127;11991:10;11986:3;11982:20;11979:1;11972:31;12022:4;12019:1;12012:15;12046:4;12043:1;12036:15;12062:131;-1:-1:-1;;;;;12137:31:1;;12127:42;;12117:70;;12183:1;12180;12173:12;12198:131;-1:-1:-1;;;;;;12272:32:1;;12262:43;;12252:71;;12319:1;12316;12309:12

Swarm Source

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