ETH Price: $3,396.90 (-1.14%)
Gas: 2 Gwei

Token

aciOS (ACIOS)
 

Overview

Max Total Supply

1,096 ACIOS

Holders

287

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
scottwerner.eth
Balance
1 ACIOS
0xebe71b162c4fd6be6f07bf11b17d271c1087bd8b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The [ART]ificial Creative Intelligence Operating System by 0xCreate. Token-gated AI experience coming May 1st, 2023.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
aciOS

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-06
*/

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/aciOS.sol



pragma solidity ^0.8.7;




interface ICreateCards {
    function ownerOf(uint256 tokenId) external view returns (address);
}

contract aciOS is ERC721A, Ownable, ReentrancyGuard {

    address public createCardContract = 0x5e7Dd1e569E75A7C2c1395d625daC3275Dc94012;

    mapping(uint256 => bool) public hasCreateCardMinted;

    bool public MINT_ACTIVE = false;
    uint256 public constant MAX_SUPPLY = 6004;
    uint256 public constant CREATE_CARD_SUPPLY = 3002;
    uint256 public constant PUBLIC_SUPPLY = 3002;
    uint256 public publicCount = 0;

    string public metadataURI;
    
    constructor() ERC721A("aciOS", "ACIOS") {}

    // MINT ---------------------------------------------

    function create_card_mint(uint256 createCardId) public {
        require(MINT_ACTIVE, "Mint inactive.");
        require(ICreateCards(createCardContract).ownerOf(createCardId) == msg.sender, "You don't own that Create Card.");
        require(!hasCreateCardMinted[createCardId], "Already minted.");
        require(totalSupply() < MAX_SUPPLY, "Sold out.");

        hasCreateCardMinted[createCardId] = true;

        _safeMint(msg.sender, 1);
    }

    function public_mint() public payable nonReentrant {
        require(MINT_ACTIVE, "Mint inactive.");
        require(msg.value == 0.02 ether, "Incorrect ETH sent.");
        require(publicCount < PUBLIC_SUPPLY, "Sold out.");
        require(totalSupply() < MAX_SUPPLY, "Sold out.");

        publicCount++;

        _safeMint(msg.sender, 1);
    }

    // CONTRACT MANAGEMENT ---------------------------------------------
  
    function setMetadataURI(string memory _metadataURI) public onlyOwner {
        metadataURI = _metadataURI;
    }

    function toggleMint() public onlyOwner {
        MINT_ACTIVE = !MINT_ACTIVE;
    }

    // OVERRIDES ---------------------------------------------

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

    // WITHDRAW ---------------------------------------------

    function withdraw() public onlyOwner {
      (bool success,) = msg.sender.call{value: address(this).balance}("");
      require(success, "Failed to withdraw ETH.");
    }
}

Contract Security Audit

Contract ABI

[{"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":"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":"CREATE_CARD_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_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":[],"name":"createCardContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"createCardId","type":"uint256"}],"name":"create_card_mint","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":"uint256","name":"","type":"uint256"}],"name":"hasCreateCardMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"public_mint","outputs":[],"stateMutability":"payable","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":"string","name":"_metadataURI","type":"string"}],"name":"setMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052735e7dd1e569e75a7c2c1395d625dac3275dc94012600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600c60006101000a81548160ff0219169083151502179055506000600d553480156200008657600080fd5b506040518060400160405280600581526020017f6163694f530000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4143494f5300000000000000000000000000000000000000000000000000000081525081600290805190602001906200010b9291906200023e565b508060039080519060200190620001249291906200023e565b50620001356200016b60201b60201c565b60008190555050506200015d620001516200017060201b60201c565b6200017860201b60201c565b600160098190555062000353565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024c90620002ee565b90600052602060002090601f016020900481019282620002705760008555620002bc565b82601f106200028b57805160ff1916838001178555620002bc565b82800160010185558215620002bc579182015b82811115620002bb5782518255916020019190600101906200029e565b5b509050620002cb9190620002cf565b5090565b5b80821115620002ea576000816000905550600101620002d0565b5090565b600060028204905060018216806200030757607f821691505b602082108114156200031e576200031d62000324565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612e2580620003636000396000f3fe6080604052600436106101cd5760003560e01c80636eef94c0116100f75780638da5cb5b11610095578063c87b56dd11610064578063c87b56dd146105ff578063d3dd5fe01461063c578063e985e9c514610653578063f2fde38b14610690576101cd565b80638da5cb5b1461056457806395d89b411461058f578063a22cb465146105ba578063b88d4fde146105e3576101cd565b8063750521f5116100d1578063750521f5146104bc5780637b6ad3e4146104e55780638342083a14610510578063859a6c461461053b576101cd565b80636eef94c01461043d57806370a0823114610468578063715018a6146104a5576101cd565b80631a5aba5e1161016f5780633ccfd60b1161013e5780633ccfd60b1461039057806342842e0e146103a757806349678b22146103c35780636352211e14610400576101cd565b80631a5aba5e1461031457806323b872dd1461033f5780632502165e1461035b57806332cb6b0c14610365576101cd565b8063081812fc116101ab578063081812fc14610265578063095ea7b3146102a25780630e503a7f146102be57806318160ddd146102e9576101cd565b806301ffc9a7146101d257806303ee438c1461020f57806306fdde031461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906123fa565b6106b9565b6040516102069190612798565b60405180910390f35b34801561021b57600080fd5b5061022461074b565b60405161023191906127b3565b60405180910390f35b34801561024657600080fd5b5061024f6107d9565b60405161025c91906127b3565b60405180910390f35b34801561027157600080fd5b5061028c6004803603810190610287919061249d565b61086b565b6040516102999190612731565b60405180910390f35b6102bc60048036038101906102b791906123ba565b6108ea565b005b3480156102ca57600080fd5b506102d3610a2e565b6040516102e091906128f5565b60405180910390f35b3480156102f557600080fd5b506102fe610a34565b60405161030b91906128f5565b60405180910390f35b34801561032057600080fd5b50610329610a4b565b6040516103369190612798565b60405180910390f35b610359600480360381019061035491906122a4565b610a5e565b005b610363610d83565b005b34801561037157600080fd5b5061037a610ee1565b60405161038791906128f5565b60405180910390f35b34801561039c57600080fd5b506103a5610ee7565b005b6103c160048036038101906103bc91906122a4565b610f9e565b005b3480156103cf57600080fd5b506103ea60048036038101906103e5919061249d565b610fbe565b6040516103f79190612798565b60405180910390f35b34801561040c57600080fd5b506104276004803603810190610422919061249d565b610fde565b6040516104349190612731565b60405180910390f35b34801561044957600080fd5b50610452610ff0565b60405161045f91906128f5565b60405180910390f35b34801561047457600080fd5b5061048f600480360381019061048a919061220a565b610ff6565b60405161049c91906128f5565b60405180910390f35b3480156104b157600080fd5b506104ba6110af565b005b3480156104c857600080fd5b506104e360048036038101906104de9190612454565b6110c3565b005b3480156104f157600080fd5b506104fa6110e5565b6040516105079190612731565b60405180910390f35b34801561051c57600080fd5b5061052561110b565b60405161053291906128f5565b60405180910390f35b34801561054757600080fd5b50610562600480360381019061055d919061249d565b611111565b005b34801561057057600080fd5b5061057961135e565b6040516105869190612731565b60405180910390f35b34801561059b57600080fd5b506105a4611388565b6040516105b191906127b3565b60405180910390f35b3480156105c657600080fd5b506105e160048036038101906105dc919061237a565b61141a565b005b6105fd60048036038101906105f891906122f7565b611525565b005b34801561060b57600080fd5b506106266004803603810190610621919061249d565b611598565b60405161063391906127b3565b60405180910390f35b34801561064857600080fd5b50610651611637565b005b34801561065f57600080fd5b5061067a60048036038101906106759190612264565b61166b565b6040516106879190612798565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b2919061220a565b6116ff565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107445750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600e805461075890612a9b565b80601f016020809104026020016040519081016040528092919081815260200182805461078490612a9b565b80156107d15780601f106107a6576101008083540402835291602001916107d1565b820191906000526020600020905b8154815290600101906020018083116107b457829003601f168201915b505050505081565b6060600280546107e890612a9b565b80601f016020809104026020016040519081016040528092919081815260200182805461081490612a9b565b80156108615780601f1061083657610100808354040283529160200191610861565b820191906000526020600020905b81548152906001019060200180831161084457829003601f168201915b5050505050905090565b600061087682611783565b6108ac576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f582610fde565b90508073ffffffffffffffffffffffffffffffffffffffff166109166117e2565b73ffffffffffffffffffffffffffffffffffffffff1614610979576109428161093d6117e2565b61166b565b610978576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b6000610a3e6117ea565b6001546000540303905090565b600c60009054906101000a900460ff1681565b6000610a69826117ef565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ad0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610adc846118bd565b91509150610af28187610aed6117e2565b6118e4565b610b3e57610b0786610b026117e2565b61166b565b610b3d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ba5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bb28686866001611928565b8015610bbd57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c8b85610c6788888761192e565b7c020000000000000000000000000000000000000000000000000000000017611956565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d13576000600185019050600060046000838152602001908152602001600020541415610d11576000548114610d10578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d7b8686866001611981565b505050505050565b610d8b611987565b600c60009054906101000a900460ff16610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd1906128b5565b60405180910390fd5b66470de4df8200003414610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a906127f5565b60405180910390fd5b610bba600d5410610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6090612895565b60405180910390fd5b611774610e74610a34565b10610eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eab90612895565b60405180910390fd5b600d6000815480929190610ec790612afe565b9190505550610ed73360016119d7565b610edf6119f5565b565b61177481565b610eef6119ff565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610f159061271c565b60006040518083038185875af1925050503d8060008114610f52576040519150601f19603f3d011682016040523d82523d6000602084013e610f57565b606091505b5050905080610f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9290612835565b60405180910390fd5b50565b610fb983838360405180602001604052806000815250611525565b505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b6000610fe9826117ef565b9050919050565b610bba81565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561105e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110b76119ff565b6110c16000611a7d565b565b6110cb6119ff565b80600e90805190602001906110e1929190612009565b5050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610bba81565b600c60009054906101000a900460ff16611160576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611157906128b5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016111d291906128f5565b60206040518083038186803b1580156111ea57600080fd5b505afa1580156111fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112229190612237565b73ffffffffffffffffffffffffffffffffffffffff1614611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f90612875565b60405180910390fd5b600b600082815260200190815260200160002060009054906101000a900460ff16156112d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d090612815565b60405180910390fd5b6117746112e4610a34565b10611324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131b90612895565b60405180910390fd5b6001600b600083815260200190815260200160002060006101000a81548160ff02191690831515021790555061135b3360016119d7565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461139790612a9b565b80601f01602080910402602001604051908101604052809291908181526020018280546113c390612a9b565b80156114105780601f106113e557610100808354040283529160200191611410565b820191906000526020600020905b8154815290600101906020018083116113f357829003601f168201915b5050505050905090565b80600760006114276117e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114d46117e2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115199190612798565b60405180910390a35050565b611530848484610a5e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115925761155b84848484611b43565b611591576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606115a382611783565b6115d9576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006115e3611ca3565b9050600081511415611604576040518060200160405280600081525061162f565b8061160e84611d35565b60405160200161161f9291906126f8565b6040516020818303038152906040525b915050919050565b61163f6119ff565b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117076119ff565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e906127d5565b60405180910390fd5b61178081611a7d565b50565b60008161178e6117ea565b1115801561179d575060005482105b80156117db575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806117fe6117ea565b11611886576000548110156118855760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611883575b600081141561187957600460008360019003935083815260200190815260200160002054905061184e565b80925050506118b8565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611945868684611d8e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600260095414156119cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c4906128d5565b60405180910390fd5b6002600981905550565b6119f1828260405180602001604052806000815250611d97565b5050565b6001600981905550565b611a07611e34565b73ffffffffffffffffffffffffffffffffffffffff16611a2561135e565b73ffffffffffffffffffffffffffffffffffffffff1614611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7290612855565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b696117e2565b8786866040518563ffffffff1660e01b8152600401611b8b949392919061274c565b602060405180830381600087803b158015611ba557600080fd5b505af1925050508015611bd657506040513d601f19601f82011682018060405250810190611bd39190612427565b60015b611c50573d8060008114611c06576040519150601f19603f3d011682016040523d82523d6000602084013e611c0b565b606091505b50600081511415611c48576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054611cb290612a9b565b80601f0160208091040260200160405190810160405280929190818152602001828054611cde90612a9b565b8015611d2b5780601f10611d0057610100808354040283529160200191611d2b565b820191906000526020600020905b815481529060010190602001808311611d0e57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611d7957600184039350600a81066030018453600a8104905080611d7457611d79565b611d4e565b50828103602084039350808452505050919050565b60009392505050565b611da18383611e3c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e2f57600080549050600083820390505b611de16000868380600101945086611b43565b611e17576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611dce578160005414611e2c57600080fd5b50505b505050565b600033905090565b6000805490506000821415611e7d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e8a6000848385611928565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f0183611ef2600086600061192e565b611efb85611ff9565b17611956565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611fa257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f67565b506000821415611fde576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611ff46000848385611981565b505050565b60006001821460e11b9050919050565b82805461201590612a9b565b90600052602060002090601f016020900481019282612037576000855561207e565b82601f1061205057805160ff191683800117855561207e565b8280016001018555821561207e579182015b8281111561207d578251825591602001919060010190612062565b5b50905061208b919061208f565b5090565b5b808211156120a8576000816000905550600101612090565b5090565b60006120bf6120ba84612935565b612910565b9050828152602081018484840111156120db576120da612bd9565b5b6120e6848285612a59565b509392505050565b60006121016120fc84612966565b612910565b90508281526020810184848401111561211d5761211c612bd9565b5b612128848285612a59565b509392505050565b60008135905061213f81612d93565b92915050565b60008151905061215481612d93565b92915050565b60008135905061216981612daa565b92915050565b60008135905061217e81612dc1565b92915050565b60008151905061219381612dc1565b92915050565b600082601f8301126121ae576121ad612bd4565b5b81356121be8482602086016120ac565b91505092915050565b600082601f8301126121dc576121db612bd4565b5b81356121ec8482602086016120ee565b91505092915050565b60008135905061220481612dd8565b92915050565b6000602082840312156122205761221f612be3565b5b600061222e84828501612130565b91505092915050565b60006020828403121561224d5761224c612be3565b5b600061225b84828501612145565b91505092915050565b6000806040838503121561227b5761227a612be3565b5b600061228985828601612130565b925050602061229a85828601612130565b9150509250929050565b6000806000606084860312156122bd576122bc612be3565b5b60006122cb86828701612130565b93505060206122dc86828701612130565b92505060406122ed868287016121f5565b9150509250925092565b6000806000806080858703121561231157612310612be3565b5b600061231f87828801612130565b945050602061233087828801612130565b9350506040612341878288016121f5565b925050606085013567ffffffffffffffff81111561236257612361612bde565b5b61236e87828801612199565b91505092959194509250565b6000806040838503121561239157612390612be3565b5b600061239f85828601612130565b92505060206123b08582860161215a565b9150509250929050565b600080604083850312156123d1576123d0612be3565b5b60006123df85828601612130565b92505060206123f0858286016121f5565b9150509250929050565b6000602082840312156124105761240f612be3565b5b600061241e8482850161216f565b91505092915050565b60006020828403121561243d5761243c612be3565b5b600061244b84828501612184565b91505092915050565b60006020828403121561246a57612469612be3565b5b600082013567ffffffffffffffff81111561248857612487612bde565b5b612494848285016121c7565b91505092915050565b6000602082840312156124b3576124b2612be3565b5b60006124c1848285016121f5565b91505092915050565b6124d3816129e5565b82525050565b6124e2816129f7565b82525050565b60006124f382612997565b6124fd81856129ad565b935061250d818560208601612a68565b61251681612be8565b840191505092915050565b600061252c826129a2565b61253681856129c9565b9350612546818560208601612a68565b61254f81612be8565b840191505092915050565b6000612565826129a2565b61256f81856129da565b935061257f818560208601612a68565b80840191505092915050565b60006125986026836129c9565b91506125a382612bf9565b604082019050919050565b60006125bb6013836129c9565b91506125c682612c48565b602082019050919050565b60006125de600f836129c9565b91506125e982612c71565b602082019050919050565b60006126016017836129c9565b915061260c82612c9a565b602082019050919050565b60006126246020836129c9565b915061262f82612cc3565b602082019050919050565b60006126476000836129be565b915061265282612cec565b600082019050919050565b600061266a601f836129c9565b915061267582612cef565b602082019050919050565b600061268d6009836129c9565b915061269882612d18565b602082019050919050565b60006126b0600e836129c9565b91506126bb82612d41565b602082019050919050565b60006126d3601f836129c9565b91506126de82612d6a565b602082019050919050565b6126f281612a4f565b82525050565b6000612704828561255a565b9150612710828461255a565b91508190509392505050565b60006127278261263a565b9150819050919050565b600060208201905061274660008301846124ca565b92915050565b600060808201905061276160008301876124ca565b61276e60208301866124ca565b61277b60408301856126e9565b818103606083015261278d81846124e8565b905095945050505050565b60006020820190506127ad60008301846124d9565b92915050565b600060208201905081810360008301526127cd8184612521565b905092915050565b600060208201905081810360008301526127ee8161258b565b9050919050565b6000602082019050818103600083015261280e816125ae565b9050919050565b6000602082019050818103600083015261282e816125d1565b9050919050565b6000602082019050818103600083015261284e816125f4565b9050919050565b6000602082019050818103600083015261286e81612617565b9050919050565b6000602082019050818103600083015261288e8161265d565b9050919050565b600060208201905081810360008301526128ae81612680565b9050919050565b600060208201905081810360008301526128ce816126a3565b9050919050565b600060208201905081810360008301526128ee816126c6565b9050919050565b600060208201905061290a60008301846126e9565b92915050565b600061291a61292b565b90506129268282612acd565b919050565b6000604051905090565b600067ffffffffffffffff8211156129505761294f612ba5565b5b61295982612be8565b9050602081019050919050565b600067ffffffffffffffff82111561298157612980612ba5565b5b61298a82612be8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006129f082612a2f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612a86578082015181840152602081019050612a6b565b83811115612a95576000848401525b50505050565b60006002820490506001821680612ab357607f821691505b60208210811415612ac757612ac6612b76565b5b50919050565b612ad682612be8565b810181811067ffffffffffffffff82111715612af557612af4612ba5565b5b80604052505050565b6000612b0982612a4f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b3c57612b3b612b47565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482073656e742e00000000000000000000000000600082015250565b7f416c7265616479206d696e7465642e0000000000000000000000000000000000600082015250565b7f4661696c656420746f207769746864726177204554482e000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f596f7520646f6e2774206f776e20746861742043726561746520436172642e00600082015250565b7f536f6c64206f75742e0000000000000000000000000000000000000000000000600082015250565b7f4d696e7420696e6163746976652e000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b612d9c816129e5565b8114612da757600080fd5b50565b612db3816129f7565b8114612dbe57600080fd5b50565b612dca81612a03565b8114612dd557600080fd5b50565b612de181612a4f565b8114612dec57600080fd5b5056fea2646970667358221220b49d69c206c18684c65e398c420e21007b2026b1b470c845eb0d310b03730f8f64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80636eef94c0116100f75780638da5cb5b11610095578063c87b56dd11610064578063c87b56dd146105ff578063d3dd5fe01461063c578063e985e9c514610653578063f2fde38b14610690576101cd565b80638da5cb5b1461056457806395d89b411461058f578063a22cb465146105ba578063b88d4fde146105e3576101cd565b8063750521f5116100d1578063750521f5146104bc5780637b6ad3e4146104e55780638342083a14610510578063859a6c461461053b576101cd565b80636eef94c01461043d57806370a0823114610468578063715018a6146104a5576101cd565b80631a5aba5e1161016f5780633ccfd60b1161013e5780633ccfd60b1461039057806342842e0e146103a757806349678b22146103c35780636352211e14610400576101cd565b80631a5aba5e1461031457806323b872dd1461033f5780632502165e1461035b57806332cb6b0c14610365576101cd565b8063081812fc116101ab578063081812fc14610265578063095ea7b3146102a25780630e503a7f146102be57806318160ddd146102e9576101cd565b806301ffc9a7146101d257806303ee438c1461020f57806306fdde031461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906123fa565b6106b9565b6040516102069190612798565b60405180910390f35b34801561021b57600080fd5b5061022461074b565b60405161023191906127b3565b60405180910390f35b34801561024657600080fd5b5061024f6107d9565b60405161025c91906127b3565b60405180910390f35b34801561027157600080fd5b5061028c6004803603810190610287919061249d565b61086b565b6040516102999190612731565b60405180910390f35b6102bc60048036038101906102b791906123ba565b6108ea565b005b3480156102ca57600080fd5b506102d3610a2e565b6040516102e091906128f5565b60405180910390f35b3480156102f557600080fd5b506102fe610a34565b60405161030b91906128f5565b60405180910390f35b34801561032057600080fd5b50610329610a4b565b6040516103369190612798565b60405180910390f35b610359600480360381019061035491906122a4565b610a5e565b005b610363610d83565b005b34801561037157600080fd5b5061037a610ee1565b60405161038791906128f5565b60405180910390f35b34801561039c57600080fd5b506103a5610ee7565b005b6103c160048036038101906103bc91906122a4565b610f9e565b005b3480156103cf57600080fd5b506103ea60048036038101906103e5919061249d565b610fbe565b6040516103f79190612798565b60405180910390f35b34801561040c57600080fd5b506104276004803603810190610422919061249d565b610fde565b6040516104349190612731565b60405180910390f35b34801561044957600080fd5b50610452610ff0565b60405161045f91906128f5565b60405180910390f35b34801561047457600080fd5b5061048f600480360381019061048a919061220a565b610ff6565b60405161049c91906128f5565b60405180910390f35b3480156104b157600080fd5b506104ba6110af565b005b3480156104c857600080fd5b506104e360048036038101906104de9190612454565b6110c3565b005b3480156104f157600080fd5b506104fa6110e5565b6040516105079190612731565b60405180910390f35b34801561051c57600080fd5b5061052561110b565b60405161053291906128f5565b60405180910390f35b34801561054757600080fd5b50610562600480360381019061055d919061249d565b611111565b005b34801561057057600080fd5b5061057961135e565b6040516105869190612731565b60405180910390f35b34801561059b57600080fd5b506105a4611388565b6040516105b191906127b3565b60405180910390f35b3480156105c657600080fd5b506105e160048036038101906105dc919061237a565b61141a565b005b6105fd60048036038101906105f891906122f7565b611525565b005b34801561060b57600080fd5b506106266004803603810190610621919061249d565b611598565b60405161063391906127b3565b60405180910390f35b34801561064857600080fd5b50610651611637565b005b34801561065f57600080fd5b5061067a60048036038101906106759190612264565b61166b565b6040516106879190612798565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b2919061220a565b6116ff565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107445750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600e805461075890612a9b565b80601f016020809104026020016040519081016040528092919081815260200182805461078490612a9b565b80156107d15780601f106107a6576101008083540402835291602001916107d1565b820191906000526020600020905b8154815290600101906020018083116107b457829003601f168201915b505050505081565b6060600280546107e890612a9b565b80601f016020809104026020016040519081016040528092919081815260200182805461081490612a9b565b80156108615780601f1061083657610100808354040283529160200191610861565b820191906000526020600020905b81548152906001019060200180831161084457829003601f168201915b5050505050905090565b600061087682611783565b6108ac576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f582610fde565b90508073ffffffffffffffffffffffffffffffffffffffff166109166117e2565b73ffffffffffffffffffffffffffffffffffffffff1614610979576109428161093d6117e2565b61166b565b610978576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b6000610a3e6117ea565b6001546000540303905090565b600c60009054906101000a900460ff1681565b6000610a69826117ef565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ad0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610adc846118bd565b91509150610af28187610aed6117e2565b6118e4565b610b3e57610b0786610b026117e2565b61166b565b610b3d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ba5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bb28686866001611928565b8015610bbd57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c8b85610c6788888761192e565b7c020000000000000000000000000000000000000000000000000000000017611956565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d13576000600185019050600060046000838152602001908152602001600020541415610d11576000548114610d10578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d7b8686866001611981565b505050505050565b610d8b611987565b600c60009054906101000a900460ff16610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd1906128b5565b60405180910390fd5b66470de4df8200003414610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a906127f5565b60405180910390fd5b610bba600d5410610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6090612895565b60405180910390fd5b611774610e74610a34565b10610eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eab90612895565b60405180910390fd5b600d6000815480929190610ec790612afe565b9190505550610ed73360016119d7565b610edf6119f5565b565b61177481565b610eef6119ff565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610f159061271c565b60006040518083038185875af1925050503d8060008114610f52576040519150601f19603f3d011682016040523d82523d6000602084013e610f57565b606091505b5050905080610f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9290612835565b60405180910390fd5b50565b610fb983838360405180602001604052806000815250611525565b505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b6000610fe9826117ef565b9050919050565b610bba81565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561105e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110b76119ff565b6110c16000611a7d565b565b6110cb6119ff565b80600e90805190602001906110e1929190612009565b5050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610bba81565b600c60009054906101000a900460ff16611160576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611157906128b5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016111d291906128f5565b60206040518083038186803b1580156111ea57600080fd5b505afa1580156111fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112229190612237565b73ffffffffffffffffffffffffffffffffffffffff1614611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f90612875565b60405180910390fd5b600b600082815260200190815260200160002060009054906101000a900460ff16156112d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d090612815565b60405180910390fd5b6117746112e4610a34565b10611324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131b90612895565b60405180910390fd5b6001600b600083815260200190815260200160002060006101000a81548160ff02191690831515021790555061135b3360016119d7565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461139790612a9b565b80601f01602080910402602001604051908101604052809291908181526020018280546113c390612a9b565b80156114105780601f106113e557610100808354040283529160200191611410565b820191906000526020600020905b8154815290600101906020018083116113f357829003601f168201915b5050505050905090565b80600760006114276117e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114d46117e2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115199190612798565b60405180910390a35050565b611530848484610a5e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115925761155b84848484611b43565b611591576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606115a382611783565b6115d9576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006115e3611ca3565b9050600081511415611604576040518060200160405280600081525061162f565b8061160e84611d35565b60405160200161161f9291906126f8565b6040516020818303038152906040525b915050919050565b61163f6119ff565b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117076119ff565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e906127d5565b60405180910390fd5b61178081611a7d565b50565b60008161178e6117ea565b1115801561179d575060005482105b80156117db575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806117fe6117ea565b11611886576000548110156118855760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611883575b600081141561187957600460008360019003935083815260200190815260200160002054905061184e565b80925050506118b8565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611945868684611d8e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600260095414156119cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c4906128d5565b60405180910390fd5b6002600981905550565b6119f1828260405180602001604052806000815250611d97565b5050565b6001600981905550565b611a07611e34565b73ffffffffffffffffffffffffffffffffffffffff16611a2561135e565b73ffffffffffffffffffffffffffffffffffffffff1614611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7290612855565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b696117e2565b8786866040518563ffffffff1660e01b8152600401611b8b949392919061274c565b602060405180830381600087803b158015611ba557600080fd5b505af1925050508015611bd657506040513d601f19601f82011682018060405250810190611bd39190612427565b60015b611c50573d8060008114611c06576040519150601f19603f3d011682016040523d82523d6000602084013e611c0b565b606091505b50600081511415611c48576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054611cb290612a9b565b80601f0160208091040260200160405190810160405280929190818152602001828054611cde90612a9b565b8015611d2b5780601f10611d0057610100808354040283529160200191611d2b565b820191906000526020600020905b815481529060010190602001808311611d0e57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611d7957600184039350600a81066030018453600a8104905080611d7457611d79565b611d4e565b50828103602084039350808452505050919050565b60009392505050565b611da18383611e3c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e2f57600080549050600083820390505b611de16000868380600101945086611b43565b611e17576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611dce578160005414611e2c57600080fd5b50505b505050565b600033905090565b6000805490506000821415611e7d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e8a6000848385611928565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f0183611ef2600086600061192e565b611efb85611ff9565b17611956565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611fa257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f67565b506000821415611fde576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611ff46000848385611981565b505050565b60006001821460e11b9050919050565b82805461201590612a9b565b90600052602060002090601f016020900481019282612037576000855561207e565b82601f1061205057805160ff191683800117855561207e565b8280016001018555821561207e579182015b8281111561207d578251825591602001919060010190612062565b5b50905061208b919061208f565b5090565b5b808211156120a8576000816000905550600101612090565b5090565b60006120bf6120ba84612935565b612910565b9050828152602081018484840111156120db576120da612bd9565b5b6120e6848285612a59565b509392505050565b60006121016120fc84612966565b612910565b90508281526020810184848401111561211d5761211c612bd9565b5b612128848285612a59565b509392505050565b60008135905061213f81612d93565b92915050565b60008151905061215481612d93565b92915050565b60008135905061216981612daa565b92915050565b60008135905061217e81612dc1565b92915050565b60008151905061219381612dc1565b92915050565b600082601f8301126121ae576121ad612bd4565b5b81356121be8482602086016120ac565b91505092915050565b600082601f8301126121dc576121db612bd4565b5b81356121ec8482602086016120ee565b91505092915050565b60008135905061220481612dd8565b92915050565b6000602082840312156122205761221f612be3565b5b600061222e84828501612130565b91505092915050565b60006020828403121561224d5761224c612be3565b5b600061225b84828501612145565b91505092915050565b6000806040838503121561227b5761227a612be3565b5b600061228985828601612130565b925050602061229a85828601612130565b9150509250929050565b6000806000606084860312156122bd576122bc612be3565b5b60006122cb86828701612130565b93505060206122dc86828701612130565b92505060406122ed868287016121f5565b9150509250925092565b6000806000806080858703121561231157612310612be3565b5b600061231f87828801612130565b945050602061233087828801612130565b9350506040612341878288016121f5565b925050606085013567ffffffffffffffff81111561236257612361612bde565b5b61236e87828801612199565b91505092959194509250565b6000806040838503121561239157612390612be3565b5b600061239f85828601612130565b92505060206123b08582860161215a565b9150509250929050565b600080604083850312156123d1576123d0612be3565b5b60006123df85828601612130565b92505060206123f0858286016121f5565b9150509250929050565b6000602082840312156124105761240f612be3565b5b600061241e8482850161216f565b91505092915050565b60006020828403121561243d5761243c612be3565b5b600061244b84828501612184565b91505092915050565b60006020828403121561246a57612469612be3565b5b600082013567ffffffffffffffff81111561248857612487612bde565b5b612494848285016121c7565b91505092915050565b6000602082840312156124b3576124b2612be3565b5b60006124c1848285016121f5565b91505092915050565b6124d3816129e5565b82525050565b6124e2816129f7565b82525050565b60006124f382612997565b6124fd81856129ad565b935061250d818560208601612a68565b61251681612be8565b840191505092915050565b600061252c826129a2565b61253681856129c9565b9350612546818560208601612a68565b61254f81612be8565b840191505092915050565b6000612565826129a2565b61256f81856129da565b935061257f818560208601612a68565b80840191505092915050565b60006125986026836129c9565b91506125a382612bf9565b604082019050919050565b60006125bb6013836129c9565b91506125c682612c48565b602082019050919050565b60006125de600f836129c9565b91506125e982612c71565b602082019050919050565b60006126016017836129c9565b915061260c82612c9a565b602082019050919050565b60006126246020836129c9565b915061262f82612cc3565b602082019050919050565b60006126476000836129be565b915061265282612cec565b600082019050919050565b600061266a601f836129c9565b915061267582612cef565b602082019050919050565b600061268d6009836129c9565b915061269882612d18565b602082019050919050565b60006126b0600e836129c9565b91506126bb82612d41565b602082019050919050565b60006126d3601f836129c9565b91506126de82612d6a565b602082019050919050565b6126f281612a4f565b82525050565b6000612704828561255a565b9150612710828461255a565b91508190509392505050565b60006127278261263a565b9150819050919050565b600060208201905061274660008301846124ca565b92915050565b600060808201905061276160008301876124ca565b61276e60208301866124ca565b61277b60408301856126e9565b818103606083015261278d81846124e8565b905095945050505050565b60006020820190506127ad60008301846124d9565b92915050565b600060208201905081810360008301526127cd8184612521565b905092915050565b600060208201905081810360008301526127ee8161258b565b9050919050565b6000602082019050818103600083015261280e816125ae565b9050919050565b6000602082019050818103600083015261282e816125d1565b9050919050565b6000602082019050818103600083015261284e816125f4565b9050919050565b6000602082019050818103600083015261286e81612617565b9050919050565b6000602082019050818103600083015261288e8161265d565b9050919050565b600060208201905081810360008301526128ae81612680565b9050919050565b600060208201905081810360008301526128ce816126a3565b9050919050565b600060208201905081810360008301526128ee816126c6565b9050919050565b600060208201905061290a60008301846126e9565b92915050565b600061291a61292b565b90506129268282612acd565b919050565b6000604051905090565b600067ffffffffffffffff8211156129505761294f612ba5565b5b61295982612be8565b9050602081019050919050565b600067ffffffffffffffff82111561298157612980612ba5565b5b61298a82612be8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006129f082612a2f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612a86578082015181840152602081019050612a6b565b83811115612a95576000848401525b50505050565b60006002820490506001821680612ab357607f821691505b60208210811415612ac757612ac6612b76565b5b50919050565b612ad682612be8565b810181811067ffffffffffffffff82111715612af557612af4612ba5565b5b80604052505050565b6000612b0982612a4f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b3c57612b3b612b47565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482073656e742e00000000000000000000000000600082015250565b7f416c7265616479206d696e7465642e0000000000000000000000000000000000600082015250565b7f4661696c656420746f207769746864726177204554482e000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f596f7520646f6e2774206f776e20746861742043726561746520436172642e00600082015250565b7f536f6c64206f75742e0000000000000000000000000000000000000000000000600082015250565b7f4d696e7420696e6163746976652e000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b612d9c816129e5565b8114612da757600080fd5b50565b612db3816129f7565b8114612dbe57600080fd5b50565b612dca81612a03565b8114612dd557600080fd5b50565b612de181612a4f565b8114612dec57600080fd5b5056fea2646970667358221220b49d69c206c18684c65e398c420e21007b2026b1b470c845eb0d310b03730f8f64736f6c63430008070033

Deployed Bytecode Sourcemap

58146:2129:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24943:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58586:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25845:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32336:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31769:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58547:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21596:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58354:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35975:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59200:356;;;:::i;:::-;;58392:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60099:173;;;;;;;;;;;;;:::i;:::-;;38896:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58294:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27238:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58440:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22780:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5722:103;;;;;;;;;;;;;:::i;:::-;;59642:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58207:78;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58496:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58735:457;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5074:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26021:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32894:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39687:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26231:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59764:84;;;;;;;;;;;;;:::i;:::-;;33285:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5980:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24943:639;25028:4;25367:10;25352:25;;:11;:25;;;;:102;;;;25444:10;25429:25;;:11;:25;;;;25352:102;:179;;;;25521:10;25506:25;;:11;:25;;;;25352:179;25332:199;;24943:639;;;:::o;58586:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25845:100::-;25899:13;25932:5;25925:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25845:100;:::o;32336:218::-;32412:7;32437:16;32445:7;32437;:16::i;:::-;32432:64;;32462:34;;;;;;;;;;;;;;32432:64;32516:15;:24;32532:7;32516:24;;;;;;;;;;;:30;;;;;;;;;;;;32509:37;;32336:218;;;:::o;31769:408::-;31858:13;31874:16;31882:7;31874;:16::i;:::-;31858:32;;31930:5;31907:28;;:19;:17;:19::i;:::-;:28;;;31903:175;;31955:44;31972:5;31979:19;:17;:19::i;:::-;31955:16;:44::i;:::-;31950:128;;32027:35;;;;;;;;;;;;;;31950:128;31903:175;32123:2;32090:15;:24;32106:7;32090:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32161:7;32157:2;32141:28;;32150:5;32141:28;;;;;;;;;;;;31847:330;31769:408;;:::o;58547:30::-;;;;:::o;21596:323::-;21657:7;21885:15;:13;:15::i;:::-;21870:12;;21854:13;;:28;:46;21847:53;;21596:323;:::o;58354:31::-;;;;;;;;;;;;;:::o;35975:2825::-;36117:27;36147;36166:7;36147:18;:27::i;:::-;36117:57;;36232:4;36191:45;;36207:19;36191:45;;;36187:86;;36245:28;;;;;;;;;;;;;;36187:86;36287:27;36316:23;36343:35;36370:7;36343:26;:35::i;:::-;36286:92;;;;36478:68;36503:15;36520:4;36526:19;:17;:19::i;:::-;36478:24;:68::i;:::-;36473:180;;36566:43;36583:4;36589:19;:17;:19::i;:::-;36566:16;:43::i;:::-;36561:92;;36618:35;;;;;;;;;;;;;;36561:92;36473:180;36684:1;36670:16;;:2;:16;;;36666:52;;;36695:23;;;;;;;;;;;;;;36666:52;36731:43;36753:4;36759:2;36763:7;36772:1;36731:21;:43::i;:::-;36867:15;36864:160;;;37007:1;36986:19;36979:30;36864:160;37404:18;:24;37423:4;37404:24;;;;;;;;;;;;;;;;37402:26;;;;;;;;;;;;37473:18;:22;37492:2;37473:22;;;;;;;;;;;;;;;;37471:24;;;;;;;;;;;37795:146;37832:2;37881:45;37896:4;37902:2;37906:19;37881:14;:45::i;:::-;17995:8;37853:73;37795:18;:146::i;:::-;37766:17;:26;37784:7;37766:26;;;;;;;;;;;:175;;;;38112:1;17995:8;38061:19;:47;:52;38057:627;;;38134:19;38166:1;38156:7;:11;38134:33;;38323:1;38289:17;:30;38307:11;38289:30;;;;;;;;;;;;:35;38285:384;;;38427:13;;38412:11;:28;38408:242;;38607:19;38574:17;:30;38592:11;38574:30;;;;;;;;;;;:52;;;;38408:242;38285:384;38115:569;38057:627;38731:7;38727:2;38712:27;;38721:4;38712:27;;;;;;;;;;;;38750:42;38771:4;38777:2;38781:7;38790:1;38750:20;:42::i;:::-;36106:2694;;;35975:2825;;;:::o;59200:356::-;2345:21;:19;:21::i;:::-;59270:11:::1;;;;;;;;;;;59262:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;59332:10;59319:9;:23;59311:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;58536:4;59385:11;;:27;59377:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;58429:4;59445:13;:11;:13::i;:::-;:26;59437:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;59498:11;;:13;;;;;;;;;:::i;:::-;;;;;;59524:24;59534:10;59546:1;59524:9;:24::i;:::-;2389:20:::0;:18;:20::i;:::-;59200:356::o;58392:41::-;58429:4;58392:41;:::o;60099:173::-;4960:13;:11;:13::i;:::-;60146:12:::1;60163:10;:15;;60186:21;60163:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60145:67;;;60229:7;60221:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;60136:136;60099:173::o:0;38896:193::-;39042:39;39059:4;39065:2;39069:7;39042:39;;;;;;;;;;;;:16;:39::i;:::-;38896:193;;;:::o;58294:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;27238:152::-;27310:7;27353:27;27372:7;27353:18;:27::i;:::-;27330:52;;27238:152;;;:::o;58440:49::-;58485:4;58440:49;:::o;22780:233::-;22852:7;22893:1;22876:19;;:5;:19;;;22872:60;;;22904:28;;;;;;;;;;;;;;22872:60;16939:13;22950:18;:25;22969:5;22950:25;;;;;;;;;;;;;;;;:55;22943:62;;22780:233;;;:::o;5722:103::-;4960:13;:11;:13::i;:::-;5787:30:::1;5814:1;5787:18;:30::i;:::-;5722:103::o:0;59642:114::-;4960:13;:11;:13::i;:::-;59736:12:::1;59722:11;:26;;;;;;;;;;;;:::i;:::-;;59642:114:::0;:::o;58207:78::-;;;;;;;;;;;;;:::o;58496:44::-;58536:4;58496:44;:::o;58735:457::-;58809:11;;;;;;;;;;;58801:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;58916:10;58858:68;;58871:18;;;;;;;;;;;58858:40;;;58899:12;58858:54;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:68;;;58850:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;58982:19;:33;59002:12;58982:33;;;;;;;;;;;;;;;;;;;;;58981:34;58973:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;58429:4;59054:13;:11;:13::i;:::-;:26;59046:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;59143:4;59107:19;:33;59127:12;59107:33;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;59160:24;59170:10;59182:1;59160:9;:24::i;:::-;58735:457;:::o;5074:87::-;5120:7;5147:6;;;;;;;;;;;5140:13;;5074:87;:::o;26021:104::-;26077:13;26110:7;26103:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26021:104;:::o;32894:234::-;33041:8;32989:18;:39;33008:19;:17;:19::i;:::-;32989:39;;;;;;;;;;;;;;;:49;33029:8;32989:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;33101:8;33065:55;;33080:19;:17;:19::i;:::-;33065:55;;;33111:8;33065:55;;;;;;:::i;:::-;;;;;;;;32894:234;;:::o;39687:407::-;39862:31;39875:4;39881:2;39885:7;39862:12;:31::i;:::-;39926:1;39908:2;:14;;;:19;39904:183;;39947:56;39978:4;39984:2;39988:7;39997:5;39947:30;:56::i;:::-;39942:145;;40031:40;;;;;;;;;;;;;;39942:145;39904:183;39687:407;;;;:::o;26231:318::-;26304:13;26335:16;26343:7;26335;:16::i;:::-;26330:59;;26360:29;;;;;;;;;;;;;;26330:59;26402:21;26426:10;:8;:10::i;:::-;26402:34;;26479:1;26460:7;26454:21;:26;;:87;;;;;;;;;;;;;;;;;26507:7;26516:18;26526:7;26516:9;:18::i;:::-;26490:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26454:87;26447:94;;;26231:318;;;:::o;59764:84::-;4960:13;:11;:13::i;:::-;59829:11:::1;;;;;;;;;;;59828:12;59814:11;;:26;;;;;;;;;;;;;;;;;;59764:84::o:0;33285:164::-;33382:4;33406:18;:25;33425:5;33406:25;;;;;;;;;;;;;;;:35;33432:8;33406:35;;;;;;;;;;;;;;;;;;;;;;;;;33399:42;;33285:164;;;;:::o;5980:201::-;4960:13;:11;:13::i;:::-;6089:1:::1;6069:22;;:8;:22;;;;6061:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6145:28;6164:8;6145:18;:28::i;:::-;5980:201:::0;:::o;33707:282::-;33772:4;33828:7;33809:15;:13;:15::i;:::-;:26;;:66;;;;;33862:13;;33852:7;:23;33809:66;:153;;;;;33961:1;17715:8;33913:17;:26;33931:7;33913:26;;;;;;;;;;;;:44;:49;33809:153;33789:173;;33707:282;;;:::o;56015:105::-;56075:7;56102:10;56095:17;;56015:105;:::o;21112:92::-;21168:7;21112:92;:::o;28393:1275::-;28460:7;28480:12;28495:7;28480:22;;28563:4;28544:15;:13;:15::i;:::-;:23;28540:1061;;28597:13;;28590:4;:20;28586:1015;;;28635:14;28652:17;:23;28670:4;28652:23;;;;;;;;;;;;28635:40;;28769:1;17715:8;28741:6;:24;:29;28737:845;;;29406:113;29423:1;29413:6;:11;29406:113;;;29466:17;:25;29484:6;;;;;;;29466:25;;;;;;;;;;;;29457:34;;29406:113;;;29552:6;29545:13;;;;;;28737:845;28612:989;28586:1015;28540:1061;29629:31;;;;;;;;;;;;;;28393:1275;;;;:::o;34870:485::-;34972:27;35001:23;35042:38;35083:15;:24;35099:7;35083:24;;;;;;;;;;;35042:65;;35260:18;35237:41;;35317:19;35311:26;35292:45;;35222:126;34870:485;;;:::o;34098:659::-;34247:11;34412:16;34405:5;34401:28;34392:37;;34572:16;34561:9;34557:32;34544:45;;34722:15;34711:9;34708:30;34700:5;34689:9;34686:20;34683:56;34673:66;;34098:659;;;;;:::o;40756:159::-;;;;;:::o;55324:311::-;55459:7;55479:16;18119:3;55505:19;:41;;55479:68;;18119:3;55573:31;55584:4;55590:2;55594:9;55573:10;:31::i;:::-;55565:40;;:62;;55558:69;;;55324:311;;;;;:::o;30216:450::-;30296:14;30464:16;30457:5;30453:28;30444:37;;30641:5;30627:11;30602:23;30598:41;30595:52;30588:5;30585:63;30575:73;;30216:450;;;;:::o;41580:158::-;;;;;:::o;2425:293::-;1827:1;2559:7;;:19;;2551:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1827:1;2692:7;:18;;;;2425:293::o;49847:112::-;49924:27;49934:2;49938:8;49924:27;;;;;;;;;;;;:9;:27::i;:::-;49847:112;;:::o;2726:213::-;1783:1;2909:7;:22;;;;2726:213::o;5239:132::-;5314:12;:10;:12::i;:::-;5303:23;;:7;:5;:7::i;:::-;:23;;;5295:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5239:132::o;6341:191::-;6415:16;6434:6;;;;;;;;;;;6415:25;;6460:8;6451:6;;:17;;;;;;;;;;;;;;;;;;6515:8;6484:40;;6505:8;6484:40;;;;;;;;;;;;6404:128;6341:191;:::o;42178:716::-;42341:4;42387:2;42362:45;;;42408:19;:17;:19::i;:::-;42429:4;42435:7;42444:5;42362:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42358:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42662:1;42645:6;:13;:18;42641:235;;;42691:40;;;;;;;;;;;;;;42641:235;42834:6;42828:13;42819:6;42815:2;42811:15;42804:38;42358:529;42531:54;;;42521:64;;;:6;:64;;;;42514:71;;;42178:716;;;;;;:::o;59922:104::-;59974:13;60007:11;60000:18;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59922:104;:::o;56222:1745::-;56287:17;56721:4;56714;56708:11;56704:22;56813:1;56807:4;56800:15;56888:4;56885:1;56881:12;56874:19;;56970:1;56965:3;56958:14;57074:3;57313:5;57295:428;57321:1;57295:428;;;57361:1;57356:3;57352:11;57345:18;;57532:2;57526:4;57522:13;57518:2;57514:22;57509:3;57501:36;57626:2;57620:4;57616:13;57608:21;;57693:4;57683:25;;57701:5;;57683:25;57295:428;;;57299:21;57762:3;57757;57753:13;57877:4;57872:3;57868:14;57861:21;;57942:6;57937:3;57930:19;56326:1634;;;56222:1745;;;:::o;55025:147::-;55162:6;55025:147;;;;;:::o;49074:689::-;49205:19;49211:2;49215:8;49205:5;:19::i;:::-;49284:1;49266:2;:14;;;:19;49262:483;;49306:11;49320:13;;49306:27;;49352:13;49374:8;49368:3;:14;49352:30;;49401:233;49432:62;49471:1;49475:2;49479:7;;;;;;49488:5;49432:30;:62::i;:::-;49427:167;;49530:40;;;;;;;;;;;;;;49427:167;49629:3;49621:5;:11;49401:233;;49716:3;49699:13;;:20;49695:34;;49721:8;;;49695:34;49287:458;;49262:483;49074:689;;;:::o;3625:98::-;3678:7;3705:10;3698:17;;3625:98;:::o;43356:2966::-;43429:20;43452:13;;43429:36;;43492:1;43480:8;:13;43476:44;;;43502:18;;;;;;;;;;;;;;43476:44;43533:61;43563:1;43567:2;43571:12;43585:8;43533:21;:61::i;:::-;44077:1;17077:2;44047:1;:26;;44046:32;44034:8;:45;44008:18;:22;44027:2;44008:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;44356:139;44393:2;44447:33;44470:1;44474:2;44478:1;44447:14;:33::i;:::-;44414:30;44435:8;44414:20;:30::i;:::-;:66;44356:18;:139::i;:::-;44322:17;:31;44340:12;44322:31;;;;;;;;;;;:173;;;;44512:16;44543:11;44572:8;44557:12;:23;44543:37;;45093:16;45089:2;45085:25;45073:37;;45465:12;45425:8;45384:1;45322:25;45263:1;45202;45175:335;45836:1;45822:12;45818:20;45776:346;45877:3;45868:7;45865:16;45776:346;;46095:7;46085:8;46082:1;46055:25;46052:1;46049;46044:59;45930:1;45921:7;45917:15;45906:26;;45776:346;;;45780:77;46167:1;46155:8;:13;46151:45;;;46177:19;;;;;;;;;;;;;;46151:45;46229:3;46213:13;:19;;;;43782:2462;;46254:60;46283:1;46287:2;46291:12;46305:8;46254:20;:60::i;:::-;43418:2904;43356:2966;;:::o;30768:324::-;30838:14;31071:1;31061:8;31058:15;31032:24;31028:46;31018:56;;30768:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:143::-;1043:5;1074:6;1068:13;1059:22;;1090:33;1117:5;1090:33;:::i;:::-;986:143;;;;:::o;1135:133::-;1178:5;1216:6;1203:20;1194:29;;1232:30;1256:5;1232:30;:::i;:::-;1135:133;;;;:::o;1274:137::-;1319:5;1357:6;1344:20;1335:29;;1373:32;1399:5;1373:32;:::i;:::-;1274:137;;;;:::o;1417:141::-;1473:5;1504:6;1498:13;1489:22;;1520:32;1546:5;1520:32;:::i;:::-;1417:141;;;;:::o;1577:338::-;1632:5;1681:3;1674:4;1666:6;1662:17;1658:27;1648:122;;1689:79;;:::i;:::-;1648:122;1806:6;1793:20;1831:78;1905:3;1897:6;1890:4;1882:6;1878:17;1831:78;:::i;:::-;1822:87;;1638:277;1577:338;;;;:::o;1935:340::-;1991:5;2040:3;2033:4;2025:6;2021:17;2017:27;2007:122;;2048:79;;:::i;:::-;2007:122;2165:6;2152:20;2190:79;2265:3;2257:6;2250:4;2242:6;2238:17;2190:79;:::i;:::-;2181:88;;1997:278;1935:340;;;;:::o;2281:139::-;2327:5;2365:6;2352:20;2343:29;;2381:33;2408:5;2381:33;:::i;:::-;2281:139;;;;:::o;2426:329::-;2485:6;2534:2;2522:9;2513:7;2509:23;2505:32;2502:119;;;2540:79;;:::i;:::-;2502:119;2660:1;2685:53;2730:7;2721:6;2710:9;2706:22;2685:53;:::i;:::-;2675:63;;2631:117;2426:329;;;;:::o;2761:351::-;2831:6;2880:2;2868:9;2859:7;2855:23;2851:32;2848:119;;;2886:79;;:::i;:::-;2848:119;3006:1;3031:64;3087:7;3078:6;3067:9;3063:22;3031:64;:::i;:::-;3021:74;;2977:128;2761:351;;;;:::o;3118:474::-;3186:6;3194;3243:2;3231:9;3222:7;3218:23;3214:32;3211:119;;;3249:79;;:::i;:::-;3211:119;3369:1;3394:53;3439:7;3430:6;3419:9;3415:22;3394:53;:::i;:::-;3384:63;;3340:117;3496:2;3522:53;3567:7;3558:6;3547:9;3543:22;3522:53;:::i;:::-;3512:63;;3467:118;3118:474;;;;;:::o;3598:619::-;3675:6;3683;3691;3740:2;3728:9;3719:7;3715:23;3711:32;3708:119;;;3746:79;;:::i;:::-;3708:119;3866:1;3891:53;3936:7;3927:6;3916:9;3912:22;3891:53;:::i;:::-;3881:63;;3837:117;3993:2;4019:53;4064:7;4055:6;4044:9;4040:22;4019:53;:::i;:::-;4009:63;;3964:118;4121:2;4147:53;4192:7;4183:6;4172:9;4168:22;4147:53;:::i;:::-;4137:63;;4092:118;3598:619;;;;;:::o;4223:943::-;4318:6;4326;4334;4342;4391:3;4379:9;4370:7;4366:23;4362:33;4359:120;;;4398:79;;:::i;:::-;4359:120;4518:1;4543:53;4588:7;4579:6;4568:9;4564:22;4543:53;:::i;:::-;4533:63;;4489:117;4645:2;4671:53;4716:7;4707:6;4696:9;4692:22;4671:53;:::i;:::-;4661:63;;4616:118;4773:2;4799:53;4844:7;4835:6;4824:9;4820:22;4799:53;:::i;:::-;4789:63;;4744:118;4929:2;4918:9;4914:18;4901:32;4960:18;4952:6;4949:30;4946:117;;;4982:79;;:::i;:::-;4946:117;5087:62;5141:7;5132:6;5121:9;5117:22;5087:62;:::i;:::-;5077:72;;4872:287;4223:943;;;;;;;:::o;5172:468::-;5237:6;5245;5294:2;5282:9;5273:7;5269:23;5265:32;5262:119;;;5300:79;;:::i;:::-;5262:119;5420:1;5445:53;5490:7;5481:6;5470:9;5466:22;5445:53;:::i;:::-;5435:63;;5391:117;5547:2;5573:50;5615:7;5606:6;5595:9;5591:22;5573:50;:::i;:::-;5563:60;;5518:115;5172:468;;;;;:::o;5646:474::-;5714:6;5722;5771:2;5759:9;5750:7;5746:23;5742:32;5739:119;;;5777:79;;:::i;:::-;5739:119;5897:1;5922:53;5967:7;5958:6;5947:9;5943:22;5922:53;:::i;:::-;5912:63;;5868:117;6024:2;6050:53;6095:7;6086:6;6075:9;6071:22;6050:53;:::i;:::-;6040:63;;5995:118;5646:474;;;;;:::o;6126:327::-;6184:6;6233:2;6221:9;6212:7;6208:23;6204:32;6201:119;;;6239:79;;:::i;:::-;6201:119;6359:1;6384:52;6428:7;6419:6;6408:9;6404:22;6384:52;:::i;:::-;6374:62;;6330:116;6126:327;;;;:::o;6459:349::-;6528:6;6577:2;6565:9;6556:7;6552:23;6548:32;6545:119;;;6583:79;;:::i;:::-;6545:119;6703:1;6728:63;6783:7;6774:6;6763:9;6759:22;6728:63;:::i;:::-;6718:73;;6674:127;6459:349;;;;:::o;6814:509::-;6883:6;6932:2;6920:9;6911:7;6907:23;6903:32;6900:119;;;6938:79;;:::i;:::-;6900:119;7086:1;7075:9;7071:17;7058:31;7116:18;7108:6;7105:30;7102:117;;;7138:79;;:::i;:::-;7102:117;7243:63;7298:7;7289:6;7278:9;7274:22;7243:63;:::i;:::-;7233:73;;7029:287;6814:509;;;;:::o;7329:329::-;7388:6;7437:2;7425:9;7416:7;7412:23;7408:32;7405:119;;;7443:79;;:::i;:::-;7405:119;7563:1;7588:53;7633:7;7624:6;7613:9;7609:22;7588:53;:::i;:::-;7578:63;;7534:117;7329:329;;;;:::o;7664:118::-;7751:24;7769:5;7751:24;:::i;:::-;7746:3;7739:37;7664:118;;:::o;7788:109::-;7869:21;7884:5;7869:21;:::i;:::-;7864:3;7857:34;7788:109;;:::o;7903:360::-;7989:3;8017:38;8049:5;8017:38;:::i;:::-;8071:70;8134:6;8129:3;8071:70;:::i;:::-;8064:77;;8150:52;8195:6;8190:3;8183:4;8176:5;8172:16;8150:52;:::i;:::-;8227:29;8249:6;8227:29;:::i;:::-;8222:3;8218:39;8211:46;;7993:270;7903:360;;;;:::o;8269:364::-;8357:3;8385:39;8418:5;8385:39;:::i;:::-;8440:71;8504:6;8499:3;8440:71;:::i;:::-;8433:78;;8520:52;8565:6;8560:3;8553:4;8546:5;8542:16;8520:52;:::i;:::-;8597:29;8619:6;8597:29;:::i;:::-;8592:3;8588:39;8581:46;;8361:272;8269:364;;;;:::o;8639:377::-;8745:3;8773:39;8806:5;8773:39;:::i;:::-;8828:89;8910:6;8905:3;8828:89;:::i;:::-;8821:96;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:6;8998:3;8994:16;8987:23;;8749:267;8639:377;;;;:::o;9022:366::-;9164:3;9185:67;9249:2;9244:3;9185:67;:::i;:::-;9178:74;;9261:93;9350:3;9261:93;:::i;:::-;9379:2;9374:3;9370:12;9363:19;;9022:366;;;:::o;9394:::-;9536:3;9557:67;9621:2;9616:3;9557:67;:::i;:::-;9550:74;;9633:93;9722:3;9633:93;:::i;:::-;9751:2;9746:3;9742:12;9735:19;;9394:366;;;:::o;9766:::-;9908:3;9929:67;9993:2;9988:3;9929:67;:::i;:::-;9922:74;;10005:93;10094:3;10005:93;:::i;:::-;10123:2;10118:3;10114:12;10107:19;;9766:366;;;:::o;10138:::-;10280:3;10301:67;10365:2;10360:3;10301:67;:::i;:::-;10294:74;;10377:93;10466:3;10377:93;:::i;:::-;10495:2;10490:3;10486:12;10479:19;;10138:366;;;:::o;10510:::-;10652:3;10673:67;10737:2;10732:3;10673:67;:::i;:::-;10666:74;;10749:93;10838:3;10749:93;:::i;:::-;10867:2;10862:3;10858:12;10851:19;;10510:366;;;:::o;10882:398::-;11041:3;11062:83;11143:1;11138:3;11062:83;:::i;:::-;11055:90;;11154:93;11243:3;11154:93;:::i;:::-;11272:1;11267:3;11263:11;11256:18;;10882:398;;;:::o;11286:366::-;11428:3;11449:67;11513:2;11508:3;11449:67;:::i;:::-;11442:74;;11525:93;11614:3;11525:93;:::i;:::-;11643:2;11638:3;11634:12;11627:19;;11286:366;;;:::o;11658:365::-;11800:3;11821:66;11885:1;11880:3;11821:66;:::i;:::-;11814:73;;11896:93;11985:3;11896:93;:::i;:::-;12014:2;12009:3;12005:12;11998:19;;11658:365;;;:::o;12029:366::-;12171:3;12192:67;12256:2;12251:3;12192:67;:::i;:::-;12185:74;;12268:93;12357:3;12268:93;:::i;:::-;12386:2;12381:3;12377:12;12370:19;;12029:366;;;:::o;12401:::-;12543:3;12564:67;12628:2;12623:3;12564:67;:::i;:::-;12557:74;;12640:93;12729:3;12640:93;:::i;:::-;12758:2;12753:3;12749:12;12742:19;;12401:366;;;:::o;12773:118::-;12860:24;12878:5;12860:24;:::i;:::-;12855:3;12848:37;12773:118;;:::o;12897:435::-;13077:3;13099:95;13190:3;13181:6;13099:95;:::i;:::-;13092:102;;13211:95;13302:3;13293:6;13211:95;:::i;:::-;13204:102;;13323:3;13316:10;;12897:435;;;;;:::o;13338:379::-;13522:3;13544:147;13687:3;13544:147;:::i;:::-;13537:154;;13708:3;13701:10;;13338:379;;;:::o;13723:222::-;13816:4;13854:2;13843:9;13839:18;13831:26;;13867:71;13935:1;13924:9;13920:17;13911:6;13867:71;:::i;:::-;13723:222;;;;:::o;13951:640::-;14146:4;14184:3;14173:9;14169:19;14161:27;;14198:71;14266:1;14255:9;14251:17;14242:6;14198:71;:::i;:::-;14279:72;14347:2;14336:9;14332:18;14323:6;14279:72;:::i;:::-;14361;14429:2;14418:9;14414:18;14405:6;14361:72;:::i;:::-;14480:9;14474:4;14470:20;14465:2;14454:9;14450:18;14443:48;14508:76;14579:4;14570:6;14508:76;:::i;:::-;14500:84;;13951:640;;;;;;;:::o;14597:210::-;14684:4;14722:2;14711:9;14707:18;14699:26;;14735:65;14797:1;14786:9;14782:17;14773:6;14735:65;:::i;:::-;14597:210;;;;:::o;14813:313::-;14926:4;14964:2;14953:9;14949:18;14941:26;;15013:9;15007:4;15003:20;14999:1;14988:9;14984:17;14977:47;15041:78;15114:4;15105:6;15041:78;:::i;:::-;15033:86;;14813:313;;;;:::o;15132:419::-;15298:4;15336:2;15325:9;15321:18;15313:26;;15385:9;15379:4;15375:20;15371:1;15360:9;15356:17;15349:47;15413:131;15539:4;15413:131;:::i;:::-;15405:139;;15132:419;;;:::o;15557:::-;15723:4;15761:2;15750:9;15746:18;15738:26;;15810:9;15804:4;15800:20;15796:1;15785:9;15781:17;15774:47;15838:131;15964:4;15838:131;:::i;:::-;15830:139;;15557:419;;;:::o;15982:::-;16148:4;16186:2;16175:9;16171:18;16163:26;;16235:9;16229:4;16225:20;16221:1;16210:9;16206:17;16199:47;16263:131;16389:4;16263:131;:::i;:::-;16255:139;;15982:419;;;:::o;16407:::-;16573:4;16611:2;16600:9;16596:18;16588:26;;16660:9;16654:4;16650:20;16646:1;16635:9;16631:17;16624:47;16688:131;16814:4;16688:131;:::i;:::-;16680:139;;16407:419;;;:::o;16832:::-;16998:4;17036:2;17025:9;17021:18;17013:26;;17085:9;17079:4;17075:20;17071:1;17060:9;17056:17;17049:47;17113:131;17239:4;17113:131;:::i;:::-;17105:139;;16832:419;;;:::o;17257:::-;17423:4;17461:2;17450:9;17446:18;17438:26;;17510:9;17504:4;17500:20;17496:1;17485:9;17481:17;17474:47;17538:131;17664:4;17538:131;:::i;:::-;17530:139;;17257:419;;;:::o;17682:::-;17848:4;17886:2;17875:9;17871:18;17863:26;;17935:9;17929:4;17925:20;17921:1;17910:9;17906:17;17899:47;17963:131;18089:4;17963:131;:::i;:::-;17955:139;;17682:419;;;:::o;18107:::-;18273:4;18311:2;18300:9;18296:18;18288:26;;18360:9;18354:4;18350:20;18346:1;18335:9;18331:17;18324:47;18388:131;18514:4;18388:131;:::i;:::-;18380:139;;18107:419;;;:::o;18532:::-;18698:4;18736:2;18725:9;18721:18;18713:26;;18785:9;18779:4;18775:20;18771:1;18760:9;18756:17;18749:47;18813:131;18939:4;18813:131;:::i;:::-;18805:139;;18532:419;;;:::o;18957:222::-;19050:4;19088:2;19077:9;19073:18;19065:26;;19101:71;19169:1;19158:9;19154:17;19145:6;19101:71;:::i;:::-;18957:222;;;;:::o;19185:129::-;19219:6;19246:20;;:::i;:::-;19236:30;;19275:33;19303:4;19295:6;19275:33;:::i;:::-;19185:129;;;:::o;19320:75::-;19353:6;19386:2;19380:9;19370:19;;19320:75;:::o;19401:307::-;19462:4;19552:18;19544:6;19541:30;19538:56;;;19574:18;;:::i;:::-;19538:56;19612:29;19634:6;19612:29;:::i;:::-;19604:37;;19696:4;19690;19686:15;19678:23;;19401:307;;;:::o;19714:308::-;19776:4;19866:18;19858:6;19855:30;19852:56;;;19888:18;;:::i;:::-;19852:56;19926:29;19948:6;19926:29;:::i;:::-;19918:37;;20010:4;20004;20000:15;19992:23;;19714:308;;;:::o;20028:98::-;20079:6;20113:5;20107:12;20097:22;;20028:98;;;:::o;20132:99::-;20184:6;20218:5;20212:12;20202:22;;20132:99;;;:::o;20237:168::-;20320:11;20354:6;20349:3;20342:19;20394:4;20389:3;20385:14;20370:29;;20237:168;;;;:::o;20411:147::-;20512:11;20549:3;20534:18;;20411:147;;;;:::o;20564:169::-;20648:11;20682:6;20677:3;20670:19;20722:4;20717:3;20713:14;20698:29;;20564:169;;;;:::o;20739:148::-;20841:11;20878:3;20863:18;;20739:148;;;;:::o;20893:96::-;20930:7;20959:24;20977:5;20959:24;:::i;:::-;20948:35;;20893:96;;;:::o;20995:90::-;21029:7;21072:5;21065:13;21058:21;21047:32;;20995:90;;;:::o;21091:149::-;21127:7;21167:66;21160:5;21156:78;21145:89;;21091:149;;;:::o;21246:126::-;21283:7;21323:42;21316:5;21312:54;21301:65;;21246:126;;;:::o;21378:77::-;21415:7;21444:5;21433:16;;21378:77;;;:::o;21461:154::-;21545:6;21540:3;21535;21522:30;21607:1;21598:6;21593:3;21589:16;21582:27;21461:154;;;:::o;21621:307::-;21689:1;21699:113;21713:6;21710:1;21707:13;21699:113;;;21798:1;21793:3;21789:11;21783:18;21779:1;21774:3;21770:11;21763:39;21735:2;21732:1;21728:10;21723:15;;21699:113;;;21830:6;21827:1;21824:13;21821:101;;;21910:1;21901:6;21896:3;21892:16;21885:27;21821:101;21670:258;21621:307;;;:::o;21934:320::-;21978:6;22015:1;22009:4;22005:12;21995:22;;22062:1;22056:4;22052:12;22083:18;22073:81;;22139:4;22131:6;22127:17;22117:27;;22073:81;22201:2;22193:6;22190:14;22170:18;22167:38;22164:84;;;22220:18;;:::i;:::-;22164:84;21985:269;21934:320;;;:::o;22260:281::-;22343:27;22365:4;22343:27;:::i;:::-;22335:6;22331:40;22473:6;22461:10;22458:22;22437:18;22425:10;22422:34;22419:62;22416:88;;;22484:18;;:::i;:::-;22416:88;22524:10;22520:2;22513:22;22303:238;22260:281;;:::o;22547:233::-;22586:3;22609:24;22627:5;22609:24;:::i;:::-;22600:33;;22655:66;22648:5;22645:77;22642:103;;;22725:18;;:::i;:::-;22642:103;22772:1;22765:5;22761:13;22754:20;;22547:233;;;:::o;22786:180::-;22834:77;22831:1;22824:88;22931:4;22928:1;22921:15;22955:4;22952:1;22945:15;22972:180;23020:77;23017:1;23010:88;23117:4;23114:1;23107:15;23141:4;23138:1;23131:15;23158:180;23206:77;23203:1;23196:88;23303:4;23300:1;23293:15;23327:4;23324:1;23317:15;23344:117;23453:1;23450;23443:12;23467:117;23576:1;23573;23566:12;23590:117;23699:1;23696;23689:12;23713:117;23822:1;23819;23812:12;23836:102;23877:6;23928:2;23924:7;23919:2;23912:5;23908:14;23904:28;23894:38;;23836:102;;;:::o;23944:225::-;24084:34;24080:1;24072:6;24068:14;24061:58;24153:8;24148:2;24140:6;24136:15;24129:33;23944:225;:::o;24175:169::-;24315:21;24311:1;24303:6;24299:14;24292:45;24175:169;:::o;24350:165::-;24490:17;24486:1;24478:6;24474:14;24467:41;24350:165;:::o;24521:173::-;24661:25;24657:1;24649:6;24645:14;24638:49;24521:173;:::o;24700:182::-;24840:34;24836:1;24828:6;24824:14;24817:58;24700:182;:::o;24888:114::-;;:::o;25008:181::-;25148:33;25144:1;25136:6;25132:14;25125:57;25008:181;:::o;25195:159::-;25335:11;25331:1;25323:6;25319:14;25312:35;25195:159;:::o;25360:164::-;25500:16;25496:1;25488:6;25484:14;25477:40;25360:164;:::o;25530:181::-;25670:33;25666:1;25658:6;25654:14;25647:57;25530:181;:::o;25717:122::-;25790:24;25808:5;25790:24;:::i;:::-;25783:5;25780:35;25770:63;;25829:1;25826;25819:12;25770:63;25717:122;:::o;25845:116::-;25915:21;25930:5;25915:21;:::i;:::-;25908:5;25905:32;25895:60;;25951:1;25948;25941:12;25895:60;25845:116;:::o;25967:120::-;26039:23;26056:5;26039:23;:::i;:::-;26032:5;26029:34;26019:62;;26077:1;26074;26067:12;26019:62;25967:120;:::o;26093:122::-;26166:24;26184:5;26166:24;:::i;:::-;26159:5;26156:35;26146:63;;26205:1;26202;26195:12;26146:63;26093:122;:::o

Swarm Source

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