ETH Price: $2,268.92 (+2.35%)
Gas: 3.13 Gwei

Token

Hand-painted Club (HPC)
 

Overview

Max Total Supply

1,000 HPC

Holders

331

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 HPC
0x42627a0f56eb9f990a4351aafc7a3901c82182f7
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:
HandPaintedClub

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-26
*/

// File: contracts/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}
// File: contracts/OperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}
// File: contracts/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @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() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 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`,
     * 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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

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

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // 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 bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID 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`
    // - [232..255] `extraData`
    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 => TokenApprovalRef) private _tokenApprovals;

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual 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 auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

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

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    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: [ERC165](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.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

    /**
     * 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 initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev 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;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

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

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

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

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // 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 `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns 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))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

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

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

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

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

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

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

// File: contracts/HandPaintedClub.sol



pragma solidity ^0.8.4;






contract HandPaintedClub is DefaultOperatorFilterer, ERC721A, Ownable, ReentrancyGuard {
  string public uriPrefix = '';

  uint256 public cost = 0.0188 ether;
  uint256 public maxSupply = 1000;
  uint256 public maxMintAmountPerTx = 2;

  bool public paused = true;

  constructor(
    string memory _tokenName,
    string memory _tokenSymbol
  ) ERC721A(_tokenName, _tokenSymbol) {}

  function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
    super.transferFrom(from, to, tokenId);
  }

  function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
    super.safeTransferFrom(from, to, tokenId);
  }

  function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override onlyAllowedOperator(from) {
    super.safeTransferFrom(from, to, tokenId, data);
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(msg.sender == tx.origin, 'The minter is another contract');
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
    _;
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!paused, 'The contract is paused!');

    _safeMint(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _toString(_tokenId)))
        : '';
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function withdraw() public onlyOwner nonReentrant {
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a90805190602001906200002b929190620003ed565b506642ca8019c70000600b556103e8600c556002600d556001600e60006101000a81548160ff0219169083151502179055503480156200006a57600080fd5b5060405162003b1d38038062003b1d83398181016040528101906200009091906200063a565b8181733cc6cdda760b79bafa08df41ecfa224f810dceb6600160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200029e57801562000164576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200012a92919062000704565b600060405180830381600087803b1580156200014557600080fd5b505af11580156200015a573d6000803e3d6000fd5b505050506200029d565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200021e576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620001e492919062000704565b600060405180830381600087803b158015620001ff57600080fd5b505af115801562000214573d6000803e3d6000fd5b505050506200029c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000267919062000731565b600060405180830381600087803b1580156200028257600080fd5b505af115801562000297573d6000803e3d6000fd5b505050505b5b5b50508160029080519060200190620002b8929190620003ed565b508060039080519060200190620002d1929190620003ed565b50620002e26200031a60201b60201c565b60008190555050506200030a620002fe6200031f60201b60201c565b6200032760201b60201c565b60016009819055505050620007b2565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003fb906200077d565b90600052602060002090601f0160209004810192826200041f57600085556200046b565b82601f106200043a57805160ff19168380011785556200046b565b828001600101855582156200046b579182015b828111156200046a5782518255916020019190600101906200044d565b5b5090506200047a91906200047e565b5090565b5b80821115620004995760008160009055506001016200047f565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200050682620004bb565b810181811067ffffffffffffffff82111715620005285762000527620004cc565b5b80604052505050565b60006200053d6200049d565b90506200054b8282620004fb565b919050565b600067ffffffffffffffff8211156200056e576200056d620004cc565b5b6200057982620004bb565b9050602081019050919050565b60005b83811015620005a657808201518184015260208101905062000589565b83811115620005b6576000848401525b50505050565b6000620005d3620005cd8462000550565b62000531565b905082815260208101848484011115620005f257620005f1620004b6565b5b620005ff84828562000586565b509392505050565b600082601f8301126200061f576200061e620004b1565b5b815162000631848260208601620005bc565b91505092915050565b60008060408385031215620006545762000653620004a7565b5b600083015167ffffffffffffffff811115620006755762000674620004ac565b5b620006838582860162000607565b925050602083015167ffffffffffffffff811115620006a757620006a6620004ac565b5b620006b58582860162000607565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620006ec82620006bf565b9050919050565b620006fe81620006df565b82525050565b60006040820190506200071b6000830185620006f3565b6200072a6020830184620006f3565b9392505050565b6000602082019050620007486000830184620006f3565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200079657607f821691505b602082108103620007ac57620007ab6200074e565b5b50919050565b61335b80620007c26000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063a22cb4651161008a578063d5abeb0111610064578063d5abeb01146105a3578063e985e9c5146105ce578063efbd73f41461060b578063f2fde38b14610634576101b7565b8063a22cb46514610521578063b88d4fde1461054a578063c87b56dd14610566576101b7565b80638da5cb5b116100c65780638da5cb5b1461048457806394354fd0146104af57806395d89b41146104da578063a0712d6814610505576101b7565b806370a0823114610407578063715018a6146104445780637ec4a6591461045b576101b7565b806323b872dd1161015957806344a0d68a1161013357806344a0d68a1461034b5780635c975abb1461037457806362b99ad41461039f5780636352211e146103ca576101b7565b806323b872dd146102fc5780633ccfd60b1461031857806342842e0e1461032f576101b7565b8063095ea7b311610195578063095ea7b31461026157806313faede61461027d57806316c38b3c146102a857806318160ddd146102d1576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061252c565b61065d565b6040516101f09190612574565b60405180910390f35b34801561020557600080fd5b5061020e6106ef565b60405161021b9190612628565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612680565b610781565b60405161025891906126ee565b60405180910390f35b61027b60048036038101906102769190612735565b610800565b005b34801561028957600080fd5b50610292610944565b60405161029f9190612784565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906127cb565b61094a565b005b3480156102dd57600080fd5b506102e661096f565b6040516102f39190612784565b60405180910390f35b610316600480360381019061031191906127f8565b610986565b005b34801561032457600080fd5b5061032d610b68565b005b610349600480360381019061034491906127f8565b610c00565b005b34801561035757600080fd5b50610372600480360381019061036d9190612680565b610de2565b005b34801561038057600080fd5b50610389610df4565b6040516103969190612574565b60405180910390f35b3480156103ab57600080fd5b506103b4610e07565b6040516103c19190612628565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612680565b610e95565b6040516103fe91906126ee565b60405180910390f35b34801561041357600080fd5b5061042e6004803603810190610429919061284b565b610ea7565b60405161043b9190612784565b60405180910390f35b34801561045057600080fd5b50610459610f5f565b005b34801561046757600080fd5b50610482600480360381019061047d91906129ad565b610f73565b005b34801561049057600080fd5b50610499610f95565b6040516104a691906126ee565b60405180910390f35b3480156104bb57600080fd5b506104c4610fbf565b6040516104d19190612784565b60405180910390f35b3480156104e657600080fd5b506104ef610fc5565b6040516104fc9190612628565b60405180910390f35b61051f600480360381019061051a9190612680565b611057565b005b34801561052d57600080fd5b50610548600480360381019061054391906129f6565b61121e565b005b610564600480360381019061055f9190612ad7565b611329565b005b34801561057257600080fd5b5061058d60048036038101906105889190612680565b61150e565b60405161059a9190612628565b60405180910390f35b3480156105af57600080fd5b506105b86115b5565b6040516105c59190612784565b60405180910390f35b3480156105da57600080fd5b506105f560048036038101906105f09190612b5a565b6115bb565b6040516106029190612574565b60405180910390f35b34801561061757600080fd5b50610632600480360381019061062d9190612b9a565b61164f565b005b34801561064057600080fd5b5061065b6004803603810190610656919061284b565b61177d565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106e85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106fe90612c09565b80601f016020809104026020016040519081016040528092919081815260200182805461072a90612c09565b80156107775780601f1061074c57610100808354040283529160200191610777565b820191906000526020600020905b81548152906001019060200180831161075a57829003601f168201915b5050505050905090565b600061078c82611800565b6107c2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080b82610e95565b90508073ffffffffffffffffffffffffffffffffffffffff1661082c61185f565b73ffffffffffffffffffffffffffffffffffffffff161461088f576108588161085361185f565b6115bb565b61088e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b5481565b610952611867565b80600e60006101000a81548160ff02191690831515021790555050565b60006109796118e5565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b56573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109f8576109f38484846118ea565b610b62565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a41929190612c3a565b602060405180830381865afa158015610a5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a829190612c78565b8015610b1457506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610ad2929190612c3a565b602060405180830381865afa158015610aef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b139190612c78565b5b610b5557336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b4c91906126ee565b60405180910390fd5b5b610b618484846118ea565b5b50505050565b610b70611867565b610b78611c0c565b6000610b82610f95565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ba590612cd6565b60006040518083038185875af1925050503d8060008114610be2576040519150601f19603f3d011682016040523d82523d6000602084013e610be7565b606091505b5050905080610bf557600080fd5b50610bfe611c5b565b565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610dd0573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c7257610c6d848484611c65565b610ddc565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610cbb929190612c3a565b602060405180830381865afa158015610cd8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cfc9190612c78565b8015610d8e57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610d4c929190612c3a565b602060405180830381865afa158015610d69573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d8d9190612c78565b5b610dcf57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610dc691906126ee565b60405180910390fd5b5b610ddb848484611c65565b5b50505050565b610dea611867565b80600b8190555050565b600e60009054906101000a900460ff1681565b600a8054610e1490612c09565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4090612c09565b8015610e8d5780601f10610e6257610100808354040283529160200191610e8d565b820191906000526020600020905b815481529060010190602001808311610e7057829003601f168201915b505050505081565b6000610ea082611c85565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f0e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f67611867565b610f716000611d51565b565b610f7b611867565b80600a9080519060200190610f9192919061241d565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b606060038054610fd490612c09565b80601f016020809104026020016040519081016040528092919081815260200182805461100090612c09565b801561104d5780601f106110225761010080835404028352916020019161104d565b820191906000526020600020905b81548152906001019060200180831161103057829003601f168201915b5050505050905090565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90612d37565b60405180910390fd5b6000811180156110d85750600d548111155b611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e90612da3565b60405180910390fd5b600c548161112361096f565b61112d9190612df2565b111561116e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116590612e94565b60405180910390fd5b8180600b5461117d9190612eb4565b3410156111bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b690612f5a565b60405180910390fd5b600e60009054906101000a900460ff161561120f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120690612fc6565b60405180910390fd5b6112193384611e17565b505050565b806007600061122b61185f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112d861185f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161131d9190612574565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156114fa573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361139c5761139785858585611e35565b611507565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016113e5929190612c3a565b602060405180830381865afa158015611402573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114269190612c78565b80156114b857506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611476929190612c3a565b602060405180830381865afa158015611493573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b79190612c78565b5b6114f957336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016114f091906126ee565b60405180910390fd5b5b61150685858585611e35565b5b5050505050565b606061151982611800565b611558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154f90613058565b60405180910390fd5b6000611562611ea8565b9050600081511161158257604051806020016040528060008152506115ad565b8061158c84611f3a565b60405160200161159d9291906130b4565b6040516020818303038152906040525b915050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b813273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b590612d37565b60405180910390fd5b6000811180156116d05750600d548111155b61170f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170690612da3565b60405180910390fd5b600c548161171b61096f565b6117259190612df2565b1115611766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175d90612e94565b60405180910390fd5b61176e611867565b6117788284611e17565b505050565b611785611867565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117eb9061314a565b60405180910390fd5b6117fd81611d51565b50565b60008161180b6118e5565b1115801561181a575060005482105b8015611858575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b61186f611f8a565b73ffffffffffffffffffffffffffffffffffffffff1661188d610f95565b73ffffffffffffffffffffffffffffffffffffffff16146118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da906131b6565b60405180910390fd5b565b600090565b60006118f582611c85565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461195c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061196884611f92565b9150915061197e818761197961185f565b611fb9565b6119ca576119938661198e61185f565b6115bb565b6119c9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611a30576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a3d8686866001611ffd565b8015611a4857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611b1685611af2888887612003565b7c02000000000000000000000000000000000000000000000000000000001761202b565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611b9c5760006001850190506000600460008381526020019081526020016000205403611b9a576000548114611b99578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c048686866001612056565b505050505050565b600260095403611c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4890613222565b60405180910390fd5b6002600981905550565b6001600981905550565b611c8083838360405180602001604052806000815250611329565b505050565b60008082905080611c946118e5565b11611d1a57600054811015611d195760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d17575b60008103611d0d576004600083600190039350838152602001908152602001600020549050611ce3565b8092505050611d4c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e3182826040518060200160405280600081525061205c565b5050565b611e40848484610986565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ea257611e6b848484846120f9565b611ea1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a8054611eb790612c09565b80601f0160208091040260200160405190810160405280929190818152602001828054611ee390612c09565b8015611f305780601f10611f0557610100808354040283529160200191611f30565b820191906000526020600020905b815481529060010190602001808311611f1357829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611f7557600184039350600a81066030018453600a8104905080611f53575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861201a868684612249565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6120668383612252565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120f457600080549050600083820390505b6120a660008683806001019450866120f9565b6120dc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120935781600054146120f157600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261211f61185f565b8786866040518563ffffffff1660e01b81526004016121419493929190613297565b6020604051808303816000875af192505050801561217d57506040513d601f19601f8201168201806040525081019061217a91906132f8565b60015b6121f6573d80600081146121ad576040519150601f19603f3d011682016040523d82523d6000602084013e6121b2565b606091505b5060008151036121ee576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203612292576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61229f6000848385611ffd565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612316836123076000866000612003565b6123108561240d565b1761202b565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146123b757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061237c565b50600082036123f2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506124086000848385612056565b505050565b60006001821460e11b9050919050565b82805461242990612c09565b90600052602060002090601f01602090048101928261244b5760008555612492565b82601f1061246457805160ff1916838001178555612492565b82800160010185558215612492579182015b82811115612491578251825591602001919060010190612476565b5b50905061249f91906124a3565b5090565b5b808211156124bc5760008160009055506001016124a4565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612509816124d4565b811461251457600080fd5b50565b60008135905061252681612500565b92915050565b600060208284031215612542576125416124ca565b5b600061255084828501612517565b91505092915050565b60008115159050919050565b61256e81612559565b82525050565b60006020820190506125896000830184612565565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125c95780820151818401526020810190506125ae565b838111156125d8576000848401525b50505050565b6000601f19601f8301169050919050565b60006125fa8261258f565b612604818561259a565b93506126148185602086016125ab565b61261d816125de565b840191505092915050565b6000602082019050818103600083015261264281846125ef565b905092915050565b6000819050919050565b61265d8161264a565b811461266857600080fd5b50565b60008135905061267a81612654565b92915050565b600060208284031215612696576126956124ca565b5b60006126a48482850161266b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126d8826126ad565b9050919050565b6126e8816126cd565b82525050565b600060208201905061270360008301846126df565b92915050565b612712816126cd565b811461271d57600080fd5b50565b60008135905061272f81612709565b92915050565b6000806040838503121561274c5761274b6124ca565b5b600061275a85828601612720565b925050602061276b8582860161266b565b9150509250929050565b61277e8161264a565b82525050565b60006020820190506127996000830184612775565b92915050565b6127a881612559565b81146127b357600080fd5b50565b6000813590506127c58161279f565b92915050565b6000602082840312156127e1576127e06124ca565b5b60006127ef848285016127b6565b91505092915050565b600080600060608486031215612811576128106124ca565b5b600061281f86828701612720565b935050602061283086828701612720565b92505060406128418682870161266b565b9150509250925092565b600060208284031215612861576128606124ca565b5b600061286f84828501612720565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128ba826125de565b810181811067ffffffffffffffff821117156128d9576128d8612882565b5b80604052505050565b60006128ec6124c0565b90506128f882826128b1565b919050565b600067ffffffffffffffff82111561291857612917612882565b5b612921826125de565b9050602081019050919050565b82818337600083830152505050565b600061295061294b846128fd565b6128e2565b90508281526020810184848401111561296c5761296b61287d565b5b61297784828561292e565b509392505050565b600082601f83011261299457612993612878565b5b81356129a484826020860161293d565b91505092915050565b6000602082840312156129c3576129c26124ca565b5b600082013567ffffffffffffffff8111156129e1576129e06124cf565b5b6129ed8482850161297f565b91505092915050565b60008060408385031215612a0d57612a0c6124ca565b5b6000612a1b85828601612720565b9250506020612a2c858286016127b6565b9150509250929050565b600067ffffffffffffffff821115612a5157612a50612882565b5b612a5a826125de565b9050602081019050919050565b6000612a7a612a7584612a36565b6128e2565b905082815260208101848484011115612a9657612a9561287d565b5b612aa184828561292e565b509392505050565b600082601f830112612abe57612abd612878565b5b8135612ace848260208601612a67565b91505092915050565b60008060008060808587031215612af157612af06124ca565b5b6000612aff87828801612720565b9450506020612b1087828801612720565b9350506040612b218782880161266b565b925050606085013567ffffffffffffffff811115612b4257612b416124cf565b5b612b4e87828801612aa9565b91505092959194509250565b60008060408385031215612b7157612b706124ca565b5b6000612b7f85828601612720565b9250506020612b9085828601612720565b9150509250929050565b60008060408385031215612bb157612bb06124ca565b5b6000612bbf8582860161266b565b9250506020612bd085828601612720565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c2157607f821691505b602082108103612c3457612c33612bda565b5b50919050565b6000604082019050612c4f60008301856126df565b612c5c60208301846126df565b9392505050565b600081519050612c728161279f565b92915050565b600060208284031215612c8e57612c8d6124ca565b5b6000612c9c84828501612c63565b91505092915050565b600081905092915050565b50565b6000612cc0600083612ca5565b9150612ccb82612cb0565b600082019050919050565b6000612ce182612cb3565b9150819050919050565b7f546865206d696e74657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612d21601e8361259a565b9150612d2c82612ceb565b602082019050919050565b60006020820190508181036000830152612d5081612d14565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000612d8d60148361259a565b9150612d9882612d57565b602082019050919050565b60006020820190508181036000830152612dbc81612d80565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612dfd8261264a565b9150612e088361264a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e3d57612e3c612dc3565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000612e7e60148361259a565b9150612e8982612e48565b602082019050919050565b60006020820190508181036000830152612ead81612e71565b9050919050565b6000612ebf8261264a565b9150612eca8361264a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f0357612f02612dc3565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000612f4460138361259a565b9150612f4f82612f0e565b602082019050919050565b60006020820190508181036000830152612f7381612f37565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000612fb060178361259a565b9150612fbb82612f7a565b602082019050919050565b60006020820190508181036000830152612fdf81612fa3565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613042602f8361259a565b915061304d82612fe6565b604082019050919050565b6000602082019050818103600083015261307181613035565b9050919050565b600081905092915050565b600061308e8261258f565b6130988185613078565b93506130a88185602086016125ab565b80840191505092915050565b60006130c08285613083565b91506130cc8284613083565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061313460268361259a565b915061313f826130d8565b604082019050919050565b6000602082019050818103600083015261316381613127565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131a060208361259a565b91506131ab8261316a565b602082019050919050565b600060208201905081810360008301526131cf81613193565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061320c601f8361259a565b9150613217826131d6565b602082019050919050565b6000602082019050818103600083015261323b816131ff565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061326982613242565b613273818561324d565b93506132838185602086016125ab565b61328c816125de565b840191505092915050565b60006080820190506132ac60008301876126df565b6132b960208301866126df565b6132c66040830185612775565b81810360608301526132d8818461325e565b905095945050505050565b6000815190506132f281612500565b92915050565b60006020828403121561330e5761330d6124ca565b5b600061331c848285016132e3565b9150509291505056fea26469706673582212207a3f6b8959d7c4150961652da66754924a37b12d830488e4574ae79475ea9c4e64736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001148616e642d7061696e74656420436c756200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034850430000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063a22cb4651161008a578063d5abeb0111610064578063d5abeb01146105a3578063e985e9c5146105ce578063efbd73f41461060b578063f2fde38b14610634576101b7565b8063a22cb46514610521578063b88d4fde1461054a578063c87b56dd14610566576101b7565b80638da5cb5b116100c65780638da5cb5b1461048457806394354fd0146104af57806395d89b41146104da578063a0712d6814610505576101b7565b806370a0823114610407578063715018a6146104445780637ec4a6591461045b576101b7565b806323b872dd1161015957806344a0d68a1161013357806344a0d68a1461034b5780635c975abb1461037457806362b99ad41461039f5780636352211e146103ca576101b7565b806323b872dd146102fc5780633ccfd60b1461031857806342842e0e1461032f576101b7565b8063095ea7b311610195578063095ea7b31461026157806313faede61461027d57806316c38b3c146102a857806318160ddd146102d1576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061252c565b61065d565b6040516101f09190612574565b60405180910390f35b34801561020557600080fd5b5061020e6106ef565b60405161021b9190612628565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612680565b610781565b60405161025891906126ee565b60405180910390f35b61027b60048036038101906102769190612735565b610800565b005b34801561028957600080fd5b50610292610944565b60405161029f9190612784565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906127cb565b61094a565b005b3480156102dd57600080fd5b506102e661096f565b6040516102f39190612784565b60405180910390f35b610316600480360381019061031191906127f8565b610986565b005b34801561032457600080fd5b5061032d610b68565b005b610349600480360381019061034491906127f8565b610c00565b005b34801561035757600080fd5b50610372600480360381019061036d9190612680565b610de2565b005b34801561038057600080fd5b50610389610df4565b6040516103969190612574565b60405180910390f35b3480156103ab57600080fd5b506103b4610e07565b6040516103c19190612628565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612680565b610e95565b6040516103fe91906126ee565b60405180910390f35b34801561041357600080fd5b5061042e6004803603810190610429919061284b565b610ea7565b60405161043b9190612784565b60405180910390f35b34801561045057600080fd5b50610459610f5f565b005b34801561046757600080fd5b50610482600480360381019061047d91906129ad565b610f73565b005b34801561049057600080fd5b50610499610f95565b6040516104a691906126ee565b60405180910390f35b3480156104bb57600080fd5b506104c4610fbf565b6040516104d19190612784565b60405180910390f35b3480156104e657600080fd5b506104ef610fc5565b6040516104fc9190612628565b60405180910390f35b61051f600480360381019061051a9190612680565b611057565b005b34801561052d57600080fd5b50610548600480360381019061054391906129f6565b61121e565b005b610564600480360381019061055f9190612ad7565b611329565b005b34801561057257600080fd5b5061058d60048036038101906105889190612680565b61150e565b60405161059a9190612628565b60405180910390f35b3480156105af57600080fd5b506105b86115b5565b6040516105c59190612784565b60405180910390f35b3480156105da57600080fd5b506105f560048036038101906105f09190612b5a565b6115bb565b6040516106029190612574565b60405180910390f35b34801561061757600080fd5b50610632600480360381019061062d9190612b9a565b61164f565b005b34801561064057600080fd5b5061065b6004803603810190610656919061284b565b61177d565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106e85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106fe90612c09565b80601f016020809104026020016040519081016040528092919081815260200182805461072a90612c09565b80156107775780601f1061074c57610100808354040283529160200191610777565b820191906000526020600020905b81548152906001019060200180831161075a57829003601f168201915b5050505050905090565b600061078c82611800565b6107c2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080b82610e95565b90508073ffffffffffffffffffffffffffffffffffffffff1661082c61185f565b73ffffffffffffffffffffffffffffffffffffffff161461088f576108588161085361185f565b6115bb565b61088e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b5481565b610952611867565b80600e60006101000a81548160ff02191690831515021790555050565b60006109796118e5565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b56573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109f8576109f38484846118ea565b610b62565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a41929190612c3a565b602060405180830381865afa158015610a5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a829190612c78565b8015610b1457506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610ad2929190612c3a565b602060405180830381865afa158015610aef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b139190612c78565b5b610b5557336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b4c91906126ee565b60405180910390fd5b5b610b618484846118ea565b5b50505050565b610b70611867565b610b78611c0c565b6000610b82610f95565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ba590612cd6565b60006040518083038185875af1925050503d8060008114610be2576040519150601f19603f3d011682016040523d82523d6000602084013e610be7565b606091505b5050905080610bf557600080fd5b50610bfe611c5b565b565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610dd0573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c7257610c6d848484611c65565b610ddc565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610cbb929190612c3a565b602060405180830381865afa158015610cd8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cfc9190612c78565b8015610d8e57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610d4c929190612c3a565b602060405180830381865afa158015610d69573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d8d9190612c78565b5b610dcf57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610dc691906126ee565b60405180910390fd5b5b610ddb848484611c65565b5b50505050565b610dea611867565b80600b8190555050565b600e60009054906101000a900460ff1681565b600a8054610e1490612c09565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4090612c09565b8015610e8d5780601f10610e6257610100808354040283529160200191610e8d565b820191906000526020600020905b815481529060010190602001808311610e7057829003601f168201915b505050505081565b6000610ea082611c85565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f0e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f67611867565b610f716000611d51565b565b610f7b611867565b80600a9080519060200190610f9192919061241d565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b606060038054610fd490612c09565b80601f016020809104026020016040519081016040528092919081815260200182805461100090612c09565b801561104d5780601f106110225761010080835404028352916020019161104d565b820191906000526020600020905b81548152906001019060200180831161103057829003601f168201915b5050505050905090565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90612d37565b60405180910390fd5b6000811180156110d85750600d548111155b611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e90612da3565b60405180910390fd5b600c548161112361096f565b61112d9190612df2565b111561116e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116590612e94565b60405180910390fd5b8180600b5461117d9190612eb4565b3410156111bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b690612f5a565b60405180910390fd5b600e60009054906101000a900460ff161561120f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120690612fc6565b60405180910390fd5b6112193384611e17565b505050565b806007600061122b61185f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112d861185f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161131d9190612574565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156114fa573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361139c5761139785858585611e35565b611507565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016113e5929190612c3a565b602060405180830381865afa158015611402573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114269190612c78565b80156114b857506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611476929190612c3a565b602060405180830381865afa158015611493573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b79190612c78565b5b6114f957336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016114f091906126ee565b60405180910390fd5b5b61150685858585611e35565b5b5050505050565b606061151982611800565b611558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154f90613058565b60405180910390fd5b6000611562611ea8565b9050600081511161158257604051806020016040528060008152506115ad565b8061158c84611f3a565b60405160200161159d9291906130b4565b6040516020818303038152906040525b915050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b813273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b590612d37565b60405180910390fd5b6000811180156116d05750600d548111155b61170f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170690612da3565b60405180910390fd5b600c548161171b61096f565b6117259190612df2565b1115611766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175d90612e94565b60405180910390fd5b61176e611867565b6117788284611e17565b505050565b611785611867565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117eb9061314a565b60405180910390fd5b6117fd81611d51565b50565b60008161180b6118e5565b1115801561181a575060005482105b8015611858575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b61186f611f8a565b73ffffffffffffffffffffffffffffffffffffffff1661188d610f95565b73ffffffffffffffffffffffffffffffffffffffff16146118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da906131b6565b60405180910390fd5b565b600090565b60006118f582611c85565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461195c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061196884611f92565b9150915061197e818761197961185f565b611fb9565b6119ca576119938661198e61185f565b6115bb565b6119c9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611a30576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a3d8686866001611ffd565b8015611a4857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611b1685611af2888887612003565b7c02000000000000000000000000000000000000000000000000000000001761202b565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611b9c5760006001850190506000600460008381526020019081526020016000205403611b9a576000548114611b99578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c048686866001612056565b505050505050565b600260095403611c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4890613222565b60405180910390fd5b6002600981905550565b6001600981905550565b611c8083838360405180602001604052806000815250611329565b505050565b60008082905080611c946118e5565b11611d1a57600054811015611d195760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d17575b60008103611d0d576004600083600190039350838152602001908152602001600020549050611ce3565b8092505050611d4c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e3182826040518060200160405280600081525061205c565b5050565b611e40848484610986565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ea257611e6b848484846120f9565b611ea1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a8054611eb790612c09565b80601f0160208091040260200160405190810160405280929190818152602001828054611ee390612c09565b8015611f305780601f10611f0557610100808354040283529160200191611f30565b820191906000526020600020905b815481529060010190602001808311611f1357829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611f7557600184039350600a81066030018453600a8104905080611f53575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861201a868684612249565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6120668383612252565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120f457600080549050600083820390505b6120a660008683806001019450866120f9565b6120dc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120935781600054146120f157600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261211f61185f565b8786866040518563ffffffff1660e01b81526004016121419493929190613297565b6020604051808303816000875af192505050801561217d57506040513d601f19601f8201168201806040525081019061217a91906132f8565b60015b6121f6573d80600081146121ad576040519150601f19603f3d011682016040523d82523d6000602084013e6121b2565b606091505b5060008151036121ee576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203612292576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61229f6000848385611ffd565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612316836123076000866000612003565b6123108561240d565b1761202b565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146123b757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061237c565b50600082036123f2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506124086000848385612056565b505050565b60006001821460e11b9050919050565b82805461242990612c09565b90600052602060002090601f01602090048101928261244b5760008555612492565b82601f1061246457805160ff1916838001178555612492565b82800160010185558215612492579182015b82811115612491578251825591602001919060010190612476565b5b50905061249f91906124a3565b5090565b5b808211156124bc5760008160009055506001016124a4565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612509816124d4565b811461251457600080fd5b50565b60008135905061252681612500565b92915050565b600060208284031215612542576125416124ca565b5b600061255084828501612517565b91505092915050565b60008115159050919050565b61256e81612559565b82525050565b60006020820190506125896000830184612565565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125c95780820151818401526020810190506125ae565b838111156125d8576000848401525b50505050565b6000601f19601f8301169050919050565b60006125fa8261258f565b612604818561259a565b93506126148185602086016125ab565b61261d816125de565b840191505092915050565b6000602082019050818103600083015261264281846125ef565b905092915050565b6000819050919050565b61265d8161264a565b811461266857600080fd5b50565b60008135905061267a81612654565b92915050565b600060208284031215612696576126956124ca565b5b60006126a48482850161266b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126d8826126ad565b9050919050565b6126e8816126cd565b82525050565b600060208201905061270360008301846126df565b92915050565b612712816126cd565b811461271d57600080fd5b50565b60008135905061272f81612709565b92915050565b6000806040838503121561274c5761274b6124ca565b5b600061275a85828601612720565b925050602061276b8582860161266b565b9150509250929050565b61277e8161264a565b82525050565b60006020820190506127996000830184612775565b92915050565b6127a881612559565b81146127b357600080fd5b50565b6000813590506127c58161279f565b92915050565b6000602082840312156127e1576127e06124ca565b5b60006127ef848285016127b6565b91505092915050565b600080600060608486031215612811576128106124ca565b5b600061281f86828701612720565b935050602061283086828701612720565b92505060406128418682870161266b565b9150509250925092565b600060208284031215612861576128606124ca565b5b600061286f84828501612720565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128ba826125de565b810181811067ffffffffffffffff821117156128d9576128d8612882565b5b80604052505050565b60006128ec6124c0565b90506128f882826128b1565b919050565b600067ffffffffffffffff82111561291857612917612882565b5b612921826125de565b9050602081019050919050565b82818337600083830152505050565b600061295061294b846128fd565b6128e2565b90508281526020810184848401111561296c5761296b61287d565b5b61297784828561292e565b509392505050565b600082601f83011261299457612993612878565b5b81356129a484826020860161293d565b91505092915050565b6000602082840312156129c3576129c26124ca565b5b600082013567ffffffffffffffff8111156129e1576129e06124cf565b5b6129ed8482850161297f565b91505092915050565b60008060408385031215612a0d57612a0c6124ca565b5b6000612a1b85828601612720565b9250506020612a2c858286016127b6565b9150509250929050565b600067ffffffffffffffff821115612a5157612a50612882565b5b612a5a826125de565b9050602081019050919050565b6000612a7a612a7584612a36565b6128e2565b905082815260208101848484011115612a9657612a9561287d565b5b612aa184828561292e565b509392505050565b600082601f830112612abe57612abd612878565b5b8135612ace848260208601612a67565b91505092915050565b60008060008060808587031215612af157612af06124ca565b5b6000612aff87828801612720565b9450506020612b1087828801612720565b9350506040612b218782880161266b565b925050606085013567ffffffffffffffff811115612b4257612b416124cf565b5b612b4e87828801612aa9565b91505092959194509250565b60008060408385031215612b7157612b706124ca565b5b6000612b7f85828601612720565b9250506020612b9085828601612720565b9150509250929050565b60008060408385031215612bb157612bb06124ca565b5b6000612bbf8582860161266b565b9250506020612bd085828601612720565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c2157607f821691505b602082108103612c3457612c33612bda565b5b50919050565b6000604082019050612c4f60008301856126df565b612c5c60208301846126df565b9392505050565b600081519050612c728161279f565b92915050565b600060208284031215612c8e57612c8d6124ca565b5b6000612c9c84828501612c63565b91505092915050565b600081905092915050565b50565b6000612cc0600083612ca5565b9150612ccb82612cb0565b600082019050919050565b6000612ce182612cb3565b9150819050919050565b7f546865206d696e74657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612d21601e8361259a565b9150612d2c82612ceb565b602082019050919050565b60006020820190508181036000830152612d5081612d14565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000612d8d60148361259a565b9150612d9882612d57565b602082019050919050565b60006020820190508181036000830152612dbc81612d80565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612dfd8261264a565b9150612e088361264a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e3d57612e3c612dc3565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000612e7e60148361259a565b9150612e8982612e48565b602082019050919050565b60006020820190508181036000830152612ead81612e71565b9050919050565b6000612ebf8261264a565b9150612eca8361264a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f0357612f02612dc3565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000612f4460138361259a565b9150612f4f82612f0e565b602082019050919050565b60006020820190508181036000830152612f7381612f37565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000612fb060178361259a565b9150612fbb82612f7a565b602082019050919050565b60006020820190508181036000830152612fdf81612fa3565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613042602f8361259a565b915061304d82612fe6565b604082019050919050565b6000602082019050818103600083015261307181613035565b9050919050565b600081905092915050565b600061308e8261258f565b6130988185613078565b93506130a88185602086016125ab565b80840191505092915050565b60006130c08285613083565b91506130cc8284613083565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061313460268361259a565b915061313f826130d8565b604082019050919050565b6000602082019050818103600083015261316381613127565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131a060208361259a565b91506131ab8261316a565b602082019050919050565b600060208201905081810360008301526131cf81613193565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061320c601f8361259a565b9150613217826131d6565b602082019050919050565b6000602082019050818103600083015261323b816131ff565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061326982613242565b613273818561324d565b93506132838185602086016125ab565b61328c816125de565b840191505092915050565b60006080820190506132ac60008301876126df565b6132b960208301866126df565b6132c66040830185612775565b81810360608301526132d8818461325e565b905095945050505050565b6000815190506132f281612500565b92915050565b60006020828403121561330e5761330d6124ca565b5b600061331c848285016132e3565b9150509291505056fea26469706673582212207a3f6b8959d7c4150961652da66754924a37b12d830488e4574ae79475ea9c4e64736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001148616e642d7061696e74656420436c756200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034850430000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): Hand-painted Club
Arg [1] : _tokenSymbol (string): HPC

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [3] : 48616e642d7061696e74656420436c7562000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 4850430000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

62637:2684:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29523:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30425:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36916:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36349:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62764:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64975:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26176:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63038:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65058:150;;;;;;;;;;;;;:::i;:::-;;63209:173;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64789:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62883:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62729:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31818:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27360:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10302:103;;;;;;;;;;;;;:::i;:::-;;64869:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9654:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62839:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30601:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64042:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37474:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63388:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64421:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62803:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37865:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64260:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10560:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29523:639;29608:4;29947:10;29932:25;;:11;:25;;;;:102;;;;30024:10;30009:25;;:11;:25;;;;29932:102;:179;;;;30101:10;30086:25;;:11;:25;;;;29932:179;29912:199;;29523:639;;;:::o;30425:100::-;30479:13;30512:5;30505:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30425:100;:::o;36916:218::-;36992:7;37017:16;37025:7;37017;:16::i;:::-;37012:64;;37042:34;;;;;;;;;;;;;;37012:64;37096:15;:24;37112:7;37096:24;;;;;;;;;;;:30;;;;;;;;;;;;37089:37;;36916:218;;;:::o;36349:408::-;36438:13;36454:16;36462:7;36454;:16::i;:::-;36438:32;;36510:5;36487:28;;:19;:17;:19::i;:::-;:28;;;36483:175;;36535:44;36552:5;36559:19;:17;:19::i;:::-;36535:16;:44::i;:::-;36530:128;;36607:35;;;;;;;;;;;;;;36530:128;36483:175;36703:2;36670:15;:24;36686:7;36670:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;36741:7;36737:2;36721:28;;36730:5;36721:28;;;;;;;;;;;;36427:330;36349:408;;:::o;62764:34::-;;;;:::o;64975:77::-;9540:13;:11;:13::i;:::-;65040:6:::1;65031;;:15;;;;;;;;;;;;;;;;;;64975:77:::0;:::o;26176:323::-;26237:7;26465:15;:13;:15::i;:::-;26450:12;;26434:13;;:28;:46;26427:53;;26176:323;:::o;63038:165::-;63147:4;3590:1;2404:42;3544:43;;;:47;3540:699;;;3831:10;3823:18;;:4;:18;;;3819:85;;63160:37:::1;63179:4;63185:2;63189:7;63160:18;:37::i;:::-;3882:7:::0;;3819:85;2404:42;3964:40;;;4013:4;4020:10;3964:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;2404:42;4060:40;;;4109:4;4116;4060:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3964:157;3918:310;;4201:10;4182:30;;;;;;;;;;;:::i;:::-;;;;;;;;3918:310;3540:699;63160:37:::1;63179:4;63185:2;63189:7;63160:18;:37::i;:::-;63038:165:::0;;;;;:::o;65058:150::-;9540:13;:11;:13::i;:::-;6925:21:::1;:19;:21::i;:::-;65116:7:::2;65137;:5;:7::i;:::-;65129:21;;65158;65129:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65115:69;;;65199:2;65191:11;;;::::0;::::2;;65108:100;6969:20:::1;:18;:20::i;:::-;65058:150::o:0;63209:173::-;63322:4;3590:1;2404:42;3544:43;;;:47;3540:699;;;3831:10;3823:18;;:4;:18;;;3819:85;;63335:41:::1;63358:4;63364:2;63368:7;63335:22;:41::i;:::-;3882:7:::0;;3819:85;2404:42;3964:40;;;4013:4;4020:10;3964:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;2404:42;4060:40;;;4109:4;4116;4060:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3964:157;3918:310;;4201:10;4182:30;;;;;;;;;;;:::i;:::-;;;;;;;;3918:310;3540:699;63335:41:::1;63358:4;63364:2;63368:7;63335:22;:41::i;:::-;63209:173:::0;;;;;:::o;64789:74::-;9540:13;:11;:13::i;:::-;64852:5:::1;64845:4;:12;;;;64789:74:::0;:::o;62883:25::-;;;;;;;;;;;;;:::o;62729:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31818:152::-;31890:7;31933:27;31952:7;31933:18;:27::i;:::-;31910:52;;31818:152;;;:::o;27360:233::-;27432:7;27473:1;27456:19;;:5;:19;;;27452:60;;27484:28;;;;;;;;;;;;;;27452:60;21519:13;27530:18;:25;27549:5;27530:25;;;;;;;;;;;;;;;;:55;27523:62;;27360:233;;;:::o;10302:103::-;9540:13;:11;:13::i;:::-;10367:30:::1;10394:1;10367:18;:30::i;:::-;10302:103::o:0;64869:100::-;9540:13;:11;:13::i;:::-;64953:10:::1;64941:9;:22;;;;;;;;;;;;:::i;:::-;;64869:100:::0;:::o;9654:87::-;9700:7;9727:6;;;;;;;;;;;9720:13;;9654:87;:::o;62839:37::-;;;;:::o;30601:104::-;30657:13;30690:7;30683:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30601:104;:::o;64042:210::-;64107:11;63666:9;63652:23;;:10;:23;;;63644:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;63739:1;63725:11;:15;:52;;;;;63759:18;;63744:11;:33;;63725:52;63717:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;63848:9;;63833:11;63817:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;63809:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;64140:11:::1;63987;63980:4;;:18;;;;:::i;:::-;63967:9;:31;;63959:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;64169:6:::2;;;;;;;;;;;64168:7;64160:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;64212:34;64222:10;64234:11;64212:9;:34::i;:::-;63889:1:::1;64042:210:::0;;:::o;37474:234::-;37621:8;37569:18;:39;37588:19;:17;:19::i;:::-;37569:39;;;;;;;;;;;;;;;:49;37609:8;37569:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;37681:8;37645:55;;37660:19;:17;:19::i;:::-;37645:55;;;37691:8;37645:55;;;;;;:::i;:::-;;;;;;;;37474:234;;:::o;63388:198::-;63520:4;3590:1;2404:42;3544:43;;;:47;3540:699;;;3831:10;3823:18;;:4;:18;;;3819:85;;63533:47:::1;63556:4;63562:2;63566:7;63575:4;63533:22;:47::i;:::-;3882:7:::0;;3819:85;2404:42;3964:40;;;4013:4;4020:10;3964:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;2404:42;4060:40;;;4109:4;4116;4060:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3964:157;3918:310;;4201:10;4182:30;;;;;;;;;;;:::i;:::-;;;;;;;;3918:310;3540:699;63533:47:::1;63556:4;63562:2;63566:7;63575:4;63533:22;:47::i;:::-;63388:198:::0;;;;;;:::o;64421:362::-;64495:13;64525:17;64533:8;64525:7;:17::i;:::-;64517:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;64603:28;64634:10;:8;:10::i;:::-;64603:41;;64689:1;64664:14;64658:28;:32;:119;;;;;;;;;;;;;;;;;64726:14;64742:19;64752:8;64742:9;:19::i;:::-;64709:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64658:119;64651:126;;;64421:362;;;:::o;62803:31::-;;;;:::o;37865:164::-;37962:4;37986:18;:25;38005:5;37986:25;;;;;;;;;;;;;;;:35;38012:8;37986:35;;;;;;;;;;;;;;;;;;;;;;;;;37979:42;;37865:164;;;;:::o;64260:155::-;64346:11;63666:9;63652:23;;:10;:23;;;63644:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;63739:1;63725:11;:15;:52;;;;;63759:18;;63744:11;:33;;63725:52;63717:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;63848:9;;63833:11;63817:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;63809:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;9540:13:::1;:11;:13::i;:::-;64376:33:::2;64386:9;64397:11;64376:9;:33::i;:::-;64260:155:::0;;;:::o;10560:201::-;9540:13;:11;:13::i;:::-;10669:1:::1;10649:22;;:8;:22;;::::0;10641:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10725:28;10744:8;10725:18;:28::i;:::-;10560:201:::0;:::o;38287:282::-;38352:4;38408:7;38389:15;:13;:15::i;:::-;:26;;:66;;;;;38442:13;;38432:7;:23;38389:66;:153;;;;;38541:1;22295:8;38493:17;:26;38511:7;38493:26;;;;;;;;;;;;:44;:49;38389:153;38369:173;;38287:282;;;:::o;60595:105::-;60655:7;60682:10;60675:17;;60595:105;:::o;9819:132::-;9894:12;:10;:12::i;:::-;9883:23;;:7;:5;:7::i;:::-;:23;;;9875:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9819:132::o;25692:92::-;25748:7;25692:92;:::o;40555:2825::-;40697:27;40727;40746:7;40727:18;:27::i;:::-;40697:57;;40812:4;40771:45;;40787:19;40771:45;;;40767:86;;40825:28;;;;;;;;;;;;;;40767:86;40867:27;40896:23;40923:35;40950:7;40923:26;:35::i;:::-;40866:92;;;;41058:68;41083:15;41100:4;41106:19;:17;:19::i;:::-;41058:24;:68::i;:::-;41053:180;;41146:43;41163:4;41169:19;:17;:19::i;:::-;41146:16;:43::i;:::-;41141:92;;41198:35;;;;;;;;;;;;;;41141:92;41053:180;41264:1;41250:16;;:2;:16;;;41246:52;;41275:23;;;;;;;;;;;;;;41246:52;41311:43;41333:4;41339:2;41343:7;41352:1;41311:21;:43::i;:::-;41447:15;41444:160;;;41587:1;41566:19;41559:30;41444:160;41984:18;:24;42003:4;41984:24;;;;;;;;;;;;;;;;41982:26;;;;;;;;;;;;42053:18;:22;42072:2;42053:22;;;;;;;;;;;;;;;;42051:24;;;;;;;;;;;42375:146;42412:2;42461:45;42476:4;42482:2;42486:19;42461:14;:45::i;:::-;22575:8;42433:73;42375:18;:146::i;:::-;42346:17;:26;42364:7;42346:26;;;;;;;;;;;:175;;;;42692:1;22575:8;42641:19;:47;:52;42637:627;;42714:19;42746:1;42736:7;:11;42714:33;;42903:1;42869:17;:30;42887:11;42869:30;;;;;;;;;;;;:35;42865:384;;43007:13;;42992:11;:28;42988:242;;43187:19;43154:17;:30;43172:11;43154:30;;;;;;;;;;;:52;;;;42988:242;42865:384;42695:569;42637:627;43311:7;43307:2;43292:27;;43301:4;43292:27;;;;;;;;;;;;43330:42;43351:4;43357:2;43361:7;43370:1;43330:20;:42::i;:::-;40686:2694;;;40555:2825;;;:::o;7005:293::-;6407:1;7139:7;;:19;7131:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;6407:1;7272:7;:18;;;;7005:293::o;7306:213::-;6363:1;7489:7;:22;;;;7306:213::o;43476:193::-;43622:39;43639:4;43645:2;43649:7;43622:39;;;;;;;;;;;;:16;:39::i;:::-;43476:193;;;:::o;32973:1275::-;33040:7;33060:12;33075:7;33060:22;;33143:4;33124:15;:13;:15::i;:::-;:23;33120:1061;;33177:13;;33170:4;:20;33166:1015;;;33215:14;33232:17;:23;33250:4;33232:23;;;;;;;;;;;;33215:40;;33349:1;22295:8;33321:6;:24;:29;33317:845;;33986:113;34003:1;33993:6;:11;33986:113;;34046:17;:25;34064:6;;;;;;;34046:25;;;;;;;;;;;;34037:34;;33986:113;;;34132:6;34125:13;;;;;;33317:845;33192:989;33166:1015;33120:1061;34209:31;;;;;;;;;;;;;;32973:1275;;;;:::o;10921:191::-;10995:16;11014:6;;;;;;;;;;;10995:25;;11040:8;11031:6;;:17;;;;;;;;;;;;;;;;;;11095:8;11064:40;;11085:8;11064:40;;;;;;;;;;;;10984:128;10921:191;:::o;54427:112::-;54504:27;54514:2;54518:8;54504:27;;;;;;;;;;;;:9;:27::i;:::-;54427:112;;:::o;44267:407::-;44442:31;44455:4;44461:2;44465:7;44442:12;:31::i;:::-;44506:1;44488:2;:14;;;:19;44484:183;;44527:56;44558:4;44564:2;44568:7;44577:5;44527:30;:56::i;:::-;44522:145;;44611:40;;;;;;;;;;;;;;44522:145;44484:183;44267:407;;;;:::o;65214:104::-;65274:13;65303:9;65296:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65214:104;:::o;60802:1745::-;60867:17;61301:4;61294;61288:11;61284:22;61393:1;61387:4;61380:15;61468:4;61465:1;61461:12;61454:19;;61550:1;61545:3;61538:14;61654:3;61893:5;61875:428;61901:1;61875:428;;;61941:1;61936:3;61932:11;61925:18;;62112:2;62106:4;62102:13;62098:2;62094:22;62089:3;62081:36;62206:2;62200:4;62196:13;62188:21;;62273:4;61875:428;62263:25;61875:428;61879:21;62342:3;62337;62333:13;62457:4;62452:3;62448:14;62441:21;;62522:6;62517:3;62510:19;60906:1634;;;60802:1745;;;:::o;8205:98::-;8258:7;8285:10;8278:17;;8205:98;:::o;39450:485::-;39552:27;39581:23;39622:38;39663:15;:24;39679:7;39663:24;;;;;;;;;;;39622:65;;39840:18;39817:41;;39897:19;39891:26;39872:45;;39802:126;39450:485;;;:::o;38678:659::-;38827:11;38992:16;38985:5;38981:28;38972:37;;39152:16;39141:9;39137:32;39124:45;;39302:15;39291:9;39288:30;39280:5;39269:9;39266:20;39263:56;39253:66;;38678:659;;;;;:::o;45336:159::-;;;;;:::o;59904:311::-;60039:7;60059:16;22699:3;60085:19;:41;;60059:68;;22699:3;60153:31;60164:4;60170:2;60174:9;60153:10;:31::i;:::-;60145:40;;:62;;60138:69;;;59904:311;;;;;:::o;34796:450::-;34876:14;35044:16;35037:5;35033:28;35024:37;;35221:5;35207:11;35182:23;35178:41;35175:52;35168:5;35165:63;35155:73;;34796:450;;;;:::o;46160:158::-;;;;;:::o;53654:689::-;53785:19;53791:2;53795:8;53785:5;:19::i;:::-;53864:1;53846:2;:14;;;:19;53842:483;;53886:11;53900:13;;53886:27;;53932:13;53954:8;53948:3;:14;53932:30;;53981:233;54012:62;54051:1;54055:2;54059:7;;;;;;54068:5;54012:30;:62::i;:::-;54007:167;;54110:40;;;;;;;;;;;;;;54007:167;54209:3;54201:5;:11;53981:233;;54296:3;54279:13;;:20;54275:34;;54301:8;;;54275:34;53867:458;;53842:483;53654:689;;;:::o;46758:716::-;46921:4;46967:2;46942:45;;;46988:19;:17;:19::i;:::-;47009:4;47015:7;47024:5;46942:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46938:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47242:1;47225:6;:13;:18;47221:235;;47271:40;;;;;;;;;;;;;;47221:235;47414:6;47408:13;47399:6;47395:2;47391:15;47384:38;46938:529;47111:54;;;47101:64;;;:6;:64;;;;47094:71;;;46758:716;;;;;;:::o;59605:147::-;59742:6;59605:147;;;;;:::o;47936:2966::-;48009:20;48032:13;;48009:36;;48072:1;48060:8;:13;48056:44;;48082:18;;;;;;;;;;;;;;48056:44;48113:61;48143:1;48147:2;48151:12;48165:8;48113:21;:61::i;:::-;48657:1;21657:2;48627:1;:26;;48626:32;48614:8;:45;48588:18;:22;48607:2;48588:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;48936:139;48973:2;49027:33;49050:1;49054:2;49058:1;49027:14;:33::i;:::-;48994:30;49015:8;48994:20;:30::i;:::-;:66;48936:18;:139::i;:::-;48902:17;:31;48920:12;48902:31;;;;;;;;;;;:173;;;;49092:16;49123:11;49152:8;49137:12;:23;49123:37;;49673:16;49669:2;49665:25;49653:37;;50045:12;50005:8;49964:1;49902:25;49843:1;49782;49755:335;50416:1;50402:12;50398:20;50356:346;50457:3;50448:7;50445:16;50356:346;;50675:7;50665:8;50662:1;50635:25;50632:1;50629;50624:59;50510:1;50501:7;50497:15;50486:26;;50356:346;;;50360:77;50747:1;50735:8;:13;50731:45;;50757:19;;;;;;;;;;;;;;50731:45;50809:3;50793:13;:19;;;;48362:2462;;50834:60;50863:1;50867:2;50871:12;50885:8;50834:20;:60::i;:::-;47998:2904;47936:2966;;:::o;35348:324::-;35418:14;35651:1;35641:8;35638:15;35612:24;35608:46;35598:56;;35348:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:116::-;5360:21;5375:5;5360:21;:::i;:::-;5353:5;5350:32;5340:60;;5396:1;5393;5386:12;5340:60;5290:116;:::o;5412:133::-;5455:5;5493:6;5480:20;5471:29;;5509:30;5533:5;5509:30;:::i;:::-;5412:133;;;;:::o;5551:323::-;5607:6;5656:2;5644:9;5635:7;5631:23;5627:32;5624:119;;;5662:79;;:::i;:::-;5624:119;5782:1;5807:50;5849:7;5840:6;5829:9;5825:22;5807:50;:::i;:::-;5797:60;;5753:114;5551:323;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:329::-;6564:6;6613:2;6601:9;6592:7;6588:23;6584:32;6581:119;;;6619:79;;:::i;:::-;6581:119;6739:1;6764:53;6809:7;6800:6;6789:9;6785:22;6764:53;:::i;:::-;6754:63;;6710:117;6505:329;;;;:::o;6840:117::-;6949:1;6946;6939:12;6963:117;7072:1;7069;7062:12;7086:180;7134:77;7131:1;7124:88;7231:4;7228:1;7221:15;7255:4;7252:1;7245:15;7272:281;7355:27;7377:4;7355:27;:::i;:::-;7347:6;7343:40;7485:6;7473:10;7470:22;7449:18;7437:10;7434:34;7431:62;7428:88;;;7496:18;;:::i;:::-;7428:88;7536:10;7532:2;7525:22;7315:238;7272:281;;:::o;7559:129::-;7593:6;7620:20;;:::i;:::-;7610:30;;7649:33;7677:4;7669:6;7649:33;:::i;:::-;7559:129;;;:::o;7694:308::-;7756:4;7846:18;7838:6;7835:30;7832:56;;;7868:18;;:::i;:::-;7832:56;7906:29;7928:6;7906:29;:::i;:::-;7898:37;;7990:4;7984;7980:15;7972:23;;7694:308;;;:::o;8008:154::-;8092:6;8087:3;8082;8069:30;8154:1;8145:6;8140:3;8136:16;8129:27;8008:154;;;:::o;8168:412::-;8246:5;8271:66;8287:49;8329:6;8287:49;:::i;:::-;8271:66;:::i;:::-;8262:75;;8360:6;8353:5;8346:21;8398:4;8391:5;8387:16;8436:3;8427:6;8422:3;8418:16;8415:25;8412:112;;;8443:79;;:::i;:::-;8412:112;8533:41;8567:6;8562:3;8557;8533:41;:::i;:::-;8252:328;8168:412;;;;;:::o;8600:340::-;8656:5;8705:3;8698:4;8690:6;8686:17;8682:27;8672:122;;8713:79;;:::i;:::-;8672:122;8830:6;8817:20;8855:79;8930:3;8922:6;8915:4;8907:6;8903:17;8855:79;:::i;:::-;8846:88;;8662:278;8600:340;;;;:::o;8946:509::-;9015:6;9064:2;9052:9;9043:7;9039:23;9035:32;9032:119;;;9070:79;;:::i;:::-;9032:119;9218:1;9207:9;9203:17;9190:31;9248:18;9240:6;9237:30;9234:117;;;9270:79;;:::i;:::-;9234:117;9375:63;9430:7;9421:6;9410:9;9406:22;9375:63;:::i;:::-;9365:73;;9161:287;8946:509;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:::-;12518:6;12526;12575:2;12563:9;12554:7;12550:23;12546:32;12543:119;;;12581:79;;:::i;:::-;12543:119;12701:1;12726:53;12771:7;12762:6;12751:9;12747:22;12726:53;:::i;:::-;12716:63;;12672:117;12828:2;12854:53;12899:7;12890:6;12879:9;12875:22;12854:53;:::i;:::-;12844:63;;12799:118;12450:474;;;;;:::o;12930:180::-;12978:77;12975:1;12968:88;13075:4;13072:1;13065:15;13099:4;13096:1;13089:15;13116:320;13160:6;13197:1;13191:4;13187:12;13177:22;;13244:1;13238:4;13234:12;13265:18;13255:81;;13321:4;13313:6;13309:17;13299:27;;13255:81;13383:2;13375:6;13372:14;13352:18;13349:38;13346:84;;13402:18;;:::i;:::-;13346:84;13167:269;13116:320;;;:::o;13442:332::-;13563:4;13601:2;13590:9;13586:18;13578:26;;13614:71;13682:1;13671:9;13667:17;13658:6;13614:71;:::i;:::-;13695:72;13763:2;13752:9;13748:18;13739:6;13695:72;:::i;:::-;13442:332;;;;;:::o;13780:137::-;13834:5;13865:6;13859:13;13850:22;;13881:30;13905:5;13881:30;:::i;:::-;13780:137;;;;:::o;13923:345::-;13990:6;14039:2;14027:9;14018:7;14014:23;14010:32;14007:119;;;14045:79;;:::i;:::-;14007:119;14165:1;14190:61;14243:7;14234:6;14223:9;14219:22;14190:61;:::i;:::-;14180:71;;14136:125;13923:345;;;;:::o;14274:147::-;14375:11;14412:3;14397:18;;14274:147;;;;:::o;14427:114::-;;:::o;14547:398::-;14706:3;14727:83;14808:1;14803:3;14727:83;:::i;:::-;14720:90;;14819:93;14908:3;14819:93;:::i;:::-;14937:1;14932:3;14928:11;14921:18;;14547:398;;;:::o;14951:379::-;15135:3;15157:147;15300:3;15157:147;:::i;:::-;15150:154;;15321:3;15314:10;;14951:379;;;:::o;15336:180::-;15476:32;15472:1;15464:6;15460:14;15453:56;15336:180;:::o;15522:366::-;15664:3;15685:67;15749:2;15744:3;15685:67;:::i;:::-;15678:74;;15761:93;15850:3;15761:93;:::i;:::-;15879:2;15874:3;15870:12;15863:19;;15522:366;;;:::o;15894:419::-;16060:4;16098:2;16087:9;16083:18;16075:26;;16147:9;16141:4;16137:20;16133:1;16122:9;16118:17;16111:47;16175:131;16301:4;16175:131;:::i;:::-;16167:139;;15894:419;;;:::o;16319:170::-;16459:22;16455:1;16447:6;16443:14;16436:46;16319:170;:::o;16495:366::-;16637:3;16658:67;16722:2;16717:3;16658:67;:::i;:::-;16651:74;;16734:93;16823:3;16734:93;:::i;:::-;16852:2;16847:3;16843:12;16836:19;;16495:366;;;:::o;16867:419::-;17033:4;17071:2;17060:9;17056:18;17048:26;;17120:9;17114:4;17110:20;17106:1;17095:9;17091:17;17084:47;17148:131;17274:4;17148:131;:::i;:::-;17140:139;;16867:419;;;:::o;17292:180::-;17340:77;17337:1;17330:88;17437:4;17434:1;17427:15;17461:4;17458:1;17451:15;17478:305;17518:3;17537:20;17555:1;17537:20;:::i;:::-;17532:25;;17571:20;17589:1;17571:20;:::i;:::-;17566:25;;17725:1;17657:66;17653:74;17650:1;17647:81;17644:107;;;17731:18;;:::i;:::-;17644:107;17775:1;17772;17768:9;17761:16;;17478:305;;;;:::o;17789:170::-;17929:22;17925:1;17917:6;17913:14;17906:46;17789:170;:::o;17965:366::-;18107:3;18128:67;18192:2;18187:3;18128:67;:::i;:::-;18121:74;;18204:93;18293:3;18204:93;:::i;:::-;18322:2;18317:3;18313:12;18306:19;;17965:366;;;:::o;18337:419::-;18503:4;18541:2;18530:9;18526:18;18518:26;;18590:9;18584:4;18580:20;18576:1;18565:9;18561:17;18554:47;18618:131;18744:4;18618:131;:::i;:::-;18610:139;;18337:419;;;:::o;18762:348::-;18802:7;18825:20;18843:1;18825:20;:::i;:::-;18820:25;;18859:20;18877:1;18859:20;:::i;:::-;18854:25;;19047:1;18979:66;18975:74;18972:1;18969:81;18964:1;18957:9;18950:17;18946:105;18943:131;;;19054:18;;:::i;:::-;18943:131;19102:1;19099;19095:9;19084:20;;18762:348;;;;:::o;19116:169::-;19256:21;19252:1;19244:6;19240:14;19233:45;19116:169;:::o;19291:366::-;19433:3;19454:67;19518:2;19513:3;19454:67;:::i;:::-;19447:74;;19530:93;19619:3;19530:93;:::i;:::-;19648:2;19643:3;19639:12;19632:19;;19291:366;;;:::o;19663:419::-;19829:4;19867:2;19856:9;19852:18;19844:26;;19916:9;19910:4;19906:20;19902:1;19891:9;19887:17;19880:47;19944:131;20070:4;19944:131;:::i;:::-;19936:139;;19663:419;;;:::o;20088:173::-;20228:25;20224:1;20216:6;20212:14;20205:49;20088:173;:::o;20267:366::-;20409:3;20430:67;20494:2;20489:3;20430:67;:::i;:::-;20423:74;;20506:93;20595:3;20506:93;:::i;:::-;20624:2;20619:3;20615:12;20608:19;;20267:366;;;:::o;20639:419::-;20805:4;20843:2;20832:9;20828:18;20820:26;;20892:9;20886:4;20882:20;20878:1;20867:9;20863:17;20856:47;20920:131;21046:4;20920:131;:::i;:::-;20912:139;;20639:419;;;:::o;21064:234::-;21204:34;21200:1;21192:6;21188:14;21181:58;21273:17;21268:2;21260:6;21256:15;21249:42;21064:234;:::o;21304:366::-;21446:3;21467:67;21531:2;21526:3;21467:67;:::i;:::-;21460:74;;21543:93;21632:3;21543:93;:::i;:::-;21661:2;21656:3;21652:12;21645:19;;21304:366;;;:::o;21676:419::-;21842:4;21880:2;21869:9;21865:18;21857:26;;21929:9;21923:4;21919:20;21915:1;21904:9;21900:17;21893:47;21957:131;22083:4;21957:131;:::i;:::-;21949:139;;21676:419;;;:::o;22101:148::-;22203:11;22240:3;22225:18;;22101:148;;;;:::o;22255:377::-;22361:3;22389:39;22422:5;22389:39;:::i;:::-;22444:89;22526:6;22521:3;22444:89;:::i;:::-;22437:96;;22542:52;22587:6;22582:3;22575:4;22568:5;22564:16;22542:52;:::i;:::-;22619:6;22614:3;22610:16;22603:23;;22365:267;22255:377;;;;:::o;22638:435::-;22818:3;22840:95;22931:3;22922:6;22840:95;:::i;:::-;22833:102;;22952:95;23043:3;23034:6;22952:95;:::i;:::-;22945:102;;23064:3;23057:10;;22638:435;;;;;:::o;23079:225::-;23219:34;23215:1;23207:6;23203:14;23196:58;23288:8;23283:2;23275:6;23271:15;23264:33;23079:225;:::o;23310:366::-;23452:3;23473:67;23537:2;23532:3;23473:67;:::i;:::-;23466:74;;23549:93;23638:3;23549:93;:::i;:::-;23667:2;23662:3;23658:12;23651:19;;23310:366;;;:::o;23682:419::-;23848:4;23886:2;23875:9;23871:18;23863:26;;23935:9;23929:4;23925:20;23921:1;23910:9;23906:17;23899:47;23963:131;24089:4;23963:131;:::i;:::-;23955:139;;23682:419;;;:::o;24107:182::-;24247:34;24243:1;24235:6;24231:14;24224:58;24107:182;:::o;24295:366::-;24437:3;24458:67;24522:2;24517:3;24458:67;:::i;:::-;24451:74;;24534:93;24623:3;24534:93;:::i;:::-;24652:2;24647:3;24643:12;24636:19;;24295:366;;;:::o;24667:419::-;24833:4;24871:2;24860:9;24856:18;24848:26;;24920:9;24914:4;24910:20;24906:1;24895:9;24891:17;24884:47;24948:131;25074:4;24948:131;:::i;:::-;24940:139;;24667:419;;;:::o;25092:181::-;25232:33;25228:1;25220:6;25216:14;25209:57;25092:181;:::o;25279:366::-;25421:3;25442:67;25506:2;25501:3;25442:67;:::i;:::-;25435:74;;25518:93;25607:3;25518:93;:::i;:::-;25636:2;25631:3;25627:12;25620:19;;25279:366;;;:::o;25651:419::-;25817:4;25855:2;25844:9;25840:18;25832:26;;25904:9;25898:4;25894:20;25890:1;25879:9;25875:17;25868:47;25932:131;26058:4;25932:131;:::i;:::-;25924:139;;25651:419;;;:::o;26076:98::-;26127:6;26161:5;26155:12;26145:22;;26076:98;;;:::o;26180:168::-;26263:11;26297:6;26292:3;26285:19;26337:4;26332:3;26328:14;26313:29;;26180:168;;;;:::o;26354:360::-;26440:3;26468:38;26500:5;26468:38;:::i;:::-;26522:70;26585:6;26580:3;26522:70;:::i;:::-;26515:77;;26601:52;26646:6;26641:3;26634:4;26627:5;26623:16;26601:52;:::i;:::-;26678:29;26700:6;26678:29;:::i;:::-;26673:3;26669:39;26662:46;;26444:270;26354:360;;;;:::o;26720:640::-;26915:4;26953:3;26942:9;26938:19;26930:27;;26967:71;27035:1;27024:9;27020:17;27011:6;26967:71;:::i;:::-;27048:72;27116:2;27105:9;27101:18;27092:6;27048:72;:::i;:::-;27130;27198:2;27187:9;27183:18;27174:6;27130:72;:::i;:::-;27249:9;27243:4;27239:20;27234:2;27223:9;27219:18;27212:48;27277:76;27348:4;27339:6;27277:76;:::i;:::-;27269:84;;26720:640;;;;;;;:::o;27366:141::-;27422:5;27453:6;27447:13;27438:22;;27469:32;27495:5;27469:32;:::i;:::-;27366:141;;;;:::o;27513:349::-;27582:6;27631:2;27619:9;27610:7;27606:23;27602:32;27599:119;;;27637:79;;:::i;:::-;27599:119;27757:1;27782:63;27837:7;27828:6;27817:9;27813:22;27782:63;:::i;:::-;27772:73;;27728:127;27513:349;;;;:::o

Swarm Source

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