ETH Price: $3,265.27 (+2.97%)
Gas: 2 Gwei

Token

The Still Life Of Flowers (TheStillLifeOfFlowers)
 

Overview

Max Total Supply

1,500 TheStillLifeOfFlowers

Holders

564

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TheStillLifeOfFlowers
0xafcbf95c1432220f344dd86bb3557a84f483e138
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:
TheStillLifeOfFlowers

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-17
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

// 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/Mud_Cats.sol



pragma solidity ^0.8.4;




contract TheStillLifeOfFlowers is ERC721A, Ownable {
    using Strings for uint256;

    uint256 public MINT_PRICE = 0.01 ether;
    uint256 public MAX_SUPPLY = 1500;
    uint256 public MAX_PER_TRANSACTION = 2;
    uint256 public MAX_PER_WALLET = 10;
    bool public paused = true;
    string private baseUri = "ipfs://QmXGp5CeP6GahbFM1DUS4td7AXHLAVDmNgVv4UaWszxsUD";

    mapping(address => uint256) private _freeMintedCount;

    constructor() ERC721A("The Still Life Of Flowers", "TheStillLifeOfFlowers") {}

    function mint(uint256 _quantity) external payable {
        require(paused, "Sale is not open");
        uint256 _totalSupply = totalSupply();
        require(balanceOf(msg.sender)+ _quantity <= MAX_PER_WALLET, "Max mints per wallet exceeded ");
        require( _totalSupply + _quantity <= MAX_SUPPLY, "Exceeds supply");
        require(_quantity <= MAX_PER_TRANSACTION, "Exceeds max per tx");
        require(msg.value >= MINT_PRICE * _quantity, "Insufficient Mint Value");

        _safeMint(msg.sender, _quantity);
    }

    function freeMintedCount(address owner) external view returns (uint256) {
        return _freeMintedCount[owner];
    }

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

    function setBaseURI(string calldata _newBaseUri) external onlyOwner {
        baseUri = _newBaseUri;
    }

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

    function flipSale() external onlyOwner {
        paused = !paused;
    }

    function reserves(uint256 numToReserve) external onlyOwner {
        require(
            totalSupply() + numToReserve <= MAX_SUPPLY,
            "Not enough to reserve"
        );
        _safeMint(msg.sender, numToReserve);
    }

    function withdraw() external onlyOwner {
        require(
            payable(owner()).send(address(this).balance),
            "Withdraw unsuccessful"
        );
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId), "Nonexistent token");

        return
            string(abi.encodePacked(baseUri, "/", tokenId.toString(), ".json"));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"MAX_PER_TRANSACTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"freeMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numToReserve","type":"uint256"}],"name":"reserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052662386f26fc100006009556105dc600a556002600b55600a600c556001600d60006101000a81548160ff021916908315150217905550604051806060016040528060358152602001620031ee60359139600e90805190602001906200006b9291906200022d565b503480156200007957600080fd5b506040518060400160405280601981526020017f546865205374696c6c204c696665204f6620466c6f77657273000000000000008152506040518060400160405280601581526020017f5468655374696c6c4c6966654f66466c6f7765727300000000000000000000008152508160029080519060200190620000fe9291906200022d565b508060039080519060200190620001179291906200022d565b50620001286200015660201b60201c565b600081905550505062000150620001446200015f60201b60201c565b6200016760201b60201c565b62000342565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023b90620002dd565b90600052602060002090601f0160209004810192826200025f5760008555620002ab565b82601f106200027a57805160ff1916838001178555620002ab565b82800160010185558215620002ab579182015b82811115620002aa5782518255916020019190600101906200028d565b5b509050620002ba9190620002be565b5090565b5b80821115620002d9576000816000905550600101620002bf565b5090565b60006002820490506001821680620002f657607f821691505b602082108114156200030d576200030c62000313565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612e9c80620003526000396000f3fe6080604052600436106101b75760003560e01c8063715018a6116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd146105c5578063cb14eb8714610602578063e985e9c51461062d578063f2fde38b1461066a576101b7565b8063a22cb46514610548578063b88d4fde14610571578063c002d23d1461059a576101b7565b80638da5cb5b116100c65780638da5cb5b1461049957806395d89b41146104c457806398133235146104ef578063a0712d681461052c576101b7565b8063715018a6146104425780637ba5e621146104595780638334278d14610470576101b7565b806332cb6b0c1161015957806355f804b31161013357806355f804b3146103745780635c975abb1461039d5780636352211e146103c857806370a0823114610405576101b7565b806332cb6b0c146103095780633ccfd60b1461033457806342842e0e1461034b576101b7565b8063095ea7b311610195578063095ea7b3146102615780630f2cdd6c1461028a57806318160ddd146102b557806323b872dd146102e0576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612188565b610693565b6040516101f091906125f0565b60405180910390f35b34801561020557600080fd5b5061020e610725565b60405161021b919061260b565b60405180910390f35b34801561023057600080fd5b5061024b6004803603810190610246919061222f565b6107b7565b6040516102589190612589565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612148565b610836565b005b34801561029657600080fd5b5061029f61097a565b6040516102ac919061276d565b60405180910390f35b3480156102c157600080fd5b506102ca610980565b6040516102d7919061276d565b60405180910390f35b3480156102ec57600080fd5b5061030760048036038101906103029190612032565b610997565b005b34801561031557600080fd5b5061031e610cbc565b60405161032b919061276d565b60405180910390f35b34801561034057600080fd5b50610349610cc2565b005b34801561035757600080fd5b50610372600480360381019061036d9190612032565b610d47565b005b34801561038057600080fd5b5061039b600480360381019061039691906121e2565b610d67565b005b3480156103a957600080fd5b506103b2610d85565b6040516103bf91906125f0565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea919061222f565b610d98565b6040516103fc9190612589565b60405180910390f35b34801561041157600080fd5b5061042c60048036038101906104279190611fc5565b610daa565b604051610439919061276d565b60405180910390f35b34801561044e57600080fd5b50610457610e63565b005b34801561046557600080fd5b5061046e610e77565b005b34801561047c57600080fd5b506104976004803603810190610492919061222f565b610eab565b005b3480156104a557600080fd5b506104ae610f17565b6040516104bb9190612589565b60405180910390f35b3480156104d057600080fd5b506104d9610f41565b6040516104e6919061260b565b60405180910390f35b3480156104fb57600080fd5b5061051660048036038101906105119190611fc5565b610fd3565b604051610523919061276d565b60405180910390f35b6105466004803603810190610541919061222f565b61101c565b005b34801561055457600080fd5b5061056f600480360381019061056a9190612108565b6111c2565b005b34801561057d57600080fd5b5061059860048036038101906105939190612085565b61133a565b005b3480156105a657600080fd5b506105af6113ad565b6040516105bc919061276d565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e7919061222f565b6113b3565b6040516105f9919061260b565b60405180910390f35b34801561060e57600080fd5b5061061761142f565b604051610624919061276d565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f9190611ff2565b611435565b60405161066191906125f0565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190611fc5565b6114c9565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ee57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061071e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461073490612a01565b80601f016020809104026020016040519081016040528092919081815260200182805461076090612a01565b80156107ad5780601f10610782576101008083540402835291602001916107ad565b820191906000526020600020905b81548152906001019060200180831161079057829003601f168201915b5050505050905090565b60006107c28261154d565b6107f8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061084182610d98565b90508073ffffffffffffffffffffffffffffffffffffffff166108626115ac565b73ffffffffffffffffffffffffffffffffffffffff16146108c55761088e816108896115ac565b611435565b6108c4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b600061098a6115b4565b6001546000540303905090565b60006109a2826115bd565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a09576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a158461168b565b91509150610a2b8187610a266115ac565b6116b2565b610a7757610a4086610a3b6115ac565b611435565b610a76576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ade576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610aeb86868660016116f6565b8015610af657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bc485610ba08888876116fc565b7c020000000000000000000000000000000000000000000000000000000017611724565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c4c576000600185019050600060046000838152602001908152602001600020541415610c4a576000548114610c49578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cb4868686600161174f565b505050505050565b600a5481565b610cca611755565b610cd2610f17565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c9061272d565b60405180910390fd5b565b610d628383836040518060200160405280600081525061133a565b505050565b610d6f611755565b8181600e9190610d80929190611df3565b505050565b600d60009054906101000a900460ff1681565b6000610da3826115bd565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e12576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e6b611755565b610e7560006117d3565b565b610e7f611755565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610eb3611755565b600a5481610ebf610980565b610ec99190612836565b1115610f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f019061266d565b60405180910390fd5b610f143382611899565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f5090612a01565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7c90612a01565b8015610fc95780601f10610f9e57610100808354040283529160200191610fc9565b820191906000526020600020905b815481529060010190602001808311610fac57829003601f168201915b5050505050905090565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600d60009054906101000a900460ff1661106b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110629061274d565b60405180910390fd5b6000611075610980565b9050600c548261108433610daa565b61108e9190612836565b11156110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c6906126ad565b60405180910390fd5b600a5482826110de9190612836565b111561111f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111169061262d565b60405180910390fd5b600b54821115611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b9061268d565b60405180910390fd5b8160095461117291906128bd565b3410156111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab906126cd565b60405180910390fd5b6111be3383611899565b5050565b6111ca6115ac565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561122f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061123c6115ac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112e96115ac565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161132e91906125f0565b60405180910390a35050565b611345848484610997565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113a757611370848484846118b7565b6113a6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60095481565b60606113be8261154d565b6113fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f4906126ed565b60405180910390fd5b600e61140883611a17565b60405160200161141992919061254f565b6040516020818303038152906040529050919050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114d1611755565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611541576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115389061264d565b60405180910390fd5b61154a816117d3565b50565b6000816115586115b4565b11158015611567575060005482105b80156115a5575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806115cc6115b4565b11611654576000548110156116535760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611651575b600081141561164757600460008360019003935083815260200190815260200160002054905061161c565b8092505050611686565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611713868684611b78565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61175d611b81565b73ffffffffffffffffffffffffffffffffffffffff1661177b610f17565b73ffffffffffffffffffffffffffffffffffffffff16146117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c89061270d565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6118b3828260405180602001604052806000815250611b89565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026118dd6115ac565b8786866040518563ffffffff1660e01b81526004016118ff94939291906125a4565b602060405180830381600087803b15801561191957600080fd5b505af192505050801561194a57506040513d601f19601f8201168201806040525081019061194791906121b5565b60015b6119c4573d806000811461197a576040519150601f19603f3d011682016040523d82523d6000602084013e61197f565b606091505b506000815114156119bc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611a5f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611b73565b600082905060005b60008214611a91578080611a7a90612a64565b915050600a82611a8a919061288c565b9150611a67565b60008167ffffffffffffffff811115611aad57611aac612b9a565b5b6040519080825280601f01601f191660200182016040528015611adf5781602001600182028036833780820191505090505b5090505b60008514611b6c57600182611af89190612917565b9150600a85611b079190612aad565b6030611b139190612836565b60f81b818381518110611b2957611b28612b6b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611b65919061288c565b9450611ae3565b8093505050505b919050565b60009392505050565b600033905090565b611b938383611c26565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c2157600080549050600083820390505b611bd360008683806001019450866118b7565b611c09576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611bc0578160005414611c1e57600080fd5b50505b505050565b6000805490506000821415611c67576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c7460008483856116f6565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611ceb83611cdc60008660006116fc565b611ce585611de3565b17611724565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611d8c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611d51565b506000821415611dc8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611dde600084838561174f565b505050565b60006001821460e11b9050919050565b828054611dff90612a01565b90600052602060002090601f016020900481019282611e215760008555611e68565b82601f10611e3a57803560ff1916838001178555611e68565b82800160010185558215611e68579182015b82811115611e67578235825591602001919060010190611e4c565b5b509050611e759190611e79565b5090565b5b80821115611e92576000816000905550600101611e7a565b5090565b6000611ea9611ea4846127ad565b612788565b905082815260208101848484011115611ec557611ec4612bd8565b5b611ed08482856129bf565b509392505050565b600081359050611ee781612e0a565b92915050565b600081359050611efc81612e21565b92915050565b600081359050611f1181612e38565b92915050565b600081519050611f2681612e38565b92915050565b600082601f830112611f4157611f40612bce565b5b8135611f51848260208601611e96565b91505092915050565b60008083601f840112611f7057611f6f612bce565b5b8235905067ffffffffffffffff811115611f8d57611f8c612bc9565b5b602083019150836001820283011115611fa957611fa8612bd3565b5b9250929050565b600081359050611fbf81612e4f565b92915050565b600060208284031215611fdb57611fda612be2565b5b6000611fe984828501611ed8565b91505092915050565b6000806040838503121561200957612008612be2565b5b600061201785828601611ed8565b925050602061202885828601611ed8565b9150509250929050565b60008060006060848603121561204b5761204a612be2565b5b600061205986828701611ed8565b935050602061206a86828701611ed8565b925050604061207b86828701611fb0565b9150509250925092565b6000806000806080858703121561209f5761209e612be2565b5b60006120ad87828801611ed8565b94505060206120be87828801611ed8565b93505060406120cf87828801611fb0565b925050606085013567ffffffffffffffff8111156120f0576120ef612bdd565b5b6120fc87828801611f2c565b91505092959194509250565b6000806040838503121561211f5761211e612be2565b5b600061212d85828601611ed8565b925050602061213e85828601611eed565b9150509250929050565b6000806040838503121561215f5761215e612be2565b5b600061216d85828601611ed8565b925050602061217e85828601611fb0565b9150509250929050565b60006020828403121561219e5761219d612be2565b5b60006121ac84828501611f02565b91505092915050565b6000602082840312156121cb576121ca612be2565b5b60006121d984828501611f17565b91505092915050565b600080602083850312156121f9576121f8612be2565b5b600083013567ffffffffffffffff81111561221757612216612bdd565b5b61222385828601611f5a565b92509250509250929050565b60006020828403121561224557612244612be2565b5b600061225384828501611fb0565b91505092915050565b6122658161294b565b82525050565b6122748161295d565b82525050565b6000612285826127f3565b61228f8185612809565b935061229f8185602086016129ce565b6122a881612be7565b840191505092915050565b60006122be826127fe565b6122c8818561281a565b93506122d88185602086016129ce565b6122e181612be7565b840191505092915050565b60006122f7826127fe565b612301818561282b565b93506123118185602086016129ce565b80840191505092915050565b6000815461232a81612a01565b612334818661282b565b9450600182166000811461234f576001811461236057612393565b60ff19831686528186019350612393565b612369856127de565b60005b8381101561238b5781548189015260018201915060208101905061236c565b838801955050505b50505092915050565b60006123a9600e8361281a565b91506123b482612bf8565b602082019050919050565b60006123cc60268361281a565b91506123d782612c21565b604082019050919050565b60006123ef60158361281a565b91506123fa82612c70565b602082019050919050565b600061241260128361281a565b915061241d82612c99565b602082019050919050565b6000612435601e8361281a565b915061244082612cc2565b602082019050919050565b600061245860178361281a565b915061246382612ceb565b602082019050919050565b600061247b60118361281a565b915061248682612d14565b602082019050919050565b600061249e60058361282b565b91506124a982612d3d565b600582019050919050565b60006124c160208361281a565b91506124cc82612d66565b602082019050919050565b60006124e460158361281a565b91506124ef82612d8f565b602082019050919050565b600061250760108361281a565b915061251282612db8565b602082019050919050565b600061252a60018361282b565b915061253582612de1565b600182019050919050565b612549816129b5565b82525050565b600061255b828561231d565b91506125668261251d565b915061257282846122ec565b915061257d82612491565b91508190509392505050565b600060208201905061259e600083018461225c565b92915050565b60006080820190506125b9600083018761225c565b6125c6602083018661225c565b6125d36040830185612540565b81810360608301526125e5818461227a565b905095945050505050565b6000602082019050612605600083018461226b565b92915050565b6000602082019050818103600083015261262581846122b3565b905092915050565b600060208201905081810360008301526126468161239c565b9050919050565b60006020820190508181036000830152612666816123bf565b9050919050565b60006020820190508181036000830152612686816123e2565b9050919050565b600060208201905081810360008301526126a681612405565b9050919050565b600060208201905081810360008301526126c681612428565b9050919050565b600060208201905081810360008301526126e68161244b565b9050919050565b600060208201905081810360008301526127068161246e565b9050919050565b60006020820190508181036000830152612726816124b4565b9050919050565b60006020820190508181036000830152612746816124d7565b9050919050565b60006020820190508181036000830152612766816124fa565b9050919050565b60006020820190506127826000830184612540565b92915050565b60006127926127a3565b905061279e8282612a33565b919050565b6000604051905090565b600067ffffffffffffffff8211156127c8576127c7612b9a565b5b6127d182612be7565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612841826129b5565b915061284c836129b5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561288157612880612ade565b5b828201905092915050565b6000612897826129b5565b91506128a2836129b5565b9250826128b2576128b1612b0d565b5b828204905092915050565b60006128c8826129b5565b91506128d3836129b5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561290c5761290b612ade565b5b828202905092915050565b6000612922826129b5565b915061292d836129b5565b9250828210156129405761293f612ade565b5b828203905092915050565b600061295682612995565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156129ec5780820151818401526020810190506129d1565b838111156129fb576000848401525b50505050565b60006002820490506001821680612a1957607f821691505b60208210811415612a2d57612a2c612b3c565b5b50919050565b612a3c82612be7565b810181811067ffffffffffffffff82111715612a5b57612a5a612b9a565b5b80604052505050565b6000612a6f826129b5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612aa257612aa1612ade565b5b600182019050919050565b6000612ab8826129b5565b9150612ac3836129b5565b925082612ad357612ad2612b0d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4578636565647320737570706c79000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f20726573657276650000000000000000000000600082015250565b7f45786365656473206d6178207065722074780000000000000000000000000000600082015250565b7f4d6178206d696e7473207065722077616c6c6574206578636565646564200000600082015250565b7f496e73756666696369656e74204d696e742056616c7565000000000000000000600082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f576974686472617720756e7375636365737366756c0000000000000000000000600082015250565b7f53616c65206973206e6f74206f70656e00000000000000000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b612e138161294b565b8114612e1e57600080fd5b50565b612e2a8161295d565b8114612e3557600080fd5b50565b612e4181612969565b8114612e4c57600080fd5b50565b612e58816129b5565b8114612e6357600080fd5b5056fea26469706673582212206681c5abc6c1e0d5dec933b8911b459c6c332d7bf79459c1d294d5eea34420fa64736f6c63430008070033697066733a2f2f516d584770354365503647616862464d31445553347464374158484c4156446d4e67567634556157737a78735544

Deployed Bytecode

0x6080604052600436106101b75760003560e01c8063715018a6116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd146105c5578063cb14eb8714610602578063e985e9c51461062d578063f2fde38b1461066a576101b7565b8063a22cb46514610548578063b88d4fde14610571578063c002d23d1461059a576101b7565b80638da5cb5b116100c65780638da5cb5b1461049957806395d89b41146104c457806398133235146104ef578063a0712d681461052c576101b7565b8063715018a6146104425780637ba5e621146104595780638334278d14610470576101b7565b806332cb6b0c1161015957806355f804b31161013357806355f804b3146103745780635c975abb1461039d5780636352211e146103c857806370a0823114610405576101b7565b806332cb6b0c146103095780633ccfd60b1461033457806342842e0e1461034b576101b7565b8063095ea7b311610195578063095ea7b3146102615780630f2cdd6c1461028a57806318160ddd146102b557806323b872dd146102e0576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612188565b610693565b6040516101f091906125f0565b60405180910390f35b34801561020557600080fd5b5061020e610725565b60405161021b919061260b565b60405180910390f35b34801561023057600080fd5b5061024b6004803603810190610246919061222f565b6107b7565b6040516102589190612589565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612148565b610836565b005b34801561029657600080fd5b5061029f61097a565b6040516102ac919061276d565b60405180910390f35b3480156102c157600080fd5b506102ca610980565b6040516102d7919061276d565b60405180910390f35b3480156102ec57600080fd5b5061030760048036038101906103029190612032565b610997565b005b34801561031557600080fd5b5061031e610cbc565b60405161032b919061276d565b60405180910390f35b34801561034057600080fd5b50610349610cc2565b005b34801561035757600080fd5b50610372600480360381019061036d9190612032565b610d47565b005b34801561038057600080fd5b5061039b600480360381019061039691906121e2565b610d67565b005b3480156103a957600080fd5b506103b2610d85565b6040516103bf91906125f0565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea919061222f565b610d98565b6040516103fc9190612589565b60405180910390f35b34801561041157600080fd5b5061042c60048036038101906104279190611fc5565b610daa565b604051610439919061276d565b60405180910390f35b34801561044e57600080fd5b50610457610e63565b005b34801561046557600080fd5b5061046e610e77565b005b34801561047c57600080fd5b506104976004803603810190610492919061222f565b610eab565b005b3480156104a557600080fd5b506104ae610f17565b6040516104bb9190612589565b60405180910390f35b3480156104d057600080fd5b506104d9610f41565b6040516104e6919061260b565b60405180910390f35b3480156104fb57600080fd5b5061051660048036038101906105119190611fc5565b610fd3565b604051610523919061276d565b60405180910390f35b6105466004803603810190610541919061222f565b61101c565b005b34801561055457600080fd5b5061056f600480360381019061056a9190612108565b6111c2565b005b34801561057d57600080fd5b5061059860048036038101906105939190612085565b61133a565b005b3480156105a657600080fd5b506105af6113ad565b6040516105bc919061276d565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e7919061222f565b6113b3565b6040516105f9919061260b565b60405180910390f35b34801561060e57600080fd5b5061061761142f565b604051610624919061276d565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f9190611ff2565b611435565b60405161066191906125f0565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190611fc5565b6114c9565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ee57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061071e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461073490612a01565b80601f016020809104026020016040519081016040528092919081815260200182805461076090612a01565b80156107ad5780601f10610782576101008083540402835291602001916107ad565b820191906000526020600020905b81548152906001019060200180831161079057829003601f168201915b5050505050905090565b60006107c28261154d565b6107f8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061084182610d98565b90508073ffffffffffffffffffffffffffffffffffffffff166108626115ac565b73ffffffffffffffffffffffffffffffffffffffff16146108c55761088e816108896115ac565b611435565b6108c4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b600061098a6115b4565b6001546000540303905090565b60006109a2826115bd565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a09576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a158461168b565b91509150610a2b8187610a266115ac565b6116b2565b610a7757610a4086610a3b6115ac565b611435565b610a76576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ade576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610aeb86868660016116f6565b8015610af657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bc485610ba08888876116fc565b7c020000000000000000000000000000000000000000000000000000000017611724565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c4c576000600185019050600060046000838152602001908152602001600020541415610c4a576000548114610c49578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cb4868686600161174f565b505050505050565b600a5481565b610cca611755565b610cd2610f17565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c9061272d565b60405180910390fd5b565b610d628383836040518060200160405280600081525061133a565b505050565b610d6f611755565b8181600e9190610d80929190611df3565b505050565b600d60009054906101000a900460ff1681565b6000610da3826115bd565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e12576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e6b611755565b610e7560006117d3565b565b610e7f611755565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610eb3611755565b600a5481610ebf610980565b610ec99190612836565b1115610f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f019061266d565b60405180910390fd5b610f143382611899565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f5090612a01565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7c90612a01565b8015610fc95780601f10610f9e57610100808354040283529160200191610fc9565b820191906000526020600020905b815481529060010190602001808311610fac57829003601f168201915b5050505050905090565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600d60009054906101000a900460ff1661106b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110629061274d565b60405180910390fd5b6000611075610980565b9050600c548261108433610daa565b61108e9190612836565b11156110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c6906126ad565b60405180910390fd5b600a5482826110de9190612836565b111561111f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111169061262d565b60405180910390fd5b600b54821115611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b9061268d565b60405180910390fd5b8160095461117291906128bd565b3410156111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab906126cd565b60405180910390fd5b6111be3383611899565b5050565b6111ca6115ac565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561122f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061123c6115ac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112e96115ac565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161132e91906125f0565b60405180910390a35050565b611345848484610997565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113a757611370848484846118b7565b6113a6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60095481565b60606113be8261154d565b6113fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f4906126ed565b60405180910390fd5b600e61140883611a17565b60405160200161141992919061254f565b6040516020818303038152906040529050919050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114d1611755565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611541576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115389061264d565b60405180910390fd5b61154a816117d3565b50565b6000816115586115b4565b11158015611567575060005482105b80156115a5575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806115cc6115b4565b11611654576000548110156116535760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611651575b600081141561164757600460008360019003935083815260200190815260200160002054905061161c565b8092505050611686565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611713868684611b78565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61175d611b81565b73ffffffffffffffffffffffffffffffffffffffff1661177b610f17565b73ffffffffffffffffffffffffffffffffffffffff16146117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c89061270d565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6118b3828260405180602001604052806000815250611b89565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026118dd6115ac565b8786866040518563ffffffff1660e01b81526004016118ff94939291906125a4565b602060405180830381600087803b15801561191957600080fd5b505af192505050801561194a57506040513d601f19601f8201168201806040525081019061194791906121b5565b60015b6119c4573d806000811461197a576040519150601f19603f3d011682016040523d82523d6000602084013e61197f565b606091505b506000815114156119bc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611a5f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611b73565b600082905060005b60008214611a91578080611a7a90612a64565b915050600a82611a8a919061288c565b9150611a67565b60008167ffffffffffffffff811115611aad57611aac612b9a565b5b6040519080825280601f01601f191660200182016040528015611adf5781602001600182028036833780820191505090505b5090505b60008514611b6c57600182611af89190612917565b9150600a85611b079190612aad565b6030611b139190612836565b60f81b818381518110611b2957611b28612b6b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611b65919061288c565b9450611ae3565b8093505050505b919050565b60009392505050565b600033905090565b611b938383611c26565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c2157600080549050600083820390505b611bd360008683806001019450866118b7565b611c09576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611bc0578160005414611c1e57600080fd5b50505b505050565b6000805490506000821415611c67576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c7460008483856116f6565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611ceb83611cdc60008660006116fc565b611ce585611de3565b17611724565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611d8c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611d51565b506000821415611dc8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611dde600084838561174f565b505050565b60006001821460e11b9050919050565b828054611dff90612a01565b90600052602060002090601f016020900481019282611e215760008555611e68565b82601f10611e3a57803560ff1916838001178555611e68565b82800160010185558215611e68579182015b82811115611e67578235825591602001919060010190611e4c565b5b509050611e759190611e79565b5090565b5b80821115611e92576000816000905550600101611e7a565b5090565b6000611ea9611ea4846127ad565b612788565b905082815260208101848484011115611ec557611ec4612bd8565b5b611ed08482856129bf565b509392505050565b600081359050611ee781612e0a565b92915050565b600081359050611efc81612e21565b92915050565b600081359050611f1181612e38565b92915050565b600081519050611f2681612e38565b92915050565b600082601f830112611f4157611f40612bce565b5b8135611f51848260208601611e96565b91505092915050565b60008083601f840112611f7057611f6f612bce565b5b8235905067ffffffffffffffff811115611f8d57611f8c612bc9565b5b602083019150836001820283011115611fa957611fa8612bd3565b5b9250929050565b600081359050611fbf81612e4f565b92915050565b600060208284031215611fdb57611fda612be2565b5b6000611fe984828501611ed8565b91505092915050565b6000806040838503121561200957612008612be2565b5b600061201785828601611ed8565b925050602061202885828601611ed8565b9150509250929050565b60008060006060848603121561204b5761204a612be2565b5b600061205986828701611ed8565b935050602061206a86828701611ed8565b925050604061207b86828701611fb0565b9150509250925092565b6000806000806080858703121561209f5761209e612be2565b5b60006120ad87828801611ed8565b94505060206120be87828801611ed8565b93505060406120cf87828801611fb0565b925050606085013567ffffffffffffffff8111156120f0576120ef612bdd565b5b6120fc87828801611f2c565b91505092959194509250565b6000806040838503121561211f5761211e612be2565b5b600061212d85828601611ed8565b925050602061213e85828601611eed565b9150509250929050565b6000806040838503121561215f5761215e612be2565b5b600061216d85828601611ed8565b925050602061217e85828601611fb0565b9150509250929050565b60006020828403121561219e5761219d612be2565b5b60006121ac84828501611f02565b91505092915050565b6000602082840312156121cb576121ca612be2565b5b60006121d984828501611f17565b91505092915050565b600080602083850312156121f9576121f8612be2565b5b600083013567ffffffffffffffff81111561221757612216612bdd565b5b61222385828601611f5a565b92509250509250929050565b60006020828403121561224557612244612be2565b5b600061225384828501611fb0565b91505092915050565b6122658161294b565b82525050565b6122748161295d565b82525050565b6000612285826127f3565b61228f8185612809565b935061229f8185602086016129ce565b6122a881612be7565b840191505092915050565b60006122be826127fe565b6122c8818561281a565b93506122d88185602086016129ce565b6122e181612be7565b840191505092915050565b60006122f7826127fe565b612301818561282b565b93506123118185602086016129ce565b80840191505092915050565b6000815461232a81612a01565b612334818661282b565b9450600182166000811461234f576001811461236057612393565b60ff19831686528186019350612393565b612369856127de565b60005b8381101561238b5781548189015260018201915060208101905061236c565b838801955050505b50505092915050565b60006123a9600e8361281a565b91506123b482612bf8565b602082019050919050565b60006123cc60268361281a565b91506123d782612c21565b604082019050919050565b60006123ef60158361281a565b91506123fa82612c70565b602082019050919050565b600061241260128361281a565b915061241d82612c99565b602082019050919050565b6000612435601e8361281a565b915061244082612cc2565b602082019050919050565b600061245860178361281a565b915061246382612ceb565b602082019050919050565b600061247b60118361281a565b915061248682612d14565b602082019050919050565b600061249e60058361282b565b91506124a982612d3d565b600582019050919050565b60006124c160208361281a565b91506124cc82612d66565b602082019050919050565b60006124e460158361281a565b91506124ef82612d8f565b602082019050919050565b600061250760108361281a565b915061251282612db8565b602082019050919050565b600061252a60018361282b565b915061253582612de1565b600182019050919050565b612549816129b5565b82525050565b600061255b828561231d565b91506125668261251d565b915061257282846122ec565b915061257d82612491565b91508190509392505050565b600060208201905061259e600083018461225c565b92915050565b60006080820190506125b9600083018761225c565b6125c6602083018661225c565b6125d36040830185612540565b81810360608301526125e5818461227a565b905095945050505050565b6000602082019050612605600083018461226b565b92915050565b6000602082019050818103600083015261262581846122b3565b905092915050565b600060208201905081810360008301526126468161239c565b9050919050565b60006020820190508181036000830152612666816123bf565b9050919050565b60006020820190508181036000830152612686816123e2565b9050919050565b600060208201905081810360008301526126a681612405565b9050919050565b600060208201905081810360008301526126c681612428565b9050919050565b600060208201905081810360008301526126e68161244b565b9050919050565b600060208201905081810360008301526127068161246e565b9050919050565b60006020820190508181036000830152612726816124b4565b9050919050565b60006020820190508181036000830152612746816124d7565b9050919050565b60006020820190508181036000830152612766816124fa565b9050919050565b60006020820190506127826000830184612540565b92915050565b60006127926127a3565b905061279e8282612a33565b919050565b6000604051905090565b600067ffffffffffffffff8211156127c8576127c7612b9a565b5b6127d182612be7565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612841826129b5565b915061284c836129b5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561288157612880612ade565b5b828201905092915050565b6000612897826129b5565b91506128a2836129b5565b9250826128b2576128b1612b0d565b5b828204905092915050565b60006128c8826129b5565b91506128d3836129b5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561290c5761290b612ade565b5b828202905092915050565b6000612922826129b5565b915061292d836129b5565b9250828210156129405761293f612ade565b5b828203905092915050565b600061295682612995565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156129ec5780820151818401526020810190506129d1565b838111156129fb576000848401525b50505050565b60006002820490506001821680612a1957607f821691505b60208210811415612a2d57612a2c612b3c565b5b50919050565b612a3c82612be7565b810181811067ffffffffffffffff82111715612a5b57612a5a612b9a565b5b80604052505050565b6000612a6f826129b5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612aa257612aa1612ade565b5b600182019050919050565b6000612ab8826129b5565b9150612ac3836129b5565b925082612ad357612ad2612b0d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4578636565647320737570706c79000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f20726573657276650000000000000000000000600082015250565b7f45786365656473206d6178207065722074780000000000000000000000000000600082015250565b7f4d6178206d696e7473207065722077616c6c6574206578636565646564200000600082015250565b7f496e73756666696369656e74204d696e742056616c7565000000000000000000600082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f576974686472617720756e7375636365737366756c0000000000000000000000600082015250565b7f53616c65206973206e6f74206f70656e00000000000000000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b612e138161294b565b8114612e1e57600080fd5b50565b612e2a8161295d565b8114612e3557600080fd5b50565b612e4181612969565b8114612e4c57600080fd5b50565b612e58816129b5565b8114612e6357600080fd5b5056fea26469706673582212206681c5abc6c1e0d5dec933b8911b459c6c332d7bf79459c1d294d5eea34420fa64736f6c63430008070033

Deployed Bytecode Sourcemap

57021:2339:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24558:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25460:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31943:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31384:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57242:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21211:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35650:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57158:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58873:173;;;;;;;;;;;;;:::i;:::-;;38563:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58322:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57283:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26853:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22395:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5306:103;;;;;;;;;;;;;:::i;:::-;;58546:74;;;;;;;;;;;;;:::i;:::-;;58628:237;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4658:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25636:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58092:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57551:533;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32501:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39346:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57113:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59054:303;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57197:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32966:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5564:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24558:639;24643:4;24982:10;24967:25;;:11;:25;;;;:102;;;;25059:10;25044:25;;:11;:25;;;;24967:102;:179;;;;25136:10;25121:25;;:11;:25;;;;24967:179;24947:199;;24558:639;;;:::o;25460:100::-;25514:13;25547:5;25540:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25460:100;:::o;31943:218::-;32019:7;32044:16;32052:7;32044;:16::i;:::-;32039:64;;32069:34;;;;;;;;;;;;;;32039:64;32123:15;:24;32139:7;32123:24;;;;;;;;;;;:30;;;;;;;;;;;;32116:37;;31943:218;;;:::o;31384:400::-;31465:13;31481:16;31489:7;31481;:16::i;:::-;31465:32;;31537:5;31514:28;;:19;:17;:19::i;:::-;:28;;;31510:175;;31562:44;31579:5;31586:19;:17;:19::i;:::-;31562:16;:44::i;:::-;31557:128;;31634:35;;;;;;;;;;;;;;31557:128;31510:175;31730:2;31697:15;:24;31713:7;31697:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31768:7;31764:2;31748:28;;31757:5;31748:28;;;;;;;;;;;;31454:330;31384:400;;:::o;57242:34::-;;;;:::o;21211:323::-;21272:7;21500:15;:13;:15::i;:::-;21485:12;;21469:13;;:28;:46;21462:53;;21211:323;:::o;35650:2817::-;35784:27;35814;35833:7;35814:18;:27::i;:::-;35784:57;;35899:4;35858:45;;35874:19;35858:45;;;35854:86;;35912:28;;;;;;;;;;;;;;35854:86;35954:27;35983:23;36010:35;36037:7;36010:26;:35::i;:::-;35953:92;;;;36145:68;36170:15;36187:4;36193:19;:17;:19::i;:::-;36145:24;:68::i;:::-;36140:180;;36233:43;36250:4;36256:19;:17;:19::i;:::-;36233:16;:43::i;:::-;36228:92;;36285:35;;;;;;;;;;;;;;36228:92;36140:180;36351:1;36337:16;;:2;:16;;;36333:52;;;36362:23;;;;;;;;;;;;;;36333:52;36398:43;36420:4;36426:2;36430:7;36439:1;36398:21;:43::i;:::-;36534:15;36531:160;;;36674:1;36653:19;36646:30;36531:160;37071:18;:24;37090:4;37071:24;;;;;;;;;;;;;;;;37069:26;;;;;;;;;;;;37140:18;:22;37159:2;37140:22;;;;;;;;;;;;;;;;37138:24;;;;;;;;;;;37462:146;37499:2;37548:45;37563:4;37569:2;37573:19;37548:14;:45::i;:::-;17610:8;37520:73;37462:18;:146::i;:::-;37433:17;:26;37451:7;37433:26;;;;;;;;;;;:175;;;;37779:1;17610:8;37728:19;:47;:52;37724:627;;;37801:19;37833:1;37823:7;:11;37801:33;;37990:1;37956:17;:30;37974:11;37956:30;;;;;;;;;;;;:35;37952:384;;;38094:13;;38079:11;:28;38075:242;;38274:19;38241:17;:30;38259:11;38241:30;;;;;;;;;;;:52;;;;38075:242;37952:384;37782:569;37724:627;38398:7;38394:2;38379:27;;38388:4;38379:27;;;;;;;;;;;;38417:42;38438:4;38444:2;38448:7;38457:1;38417:20;:42::i;:::-;35773:2694;;;35650:2817;;;:::o;57158:32::-;;;;:::o;58873:173::-;4544:13;:11;:13::i;:::-;58953:7:::1;:5;:7::i;:::-;58945:21;;:44;58967:21;58945:44;;;;;;;;;;;;;;;;;;;;;;;58923:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;58873:173::o:0;38563:185::-;38701:39;38718:4;38724:2;38728:7;38701:39;;;;;;;;;;;;:16;:39::i;:::-;38563:185;;;:::o;58322:108::-;4544:13;:11;:13::i;:::-;58411:11:::1;;58401:7;:21;;;;;;;:::i;:::-;;58322:108:::0;;:::o;57283:25::-;;;;;;;;;;;;;:::o;26853:152::-;26925:7;26968:27;26987:7;26968:18;:27::i;:::-;26945:52;;26853:152;;;:::o;22395:233::-;22467:7;22508:1;22491:19;;:5;:19;;;22487:60;;;22519:28;;;;;;;;;;;;;;22487:60;16554:13;22565:18;:25;22584:5;22565:25;;;;;;;;;;;;;;;;:55;22558:62;;22395:233;;;:::o;5306:103::-;4544:13;:11;:13::i;:::-;5371:30:::1;5398:1;5371:18;:30::i;:::-;5306:103::o:0;58546:74::-;4544:13;:11;:13::i;:::-;58606:6:::1;;;;;;;;;;;58605:7;58596:6;;:16;;;;;;;;;;;;;;;;;;58546:74::o:0;58628:237::-;4544:13;:11;:13::i;:::-;58752:10:::1;;58736:12;58720:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:42;;58698:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;58822:35;58832:10;58844:12;58822:9;:35::i;:::-;58628:237:::0;:::o;4658:87::-;4704:7;4731:6;;;;;;;;;;;4724:13;;4658:87;:::o;25636:104::-;25692:13;25725:7;25718:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25636:104;:::o;58092:121::-;58155:7;58182:16;:23;58199:5;58182:23;;;;;;;;;;;;;;;;58175:30;;58092:121;;;:::o;57551:533::-;57620:6;;;;;;;;;;;57612:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;57658:20;57681:13;:11;:13::i;:::-;57658:36;;57749:14;;57736:9;57713:21;57723:10;57713:9;:21::i;:::-;:32;;;;:::i;:::-;:50;;57705:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;57846:10;;57833:9;57818:12;:24;;;;:::i;:::-;:38;;57809:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;57907:19;;57894:9;:32;;57886:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;57994:9;57981:10;;:22;;;;:::i;:::-;57968:9;:35;;57960:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;58044:32;58054:10;58066:9;58044;:32::i;:::-;57601:483;57551:533;:::o;32501:308::-;32612:19;:17;:19::i;:::-;32600:31;;:8;:31;;;32596:61;;;32640:17;;;;;;;;;;;;;;32596:61;32722:8;32670:18;:39;32689:19;:17;:19::i;:::-;32670:39;;;;;;;;;;;;;;;:49;32710:8;32670:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32782:8;32746:55;;32761:19;:17;:19::i;:::-;32746:55;;;32792:8;32746:55;;;;;;:::i;:::-;;;;;;;;32501:308;;:::o;39346:399::-;39513:31;39526:4;39532:2;39536:7;39513:12;:31::i;:::-;39577:1;39559:2;:14;;;:19;39555:183;;39598:56;39629:4;39635:2;39639:7;39648:5;39598:30;:56::i;:::-;39593:145;;39682:40;;;;;;;;;;;;;;39593:145;39555:183;39346:399;;;;:::o;57113:38::-;;;;:::o;59054:303::-;59172:13;59211:16;59219:7;59211;:16::i;:::-;59203:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;59306:7;59320:18;:7;:16;:18::i;:::-;59289:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59262:87;;59054:303;;;:::o;57197:38::-;;;;:::o;32966:164::-;33063:4;33087:18;:25;33106:5;33087:25;;;;;;;;;;;;;;;:35;33113:8;33087:35;;;;;;;;;;;;;;;;;;;;;;;;;33080:42;;32966:164;;;;:::o;5564:201::-;4544:13;:11;:13::i;:::-;5673:1:::1;5653:22;;:8;:22;;;;5645:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5729:28;5748:8;5729:18;:28::i;:::-;5564:201:::0;:::o;33388:282::-;33453:4;33509:7;33490:15;:13;:15::i;:::-;:26;;:66;;;;;33543:13;;33533:7;:23;33490:66;:153;;;;;33642:1;17330:8;33594:17;:26;33612:7;33594:26;;;;;;;;;;;;:44;:49;33490:153;33470:173;;33388:282;;;:::o;55154:105::-;55214:7;55241:10;55234:17;;55154:105;:::o;58221:93::-;58278:7;58305:1;58298:8;;58221:93;:::o;28008:1275::-;28075:7;28095:12;28110:7;28095:22;;28178:4;28159:15;:13;:15::i;:::-;:23;28155:1061;;28212:13;;28205:4;:20;28201:1015;;;28250:14;28267:17;:23;28285:4;28267:23;;;;;;;;;;;;28250:40;;28384:1;17330:8;28356:6;:24;:29;28352:845;;;29021:113;29038:1;29028:6;:11;29021:113;;;29081:17;:25;29099:6;;;;;;;29081:25;;;;;;;;;;;;29072:34;;29021:113;;;29167:6;29160:13;;;;;;28352:845;28227:989;28201:1015;28155:1061;29244:31;;;;;;;;;;;;;;28008:1275;;;;:::o;34551:479::-;34653:27;34682:23;34723:38;34764:15;:24;34780:7;34764:24;;;;;;;;;;;34723:65;;34935:18;34912:41;;34992:19;34986:26;34967:45;;34897:126;34551:479;;;:::o;33779:659::-;33928:11;34093:16;34086:5;34082:28;34073:37;;34253:16;34242:9;34238:32;34225:45;;34403:15;34392:9;34389:30;34381:5;34370:9;34367:20;34364:56;34354:66;;33779:659;;;;;:::o;40407:159::-;;;;;:::o;54463:311::-;54598:7;54618:16;17734:3;54644:19;:41;;54618:68;;17734:3;54712:31;54723:4;54729:2;54733:9;54712:10;:31::i;:::-;54704:40;;:62;;54697:69;;;54463:311;;;;;:::o;29831:450::-;29911:14;30079:16;30072:5;30068:28;30059:37;;30256:5;30242:11;30217:23;30213:41;30210:52;30203:5;30200:63;30190:73;;29831:450;;;;:::o;41231:158::-;;;;;:::o;4823:132::-;4898:12;:10;:12::i;:::-;4887:23;;:7;:5;:7::i;:::-;:23;;;4879:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4823:132::o;5925:191::-;5999:16;6018:6;;;;;;;;;;;5999:25;;6044:8;6035:6;;:17;;;;;;;;;;;;;;;;;;6099:8;6068:40;;6089:8;6068:40;;;;;;;;;;;;5988:128;5925:191;:::o;48986:112::-;49063:27;49073:2;49077:8;49063:27;;;;;;;;;;;;:9;:27::i;:::-;48986:112;;:::o;41829:716::-;41992:4;42038:2;42013:45;;;42059:19;:17;:19::i;:::-;42080:4;42086:7;42095:5;42013:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42009:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42313:1;42296:6;:13;:18;42292:235;;;42342:40;;;;;;;;;;;;;;42292:235;42485:6;42479:13;42470:6;42466:2;42462:15;42455:38;42009:529;42182:54;;;42172:64;;;:6;:64;;;;42165:71;;;41829:716;;;;;;:::o;463:723::-;519:13;749:1;740:5;:10;736:53;;;767:10;;;;;;;;;;;;;;;;;;;;;736:53;799:12;814:5;799:20;;830:14;855:78;870:1;862:4;:9;855:78;;888:8;;;;;:::i;:::-;;;;919:2;911:10;;;;;:::i;:::-;;;855:78;;;943:19;975:6;965:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;943:39;;993:154;1009:1;1000:5;:10;993:154;;1037:1;1027:11;;;;;:::i;:::-;;;1104:2;1096:5;:10;;;;:::i;:::-;1083:2;:24;;;;:::i;:::-;1070:39;;1053:6;1060;1053:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1133:2;1124:11;;;;;:::i;:::-;;;993:154;;;1171:6;1157:21;;;;;463:723;;;;:::o;54164:147::-;54301:6;54164:147;;;;;:::o;3209:98::-;3262:7;3289:10;3282:17;;3209:98;:::o;48213:689::-;48344:19;48350:2;48354:8;48344:5;:19::i;:::-;48423:1;48405:2;:14;;;:19;48401:483;;48445:11;48459:13;;48445:27;;48491:13;48513:8;48507:3;:14;48491:30;;48540:233;48571:62;48610:1;48614:2;48618:7;;;;;;48627:5;48571:30;:62::i;:::-;48566:167;;48669:40;;;;;;;;;;;;;;48566:167;48768:3;48760:5;:11;48540:233;;48855:3;48838:13;;:20;48834:34;;48860:8;;;48834:34;48426:458;;48401:483;48213:689;;;:::o;43007:2454::-;43080:20;43103:13;;43080:36;;43143:1;43131:8;:13;43127:44;;;43153:18;;;;;;;;;;;;;;43127:44;43184:61;43214:1;43218:2;43222:12;43236:8;43184:21;:61::i;:::-;43728:1;16692:2;43698:1;:26;;43697:32;43685:8;:45;43659:18;:22;43678:2;43659:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;44007:139;44044:2;44098:33;44121:1;44125:2;44129:1;44098:14;:33::i;:::-;44065:30;44086:8;44065:20;:30::i;:::-;:66;44007:18;:139::i;:::-;43973:17;:31;43991:12;43973:31;;;;;;;;;;;:173;;;;44163:16;44194:11;44223:8;44208:12;:23;44194:37;;44478:16;44474:2;44470:25;44458:37;;44850:12;44810:8;44769:1;44707:25;44648:1;44587;44560:335;44975:1;44961:12;44957:20;44915:346;45016:3;45007:7;45004:16;44915:346;;45234:7;45224:8;45221:1;45194:25;45191:1;45188;45183:59;45069:1;45060:7;45056:15;45045:26;;44915:346;;;44919:77;45306:1;45294:8;:13;45290:45;;;45316:19;;;;;;;;;;;;;;45290:45;45368:3;45352:13;:19;;;;43433:1950;;45393:60;45422:1;45426:2;45430:12;45444:8;45393:20;:60::i;:::-;43069:2392;43007:2454;;:::o;30383:324::-;30453:14;30686:1;30676:8;30673:15;30647:24;30643:46;30633:56;;30383:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8355:845::-;8458:3;8495:5;8489:12;8524:36;8550:9;8524:36;:::i;:::-;8576:89;8658:6;8653:3;8576:89;:::i;:::-;8569:96;;8696:1;8685:9;8681:17;8712:1;8707:137;;;;8858:1;8853:341;;;;8674:520;;8707:137;8791:4;8787:9;8776;8772:25;8767:3;8760:38;8827:6;8822:3;8818:16;8811:23;;8707:137;;8853:341;8920:38;8952:5;8920:38;:::i;:::-;8980:1;8994:154;9008:6;9005:1;9002:13;8994:154;;;9082:7;9076:14;9072:1;9067:3;9063:11;9056:35;9132:1;9123:7;9119:15;9108:26;;9030:4;9027:1;9023:12;9018:17;;8994:154;;;9177:6;9172:3;9168:16;9161:23;;8860:334;;8674:520;;8462:738;;8355:845;;;;:::o;9206:366::-;9348:3;9369:67;9433:2;9428:3;9369:67;:::i;:::-;9362:74;;9445:93;9534:3;9445:93;:::i;:::-;9563:2;9558:3;9554:12;9547:19;;9206:366;;;:::o;9578:::-;9720:3;9741:67;9805:2;9800:3;9741:67;:::i;:::-;9734:74;;9817:93;9906:3;9817:93;:::i;:::-;9935:2;9930:3;9926:12;9919:19;;9578:366;;;:::o;9950:::-;10092:3;10113:67;10177:2;10172:3;10113:67;:::i;:::-;10106:74;;10189:93;10278:3;10189:93;:::i;:::-;10307:2;10302:3;10298:12;10291:19;;9950:366;;;:::o;10322:::-;10464:3;10485:67;10549:2;10544:3;10485:67;:::i;:::-;10478:74;;10561:93;10650:3;10561:93;:::i;:::-;10679:2;10674:3;10670:12;10663:19;;10322:366;;;:::o;10694:::-;10836:3;10857:67;10921:2;10916:3;10857:67;:::i;:::-;10850:74;;10933:93;11022:3;10933:93;:::i;:::-;11051:2;11046:3;11042:12;11035:19;;10694:366;;;:::o;11066:::-;11208:3;11229:67;11293:2;11288:3;11229:67;:::i;:::-;11222:74;;11305:93;11394:3;11305:93;:::i;:::-;11423:2;11418:3;11414:12;11407:19;;11066:366;;;:::o;11438:::-;11580:3;11601:67;11665:2;11660:3;11601:67;:::i;:::-;11594:74;;11677:93;11766:3;11677:93;:::i;:::-;11795:2;11790:3;11786:12;11779:19;;11438:366;;;:::o;11810:400::-;11970:3;11991:84;12073:1;12068:3;11991:84;:::i;:::-;11984:91;;12084:93;12173:3;12084:93;:::i;:::-;12202:1;12197:3;12193:11;12186:18;;11810:400;;;:::o;12216:366::-;12358:3;12379:67;12443:2;12438:3;12379:67;:::i;:::-;12372:74;;12455:93;12544:3;12455:93;:::i;:::-;12573:2;12568:3;12564:12;12557:19;;12216:366;;;:::o;12588:::-;12730:3;12751:67;12815:2;12810:3;12751:67;:::i;:::-;12744:74;;12827:93;12916:3;12827:93;:::i;:::-;12945:2;12940:3;12936:12;12929:19;;12588:366;;;:::o;12960:::-;13102:3;13123:67;13187:2;13182:3;13123:67;:::i;:::-;13116:74;;13199:93;13288:3;13199:93;:::i;:::-;13317:2;13312:3;13308:12;13301:19;;12960:366;;;:::o;13332:400::-;13492:3;13513:84;13595:1;13590:3;13513:84;:::i;:::-;13506:91;;13606:93;13695:3;13606:93;:::i;:::-;13724:1;13719:3;13715:11;13708:18;;13332:400;;;:::o;13738:118::-;13825:24;13843:5;13825:24;:::i;:::-;13820:3;13813:37;13738:118;;:::o;13862:961::-;14241:3;14263:92;14351:3;14342:6;14263:92;:::i;:::-;14256:99;;14372:148;14516:3;14372:148;:::i;:::-;14365:155;;14537:95;14628:3;14619:6;14537:95;:::i;:::-;14530:102;;14649:148;14793:3;14649:148;:::i;:::-;14642:155;;14814:3;14807:10;;13862:961;;;;;:::o;14829:222::-;14922:4;14960:2;14949:9;14945:18;14937:26;;14973:71;15041:1;15030:9;15026:17;15017:6;14973:71;:::i;:::-;14829:222;;;;:::o;15057:640::-;15252:4;15290:3;15279:9;15275:19;15267:27;;15304:71;15372:1;15361:9;15357:17;15348:6;15304:71;:::i;:::-;15385:72;15453:2;15442:9;15438:18;15429:6;15385:72;:::i;:::-;15467;15535:2;15524:9;15520:18;15511:6;15467:72;:::i;:::-;15586:9;15580:4;15576:20;15571:2;15560:9;15556:18;15549:48;15614:76;15685:4;15676:6;15614:76;:::i;:::-;15606:84;;15057:640;;;;;;;:::o;15703:210::-;15790:4;15828:2;15817:9;15813:18;15805:26;;15841:65;15903:1;15892:9;15888:17;15879:6;15841:65;:::i;:::-;15703:210;;;;:::o;15919:313::-;16032:4;16070:2;16059:9;16055:18;16047:26;;16119:9;16113:4;16109:20;16105:1;16094:9;16090:17;16083:47;16147:78;16220:4;16211:6;16147:78;:::i;:::-;16139:86;;15919:313;;;;:::o;16238:419::-;16404:4;16442:2;16431:9;16427:18;16419:26;;16491:9;16485:4;16481:20;16477:1;16466:9;16462:17;16455:47;16519:131;16645:4;16519:131;:::i;:::-;16511:139;;16238:419;;;:::o;16663:::-;16829:4;16867:2;16856:9;16852:18;16844:26;;16916:9;16910:4;16906:20;16902:1;16891:9;16887:17;16880:47;16944:131;17070:4;16944:131;:::i;:::-;16936:139;;16663:419;;;:::o;17088:::-;17254:4;17292:2;17281:9;17277:18;17269:26;;17341:9;17335:4;17331:20;17327:1;17316:9;17312:17;17305:47;17369:131;17495:4;17369:131;:::i;:::-;17361:139;;17088:419;;;:::o;17513:::-;17679:4;17717:2;17706:9;17702:18;17694:26;;17766:9;17760:4;17756:20;17752:1;17741:9;17737:17;17730:47;17794:131;17920:4;17794:131;:::i;:::-;17786:139;;17513:419;;;:::o;17938:::-;18104:4;18142:2;18131:9;18127:18;18119:26;;18191:9;18185:4;18181:20;18177:1;18166:9;18162:17;18155:47;18219:131;18345:4;18219:131;:::i;:::-;18211:139;;17938:419;;;:::o;18363:::-;18529:4;18567:2;18556:9;18552:18;18544:26;;18616:9;18610:4;18606:20;18602:1;18591:9;18587:17;18580:47;18644:131;18770:4;18644:131;:::i;:::-;18636:139;;18363:419;;;:::o;18788:::-;18954:4;18992:2;18981:9;18977:18;18969:26;;19041:9;19035:4;19031:20;19027:1;19016:9;19012:17;19005:47;19069:131;19195:4;19069:131;:::i;:::-;19061:139;;18788:419;;;:::o;19213:::-;19379:4;19417:2;19406:9;19402:18;19394:26;;19466:9;19460:4;19456:20;19452:1;19441:9;19437:17;19430:47;19494:131;19620:4;19494:131;:::i;:::-;19486:139;;19213:419;;;:::o;19638:::-;19804:4;19842:2;19831:9;19827:18;19819:26;;19891:9;19885:4;19881:20;19877:1;19866:9;19862:17;19855:47;19919:131;20045:4;19919:131;:::i;:::-;19911:139;;19638:419;;;:::o;20063:::-;20229:4;20267:2;20256:9;20252:18;20244:26;;20316:9;20310:4;20306:20;20302:1;20291:9;20287:17;20280:47;20344:131;20470:4;20344:131;:::i;:::-;20336:139;;20063:419;;;:::o;20488:222::-;20581:4;20619:2;20608:9;20604:18;20596:26;;20632:71;20700:1;20689:9;20685:17;20676:6;20632:71;:::i;:::-;20488:222;;;;:::o;20716:129::-;20750:6;20777:20;;:::i;:::-;20767:30;;20806:33;20834:4;20826:6;20806:33;:::i;:::-;20716:129;;;:::o;20851:75::-;20884:6;20917:2;20911:9;20901:19;;20851:75;:::o;20932:307::-;20993:4;21083:18;21075:6;21072:30;21069:56;;;21105:18;;:::i;:::-;21069:56;21143:29;21165:6;21143:29;:::i;:::-;21135:37;;21227:4;21221;21217:15;21209:23;;20932:307;;;:::o;21245:141::-;21294:4;21317:3;21309:11;;21340:3;21337:1;21330:14;21374:4;21371:1;21361:18;21353:26;;21245:141;;;:::o;21392:98::-;21443:6;21477:5;21471:12;21461:22;;21392:98;;;:::o;21496:99::-;21548:6;21582:5;21576:12;21566:22;;21496:99;;;:::o;21601:168::-;21684:11;21718:6;21713:3;21706:19;21758:4;21753:3;21749:14;21734:29;;21601:168;;;;:::o;21775:169::-;21859:11;21893:6;21888:3;21881:19;21933:4;21928:3;21924:14;21909:29;;21775:169;;;;:::o;21950:148::-;22052:11;22089:3;22074:18;;21950:148;;;;:::o;22104:305::-;22144:3;22163:20;22181:1;22163:20;:::i;:::-;22158:25;;22197:20;22215:1;22197:20;:::i;:::-;22192:25;;22351:1;22283:66;22279:74;22276:1;22273:81;22270:107;;;22357:18;;:::i;:::-;22270:107;22401:1;22398;22394:9;22387:16;;22104:305;;;;:::o;22415:185::-;22455:1;22472:20;22490:1;22472:20;:::i;:::-;22467:25;;22506:20;22524:1;22506:20;:::i;:::-;22501:25;;22545:1;22535:35;;22550:18;;:::i;:::-;22535:35;22592:1;22589;22585:9;22580:14;;22415:185;;;;:::o;22606:348::-;22646:7;22669:20;22687:1;22669:20;:::i;:::-;22664:25;;22703:20;22721:1;22703:20;:::i;:::-;22698:25;;22891:1;22823:66;22819:74;22816:1;22813:81;22808:1;22801:9;22794:17;22790:105;22787:131;;;22898:18;;:::i;:::-;22787:131;22946:1;22943;22939:9;22928:20;;22606:348;;;;:::o;22960:191::-;23000:4;23020:20;23038:1;23020:20;:::i;:::-;23015:25;;23054:20;23072:1;23054:20;:::i;:::-;23049:25;;23093:1;23090;23087:8;23084:34;;;23098:18;;:::i;:::-;23084:34;23143:1;23140;23136:9;23128:17;;22960:191;;;;:::o;23157:96::-;23194:7;23223:24;23241:5;23223:24;:::i;:::-;23212:35;;23157:96;;;:::o;23259:90::-;23293:7;23336:5;23329:13;23322:21;23311:32;;23259:90;;;:::o;23355:149::-;23391:7;23431:66;23424:5;23420:78;23409:89;;23355:149;;;:::o;23510:126::-;23547:7;23587:42;23580:5;23576:54;23565:65;;23510:126;;;:::o;23642:77::-;23679:7;23708:5;23697:16;;23642:77;;;:::o;23725:154::-;23809:6;23804:3;23799;23786:30;23871:1;23862:6;23857:3;23853:16;23846:27;23725:154;;;:::o;23885:307::-;23953:1;23963:113;23977:6;23974:1;23971:13;23963:113;;;24062:1;24057:3;24053:11;24047:18;24043:1;24038:3;24034:11;24027:39;23999:2;23996:1;23992:10;23987:15;;23963:113;;;24094:6;24091:1;24088:13;24085:101;;;24174:1;24165:6;24160:3;24156:16;24149:27;24085:101;23934:258;23885:307;;;:::o;24198:320::-;24242:6;24279:1;24273:4;24269:12;24259:22;;24326:1;24320:4;24316:12;24347:18;24337:81;;24403:4;24395:6;24391:17;24381:27;;24337:81;24465:2;24457:6;24454:14;24434:18;24431:38;24428:84;;;24484:18;;:::i;:::-;24428:84;24249:269;24198:320;;;:::o;24524:281::-;24607:27;24629:4;24607:27;:::i;:::-;24599:6;24595:40;24737:6;24725:10;24722:22;24701:18;24689:10;24686:34;24683:62;24680:88;;;24748:18;;:::i;:::-;24680:88;24788:10;24784:2;24777:22;24567:238;24524:281;;:::o;24811:233::-;24850:3;24873:24;24891:5;24873:24;:::i;:::-;24864:33;;24919:66;24912:5;24909:77;24906:103;;;24989:18;;:::i;:::-;24906:103;25036:1;25029:5;25025:13;25018:20;;24811:233;;;:::o;25050:176::-;25082:1;25099:20;25117:1;25099:20;:::i;:::-;25094:25;;25133:20;25151:1;25133:20;:::i;:::-;25128:25;;25172:1;25162:35;;25177:18;;:::i;:::-;25162:35;25218:1;25215;25211:9;25206:14;;25050:176;;;;:::o;25232:180::-;25280:77;25277:1;25270:88;25377:4;25374:1;25367:15;25401:4;25398:1;25391:15;25418:180;25466:77;25463:1;25456:88;25563:4;25560:1;25553:15;25587:4;25584:1;25577:15;25604:180;25652:77;25649:1;25642:88;25749:4;25746:1;25739:15;25773:4;25770:1;25763:15;25790:180;25838:77;25835:1;25828:88;25935:4;25932:1;25925:15;25959:4;25956:1;25949:15;25976:180;26024:77;26021:1;26014:88;26121:4;26118:1;26111:15;26145:4;26142:1;26135:15;26162:117;26271:1;26268;26261:12;26285:117;26394:1;26391;26384:12;26408:117;26517:1;26514;26507:12;26531:117;26640:1;26637;26630:12;26654:117;26763:1;26760;26753:12;26777:117;26886:1;26883;26876:12;26900:102;26941:6;26992:2;26988:7;26983:2;26976:5;26972:14;26968:28;26958:38;;26900:102;;;:::o;27008:164::-;27148:16;27144:1;27136:6;27132:14;27125:40;27008:164;:::o;27178:225::-;27318:34;27314:1;27306:6;27302:14;27295:58;27387:8;27382:2;27374:6;27370:15;27363:33;27178:225;:::o;27409:171::-;27549:23;27545:1;27537:6;27533:14;27526:47;27409:171;:::o;27586:168::-;27726:20;27722:1;27714:6;27710:14;27703:44;27586:168;:::o;27760:180::-;27900:32;27896:1;27888:6;27884:14;27877:56;27760:180;:::o;27946:173::-;28086:25;28082:1;28074:6;28070:14;28063:49;27946:173;:::o;28125:167::-;28265:19;28261:1;28253:6;28249:14;28242:43;28125:167;:::o;28298:155::-;28438:7;28434:1;28426:6;28422:14;28415:31;28298:155;:::o;28459:182::-;28599:34;28595:1;28587:6;28583:14;28576:58;28459:182;:::o;28647:171::-;28787:23;28783:1;28775:6;28771:14;28764:47;28647:171;:::o;28824:166::-;28964:18;28960:1;28952:6;28948:14;28941:42;28824:166;:::o;28996:151::-;29136:3;29132:1;29124:6;29120:14;29113:27;28996:151;:::o;29153:122::-;29226:24;29244:5;29226:24;:::i;:::-;29219:5;29216:35;29206:63;;29265:1;29262;29255:12;29206:63;29153:122;:::o;29281:116::-;29351:21;29366:5;29351:21;:::i;:::-;29344:5;29341:32;29331:60;;29387:1;29384;29377:12;29331:60;29281:116;:::o;29403:120::-;29475:23;29492:5;29475:23;:::i;:::-;29468:5;29465:34;29455:62;;29513:1;29510;29503:12;29455:62;29403:120;:::o;29529:122::-;29602:24;29620:5;29602:24;:::i;:::-;29595:5;29592:35;29582:63;;29641:1;29638;29631:12;29582:63;29529:122;:::o

Swarm Source

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