ETH Price: $2,871.81 (-2.62%)
 

Overview

Max Total Supply

116 DAA

Holders

103

Transfers

-
0

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
AristocratApe

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at basescan.org on 2023-08-24
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/[email protected]/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/[email protected]/utils/Counters.sol


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/[email protected]/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/[email protected]/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

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

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

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

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

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

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => TokenApprovalRef) private _tokenApprovals;

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

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

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

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

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

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

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

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

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

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

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

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

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

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

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

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

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

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

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

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

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

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

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

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

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

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

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

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

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

// File: deploy 21.08/4.sol


pragma solidity ^0.8.9;





contract AristocratApe is ERC721A, Ownable {
    using Counters for Counters.Counter;
    uint public constant MAX_SUPPLY = 180;

    uint256 private _flag = 0;
    uint256 private _flagForFree = 1;

    string private _defTokenURI = "https://ipfs.io/ipfs/QmYKXByTzQPW6e4QzZ3kNyJr1gFrN846h4qoQfXcdgoHy1";
    string private _baseTokenURI = "";

    mapping(address => bool) private _hasMinted;
    mapping(uint256 => uint256) private amountToPrice;

    event NewMint(address indexed msgSender, uint256 indexed mintQuantity);

    Counters.Counter private _tokenIdCounter;

    constructor() ERC721A("The Aristocrat Ape", "DAA") {

    }
   
    function _startTokenId() internal view override virtual returns (uint256) {
        return 1;
    }
    function transferOut(address _to) public onlyOwner {
        uint256 balance = address(this).balance;
        payable(_to).transfer(balance);
    }

    function changeTokenURIFlag(uint256 flag) external onlyOwner {
        _flag = flag;
    }
    function changeFreeFlag(uint256 flag) external onlyOwner {
        _flagForFree = flag;
    }
    function changeDefURI(string calldata _tokenURI) external onlyOwner {
        _defTokenURI = _tokenURI;
    }
    function changeURI(string calldata _tokenURI) external onlyOwner {
        _baseTokenURI = _tokenURI;
    }

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

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        if (_flag == 0) {
            return _defTokenURI;
        } else {
            require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
            return string(abi.encodePacked(_baseTokenURI, Strings.toString(tokenId)));
        }
    }

    function ownerMint(uint256 quantity) public payable onlyOwner {
        _safeMint(msg.sender, quantity);
        emit NewMint(msg.sender, quantity);
    }

    function mint(uint256 quantity) public payable {
        require(totalSupply() + quantity <= MAX_SUPPLY, "ERC721: Exceeds maximum supply");
        if (quantity == 1) {
            require(msg.value >= 0.00099 ether, "ERC721: Insufficient payment");
        } else if (quantity == 3) {
            require(msg.value >= 0.0025 ether, "ERC721: Insufficient payment");
        } else if (quantity == 5) {
            require(msg.value >= 0.004 ether, "ERC721: Insufficient payment");
        } else {
            require(msg.value >= 0.09 ether, "ERC721: Insufficient payment");
        }
        _safeMint(msg.sender, quantity);
        emit NewMint(msg.sender, quantity);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"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":"msgSender","type":"address"},{"indexed":true,"internalType":"uint256","name":"mintQuantity","type":"uint256"}],"name":"NewMint","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_SUPPLY","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"changeDefURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"flag","type":"uint256"}],"name":"changeFreeFlag","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"flag","type":"uint256"}],"name":"changeTokenURIFlag","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"changeURI","outputs":[],"stateMutability":"nonpayable","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":"quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"transferOut","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006009556001600a55604051806080016040528060438152602001620030f060439139600b90805190602001906200003f92919062000229565b5060405180602001604052806000815250600c90805190602001906200006792919062000229565b503480156200007557600080fd5b506040518060400160405280601281526020017f5468652041726973746f637261742041706500000000000000000000000000008152506040518060400160405280600381526020017f44414100000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000fa92919062000229565b5080600390805190602001906200011392919062000229565b50620001246200015260201b60201c565b60008190555050506200014c620001406200015b60201b60201c565b6200016360201b60201c565b6200033e565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002379062000308565b90600052602060002090601f0160209004810192826200025b5760008555620002a7565b82601f106200027657805160ff1916838001178555620002a7565b82800160010185558215620002a7579182015b82811115620002a657825182559160200191906001019062000289565b5b509050620002b69190620002ba565b5090565b5b80821115620002d5576000816000905550600101620002bb565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200032157607f821691505b60208210811415620003385762000337620002d9565b5b50919050565b612da2806200034e6000396000f3fe6080604052600436106101665760003560e01c806370a08231116100d1578063a22cb4651161008a578063e5e01c1111610064578063e5e01c11146104e3578063e985e9c51461050c578063f19e75d414610549578063f2fde38b1461056557610166565b8063a22cb46514610461578063b88d4fde1461048a578063c87b56dd146104a657610166565b806370a0823114610372578063715018a6146103af5780638da5cb5b146103c657806395d89b41146103f15780639894ba7c1461041c578063a0712d681461044557610166565b806323b872dd1161012357806323b872dd1461028057806332cb6b0c1461029c57806342842e0e146102c7578063528c06cc146102e35780636352211e1461030c57806363d7fb911461034957610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b3146102105780630e5c19191461022c57806318160ddd14610255575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612106565b61058e565b60405161019f919061214e565b60405180910390f35b3480156101b457600080fd5b506101bd610620565b6040516101ca9190612202565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f5919061225a565b6106b2565b60405161020791906122c8565b60405180910390f35b61022a6004803603810190610225919061230f565b610731565b005b34801561023857600080fd5b50610253600480360381019061024e91906123b4565b610875565b005b34801561026157600080fd5b5061026a610907565b6040516102779190612410565b60405180910390f35b61029a6004803603810190610295919061242b565b61091e565b005b3480156102a857600080fd5b506102b1610c43565b6040516102be9190612410565b60405180910390f35b6102e160048036038101906102dc919061242b565b610c48565b005b3480156102ef57600080fd5b5061030a6004803603810190610305919061225a565b610c68565b005b34801561031857600080fd5b50610333600480360381019061032e919061225a565b610cee565b60405161034091906122c8565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b919061225a565b610d00565b005b34801561037e57600080fd5b506103996004803603810190610394919061247e565b610d86565b6040516103a69190612410565b60405180910390f35b3480156103bb57600080fd5b506103c4610e3f565b005b3480156103d257600080fd5b506103db610ec7565b6040516103e891906122c8565b60405180910390f35b3480156103fd57600080fd5b50610406610ef1565b6040516104139190612202565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e919061247e565b610f83565b005b61045f600480360381019061045a919061225a565b61104f565b005b34801561046d57600080fd5b50610488600480360381019061048391906124d7565b61124c565b005b6104a4600480360381019061049f9190612647565b611357565b005b3480156104b257600080fd5b506104cd60048036038101906104c8919061225a565b6113ca565b6040516104da9190612202565b60405180910390f35b3480156104ef57600080fd5b5061050a600480360381019061050591906123b4565b6114e4565b005b34801561051857600080fd5b50610533600480360381019061052e91906126ca565b611576565b604051610540919061214e565b60405180910390f35b610563600480360381019061055e919061225a565b61160a565b005b34801561057157600080fd5b5061058c6004803603810190610587919061247e565b6116d7565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105e957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106195750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461062f90612739565b80601f016020809104026020016040519081016040528092919081815260200182805461065b90612739565b80156106a85780601f1061067d576101008083540402835291602001916106a8565b820191906000526020600020905b81548152906001019060200180831161068b57829003601f168201915b5050505050905090565b60006106bd826117cf565b6106f3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061073c82610cee565b90508073ffffffffffffffffffffffffffffffffffffffff1661075d61182e565b73ffffffffffffffffffffffffffffffffffffffff16146107c0576107898161078461182e565b611576565b6107bf576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61087d611836565b73ffffffffffffffffffffffffffffffffffffffff1661089b610ec7565b73ffffffffffffffffffffffffffffffffffffffff16146108f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e8906127b7565b60405180910390fd5b8181600b9190610902929190611ff7565b505050565b600061091161183e565b6001546000540303905090565b600061092982611847565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610990576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061099c84611915565b915091506109b281876109ad61182e565b61193c565b6109fe576109c7866109c261182e565b611576565b6109fd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610a65576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a728686866001611980565b8015610a7d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b4b85610b27888887611986565b7c0200000000000000000000000000000000000000000000000000000000176119ae565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610bd3576000600185019050600060046000838152602001908152602001600020541415610bd1576000548114610bd0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c3b86868660016119d9565b505050505050565b60b481565b610c6383838360405180602001604052806000815250611357565b505050565b610c70611836565b73ffffffffffffffffffffffffffffffffffffffff16610c8e610ec7565b73ffffffffffffffffffffffffffffffffffffffff1614610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb906127b7565b60405180910390fd5b8060098190555050565b6000610cf982611847565b9050919050565b610d08611836565b73ffffffffffffffffffffffffffffffffffffffff16610d26610ec7565b73ffffffffffffffffffffffffffffffffffffffff1614610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d73906127b7565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dee576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e47611836565b73ffffffffffffffffffffffffffffffffffffffff16610e65610ec7565b73ffffffffffffffffffffffffffffffffffffffff1614610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb2906127b7565b60405180910390fd5b610ec560006119df565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f0090612739565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2c90612739565b8015610f795780601f10610f4e57610100808354040283529160200191610f79565b820191906000526020600020905b815481529060010190602001808311610f5c57829003601f168201915b5050505050905090565b610f8b611836565b73ffffffffffffffffffffffffffffffffffffffff16610fa9610ec7565b73ffffffffffffffffffffffffffffffffffffffff1614610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff6906127b7565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561104a573d6000803e3d6000fd5b505050565b60b48161105a610907565b6110649190612806565b11156110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c906128a8565b60405180910390fd5b60018114156110fd57660384665653e0003410156110f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ef90612914565b60405180910390fd5b6111fb565b6003811415611155576608e1bc9bf04000341015611150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114790612914565b60405180910390fd5b6111fa565b60058114156111ad57660e35fa931a00003410156111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f90612914565b60405180910390fd5b6111f9565b67013fbe85edc900003410156111f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ef90612914565b60405180910390fd5b5b5b5b6112053382611aa5565b803373ffffffffffffffffffffffffffffffffffffffff167f52277f0b4a9b555c5aa96900a13546f972bda413737ec164aac947c87eec602460405160405180910390a350565b806007600061125961182e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661130661182e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161134b919061214e565b60405180910390a35050565b61136284848461091e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113c45761138d84848484611ac3565b6113c3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606000600954141561146957600b80546113e490612739565b80601f016020809104026020016040519081016040528092919081815260200182805461141090612739565b801561145d5780601f106114325761010080835404028352916020019161145d565b820191906000526020600020905b81548152906001019060200180831161144057829003601f168201915b505050505090506114df565b611472826117cf565b6114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a8906129a6565b60405180910390fd5b600c6114bc83611c23565b6040516020016114cd929190612a96565b60405160208183030381529060405290505b919050565b6114ec611836565b73ffffffffffffffffffffffffffffffffffffffff1661150a610ec7565b73ffffffffffffffffffffffffffffffffffffffff1614611560576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611557906127b7565b60405180910390fd5b8181600c9190611571929190611ff7565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611612611836565b73ffffffffffffffffffffffffffffffffffffffff16611630610ec7565b73ffffffffffffffffffffffffffffffffffffffff1614611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d906127b7565b60405180910390fd5b6116903382611aa5565b803373ffffffffffffffffffffffffffffffffffffffff167f52277f0b4a9b555c5aa96900a13546f972bda413737ec164aac947c87eec602460405160405180910390a350565b6116df611836565b73ffffffffffffffffffffffffffffffffffffffff166116fd610ec7565b73ffffffffffffffffffffffffffffffffffffffff1614611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a906127b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ba90612b2c565b60405180910390fd5b6117cc816119df565b50565b6000816117da61183e565b111580156117e9575060005482105b8015611827575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b60006001905090565b6000808290508061185661183e565b116118de576000548110156118dd5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156118db575b60008114156118d15760046000836001900393508381526020019081526020016000205490506118a6565b8092505050611910565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861199d868684611d84565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611abf828260405180602001604052806000815250611d8d565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ae961182e565b8786866040518563ffffffff1660e01b8152600401611b0b9493929190612ba1565b602060405180830381600087803b158015611b2557600080fd5b505af1925050508015611b5657506040513d601f19601f82011682018060405250810190611b539190612c02565b60015b611bd0573d8060008114611b86576040519150601f19603f3d011682016040523d82523d6000602084013e611b8b565b606091505b50600081511415611bc8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611c6b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d7f565b600082905060005b60008214611c9d578080611c8690612c2f565b915050600a82611c969190612ca7565b9150611c73565b60008167ffffffffffffffff811115611cb957611cb861251c565b5b6040519080825280601f01601f191660200182016040528015611ceb5781602001600182028036833780820191505090505b5090505b60008514611d7857600182611d049190612cd8565b9150600a85611d139190612d0c565b6030611d1f9190612806565b60f81b818381518110611d3557611d34612d3d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d719190612ca7565b9450611cef565b8093505050505b919050565b60009392505050565b611d978383611e2a565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e2557600080549050600083820390505b611dd76000868380600101945086611ac3565b611e0d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611dc4578160005414611e2257600080fd5b50505b505050565b6000805490506000821415611e6b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e786000848385611980565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611eef83611ee06000866000611986565b611ee985611fe7565b176119ae565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611f9057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f55565b506000821415611fcc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611fe260008483856119d9565b505050565b60006001821460e11b9050919050565b82805461200390612739565b90600052602060002090601f016020900481019282612025576000855561206c565b82601f1061203e57803560ff191683800117855561206c565b8280016001018555821561206c579182015b8281111561206b578235825591602001919060010190612050565b5b509050612079919061207d565b5090565b5b8082111561209657600081600090555060010161207e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120e3816120ae565b81146120ee57600080fd5b50565b600081359050612100816120da565b92915050565b60006020828403121561211c5761211b6120a4565b5b600061212a848285016120f1565b91505092915050565b60008115159050919050565b61214881612133565b82525050565b6000602082019050612163600083018461213f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121a3578082015181840152602081019050612188565b838111156121b2576000848401525b50505050565b6000601f19601f8301169050919050565b60006121d482612169565b6121de8185612174565b93506121ee818560208601612185565b6121f7816121b8565b840191505092915050565b6000602082019050818103600083015261221c81846121c9565b905092915050565b6000819050919050565b61223781612224565b811461224257600080fd5b50565b6000813590506122548161222e565b92915050565b6000602082840312156122705761226f6120a4565b5b600061227e84828501612245565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122b282612287565b9050919050565b6122c2816122a7565b82525050565b60006020820190506122dd60008301846122b9565b92915050565b6122ec816122a7565b81146122f757600080fd5b50565b600081359050612309816122e3565b92915050565b60008060408385031215612326576123256120a4565b5b6000612334858286016122fa565b925050602061234585828601612245565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f8401126123745761237361234f565b5b8235905067ffffffffffffffff81111561239157612390612354565b5b6020830191508360018202830111156123ad576123ac612359565b5b9250929050565b600080602083850312156123cb576123ca6120a4565b5b600083013567ffffffffffffffff8111156123e9576123e86120a9565b5b6123f58582860161235e565b92509250509250929050565b61240a81612224565b82525050565b60006020820190506124256000830184612401565b92915050565b600080600060608486031215612444576124436120a4565b5b6000612452868287016122fa565b9350506020612463868287016122fa565b925050604061247486828701612245565b9150509250925092565b600060208284031215612494576124936120a4565b5b60006124a2848285016122fa565b91505092915050565b6124b481612133565b81146124bf57600080fd5b50565b6000813590506124d1816124ab565b92915050565b600080604083850312156124ee576124ed6120a4565b5b60006124fc858286016122fa565b925050602061250d858286016124c2565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612554826121b8565b810181811067ffffffffffffffff821117156125735761257261251c565b5b80604052505050565b600061258661209a565b9050612592828261254b565b919050565b600067ffffffffffffffff8211156125b2576125b161251c565b5b6125bb826121b8565b9050602081019050919050565b82818337600083830152505050565b60006125ea6125e584612597565b61257c565b90508281526020810184848401111561260657612605612517565b5b6126118482856125c8565b509392505050565b600082601f83011261262e5761262d61234f565b5b813561263e8482602086016125d7565b91505092915050565b60008060008060808587031215612661576126606120a4565b5b600061266f878288016122fa565b9450506020612680878288016122fa565b935050604061269187828801612245565b925050606085013567ffffffffffffffff8111156126b2576126b16120a9565b5b6126be87828801612619565b91505092959194509250565b600080604083850312156126e1576126e06120a4565b5b60006126ef858286016122fa565b9250506020612700858286016122fa565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061275157607f821691505b602082108114156127655761276461270a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006127a1602083612174565b91506127ac8261276b565b602082019050919050565b600060208201905081810360008301526127d081612794565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061281182612224565b915061281c83612224565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612851576128506127d7565b5b828201905092915050565b7f4552433732313a2045786365656473206d6178696d756d20737570706c790000600082015250565b6000612892601e83612174565b915061289d8261285c565b602082019050919050565b600060208201905081810360008301526128c181612885565b9050919050565b7f4552433732313a20496e73756666696369656e74207061796d656e7400000000600082015250565b60006128fe601c83612174565b9150612909826128c8565b602082019050919050565b6000602082019050818103600083015261292d816128f1565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612990602f83612174565b915061299b82612934565b604082019050919050565b600060208201905081810360008301526129bf81612983565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546129f381612739565b6129fd81866129c6565b94506001821660008114612a185760018114612a2957612a5c565b60ff19831686528186019350612a5c565b612a32856129d1565b60005b83811015612a5457815481890152600182019150602081019050612a35565b838801955050505b50505092915050565b6000612a7082612169565b612a7a81856129c6565b9350612a8a818560208601612185565b80840191505092915050565b6000612aa282856129e6565b9150612aae8284612a65565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612b16602683612174565b9150612b2182612aba565b604082019050919050565b60006020820190508181036000830152612b4581612b09565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612b7382612b4c565b612b7d8185612b57565b9350612b8d818560208601612185565b612b96816121b8565b840191505092915050565b6000608082019050612bb660008301876122b9565b612bc360208301866122b9565b612bd06040830185612401565b8181036060830152612be28184612b68565b905095945050505050565b600081519050612bfc816120da565b92915050565b600060208284031215612c1857612c176120a4565b5b6000612c2684828501612bed565b91505092915050565b6000612c3a82612224565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c6d57612c6c6127d7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612cb282612224565b9150612cbd83612224565b925082612ccd57612ccc612c78565b5b828204905092915050565b6000612ce382612224565b9150612cee83612224565b925082821015612d0157612d006127d7565b5b828203905092915050565b6000612d1782612224565b9150612d2283612224565b925082612d3257612d31612c78565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220458ce7e254b6b6b4be488d1dacc79679a19be9c19f922e25e6a0486b60a7536464736f6c6343000809003368747470733a2f2f697066732e696f2f697066732f516d594b584279547a515057366534517a5a336b4e794a72316746724e3834366834716f5166586364676f487931

Deployed Bytecode

0x6080604052600436106101665760003560e01c806370a08231116100d1578063a22cb4651161008a578063e5e01c1111610064578063e5e01c11146104e3578063e985e9c51461050c578063f19e75d414610549578063f2fde38b1461056557610166565b8063a22cb46514610461578063b88d4fde1461048a578063c87b56dd146104a657610166565b806370a0823114610372578063715018a6146103af5780638da5cb5b146103c657806395d89b41146103f15780639894ba7c1461041c578063a0712d681461044557610166565b806323b872dd1161012357806323b872dd1461028057806332cb6b0c1461029c57806342842e0e146102c7578063528c06cc146102e35780636352211e1461030c57806363d7fb911461034957610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b3146102105780630e5c19191461022c57806318160ddd14610255575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612106565b61058e565b60405161019f919061214e565b60405180910390f35b3480156101b457600080fd5b506101bd610620565b6040516101ca9190612202565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f5919061225a565b6106b2565b60405161020791906122c8565b60405180910390f35b61022a6004803603810190610225919061230f565b610731565b005b34801561023857600080fd5b50610253600480360381019061024e91906123b4565b610875565b005b34801561026157600080fd5b5061026a610907565b6040516102779190612410565b60405180910390f35b61029a6004803603810190610295919061242b565b61091e565b005b3480156102a857600080fd5b506102b1610c43565b6040516102be9190612410565b60405180910390f35b6102e160048036038101906102dc919061242b565b610c48565b005b3480156102ef57600080fd5b5061030a6004803603810190610305919061225a565b610c68565b005b34801561031857600080fd5b50610333600480360381019061032e919061225a565b610cee565b60405161034091906122c8565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b919061225a565b610d00565b005b34801561037e57600080fd5b506103996004803603810190610394919061247e565b610d86565b6040516103a69190612410565b60405180910390f35b3480156103bb57600080fd5b506103c4610e3f565b005b3480156103d257600080fd5b506103db610ec7565b6040516103e891906122c8565b60405180910390f35b3480156103fd57600080fd5b50610406610ef1565b6040516104139190612202565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e919061247e565b610f83565b005b61045f600480360381019061045a919061225a565b61104f565b005b34801561046d57600080fd5b50610488600480360381019061048391906124d7565b61124c565b005b6104a4600480360381019061049f9190612647565b611357565b005b3480156104b257600080fd5b506104cd60048036038101906104c8919061225a565b6113ca565b6040516104da9190612202565b60405180910390f35b3480156104ef57600080fd5b5061050a600480360381019061050591906123b4565b6114e4565b005b34801561051857600080fd5b50610533600480360381019061052e91906126ca565b611576565b604051610540919061214e565b60405180910390f35b610563600480360381019061055e919061225a565b61160a565b005b34801561057157600080fd5b5061058c6004803603810190610587919061247e565b6116d7565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105e957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106195750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461062f90612739565b80601f016020809104026020016040519081016040528092919081815260200182805461065b90612739565b80156106a85780601f1061067d576101008083540402835291602001916106a8565b820191906000526020600020905b81548152906001019060200180831161068b57829003601f168201915b5050505050905090565b60006106bd826117cf565b6106f3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061073c82610cee565b90508073ffffffffffffffffffffffffffffffffffffffff1661075d61182e565b73ffffffffffffffffffffffffffffffffffffffff16146107c0576107898161078461182e565b611576565b6107bf576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61087d611836565b73ffffffffffffffffffffffffffffffffffffffff1661089b610ec7565b73ffffffffffffffffffffffffffffffffffffffff16146108f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e8906127b7565b60405180910390fd5b8181600b9190610902929190611ff7565b505050565b600061091161183e565b6001546000540303905090565b600061092982611847565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610990576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061099c84611915565b915091506109b281876109ad61182e565b61193c565b6109fe576109c7866109c261182e565b611576565b6109fd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610a65576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a728686866001611980565b8015610a7d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b4b85610b27888887611986565b7c0200000000000000000000000000000000000000000000000000000000176119ae565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610bd3576000600185019050600060046000838152602001908152602001600020541415610bd1576000548114610bd0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c3b86868660016119d9565b505050505050565b60b481565b610c6383838360405180602001604052806000815250611357565b505050565b610c70611836565b73ffffffffffffffffffffffffffffffffffffffff16610c8e610ec7565b73ffffffffffffffffffffffffffffffffffffffff1614610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb906127b7565b60405180910390fd5b8060098190555050565b6000610cf982611847565b9050919050565b610d08611836565b73ffffffffffffffffffffffffffffffffffffffff16610d26610ec7565b73ffffffffffffffffffffffffffffffffffffffff1614610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d73906127b7565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dee576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e47611836565b73ffffffffffffffffffffffffffffffffffffffff16610e65610ec7565b73ffffffffffffffffffffffffffffffffffffffff1614610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb2906127b7565b60405180910390fd5b610ec560006119df565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f0090612739565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2c90612739565b8015610f795780601f10610f4e57610100808354040283529160200191610f79565b820191906000526020600020905b815481529060010190602001808311610f5c57829003601f168201915b5050505050905090565b610f8b611836565b73ffffffffffffffffffffffffffffffffffffffff16610fa9610ec7565b73ffffffffffffffffffffffffffffffffffffffff1614610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff6906127b7565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561104a573d6000803e3d6000fd5b505050565b60b48161105a610907565b6110649190612806565b11156110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c906128a8565b60405180910390fd5b60018114156110fd57660384665653e0003410156110f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ef90612914565b60405180910390fd5b6111fb565b6003811415611155576608e1bc9bf04000341015611150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114790612914565b60405180910390fd5b6111fa565b60058114156111ad57660e35fa931a00003410156111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f90612914565b60405180910390fd5b6111f9565b67013fbe85edc900003410156111f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ef90612914565b60405180910390fd5b5b5b5b6112053382611aa5565b803373ffffffffffffffffffffffffffffffffffffffff167f52277f0b4a9b555c5aa96900a13546f972bda413737ec164aac947c87eec602460405160405180910390a350565b806007600061125961182e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661130661182e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161134b919061214e565b60405180910390a35050565b61136284848461091e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113c45761138d84848484611ac3565b6113c3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606000600954141561146957600b80546113e490612739565b80601f016020809104026020016040519081016040528092919081815260200182805461141090612739565b801561145d5780601f106114325761010080835404028352916020019161145d565b820191906000526020600020905b81548152906001019060200180831161144057829003601f168201915b505050505090506114df565b611472826117cf565b6114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a8906129a6565b60405180910390fd5b600c6114bc83611c23565b6040516020016114cd929190612a96565b60405160208183030381529060405290505b919050565b6114ec611836565b73ffffffffffffffffffffffffffffffffffffffff1661150a610ec7565b73ffffffffffffffffffffffffffffffffffffffff1614611560576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611557906127b7565b60405180910390fd5b8181600c9190611571929190611ff7565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611612611836565b73ffffffffffffffffffffffffffffffffffffffff16611630610ec7565b73ffffffffffffffffffffffffffffffffffffffff1614611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d906127b7565b60405180910390fd5b6116903382611aa5565b803373ffffffffffffffffffffffffffffffffffffffff167f52277f0b4a9b555c5aa96900a13546f972bda413737ec164aac947c87eec602460405160405180910390a350565b6116df611836565b73ffffffffffffffffffffffffffffffffffffffff166116fd610ec7565b73ffffffffffffffffffffffffffffffffffffffff1614611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a906127b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ba90612b2c565b60405180910390fd5b6117cc816119df565b50565b6000816117da61183e565b111580156117e9575060005482105b8015611827575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b60006001905090565b6000808290508061185661183e565b116118de576000548110156118dd5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156118db575b60008114156118d15760046000836001900393508381526020019081526020016000205490506118a6565b8092505050611910565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861199d868684611d84565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611abf828260405180602001604052806000815250611d8d565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ae961182e565b8786866040518563ffffffff1660e01b8152600401611b0b9493929190612ba1565b602060405180830381600087803b158015611b2557600080fd5b505af1925050508015611b5657506040513d601f19601f82011682018060405250810190611b539190612c02565b60015b611bd0573d8060008114611b86576040519150601f19603f3d011682016040523d82523d6000602084013e611b8b565b606091505b50600081511415611bc8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611c6b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d7f565b600082905060005b60008214611c9d578080611c8690612c2f565b915050600a82611c969190612ca7565b9150611c73565b60008167ffffffffffffffff811115611cb957611cb861251c565b5b6040519080825280601f01601f191660200182016040528015611ceb5781602001600182028036833780820191505090505b5090505b60008514611d7857600182611d049190612cd8565b9150600a85611d139190612d0c565b6030611d1f9190612806565b60f81b818381518110611d3557611d34612d3d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d719190612ca7565b9450611cef565b8093505050505b919050565b60009392505050565b611d978383611e2a565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e2557600080549050600083820390505b611dd76000868380600101945086611ac3565b611e0d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611dc4578160005414611e2257600080fd5b50505b505050565b6000805490506000821415611e6b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e786000848385611980565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611eef83611ee06000866000611986565b611ee985611fe7565b176119ae565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611f9057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f55565b506000821415611fcc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611fe260008483856119d9565b505050565b60006001821460e11b9050919050565b82805461200390612739565b90600052602060002090601f016020900481019282612025576000855561206c565b82601f1061203e57803560ff191683800117855561206c565b8280016001018555821561206c579182015b8281111561206b578235825591602001919060010190612050565b5b509050612079919061207d565b5090565b5b8082111561209657600081600090555060010161207e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120e3816120ae565b81146120ee57600080fd5b50565b600081359050612100816120da565b92915050565b60006020828403121561211c5761211b6120a4565b5b600061212a848285016120f1565b91505092915050565b60008115159050919050565b61214881612133565b82525050565b6000602082019050612163600083018461213f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121a3578082015181840152602081019050612188565b838111156121b2576000848401525b50505050565b6000601f19601f8301169050919050565b60006121d482612169565b6121de8185612174565b93506121ee818560208601612185565b6121f7816121b8565b840191505092915050565b6000602082019050818103600083015261221c81846121c9565b905092915050565b6000819050919050565b61223781612224565b811461224257600080fd5b50565b6000813590506122548161222e565b92915050565b6000602082840312156122705761226f6120a4565b5b600061227e84828501612245565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122b282612287565b9050919050565b6122c2816122a7565b82525050565b60006020820190506122dd60008301846122b9565b92915050565b6122ec816122a7565b81146122f757600080fd5b50565b600081359050612309816122e3565b92915050565b60008060408385031215612326576123256120a4565b5b6000612334858286016122fa565b925050602061234585828601612245565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f8401126123745761237361234f565b5b8235905067ffffffffffffffff81111561239157612390612354565b5b6020830191508360018202830111156123ad576123ac612359565b5b9250929050565b600080602083850312156123cb576123ca6120a4565b5b600083013567ffffffffffffffff8111156123e9576123e86120a9565b5b6123f58582860161235e565b92509250509250929050565b61240a81612224565b82525050565b60006020820190506124256000830184612401565b92915050565b600080600060608486031215612444576124436120a4565b5b6000612452868287016122fa565b9350506020612463868287016122fa565b925050604061247486828701612245565b9150509250925092565b600060208284031215612494576124936120a4565b5b60006124a2848285016122fa565b91505092915050565b6124b481612133565b81146124bf57600080fd5b50565b6000813590506124d1816124ab565b92915050565b600080604083850312156124ee576124ed6120a4565b5b60006124fc858286016122fa565b925050602061250d858286016124c2565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612554826121b8565b810181811067ffffffffffffffff821117156125735761257261251c565b5b80604052505050565b600061258661209a565b9050612592828261254b565b919050565b600067ffffffffffffffff8211156125b2576125b161251c565b5b6125bb826121b8565b9050602081019050919050565b82818337600083830152505050565b60006125ea6125e584612597565b61257c565b90508281526020810184848401111561260657612605612517565b5b6126118482856125c8565b509392505050565b600082601f83011261262e5761262d61234f565b5b813561263e8482602086016125d7565b91505092915050565b60008060008060808587031215612661576126606120a4565b5b600061266f878288016122fa565b9450506020612680878288016122fa565b935050604061269187828801612245565b925050606085013567ffffffffffffffff8111156126b2576126b16120a9565b5b6126be87828801612619565b91505092959194509250565b600080604083850312156126e1576126e06120a4565b5b60006126ef858286016122fa565b9250506020612700858286016122fa565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061275157607f821691505b602082108114156127655761276461270a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006127a1602083612174565b91506127ac8261276b565b602082019050919050565b600060208201905081810360008301526127d081612794565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061281182612224565b915061281c83612224565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612851576128506127d7565b5b828201905092915050565b7f4552433732313a2045786365656473206d6178696d756d20737570706c790000600082015250565b6000612892601e83612174565b915061289d8261285c565b602082019050919050565b600060208201905081810360008301526128c181612885565b9050919050565b7f4552433732313a20496e73756666696369656e74207061796d656e7400000000600082015250565b60006128fe601c83612174565b9150612909826128c8565b602082019050919050565b6000602082019050818103600083015261292d816128f1565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612990602f83612174565b915061299b82612934565b604082019050919050565b600060208201905081810360008301526129bf81612983565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546129f381612739565b6129fd81866129c6565b94506001821660008114612a185760018114612a2957612a5c565b60ff19831686528186019350612a5c565b612a32856129d1565b60005b83811015612a5457815481890152600182019150602081019050612a35565b838801955050505b50505092915050565b6000612a7082612169565b612a7a81856129c6565b9350612a8a818560208601612185565b80840191505092915050565b6000612aa282856129e6565b9150612aae8284612a65565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612b16602683612174565b9150612b2182612aba565b604082019050919050565b60006020820190508181036000830152612b4581612b09565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612b7382612b4c565b612b7d8185612b57565b9350612b8d818560208601612185565b612b96816121b8565b840191505092915050565b6000608082019050612bb660008301876122b9565b612bc360208301866122b9565b612bd06040830185612401565b8181036060830152612be28184612b68565b905095945050505050565b600081519050612bfc816120da565b92915050565b600060208284031215612c1857612c176120a4565b5b6000612c2684828501612bed565b91505092915050565b6000612c3a82612224565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c6d57612c6c6127d7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612cb282612224565b9150612cbd83612224565b925082612ccd57612ccc612c78565b5b828204905092915050565b6000612ce382612224565b9150612cee83612224565b925082821015612d0157612d006127d7565b5b828203905092915050565b6000612d1782612224565b9150612d2283612224565b925082612d3257612d31612c78565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220458ce7e254b6b6b4be488d1dacc79679a19be9c19f922e25e6a0486b60a7536464736f6c63430008090033

Deployed Bytecode Sourcemap

58572:2709:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25473:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26375:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32866:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32299:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59703:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22126:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36505:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58664:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39426:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59504:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27768:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59602:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23310:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6252:103;;;;;;;;;;;;;:::i;:::-;;5601:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26551:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59346:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60589:689;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33424:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40217:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60059:357;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59820:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33815:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60424:157;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6510:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25473:639;25558:4;25897:10;25882:25;;:11;:25;;;;:102;;;;25974:10;25959:25;;:11;:25;;;;25882:102;:179;;;;26051:10;26036:25;;:11;:25;;;;25882:179;25862:199;;25473:639;;;:::o;26375:100::-;26429:13;26462:5;26455:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26375:100;:::o;32866:218::-;32942:7;32967:16;32975:7;32967;:16::i;:::-;32962:64;;32992:34;;;;;;;;;;;;;;32962:64;33046:15;:24;33062:7;33046:24;;;;;;;;;;;:30;;;;;;;;;;;;33039:37;;32866:218;;;:::o;32299:408::-;32388:13;32404:16;32412:7;32404;:16::i;:::-;32388:32;;32460:5;32437:28;;:19;:17;:19::i;:::-;:28;;;32433:175;;32485:44;32502:5;32509:19;:17;:19::i;:::-;32485:16;:44::i;:::-;32480:128;;32557:35;;;;;;;;;;;;;;32480:128;32433:175;32653:2;32620:15;:24;32636:7;32620:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32691:7;32687:2;32671:28;;32680:5;32671:28;;;;;;;;;;;;32377:330;32299:408;;:::o;59703:111::-;5832:12;:10;:12::i;:::-;5821:23;;:7;:5;:7::i;:::-;:23;;;5813:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59797:9:::1;;59782:12;:24;;;;;;;:::i;:::-;;59703:111:::0;;:::o;22126:323::-;22187:7;22415:15;:13;:15::i;:::-;22400:12;;22384:13;;:28;:46;22377:53;;22126:323;:::o;36505:2825::-;36647:27;36677;36696:7;36677:18;:27::i;:::-;36647:57;;36762:4;36721:45;;36737:19;36721:45;;;36717:86;;36775:28;;;;;;;;;;;;;;36717:86;36817:27;36846:23;36873:35;36900:7;36873:26;:35::i;:::-;36816:92;;;;37008:68;37033:15;37050:4;37056:19;:17;:19::i;:::-;37008:24;:68::i;:::-;37003:180;;37096:43;37113:4;37119:19;:17;:19::i;:::-;37096:16;:43::i;:::-;37091:92;;37148:35;;;;;;;;;;;;;;37091:92;37003:180;37214:1;37200:16;;:2;:16;;;37196:52;;;37225:23;;;;;;;;;;;;;;37196:52;37261:43;37283:4;37289:2;37293:7;37302:1;37261:21;:43::i;:::-;37397:15;37394:160;;;37537:1;37516:19;37509:30;37394:160;37934:18;:24;37953:4;37934:24;;;;;;;;;;;;;;;;37932:26;;;;;;;;;;;;38003:18;:22;38022:2;38003:22;;;;;;;;;;;;;;;;38001:24;;;;;;;;;;;38325:146;38362:2;38411:45;38426:4;38432:2;38436:19;38411:14;:45::i;:::-;18525:8;38383:73;38325:18;:146::i;:::-;38296:17;:26;38314:7;38296:26;;;;;;;;;;;:175;;;;38642:1;18525:8;38591:19;:47;:52;38587:627;;;38664:19;38696:1;38686:7;:11;38664:33;;38853:1;38819:17;:30;38837:11;38819:30;;;;;;;;;;;;:35;38815:384;;;38957:13;;38942:11;:28;38938:242;;39137:19;39104:17;:30;39122:11;39104:30;;;;;;;;;;;:52;;;;38938:242;38815:384;38645:569;38587:627;39261:7;39257:2;39242:27;;39251:4;39242:27;;;;;;;;;;;;39280:42;39301:4;39307:2;39311:7;39320:1;39280:20;:42::i;:::-;36636:2694;;;36505:2825;;;:::o;58664:37::-;58698:3;58664:37;:::o;39426:193::-;39572:39;39589:4;39595:2;39599:7;39572:39;;;;;;;;;;;;:16;:39::i;:::-;39426:193;;;:::o;59504:92::-;5832:12;:10;:12::i;:::-;5821:23;;:7;:5;:7::i;:::-;:23;;;5813:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59584:4:::1;59576:5;:12;;;;59504:92:::0;:::o;27768:152::-;27840:7;27883:27;27902:7;27883:18;:27::i;:::-;27860:52;;27768:152;;;:::o;59602:95::-;5832:12;:10;:12::i;:::-;5821:23;;:7;:5;:7::i;:::-;:23;;;5813:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59685:4:::1;59670:12;:19;;;;59602:95:::0;:::o;23310:233::-;23382:7;23423:1;23406:19;;:5;:19;;;23402:60;;;23434:28;;;;;;;;;;;;;;23402:60;17469:13;23480:18;:25;23499:5;23480:25;;;;;;;;;;;;;;;;:55;23473:62;;23310:233;;;:::o;6252:103::-;5832:12;:10;:12::i;:::-;5821:23;;:7;:5;:7::i;:::-;:23;;;5813:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6317:30:::1;6344:1;6317:18;:30::i;:::-;6252:103::o:0;5601:87::-;5647:7;5674:6;;;;;;;;;;;5667:13;;5601:87;:::o;26551:104::-;26607:13;26640:7;26633:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26551:104;:::o;59346:150::-;5832:12;:10;:12::i;:::-;5821:23;;:7;:5;:7::i;:::-;:23;;;5813:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59408:15:::1;59426:21;59408:39;;59466:3;59458:21;;:30;59480:7;59458:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;59397:99;59346:150:::0;:::o;60589:689::-;58698:3;60671:8;60655:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;60647:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;60755:1;60743:8;:13;60739:445;;;60794:13;60781:9;:26;;60773:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;60739:445;;;60874:1;60862:8;:13;60858:326;;;60913:12;60900:9;:25;;60892:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;60858:326;;;60992:1;60980:8;:13;60976:208;;;61031:11;61018:9;:24;;61010:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;60976:208;;;61129:10;61116:9;:23;;61108:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;60976:208;60858:326;60739:445;61194:31;61204:10;61216:8;61194:9;:31::i;:::-;61261:8;61249:10;61241:29;;;;;;;;;;;;60589:689;:::o;33424:234::-;33571:8;33519:18;:39;33538:19;:17;:19::i;:::-;33519:39;;;;;;;;;;;;;;;:49;33559:8;33519:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;33631:8;33595:55;;33610:19;:17;:19::i;:::-;33595:55;;;33641:8;33595:55;;;;;;:::i;:::-;;;;;;;;33424:234;;:::o;40217:407::-;40392:31;40405:4;40411:2;40415:7;40392:12;:31::i;:::-;40456:1;40438:2;:14;;;:19;40434:183;;40477:56;40508:4;40514:2;40518:7;40527:5;40477:30;:56::i;:::-;40472:145;;40561:40;;;;;;;;;;;;;;40472:145;40434:183;40217:407;;;;:::o;60059:357::-;60124:13;60163:1;60154:5;;:10;60150:259;;;60188:12;60181:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60150:259;60241:16;60249:7;60241;:16::i;:::-;60233:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;60355:13;60370:25;60387:7;60370:16;:25::i;:::-;60338:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60324:73;;60059:357;;;;:::o;59820:109::-;5832:12;:10;:12::i;:::-;5821:23;;:7;:5;:7::i;:::-;:23;;;5813:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59912:9:::1;;59896:13;:25;;;;;;;:::i;:::-;;59820:109:::0;;:::o;33815:164::-;33912:4;33936:18;:25;33955:5;33936:25;;;;;;;;;;;;;;;:35;33962:8;33936:35;;;;;;;;;;;;;;;;;;;;;;;;;33929:42;;33815:164;;;;:::o;60424:157::-;5832:12;:10;:12::i;:::-;5821:23;;:7;:5;:7::i;:::-;:23;;;5813:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60497:31:::1;60507:10;60519:8;60497:9;:31::i;:::-;60564:8;60552:10;60544:29;;;;;;;;;;;;60424:157:::0;:::o;6510:201::-;5832:12;:10;:12::i;:::-;5821:23;;:7;:5;:7::i;:::-;:23;;;5813:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6619:1:::1;6599:22;;:8;:22;;;;6591:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6675:28;6694:8;6675:18;:28::i;:::-;6510:201:::0;:::o;34237:282::-;34302:4;34358:7;34339:15;:13;:15::i;:::-;:26;;:66;;;;;34392:13;;34382:7;:23;34339:66;:153;;;;;34491:1;18245:8;34443:17;:26;34461:7;34443:26;;;;;;;;;;;;:44;:49;34339:153;34319:173;;34237:282;;;:::o;56545:105::-;56605:7;56632:10;56625:17;;56545:105;:::o;4319:98::-;4372:7;4399:10;4392:17;;4319:98;:::o;59239:101::-;59304:7;59331:1;59324:8;;59239:101;:::o;28923:1275::-;28990:7;29010:12;29025:7;29010:22;;29093:4;29074:15;:13;:15::i;:::-;:23;29070:1061;;29127:13;;29120:4;:20;29116:1015;;;29165:14;29182:17;:23;29200:4;29182:23;;;;;;;;;;;;29165:40;;29299:1;18245:8;29271:6;:24;:29;29267:845;;;29936:113;29953:1;29943:6;:11;29936:113;;;29996:17;:25;30014:6;;;;;;;29996:25;;;;;;;;;;;;29987:34;;29936:113;;;30082:6;30075:13;;;;;;29267:845;29142:989;29116:1015;29070:1061;30159:31;;;;;;;;;;;;;;28923:1275;;;;:::o;35400:485::-;35502:27;35531:23;35572:38;35613:15;:24;35629:7;35613:24;;;;;;;;;;;35572:65;;35790:18;35767:41;;35847:19;35841:26;35822:45;;35752:126;35400:485;;;:::o;34628:659::-;34777:11;34942:16;34935:5;34931:28;34922:37;;35102:16;35091:9;35087:32;35074:45;;35252:15;35241:9;35238:30;35230:5;35219:9;35216:20;35213:56;35203:66;;34628:659;;;;;:::o;41286:159::-;;;;;:::o;55854:311::-;55989:7;56009:16;18649:3;56035:19;:41;;56009:68;;18649:3;56103:31;56114:4;56120:2;56124:9;56103:10;:31::i;:::-;56095:40;;:62;;56088:69;;;55854:311;;;;;:::o;30746:450::-;30826:14;30994:16;30987:5;30983:28;30974:37;;31171:5;31157:11;31132:23;31128:41;31125:52;31118:5;31115:63;31105:73;;30746:450;;;;:::o;42110:158::-;;;;;:::o;6871:191::-;6945:16;6964:6;;;;;;;;;;;6945:25;;6990:8;6981:6;;:17;;;;;;;;;;;;;;;;;;7045:8;7014:40;;7035:8;7014:40;;;;;;;;;;;;6934:128;6871:191;:::o;50377:112::-;50454:27;50464:2;50468:8;50454:27;;;;;;;;;;;;:9;:27::i;:::-;50377:112;;:::o;42708:716::-;42871:4;42917:2;42892:45;;;42938:19;:17;:19::i;:::-;42959:4;42965:7;42974:5;42892:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42888:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43192:1;43175:6;:13;:18;43171:235;;;43221:40;;;;;;;;;;;;;;43171:235;43364:6;43358:13;43349:6;43345:2;43341:15;43334:38;42888:529;43061:54;;;43051:64;;;:6;:64;;;;43044:71;;;42708:716;;;;;;:::o;404:723::-;460:13;690:1;681:5;:10;677:53;;;708:10;;;;;;;;;;;;;;;;;;;;;677:53;740:12;755:5;740:20;;771:14;796:78;811:1;803:4;:9;796:78;;829:8;;;;;:::i;:::-;;;;860:2;852:10;;;;;:::i;:::-;;;796:78;;;884:19;916:6;906:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;884:39;;934:154;950:1;941:5;:10;934:154;;978:1;968:11;;;;;:::i;:::-;;;1045:2;1037:5;:10;;;;:::i;:::-;1024:2;:24;;;;:::i;:::-;1011:39;;994:6;1001;994:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1074:2;1065:11;;;;;:::i;:::-;;;934:154;;;1112:6;1098:21;;;;;404:723;;;;:::o;55555:147::-;55692:6;55555:147;;;;;:::o;49604:689::-;49735:19;49741:2;49745:8;49735:5;:19::i;:::-;49814:1;49796:2;:14;;;:19;49792:483;;49836:11;49850:13;;49836:27;;49882:13;49904:8;49898:3;:14;49882:30;;49931:233;49962:62;50001:1;50005:2;50009:7;;;;;;50018:5;49962:30;:62::i;:::-;49957:167;;50060:40;;;;;;;;;;;;;;49957:167;50159:3;50151:5;:11;49931:233;;50246:3;50229:13;;:20;50225:34;;50251:8;;;50225:34;49817:458;;49792:483;49604:689;;;:::o;43886:2966::-;43959:20;43982:13;;43959:36;;44022:1;44010:8;:13;44006:44;;;44032:18;;;;;;;;;;;;;;44006:44;44063:61;44093:1;44097:2;44101:12;44115:8;44063:21;:61::i;:::-;44607:1;17607:2;44577:1;:26;;44576:32;44564:8;:45;44538:18;:22;44557:2;44538:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;44886:139;44923:2;44977:33;45000:1;45004:2;45008:1;44977:14;:33::i;:::-;44944:30;44965:8;44944:20;:30::i;:::-;:66;44886:18;:139::i;:::-;44852:17;:31;44870:12;44852:31;;;;;;;;;;;:173;;;;45042:16;45073:11;45102:8;45087:12;:23;45073:37;;45623:16;45619:2;45615:25;45603:37;;45995:12;45955:8;45914:1;45852:25;45793:1;45732;45705:335;46366:1;46352:12;46348:20;46306:346;46407:3;46398:7;46395:16;46306:346;;46625:7;46615:8;46612:1;46585:25;46582:1;46579;46574:59;46460:1;46451:7;46447:15;46436:26;;46306:346;;;46310:77;46697:1;46685:8;:13;46681:45;;;46707:19;;;;;;;;;;;;;;46681:45;46759:3;46743:13;:19;;;;44312:2462;;46784:60;46813:1;46817:2;46821:12;46835:8;46784:20;:60::i;:::-;43948:2904;43886:2966;;:::o;31298:324::-;31368:14;31601:1;31591:8;31588:15;31562:24;31558:46;31548:56;;31298:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:117::-;5047:1;5044;5037:12;5061:117;5170:1;5167;5160:12;5184:117;5293:1;5290;5283:12;5321:553;5379:8;5389:6;5439:3;5432:4;5424:6;5420:17;5416:27;5406:122;;5447:79;;:::i;:::-;5406:122;5560:6;5547:20;5537:30;;5590:18;5582:6;5579:30;5576:117;;;5612:79;;:::i;:::-;5576:117;5726:4;5718:6;5714:17;5702:29;;5780:3;5772:4;5764:6;5760:17;5750:8;5746:32;5743:41;5740:128;;;5787:79;;:::i;:::-;5740:128;5321:553;;;;;:::o;5880:529::-;5951:6;5959;6008:2;5996:9;5987:7;5983:23;5979:32;5976:119;;;6014:79;;:::i;:::-;5976:119;6162:1;6151:9;6147:17;6134:31;6192:18;6184:6;6181:30;6178:117;;;6214:79;;:::i;:::-;6178:117;6327:65;6384:7;6375:6;6364:9;6360:22;6327:65;:::i;:::-;6309:83;;;;6105:297;5880:529;;;;;:::o;6415:118::-;6502:24;6520:5;6502:24;:::i;:::-;6497:3;6490:37;6415:118;;:::o;6539:222::-;6632:4;6670:2;6659:9;6655:18;6647:26;;6683:71;6751:1;6740:9;6736:17;6727:6;6683:71;:::i;:::-;6539:222;;;;:::o;6767:619::-;6844:6;6852;6860;6909:2;6897:9;6888:7;6884:23;6880:32;6877:119;;;6915:79;;:::i;:::-;6877:119;7035:1;7060:53;7105:7;7096:6;7085:9;7081:22;7060:53;:::i;:::-;7050:63;;7006:117;7162:2;7188:53;7233:7;7224:6;7213:9;7209:22;7188:53;:::i;:::-;7178:63;;7133:118;7290:2;7316:53;7361:7;7352:6;7341:9;7337:22;7316:53;:::i;:::-;7306:63;;7261:118;6767:619;;;;;:::o;7392:329::-;7451:6;7500:2;7488:9;7479:7;7475:23;7471:32;7468:119;;;7506:79;;:::i;:::-;7468:119;7626:1;7651:53;7696:7;7687:6;7676:9;7672:22;7651:53;:::i;:::-;7641:63;;7597:117;7392:329;;;;:::o;7727:116::-;7797:21;7812:5;7797:21;:::i;:::-;7790:5;7787:32;7777:60;;7833:1;7830;7823:12;7777:60;7727:116;:::o;7849:133::-;7892:5;7930:6;7917:20;7908:29;;7946:30;7970:5;7946:30;:::i;:::-;7849:133;;;;:::o;7988:468::-;8053:6;8061;8110:2;8098:9;8089:7;8085:23;8081:32;8078:119;;;8116:79;;:::i;:::-;8078:119;8236:1;8261:53;8306:7;8297:6;8286:9;8282:22;8261:53;:::i;:::-;8251:63;;8207:117;8363:2;8389:50;8431:7;8422:6;8411:9;8407:22;8389:50;:::i;:::-;8379:60;;8334:115;7988:468;;;;;:::o;8462:117::-;8571:1;8568;8561:12;8585:180;8633:77;8630:1;8623:88;8730:4;8727:1;8720:15;8754:4;8751:1;8744:15;8771:281;8854:27;8876:4;8854:27;:::i;:::-;8846:6;8842:40;8984:6;8972:10;8969:22;8948:18;8936:10;8933:34;8930:62;8927:88;;;8995:18;;:::i;:::-;8927:88;9035:10;9031:2;9024:22;8814:238;8771:281;;:::o;9058:129::-;9092:6;9119:20;;:::i;:::-;9109:30;;9148:33;9176:4;9168:6;9148:33;:::i;:::-;9058:129;;;:::o;9193:307::-;9254:4;9344:18;9336:6;9333:30;9330:56;;;9366:18;;:::i;:::-;9330:56;9404:29;9426:6;9404:29;:::i;:::-;9396:37;;9488:4;9482;9478:15;9470:23;;9193:307;;;:::o;9506:154::-;9590:6;9585:3;9580;9567:30;9652:1;9643:6;9638:3;9634:16;9627:27;9506:154;;;:::o;9666:410::-;9743:5;9768:65;9784:48;9825:6;9784:48;:::i;:::-;9768:65;:::i;:::-;9759:74;;9856:6;9849:5;9842:21;9894:4;9887:5;9883:16;9932:3;9923:6;9918:3;9914:16;9911:25;9908:112;;;9939:79;;:::i;:::-;9908:112;10029:41;10063:6;10058:3;10053;10029:41;:::i;:::-;9749:327;9666:410;;;;;:::o;10095:338::-;10150:5;10199:3;10192:4;10184:6;10180:17;10176:27;10166:122;;10207:79;;:::i;:::-;10166:122;10324:6;10311:20;10349:78;10423:3;10415:6;10408:4;10400:6;10396:17;10349:78;:::i;:::-;10340:87;;10156:277;10095:338;;;;:::o;10439:943::-;10534:6;10542;10550;10558;10607:3;10595:9;10586:7;10582:23;10578:33;10575:120;;;10614:79;;:::i;:::-;10575:120;10734:1;10759:53;10804:7;10795:6;10784:9;10780:22;10759:53;:::i;:::-;10749:63;;10705:117;10861:2;10887:53;10932:7;10923:6;10912:9;10908:22;10887:53;:::i;:::-;10877:63;;10832:118;10989:2;11015:53;11060:7;11051:6;11040:9;11036:22;11015:53;:::i;:::-;11005:63;;10960:118;11145:2;11134:9;11130:18;11117:32;11176:18;11168:6;11165:30;11162:117;;;11198:79;;:::i;:::-;11162:117;11303:62;11357:7;11348:6;11337:9;11333:22;11303:62;:::i;:::-;11293:72;;11088:287;10439:943;;;;;;;:::o;11388:474::-;11456:6;11464;11513:2;11501:9;11492:7;11488:23;11484:32;11481:119;;;11519:79;;:::i;:::-;11481:119;11639:1;11664:53;11709:7;11700:6;11689:9;11685:22;11664:53;:::i;:::-;11654:63;;11610:117;11766:2;11792:53;11837:7;11828:6;11817:9;11813:22;11792:53;:::i;:::-;11782:63;;11737:118;11388:474;;;;;:::o;11868:180::-;11916:77;11913:1;11906:88;12013:4;12010:1;12003:15;12037:4;12034:1;12027:15;12054:320;12098:6;12135:1;12129:4;12125:12;12115:22;;12182:1;12176:4;12172:12;12203:18;12193:81;;12259:4;12251:6;12247:17;12237:27;;12193:81;12321:2;12313:6;12310:14;12290:18;12287:38;12284:84;;;12340:18;;:::i;:::-;12284:84;12105:269;12054:320;;;:::o;12380:182::-;12520:34;12516:1;12508:6;12504:14;12497:58;12380:182;:::o;12568:366::-;12710:3;12731:67;12795:2;12790:3;12731:67;:::i;:::-;12724:74;;12807:93;12896:3;12807:93;:::i;:::-;12925:2;12920:3;12916:12;12909:19;;12568:366;;;:::o;12940:419::-;13106:4;13144:2;13133:9;13129:18;13121:26;;13193:9;13187:4;13183:20;13179:1;13168:9;13164:17;13157:47;13221:131;13347:4;13221:131;:::i;:::-;13213:139;;12940:419;;;:::o;13365:180::-;13413:77;13410:1;13403:88;13510:4;13507:1;13500:15;13534:4;13531:1;13524:15;13551:305;13591:3;13610:20;13628:1;13610:20;:::i;:::-;13605:25;;13644:20;13662:1;13644:20;:::i;:::-;13639:25;;13798:1;13730:66;13726:74;13723:1;13720:81;13717:107;;;13804:18;;:::i;:::-;13717:107;13848:1;13845;13841:9;13834:16;;13551:305;;;;:::o;13862:180::-;14002:32;13998:1;13990:6;13986:14;13979:56;13862:180;:::o;14048:366::-;14190:3;14211:67;14275:2;14270:3;14211:67;:::i;:::-;14204:74;;14287:93;14376:3;14287:93;:::i;:::-;14405:2;14400:3;14396:12;14389:19;;14048:366;;;:::o;14420:419::-;14586:4;14624:2;14613:9;14609:18;14601:26;;14673:9;14667:4;14663:20;14659:1;14648:9;14644:17;14637:47;14701:131;14827:4;14701:131;:::i;:::-;14693:139;;14420:419;;;:::o;14845:178::-;14985:30;14981:1;14973:6;14969:14;14962:54;14845:178;:::o;15029:366::-;15171:3;15192:67;15256:2;15251:3;15192:67;:::i;:::-;15185:74;;15268:93;15357:3;15268:93;:::i;:::-;15386:2;15381:3;15377:12;15370:19;;15029:366;;;:::o;15401:419::-;15567:4;15605:2;15594:9;15590:18;15582:26;;15654:9;15648:4;15644:20;15640:1;15629:9;15625:17;15618:47;15682:131;15808:4;15682:131;:::i;:::-;15674:139;;15401:419;;;:::o;15826:234::-;15966:34;15962:1;15954:6;15950:14;15943:58;16035:17;16030:2;16022:6;16018:15;16011:42;15826:234;:::o;16066:366::-;16208:3;16229:67;16293:2;16288:3;16229:67;:::i;:::-;16222:74;;16305:93;16394:3;16305:93;:::i;:::-;16423:2;16418:3;16414:12;16407:19;;16066:366;;;:::o;16438:419::-;16604:4;16642:2;16631:9;16627:18;16619:26;;16691:9;16685:4;16681:20;16677:1;16666:9;16662:17;16655:47;16719:131;16845:4;16719:131;:::i;:::-;16711:139;;16438:419;;;:::o;16863:148::-;16965:11;17002:3;16987:18;;16863:148;;;;:::o;17017:141::-;17066:4;17089:3;17081:11;;17112:3;17109:1;17102:14;17146:4;17143:1;17133:18;17125:26;;17017:141;;;:::o;17188:845::-;17291:3;17328:5;17322:12;17357:36;17383:9;17357:36;:::i;:::-;17409:89;17491:6;17486:3;17409:89;:::i;:::-;17402:96;;17529:1;17518:9;17514:17;17545:1;17540:137;;;;17691:1;17686:341;;;;17507:520;;17540:137;17624:4;17620:9;17609;17605:25;17600:3;17593:38;17660:6;17655:3;17651:16;17644:23;;17540:137;;17686:341;17753:38;17785:5;17753:38;:::i;:::-;17813:1;17827:154;17841:6;17838:1;17835:13;17827:154;;;17915:7;17909:14;17905:1;17900:3;17896:11;17889:35;17965:1;17956:7;17952:15;17941:26;;17863:4;17860:1;17856:12;17851:17;;17827:154;;;18010:6;18005:3;18001:16;17994:23;;17693:334;;17507:520;;17295:738;;17188:845;;;;:::o;18039:377::-;18145:3;18173:39;18206:5;18173:39;:::i;:::-;18228:89;18310:6;18305:3;18228:89;:::i;:::-;18221:96;;18326:52;18371:6;18366:3;18359:4;18352:5;18348:16;18326:52;:::i;:::-;18403:6;18398:3;18394:16;18387:23;;18149:267;18039:377;;;;:::o;18422:429::-;18599:3;18621:92;18709:3;18700:6;18621:92;:::i;:::-;18614:99;;18730:95;18821:3;18812:6;18730:95;:::i;:::-;18723:102;;18842:3;18835:10;;18422:429;;;;;:::o;18857:225::-;18997:34;18993:1;18985:6;18981:14;18974:58;19066:8;19061:2;19053:6;19049:15;19042:33;18857:225;:::o;19088:366::-;19230:3;19251:67;19315:2;19310:3;19251:67;:::i;:::-;19244:74;;19327:93;19416:3;19327:93;:::i;:::-;19445:2;19440:3;19436:12;19429:19;;19088:366;;;:::o;19460:419::-;19626:4;19664:2;19653:9;19649:18;19641:26;;19713:9;19707:4;19703:20;19699:1;19688:9;19684:17;19677:47;19741:131;19867:4;19741:131;:::i;:::-;19733:139;;19460:419;;;:::o;19885:98::-;19936:6;19970:5;19964:12;19954:22;;19885:98;;;:::o;19989:168::-;20072:11;20106:6;20101:3;20094:19;20146:4;20141:3;20137:14;20122:29;;19989:168;;;;:::o;20163:360::-;20249:3;20277:38;20309:5;20277:38;:::i;:::-;20331:70;20394:6;20389:3;20331:70;:::i;:::-;20324:77;;20410:52;20455:6;20450:3;20443:4;20436:5;20432:16;20410:52;:::i;:::-;20487:29;20509:6;20487:29;:::i;:::-;20482:3;20478:39;20471:46;;20253:270;20163:360;;;;:::o;20529:640::-;20724:4;20762:3;20751:9;20747:19;20739:27;;20776:71;20844:1;20833:9;20829:17;20820:6;20776:71;:::i;:::-;20857:72;20925:2;20914:9;20910:18;20901:6;20857:72;:::i;:::-;20939;21007:2;20996:9;20992:18;20983:6;20939:72;:::i;:::-;21058:9;21052:4;21048:20;21043:2;21032:9;21028:18;21021:48;21086:76;21157:4;21148:6;21086:76;:::i;:::-;21078:84;;20529:640;;;;;;;:::o;21175:141::-;21231:5;21262:6;21256:13;21247:22;;21278:32;21304:5;21278:32;:::i;:::-;21175:141;;;;:::o;21322:349::-;21391:6;21440:2;21428:9;21419:7;21415:23;21411:32;21408:119;;;21446:79;;:::i;:::-;21408:119;21566:1;21591:63;21646:7;21637:6;21626:9;21622:22;21591:63;:::i;:::-;21581:73;;21537:127;21322:349;;;;:::o;21677:233::-;21716:3;21739:24;21757:5;21739:24;:::i;:::-;21730:33;;21785:66;21778:5;21775:77;21772:103;;;21855:18;;:::i;:::-;21772:103;21902:1;21895:5;21891:13;21884:20;;21677:233;;;:::o;21916:180::-;21964:77;21961:1;21954:88;22061:4;22058:1;22051:15;22085:4;22082:1;22075:15;22102:185;22142:1;22159:20;22177:1;22159:20;:::i;:::-;22154:25;;22193:20;22211:1;22193:20;:::i;:::-;22188:25;;22232:1;22222:35;;22237:18;;:::i;:::-;22222:35;22279:1;22276;22272:9;22267:14;;22102:185;;;;:::o;22293:191::-;22333:4;22353:20;22371:1;22353:20;:::i;:::-;22348:25;;22387:20;22405:1;22387:20;:::i;:::-;22382:25;;22426:1;22423;22420:8;22417:34;;;22431:18;;:::i;:::-;22417:34;22476:1;22473;22469:9;22461:17;;22293:191;;;;:::o;22490:176::-;22522:1;22539:20;22557:1;22539:20;:::i;:::-;22534:25;;22573:20;22591:1;22573:20;:::i;:::-;22568:25;;22612:1;22602:35;;22617:18;;:::i;:::-;22602:35;22658:1;22655;22651:9;22646:14;;22490:176;;;;:::o;22672:180::-;22720:77;22717:1;22710:88;22817:4;22814:1;22807:15;22841:4;22838:1;22831:15

Swarm Source

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