ETH Price: $2,370.02 (-3.76%)

Token

UpsidedownBatz (UdB)
 

Overview

Max Total Supply

7,777 UdB

Holders

1,045

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
7 UdB
0xd73f642793955282bd4c4a08ca0e2d5cc66bf176
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
UpsideDownBatz

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT


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



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @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);
    }
}
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 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: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

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

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

// File: contracts/upsidedownbatz.sol



pragma solidity >=0.8.9 <0.9.0;






contract UpsideDownBatz is ERC721A, Ownable, ReentrancyGuard {
using Strings for uint256;

  string public uriPrefix = 'ipfs://QmS7qjGt1yE3tv76G7JCZU4aDYWgbCnEyKm6pgEZyqwev7/';
  string public uriSuffix = '.json';
  string public hiddenMetadataUri = 'ipfs://QmS7qjGt1yE3tv76G7JCZU4aDYWgbCnEyKm6pgEZyqwev7/';
  
  uint256 public MoneyBatzNeed = 0 ether;
  uint256 public BatzChillingInCave = 7777;
  uint256 public MaxGreedAmount = 7; 

  bool public paused = true;
  bool public revealed = true;
  bool public teamMinted = false;

  constructor(
    string memory _tokenName,
    string memory _tokenSymbol,
    string memory _hiddenMetadataUri
  ) ERC721A(_tokenName, _tokenSymbol) {
    setHiddenMetadataUri(_hiddenMetadataUri);
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= MaxGreedAmount, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= BatzChillingInCave, 'Max supply exceeded!');
    _;
  }
  modifier mintPriceCompliance(uint256 _mintAmount) {
    require(msg.value >= MoneyBatzNeed * _mintAmount, 'Insufficient funds!');
    _;
  }

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

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

  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }

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

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setMoneyBatzNeed(uint256 _MoneyBatzNeed) public onlyOwner {
    MoneyBatzNeed = _MoneyBatzNeed;
  }

  function setMaxGreedAmount(uint256 _MaxGreedAmount) public onlyOwner {
    MaxGreedAmount = _MaxGreedAmount;
  }

  function setBatzChillingInCave(uint256 _BatzChillingInCave) public onlyOwner {
    BatzChillingInCave = _BatzChillingInCave;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

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

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

  function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }
    function teamMint() external onlyOwner{
        require(!teamMinted, "Already Minted");
        teamMinted = false;
        _safeMint(0xf11b62645aFa36C010554253eceFEb6840E8e187, 100);
        }
   }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"string","name":"_hiddenMetadataUri","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":[],"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BatzChillingInCave","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxGreedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MoneyBatzNeed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_BatzChillingInCave","type":"uint256"}],"name":"setBatzChillingInCave","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MaxGreedAmount","type":"uint256"}],"name":"setMaxGreedAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MoneyBatzNeed","type":"uint256"}],"name":"setMoneyBatzNeed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180606001604052806036815260200162003fb960369139600a90816200002e9190620005e6565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9081620000759190620005e6565b5060405180606001604052806036815260200162003fb960369139600c9081620000a09190620005e6565b506000600d55611e61600e556007600f556001601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff0219169083151502179055506000601060026101000a81548160ff0219169083151502179055503480156200010f57600080fd5b5060405162003fef38038062003fef833981810160405281019062000135919062000831565b82828160029081620001489190620005e6565b5080600390816200015a9190620005e6565b506200016b620001b560201b60201c565b60008190555050506200019362000187620001be60201b60201c565b620001c660201b60201c565b6001600981905550620001ac816200028c60201b60201c565b5050506200096d565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200029c620002b160201b60201c565b80600c9081620002ad9190620005e6565b5050565b620002c1620001be60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002e76200034260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000337906200094b565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003ee57607f821691505b602082108103620004045762000403620003a6565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200046e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200042f565b6200047a86836200042f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004c7620004c1620004bb8462000492565b6200049c565b62000492565b9050919050565b6000819050919050565b620004e383620004a6565b620004fb620004f282620004ce565b8484546200043c565b825550505050565b600090565b6200051262000503565b6200051f818484620004d8565b505050565b5b8181101562000547576200053b60008262000508565b60018101905062000525565b5050565b601f821115620005965762000560816200040a565b6200056b846200041f565b810160208510156200057b578190505b620005936200058a856200041f565b83018262000524565b50505b505050565b600082821c905092915050565b6000620005bb600019846008026200059b565b1980831691505092915050565b6000620005d68383620005a8565b9150826002028217905092915050565b620005f1826200036c565b67ffffffffffffffff8111156200060d576200060c62000377565b5b620006198254620003d5565b620006268282856200054b565b600060209050601f8311600181146200065e576000841562000649578287015190505b620006558582620005c8565b865550620006c5565b601f1984166200066e866200040a565b60005b82811015620006985784890151825560018201915060208501945060208101905062000671565b86831015620006b85784890151620006b4601f891682620005a8565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200070782620006eb565b810181811067ffffffffffffffff8211171562000729576200072862000377565b5b80604052505050565b60006200073e620006cd565b90506200074c8282620006fc565b919050565b600067ffffffffffffffff8211156200076f576200076e62000377565b5b6200077a82620006eb565b9050602081019050919050565b60005b83811015620007a75780820151818401526020810190506200078a565b60008484015250505050565b6000620007ca620007c48462000751565b62000732565b905082815260208101848484011115620007e957620007e8620006e6565b5b620007f684828562000787565b509392505050565b600082601f830112620008165762000815620006e1565b5b815162000828848260208601620007b3565b91505092915050565b6000806000606084860312156200084d576200084c620006d7565b5b600084015167ffffffffffffffff8111156200086e576200086d620006dc565b5b6200087c86828701620007fe565b935050602084015167ffffffffffffffff811115620008a0576200089f620006dc565b5b620008ae86828701620007fe565b925050604084015167ffffffffffffffff811115620008d257620008d1620006dc565b5b620008e086828701620007fe565b9150509250925092565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000933602083620008ea565b91506200094082620008fb565b602082019050919050565b60006020820190508181036000830152620009668162000924565b9050919050565b61363c806200097d6000396000f3fe60806040526004361061021a5760003560e01c80636352211e11610123578063a45ba8e7116100ab578063e8b5498d1161006f578063e8b5498d14610778578063e985e9c5146107a3578063efbd73f4146107e0578063f2fde38b14610809578063fa9169df146108325761021a565b8063a45ba8e7146106a7578063b88d4fde146106d2578063ba7a86b8146106fb578063c87b56dd14610712578063e0a808531461074f5761021a565b80638da5cb5b116100f25780638da5cb5b146105e15780638dbc03841461060c57806395d89b4114610637578063a0712d6814610662578063a22cb4651461067e5761021a565b80636352211e1461052557806370a0823114610562578063715018a61461059f57806380d4d5dc146105b65761021a565b80633ccfd60b116101a657806351ba85441161017557806351ba8544146104505780635503a0e81461047b5780635a6d3e52146104a65780635c975abb146104cf57806362b99ad4146104fa5761021a565b80633ccfd60b146103bc57806342842e0e146103d35780634fdd43cb146103fc57806351830227146104255761021a565b806316ba10e0116101ed57806316ba10e0146102ed57806316c38b3c1461031657806318160ddd1461033f57806323b872dd1461036a578063334046b9146103935761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612459565b61085b565b60405161025391906124a1565b60405180910390f35b34801561026857600080fd5b506102716108ed565b60405161027e919061254c565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906125a4565b61097f565b6040516102bb9190612612565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190612659565b6109fe565b005b3480156102f957600080fd5b50610314600480360381019061030f91906127ce565b610b42565b005b34801561032257600080fd5b5061033d60048036038101906103389190612843565b610b5d565b005b34801561034b57600080fd5b50610354610b82565b604051610361919061287f565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c919061289a565b610b99565b005b34801561039f57600080fd5b506103ba60048036038101906103b591906125a4565b610ebb565b005b3480156103c857600080fd5b506103d1610ecd565b005b3480156103df57600080fd5b506103fa60048036038101906103f5919061289a565b610faa565b005b34801561040857600080fd5b50610423600480360381019061041e91906127ce565b610fca565b005b34801561043157600080fd5b5061043a610fe5565b60405161044791906124a1565b60405180910390f35b34801561045c57600080fd5b50610465610ff8565b604051610472919061287f565b60405180910390f35b34801561048757600080fd5b50610490610ffe565b60405161049d919061254c565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c891906125a4565b61108c565b005b3480156104db57600080fd5b506104e461109e565b6040516104f191906124a1565b60405180910390f35b34801561050657600080fd5b5061050f6110b1565b60405161051c919061254c565b60405180910390f35b34801561053157600080fd5b5061054c600480360381019061054791906125a4565b61113f565b6040516105599190612612565b60405180910390f35b34801561056e57600080fd5b50610589600480360381019061058491906128ed565b611151565b604051610596919061287f565b60405180910390f35b3480156105ab57600080fd5b506105b4611209565b005b3480156105c257600080fd5b506105cb61121d565b6040516105d8919061287f565b60405180910390f35b3480156105ed57600080fd5b506105f6611223565b6040516106039190612612565b60405180910390f35b34801561061857600080fd5b5061062161124d565b60405161062e919061287f565b60405180910390f35b34801561064357600080fd5b5061064c611253565b604051610659919061254c565b60405180910390f35b61067c600480360381019061067791906125a4565b6112e5565b005b34801561068a57600080fd5b506106a560048036038101906106a0919061291a565b611445565b005b3480156106b357600080fd5b506106bc6115bc565b6040516106c9919061254c565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f491906129fb565b61164a565b005b34801561070757600080fd5b506107106116bd565b005b34801561071e57600080fd5b50610739600480360381019061073491906125a4565b611751565b604051610746919061254c565b60405180910390f35b34801561075b57600080fd5b5061077660048036038101906107719190612843565b6118a9565b005b34801561078457600080fd5b5061078d6118ce565b60405161079a91906124a1565b60405180910390f35b3480156107af57600080fd5b506107ca60048036038101906107c59190612a7e565b6118e1565b6040516107d791906124a1565b60405180910390f35b3480156107ec57600080fd5b5061080760048036038101906108029190612abe565b611975565b005b34801561081557600080fd5b50610830600480360381019061082b91906128ed565b611a35565b005b34801561083e57600080fd5b50610859600480360381019061085491906125a4565b611ab8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108b657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108fc90612b2d565b80601f016020809104026020016040519081016040528092919081815260200182805461092890612b2d565b80156109755780601f1061094a57610100808354040283529160200191610975565b820191906000526020600020905b81548152906001019060200180831161095857829003601f168201915b5050505050905090565b600061098a82611aca565b6109c0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a098261113f565b90508073ffffffffffffffffffffffffffffffffffffffff16610a2a611b29565b73ffffffffffffffffffffffffffffffffffffffff1614610a8d57610a5681610a51611b29565b6118e1565b610a8c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b4a611b31565b80600b9081610b599190612d0a565b5050565b610b65611b31565b80601060006101000a81548160ff02191690831515021790555050565b6000610b8c611baf565b6001546000540303905090565b6000610ba482611bb8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c0b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c1784611c84565b91509150610c2d8187610c28611b29565b611cab565b610c7957610c4286610c3d611b29565b6118e1565b610c78576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610cdf576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cec8686866001611cef565b8015610cf757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610dc585610da1888887611cf5565b7c020000000000000000000000000000000000000000000000000000000017611d1d565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e4b5760006001850190506000600460008381526020019081526020016000205403610e49576000548114610e48578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610eb38686866001611d48565b505050505050565b610ec3611b31565b80600d8190555050565b610ed5611b31565b600260095403610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1190612e28565b60405180910390fd5b60026009819055506000610f2c611223565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f4f90612e79565b60006040518083038185875af1925050503d8060008114610f8c576040519150601f19603f3d011682016040523d82523d6000602084013e610f91565b606091505b5050905080610f9f57600080fd5b506001600981905550565b610fc58383836040518060200160405280600081525061164a565b505050565b610fd2611b31565b80600c9081610fe19190612d0a565b5050565b601060019054906101000a900460ff1681565b600f5481565b600b805461100b90612b2d565b80601f016020809104026020016040519081016040528092919081815260200182805461103790612b2d565b80156110845780601f1061105957610100808354040283529160200191611084565b820191906000526020600020905b81548152906001019060200180831161106757829003601f168201915b505050505081565b611094611b31565b80600e8190555050565b601060009054906101000a900460ff1681565b600a80546110be90612b2d565b80601f01602080910402602001604051908101604052809291908181526020018280546110ea90612b2d565b80156111375780601f1061110c57610100808354040283529160200191611137565b820191906000526020600020905b81548152906001019060200180831161111a57829003601f168201915b505050505081565b600061114a82611bb8565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111b8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611211611b31565b61121b6000611d4e565b565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b60606003805461126290612b2d565b80601f016020809104026020016040519081016040528092919081815260200182805461128e90612b2d565b80156112db5780601f106112b0576101008083540402835291602001916112db565b820191906000526020600020905b8154815290600101906020018083116112be57829003601f168201915b5050505050905090565b806000811180156112f85750600f548111155b611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e90612eda565b60405180910390fd5b600e5481611343610b82565b61134d9190612f29565b111561138e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138590612fa9565b60405180910390fd5b8180600d5461139d9190612fc9565b3410156113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d69061306f565b60405180910390fd5b601060009054906101000a900460ff161561142f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611426906130db565b60405180910390fd5b61144061143a611e14565b84611e1c565b505050565b61144d611b29565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114b1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114be611b29565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661156b611b29565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115b091906124a1565b60405180910390a35050565b600c80546115c990612b2d565b80601f01602080910402602001604051908101604052809291908181526020018280546115f590612b2d565b80156116425780601f1061161757610100808354040283529160200191611642565b820191906000526020600020905b81548152906001019060200180831161162557829003601f168201915b505050505081565b611655848484610b99565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116b75761168084848484611e3a565b6116b6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6116c5611b31565b601060029054906101000a900460ff1615611715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170c90613147565b60405180910390fd5b6000601060026101000a81548160ff02191690831515021790555061174f73f11b62645afa36c010554253ecefeb6840e8e1876064611e1c565b565b606061175c82611aca565b61179b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611792906131d9565b60405180910390fd5b60001515601060019054906101000a900460ff1615150361184857600c80546117c390612b2d565b80601f01602080910402602001604051908101604052809291908181526020018280546117ef90612b2d565b801561183c5780601f106118115761010080835404028352916020019161183c565b820191906000526020600020905b81548152906001019060200180831161181f57829003601f168201915b505050505090506118a4565b6000611852611f8a565b9050600081511161187257604051806020016040528060008152506118a0565b8061187c8461201c565b600b604051602001611890939291906132b8565b6040516020818303038152906040525b9150505b919050565b6118b1611b31565b80601060016101000a81548160ff02191690831515021790555050565b601060029054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156119885750600f548111155b6119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be90612eda565b60405180910390fd5b600e54816119d3610b82565b6119dd9190612f29565b1115611a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1590612fa9565b60405180910390fd5b611a26611b31565b611a308284611e1c565b505050565b611a3d611b31565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa39061335b565b60405180910390fd5b611ab581611d4e565b50565b611ac0611b31565b80600f8190555050565b600081611ad5611baf565b11158015611ae4575060005482105b8015611b22575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611b39611e14565b73ffffffffffffffffffffffffffffffffffffffff16611b57611223565b73ffffffffffffffffffffffffffffffffffffffff1614611bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba4906133c7565b60405180910390fd5b565b60006001905090565b60008082905080611bc7611baf565b11611c4d57600054811015611c4c5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611c4a575b60008103611c40576004600083600190039350838152602001908152602001600020549050611c16565b8092505050611c7f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d0c86868461217c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b611e36828260405180602001604052806000815250612185565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e60611b29565b8786866040518563ffffffff1660e01b8152600401611e82949392919061343c565b6020604051808303816000875af1925050508015611ebe57506040513d601f19601f82011682018060405250810190611ebb919061349d565b60015b611f37573d8060008114611eee576040519150601f19603f3d011682016040523d82523d6000602084013e611ef3565b606091505b506000815103611f2f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611f9990612b2d565b80601f0160208091040260200160405190810160405280929190818152602001828054611fc590612b2d565b80156120125780601f10611fe757610100808354040283529160200191612012565b820191906000526020600020905b815481529060010190602001808311611ff557829003601f168201915b5050505050905090565b606060008203612063576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612177565b600082905060005b6000821461209557808061207e906134ca565b915050600a8261208e9190613541565b915061206b565b60008167ffffffffffffffff8111156120b1576120b06126a3565b5b6040519080825280601f01601f1916602001820160405280156120e35781602001600182028036833780820191505090505b5090505b60008514612170576001826120fc9190613572565b9150600a8561210b91906135a6565b60306121179190612f29565b60f81b81838151811061212d5761212c6135d7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121699190613541565b94506120e7565b8093505050505b919050565b60009392505050565b61218f8383612222565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461221d57600080549050600083820390505b6121cf6000868380600101945086611e3a565b612205576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121bc57816000541461221a57600080fd5b50505b505050565b60008054905060008203612262576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61226f6000848385611cef565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506122e6836122d76000866000611cf5565b6122e0856123dd565b17611d1d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461238757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061234c565b50600082036123c2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506123d86000848385611d48565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61243681612401565b811461244157600080fd5b50565b6000813590506124538161242d565b92915050565b60006020828403121561246f5761246e6123f7565b5b600061247d84828501612444565b91505092915050565b60008115159050919050565b61249b81612486565b82525050565b60006020820190506124b66000830184612492565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156124f65780820151818401526020810190506124db565b60008484015250505050565b6000601f19601f8301169050919050565b600061251e826124bc565b61252881856124c7565b93506125388185602086016124d8565b61254181612502565b840191505092915050565b600060208201905081810360008301526125668184612513565b905092915050565b6000819050919050565b6125818161256e565b811461258c57600080fd5b50565b60008135905061259e81612578565b92915050565b6000602082840312156125ba576125b96123f7565b5b60006125c88482850161258f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125fc826125d1565b9050919050565b61260c816125f1565b82525050565b60006020820190506126276000830184612603565b92915050565b612636816125f1565b811461264157600080fd5b50565b6000813590506126538161262d565b92915050565b600080604083850312156126705761266f6123f7565b5b600061267e85828601612644565b925050602061268f8582860161258f565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126db82612502565b810181811067ffffffffffffffff821117156126fa576126f96126a3565b5b80604052505050565b600061270d6123ed565b905061271982826126d2565b919050565b600067ffffffffffffffff821115612739576127386126a3565b5b61274282612502565b9050602081019050919050565b82818337600083830152505050565b600061277161276c8461271e565b612703565b90508281526020810184848401111561278d5761278c61269e565b5b61279884828561274f565b509392505050565b600082601f8301126127b5576127b4612699565b5b81356127c584826020860161275e565b91505092915050565b6000602082840312156127e4576127e36123f7565b5b600082013567ffffffffffffffff811115612802576128016123fc565b5b61280e848285016127a0565b91505092915050565b61282081612486565b811461282b57600080fd5b50565b60008135905061283d81612817565b92915050565b600060208284031215612859576128586123f7565b5b60006128678482850161282e565b91505092915050565b6128798161256e565b82525050565b60006020820190506128946000830184612870565b92915050565b6000806000606084860312156128b3576128b26123f7565b5b60006128c186828701612644565b93505060206128d286828701612644565b92505060406128e38682870161258f565b9150509250925092565b600060208284031215612903576129026123f7565b5b600061291184828501612644565b91505092915050565b60008060408385031215612931576129306123f7565b5b600061293f85828601612644565b92505060206129508582860161282e565b9150509250929050565b600067ffffffffffffffff821115612975576129746126a3565b5b61297e82612502565b9050602081019050919050565b600061299e6129998461295a565b612703565b9050828152602081018484840111156129ba576129b961269e565b5b6129c584828561274f565b509392505050565b600082601f8301126129e2576129e1612699565b5b81356129f284826020860161298b565b91505092915050565b60008060008060808587031215612a1557612a146123f7565b5b6000612a2387828801612644565b9450506020612a3487828801612644565b9350506040612a458782880161258f565b925050606085013567ffffffffffffffff811115612a6657612a656123fc565b5b612a72878288016129cd565b91505092959194509250565b60008060408385031215612a9557612a946123f7565b5b6000612aa385828601612644565b9250506020612ab485828601612644565b9150509250929050565b60008060408385031215612ad557612ad46123f7565b5b6000612ae38582860161258f565b9250506020612af485828601612644565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b4557607f821691505b602082108103612b5857612b57612afe565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612bc07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612b83565b612bca8683612b83565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612c07612c02612bfd8461256e565b612be2565b61256e565b9050919050565b6000819050919050565b612c2183612bec565b612c35612c2d82612c0e565b848454612b90565b825550505050565b600090565b612c4a612c3d565b612c55818484612c18565b505050565b5b81811015612c7957612c6e600082612c42565b600181019050612c5b565b5050565b601f821115612cbe57612c8f81612b5e565b612c9884612b73565b81016020851015612ca7578190505b612cbb612cb385612b73565b830182612c5a565b50505b505050565b600082821c905092915050565b6000612ce160001984600802612cc3565b1980831691505092915050565b6000612cfa8383612cd0565b9150826002028217905092915050565b612d13826124bc565b67ffffffffffffffff811115612d2c57612d2b6126a3565b5b612d368254612b2d565b612d41828285612c7d565b600060209050601f831160018114612d745760008415612d62578287015190505b612d6c8582612cee565b865550612dd4565b601f198416612d8286612b5e565b60005b82811015612daa57848901518255600182019150602085019450602081019050612d85565b86831015612dc75784890151612dc3601f891682612cd0565b8355505b6001600288020188555050505b505050505050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612e12601f836124c7565b9150612e1d82612ddc565b602082019050919050565b60006020820190508181036000830152612e4181612e05565b9050919050565b600081905092915050565b50565b6000612e63600083612e48565b9150612e6e82612e53565b600082019050919050565b6000612e8482612e56565b9150819050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000612ec46014836124c7565b9150612ecf82612e8e565b602082019050919050565b60006020820190508181036000830152612ef381612eb7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f348261256e565b9150612f3f8361256e565b9250828201905080821115612f5757612f56612efa565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000612f936014836124c7565b9150612f9e82612f5d565b602082019050919050565b60006020820190508181036000830152612fc281612f86565b9050919050565b6000612fd48261256e565b9150612fdf8361256e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561301857613017612efa565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006130596013836124c7565b915061306482613023565b602082019050919050565b600060208201905081810360008301526130888161304c565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006130c56017836124c7565b91506130d08261308f565b602082019050919050565b600060208201905081810360008301526130f4816130b8565b9050919050565b7f416c7265616479204d696e746564000000000000000000000000000000000000600082015250565b6000613131600e836124c7565b915061313c826130fb565b602082019050919050565b6000602082019050818103600083015261316081613124565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006131c3602f836124c7565b91506131ce82613167565b604082019050919050565b600060208201905081810360008301526131f2816131b6565b9050919050565b600081905092915050565b600061320f826124bc565b61321981856131f9565b93506132298185602086016124d8565b80840191505092915050565b6000815461324281612b2d565b61324c81866131f9565b94506001821660008114613267576001811461327c576132af565b60ff19831686528115158202860193506132af565b61328585612b5e565b60005b838110156132a757815481890152600182019150602081019050613288565b838801955050505b50505092915050565b60006132c48286613204565b91506132d08285613204565b91506132dc8284613235565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006133456026836124c7565b9150613350826132e9565b604082019050919050565b6000602082019050818103600083015261337481613338565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133b16020836124c7565b91506133bc8261337b565b602082019050919050565b600060208201905081810360008301526133e0816133a4565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061340e826133e7565b61341881856133f2565b93506134288185602086016124d8565b61343181612502565b840191505092915050565b60006080820190506134516000830187612603565b61345e6020830186612603565b61346b6040830185612870565b818103606083015261347d8184613403565b905095945050505050565b6000815190506134978161242d565b92915050565b6000602082840312156134b3576134b26123f7565b5b60006134c184828501613488565b91505092915050565b60006134d58261256e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361350757613506612efa565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061354c8261256e565b91506135578361256e565b92508261356757613566613512565b5b828204905092915050565b600061357d8261256e565b91506135888361256e565b92508282039050818111156135a05761359f612efa565b5b92915050565b60006135b18261256e565b91506135bc8361256e565b9250826135cc576135cb613512565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212203c7ab1684dc3db7e5e78a8cb4ca67c75e18c080df66271036f410e090aaa358b64736f6c63430008100033697066733a2f2f516d5337716a4774317945337476373647374a435a5534614459576762436e45794b6d367067455a7971776576372f000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e557073696465646f776e4261747a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000355644200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5337716a4774317945337476373647374a435a5534614459576762436e45794b6d367067455a7971776576372f00000000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80636352211e11610123578063a45ba8e7116100ab578063e8b5498d1161006f578063e8b5498d14610778578063e985e9c5146107a3578063efbd73f4146107e0578063f2fde38b14610809578063fa9169df146108325761021a565b8063a45ba8e7146106a7578063b88d4fde146106d2578063ba7a86b8146106fb578063c87b56dd14610712578063e0a808531461074f5761021a565b80638da5cb5b116100f25780638da5cb5b146105e15780638dbc03841461060c57806395d89b4114610637578063a0712d6814610662578063a22cb4651461067e5761021a565b80636352211e1461052557806370a0823114610562578063715018a61461059f57806380d4d5dc146105b65761021a565b80633ccfd60b116101a657806351ba85441161017557806351ba8544146104505780635503a0e81461047b5780635a6d3e52146104a65780635c975abb146104cf57806362b99ad4146104fa5761021a565b80633ccfd60b146103bc57806342842e0e146103d35780634fdd43cb146103fc57806351830227146104255761021a565b806316ba10e0116101ed57806316ba10e0146102ed57806316c38b3c1461031657806318160ddd1461033f57806323b872dd1461036a578063334046b9146103935761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612459565b61085b565b60405161025391906124a1565b60405180910390f35b34801561026857600080fd5b506102716108ed565b60405161027e919061254c565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906125a4565b61097f565b6040516102bb9190612612565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190612659565b6109fe565b005b3480156102f957600080fd5b50610314600480360381019061030f91906127ce565b610b42565b005b34801561032257600080fd5b5061033d60048036038101906103389190612843565b610b5d565b005b34801561034b57600080fd5b50610354610b82565b604051610361919061287f565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c919061289a565b610b99565b005b34801561039f57600080fd5b506103ba60048036038101906103b591906125a4565b610ebb565b005b3480156103c857600080fd5b506103d1610ecd565b005b3480156103df57600080fd5b506103fa60048036038101906103f5919061289a565b610faa565b005b34801561040857600080fd5b50610423600480360381019061041e91906127ce565b610fca565b005b34801561043157600080fd5b5061043a610fe5565b60405161044791906124a1565b60405180910390f35b34801561045c57600080fd5b50610465610ff8565b604051610472919061287f565b60405180910390f35b34801561048757600080fd5b50610490610ffe565b60405161049d919061254c565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c891906125a4565b61108c565b005b3480156104db57600080fd5b506104e461109e565b6040516104f191906124a1565b60405180910390f35b34801561050657600080fd5b5061050f6110b1565b60405161051c919061254c565b60405180910390f35b34801561053157600080fd5b5061054c600480360381019061054791906125a4565b61113f565b6040516105599190612612565b60405180910390f35b34801561056e57600080fd5b50610589600480360381019061058491906128ed565b611151565b604051610596919061287f565b60405180910390f35b3480156105ab57600080fd5b506105b4611209565b005b3480156105c257600080fd5b506105cb61121d565b6040516105d8919061287f565b60405180910390f35b3480156105ed57600080fd5b506105f6611223565b6040516106039190612612565b60405180910390f35b34801561061857600080fd5b5061062161124d565b60405161062e919061287f565b60405180910390f35b34801561064357600080fd5b5061064c611253565b604051610659919061254c565b60405180910390f35b61067c600480360381019061067791906125a4565b6112e5565b005b34801561068a57600080fd5b506106a560048036038101906106a0919061291a565b611445565b005b3480156106b357600080fd5b506106bc6115bc565b6040516106c9919061254c565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f491906129fb565b61164a565b005b34801561070757600080fd5b506107106116bd565b005b34801561071e57600080fd5b50610739600480360381019061073491906125a4565b611751565b604051610746919061254c565b60405180910390f35b34801561075b57600080fd5b5061077660048036038101906107719190612843565b6118a9565b005b34801561078457600080fd5b5061078d6118ce565b60405161079a91906124a1565b60405180910390f35b3480156107af57600080fd5b506107ca60048036038101906107c59190612a7e565b6118e1565b6040516107d791906124a1565b60405180910390f35b3480156107ec57600080fd5b5061080760048036038101906108029190612abe565b611975565b005b34801561081557600080fd5b50610830600480360381019061082b91906128ed565b611a35565b005b34801561083e57600080fd5b50610859600480360381019061085491906125a4565b611ab8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108b657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108fc90612b2d565b80601f016020809104026020016040519081016040528092919081815260200182805461092890612b2d565b80156109755780601f1061094a57610100808354040283529160200191610975565b820191906000526020600020905b81548152906001019060200180831161095857829003601f168201915b5050505050905090565b600061098a82611aca565b6109c0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a098261113f565b90508073ffffffffffffffffffffffffffffffffffffffff16610a2a611b29565b73ffffffffffffffffffffffffffffffffffffffff1614610a8d57610a5681610a51611b29565b6118e1565b610a8c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b4a611b31565b80600b9081610b599190612d0a565b5050565b610b65611b31565b80601060006101000a81548160ff02191690831515021790555050565b6000610b8c611baf565b6001546000540303905090565b6000610ba482611bb8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c0b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c1784611c84565b91509150610c2d8187610c28611b29565b611cab565b610c7957610c4286610c3d611b29565b6118e1565b610c78576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610cdf576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cec8686866001611cef565b8015610cf757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610dc585610da1888887611cf5565b7c020000000000000000000000000000000000000000000000000000000017611d1d565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e4b5760006001850190506000600460008381526020019081526020016000205403610e49576000548114610e48578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610eb38686866001611d48565b505050505050565b610ec3611b31565b80600d8190555050565b610ed5611b31565b600260095403610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1190612e28565b60405180910390fd5b60026009819055506000610f2c611223565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f4f90612e79565b60006040518083038185875af1925050503d8060008114610f8c576040519150601f19603f3d011682016040523d82523d6000602084013e610f91565b606091505b5050905080610f9f57600080fd5b506001600981905550565b610fc58383836040518060200160405280600081525061164a565b505050565b610fd2611b31565b80600c9081610fe19190612d0a565b5050565b601060019054906101000a900460ff1681565b600f5481565b600b805461100b90612b2d565b80601f016020809104026020016040519081016040528092919081815260200182805461103790612b2d565b80156110845780601f1061105957610100808354040283529160200191611084565b820191906000526020600020905b81548152906001019060200180831161106757829003601f168201915b505050505081565b611094611b31565b80600e8190555050565b601060009054906101000a900460ff1681565b600a80546110be90612b2d565b80601f01602080910402602001604051908101604052809291908181526020018280546110ea90612b2d565b80156111375780601f1061110c57610100808354040283529160200191611137565b820191906000526020600020905b81548152906001019060200180831161111a57829003601f168201915b505050505081565b600061114a82611bb8565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111b8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611211611b31565b61121b6000611d4e565b565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b60606003805461126290612b2d565b80601f016020809104026020016040519081016040528092919081815260200182805461128e90612b2d565b80156112db5780601f106112b0576101008083540402835291602001916112db565b820191906000526020600020905b8154815290600101906020018083116112be57829003601f168201915b5050505050905090565b806000811180156112f85750600f548111155b611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e90612eda565b60405180910390fd5b600e5481611343610b82565b61134d9190612f29565b111561138e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138590612fa9565b60405180910390fd5b8180600d5461139d9190612fc9565b3410156113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d69061306f565b60405180910390fd5b601060009054906101000a900460ff161561142f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611426906130db565b60405180910390fd5b61144061143a611e14565b84611e1c565b505050565b61144d611b29565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114b1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114be611b29565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661156b611b29565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115b091906124a1565b60405180910390a35050565b600c80546115c990612b2d565b80601f01602080910402602001604051908101604052809291908181526020018280546115f590612b2d565b80156116425780601f1061161757610100808354040283529160200191611642565b820191906000526020600020905b81548152906001019060200180831161162557829003601f168201915b505050505081565b611655848484610b99565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116b75761168084848484611e3a565b6116b6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6116c5611b31565b601060029054906101000a900460ff1615611715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170c90613147565b60405180910390fd5b6000601060026101000a81548160ff02191690831515021790555061174f73f11b62645afa36c010554253ecefeb6840e8e1876064611e1c565b565b606061175c82611aca565b61179b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611792906131d9565b60405180910390fd5b60001515601060019054906101000a900460ff1615150361184857600c80546117c390612b2d565b80601f01602080910402602001604051908101604052809291908181526020018280546117ef90612b2d565b801561183c5780601f106118115761010080835404028352916020019161183c565b820191906000526020600020905b81548152906001019060200180831161181f57829003601f168201915b505050505090506118a4565b6000611852611f8a565b9050600081511161187257604051806020016040528060008152506118a0565b8061187c8461201c565b600b604051602001611890939291906132b8565b6040516020818303038152906040525b9150505b919050565b6118b1611b31565b80601060016101000a81548160ff02191690831515021790555050565b601060029054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156119885750600f548111155b6119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be90612eda565b60405180910390fd5b600e54816119d3610b82565b6119dd9190612f29565b1115611a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1590612fa9565b60405180910390fd5b611a26611b31565b611a308284611e1c565b505050565b611a3d611b31565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa39061335b565b60405180910390fd5b611ab581611d4e565b50565b611ac0611b31565b80600f8190555050565b600081611ad5611baf565b11158015611ae4575060005482105b8015611b22575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611b39611e14565b73ffffffffffffffffffffffffffffffffffffffff16611b57611223565b73ffffffffffffffffffffffffffffffffffffffff1614611bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba4906133c7565b60405180910390fd5b565b60006001905090565b60008082905080611bc7611baf565b11611c4d57600054811015611c4c5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611c4a575b60008103611c40576004600083600190039350838152602001908152602001600020549050611c16565b8092505050611c7f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d0c86868461217c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b611e36828260405180602001604052806000815250612185565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e60611b29565b8786866040518563ffffffff1660e01b8152600401611e82949392919061343c565b6020604051808303816000875af1925050508015611ebe57506040513d601f19601f82011682018060405250810190611ebb919061349d565b60015b611f37573d8060008114611eee576040519150601f19603f3d011682016040523d82523d6000602084013e611ef3565b606091505b506000815103611f2f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611f9990612b2d565b80601f0160208091040260200160405190810160405280929190818152602001828054611fc590612b2d565b80156120125780601f10611fe757610100808354040283529160200191612012565b820191906000526020600020905b815481529060010190602001808311611ff557829003601f168201915b5050505050905090565b606060008203612063576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612177565b600082905060005b6000821461209557808061207e906134ca565b915050600a8261208e9190613541565b915061206b565b60008167ffffffffffffffff8111156120b1576120b06126a3565b5b6040519080825280601f01601f1916602001820160405280156120e35781602001600182028036833780820191505090505b5090505b60008514612170576001826120fc9190613572565b9150600a8561210b91906135a6565b60306121179190612f29565b60f81b81838151811061212d5761212c6135d7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121699190613541565b94506120e7565b8093505050505b919050565b60009392505050565b61218f8383612222565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461221d57600080549050600083820390505b6121cf6000868380600101945086611e3a565b612205576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121bc57816000541461221a57600080fd5b50505b505050565b60008054905060008203612262576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61226f6000848385611cef565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506122e6836122d76000866000611cf5565b6122e0856123dd565b17611d1d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461238757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061234c565b50600082036123c2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506123d86000848385611d48565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61243681612401565b811461244157600080fd5b50565b6000813590506124538161242d565b92915050565b60006020828403121561246f5761246e6123f7565b5b600061247d84828501612444565b91505092915050565b60008115159050919050565b61249b81612486565b82525050565b60006020820190506124b66000830184612492565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156124f65780820151818401526020810190506124db565b60008484015250505050565b6000601f19601f8301169050919050565b600061251e826124bc565b61252881856124c7565b93506125388185602086016124d8565b61254181612502565b840191505092915050565b600060208201905081810360008301526125668184612513565b905092915050565b6000819050919050565b6125818161256e565b811461258c57600080fd5b50565b60008135905061259e81612578565b92915050565b6000602082840312156125ba576125b96123f7565b5b60006125c88482850161258f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125fc826125d1565b9050919050565b61260c816125f1565b82525050565b60006020820190506126276000830184612603565b92915050565b612636816125f1565b811461264157600080fd5b50565b6000813590506126538161262d565b92915050565b600080604083850312156126705761266f6123f7565b5b600061267e85828601612644565b925050602061268f8582860161258f565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126db82612502565b810181811067ffffffffffffffff821117156126fa576126f96126a3565b5b80604052505050565b600061270d6123ed565b905061271982826126d2565b919050565b600067ffffffffffffffff821115612739576127386126a3565b5b61274282612502565b9050602081019050919050565b82818337600083830152505050565b600061277161276c8461271e565b612703565b90508281526020810184848401111561278d5761278c61269e565b5b61279884828561274f565b509392505050565b600082601f8301126127b5576127b4612699565b5b81356127c584826020860161275e565b91505092915050565b6000602082840312156127e4576127e36123f7565b5b600082013567ffffffffffffffff811115612802576128016123fc565b5b61280e848285016127a0565b91505092915050565b61282081612486565b811461282b57600080fd5b50565b60008135905061283d81612817565b92915050565b600060208284031215612859576128586123f7565b5b60006128678482850161282e565b91505092915050565b6128798161256e565b82525050565b60006020820190506128946000830184612870565b92915050565b6000806000606084860312156128b3576128b26123f7565b5b60006128c186828701612644565b93505060206128d286828701612644565b92505060406128e38682870161258f565b9150509250925092565b600060208284031215612903576129026123f7565b5b600061291184828501612644565b91505092915050565b60008060408385031215612931576129306123f7565b5b600061293f85828601612644565b92505060206129508582860161282e565b9150509250929050565b600067ffffffffffffffff821115612975576129746126a3565b5b61297e82612502565b9050602081019050919050565b600061299e6129998461295a565b612703565b9050828152602081018484840111156129ba576129b961269e565b5b6129c584828561274f565b509392505050565b600082601f8301126129e2576129e1612699565b5b81356129f284826020860161298b565b91505092915050565b60008060008060808587031215612a1557612a146123f7565b5b6000612a2387828801612644565b9450506020612a3487828801612644565b9350506040612a458782880161258f565b925050606085013567ffffffffffffffff811115612a6657612a656123fc565b5b612a72878288016129cd565b91505092959194509250565b60008060408385031215612a9557612a946123f7565b5b6000612aa385828601612644565b9250506020612ab485828601612644565b9150509250929050565b60008060408385031215612ad557612ad46123f7565b5b6000612ae38582860161258f565b9250506020612af485828601612644565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b4557607f821691505b602082108103612b5857612b57612afe565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612bc07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612b83565b612bca8683612b83565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612c07612c02612bfd8461256e565b612be2565b61256e565b9050919050565b6000819050919050565b612c2183612bec565b612c35612c2d82612c0e565b848454612b90565b825550505050565b600090565b612c4a612c3d565b612c55818484612c18565b505050565b5b81811015612c7957612c6e600082612c42565b600181019050612c5b565b5050565b601f821115612cbe57612c8f81612b5e565b612c9884612b73565b81016020851015612ca7578190505b612cbb612cb385612b73565b830182612c5a565b50505b505050565b600082821c905092915050565b6000612ce160001984600802612cc3565b1980831691505092915050565b6000612cfa8383612cd0565b9150826002028217905092915050565b612d13826124bc565b67ffffffffffffffff811115612d2c57612d2b6126a3565b5b612d368254612b2d565b612d41828285612c7d565b600060209050601f831160018114612d745760008415612d62578287015190505b612d6c8582612cee565b865550612dd4565b601f198416612d8286612b5e565b60005b82811015612daa57848901518255600182019150602085019450602081019050612d85565b86831015612dc75784890151612dc3601f891682612cd0565b8355505b6001600288020188555050505b505050505050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612e12601f836124c7565b9150612e1d82612ddc565b602082019050919050565b60006020820190508181036000830152612e4181612e05565b9050919050565b600081905092915050565b50565b6000612e63600083612e48565b9150612e6e82612e53565b600082019050919050565b6000612e8482612e56565b9150819050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000612ec46014836124c7565b9150612ecf82612e8e565b602082019050919050565b60006020820190508181036000830152612ef381612eb7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f348261256e565b9150612f3f8361256e565b9250828201905080821115612f5757612f56612efa565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000612f936014836124c7565b9150612f9e82612f5d565b602082019050919050565b60006020820190508181036000830152612fc281612f86565b9050919050565b6000612fd48261256e565b9150612fdf8361256e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561301857613017612efa565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006130596013836124c7565b915061306482613023565b602082019050919050565b600060208201905081810360008301526130888161304c565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006130c56017836124c7565b91506130d08261308f565b602082019050919050565b600060208201905081810360008301526130f4816130b8565b9050919050565b7f416c7265616479204d696e746564000000000000000000000000000000000000600082015250565b6000613131600e836124c7565b915061313c826130fb565b602082019050919050565b6000602082019050818103600083015261316081613124565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006131c3602f836124c7565b91506131ce82613167565b604082019050919050565b600060208201905081810360008301526131f2816131b6565b9050919050565b600081905092915050565b600061320f826124bc565b61321981856131f9565b93506132298185602086016124d8565b80840191505092915050565b6000815461324281612b2d565b61324c81866131f9565b94506001821660008114613267576001811461327c576132af565b60ff19831686528115158202860193506132af565b61328585612b5e565b60005b838110156132a757815481890152600182019150602081019050613288565b838801955050505b50505092915050565b60006132c48286613204565b91506132d08285613204565b91506132dc8284613235565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006133456026836124c7565b9150613350826132e9565b604082019050919050565b6000602082019050818103600083015261337481613338565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133b16020836124c7565b91506133bc8261337b565b602082019050919050565b600060208201905081810360008301526133e0816133a4565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061340e826133e7565b61341881856133f2565b93506134288185602086016124d8565b61343181612502565b840191505092915050565b60006080820190506134516000830187612603565b61345e6020830186612603565b61346b6040830185612870565b818103606083015261347d8184613403565b905095945050505050565b6000815190506134978161242d565b92915050565b6000602082840312156134b3576134b26123f7565b5b60006134c184828501613488565b91505092915050565b60006134d58261256e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361350757613506612efa565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061354c8261256e565b91506135578361256e565b92508261356757613566613512565b5b828204905092915050565b600061357d8261256e565b91506135888361256e565b92508282039050818111156135a05761359f612efa565b5b92915050565b60006135b18261256e565b91506135bc8361256e565b9250826135cc576135cb613512565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212203c7ab1684dc3db7e5e78a8cb4ca67c75e18c080df66271036f410e090aaa358b64736f6c63430008100033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e557073696465646f776e4261747a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000355644200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5337716a4774317945337476373647374a435a5534614459576762436e45794b6d367067455a7971776576372f00000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): UpsidedownBatz
Arg [1] : _tokenSymbol (string): UdB
Arg [2] : _hiddenMetadataUri (string): ipfs://QmS7qjGt1yE3tv76G7JCZU4aDYWgbCnEyKm6pgEZyqwev7/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [4] : 557073696465646f776e4261747a000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 5564420000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d5337716a4774317945337476373647374a435a55346144
Arg [9] : 59576762436e45794b6d367067455a7971776576372f00000000000000000000


Deployed Bytecode Sourcemap

59373:3338:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26892:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27794:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34277:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33718:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62053:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62159:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23545:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37984:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61543:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62242:150;;;;;;;;;;;;;:::i;:::-;;40897:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61915:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59852:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59781:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59556;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61779:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59822:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59469:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29187:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24729:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7640:103;;;;;;;;;;;;;:::i;:::-;;59693:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6992:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59736:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27970:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60523:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34835:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59594:90;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41680:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62508:197;;;;;;;;;;;;;:::i;:::-;;61005:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61456:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59884:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35300:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60743:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7898:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61659:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26892:639;26977:4;27316:10;27301:25;;:11;:25;;;;:102;;;;27393:10;27378:25;;:11;:25;;;;27301:102;:179;;;;27470:10;27455:25;;:11;:25;;;;27301:179;27281:199;;26892:639;;;:::o;27794:100::-;27848:13;27881:5;27874:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27794:100;:::o;34277:218::-;34353:7;34378:16;34386:7;34378;:16::i;:::-;34373:64;;34403:34;;;;;;;;;;;;;;34373:64;34457:15;:24;34473:7;34457:24;;;;;;;;;;;:30;;;;;;;;;;;;34450:37;;34277:218;;;:::o;33718:400::-;33799:13;33815:16;33823:7;33815;:16::i;:::-;33799:32;;33871:5;33848:28;;:19;:17;:19::i;:::-;:28;;;33844:175;;33896:44;33913:5;33920:19;:17;:19::i;:::-;33896:16;:44::i;:::-;33891:128;;33968:35;;;;;;;;;;;;;;33891:128;33844:175;34064:2;34031:15;:24;34047:7;34031:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34102:7;34098:2;34082:28;;34091:5;34082:28;;;;;;;;;;;;33788:330;33718:400;;:::o;62053:100::-;6878:13;:11;:13::i;:::-;62137:10:::1;62125:9;:22;;;;;;:::i;:::-;;62053:100:::0;:::o;62159:77::-;6878:13;:11;:13::i;:::-;62224:6:::1;62215;;:15;;;;;;;;;;;;;;;;;;62159:77:::0;:::o;23545:323::-;23606:7;23834:15;:13;:15::i;:::-;23819:12;;23803:13;;:28;:46;23796:53;;23545:323;:::o;37984:2817::-;38118:27;38148;38167:7;38148:18;:27::i;:::-;38118:57;;38233:4;38192:45;;38208:19;38192:45;;;38188:86;;38246:28;;;;;;;;;;;;;;38188:86;38288:27;38317:23;38344:35;38371:7;38344:26;:35::i;:::-;38287:92;;;;38479:68;38504:15;38521:4;38527:19;:17;:19::i;:::-;38479:24;:68::i;:::-;38474:180;;38567:43;38584:4;38590:19;:17;:19::i;:::-;38567:16;:43::i;:::-;38562:92;;38619:35;;;;;;;;;;;;;;38562:92;38474:180;38685:1;38671:16;;:2;:16;;;38667:52;;38696:23;;;;;;;;;;;;;;38667:52;38732:43;38754:4;38760:2;38764:7;38773:1;38732:21;:43::i;:::-;38868:15;38865:160;;;39008:1;38987:19;38980:30;38865:160;39405:18;:24;39424:4;39405:24;;;;;;;;;;;;;;;;39403:26;;;;;;;;;;;;39474:18;:22;39493:2;39474:22;;;;;;;;;;;;;;;;39472:24;;;;;;;;;;;39796:146;39833:2;39882:45;39897:4;39903:2;39907:19;39882:14;:45::i;:::-;19944:8;39854:73;39796:18;:146::i;:::-;39767:17;:26;39785:7;39767:26;;;;;;;;;;;:175;;;;40113:1;19944:8;40062:19;:47;:52;40058:627;;40135:19;40167:1;40157:7;:11;40135:33;;40324:1;40290:17;:30;40308:11;40290:30;;;;;;;;;;;;:35;40286:384;;40428:13;;40413:11;:28;40409:242;;40608:19;40575:17;:30;40593:11;40575:30;;;;;;;;;;;:52;;;;40409:242;40286:384;40116:569;40058:627;40732:7;40728:2;40713:27;;40722:4;40713:27;;;;;;;;;;;;40751:42;40772:4;40778:2;40782:7;40791:1;40751:20;:42::i;:::-;38107:2694;;;37984:2817;;;:::o;61543:110::-;6878:13;:11;:13::i;:::-;61633:14:::1;61617:13;:30;;;;61543:110:::0;:::o;62242:150::-;6878:13;:11;:13::i;:::-;3917:1:::1;4515:7;;:19:::0;4507:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3917:1;4648:7;:18;;;;62300:7:::2;62321;:5;:7::i;:::-;62313:21;;62342;62313:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62299:69;;;62383:2;62375:11;;;::::0;::::2;;62292:100;3873:1:::1;4827:7;:22;;;;62242:150::o:0;40897:185::-;41035:39;41052:4;41058:2;41062:7;41035:39;;;;;;;;;;;;:16;:39::i;:::-;40897:185;;;:::o;61915:132::-;6878:13;:11;:13::i;:::-;62023:18:::1;62003:17;:38;;;;;;:::i;:::-;;61915:132:::0;:::o;59852:27::-;;;;;;;;;;;;;:::o;59781:33::-;;;;:::o;59556:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;61779:130::-;6878:13;:11;:13::i;:::-;61884:19:::1;61863:18;:40;;;;61779:130:::0;:::o;59822:25::-;;;;;;;;;;;;;:::o;59469:82::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29187:152::-;29259:7;29302:27;29321:7;29302:18;:27::i;:::-;29279:52;;29187:152;;;:::o;24729:233::-;24801:7;24842:1;24825:19;;:5;:19;;;24821:60;;24853:28;;;;;;;;;;;;;;24821:60;18888:13;24899:18;:25;24918:5;24899:25;;;;;;;;;;;;;;;;:55;24892:62;;24729:233;;;:::o;7640:103::-;6878:13;:11;:13::i;:::-;7705:30:::1;7732:1;7705:18;:30::i;:::-;7640:103::o:0;59693:38::-;;;;:::o;6992:87::-;7038:7;7065:6;;;;;;;;;;;7058:13;;6992:87;:::o;59736:40::-;;;;:::o;27970:104::-;28026:13;28059:7;28052:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27970:104;:::o;60523:212::-;60588:11;60208:1;60194:11;:15;:48;;;;;60228:14;;60213:11;:29;;60194:48;60186:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;60313:18;;60298:11;60282:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:49;;60274:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;60621:11:::1;60468;60452:13;;:27;;;;:::i;:::-;60439:9;:40;;60431:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;60650:6:::2;;;;;;;;;;;60649:7;60641:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;60693:36;60703:12;:10;:12::i;:::-;60717:11;60693:9;:36::i;:::-;60363:1:::1;60523:212:::0;;:::o;34835:308::-;34946:19;:17;:19::i;:::-;34934:31;;:8;:31;;;34930:61;;34974:17;;;;;;;;;;;;;;34930:61;35056:8;35004:18;:39;35023:19;:17;:19::i;:::-;35004:39;;;;;;;;;;;;;;;:49;35044:8;35004:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;35116:8;35080:55;;35095:19;:17;:19::i;:::-;35080:55;;;35126:8;35080:55;;;;;;:::i;:::-;;;;;;;;34835:308;;:::o;59594:90::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41680:399::-;41847:31;41860:4;41866:2;41870:7;41847:12;:31::i;:::-;41911:1;41893:2;:14;;;:19;41889:183;;41932:56;41963:4;41969:2;41973:7;41982:5;41932:30;:56::i;:::-;41927:145;;42016:40;;;;;;;;;;;;;;41927:145;41889:183;41680:399;;;;:::o;62508:197::-;6878:13;:11;:13::i;:::-;62566:10:::1;;;;;;;;;;;62565:11;62557:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;62619:5;62606:10;;:18;;;;;;;;;;;;;;;;;;62635:58;62645:42;62689:3;62635:9;:58::i;:::-;62508:197::o:0;61005:445::-;61079:13;61109:17;61117:8;61109:7;:17::i;:::-;61101:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;61203:5;61191:17;;:8;;;;;;;;;;;:17;;;61187:64;;61226:17;61219:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61187:64;61259:28;61290:10;:8;:10::i;:::-;61259:41;;61345:1;61320:14;61314:28;:32;:130;;;;;;;;;;;;;;;;;61382:14;61398:19;:8;:17;:19::i;:::-;61419:9;61365:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61314:130;61307:137;;;61005:445;;;;:::o;61456:81::-;6878:13;:11;:13::i;:::-;61525:6:::1;61514:8;;:17;;;;;;;;;;;;;;;;;;61456:81:::0;:::o;59884:30::-;;;;;;;;;;;;;:::o;35300:164::-;35397:4;35421:18;:25;35440:5;35421:25;;;;;;;;;;;;;;;:35;35447:8;35421:35;;;;;;;;;;;;;;;;;;;;;;;;;35414:42;;35300:164;;;;:::o;60743:155::-;60829:11;60208:1;60194:11;:15;:48;;;;;60228:14;;60213:11;:29;;60194:48;60186:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;60313:18;;60298:11;60282:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:49;;60274:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;6878:13:::1;:11;:13::i;:::-;60859:33:::2;60869:9;60880:11;60859:9;:33::i;:::-;60743:155:::0;;;:::o;7898:201::-;6878:13;:11;:13::i;:::-;8007:1:::1;7987:22;;:8;:22;;::::0;7979:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;8063:28;8082:8;8063:18;:28::i;:::-;7898:201:::0;:::o;61659:114::-;6878:13;:11;:13::i;:::-;61752:15:::1;61735:14;:32;;;;61659:114:::0;:::o;35722:282::-;35787:4;35843:7;35824:15;:13;:15::i;:::-;:26;;:66;;;;;35877:13;;35867:7;:23;35824:66;:153;;;;;35976:1;19664:8;35928:17;:26;35946:7;35928:26;;;;;;;;;;;;:44;:49;35824:153;35804:173;;35722:282;;;:::o;57488:105::-;57548:7;57575:10;57568:17;;57488:105;:::o;7157:132::-;7232:12;:10;:12::i;:::-;7221:23;;:7;:5;:7::i;:::-;:23;;;7213:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7157:132::o;60904:95::-;60969:7;60992:1;60985:8;;60904:95;:::o;30342:1275::-;30409:7;30429:12;30444:7;30429:22;;30512:4;30493:15;:13;:15::i;:::-;:23;30489:1061;;30546:13;;30539:4;:20;30535:1015;;;30584:14;30601:17;:23;30619:4;30601:23;;;;;;;;;;;;30584:40;;30718:1;19664:8;30690:6;:24;:29;30686:845;;31355:113;31372:1;31362:6;:11;31355:113;;31415:17;:25;31433:6;;;;;;;31415:25;;;;;;;;;;;;31406:34;;31355:113;;;31501:6;31494:13;;;;;;30686:845;30561:989;30535:1015;30489:1061;31578:31;;;;;;;;;;;;;;30342:1275;;;;:::o;36885:479::-;36987:27;37016:23;37057:38;37098:15;:24;37114:7;37098:24;;;;;;;;;;;37057:65;;37269:18;37246:41;;37326:19;37320:26;37301:45;;37231:126;36885:479;;;:::o;36113:659::-;36262:11;36427:16;36420:5;36416:28;36407:37;;36587:16;36576:9;36572:32;36559:45;;36737:15;36726:9;36723:30;36715:5;36704:9;36701:20;36698:56;36688:66;;36113:659;;;;;:::o;42741:159::-;;;;;:::o;56797:311::-;56932:7;56952:16;20068:3;56978:19;:41;;56952:68;;20068:3;57046:31;57057:4;57063:2;57067:9;57046:10;:31::i;:::-;57038:40;;:62;;57031:69;;;56797:311;;;;;:::o;32165:450::-;32245:14;32413:16;32406:5;32402:28;32393:37;;32590:5;32576:11;32551:23;32547:41;32544:52;32537:5;32534:63;32524:73;;32165:450;;;;:::o;43565:158::-;;;;;:::o;8259:191::-;8333:16;8352:6;;;;;;;;;;;8333:25;;8378:8;8369:6;;:17;;;;;;;;;;;;;;;;;;8433:8;8402:40;;8423:8;8402:40;;;;;;;;;;;;8322:128;8259:191;:::o;5543:98::-;5596:7;5623:10;5616:17;;5543:98;:::o;51320:112::-;51397:27;51407:2;51411:8;51397:27;;;;;;;;;;;;:9;:27::i;:::-;51320:112;;:::o;44163:716::-;44326:4;44372:2;44347:45;;;44393:19;:17;:19::i;:::-;44414:4;44420:7;44429:5;44347:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44343:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44647:1;44630:6;:13;:18;44626:235;;44676:40;;;;;;;;;;;;;;44626:235;44819:6;44813:13;44804:6;44800:2;44796:15;44789:38;44343:529;44516:54;;;44506:64;;;:6;:64;;;;44499:71;;;44163:716;;;;;;:::o;62398:104::-;62458:13;62487:9;62480:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62398:104;:::o;348:723::-;404:13;634:1;625:5;:10;621:53;;652:10;;;;;;;;;;;;;;;;;;;;;621:53;684:12;699:5;684:20;;715:14;740:78;755:1;747:4;:9;740:78;;773:8;;;;;:::i;:::-;;;;804:2;796:10;;;;;:::i;:::-;;;740:78;;;828:19;860:6;850:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;828:39;;878:154;894:1;885:5;:10;878:154;;922:1;912:11;;;;;:::i;:::-;;;989:2;981:5;:10;;;;:::i;:::-;968:2;:24;;;;:::i;:::-;955:39;;938:6;945;938:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1018:2;1009:11;;;;;:::i;:::-;;;878:154;;;1056:6;1042:21;;;;;348:723;;;;:::o;56498:147::-;56635:6;56498:147;;;;;:::o;50547:689::-;50678:19;50684:2;50688:8;50678:5;:19::i;:::-;50757:1;50739:2;:14;;;:19;50735:483;;50779:11;50793:13;;50779:27;;50825:13;50847:8;50841:3;:14;50825:30;;50874:233;50905:62;50944:1;50948:2;50952:7;;;;;;50961:5;50905:30;:62::i;:::-;50900:167;;51003:40;;;;;;;;;;;;;;50900:167;51102:3;51094:5;:11;50874:233;;51189:3;51172:13;;:20;51168:34;;51194:8;;;51168:34;50760:458;;50735:483;50547:689;;;:::o;45341:2454::-;45414:20;45437:13;;45414:36;;45477:1;45465:8;:13;45461:44;;45487:18;;;;;;;;;;;;;;45461:44;45518:61;45548:1;45552:2;45556:12;45570:8;45518:21;:61::i;:::-;46062:1;19026:2;46032:1;:26;;46031:32;46019:8;:45;45993:18;:22;46012:2;45993:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;46341:139;46378:2;46432:33;46455:1;46459:2;46463:1;46432:14;:33::i;:::-;46399:30;46420:8;46399:20;:30::i;:::-;:66;46341:18;:139::i;:::-;46307:17;:31;46325:12;46307:31;;;;;;;;;;;:173;;;;46497:16;46528:11;46557:8;46542:12;:23;46528:37;;46812:16;46808:2;46804:25;46792:37;;47184:12;47144:8;47103:1;47041:25;46982:1;46921;46894:335;47309:1;47295:12;47291:20;47249:346;47350:3;47341:7;47338:16;47249:346;;47568:7;47558:8;47555:1;47528:25;47525:1;47522;47517:59;47403:1;47394:7;47390:15;47379:26;;47249:346;;;47253:77;47640:1;47628:8;:13;47624:45;;47650:19;;;;;;;;;;;;;;47624:45;47702:3;47686:13;:19;;;;45767:1950;;47727:60;47756:1;47760:2;47764:12;47778:8;47727:20;:60::i;:::-;45403:2392;45341:2454;;:::o;32717:324::-;32787:14;33020:1;33010:8;33007:15;32981:24;32977:46;32967:56;;32717:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:117::-;4999:1;4996;4989:12;5013:117;5122:1;5119;5112:12;5136:180;5184:77;5181:1;5174:88;5281:4;5278:1;5271:15;5305:4;5302:1;5295:15;5322:281;5405:27;5427:4;5405:27;:::i;:::-;5397:6;5393:40;5535:6;5523:10;5520:22;5499:18;5487:10;5484:34;5481:62;5478:88;;;5546:18;;:::i;:::-;5478:88;5586:10;5582:2;5575:22;5365:238;5322:281;;:::o;5609:129::-;5643:6;5670:20;;:::i;:::-;5660:30;;5699:33;5727:4;5719:6;5699:33;:::i;:::-;5609:129;;;:::o;5744:308::-;5806:4;5896:18;5888:6;5885:30;5882:56;;;5918:18;;:::i;:::-;5882:56;5956:29;5978:6;5956:29;:::i;:::-;5948:37;;6040:4;6034;6030:15;6022:23;;5744:308;;;:::o;6058:146::-;6155:6;6150:3;6145;6132:30;6196:1;6187:6;6182:3;6178:16;6171:27;6058:146;;;:::o;6210:425::-;6288:5;6313:66;6329:49;6371:6;6329:49;:::i;:::-;6313:66;:::i;:::-;6304:75;;6402:6;6395:5;6388:21;6440:4;6433:5;6429:16;6478:3;6469:6;6464:3;6460:16;6457:25;6454:112;;;6485:79;;:::i;:::-;6454:112;6575:54;6622:6;6617:3;6612;6575:54;:::i;:::-;6294:341;6210:425;;;;;:::o;6655:340::-;6711:5;6760:3;6753:4;6745:6;6741:17;6737:27;6727:122;;6768:79;;:::i;:::-;6727:122;6885:6;6872:20;6910:79;6985:3;6977:6;6970:4;6962:6;6958:17;6910:79;:::i;:::-;6901:88;;6717:278;6655:340;;;;:::o;7001:509::-;7070:6;7119:2;7107:9;7098:7;7094:23;7090:32;7087:119;;;7125:79;;:::i;:::-;7087:119;7273:1;7262:9;7258:17;7245:31;7303:18;7295:6;7292:30;7289:117;;;7325:79;;:::i;:::-;7289:117;7430:63;7485:7;7476:6;7465:9;7461:22;7430:63;:::i;:::-;7420:73;;7216:287;7001:509;;;;:::o;7516:116::-;7586:21;7601:5;7586:21;:::i;:::-;7579:5;7576:32;7566:60;;7622:1;7619;7612:12;7566:60;7516:116;:::o;7638:133::-;7681:5;7719:6;7706:20;7697:29;;7735:30;7759:5;7735:30;:::i;:::-;7638:133;;;;:::o;7777:323::-;7833:6;7882:2;7870:9;7861:7;7857:23;7853:32;7850:119;;;7888:79;;:::i;:::-;7850:119;8008:1;8033:50;8075:7;8066:6;8055:9;8051:22;8033:50;:::i;:::-;8023:60;;7979:114;7777:323;;;;:::o;8106:118::-;8193:24;8211:5;8193:24;:::i;:::-;8188:3;8181:37;8106:118;;:::o;8230:222::-;8323:4;8361:2;8350:9;8346:18;8338:26;;8374:71;8442:1;8431:9;8427:17;8418:6;8374:71;:::i;:::-;8230:222;;;;:::o;8458:619::-;8535:6;8543;8551;8600:2;8588:9;8579:7;8575:23;8571:32;8568:119;;;8606:79;;:::i;:::-;8568:119;8726:1;8751:53;8796:7;8787:6;8776:9;8772:22;8751:53;:::i;:::-;8741:63;;8697:117;8853:2;8879:53;8924:7;8915:6;8904:9;8900:22;8879:53;:::i;:::-;8869:63;;8824:118;8981:2;9007:53;9052:7;9043:6;9032:9;9028:22;9007:53;:::i;:::-;8997:63;;8952:118;8458:619;;;;;:::o;9083:329::-;9142:6;9191:2;9179:9;9170:7;9166:23;9162:32;9159:119;;;9197:79;;:::i;:::-;9159:119;9317:1;9342:53;9387:7;9378:6;9367:9;9363:22;9342:53;:::i;:::-;9332:63;;9288:117;9083:329;;;;:::o;9418:468::-;9483:6;9491;9540:2;9528:9;9519:7;9515:23;9511:32;9508:119;;;9546:79;;:::i;:::-;9508:119;9666:1;9691:53;9736:7;9727:6;9716:9;9712:22;9691:53;:::i;:::-;9681:63;;9637:117;9793:2;9819:50;9861:7;9852:6;9841:9;9837:22;9819:50;:::i;:::-;9809:60;;9764:115;9418:468;;;;;:::o;9892:307::-;9953:4;10043:18;10035:6;10032:30;10029:56;;;10065:18;;:::i;:::-;10029:56;10103:29;10125:6;10103:29;:::i;:::-;10095:37;;10187:4;10181;10177:15;10169:23;;9892:307;;;:::o;10205:423::-;10282:5;10307:65;10323:48;10364:6;10323:48;:::i;:::-;10307:65;:::i;:::-;10298:74;;10395:6;10388:5;10381:21;10433:4;10426:5;10422:16;10471:3;10462:6;10457:3;10453:16;10450:25;10447:112;;;10478:79;;:::i;:::-;10447:112;10568:54;10615:6;10610:3;10605;10568:54;:::i;:::-;10288:340;10205:423;;;;;:::o;10647:338::-;10702:5;10751:3;10744:4;10736:6;10732:17;10728:27;10718:122;;10759:79;;:::i;:::-;10718:122;10876:6;10863:20;10901:78;10975:3;10967:6;10960:4;10952:6;10948:17;10901:78;:::i;:::-;10892:87;;10708:277;10647:338;;;;:::o;10991:943::-;11086:6;11094;11102;11110;11159:3;11147:9;11138:7;11134:23;11130:33;11127:120;;;11166:79;;:::i;:::-;11127:120;11286:1;11311:53;11356:7;11347:6;11336:9;11332:22;11311:53;:::i;:::-;11301:63;;11257:117;11413:2;11439:53;11484:7;11475:6;11464:9;11460:22;11439:53;:::i;:::-;11429:63;;11384:118;11541:2;11567:53;11612:7;11603:6;11592:9;11588:22;11567:53;:::i;:::-;11557:63;;11512:118;11697:2;11686:9;11682:18;11669:32;11728:18;11720:6;11717:30;11714:117;;;11750:79;;:::i;:::-;11714:117;11855:62;11909:7;11900:6;11889:9;11885:22;11855:62;:::i;:::-;11845:72;;11640:287;10991:943;;;;;;;:::o;11940:474::-;12008:6;12016;12065:2;12053:9;12044:7;12040:23;12036:32;12033:119;;;12071:79;;:::i;:::-;12033:119;12191:1;12216:53;12261:7;12252:6;12241:9;12237:22;12216:53;:::i;:::-;12206:63;;12162:117;12318:2;12344:53;12389:7;12380:6;12369:9;12365:22;12344:53;:::i;:::-;12334:63;;12289:118;11940:474;;;;;:::o;12420:::-;12488:6;12496;12545:2;12533:9;12524:7;12520:23;12516:32;12513:119;;;12551:79;;:::i;:::-;12513:119;12671:1;12696:53;12741:7;12732:6;12721:9;12717:22;12696:53;:::i;:::-;12686:63;;12642:117;12798:2;12824:53;12869:7;12860:6;12849:9;12845:22;12824:53;:::i;:::-;12814:63;;12769:118;12420:474;;;;;:::o;12900:180::-;12948:77;12945:1;12938:88;13045:4;13042:1;13035:15;13069:4;13066:1;13059:15;13086:320;13130:6;13167:1;13161:4;13157:12;13147:22;;13214:1;13208:4;13204:12;13235:18;13225:81;;13291:4;13283:6;13279:17;13269:27;;13225:81;13353:2;13345:6;13342:14;13322:18;13319:38;13316:84;;13372:18;;:::i;:::-;13316:84;13137:269;13086:320;;;:::o;13412:141::-;13461:4;13484:3;13476:11;;13507:3;13504:1;13497:14;13541:4;13538:1;13528:18;13520:26;;13412:141;;;:::o;13559:93::-;13596:6;13643:2;13638;13631:5;13627:14;13623:23;13613:33;;13559:93;;;:::o;13658:107::-;13702:8;13752:5;13746:4;13742:16;13721:37;;13658:107;;;;:::o;13771:393::-;13840:6;13890:1;13878:10;13874:18;13913:97;13943:66;13932:9;13913:97;:::i;:::-;14031:39;14061:8;14050:9;14031:39;:::i;:::-;14019:51;;14103:4;14099:9;14092:5;14088:21;14079:30;;14152:4;14142:8;14138:19;14131:5;14128:30;14118:40;;13847:317;;13771:393;;;;;:::o;14170:60::-;14198:3;14219:5;14212:12;;14170:60;;;:::o;14236:142::-;14286:9;14319:53;14337:34;14346:24;14364:5;14346:24;:::i;:::-;14337:34;:::i;:::-;14319:53;:::i;:::-;14306:66;;14236:142;;;:::o;14384:75::-;14427:3;14448:5;14441:12;;14384:75;;;:::o;14465:269::-;14575:39;14606:7;14575:39;:::i;:::-;14636:91;14685:41;14709:16;14685:41;:::i;:::-;14677:6;14670:4;14664:11;14636:91;:::i;:::-;14630:4;14623:105;14541:193;14465:269;;;:::o;14740:73::-;14785:3;14740:73;:::o;14819:189::-;14896:32;;:::i;:::-;14937:65;14995:6;14987;14981:4;14937:65;:::i;:::-;14872:136;14819:189;;:::o;15014:186::-;15074:120;15091:3;15084:5;15081:14;15074:120;;;15145:39;15182:1;15175:5;15145:39;:::i;:::-;15118:1;15111:5;15107:13;15098:22;;15074:120;;;15014:186;;:::o;15206:543::-;15307:2;15302:3;15299:11;15296:446;;;15341:38;15373:5;15341:38;:::i;:::-;15425:29;15443:10;15425:29;:::i;:::-;15415:8;15411:44;15608:2;15596:10;15593:18;15590:49;;;15629:8;15614:23;;15590:49;15652:80;15708:22;15726:3;15708:22;:::i;:::-;15698:8;15694:37;15681:11;15652:80;:::i;:::-;15311:431;;15296:446;15206:543;;;:::o;15755:117::-;15809:8;15859:5;15853:4;15849:16;15828:37;;15755:117;;;;:::o;15878:169::-;15922:6;15955:51;16003:1;15999:6;15991:5;15988:1;15984:13;15955:51;:::i;:::-;15951:56;16036:4;16030;16026:15;16016:25;;15929:118;15878:169;;;;:::o;16052:295::-;16128:4;16274:29;16299:3;16293:4;16274:29;:::i;:::-;16266:37;;16336:3;16333:1;16329:11;16323:4;16320:21;16312:29;;16052:295;;;;:::o;16352:1395::-;16469:37;16502:3;16469:37;:::i;:::-;16571:18;16563:6;16560:30;16557:56;;;16593:18;;:::i;:::-;16557:56;16637:38;16669:4;16663:11;16637:38;:::i;:::-;16722:67;16782:6;16774;16768:4;16722:67;:::i;:::-;16816:1;16840:4;16827:17;;16872:2;16864:6;16861:14;16889:1;16884:618;;;;17546:1;17563:6;17560:77;;;17612:9;17607:3;17603:19;17597:26;17588:35;;17560:77;17663:67;17723:6;17716:5;17663:67;:::i;:::-;17657:4;17650:81;17519:222;16854:887;;16884:618;16936:4;16932:9;16924:6;16920:22;16970:37;17002:4;16970:37;:::i;:::-;17029:1;17043:208;17057:7;17054:1;17051:14;17043:208;;;17136:9;17131:3;17127:19;17121:26;17113:6;17106:42;17187:1;17179:6;17175:14;17165:24;;17234:2;17223:9;17219:18;17206:31;;17080:4;17077:1;17073:12;17068:17;;17043:208;;;17279:6;17270:7;17267:19;17264:179;;;17337:9;17332:3;17328:19;17322:26;17380:48;17422:4;17414:6;17410:17;17399:9;17380:48;:::i;:::-;17372:6;17365:64;17287:156;17264:179;17489:1;17485;17477:6;17473:14;17469:22;17463:4;17456:36;16891:611;;;16854:887;;16444:1303;;;16352:1395;;:::o;17753:181::-;17893:33;17889:1;17881:6;17877:14;17870:57;17753:181;:::o;17940:366::-;18082:3;18103:67;18167:2;18162:3;18103:67;:::i;:::-;18096:74;;18179:93;18268:3;18179:93;:::i;:::-;18297:2;18292:3;18288:12;18281:19;;17940:366;;;:::o;18312:419::-;18478:4;18516:2;18505:9;18501:18;18493:26;;18565:9;18559:4;18555:20;18551:1;18540:9;18536:17;18529:47;18593:131;18719:4;18593:131;:::i;:::-;18585:139;;18312:419;;;:::o;18737:147::-;18838:11;18875:3;18860:18;;18737:147;;;;:::o;18890:114::-;;:::o;19010:398::-;19169:3;19190:83;19271:1;19266:3;19190:83;:::i;:::-;19183:90;;19282:93;19371:3;19282:93;:::i;:::-;19400:1;19395:3;19391:11;19384:18;;19010:398;;;:::o;19414:379::-;19598:3;19620:147;19763:3;19620:147;:::i;:::-;19613:154;;19784:3;19777:10;;19414:379;;;:::o;19799:170::-;19939:22;19935:1;19927:6;19923:14;19916:46;19799:170;:::o;19975:366::-;20117:3;20138:67;20202:2;20197:3;20138:67;:::i;:::-;20131:74;;20214:93;20303:3;20214:93;:::i;:::-;20332:2;20327:3;20323:12;20316:19;;19975:366;;;:::o;20347:419::-;20513:4;20551:2;20540:9;20536:18;20528:26;;20600:9;20594:4;20590:20;20586:1;20575:9;20571:17;20564:47;20628:131;20754:4;20628:131;:::i;:::-;20620:139;;20347:419;;;:::o;20772:180::-;20820:77;20817:1;20810:88;20917:4;20914:1;20907:15;20941:4;20938:1;20931:15;20958:191;20998:3;21017:20;21035:1;21017:20;:::i;:::-;21012:25;;21051:20;21069:1;21051:20;:::i;:::-;21046:25;;21094:1;21091;21087:9;21080:16;;21115:3;21112:1;21109:10;21106:36;;;21122:18;;:::i;:::-;21106:36;20958:191;;;;:::o;21155:170::-;21295:22;21291:1;21283:6;21279:14;21272:46;21155:170;:::o;21331:366::-;21473:3;21494:67;21558:2;21553:3;21494:67;:::i;:::-;21487:74;;21570:93;21659:3;21570:93;:::i;:::-;21688:2;21683:3;21679:12;21672:19;;21331:366;;;:::o;21703:419::-;21869:4;21907:2;21896:9;21892:18;21884:26;;21956:9;21950:4;21946:20;21942:1;21931:9;21927:17;21920:47;21984:131;22110:4;21984:131;:::i;:::-;21976:139;;21703:419;;;:::o;22128:348::-;22168:7;22191:20;22209:1;22191:20;:::i;:::-;22186:25;;22225:20;22243:1;22225:20;:::i;:::-;22220:25;;22413:1;22345:66;22341:74;22338:1;22335:81;22330:1;22323:9;22316:17;22312:105;22309:131;;;22420:18;;:::i;:::-;22309:131;22468:1;22465;22461:9;22450:20;;22128:348;;;;:::o;22482:169::-;22622:21;22618:1;22610:6;22606:14;22599:45;22482:169;:::o;22657:366::-;22799:3;22820:67;22884:2;22879:3;22820:67;:::i;:::-;22813:74;;22896:93;22985:3;22896:93;:::i;:::-;23014:2;23009:3;23005:12;22998:19;;22657:366;;;:::o;23029:419::-;23195:4;23233:2;23222:9;23218:18;23210:26;;23282:9;23276:4;23272:20;23268:1;23257:9;23253:17;23246:47;23310:131;23436:4;23310:131;:::i;:::-;23302:139;;23029:419;;;:::o;23454:173::-;23594:25;23590:1;23582:6;23578:14;23571:49;23454:173;:::o;23633:366::-;23775:3;23796:67;23860:2;23855:3;23796:67;:::i;:::-;23789:74;;23872:93;23961:3;23872:93;:::i;:::-;23990:2;23985:3;23981:12;23974:19;;23633:366;;;:::o;24005:419::-;24171:4;24209:2;24198:9;24194:18;24186:26;;24258:9;24252:4;24248:20;24244:1;24233:9;24229:17;24222:47;24286:131;24412:4;24286:131;:::i;:::-;24278:139;;24005:419;;;:::o;24430:164::-;24570:16;24566:1;24558:6;24554:14;24547:40;24430:164;:::o;24600:366::-;24742:3;24763:67;24827:2;24822:3;24763:67;:::i;:::-;24756:74;;24839:93;24928:3;24839:93;:::i;:::-;24957:2;24952:3;24948:12;24941:19;;24600:366;;;:::o;24972:419::-;25138:4;25176:2;25165:9;25161:18;25153:26;;25225:9;25219:4;25215:20;25211:1;25200:9;25196:17;25189:47;25253:131;25379:4;25253:131;:::i;:::-;25245:139;;24972:419;;;:::o;25397:234::-;25537:34;25533:1;25525:6;25521:14;25514:58;25606:17;25601:2;25593:6;25589:15;25582:42;25397:234;:::o;25637:366::-;25779:3;25800:67;25864:2;25859:3;25800:67;:::i;:::-;25793:74;;25876:93;25965:3;25876:93;:::i;:::-;25994:2;25989:3;25985:12;25978:19;;25637:366;;;:::o;26009:419::-;26175:4;26213:2;26202:9;26198:18;26190:26;;26262:9;26256:4;26252:20;26248:1;26237:9;26233:17;26226:47;26290:131;26416:4;26290:131;:::i;:::-;26282:139;;26009:419;;;:::o;26434:148::-;26536:11;26573:3;26558:18;;26434:148;;;;:::o;26588:390::-;26694:3;26722:39;26755:5;26722:39;:::i;:::-;26777:89;26859:6;26854:3;26777:89;:::i;:::-;26770:96;;26875:65;26933:6;26928:3;26921:4;26914:5;26910:16;26875:65;:::i;:::-;26965:6;26960:3;26956:16;26949:23;;26698:280;26588:390;;;;:::o;27008:874::-;27111:3;27148:5;27142:12;27177:36;27203:9;27177:36;:::i;:::-;27229:89;27311:6;27306:3;27229:89;:::i;:::-;27222:96;;27349:1;27338:9;27334:17;27365:1;27360:166;;;;27540:1;27535:341;;;;27327:549;;27360:166;27444:4;27440:9;27429;27425:25;27420:3;27413:38;27506:6;27499:14;27492:22;27484:6;27480:35;27475:3;27471:45;27464:52;;27360:166;;27535:341;27602:38;27634:5;27602:38;:::i;:::-;27662:1;27676:154;27690:6;27687:1;27684:13;27676:154;;;27764:7;27758:14;27754:1;27749:3;27745:11;27738:35;27814:1;27805:7;27801:15;27790:26;;27712:4;27709:1;27705:12;27700:17;;27676:154;;;27859:6;27854:3;27850:16;27843:23;;27542:334;;27327:549;;27115:767;;27008:874;;;;:::o;27888:589::-;28113:3;28135:95;28226:3;28217:6;28135:95;:::i;:::-;28128:102;;28247:95;28338:3;28329:6;28247:95;:::i;:::-;28240:102;;28359:92;28447:3;28438:6;28359:92;:::i;:::-;28352:99;;28468:3;28461:10;;27888:589;;;;;;:::o;28483:225::-;28623:34;28619:1;28611:6;28607:14;28600:58;28692:8;28687:2;28679:6;28675:15;28668:33;28483:225;:::o;28714:366::-;28856:3;28877:67;28941:2;28936:3;28877:67;:::i;:::-;28870:74;;28953:93;29042:3;28953:93;:::i;:::-;29071:2;29066:3;29062:12;29055:19;;28714:366;;;:::o;29086:419::-;29252:4;29290:2;29279:9;29275:18;29267:26;;29339:9;29333:4;29329:20;29325:1;29314:9;29310:17;29303:47;29367:131;29493:4;29367:131;:::i;:::-;29359:139;;29086:419;;;:::o;29511:182::-;29651:34;29647:1;29639:6;29635:14;29628:58;29511:182;:::o;29699:366::-;29841:3;29862:67;29926:2;29921:3;29862:67;:::i;:::-;29855:74;;29938:93;30027:3;29938:93;:::i;:::-;30056:2;30051:3;30047:12;30040:19;;29699:366;;;:::o;30071:419::-;30237:4;30275:2;30264:9;30260:18;30252:26;;30324:9;30318:4;30314:20;30310:1;30299:9;30295:17;30288:47;30352:131;30478:4;30352:131;:::i;:::-;30344:139;;30071:419;;;:::o;30496:98::-;30547:6;30581:5;30575:12;30565:22;;30496:98;;;:::o;30600:168::-;30683:11;30717:6;30712:3;30705:19;30757:4;30752:3;30748:14;30733:29;;30600:168;;;;:::o;30774:373::-;30860:3;30888:38;30920:5;30888:38;:::i;:::-;30942:70;31005:6;31000:3;30942:70;:::i;:::-;30935:77;;31021:65;31079:6;31074:3;31067:4;31060:5;31056:16;31021:65;:::i;:::-;31111:29;31133:6;31111:29;:::i;:::-;31106:3;31102:39;31095:46;;30864:283;30774:373;;;;:::o;31153:640::-;31348:4;31386:3;31375:9;31371:19;31363:27;;31400:71;31468:1;31457:9;31453:17;31444:6;31400:71;:::i;:::-;31481:72;31549:2;31538:9;31534:18;31525:6;31481:72;:::i;:::-;31563;31631:2;31620:9;31616:18;31607:6;31563:72;:::i;:::-;31682:9;31676:4;31672:20;31667:2;31656:9;31652:18;31645:48;31710:76;31781:4;31772:6;31710:76;:::i;:::-;31702:84;;31153:640;;;;;;;:::o;31799:141::-;31855:5;31886:6;31880:13;31871:22;;31902:32;31928:5;31902:32;:::i;:::-;31799:141;;;;:::o;31946:349::-;32015:6;32064:2;32052:9;32043:7;32039:23;32035:32;32032:119;;;32070:79;;:::i;:::-;32032:119;32190:1;32215:63;32270:7;32261:6;32250:9;32246:22;32215:63;:::i;:::-;32205:73;;32161:127;31946:349;;;;:::o;32301:233::-;32340:3;32363:24;32381:5;32363:24;:::i;:::-;32354:33;;32409:66;32402:5;32399:77;32396:103;;32479:18;;:::i;:::-;32396:103;32526:1;32519:5;32515:13;32508:20;;32301:233;;;:::o;32540:180::-;32588:77;32585:1;32578:88;32685:4;32682:1;32675:15;32709:4;32706:1;32699:15;32726:185;32766:1;32783:20;32801:1;32783:20;:::i;:::-;32778:25;;32817:20;32835:1;32817:20;:::i;:::-;32812:25;;32856:1;32846:35;;32861:18;;:::i;:::-;32846:35;32903:1;32900;32896:9;32891:14;;32726:185;;;;:::o;32917:194::-;32957:4;32977:20;32995:1;32977:20;:::i;:::-;32972:25;;33011:20;33029:1;33011:20;:::i;:::-;33006:25;;33055:1;33052;33048:9;33040:17;;33079:1;33073:4;33070:11;33067:37;;;33084:18;;:::i;:::-;33067:37;32917:194;;;;:::o;33117:176::-;33149:1;33166:20;33184:1;33166:20;:::i;:::-;33161:25;;33200:20;33218:1;33200:20;:::i;:::-;33195:25;;33239:1;33229:35;;33244:18;;:::i;:::-;33229:35;33285:1;33282;33278:9;33273:14;;33117:176;;;;:::o;33299:180::-;33347:77;33344:1;33337:88;33444:4;33441:1;33434:15;33468:4;33465:1;33458:15

Swarm Source

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