ETH Price: $2,968.56 (-2.71%)
Gas: 2 Gwei

Token

Pumples (PUMPLES)
 

Overview

Max Total Supply

5,360 PUMPLES

Holders

1,721

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
enihono.eth
Balance
1 PUMPLES
0x5b4e99209cc6827a9fd96e1cb34e12a2644f2446
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Pumples is a non-fungible token.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Pumples

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-19
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

/*
  _____  _    _ __  __ _____  _      ______  _____ 
 |  __ \| |  | |  \/  |  __ \| |    |  ____|/ ____|
 | |__) | |  | | \  / | |__) | |    | |__  | (___  
 |  ___/| |  | | |\/| |  ___/| |    |  __|  \___ \ 
 | |    | |__| | |  | | |    | |____| |____ ____) |
 |_|     \____/|_|  |_|_|    |______|______|_____/ 
                                                                                          
* @dev Collection of functions related to the address type
*/
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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

library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Getter for the amount of payee's releasable Ether.
     */
    function releasable(address account) public view returns (uint256) {
        uint256 totalReceived = address(this).balance + totalReleased();
        return _pendingPayment(account, totalReceived, released(account));
    }

    /**
     * @dev Getter for the amount of payee's releasable `token` tokens. `token` should be the address of an
     * IERC20 contract.
     */
    function releasable(IERC20 token, address account) public view returns (uint256) {
        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        return _pendingPayment(account, totalReceived, released(token, account));
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 payment = releasable(account);

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] += payment;
        _totalReleased += payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
     * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
     * contract.
     */
    function release(IERC20 token, address account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 payment = releasable(token, account);

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _erc20Released[token][account] += payment;
        _erc20TotalReleased[token] += payment;

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

/**
 * @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 {
    // Reference type for token approval.
    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 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 {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _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]`.
        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 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 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 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.
            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`.
                )

                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 ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

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

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

error Unauthorized();
error InsufficientValue(uint256 messageValue, uint256 required);

contract Pumples is Ownable, ERC721A, PaymentSplitter {

    using ECDSA for bytes32;
    using Strings for uint;

    address private signerAddressWL;
    address private signerAddressPublic;

    enum Step {
        Before,
        GeneralSale,
        SoldOut,
        Reveal
    }

    string public baseURI;

    Step public sellingStep;

    uint private constant MAX_SUPPLY = 10000;
    uint public MAX_WL = 2000;

    uint public publicSalePrice = 0.005 ether;

    uint public amountWLMinted = 0;

    mapping(address => uint) public mintedAmountNFTsperWalletWhitelistSale;

    uint public maxMintAmountPerWhitelist = 1; 

    uint public maxAmountPerTxnPublic = 10;

    uint private teamLength;

    constructor(address[] memory _team, uint[] memory _teamShares, address _signerAddressWL, address _signerAddressPublic, string memory _baseURI) ERC721A("Pumples", "PUMPLES")
    PaymentSplitter(_team, _teamShares) {
        signerAddressWL = _signerAddressWL;
        signerAddressPublic = _signerAddressPublic;
        baseURI = _baseURI;
        teamLength = _team.length;
    }

    function mintForOpensea() external onlyOwner{
        if(totalSupply() != 0) revert Unauthorized();
        _mint(msg.sender, 1);
    }

    function changeMaxWL(uint newNumber) external onlyOwner{
        MAX_WL = newNumber;
    }

    function WLMint(address _account, uint _quantity, bytes calldata signature) external {

        if(_quantity <= 0) revert("Quantity is 0");
        if(sellingStep != Step.GeneralSale) revert Unauthorized();
        if(amountWLMinted + _quantity > MAX_WL) revert Unauthorized();
        if(totalSupply() + _quantity > MAX_SUPPLY) revert Unauthorized();
        if(signerAddressWL != keccak256(
            abi.encodePacked(
                "\x19Ethereum Signed Message:\n32",
                bytes32(uint256(uint160(msg.sender)))
            )
        ).recover(signature)) revert Unauthorized();

        if(mintedAmountNFTsperWalletWhitelistSale[msg.sender] + _quantity > maxMintAmountPerWhitelist) revert Unauthorized();
            
        mintedAmountNFTsperWalletWhitelistSale[msg.sender] += _quantity;
        amountWLMinted = amountWLMinted + _quantity;
        _mint(_account, _quantity);
    }


    function publicSaleMint(address _account, uint _quantity, bytes calldata signature) external payable {
        uint price = publicSalePrice;
        if(price <= 0) revert("Price is 0");
        if(_quantity <= 0) revert("Quantity is 0");

        if(_quantity > maxAmountPerTxnPublic) revert Unauthorized();

        if(sellingStep != Step.GeneralSale) revert Unauthorized();
        if(totalSupply() + _quantity > MAX_SUPPLY) revert Unauthorized();
        if(msg.value < price * _quantity) revert InsufficientValue({
            messageValue: msg.value,
            required: price * _quantity
        });
        if(signerAddressPublic != keccak256(
            abi.encodePacked(
                "\x19Ethereum Signed Message:\n32",
                bytes32(uint256(uint160(msg.sender)))
            )
        ).recover(signature)) revert Unauthorized();

        _mint(_account, _quantity);
    }

    function changePublicSalePrice(uint256 new_price) external onlyOwner{
        publicSalePrice = new_price;
    }

    function setBaseUri(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    function setStep(uint _step) external onlyOwner {
        sellingStep = Step(_step);
    }

    function setMaxMintPerWhitelist(uint amount) external onlyOwner{
        maxMintAmountPerWhitelist = amount;
    }

    function setMaxTxnPublic(uint amount) external onlyOwner{
        maxAmountPerTxnPublic = amount;
    }

    function currentState() external view returns (Step, uint, uint, uint) {
        return (sellingStep, publicSalePrice, maxMintAmountPerWhitelist, maxAmountPerTxnPublic);
    }

    function getNumberMinted(address account) external view returns (uint256) {
        return _numberMinted(account);
    }

    function getNumberWLMinted(address account) external view returns (uint256) {
        return mintedAmountNFTsperWalletWhitelistSale[account];
    }

    function tokenURI(uint _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), "URI query for nonexistent token");
        return string(abi.encodePacked(baseURI, _toString(_tokenId), ".json"));
    }

    function releaseAll() external {
        for(uint i = 0 ; i < teamLength ; i++) {
            release(payable(payee(i)));
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"_team","type":"address[]"},{"internalType":"uint256[]","name":"_teamShares","type":"uint256[]"},{"internalType":"address","name":"_signerAddressWL","type":"address"},{"internalType":"address","name":"_signerAddressPublic","type":"address"},{"internalType":"string","name":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[{"internalType":"uint256","name":"messageValue","type":"uint256"},{"internalType":"uint256","name":"required","type":"uint256"}],"name":"InsufficientValue","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","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"},{"inputs":[],"name":"Unauthorized","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":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_WL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"WLMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"amountWLMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNumber","type":"uint256"}],"name":"changeMaxWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"new_price","type":"uint256"}],"name":"changePublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentState","outputs":[{"internalType":"enum Pumples.Step","name":"","type":"uint8"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"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":"account","type":"address"}],"name":"getNumberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getNumberWLMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAmountPerTxnPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintForOpensea","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedAmountNFTsperWalletWhitelistSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"releaseAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellingStep","outputs":[{"internalType":"enum Pumples.Step","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxMintPerWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxTxnPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_step","type":"uint256"}],"name":"setStep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526107d06014556611c37937e0800060155560006016556001601855600a6019553480156200003157600080fd5b506040516200340938038062003409833981016040819052620000549162000626565b84846040518060400160405280600781526020016650756d706c657360c81b8152506040518060400160405280600781526020016650554d504c455360c81b815250620000b0620000aa6200025860201b60201c565b6200025c565b6003620000be8382620007d2565b506004620000cd8282620007d2565b50600060015550508051825114620001475760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b60008251116200019a5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200013e565b60005b82518110156200020657620001f1838281518110620001c057620001c06200089e565b6020026020010151838381518110620001dd57620001dd6200089e565b6020026020010151620002ac60201b60201c565b80620001fd81620008ca565b9150506200019d565b5050601080546001600160a01b038087166001600160a01b0319928316179092556011805492861692909116919091179055506012620002478282620007d2565b50509251601a555062000902915050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620003195760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200013e565b600081116200036b5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200013e565b6001600160a01b0382166000908152600b602052604090205415620003e75760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200013e565b600d8054600181019091557fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b0319166001600160a01b0384169081179091556000908152600b6020526040902081905560095462000451908290620008e6565b600955604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715620004db57620004db6200049a565b604052919050565b60006001600160401b03821115620004ff57620004ff6200049a565b5060051b60200190565b80516001600160a01b03811681146200052157600080fd5b919050565b600082601f8301126200053857600080fd5b81516020620005516200054b83620004e3565b620004b0565b82815260059290921b840181019181810190868411156200057157600080fd5b8286015b848110156200058e578051835291830191830162000575565b509695505050505050565b600082601f830112620005ab57600080fd5b81516001600160401b03811115620005c757620005c76200049a565b6020620005dd601f8301601f19168201620004b0565b8281528582848701011115620005f257600080fd5b60005b8381101562000612578581018301518282018401528201620005f5565b506000928101909101919091529392505050565b600080600080600060a086880312156200063f57600080fd5b85516001600160401b03808211156200065757600080fd5b818801915088601f8301126200066c57600080fd5b815160206200067f6200054b83620004e3565b82815260059290921b8401810191818101908c8411156200069f57600080fd5b948201945b83861015620006c857620006b88662000509565b82529482019490820190620006a4565b918b0151919950909350505080821115620006e257600080fd5b620006f089838a0162000526565b9550620007006040890162000509565b9450620007106060890162000509565b935060808801519150808211156200072757600080fd5b50620007368882890162000599565b9150509295509295909350565b600181811c908216806200075857607f821691505b6020821081036200077957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620007cd57600081815260208120601f850160051c81016020861015620007a85750805b601f850160051c820191505b81811015620007c957828155600101620007b4565b5050505b505050565b81516001600160401b03811115620007ee57620007ee6200049a565b6200080681620007ff845462000743565b846200077f565b602080601f8311600181146200083e5760008415620008255750858301515b600019600386901b1c1916600185901b178555620007c9565b600085815260208120601f198616915b828110156200086f578886015182559484019460019091019084016200084e565b50858210156200088e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201620008df57620008df620008b4565b5060010190565b80820180821115620008fc57620008fc620008b4565b92915050565b612af780620009126000396000f3fe6080604052600436106102b15760003560e01c80638a59a7fd11610175578063c893575a116100dc578063e33b7de311610095578063ed1920ff1161006f578063ed1920ff14610916578063ee70c7cb14610936578063f2fde38b1461094c578063f8dcbddb1461096c57600080fd5b8063e33b7de314610882578063e985e9c514610897578063ea900475146108e057600080fd5b8063c893575a14610797578063c91d5f97146107ac578063cbccefb2146107c2578063ce7c2ac2146107e9578063d0cd8e691461081f578063d79779b21461084c57600080fd5b8063a0bcfc7f1161012e578063a0bcfc7f146106d7578063a22cb465146106f7578063a3f8eace14610717578063b88d4fde14610737578063c45ac05014610757578063c87b56dd1461077757600080fd5b80638a59a7fd146106185780638b83209b146106385780638da5cb5b1461065857806395d89b41146106765780639852595c1461068b5780639b6860c8146106c157600080fd5b80632cefffa7116102195780635be7fde8116101d25780635be7fde8146105795780636352211e1461058e5780636c0360eb146105ae57806370a08231146105c3578063715018a6146105e35780638a02e3b9146105f857600080fd5b80632cefffa7146104a85780633a98ef39146104be578063406072a9146104d357806342842e0e1461051957806348b75044146105395780634fda72851461055957600080fd5b806312036d181161026b57806312036d18146103fc578063139bcea51461041c57806318160ddd1461042f578063191655871461045257806323b872dd1461047257806324f96a881461049257600080fd5b8062eb7013146102ff57806301ffc9a71461032157806306fdde0314610356578063081812fc14610378578063095ea7b3146103b05780630c3f6acf146103d057600080fd5b366102fa577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561030b57600080fd5b5061031f61031a3660046122f9565b61098c565b005b34801561032d57600080fd5b5061034161033c366004612328565b610999565b60405190151581526020015b60405180910390f35b34801561036257600080fd5b5061036b6109eb565b60405161034d9190612395565b34801561038457600080fd5b506103986103933660046122f9565b610a7d565b6040516001600160a01b03909116815260200161034d565b3480156103bc57600080fd5b5061031f6103cb3660046123bd565b610ac1565b3480156103dc57600080fd5b5060135460155460185460195460405161034d9460ff1693929190612421565b34801561040857600080fd5b5061031f6104173660046122f9565b610b61565b61031f61042a36600461244a565b610b6e565b34801561043b57600080fd5b50600254600154035b60405190815260200161034d565b34801561045e57600080fd5b5061031f61046d3660046124d3565b610d93565b34801561047e57600080fd5b5061031f61048d3660046124f0565b610e8c565b34801561049e57600080fd5b5061044460165481565b3480156104b457600080fd5b5061044460185481565b3480156104ca57600080fd5b50600954610444565b3480156104df57600080fd5b506104446104ee366004612531565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b34801561052557600080fd5b5061031f6105343660046124f0565b611025565b34801561054557600080fd5b5061031f610554366004612531565b611045565b34801561056557600080fd5b5061031f6105743660046122f9565b611168565b34801561058557600080fd5b5061031f611175565b34801561059a57600080fd5b506103986105a93660046122f9565b6111a3565b3480156105ba57600080fd5b5061036b6111ae565b3480156105cf57600080fd5b506104446105de3660046124d3565b61123c565b3480156105ef57600080fd5b5061031f61128b565b34801561060457600080fd5b5061031f6106133660046122f9565b61129f565b34801561062457600080fd5b506104446106333660046124d3565b6112ac565b34801561064457600080fd5b506103986106533660046122f9565b6112d7565b34801561066457600080fd5b506000546001600160a01b0316610398565b34801561068257600080fd5b5061036b611307565b34801561069757600080fd5b506104446106a63660046124d3565b6001600160a01b03166000908152600c602052604090205490565b3480156106cd57600080fd5b5061044460155481565b3480156106e357600080fd5b5061031f6106f23660046125f6565b611316565b34801561070357600080fd5b5061031f61071236600461264d565b61132e565b34801561072357600080fd5b506104446107323660046124d3565b6113c3565b34801561074357600080fd5b5061031f61075236600461267b565b61140b565b34801561076357600080fd5b50610444610772366004612531565b611455565b34801561078357600080fd5b5061036b6107923660046122f9565b611520565b3480156107a357600080fd5b5061031f6115a9565b3480156107b857600080fd5b5061044460145481565b3480156107ce57600080fd5b506013546107dc9060ff1681565b60405161034d91906126fb565b3480156107f557600080fd5b506104446108043660046124d3565b6001600160a01b03166000908152600b602052604090205490565b34801561082b57600080fd5b5061044461083a3660046124d3565b60176020526000908152604090205481565b34801561085857600080fd5b506104446108673660046124d3565b6001600160a01b03166000908152600e602052604090205490565b34801561088e57600080fd5b50600a54610444565b3480156108a357600080fd5b506103416108b2366004612531565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156108ec57600080fd5b506104446108fb3660046124d3565b6001600160a01b031660009081526017602052604090205490565b34801561092257600080fd5b5061031f61093136600461244a565b6115df565b34801561094257600080fd5b5061044460195481565b34801561095857600080fd5b5061031f6109673660046124d3565b6117d7565b34801561097857600080fd5b5061031f6109873660046122f9565b61184d565b61099461188b565b601855565b60006301ffc9a760e01b6001600160e01b0319831614806109ca57506380ac58cd60e01b6001600160e01b03198316145b806109e55750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546109fa90612709565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2690612709565b8015610a735780601f10610a4857610100808354040283529160200191610a73565b820191906000526020600020905b815481529060010190602001808311610a5657829003601f168201915b5050505050905090565b6000610a88826118e5565b610aa5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610acc826111a3565b9050336001600160a01b03821614610b0557610ae881336108b2565b610b05576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610b6961188b565b601455565b60155480610bb05760405162461bcd60e51b815260206004820152600a6024820152690507269636520697320360b41b60448201526064015b60405180910390fd5b60008411610bf05760405162461bcd60e51b815260206004820152600d60248201526c05175616e74697479206973203609c1b6044820152606401610ba7565b601954841115610c12576040516282b42960e81b815260040160405180910390fd5b600160135460ff166003811115610c2b57610c2b6123e9565b14610c48576040516282b42960e81b815260040160405180910390fd5b61271084610c596002546001540390565b610c639190612759565b1115610c81576040516282b42960e81b815260040160405180910390fd5b610c8b848261276c565b341015610cbf5734610c9d858361276c565b604051631c102d6360e21b815260048101929092526024820152604401610ba7565b610d5583838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602082015233603c820152605c019150610d319050565b6040516020818303038152906040528051906020012061190d90919063ffffffff16565b6011546001600160a01b03908116911614610d82576040516282b42960e81b815260040160405180910390fd5b610d8c8585611931565b5050505050565b6001600160a01b0381166000908152600b6020526040902054610dc85760405162461bcd60e51b8152600401610ba790612783565b6000610dd3826113c3565b905080600003610df55760405162461bcd60e51b8152600401610ba7906127c9565b6001600160a01b0382166000908152600c602052604081208054839290610e1d908490612759565b9250508190555080600a6000828254610e369190612759565b90915550610e4690508282611a2f565b604080516001600160a01b0384168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a15050565b6000610e9782611b48565b9050836001600160a01b0316816001600160a01b031614610eca5760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b03881690911417610f1757610efa86336108b2565b610f1757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610f3e57604051633a954ecd60e21b815260040160405180910390fd5b8015610f4957600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003610fdb57600184016000818152600560205260408120549003610fd9576001548114610fd95760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6110408383836040518060200160405280600081525061140b565b505050565b6001600160a01b0381166000908152600b602052604090205461107a5760405162461bcd60e51b8152600401610ba790612783565b60006110868383611455565b9050806000036110a85760405162461bcd60e51b8152600401610ba7906127c9565b6001600160a01b038084166000908152600f60209081526040808320938616835292905290812080548392906110df908490612759565b90915550506001600160a01b0383166000908152600e60205260408120805483929061110c908490612759565b9091555061111d9050838383611baf565b604080516001600160a01b038481168252602082018490528516917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a2505050565b61117061188b565b601555565b60005b601a548110156111a05761118e61046d826112d7565b8061119881612814565b915050611178565b50565b60006109e582611b48565b601280546111bb90612709565b80601f01602080910402602001604051908101604052809291908181526020018280546111e790612709565b80156112345780601f1061120957610100808354040283529160200191611234565b820191906000526020600020905b81548152906001019060200180831161121757829003601f168201915b505050505081565b60006001600160a01b038216611265576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b61129361188b565b61129d6000611c01565b565b6112a761188b565b601955565b6001600160a01b0381166000908152600660205260408082205467ffffffffffffffff911c166109e5565b6000600d82815481106112ec576112ec61282d565b6000918252602090912001546001600160a01b031692915050565b6060600480546109fa90612709565b61131e61188b565b601261132a8282612889565b5050565b336001600160a01b038316036113575760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000806113cf600a5490565b6113d99047612759565b905061140483826113ff866001600160a01b03166000908152600c602052604090205490565b611c51565b9392505050565b611416848484610e8c565b6001600160a01b0383163b1561144f5761143284848484611c8f565b61144f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6001600160a01b0382166000908152600e602052604081205481906040516370a0823160e01b81523060048201526001600160a01b038616906370a0823190602401602060405180830381865afa1580156114b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d89190612949565b6114e29190612759565b6001600160a01b038086166000908152600f60209081526040808320938816835292905220549091506115189084908390611c51565b949350505050565b606061152b826118e5565b6115775760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610ba7565b601261158283611d7a565b604051602001611593929190612962565b6040516020818303038152906040529050919050565b6115b161188b565b600254600154146115d4576040516282b42960e81b815260040160405180910390fd5b61129d336001611931565b6000831161161f5760405162461bcd60e51b815260206004820152600d60248201526c05175616e74697479206973203609c1b6044820152606401610ba7565b600160135460ff166003811115611638576116386123e9565b14611655576040516282b42960e81b815260040160405180910390fd5b601454836016546116669190612759565b1115611684576040516282b42960e81b815260040160405180910390fd5b612710836116956002546001540390565b61169f9190612759565b11156116bd576040516282b42960e81b815260040160405180910390fd5b61172f82828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602082015233603c820152605c019150610d319050565b6010546001600160a01b0390811691161461175c576040516282b42960e81b815260040160405180910390fd5b6018543360009081526017602052604090205461177a908590612759565b1115611798576040516282b42960e81b815260040160405180910390fd5b33600090815260176020526040812080548592906117b7908490612759565b90915550506016546117ca908490612759565b60165561144f8484611931565b6117df61188b565b6001600160a01b0381166118445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ba7565b6111a081611c01565b61185561188b565b806003811115611867576118676123e9565b6013805460ff19166001836003811115611883576118836123e9565b021790555050565b6000546001600160a01b0316331461129d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ba7565b6000600154821080156109e5575050600090815260056020526040902054600160e01b161590565b600080600061191c8585611dc9565b9150915061192981611e37565b509392505050565b60015460008290036119565760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611a0557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016119cd565b5081600003611a2657604051622e076360e81b815260040160405180910390fd5b60015550505050565b80471015611a7f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610ba7565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611acc576040519150601f19603f3d011682016040523d82523d6000602084013e611ad1565b606091505b50509050806110405760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610ba7565b600081600154811015611b965760008181526005602052604081205490600160e01b82169003611b94575b80600003611404575060001901600081815260056020526040902054611b73565b505b604051636f96cda160e11b815260040160405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611040908490611fed565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6009546001600160a01b0384166000908152600b602052604081205490918391611c7b908661276c565b611c8591906129f9565b6115189190612a1b565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611cc4903390899088908890600401612a2e565b6020604051808303816000875af1925050508015611cff575060408051601f3d908101601f19168201909252611cfc91810190612a6b565b60015b611d5d573d808015611d2d576040519150601f19603f3d011682016040523d82523d6000602084013e611d32565b606091505b508051600003611d55576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611db757600183039250600a81066030018353600a9004611d99565b50819003601f19909101908152919050565b6000808251604103611dff5760208301516040840151606085015160001a611df3878285856120bf565b94509450505050611e30565b8251604003611e285760208301516040840151611e1d8683836121ac565b935093505050611e30565b506000905060025b9250929050565b6000816004811115611e4b57611e4b6123e9565b03611e535750565b6001816004811115611e6757611e676123e9565b03611eb45760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610ba7565b6002816004811115611ec857611ec86123e9565b03611f155760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610ba7565b6003816004811115611f2957611f296123e9565b03611f815760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610ba7565b6004816004811115611f9557611f956123e9565b036111a05760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610ba7565b6000612042826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166121e59092919063ffffffff16565b80519091501561104057808060200190518101906120609190612a88565b6110405760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610ba7565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156120f657506000905060036121a3565b8460ff16601b1415801561210e57508460ff16601c14155b1561211f57506000905060046121a3565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612173573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661219c576000600192509250506121a3565b9150600090505b94509492505050565b6000806001600160ff1b038316816121c960ff86901c601b612759565b90506121d7878288856120bf565b935093505050935093915050565b60606115188484600085856001600160a01b0385163b6122475760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610ba7565b600080866001600160a01b031685876040516122639190612aa5565b60006040518083038185875af1925050503d80600081146122a0576040519150601f19603f3d011682016040523d82523d6000602084013e6122a5565b606091505b50915091506122b58282866122c0565b979650505050505050565b606083156122cf575081611404565b8251156122df5782518084602001fd5b8160405162461bcd60e51b8152600401610ba79190612395565b60006020828403121561230b57600080fd5b5035919050565b6001600160e01b0319811681146111a057600080fd5b60006020828403121561233a57600080fd5b813561140481612312565b60005b83811015612360578181015183820152602001612348565b50506000910152565b60008151808452612381816020860160208601612345565b601f01601f19169290920160200192915050565b6020815260006114046020830184612369565b6001600160a01b03811681146111a057600080fd5b600080604083850312156123d057600080fd5b82356123db816123a8565b946020939093013593505050565b634e487b7160e01b600052602160045260246000fd5b6004811061241d57634e487b7160e01b600052602160045260246000fd5b9052565b6080810161242f82876123ff565b84602083015283604083015282606083015295945050505050565b6000806000806060858703121561246057600080fd5b843561246b816123a8565b935060208501359250604085013567ffffffffffffffff8082111561248f57600080fd5b818701915087601f8301126124a357600080fd5b8135818111156124b257600080fd5b8860208285010111156124c457600080fd5b95989497505060200194505050565b6000602082840312156124e557600080fd5b8135611404816123a8565b60008060006060848603121561250557600080fd5b8335612510816123a8565b92506020840135612520816123a8565b929592945050506040919091013590565b6000806040838503121561254457600080fd5b823561254f816123a8565b9150602083013561255f816123a8565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561259b5761259b61256a565b604051601f8501601f19908116603f011681019082821181831017156125c3576125c361256a565b816040528093508581528686860111156125dc57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561260857600080fd5b813567ffffffffffffffff81111561261f57600080fd5b8201601f8101841361263057600080fd5b61151884823560208401612580565b80151581146111a057600080fd5b6000806040838503121561266057600080fd5b823561266b816123a8565b9150602083013561255f8161263f565b6000806000806080858703121561269157600080fd5b843561269c816123a8565b935060208501356126ac816123a8565b925060408501359150606085013567ffffffffffffffff8111156126cf57600080fd5b8501601f810187136126e057600080fd5b6126ef87823560208401612580565b91505092959194509250565b602081016109e582846123ff565b600181811c9082168061271d57607f821691505b60208210810361273d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156109e5576109e5612743565b80820281158282048414176109e5576109e5612743565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b60006001820161282657612826612743565b5060010190565b634e487b7160e01b600052603260045260246000fd5b601f82111561104057600081815260208120601f850160051c8101602086101561286a5750805b601f850160051c820191505b8181101561101d57828155600101612876565b815167ffffffffffffffff8111156128a3576128a361256a565b6128b7816128b18454612709565b84612843565b602080601f8311600181146128ec57600084156128d45750858301515b600019600386901b1c1916600185901b17855561101d565b600085815260208120601f198616915b8281101561291b578886015182559484019460019091019084016128fc565b50858210156129395787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561295b57600080fd5b5051919050565b600080845461297081612709565b60018281168015612988576001811461299d576129cc565b60ff19841687528215158302870194506129cc565b8860005260208060002060005b858110156129c35781548a8201529084019082016129aa565b50505082870194505b5050505083516129e0818360208801612345565b64173539b7b760d91b9101908152600501949350505050565b600082612a1657634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156109e5576109e5612743565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a6190830184612369565b9695505050505050565b600060208284031215612a7d57600080fd5b815161140481612312565b600060208284031215612a9a57600080fd5b81516114048161263f565b60008251612ab7818460208701612345565b919091019291505056fea26469706673582212205f6542bca361e4e32948955376393b5c297af94b0fa741f0a6124c4ed146972264736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000006d5cffbcbef82b9e7e302a195ffdb282c188addb000000000000000000000000d88306b19a660836379dab1845624b3a8799891700000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000000000008000000000000000000000000755b6435efba4bc71dfaf69a87bd469105ed7aba000000000000000000000000ddc9d19c4c210d3d0405baf2c31b49f4e5012dc5000000000000000000000000f35861429f160e0a286eb0eebf3ab3f6db4a18cd0000000000000000000000001bfc990f883e87c57220d21155d1e67947e8e9dc000000000000000000000000765cdbeca6fff633dc21185d3556bb35c89d5e4c000000000000000000000000710a45821155107b733e39d804e8d996845810bc00000000000000000000000066032336234edc7191e51ffc439a11ad107eabf4000000000000000000000000022485c24dd411614e80a468ccb33c2539fbe63b000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000004b000000000000000000000000000000000000000000000000000000000000004b0000000000000000000000000000000000000000000000000000000000000104000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696271796f76746e64786d3666713435696765756233746973706d746c786f6b636f74367a7963777137336337657a7a73693561712f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102b15760003560e01c80638a59a7fd11610175578063c893575a116100dc578063e33b7de311610095578063ed1920ff1161006f578063ed1920ff14610916578063ee70c7cb14610936578063f2fde38b1461094c578063f8dcbddb1461096c57600080fd5b8063e33b7de314610882578063e985e9c514610897578063ea900475146108e057600080fd5b8063c893575a14610797578063c91d5f97146107ac578063cbccefb2146107c2578063ce7c2ac2146107e9578063d0cd8e691461081f578063d79779b21461084c57600080fd5b8063a0bcfc7f1161012e578063a0bcfc7f146106d7578063a22cb465146106f7578063a3f8eace14610717578063b88d4fde14610737578063c45ac05014610757578063c87b56dd1461077757600080fd5b80638a59a7fd146106185780638b83209b146106385780638da5cb5b1461065857806395d89b41146106765780639852595c1461068b5780639b6860c8146106c157600080fd5b80632cefffa7116102195780635be7fde8116101d25780635be7fde8146105795780636352211e1461058e5780636c0360eb146105ae57806370a08231146105c3578063715018a6146105e35780638a02e3b9146105f857600080fd5b80632cefffa7146104a85780633a98ef39146104be578063406072a9146104d357806342842e0e1461051957806348b75044146105395780634fda72851461055957600080fd5b806312036d181161026b57806312036d18146103fc578063139bcea51461041c57806318160ddd1461042f578063191655871461045257806323b872dd1461047257806324f96a881461049257600080fd5b8062eb7013146102ff57806301ffc9a71461032157806306fdde0314610356578063081812fc14610378578063095ea7b3146103b05780630c3f6acf146103d057600080fd5b366102fa577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561030b57600080fd5b5061031f61031a3660046122f9565b61098c565b005b34801561032d57600080fd5b5061034161033c366004612328565b610999565b60405190151581526020015b60405180910390f35b34801561036257600080fd5b5061036b6109eb565b60405161034d9190612395565b34801561038457600080fd5b506103986103933660046122f9565b610a7d565b6040516001600160a01b03909116815260200161034d565b3480156103bc57600080fd5b5061031f6103cb3660046123bd565b610ac1565b3480156103dc57600080fd5b5060135460155460185460195460405161034d9460ff1693929190612421565b34801561040857600080fd5b5061031f6104173660046122f9565b610b61565b61031f61042a36600461244a565b610b6e565b34801561043b57600080fd5b50600254600154035b60405190815260200161034d565b34801561045e57600080fd5b5061031f61046d3660046124d3565b610d93565b34801561047e57600080fd5b5061031f61048d3660046124f0565b610e8c565b34801561049e57600080fd5b5061044460165481565b3480156104b457600080fd5b5061044460185481565b3480156104ca57600080fd5b50600954610444565b3480156104df57600080fd5b506104446104ee366004612531565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b34801561052557600080fd5b5061031f6105343660046124f0565b611025565b34801561054557600080fd5b5061031f610554366004612531565b611045565b34801561056557600080fd5b5061031f6105743660046122f9565b611168565b34801561058557600080fd5b5061031f611175565b34801561059a57600080fd5b506103986105a93660046122f9565b6111a3565b3480156105ba57600080fd5b5061036b6111ae565b3480156105cf57600080fd5b506104446105de3660046124d3565b61123c565b3480156105ef57600080fd5b5061031f61128b565b34801561060457600080fd5b5061031f6106133660046122f9565b61129f565b34801561062457600080fd5b506104446106333660046124d3565b6112ac565b34801561064457600080fd5b506103986106533660046122f9565b6112d7565b34801561066457600080fd5b506000546001600160a01b0316610398565b34801561068257600080fd5b5061036b611307565b34801561069757600080fd5b506104446106a63660046124d3565b6001600160a01b03166000908152600c602052604090205490565b3480156106cd57600080fd5b5061044460155481565b3480156106e357600080fd5b5061031f6106f23660046125f6565b611316565b34801561070357600080fd5b5061031f61071236600461264d565b61132e565b34801561072357600080fd5b506104446107323660046124d3565b6113c3565b34801561074357600080fd5b5061031f61075236600461267b565b61140b565b34801561076357600080fd5b50610444610772366004612531565b611455565b34801561078357600080fd5b5061036b6107923660046122f9565b611520565b3480156107a357600080fd5b5061031f6115a9565b3480156107b857600080fd5b5061044460145481565b3480156107ce57600080fd5b506013546107dc9060ff1681565b60405161034d91906126fb565b3480156107f557600080fd5b506104446108043660046124d3565b6001600160a01b03166000908152600b602052604090205490565b34801561082b57600080fd5b5061044461083a3660046124d3565b60176020526000908152604090205481565b34801561085857600080fd5b506104446108673660046124d3565b6001600160a01b03166000908152600e602052604090205490565b34801561088e57600080fd5b50600a54610444565b3480156108a357600080fd5b506103416108b2366004612531565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156108ec57600080fd5b506104446108fb3660046124d3565b6001600160a01b031660009081526017602052604090205490565b34801561092257600080fd5b5061031f61093136600461244a565b6115df565b34801561094257600080fd5b5061044460195481565b34801561095857600080fd5b5061031f6109673660046124d3565b6117d7565b34801561097857600080fd5b5061031f6109873660046122f9565b61184d565b61099461188b565b601855565b60006301ffc9a760e01b6001600160e01b0319831614806109ca57506380ac58cd60e01b6001600160e01b03198316145b806109e55750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546109fa90612709565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2690612709565b8015610a735780601f10610a4857610100808354040283529160200191610a73565b820191906000526020600020905b815481529060010190602001808311610a5657829003601f168201915b5050505050905090565b6000610a88826118e5565b610aa5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610acc826111a3565b9050336001600160a01b03821614610b0557610ae881336108b2565b610b05576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610b6961188b565b601455565b60155480610bb05760405162461bcd60e51b815260206004820152600a6024820152690507269636520697320360b41b60448201526064015b60405180910390fd5b60008411610bf05760405162461bcd60e51b815260206004820152600d60248201526c05175616e74697479206973203609c1b6044820152606401610ba7565b601954841115610c12576040516282b42960e81b815260040160405180910390fd5b600160135460ff166003811115610c2b57610c2b6123e9565b14610c48576040516282b42960e81b815260040160405180910390fd5b61271084610c596002546001540390565b610c639190612759565b1115610c81576040516282b42960e81b815260040160405180910390fd5b610c8b848261276c565b341015610cbf5734610c9d858361276c565b604051631c102d6360e21b815260048101929092526024820152604401610ba7565b610d5583838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602082015233603c820152605c019150610d319050565b6040516020818303038152906040528051906020012061190d90919063ffffffff16565b6011546001600160a01b03908116911614610d82576040516282b42960e81b815260040160405180910390fd5b610d8c8585611931565b5050505050565b6001600160a01b0381166000908152600b6020526040902054610dc85760405162461bcd60e51b8152600401610ba790612783565b6000610dd3826113c3565b905080600003610df55760405162461bcd60e51b8152600401610ba7906127c9565b6001600160a01b0382166000908152600c602052604081208054839290610e1d908490612759565b9250508190555080600a6000828254610e369190612759565b90915550610e4690508282611a2f565b604080516001600160a01b0384168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a15050565b6000610e9782611b48565b9050836001600160a01b0316816001600160a01b031614610eca5760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b03881690911417610f1757610efa86336108b2565b610f1757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610f3e57604051633a954ecd60e21b815260040160405180910390fd5b8015610f4957600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003610fdb57600184016000818152600560205260408120549003610fd9576001548114610fd95760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6110408383836040518060200160405280600081525061140b565b505050565b6001600160a01b0381166000908152600b602052604090205461107a5760405162461bcd60e51b8152600401610ba790612783565b60006110868383611455565b9050806000036110a85760405162461bcd60e51b8152600401610ba7906127c9565b6001600160a01b038084166000908152600f60209081526040808320938616835292905290812080548392906110df908490612759565b90915550506001600160a01b0383166000908152600e60205260408120805483929061110c908490612759565b9091555061111d9050838383611baf565b604080516001600160a01b038481168252602082018490528516917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a2505050565b61117061188b565b601555565b60005b601a548110156111a05761118e61046d826112d7565b8061119881612814565b915050611178565b50565b60006109e582611b48565b601280546111bb90612709565b80601f01602080910402602001604051908101604052809291908181526020018280546111e790612709565b80156112345780601f1061120957610100808354040283529160200191611234565b820191906000526020600020905b81548152906001019060200180831161121757829003601f168201915b505050505081565b60006001600160a01b038216611265576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b61129361188b565b61129d6000611c01565b565b6112a761188b565b601955565b6001600160a01b0381166000908152600660205260408082205467ffffffffffffffff911c166109e5565b6000600d82815481106112ec576112ec61282d565b6000918252602090912001546001600160a01b031692915050565b6060600480546109fa90612709565b61131e61188b565b601261132a8282612889565b5050565b336001600160a01b038316036113575760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000806113cf600a5490565b6113d99047612759565b905061140483826113ff866001600160a01b03166000908152600c602052604090205490565b611c51565b9392505050565b611416848484610e8c565b6001600160a01b0383163b1561144f5761143284848484611c8f565b61144f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6001600160a01b0382166000908152600e602052604081205481906040516370a0823160e01b81523060048201526001600160a01b038616906370a0823190602401602060405180830381865afa1580156114b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d89190612949565b6114e29190612759565b6001600160a01b038086166000908152600f60209081526040808320938816835292905220549091506115189084908390611c51565b949350505050565b606061152b826118e5565b6115775760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610ba7565b601261158283611d7a565b604051602001611593929190612962565b6040516020818303038152906040529050919050565b6115b161188b565b600254600154146115d4576040516282b42960e81b815260040160405180910390fd5b61129d336001611931565b6000831161161f5760405162461bcd60e51b815260206004820152600d60248201526c05175616e74697479206973203609c1b6044820152606401610ba7565b600160135460ff166003811115611638576116386123e9565b14611655576040516282b42960e81b815260040160405180910390fd5b601454836016546116669190612759565b1115611684576040516282b42960e81b815260040160405180910390fd5b612710836116956002546001540390565b61169f9190612759565b11156116bd576040516282b42960e81b815260040160405180910390fd5b61172f82828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602082015233603c820152605c019150610d319050565b6010546001600160a01b0390811691161461175c576040516282b42960e81b815260040160405180910390fd5b6018543360009081526017602052604090205461177a908590612759565b1115611798576040516282b42960e81b815260040160405180910390fd5b33600090815260176020526040812080548592906117b7908490612759565b90915550506016546117ca908490612759565b60165561144f8484611931565b6117df61188b565b6001600160a01b0381166118445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ba7565b6111a081611c01565b61185561188b565b806003811115611867576118676123e9565b6013805460ff19166001836003811115611883576118836123e9565b021790555050565b6000546001600160a01b0316331461129d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ba7565b6000600154821080156109e5575050600090815260056020526040902054600160e01b161590565b600080600061191c8585611dc9565b9150915061192981611e37565b509392505050565b60015460008290036119565760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611a0557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016119cd565b5081600003611a2657604051622e076360e81b815260040160405180910390fd5b60015550505050565b80471015611a7f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610ba7565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611acc576040519150601f19603f3d011682016040523d82523d6000602084013e611ad1565b606091505b50509050806110405760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610ba7565b600081600154811015611b965760008181526005602052604081205490600160e01b82169003611b94575b80600003611404575060001901600081815260056020526040902054611b73565b505b604051636f96cda160e11b815260040160405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611040908490611fed565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6009546001600160a01b0384166000908152600b602052604081205490918391611c7b908661276c565b611c8591906129f9565b6115189190612a1b565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611cc4903390899088908890600401612a2e565b6020604051808303816000875af1925050508015611cff575060408051601f3d908101601f19168201909252611cfc91810190612a6b565b60015b611d5d573d808015611d2d576040519150601f19603f3d011682016040523d82523d6000602084013e611d32565b606091505b508051600003611d55576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611db757600183039250600a81066030018353600a9004611d99565b50819003601f19909101908152919050565b6000808251604103611dff5760208301516040840151606085015160001a611df3878285856120bf565b94509450505050611e30565b8251604003611e285760208301516040840151611e1d8683836121ac565b935093505050611e30565b506000905060025b9250929050565b6000816004811115611e4b57611e4b6123e9565b03611e535750565b6001816004811115611e6757611e676123e9565b03611eb45760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610ba7565b6002816004811115611ec857611ec86123e9565b03611f155760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610ba7565b6003816004811115611f2957611f296123e9565b03611f815760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610ba7565b6004816004811115611f9557611f956123e9565b036111a05760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610ba7565b6000612042826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166121e59092919063ffffffff16565b80519091501561104057808060200190518101906120609190612a88565b6110405760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610ba7565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156120f657506000905060036121a3565b8460ff16601b1415801561210e57508460ff16601c14155b1561211f57506000905060046121a3565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612173573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661219c576000600192509250506121a3565b9150600090505b94509492505050565b6000806001600160ff1b038316816121c960ff86901c601b612759565b90506121d7878288856120bf565b935093505050935093915050565b60606115188484600085856001600160a01b0385163b6122475760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610ba7565b600080866001600160a01b031685876040516122639190612aa5565b60006040518083038185875af1925050503d80600081146122a0576040519150601f19603f3d011682016040523d82523d6000602084013e6122a5565b606091505b50915091506122b58282866122c0565b979650505050505050565b606083156122cf575081611404565b8251156122df5782518084602001fd5b8160405162461bcd60e51b8152600401610ba79190612395565b60006020828403121561230b57600080fd5b5035919050565b6001600160e01b0319811681146111a057600080fd5b60006020828403121561233a57600080fd5b813561140481612312565b60005b83811015612360578181015183820152602001612348565b50506000910152565b60008151808452612381816020860160208601612345565b601f01601f19169290920160200192915050565b6020815260006114046020830184612369565b6001600160a01b03811681146111a057600080fd5b600080604083850312156123d057600080fd5b82356123db816123a8565b946020939093013593505050565b634e487b7160e01b600052602160045260246000fd5b6004811061241d57634e487b7160e01b600052602160045260246000fd5b9052565b6080810161242f82876123ff565b84602083015283604083015282606083015295945050505050565b6000806000806060858703121561246057600080fd5b843561246b816123a8565b935060208501359250604085013567ffffffffffffffff8082111561248f57600080fd5b818701915087601f8301126124a357600080fd5b8135818111156124b257600080fd5b8860208285010111156124c457600080fd5b95989497505060200194505050565b6000602082840312156124e557600080fd5b8135611404816123a8565b60008060006060848603121561250557600080fd5b8335612510816123a8565b92506020840135612520816123a8565b929592945050506040919091013590565b6000806040838503121561254457600080fd5b823561254f816123a8565b9150602083013561255f816123a8565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561259b5761259b61256a565b604051601f8501601f19908116603f011681019082821181831017156125c3576125c361256a565b816040528093508581528686860111156125dc57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561260857600080fd5b813567ffffffffffffffff81111561261f57600080fd5b8201601f8101841361263057600080fd5b61151884823560208401612580565b80151581146111a057600080fd5b6000806040838503121561266057600080fd5b823561266b816123a8565b9150602083013561255f8161263f565b6000806000806080858703121561269157600080fd5b843561269c816123a8565b935060208501356126ac816123a8565b925060408501359150606085013567ffffffffffffffff8111156126cf57600080fd5b8501601f810187136126e057600080fd5b6126ef87823560208401612580565b91505092959194509250565b602081016109e582846123ff565b600181811c9082168061271d57607f821691505b60208210810361273d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156109e5576109e5612743565b80820281158282048414176109e5576109e5612743565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b60006001820161282657612826612743565b5060010190565b634e487b7160e01b600052603260045260246000fd5b601f82111561104057600081815260208120601f850160051c8101602086101561286a5750805b601f850160051c820191505b8181101561101d57828155600101612876565b815167ffffffffffffffff8111156128a3576128a361256a565b6128b7816128b18454612709565b84612843565b602080601f8311600181146128ec57600084156128d45750858301515b600019600386901b1c1916600185901b17855561101d565b600085815260208120601f198616915b8281101561291b578886015182559484019460019091019084016128fc565b50858210156129395787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561295b57600080fd5b5051919050565b600080845461297081612709565b60018281168015612988576001811461299d576129cc565b60ff19841687528215158302870194506129cc565b8860005260208060002060005b858110156129c35781548a8201529084019082016129aa565b50505082870194505b5050505083516129e0818360208801612345565b64173539b7b760d91b9101908152600501949350505050565b600082612a1657634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156109e5576109e5612743565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a6190830184612369565b9695505050505050565b600060208284031215612a7d57600080fd5b815161140481612312565b600060208284031215612a9a57600080fd5b81516114048161263f565b60008251612ab7818460208701612345565b919091019291505056fea26469706673582212205f6542bca361e4e32948955376393b5c297af94b0fa741f0a6124c4ed146972264736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000006d5cffbcbef82b9e7e302a195ffdb282c188addb000000000000000000000000d88306b19a660836379dab1845624b3a8799891700000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000000000008000000000000000000000000755b6435efba4bc71dfaf69a87bd469105ed7aba000000000000000000000000ddc9d19c4c210d3d0405baf2c31b49f4e5012dc5000000000000000000000000f35861429f160e0a286eb0eebf3ab3f6db4a18cd0000000000000000000000001bfc990f883e87c57220d21155d1e67947e8e9dc000000000000000000000000765cdbeca6fff633dc21185d3556bb35c89d5e4c000000000000000000000000710a45821155107b733e39d804e8d996845810bc00000000000000000000000066032336234edc7191e51ffc439a11ad107eabf4000000000000000000000000022485c24dd411614e80a468ccb33c2539fbe63b000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000004b000000000000000000000000000000000000000000000000000000000000004b0000000000000000000000000000000000000000000000000000000000000104000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696271796f76746e64786d3666713435696765756233746973706d746c786f6b636f74367a7963777137336337657a7a73693561712f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _team (address[]): 0x755b6435efbA4Bc71dFAf69A87bd469105eD7ABa,0xddc9D19C4C210d3d0405bAf2C31b49F4E5012dc5,0xF35861429f160E0a286eb0eebf3AB3f6Db4a18cD,0x1bFC990F883e87C57220D21155D1E67947e8e9dC,0x765CDBECA6ffF633dC21185D3556bB35c89D5e4C,0x710A45821155107B733E39d804e8d996845810BC,0x66032336234EDc7191E51ffC439A11aD107eABf4,0x022485c24Dd411614e80A468CCb33c2539Fbe63b
Arg [1] : _teamShares (uint256[]): 500,75,75,260,60,10,10,10
Arg [2] : _signerAddressWL (address): 0x6d5cffBcbeF82B9E7E302A195fFDb282C188AddB
Arg [3] : _signerAddressPublic (address): 0xd88306B19A660836379dAb1845624b3a87998917
Arg [4] : _baseURI (string): ipfs://bafybeibqyovtndxm6fq45igeub3tispmtlxokcot6zycwq73c7ezzsi5aq/

-----Encoded View---------------
27 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [2] : 0000000000000000000000006d5cffbcbef82b9e7e302a195ffdb282c188addb
Arg [3] : 000000000000000000000000d88306b19a660836379dab1845624b3a87998917
Arg [4] : 00000000000000000000000000000000000000000000000000000000000002e0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 000000000000000000000000755b6435efba4bc71dfaf69a87bd469105ed7aba
Arg [7] : 000000000000000000000000ddc9d19c4c210d3d0405baf2c31b49f4e5012dc5
Arg [8] : 000000000000000000000000f35861429f160e0a286eb0eebf3ab3f6db4a18cd
Arg [9] : 0000000000000000000000001bfc990f883e87c57220d21155d1e67947e8e9dc
Arg [10] : 000000000000000000000000765cdbeca6fff633dc21185d3556bb35c89d5e4c
Arg [11] : 000000000000000000000000710a45821155107b733e39d804e8d996845810bc
Arg [12] : 00000000000000000000000066032336234edc7191e51ffc439a11ad107eabf4
Arg [13] : 000000000000000000000000022485c24dd411614e80a468ccb33c2539fbe63b
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [15] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [16] : 000000000000000000000000000000000000000000000000000000000000004b
Arg [17] : 000000000000000000000000000000000000000000000000000000000000004b
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000104
Arg [19] : 000000000000000000000000000000000000000000000000000000000000003c
Arg [20] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [21] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [22] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [23] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [24] : 697066733a2f2f626166796265696271796f76746e64786d3666713435696765
Arg [25] : 756233746973706d746c786f6b636f74367a7963777137336337657a7a736935
Arg [26] : 61712f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

88701:4681:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41720:40;8980:10;41720:40;;;-1:-1:-1;;;;;206:32:1;;;188:51;;41750:9:0;270:2:1;255:18;;248:34;161:18;41720:40:0;;;;;;;88701:4681;;;;;92274:116;;;;;;;;;;-1:-1:-1;92274:116:0;;;;;:::i;:::-;;:::i;:::-;;55798:639;;;;;;;;;;-1:-1:-1;55798:639:0;;;;;:::i;:::-;;:::i;:::-;;;1029:14:1;;1022:22;1004:41;;992:2;977:18;55798:639:0;;;;;;;;56700:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;63183:218::-;;;;;;;;;;-1:-1:-1;63183:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1976:32:1;;;1958:51;;1946:2;1931:18;63183:218:0;1812:203:1;62624:400:0;;;;;;;;;;-1:-1:-1;62624:400:0;;;;;:::i;:::-;;:::i;92511:177::-;;;;;;;;;;-1:-1:-1;92601:11:0;;92614:15;;92631:25;;92658:21;;92511:177;;;;92601:11;;;92614:15;92631:25;92658:21;92511:177;:::i;89986:92::-;;;;;;;;;;-1:-1:-1;89986:92:0;;;;;:::i;:::-;;:::i;91017:919::-;;;;;;:::i;:::-;;:::i;52451:323::-;;;;;;;;;;-1:-1:-1;52725:12:0;;52709:13;;:28;52451:323;;;4207:25:1;;;4195:2;4180:18;52451:323:0;4061:177:1;44241:453:0;;;;;;;;;;-1:-1:-1;44241:453:0;;;;;:::i;:::-;;:::i;66890:2817::-;;;;;;;;;;-1:-1:-1;66890:2817:0;;;;;:::i;:::-;;:::i;89199:30::-;;;;;;;;;;;;;;;;89317:41;;;;;;;;;;;;;;;;41851:91;;;;;;;;;;-1:-1:-1;41922:12:0;;41851:91;;42980:135;;;;;;;;;;-1:-1:-1;42980:135:0;;;;;:::i;:::-;-1:-1:-1;;;;;43077:21:0;;;43050:7;43077:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;42980:135;69803:185;;;;;;;;;;-1:-1:-1;69803:185:0;;;;;:::i;:::-;;:::i;44962:514::-;;;;;;;;;;-1:-1:-1;44962:514:0;;;;;:::i;:::-;;:::i;91944:114::-;;;;;;;;;;-1:-1:-1;91944:114:0;;;;;:::i;:::-;;:::i;93238:141::-;;;;;;;;;;;;;:::i;58093:152::-;;;;;;;;;;-1:-1:-1;58093:152:0;;;;;:::i;:::-;;:::i;89006:21::-;;;;;;;;;;;;;:::i;53635:233::-;;;;;;;;;;-1:-1:-1;53635:233:0;;;;;:::i;:::-;;:::i;29723:103::-;;;;;;;;;;;;;:::i;92398:105::-;;;;;;;;;;-1:-1:-1;92398:105:0;;;;;:::i;:::-;;:::i;92696:122::-;;;;;;;;;;-1:-1:-1;92696:122:0;;;;;:::i;:::-;;:::i;43206:100::-;;;;;;;;;;-1:-1:-1;43206:100:0;;;;;:::i;:::-;;:::i;29075:87::-;;;;;;;;;;-1:-1:-1;29121:7:0;29148:6;-1:-1:-1;;;;;29148:6:0;29075:87;;56876:104;;;;;;;;;;;;;:::i;42702:109::-;;;;;;;;;;-1:-1:-1;42702:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;42785:18:0;42758:7;42785:18;;;:9;:18;;;;;;;42702:109;89149:41;;;;;;;;;;;;;;;;92066:100;;;;;;;;;;-1:-1:-1;92066:100:0;;;;;:::i;:::-;;:::i;63741:308::-;;;;;;;;;;-1:-1:-1;63741:308:0;;;;;:::i;:::-;;:::i;43396:225::-;;;;;;;;;;-1:-1:-1;43396:225:0;;;;;:::i;:::-;;:::i;70586:399::-;;;;;;;;;;-1:-1:-1;70586:399:0;;;;;:::i;:::-;;:::i;43781:260::-;;;;;;;;;;-1:-1:-1;43781:260:0;;;;;:::i;:::-;;:::i;92983:247::-;;;;;;;;;;-1:-1:-1;92983:247:0;;;;;:::i;:::-;;:::i;89840:138::-;;;;;;;;;;;;;:::i;89115:25::-;;;;;;;;;;;;;;;;89036:23;;;;;;;;;;-1:-1:-1;89036:23:0;;;;;;;;;;;;;;;:::i;42498:105::-;;;;;;;;;;-1:-1:-1;42498:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;42579:16:0;42552:7;42579:16;;;:7;:16;;;;;;;42498:105;89238:70;;;;;;;;;;-1:-1:-1;89238:70:0;;;;;:::i;:::-;;;;;;;;;;;;;;42288:119;;;;;;;;;;-1:-1:-1;42288:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;42373:26:0;42346:7;42373:26;;;:19;:26;;;;;;;42288:119;42036:95;;;;;;;;;;-1:-1:-1;42109:14:0;;42036:95;;64206:164;;;;;;;;;;-1:-1:-1;64206:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;64327:25:0;;;64303:4;64327:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;64206:164;92826:149;;;;;;;;;;-1:-1:-1;92826:149:0;;;;;:::i;:::-;-1:-1:-1;;;;;92920:47:0;92893:7;92920:47;;;:38;:47;;;;;;;92826:149;90086:921;;;;;;;;;;-1:-1:-1;90086:921:0;;;;;:::i;:::-;;:::i;89368:38::-;;;;;;;;;;;;;;;;29981:201;;;;;;;;;;-1:-1:-1;29981:201:0;;;;;:::i;:::-;;:::i;92174:92::-;;;;;;;;;;-1:-1:-1;92174:92:0;;;;;:::i;:::-;;:::i;92274:116::-;28961:13;:11;:13::i;:::-;92348:25:::1;:34:::0;92274:116::o;55798:639::-;55883:4;-1:-1:-1;;;;;;;;;56207:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;56284:25:0;;;56207:102;:179;;;-1:-1:-1;;;;;;;;;;56361:25:0;;;56207:179;56187:199;55798:639;-1:-1:-1;;55798:639:0:o;56700:100::-;56754:13;56787:5;56780:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56700:100;:::o;63183:218::-;63259:7;63284:16;63292:7;63284;:16::i;:::-;63279:64;;63309:34;;-1:-1:-1;;;63309:34:0;;;;;;;;;;;63279:64;-1:-1:-1;63363:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;63363:30:0;;63183:218::o;62624:400::-;62705:13;62721:16;62729:7;62721;:16::i;:::-;62705:32;-1:-1:-1;8980:10:0;-1:-1:-1;;;;;62754:28:0;;;62750:175;;62802:44;62819:5;8980:10;64206:164;:::i;62802:44::-;62797:128;;62874:35;;-1:-1:-1;;;62874:35:0;;;;;;;;;;;62797:128;62937:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;62937:35:0;-1:-1:-1;;;;;62937:35:0;;;;;;;;;62988:28;;62937:24;;62988:28;;;;;;;62694:330;62624:400;;:::o;89986:92::-;28961:13;:11;:13::i;:::-;90052:6:::1;:18:::0;89986:92::o;91017:919::-;91142:15;;91171:10;91168:35;;91183:20;;-1:-1:-1;;;91183:20:0;;9607:2:1;91183:20:0;;;9589:21:1;9646:2;9626:18;;;9619:30;-1:-1:-1;;;9665:18:1;;;9658:40;9715:18;;91183:20:0;;;;;;;;91168:35;91230:1;91217:9;:14;91214:42;;91233:23;;-1:-1:-1;;;91233:23:0;;9946:2:1;91233:23:0;;;9928:21:1;9985:2;9965:18;;;9958:30;-1:-1:-1;;;10004:18:1;;;9997:43;10057:18;;91233:23:0;9744:337:1;91214:42:0;91284:21;;91272:9;:33;91269:59;;;91314:14;;-1:-1:-1;;;91314:14:0;;;;;;;;;;;91269:59;91359:16;91344:11;;;;:31;;;;;;;;:::i;:::-;;91341:57;;91384:14;;-1:-1:-1;;;91384:14:0;;;;;;;;;;;91341:57;89103:5;91428:9;91412:13;52725:12;;52709:13;;:28;;52451:323;91412:13;:25;;;;:::i;:::-;:38;91409:64;;;91459:14;;-1:-1:-1;;;91459:14:0;;;;;;;;;;;91409:64;91499:17;91507:9;91499:5;:17;:::i;:::-;91487:9;:29;91484:151;;;91572:9;91606:17;91614:9;91606:5;:17;:::i;:::-;91525:110;;-1:-1:-1;;;91525:110:0;;;;;10695:25:1;;;;10736:18;;;10729:34;10668:18;;91525:110:0;10521:248:1;91484:151:0;91672:194;91856:9;;91672:194;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;91696:140:0;;11016:66:1;91696:140:0;;;11004:79:1;91808:10:0;11099:12:1;;;11092:28;11136:12;;;-1:-1:-1;91696:140:0;;-1:-1:-1;10774:380:1;91696:140:0;;;;;;;;;;;;;91672:175;;;;;;:183;;:194;;;;:::i;:::-;91649:19;;-1:-1:-1;;;;;91649:19:0;;;:217;;;91646:243;;91875:14;;-1:-1:-1;;;91875:14:0;;;;;;;;;;;91646:243;91902:26;91908:8;91918:9;91902:5;:26::i;:::-;91118:818;91017:919;;;;:::o;44241:453::-;-1:-1:-1;;;;;44317:16:0;;44336:1;44317:16;;;:7;:16;;;;;;44309:71;;;;-1:-1:-1;;;44309:71:0;;;;;;;:::i;:::-;44393:15;44411:19;44422:7;44411:10;:19::i;:::-;44393:37;;44451:7;44462:1;44451:12;44443:68;;;;-1:-1:-1;;;44443:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44524:18:0;;;;;;:9;:18;;;;;:29;;44546:7;;44524:18;:29;;44546:7;;44524:29;:::i;:::-;;;;;;;;44582:7;44564:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;44602:35:0;;-1:-1:-1;44620:7:0;44629;44602:17;:35::i;:::-;44653:33;;;-1:-1:-1;;;;;206:32:1;;188:51;;270:2;255:18;;248:34;;;44653:33:0;;161:18:1;44653:33:0;;;;;;;44298:396;44241:453;:::o;66890:2817::-;67024:27;67054;67073:7;67054:18;:27::i;:::-;67024:57;;67139:4;-1:-1:-1;;;;;67098:45:0;67114:19;-1:-1:-1;;;;;67098:45:0;;67094:86;;67152:28;;-1:-1:-1;;;67152:28:0;;;;;;;;;;;67094:86;67194:27;66004:24;;;:15;:24;;;;;66226:26;;8980:10;65629:30;;;-1:-1:-1;;;;;65322:28:0;;65607:20;;;65604:56;67380:180;;67473:43;67490:4;8980:10;64206:164;:::i;67473:43::-;67468:92;;67525:35;;-1:-1:-1;;;67525:35:0;;;;;;;;;;;67468:92;-1:-1:-1;;;;;67577:16:0;;67573:52;;67602:23;;-1:-1:-1;;;67602:23:0;;;;;;;;;;;67573:52;67774:15;67771:160;;;67914:1;67893:19;67886:30;67771:160;-1:-1:-1;;;;;68311:24:0;;;;;;;:18;:24;;;;;;68309:26;;-1:-1:-1;;68309:26:0;;;68380:22;;;;;;;;;68378:24;;-1:-1:-1;68378:24:0;;;61482:11;61457:23;61453:41;61440:63;-1:-1:-1;;;61440:63:0;68673:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;68968:47:0;;:52;;68964:627;;69073:1;69063:11;;69041:19;69196:30;;;:17;:30;;;;;;:35;;69192:384;;69334:13;;69319:11;:28;69315:242;;69481:30;;;;:17;:30;;;;;:52;;;69315:242;69022:569;68964:627;69638:7;69634:2;-1:-1:-1;;;;;69619:27:0;69628:4;-1:-1:-1;;;;;69619:27:0;;;;;;;;;;;69657:42;67013:2694;;;66890:2817;;;:::o;69803:185::-;69941:39;69958:4;69964:2;69968:7;69941:39;;;;;;;;;;;;:16;:39::i;:::-;69803:185;;;:::o;44962:514::-;-1:-1:-1;;;;;45044:16:0;;45063:1;45044:16;;;:7;:16;;;;;;45036:71;;;;-1:-1:-1;;;45036:71:0;;;;;;;:::i;:::-;45120:15;45138:26;45149:5;45156:7;45138:10;:26::i;:::-;45120:44;;45185:7;45196:1;45185:12;45177:68;;;;-1:-1:-1;;;45177:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45258:21:0;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;45292:7;;45258:21;:41;;45292:7;;45258:41;:::i;:::-;;;;-1:-1:-1;;;;;;;45310:26:0;;;;;;:19;:26;;;;;:37;;45340:7;;45310:26;:37;;45340:7;;45310:37;:::i;:::-;;;;-1:-1:-1;45360:47:0;;-1:-1:-1;45383:5:0;45390:7;45399;45360:22;:47::i;:::-;45423:45;;;-1:-1:-1;;;;;206:32:1;;;188:51;;270:2;255:18;;248:34;;;45423:45:0;;;;;161:18:1;45423:45:0;;;;;;;45025:451;44962:514;;:::o;91944:114::-;28961:13;:11;:13::i;:::-;92023:15:::1;:27:::0;91944:114::o;93238:141::-;93284:6;93280:92;93301:10;;93297:1;:14;93280:92;;;93334:26;93350:8;93356:1;93350:5;:8::i;93334:26::-;93314:3;;;;:::i;:::-;;;;93280:92;;;;93238:141::o;58093:152::-;58165:7;58208:27;58227:7;58208:18;:27::i;89006:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53635:233::-;53707:7;-1:-1:-1;;;;;53731:19:0;;53727:60;;53759:28;;-1:-1:-1;;;53759:28:0;;;;;;;;;;;53727:60;-1:-1:-1;;;;;;53805:25:0;;;;;:18;:25;;;;;;47794:13;53805:55;;53635:233::o;29723:103::-;28961:13;:11;:13::i;:::-;29788:30:::1;29815:1;29788:18;:30::i;:::-;29723:103::o:0;92398:105::-;28961:13;:11;:13::i;:::-;92465:21:::1;:30:::0;92398:105::o;92696:122::-;-1:-1:-1;;;;;54039:25:0;;92761:7;54039:25;;;:18;:25;;47932:2;54039:25;;;;47794:13;54039:50;;54038:82;92788:22;53950:178;43206:100;43257:7;43284;43292:5;43284:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;43284:14:0;;43206:100;-1:-1:-1;;43206:100:0:o;56876:104::-;56932:13;56965:7;56958:14;;;;;:::i;92066:100::-;28961:13;:11;:13::i;:::-;92140:7:::1;:18;92150:8:::0;92140:7;:18:::1;:::i;:::-;;92066:100:::0;:::o;63741:308::-;8980:10;-1:-1:-1;;;;;63840:31:0;;;63836:61;;63880:17;;-1:-1:-1;;;63880:17:0;;;;;;;;;;;63836:61;8980:10;63910:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;63910:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;63910:60:0;;;;;;;;;;63986:55;;1004:41:1;;;63910:49:0;;8980:10;63986:55;;977:18:1;63986:55:0;;;;;;;63741:308;;:::o;43396:225::-;43454:7;43474:21;43522:15;42109:14;;;42036:95;43522:15;43498:39;;:21;:39;:::i;:::-;43474:63;;43555:58;43571:7;43580:13;43595:17;43604:7;-1:-1:-1;;;;;42785:18:0;42758:7;42785:18;;;:9;:18;;;;;;;42702:109;43595:17;43555:15;:58::i;:::-;43548:65;43396:225;-1:-1:-1;;;43396:225:0:o;70586:399::-;70753:31;70766:4;70772:2;70776:7;70753:12;:31::i;:::-;-1:-1:-1;;;;;70799:14:0;;;:19;70795:183;;70838:56;70869:4;70875:2;70879:7;70888:5;70838:30;:56::i;:::-;70833:145;;70922:40;;-1:-1:-1;;;70922:40:0;;;;;;;;;;;70833:145;70586:399;;;;:::o;43781:260::-;-1:-1:-1;;;;;42373:26:0;;43853:7;42373:26;;;:19;:26;;;;;;43853:7;;43897:30;;-1:-1:-1;;;43897:30:0;;43921:4;43897:30;;;1958:51:1;-1:-1:-1;;;;;43897:15:0;;;;;1931:18:1;;43897:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;-1:-1:-1;;;;;43077:21:0;;;43050:7;43077:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;43873:77;;-1:-1:-1;43968:65:0;;43984:7;;43873:77;;43555:15;:58::i;43968:65::-;43961:72;43781:260;-1:-1:-1;;;;43781:260:0:o;92983:247::-;93054:13;93088:17;93096:8;93088:7;:17::i;:::-;93080:61;;;;-1:-1:-1;;;93080:61:0;;15132:2:1;93080:61:0;;;15114:21:1;15171:2;15151:18;;;15144:30;15210:33;15190:18;;;15183:61;15261:18;;93080:61:0;14930:355:1;93080:61:0;93183:7;93192:19;93202:8;93192:9;:19::i;:::-;93166:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;93152:70;;92983:247;;;:::o;89840:138::-;28961:13;:11;:13::i;:::-;52725:12;;52709:13;;89898:18;89895:44:::1;;89925:14;;-1:-1:-1::0;;;89925:14:0::1;;;;;;;;;;;89895:44;89950:20;89956:10;89968:1;89950:5;:20::i;90086:921::-:0;90200:1;90187:9;:14;90184:42;;90203:23;;-1:-1:-1;;;90203:23:0;;9946:2:1;90203:23:0;;;9928:21:1;9985:2;9965:18;;;9958:30;-1:-1:-1;;;10004:18:1;;;9997:43;10057:18;;90203:23:0;9744:337:1;90184:42:0;90255:16;90240:11;;;;:31;;;;;;;;:::i;:::-;;90237:57;;90280:14;;-1:-1:-1;;;90280:14:0;;;;;;;;;;;90237:57;90337:6;;90325:9;90308:14;;:26;;;;:::i;:::-;:35;90305:61;;;90352:14;;-1:-1:-1;;;90352:14:0;;;;;;;;;;;90305:61;89103:5;90396:9;90380:13;52725:12;;52709:13;;:28;;52451:323;90380:13;:25;;;;:::i;:::-;:38;90377:64;;;90427:14;;-1:-1:-1;;;90427:14:0;;;;;;;;;;;90377:64;90474:194;90658:9;;90474:194;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;90498:140:0;;11016:66:1;90498:140:0;;;11004:79:1;90610:10:0;11099:12:1;;;11092:28;11136:12;;;-1:-1:-1;90498:140:0;;-1:-1:-1;10774:380:1;90474:194:0;90455:15;;-1:-1:-1;;;;;90455:15:0;;;:213;;;90452:239;;90677:14;;-1:-1:-1;;;90677:14:0;;;;;;;;;;;90452:239;90772:25;;90746:10;90707:50;;;;:38;:50;;;;;;:62;;90760:9;;90707:62;:::i;:::-;:90;90704:116;;;90806:14;;-1:-1:-1;;;90806:14:0;;;;;;;;;;;90704:116;90884:10;90845:50;;;;:38;:50;;;;;:63;;90899:9;;90845:50;:63;;90899:9;;90845:63;:::i;:::-;;;;-1:-1:-1;;90936:14:0;;:26;;90953:9;;90936:26;:::i;:::-;90919:14;:43;90973:26;90979:8;90989:9;90973:5;:26::i;29981:201::-;28961:13;:11;:13::i;:::-;-1:-1:-1;;;;;30070:22:0;::::1;30062:73;;;::::0;-1:-1:-1;;;30062:73:0;;16684:2:1;30062:73:0::1;::::0;::::1;16666:21:1::0;16723:2;16703:18;;;16696:30;16762:34;16742:18;;;16735:62;-1:-1:-1;;;16813:18:1;;;16806:36;16859:19;;30062:73:0::1;16482:402:1::0;30062:73:0::1;30146:28;30165:8;30146:18;:28::i;92174:92::-:0;28961:13;:11;:13::i;:::-;92252:5:::1;92247:11;;;;;;;;:::i;:::-;92233;:25:::0;;-1:-1:-1;;92233:25:0::1;::::0;;::::1;::::0;::::1;;;;;;:::i;:::-;;;;;;92174:92:::0;:::o;29240:132::-;29121:7;29148:6;-1:-1:-1;;;;;29148:6:0;8980:10;29304:23;29296:68;;;;-1:-1:-1;;;29296:68:0;;17091:2:1;29296:68:0;;;17073:21:1;;;17110:18;;;17103:30;17169:34;17149:18;;;17142:62;17221:18;;29296:68:0;16889:356:1;64628:282:0;64693:4;64783:13;;64773:7;:23;64730:153;;;;-1:-1:-1;;64834:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;64834:44:0;:49;;64628:282::o;34663:231::-;34741:7;34762:17;34781:18;34803:27;34814:4;34820:9;34803:10;:27::i;:::-;34761:69;;;;34841:18;34853:5;34841:11;:18::i;:::-;-1:-1:-1;34877:9:0;34663:231;-1:-1:-1;;;34663:231:0:o;74247:2454::-;74343:13;;74320:20;74371:13;;;74367:44;;74393:18;;-1:-1:-1;;;74393:18:0;;;;;;;;;;;74367:44;-1:-1:-1;;;;;74899:22:0;;;;;;:18;:22;;;;47932:2;74899:22;;;:71;;74937:32;74925:45;;74899:71;;;75213:31;;;:17;:31;;;;;-1:-1:-1;61913:15:0;;61887:24;61883:46;61482:11;61457:23;61453:41;61450:52;61440:63;;75213:173;;75448:23;;;;75213:31;;74899:22;;75947:25;74899:22;;75800:335;76215:1;76201:12;76197:20;76155:346;76256:3;76247:7;76244:16;76155:346;;76474:7;76464:8;76461:1;76434:25;76431:1;76428;76423:59;76309:1;76296:15;76155:346;;;76159:77;76534:8;76546:1;76534:13;76530:45;;76556:19;;-1:-1:-1;;;76556:19:0;;;;;;;;;;;76530:45;76592:13;:19;-1:-1:-1;69803:185:0;;;:::o;2808:317::-;2923:6;2898:21;:31;;2890:73;;;;-1:-1:-1;;;2890:73:0;;17452:2:1;2890:73:0;;;17434:21:1;17491:2;17471:18;;;17464:30;17530:31;17510:18;;;17503:59;17579:18;;2890:73:0;17250:353:1;2890:73:0;2977:12;2995:9;-1:-1:-1;;;;;2995:14:0;3017:6;2995:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2976:52;;;3047:7;3039:78;;;;-1:-1:-1;;;3039:78:0;;18020:2:1;3039:78:0;;;18002:21:1;18059:2;18039:18;;;18032:30;18098:34;18078:18;;;18071:62;18169:28;18149:18;;;18142:56;18215:19;;3039:78:0;17818:422:1;59248:1275:0;59315:7;59350;59452:13;;59445:4;:20;59441:1015;;;59490:14;59507:23;;;:17;:23;;;;;;;-1:-1:-1;;;59596:24:0;;:29;;59592:845;;60261:113;60268:6;60278:1;60268:11;60261:113;;-1:-1:-1;;;60339:6:0;60321:25;;;;:17;:25;;;;;;60261:113;;59592:845;59467:989;59441:1015;60484:31;;-1:-1:-1;;;60484:31:0;;;;;;;;;;;22410:211;22554:58;;;-1:-1:-1;;;;;206:32:1;;22554:58:0;;;188:51:1;255:18;;;;248:34;;;22554:58:0;;;;;;;;;;161:18:1;;;;22554:58:0;;;;;;;;-1:-1:-1;;;;;22554:58:0;-1:-1:-1;;;22554:58:0;;;22527:86;;22547:5;;22527:19;:86::i;30342:191::-;30416:16;30435:6;;-1:-1:-1;;;;;30452:17:0;;;-1:-1:-1;;;;;;30452:17:0;;;;;;30485:40;;30435:6;;;;;;;30485:40;;30416:16;30485:40;30405:128;30342:191;:::o;45654:248::-;45864:12;;-1:-1:-1;;;;;45844:16:0;;45800:7;45844:16;;;:7;:16;;;;;;45800:7;;45879:15;;45828:32;;:13;:32;:::i;:::-;45827:49;;;;:::i;:::-;:67;;;;:::i;73069:716::-;73253:88;;-1:-1:-1;;;73253:88:0;;73232:4;;-1:-1:-1;;;;;73253:45:0;;;;;:88;;8980:10;;73320:4;;73326:7;;73335:5;;73253:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;73253:88:0;;;;;;;;-1:-1:-1;;73253:88:0;;;;;;;;;;;;:::i;:::-;;;73249:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73536:6;:13;73553:1;73536:18;73532:235;;73582:40;;-1:-1:-1;;;73582:40:0;;;;;;;;;;;73532:235;73725:6;73719:13;73710:6;73706:2;73702:15;73695:38;73249:529;-1:-1:-1;;;;;;73412:64:0;-1:-1:-1;;;73412:64:0;;-1:-1:-1;73069:716:0;;;;;;:::o;86601:2002::-;87078:4;87072:11;;87085:3;87068:21;;87163:17;;;;87859:11;;;87738:5;88025:2;88039;88029:13;;88021:22;87859:11;88008:36;88080:2;88070:13;;87630:731;88099:4;87630:731;;;88290:1;88285:3;88281:11;88274:18;;88341:2;88335:4;88331:13;88327:2;88323:22;88318:3;88310:36;88194:2;88184:13;;87630:731;;;-1:-1:-1;88391:13:0;;;-1:-1:-1;;88506:12:0;;;88566:19;;;88506:12;86601:2002;-1:-1:-1;86601:2002:0:o;32457:1404::-;32538:7;32547:12;32772:9;:16;32792:2;32772:22;32768:1086;;33116:4;33101:20;;33095:27;33166:4;33151:20;;33145:27;33224:4;33209:20;;33203:27;32811:9;33195:36;33267:25;33278:4;33195:36;33095:27;33145;33267:10;:25::i;:::-;33260:32;;;;;;;;;32768:1086;33314:9;:16;33334:2;33314:22;33310:544;;33637:4;33622:20;;33616:27;33688:4;33673:20;;33667:27;33730:23;33741:4;33616:27;33667;33730:10;:23::i;:::-;33723:30;;;;;;;;33310:544;-1:-1:-1;33802:1:0;;-1:-1:-1;33806:35:0;33310:544;32457:1404;;;;;:::o;30728:643::-;30806:20;30797:5;:29;;;;;;;;:::i;:::-;;30793:571;;30728:643;:::o;30793:571::-;30904:29;30895:5;:38;;;;;;;;:::i;:::-;;30891:473;;30950:34;;-1:-1:-1;;;30950:34:0;;19550:2:1;30950:34:0;;;19532:21:1;19589:2;19569:18;;;19562:30;19628:26;19608:18;;;19601:54;19672:18;;30950:34:0;19348:348:1;30891:473:0;31015:35;31006:5;:44;;;;;;;;:::i;:::-;;31002:362;;31067:41;;-1:-1:-1;;;31067:41:0;;19903:2:1;31067:41:0;;;19885:21:1;19942:2;19922:18;;;19915:30;19981:33;19961:18;;;19954:61;20032:18;;31067:41:0;19701:355:1;31002:362:0;31139:30;31130:5;:39;;;;;;;;:::i;:::-;;31126:238;;31186:44;;-1:-1:-1;;;31186:44:0;;20263:2:1;31186:44:0;;;20245:21:1;20302:2;20282:18;;;20275:30;20341:34;20321:18;;;20314:62;-1:-1:-1;;;20392:18:1;;;20385:32;20434:19;;31186:44:0;20061:398:1;31126:238:0;31261:30;31252:5;:39;;;;;;;;:::i;:::-;;31248:116;;31308:44;;-1:-1:-1;;;31308:44:0;;20666:2:1;31308:44:0;;;20648:21:1;20705:2;20685:18;;;20678:30;20744:34;20724:18;;;20717:62;-1:-1:-1;;;20795:18:1;;;20788:32;20837:19;;31308:44:0;20464:398:1;25477:716:0;25901:23;25927:69;25955:4;25927:69;;;;;;;;;;;;;;;;;25935:5;-1:-1:-1;;;;;25927:27:0;;;:69;;;;;:::i;:::-;26011:17;;25901:95;;-1:-1:-1;26011:21:0;26007:179;;26108:10;26097:30;;;;;;;;;;;;:::i;:::-;26089:85;;;;-1:-1:-1;;;26089:85:0;;21319:2:1;26089:85:0;;;21301:21:1;21358:2;21338:18;;;21331:30;21397:34;21377:18;;;21370:62;-1:-1:-1;;;21448:18:1;;;21441:40;21498:19;;26089:85:0;21117:406:1;36115:1632:0;36246:7;;37180:66;37167:79;;37163:163;;;-1:-1:-1;37279:1:0;;-1:-1:-1;37283:30:0;37263:51;;37163:163;37340:1;:7;;37345:2;37340:7;;:18;;;;;37351:1;:7;;37356:2;37351:7;;37340:18;37336:102;;;-1:-1:-1;37391:1:0;;-1:-1:-1;37395:30:0;37375:51;;37336:102;37552:24;;;37535:14;37552:24;;;;;;;;;21755:25:1;;;21828:4;21816:17;;21796:18;;;21789:45;;;;21850:18;;;21843:34;;;21893:18;;;21886:34;;;37552:24:0;;21727:19:1;;37552:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;37552:24:0;;-1:-1:-1;;37552:24:0;;;-1:-1:-1;;;;;;;37591:20:0;;37587:103;;37644:1;37648:29;37628:50;;;;;;;37587:103;37710:6;-1:-1:-1;37718:20:0;;-1:-1:-1;36115:1632:0;;;;;;;;:::o;35157:344::-;35271:7;;-1:-1:-1;;;;;35317:80:0;;35271:7;35424:25;35440:3;35425:18;;;35447:2;35424:25;:::i;:::-;35408:42;;35468:25;35479:4;35485:1;35488;35491;35468:10;:25::i;:::-;35461:32;;;;;;35157:344;;;;;;:::o;4292:229::-;4429:12;4461:52;4483:6;4491:4;4497:1;4500:12;4429;-1:-1:-1;;;;;1842:19:0;;;5699:60;;;;-1:-1:-1;;;5699:60:0;;22540:2:1;5699:60:0;;;22522:21:1;22579:2;22559:18;;;22552:30;22618:31;22598:18;;;22591:59;22667:18;;5699:60:0;22338:353:1;5699:60:0;5773:12;5787:23;5814:6;-1:-1:-1;;;;;5814:11:0;5833:5;5840:4;5814:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5772:73;;;;5863:51;5880:7;5889:10;5901:12;5863:16;:51::i;:::-;5856:58;5412:510;-1:-1:-1;;;;;;;5412:510:0:o;8098:762::-;8248:12;8277:7;8273:580;;;-1:-1:-1;8308:10:0;8301:17;;8273:580;8422:17;;:21;8418:424;;8670:10;8664:17;8731:15;8718:10;8714:2;8710:19;8703:44;8418:424;8813:12;8806:20;;-1:-1:-1;;;8806:20:0;;;;;;;;:::i;293:180:1:-;352:6;405:2;393:9;384:7;380:23;376:32;373:52;;;421:1;418;411:12;373:52;-1:-1:-1;444:23:1;;293:180;-1:-1:-1;293:180:1:o;478:131::-;-1:-1:-1;;;;;;552:32:1;;542:43;;532:71;;599:1;596;589:12;614:245;672:6;725:2;713:9;704:7;700:23;696:32;693:52;;;741:1;738;731:12;693:52;780:9;767:23;799:30;823:5;799:30;:::i;1056:250::-;1141:1;1151:113;1165:6;1162:1;1159:13;1151:113;;;1241:11;;;1235:18;1222:11;;;1215:39;1187:2;1180:10;1151:113;;;-1:-1:-1;;1298:1:1;1280:16;;1273:27;1056:250::o;1311:271::-;1353:3;1391:5;1385:12;1418:6;1413:3;1406:19;1434:76;1503:6;1496:4;1491:3;1487:14;1480:4;1473:5;1469:16;1434:76;:::i;:::-;1564:2;1543:15;-1:-1:-1;;1539:29:1;1530:39;;;;1571:4;1526:50;;1311:271;-1:-1:-1;;1311:271:1:o;1587:220::-;1736:2;1725:9;1718:21;1699:4;1756:45;1797:2;1786:9;1782:18;1774:6;1756:45;:::i;2020:131::-;-1:-1:-1;;;;;2095:31:1;;2085:42;;2075:70;;2141:1;2138;2131:12;2156:315;2224:6;2232;2285:2;2273:9;2264:7;2260:23;2256:32;2253:52;;;2301:1;2298;2291:12;2253:52;2340:9;2327:23;2359:31;2384:5;2359:31;:::i;:::-;2409:5;2461:2;2446:18;;;;2433:32;;-1:-1:-1;;;2156:315:1:o;2476:127::-;2537:10;2532:3;2528:20;2525:1;2518:31;2568:4;2565:1;2558:15;2592:4;2589:1;2582:15;2608:232;2684:1;2677:5;2674:12;2664:143;;2729:10;2724:3;2720:20;2717:1;2710:31;2764:4;2761:1;2754:15;2792:4;2789:1;2782:15;2664:143;2816:18;;2608:232::o;2845:412::-;3070:3;3055:19;;3083:39;3059:9;3104:6;3083:39;:::i;:::-;3158:6;3153:2;3142:9;3138:18;3131:34;3201:6;3196:2;3185:9;3181:18;3174:34;3244:6;3239:2;3228:9;3224:18;3217:34;2845:412;;;;;;;:::o;3262:794::-;3350:6;3358;3366;3374;3427:2;3415:9;3406:7;3402:23;3398:32;3395:52;;;3443:1;3440;3433:12;3395:52;3482:9;3469:23;3501:31;3526:5;3501:31;:::i;:::-;3551:5;-1:-1:-1;3603:2:1;3588:18;;3575:32;;-1:-1:-1;3658:2:1;3643:18;;3630:32;3681:18;3711:14;;;3708:34;;;3738:1;3735;3728:12;3708:34;3776:6;3765:9;3761:22;3751:32;;3821:7;3814:4;3810:2;3806:13;3802:27;3792:55;;3843:1;3840;3833:12;3792:55;3883:2;3870:16;3909:2;3901:6;3898:14;3895:34;;;3925:1;3922;3915:12;3895:34;3970:7;3965:2;3956:6;3952:2;3948:15;3944:24;3941:37;3938:57;;;3991:1;3988;3981:12;3938:57;3262:794;;;;-1:-1:-1;;4022:2:1;4014:11;;-1:-1:-1;;;3262:794:1:o;4243:255::-;4310:6;4363:2;4351:9;4342:7;4338:23;4334:32;4331:52;;;4379:1;4376;4369:12;4331:52;4418:9;4405:23;4437:31;4462:5;4437:31;:::i;4503:456::-;4580:6;4588;4596;4649:2;4637:9;4628:7;4624:23;4620:32;4617:52;;;4665:1;4662;4655:12;4617:52;4704:9;4691:23;4723:31;4748:5;4723:31;:::i;:::-;4773:5;-1:-1:-1;4830:2:1;4815:18;;4802:32;4843:33;4802:32;4843:33;:::i;:::-;4503:456;;4895:7;;-1:-1:-1;;;4949:2:1;4934:18;;;;4921:32;;4503:456::o;4964:402::-;5046:6;5054;5107:2;5095:9;5086:7;5082:23;5078:32;5075:52;;;5123:1;5120;5113:12;5075:52;5162:9;5149:23;5181:31;5206:5;5181:31;:::i;:::-;5231:5;-1:-1:-1;5288:2:1;5273:18;;5260:32;5301:33;5260:32;5301:33;:::i;:::-;5353:7;5343:17;;;4964:402;;;;;:::o;5623:127::-;5684:10;5679:3;5675:20;5672:1;5665:31;5715:4;5712:1;5705:15;5739:4;5736:1;5729:15;5755:632;5820:5;5850:18;5891:2;5883:6;5880:14;5877:40;;;5897:18;;:::i;:::-;5972:2;5966:9;5940:2;6026:15;;-1:-1:-1;;6022:24:1;;;6048:2;6018:33;6014:42;6002:55;;;6072:18;;;6092:22;;;6069:46;6066:72;;;6118:18;;:::i;:::-;6158:10;6154:2;6147:22;6187:6;6178:15;;6217:6;6209;6202:22;6257:3;6248:6;6243:3;6239:16;6236:25;6233:45;;;6274:1;6271;6264:12;6233:45;6324:6;6319:3;6312:4;6304:6;6300:17;6287:44;6379:1;6372:4;6363:6;6355;6351:19;6347:30;6340:41;;;;5755:632;;;;;:::o;6392:451::-;6461:6;6514:2;6502:9;6493:7;6489:23;6485:32;6482:52;;;6530:1;6527;6520:12;6482:52;6570:9;6557:23;6603:18;6595:6;6592:30;6589:50;;;6635:1;6632;6625:12;6589:50;6658:22;;6711:4;6703:13;;6699:27;-1:-1:-1;6689:55:1;;6740:1;6737;6730:12;6689:55;6763:74;6829:7;6824:2;6811:16;6806:2;6802;6798:11;6763:74;:::i;6848:118::-;6934:5;6927:13;6920:21;6913:5;6910:32;6900:60;;6956:1;6953;6946:12;6971:382;7036:6;7044;7097:2;7085:9;7076:7;7072:23;7068:32;7065:52;;;7113:1;7110;7103:12;7065:52;7152:9;7139:23;7171:31;7196:5;7171:31;:::i;:::-;7221:5;-1:-1:-1;7278:2:1;7263:18;;7250:32;7291:30;7250:32;7291:30;:::i;7358:795::-;7453:6;7461;7469;7477;7530:3;7518:9;7509:7;7505:23;7501:33;7498:53;;;7547:1;7544;7537:12;7498:53;7586:9;7573:23;7605:31;7630:5;7605:31;:::i;:::-;7655:5;-1:-1:-1;7712:2:1;7697:18;;7684:32;7725:33;7684:32;7725:33;:::i;:::-;7777:7;-1:-1:-1;7831:2:1;7816:18;;7803:32;;-1:-1:-1;7886:2:1;7871:18;;7858:32;7913:18;7902:30;;7899:50;;;7945:1;7942;7935:12;7899:50;7968:22;;8021:4;8013:13;;8009:27;-1:-1:-1;7999:55:1;;8050:1;8047;8040:12;7999:55;8073:74;8139:7;8134:2;8121:16;8116:2;8112;8108:11;8073:74;:::i;:::-;8063:84;;;7358:795;;;;;;;:::o;8158:198::-;8299:2;8284:18;;8311:39;8288:9;8332:6;8311:39;:::i;9020:380::-;9099:1;9095:12;;;;9142;;;9163:61;;9217:4;9209:6;9205:17;9195:27;;9163:61;9270:2;9262:6;9259:14;9239:18;9236:38;9233:161;;9316:10;9311:3;9307:20;9304:1;9297:31;9351:4;9348:1;9341:15;9379:4;9376:1;9369:15;9233:161;;9020:380;;;:::o;10086:127::-;10147:10;10142:3;10138:20;10135:1;10128:31;10178:4;10175:1;10168:15;10202:4;10199:1;10192:15;10218:125;10283:9;;;10304:10;;;10301:36;;;10317:18;;:::i;10348:168::-;10421:9;;;10452;;10469:15;;;10463:22;;10449:37;10439:71;;10490:18;;:::i;11159:402::-;11361:2;11343:21;;;11400:2;11380:18;;;11373:30;11439:34;11434:2;11419:18;;11412:62;-1:-1:-1;;;11505:2:1;11490:18;;11483:36;11551:3;11536:19;;11159:402::o;11566:407::-;11768:2;11750:21;;;11807:2;11787:18;;;11780:30;11846:34;11841:2;11826:18;;11819:62;-1:-1:-1;;;11912:2:1;11897:18;;11890:41;11963:3;11948:19;;11566:407::o;12265:135::-;12304:3;12325:17;;;12322:43;;12345:18;;:::i;:::-;-1:-1:-1;12392:1:1;12381:13;;12265:135::o;12405:127::-;12466:10;12461:3;12457:20;12454:1;12447:31;12497:4;12494:1;12487:15;12521:4;12518:1;12511:15;12663:545;12765:2;12760:3;12757:11;12754:448;;;12801:1;12826:5;12822:2;12815:17;12871:4;12867:2;12857:19;12941:2;12929:10;12925:19;12922:1;12918:27;12912:4;12908:38;12977:4;12965:10;12962:20;12959:47;;;-1:-1:-1;13000:4:1;12959:47;13055:2;13050:3;13046:12;13043:1;13039:20;13033:4;13029:31;13019:41;;13110:82;13128:2;13121:5;13118:13;13110:82;;;13173:17;;;13154:1;13143:13;13110:82;;13384:1352;13510:3;13504:10;13537:18;13529:6;13526:30;13523:56;;;13559:18;;:::i;:::-;13588:97;13678:6;13638:38;13670:4;13664:11;13638:38;:::i;:::-;13632:4;13588:97;:::i;:::-;13740:4;;13804:2;13793:14;;13821:1;13816:663;;;;14523:1;14540:6;14537:89;;;-1:-1:-1;14592:19:1;;;14586:26;14537:89;-1:-1:-1;;13341:1:1;13337:11;;;13333:24;13329:29;13319:40;13365:1;13361:11;;;13316:57;14639:81;;13786:944;;13816:663;12610:1;12603:14;;;12647:4;12634:18;;-1:-1:-1;;13852:20:1;;;13970:236;13984:7;13981:1;13978:14;13970:236;;;14073:19;;;14067:26;14052:42;;14165:27;;;;14133:1;14121:14;;;;14000:19;;13970:236;;;13974:3;14234:6;14225:7;14222:19;14219:201;;;14295:19;;;14289:26;-1:-1:-1;;14378:1:1;14374:14;;;14390:3;14370:24;14366:37;14362:42;14347:58;14332:74;;14219:201;-1:-1:-1;;;;;14466:1:1;14450:14;;;14446:22;14433:36;;-1:-1:-1;13384:1352:1:o;14741:184::-;14811:6;14864:2;14852:9;14843:7;14839:23;14835:32;14832:52;;;14880:1;14877;14870:12;14832:52;-1:-1:-1;14903:16:1;;14741:184;-1:-1:-1;14741:184:1:o;15290:1187::-;15567:3;15596:1;15629:6;15623:13;15659:36;15685:9;15659:36;:::i;:::-;15714:1;15731:18;;;15758:133;;;;15905:1;15900:356;;;;15724:532;;15758:133;-1:-1:-1;;15791:24:1;;15779:37;;15864:14;;15857:22;15845:35;;15836:45;;;-1:-1:-1;15758:133:1;;15900:356;15931:6;15928:1;15921:17;15961:4;16006:2;16003:1;15993:16;16031:1;16045:165;16059:6;16056:1;16053:13;16045:165;;;16137:14;;16124:11;;;16117:35;16180:16;;;;16074:10;;16045:165;;;16049:3;;;16239:6;16234:3;16230:16;16223:23;;15724:532;;;;;16287:6;16281:13;16303:68;16362:8;16357:3;16350:4;16342:6;16338:17;16303:68;:::i;:::-;-1:-1:-1;;;16393:18:1;;16420:22;;;16469:1;16458:13;;15290:1187;-1:-1:-1;;;;15290:1187:1:o;18245:217::-;18285:1;18311;18301:132;;18355:10;18350:3;18346:20;18343:1;18336:31;18390:4;18387:1;18380:15;18418:4;18415:1;18408:15;18301:132;-1:-1:-1;18447:9:1;;18245:217::o;18467:128::-;18534:9;;;18555:11;;;18552:37;;;18569:18;;:::i;18600:489::-;-1:-1:-1;;;;;18869:15:1;;;18851:34;;18921:15;;18916:2;18901:18;;18894:43;18968:2;18953:18;;18946:34;;;19016:3;19011:2;18996:18;;18989:31;;;18794:4;;19037:46;;19063:19;;19055:6;19037:46;:::i;:::-;19029:54;18600:489;-1:-1:-1;;;;;;18600:489:1:o;19094:249::-;19163:6;19216:2;19204:9;19195:7;19191:23;19187:32;19184:52;;;19232:1;19229;19222:12;19184:52;19264:9;19258:16;19283:30;19307:5;19283:30;:::i;20867:245::-;20934:6;20987:2;20975:9;20966:7;20962:23;20958:32;20955:52;;;21003:1;21000;20993:12;20955:52;21035:9;21029:16;21054:28;21076:5;21054:28;:::i;22696:287::-;22825:3;22863:6;22857:13;22879:66;22938:6;22933:3;22926:4;22918:6;22914:17;22879:66;:::i;:::-;22961:16;;;;;22696:287;-1:-1:-1;;22696:287:1:o

Swarm Source

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