ETH Price: $2,595.92 (+0.79%)

Token

The Line: A Social Experiment (LINE)
 

Overview

Max Total Supply

3,173 LINE

Holders

294

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 LINE
0x3A9c26374690a343B397357Ce0cB380500000000
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
TheLine

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-29
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a / b + (a % b == 0 ? 0 : 1);
    }
}

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


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

pragma solidity ^0.8.0;


/**
 * @dev Collection of functions related to array types.
 */
library Arrays {
    /**
     * @dev Searches a sorted `array` and returns the first index that contains
     * a value greater or equal to `element`. If no such index exists (i.e. all
     * values in the array are strictly less than `element`), the array length is
     * returned. Time complexity O(log n).
     *
     * `array` is expected to be sorted in ascending order, and to contain no
     * repeated elements.
     */
    function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
        if (array.length == 0) {
            return 0;
        }

        uint256 low = 0;
        uint256 high = array.length;

        while (low < high) {
            uint256 mid = Math.average(low, high);

            // Note that mid will always be strictly less than high (i.e. it will be a valid array index)
            // because Math.average rounds down (it does integer division with truncation).
            if (array[mid] > element) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
        if (low > 0 && array[low - 1] == element) {
            return low - 1;
        } else {
            return low;
        }
    }
}

// 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 v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of 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 through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 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`.
     *
     * 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 calldata data
    ) external;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 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.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard,
 * including the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at `_startTokenId()`
 * (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 {
        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;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @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 See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    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 '';
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev 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 (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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 {
        _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 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 {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        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 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _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 {
        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 Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool 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))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        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 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;
    }

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

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

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

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

// File: erc721a/contracts/extensions/IERC721AQueryable.sol


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

pragma solidity ^0.8.4;


/**
 * @dev Interface of an ERC721AQueryable compliant contract.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

// File: erc721a/contracts/extensions/ERC721AQueryable.sol


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

pragma solidity ^0.8.4;



/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *   - `extraData` = `0`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *   - `extraData` = `<Extra data when token was burned>`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     *   - `extraData` = `<Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

// File: contracts/TheLine.sol



//////////////////////////////////////////////////////////////////////////////////////
/*/////////////////////////////////////
THE LINE: A Social Experiment. Wouldn't you like to know?
*//////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////


pragma solidity >=0.8.13 <0.9.0;









contract TheLine is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

// ================== Variables Start =======================
    
  string public uri;
  string public uriSuffix = ".json";
  uint256 public price = 0.001 ether;
  uint256 public maxSupply = 4242;
  uint256 public freeMints = 3000;
  uint256 public reservesAmount = 424;
  uint256 public maxMintAmountPerTx = 10;
  uint256 public maxLimitPerWallet = 10;
  bool public sale = true;

// ================== Variables End =======================  

// ================== Constructor Start =======================

  constructor(
    string memory _uri
  ) ERC721A("The Line: A Social Experiment", "LINE")  {
    seturi(_uri);
  }

// ================== Constructor End =======================

// ================== Mint Functions Start =======================

    function UpdateCost(uint256 _supply) internal view returns  (uint256 _cost) {

        if (_supply < freeMints) {
            return 0;
            }
        if (_supply < maxSupply){
            return price;
            }
    }
  
  function CollectReserves() public onlyOwner nonReentrant {
      require(totalSupply() + reservesAmount <= maxSupply, 'Max Supply Exceeded.');
      _safeMint(msg.sender, reservesAmount);
  }

  function Mint(uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    // Normal requirements 
    require(sale, 'The Sale is paused!');
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(supply + _mintAmount <= maxSupply, 'Max supply exceeded!');
    require(balanceOf(msg.sender) + _mintAmount <= maxLimitPerWallet, 'Max mint per wallet exceeded!');
    require(msg.value >= UpdateCost(supply) * _mintAmount, 'Insufficient funds!');

    // Mint
     _safeMint(_msgSender(), _mintAmount);
  }  

  function Airdrop(uint256 _mintAmount, address _receiver) public onlyOwner {
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _safeMint(_receiver, _mintAmount);
  }

// ================== Mint Functions End =========================

// ================== Set Functions Start ========================

// uri
  function seturi(string memory _uri) public onlyOwner {
    uri = _uri;
  }

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

// ================== Set Functions End ==========================

// ================== Withdraw Functions Start ===================

  function withdraw() public onlyOwner nonReentrant {
        uint _balance = address(this).balance;
         (bool os, ) = payable(owner()).call{value: _balance}("");
        require(os);
  }
// ================== Withdraw Functions End =====================

// ================== Read Functions Start =======================

function tokensOfOwner(address owner) external view returns (uint256[] memory) {
    unchecked {
        uint256[] memory a = new uint256[](balanceOf(owner)); 
        uint256 end = _nextTokenId();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;
        for (uint256 i; i < end; i++) {
            TokenOwnership memory ownership = _ownershipAt(i);
            if (ownership.burned) {
                continue;
            }
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                a[tokenIdsIdx++] = i;
            }
        }
        return a;    
    }
}

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

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

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

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

// ================== Read Functions End =======================  

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"CollectReserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxLimitPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservesAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"seturi","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200005192919062000365565b5066038d7ea4c68000600c55611092600d55610bb8600e556101a8600f55600a601055600a6011556001601260006101000a81548160ff021916908315150217905550348015620000a157600080fd5b5060405162003fdc38038062003fdc8339818101604052810190620000c79190620005b2565b6040518060400160405280601d81526020017f546865204c696e653a204120536f6369616c204578706572696d656e740000008152506040518060400160405280600481526020017f4c494e450000000000000000000000000000000000000000000000000000000081525081600290805190602001906200014b92919062000365565b5080600390805190602001906200016492919062000365565b5062000175620001bd60201b60201c565b60008190555050506200019d62000191620001c260201b60201c565b620001ca60201b60201c565b6001600981905550620001b6816200029060201b60201c565b50620006ea565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002a0620001c260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002c66200033b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200031f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003169062000664565b60405180910390fd5b80600a90805190602001906200033792919062000365565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200037390620006b5565b90600052602060002090601f016020900481019282620003975760008555620003e3565b82601f10620003b257805160ff1916838001178555620003e3565b82800160010185558215620003e3579182015b82811115620003e2578251825591602001919060010190620003c5565b5b509050620003f29190620003f6565b5090565b5b8082111562000411576000816000905550600101620003f7565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200047e8262000433565b810181811067ffffffffffffffff82111715620004a0576200049f62000444565b5b80604052505050565b6000620004b562000415565b9050620004c3828262000473565b919050565b600067ffffffffffffffff821115620004e657620004e562000444565b5b620004f18262000433565b9050602081019050919050565b60005b838110156200051e57808201518184015260208101905062000501565b838111156200052e576000848401525b50505050565b60006200054b6200054584620004c8565b620004a9565b9050828152602081018484840111156200056a57620005696200042e565b5b62000577848285620004fe565b509392505050565b600082601f83011262000597576200059662000429565b5b8151620005a984826020860162000534565b91505092915050565b600060208284031215620005cb57620005ca6200041f565b5b600082015167ffffffffffffffff811115620005ec57620005eb62000424565b5b620005fa848285016200057f565b91505092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200064c60208362000603565b9150620006598262000614565b602082019050919050565b600060208201905081810360008301526200067f816200063d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006ce57607f821691505b602082108103620006e457620006e362000686565b5b50919050565b6138e280620006fa6000396000f3fe6080604052600436106101ee5760003560e01c80637871e1541161010d578063a22cb465116100a0578063db4aa5191161006f578063db4aa519146106ba578063e985e9c5146106e5578063eac989f814610722578063f2fde38b1461074d578063f648498014610776576101ee565b8063a22cb46514610600578063b88d4fde14610629578063c87b56dd14610652578063d5abeb011461068f576101ee565b80638da5cb5b116100dc5780638da5cb5b1461055457806394354fd01461057f57806395d89b41146105aa578063a035b1fe146105d5576101ee565b80637871e154146104ac5780637e295d66146104d557806380b17335146104ec5780638462151c14610517576101ee565b80633ccfd60b116101855780636352211e116101545780636352211e146103f05780636ad1fe021461042d57806370a0823114610458578063715018a614610495576101ee565b80633ccfd60b1461035a57806342842e0e146103715780635503a0e81461039a5780635a0b8b23146103c5576101ee565b8063095ea7b3116101c1578063095ea7b3146102b457806316ba10e0146102dd57806318160ddd1461030657806323b872dd14610331576101ee565b806301ffc9a7146101f357806306fdde0314610230578063078837031461025b578063081812fc14610277575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612822565b61079f565b604051610227919061286a565b60405180910390f35b34801561023c57600080fd5b50610245610831565b604051610252919061291e565b60405180910390f35b61027560048036038101906102709190612976565b6108c3565b005b34801561028357600080fd5b5061029e60048036038101906102999190612976565b610a82565b6040516102ab91906129e4565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d69190612a2b565b610afe565b005b3480156102e957600080fd5b5061030460048036038101906102ff9190612ba0565b610c3f565b005b34801561031257600080fd5b5061031b610cd5565b6040516103289190612bf8565b60405180910390f35b34801561033d57600080fd5b5061035860048036038101906103539190612c13565b610cec565b005b34801561036657600080fd5b5061036f61100e565b005b34801561037d57600080fd5b5061039860048036038101906103939190612c13565b611165565b005b3480156103a657600080fd5b506103af611185565b6040516103bc919061291e565b60405180910390f35b3480156103d157600080fd5b506103da611213565b6040516103e79190612bf8565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190612976565b611219565b60405161042491906129e4565b60405180910390f35b34801561043957600080fd5b5061044261122b565b60405161044f919061286a565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a9190612c66565b61123e565b60405161048c9190612bf8565b60405180910390f35b3480156104a157600080fd5b506104aa6112f6565b005b3480156104b857600080fd5b506104d360048036038101906104ce9190612c93565b61137e565b005b3480156104e157600080fd5b506104ea61145f565b005b3480156104f857600080fd5b50610501611597565b60405161050e9190612bf8565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190612c66565b61159d565b60405161054b9190612d91565b60405180910390f35b34801561056057600080fd5b506105696116e1565b60405161057691906129e4565b60405180910390f35b34801561058b57600080fd5b5061059461170b565b6040516105a19190612bf8565b60405180910390f35b3480156105b657600080fd5b506105bf611711565b6040516105cc919061291e565b60405180910390f35b3480156105e157600080fd5b506105ea6117a3565b6040516105f79190612bf8565b60405180910390f35b34801561060c57600080fd5b5061062760048036038101906106229190612ddf565b6117a9565b005b34801561063557600080fd5b50610650600480360381019061064b9190612ec0565b611920565b005b34801561065e57600080fd5b5061067960048036038101906106749190612976565b611993565b604051610686919061291e565b60405180910390f35b34801561069b57600080fd5b506106a4611a3d565b6040516106b19190612bf8565b60405180910390f35b3480156106c657600080fd5b506106cf611a43565b6040516106dc9190612bf8565b60405180910390f35b3480156106f157600080fd5b5061070c60048036038101906107079190612f43565b611a49565b604051610719919061286a565b60405180910390f35b34801561072e57600080fd5b50610737611add565b604051610744919061291e565b60405180910390f35b34801561075957600080fd5b50610774600480360381019061076f9190612c66565b611b6b565b005b34801561078257600080fd5b5061079d60048036038101906107989190612ba0565b611c62565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107fa57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061082a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461084090612fb2565b80601f016020809104026020016040519081016040528092919081815260200182805461086c90612fb2565b80156108b95780601f1061088e576101008083540402835291602001916108b9565b820191906000526020600020905b81548152906001019060200180831161089c57829003601f168201915b5050505050905090565b60006108cd610cd5565b9050601260009054906101000a900460ff1661091e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109159061302f565b60405180910390fd5b60008211801561093057506010548211155b61096f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109669061309b565b60405180910390fd5b600d54828261097e91906130ea565b11156109bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b69061318c565b60405180910390fd5b601154826109cc3361123e565b6109d691906130ea565b1115610a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0e906131f8565b60405180910390fd5b81610a2182611cf8565b610a2b9190613218565b341015610a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a64906132be565b60405180910390fd5b610a7e610a78611d27565b83611d2f565b5050565b6000610a8d82611d4d565b610ac3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b0982611219565b90508073ffffffffffffffffffffffffffffffffffffffff16610b2a611dac565b73ffffffffffffffffffffffffffffffffffffffff1614610b8d57610b5681610b51611dac565b611a49565b610b8c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610c47611d27565b73ffffffffffffffffffffffffffffffffffffffff16610c656116e1565b73ffffffffffffffffffffffffffffffffffffffff1614610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb29061332a565b60405180910390fd5b80600b9080519060200190610cd19291906126c4565b5050565b6000610cdf611db4565b6001546000540303905090565b6000610cf782611db9565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d5e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d6a84611e85565b91509150610d808187610d7b611dac565b611ea7565b610dcc57610d9586610d90611dac565b611a49565b610dcb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610e32576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e3f8686866001611eeb565b8015610e4a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f1885610ef4888887611ef1565b7c020000000000000000000000000000000000000000000000000000000017611f19565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610f9e5760006001850190506000600460008381526020019081526020016000205403610f9c576000548114610f9b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110068686866001611f44565b505050505050565b611016611d27565b73ffffffffffffffffffffffffffffffffffffffff166110346116e1565b73ffffffffffffffffffffffffffffffffffffffff161461108a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110819061332a565b60405180910390fd5b6002600954036110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c690613396565b60405180910390fd5b6002600981905550600047905060006110e66116e1565b73ffffffffffffffffffffffffffffffffffffffff1682604051611109906133e7565b60006040518083038185875af1925050503d8060008114611146576040519150601f19603f3d011682016040523d82523d6000602084013e61114b565b606091505b505090508061115957600080fd5b50506001600981905550565b61118083838360405180602001604052806000815250611920565b505050565b600b805461119290612fb2565b80601f01602080910402602001604051908101604052809291908181526020018280546111be90612fb2565b801561120b5780601f106111e05761010080835404028352916020019161120b565b820191906000526020600020905b8154815290600101906020018083116111ee57829003601f168201915b505050505081565b60115481565b600061122482611db9565b9050919050565b601260009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112a5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112fe611d27565b73ffffffffffffffffffffffffffffffffffffffff1661131c6116e1565b73ffffffffffffffffffffffffffffffffffffffff1614611372576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113699061332a565b60405180910390fd5b61137c6000611f4a565b565b611386611d27565b73ffffffffffffffffffffffffffffffffffffffff166113a46116e1565b73ffffffffffffffffffffffffffffffffffffffff16146113fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f19061332a565b60405180910390fd5b600d5482611406610cd5565b61141091906130ea565b1115611451576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114489061318c565b60405180910390fd5b61145b8183611d2f565b5050565b611467611d27565b73ffffffffffffffffffffffffffffffffffffffff166114856116e1565b73ffffffffffffffffffffffffffffffffffffffff16146114db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d29061332a565b60405180910390fd5b600260095403611520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151790613396565b60405180910390fd5b6002600981905550600d54600f54611536610cd5565b61154091906130ea565b1115611581576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157890613448565b60405180910390fd5b61158d33600f54611d2f565b6001600981905550565b600e5481565b606060006115aa8361123e565b67ffffffffffffffff8111156115c3576115c2612a75565b5b6040519080825280602002602001820160405280156115f15781602001602082028036833780820191505090505b50905060006115fe612010565b905060008060005b838110156116d457600061161982612019565b905080604001511561162b57506116c7565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461166b57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116c557818685806001019650815181106116b8576116b7613468565b5b6020026020010181815250505b505b8080600101915050611606565b5083945050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b60606003805461172090612fb2565b80601f016020809104026020016040519081016040528092919081815260200182805461174c90612fb2565b80156117995780601f1061176e57610100808354040283529160200191611799565b820191906000526020600020905b81548152906001019060200180831161177c57829003601f168201915b5050505050905090565b600c5481565b6117b1611dac565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611815576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611822611dac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118cf611dac565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611914919061286a565b60405180910390a35050565b61192b848484610cec565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461198d5761195684848484612044565b61198c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061199e82611d4d565b6119dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d490613509565b60405180910390fd5b60006119e7612194565b90506000815111611a075760405180602001604052806000815250611a35565b80611a1184612226565b600b604051602001611a25939291906135f9565b6040516020818303038152906040525b915050919050565b600d5481565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a8054611aea90612fb2565b80601f0160208091040260200160405190810160405280929190818152602001828054611b1690612fb2565b8015611b635780601f10611b3857610100808354040283529160200191611b63565b820191906000526020600020905b815481529060010190602001808311611b4657829003601f168201915b505050505081565b611b73611d27565b73ffffffffffffffffffffffffffffffffffffffff16611b916116e1565b73ffffffffffffffffffffffffffffffffffffffff1614611be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bde9061332a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4d9061369c565b60405180910390fd5b611c5f81611f4a565b50565b611c6a611d27565b73ffffffffffffffffffffffffffffffffffffffff16611c886116e1565b73ffffffffffffffffffffffffffffffffffffffff1614611cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd59061332a565b60405180910390fd5b80600a9080519060200190611cf49291906126c4565b5050565b6000600e54821015611d0d5760009050611d22565b600d54821015611d2157600c549050611d22565b5b919050565b600033905090565b611d49828260405180602001604052806000815250612386565b5050565b600081611d58611db4565b11158015611d67575060005482105b8015611da5575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611dc8611db4565b11611e4e57600054811015611e4d5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611e4b575b60008103611e41576004600083600190039350838152602001908152602001600020549050611e17565b8092505050611e80565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f08868684612423565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008054905090565b61202161274a565b61203d600460008481526020019081526020016000205461242c565b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261206a611dac565b8786866040518563ffffffff1660e01b815260040161208c9493929190613711565b6020604051808303816000875af19250505080156120c857506040513d601f19601f820116820180604052508101906120c59190613772565b60015b612141573d80600081146120f8576040519150601f19603f3d011682016040523d82523d6000602084013e6120fd565b606091505b506000815103612139576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546121a390612fb2565b80601f01602080910402602001604051908101604052809291908181526020018280546121cf90612fb2565b801561221c5780601f106121f15761010080835404028352916020019161221c565b820191906000526020600020905b8154815290600101906020018083116121ff57829003601f168201915b5050505050905090565b60606000820361226d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612381565b600082905060005b6000821461229f5780806122889061379f565b915050600a826122989190613816565b9150612275565b60008167ffffffffffffffff8111156122bb576122ba612a75565b5b6040519080825280601f01601f1916602001820160405280156122ed5781602001600182028036833780820191505090505b5090505b6000851461237a576001826123069190613847565b9150600a85612315919061387b565b603061232191906130ea565b60f81b81838151811061233757612336613468565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123739190613816565b94506122f1565b8093505050505b919050565b61239083836124e2565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461241e57600080549050600083820390505b6123d06000868380600101945086612044565b612406576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106123bd57816000541461241b57600080fd5b50505b505050565b60009392505050565b61243461274a565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361254e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203612588576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125956000848385611eeb565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061260c836125fd6000866000611ef1565b612606856126b4565b17611f19565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612630578060008190555050506126af6000848385611f44565b505050565b60006001821460e11b9050919050565b8280546126d090612fb2565b90600052602060002090601f0160209004810192826126f25760008555612739565b82601f1061270b57805160ff1916838001178555612739565b82800160010185558215612739579182015b8281111561273857825182559160200191906001019061271d565b5b5090506127469190612799565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b808211156127b257600081600090555060010161279a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127ff816127ca565b811461280a57600080fd5b50565b60008135905061281c816127f6565b92915050565b600060208284031215612838576128376127c0565b5b60006128468482850161280d565b91505092915050565b60008115159050919050565b6128648161284f565b82525050565b600060208201905061287f600083018461285b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128bf5780820151818401526020810190506128a4565b838111156128ce576000848401525b50505050565b6000601f19601f8301169050919050565b60006128f082612885565b6128fa8185612890565b935061290a8185602086016128a1565b612913816128d4565b840191505092915050565b6000602082019050818103600083015261293881846128e5565b905092915050565b6000819050919050565b61295381612940565b811461295e57600080fd5b50565b6000813590506129708161294a565b92915050565b60006020828403121561298c5761298b6127c0565b5b600061299a84828501612961565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129ce826129a3565b9050919050565b6129de816129c3565b82525050565b60006020820190506129f960008301846129d5565b92915050565b612a08816129c3565b8114612a1357600080fd5b50565b600081359050612a25816129ff565b92915050565b60008060408385031215612a4257612a416127c0565b5b6000612a5085828601612a16565b9250506020612a6185828601612961565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612aad826128d4565b810181811067ffffffffffffffff82111715612acc57612acb612a75565b5b80604052505050565b6000612adf6127b6565b9050612aeb8282612aa4565b919050565b600067ffffffffffffffff821115612b0b57612b0a612a75565b5b612b14826128d4565b9050602081019050919050565b82818337600083830152505050565b6000612b43612b3e84612af0565b612ad5565b905082815260208101848484011115612b5f57612b5e612a70565b5b612b6a848285612b21565b509392505050565b600082601f830112612b8757612b86612a6b565b5b8135612b97848260208601612b30565b91505092915050565b600060208284031215612bb657612bb56127c0565b5b600082013567ffffffffffffffff811115612bd457612bd36127c5565b5b612be084828501612b72565b91505092915050565b612bf281612940565b82525050565b6000602082019050612c0d6000830184612be9565b92915050565b600080600060608486031215612c2c57612c2b6127c0565b5b6000612c3a86828701612a16565b9350506020612c4b86828701612a16565b9250506040612c5c86828701612961565b9150509250925092565b600060208284031215612c7c57612c7b6127c0565b5b6000612c8a84828501612a16565b91505092915050565b60008060408385031215612caa57612ca96127c0565b5b6000612cb885828601612961565b9250506020612cc985828601612a16565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612d0881612940565b82525050565b6000612d1a8383612cff565b60208301905092915050565b6000602082019050919050565b6000612d3e82612cd3565b612d488185612cde565b9350612d5383612cef565b8060005b83811015612d84578151612d6b8882612d0e565b9750612d7683612d26565b925050600181019050612d57565b5085935050505092915050565b60006020820190508181036000830152612dab8184612d33565b905092915050565b612dbc8161284f565b8114612dc757600080fd5b50565b600081359050612dd981612db3565b92915050565b60008060408385031215612df657612df56127c0565b5b6000612e0485828601612a16565b9250506020612e1585828601612dca565b9150509250929050565b600067ffffffffffffffff821115612e3a57612e39612a75565b5b612e43826128d4565b9050602081019050919050565b6000612e63612e5e84612e1f565b612ad5565b905082815260208101848484011115612e7f57612e7e612a70565b5b612e8a848285612b21565b509392505050565b600082601f830112612ea757612ea6612a6b565b5b8135612eb7848260208601612e50565b91505092915050565b60008060008060808587031215612eda57612ed96127c0565b5b6000612ee887828801612a16565b9450506020612ef987828801612a16565b9350506040612f0a87828801612961565b925050606085013567ffffffffffffffff811115612f2b57612f2a6127c5565b5b612f3787828801612e92565b91505092959194509250565b60008060408385031215612f5a57612f596127c0565b5b6000612f6885828601612a16565b9250506020612f7985828601612a16565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fca57607f821691505b602082108103612fdd57612fdc612f83565b5b50919050565b7f5468652053616c65206973207061757365642100000000000000000000000000600082015250565b6000613019601383612890565b915061302482612fe3565b602082019050919050565b600060208201905081810360008301526130488161300c565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613085601483612890565b91506130908261304f565b602082019050919050565b600060208201905081810360008301526130b481613078565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130f582612940565b915061310083612940565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613135576131346130bb565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613176601483612890565b915061318182613140565b602082019050919050565b600060208201905081810360008301526131a581613169565b9050919050565b7f4d6178206d696e74207065722077616c6c657420657863656564656421000000600082015250565b60006131e2601d83612890565b91506131ed826131ac565b602082019050919050565b60006020820190508181036000830152613211816131d5565b9050919050565b600061322382612940565b915061322e83612940565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613267576132666130bb565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006132a8601383612890565b91506132b382613272565b602082019050919050565b600060208201905081810360008301526132d78161329b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613314602083612890565b915061331f826132de565b602082019050919050565b6000602082019050818103600083015261334381613307565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613380601f83612890565b915061338b8261334a565b602082019050919050565b600060208201905081810360008301526133af81613373565b9050919050565b600081905092915050565b50565b60006133d16000836133b6565b91506133dc826133c1565b600082019050919050565b60006133f2826133c4565b9150819050919050565b7f4d617820537570706c792045786365656465642e000000000000000000000000600082015250565b6000613432601483612890565b915061343d826133fc565b602082019050919050565b6000602082019050818103600083015261346181613425565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006134f3602f83612890565b91506134fe82613497565b604082019050919050565b60006020820190508181036000830152613522816134e6565b9050919050565b600081905092915050565b600061353f82612885565b6135498185613529565b93506135598185602086016128a1565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461358781612fb2565b6135918186613529565b945060018216600081146135ac57600181146135bd576135f0565b60ff198316865281860193506135f0565b6135c685613565565b60005b838110156135e8578154818901526001820191506020810190506135c9565b838801955050505b50505092915050565b60006136058286613534565b91506136118285613534565b915061361d828461357a565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613686602683612890565b91506136918261362a565b604082019050919050565b600060208201905081810360008301526136b581613679565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006136e3826136bc565b6136ed81856136c7565b93506136fd8185602086016128a1565b613706816128d4565b840191505092915050565b600060808201905061372660008301876129d5565b61373360208301866129d5565b6137406040830185612be9565b818103606083015261375281846136d8565b905095945050505050565b60008151905061376c816127f6565b92915050565b600060208284031215613788576137876127c0565b5b60006137968482850161375d565b91505092915050565b60006137aa82612940565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036137dc576137db6130bb565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061382182612940565b915061382c83612940565b92508261383c5761383b6137e7565b5b828204905092915050565b600061385282612940565b915061385d83612940565b9250828210156138705761386f6130bb565b5b828203905092915050565b600061388682612940565b915061389183612940565b9250826138a1576138a06137e7565b5b82820690509291505056fea2646970667358221220a1781eefa4a610aa6cc674e5e7f75078fba00952e05ce6a2e582aaa4658e150a64736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d53595934346a4c4b663769433844414652763979453333516d586a7a71384769446a7350354e4469767734712f00000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80637871e1541161010d578063a22cb465116100a0578063db4aa5191161006f578063db4aa519146106ba578063e985e9c5146106e5578063eac989f814610722578063f2fde38b1461074d578063f648498014610776576101ee565b8063a22cb46514610600578063b88d4fde14610629578063c87b56dd14610652578063d5abeb011461068f576101ee565b80638da5cb5b116100dc5780638da5cb5b1461055457806394354fd01461057f57806395d89b41146105aa578063a035b1fe146105d5576101ee565b80637871e154146104ac5780637e295d66146104d557806380b17335146104ec5780638462151c14610517576101ee565b80633ccfd60b116101855780636352211e116101545780636352211e146103f05780636ad1fe021461042d57806370a0823114610458578063715018a614610495576101ee565b80633ccfd60b1461035a57806342842e0e146103715780635503a0e81461039a5780635a0b8b23146103c5576101ee565b8063095ea7b3116101c1578063095ea7b3146102b457806316ba10e0146102dd57806318160ddd1461030657806323b872dd14610331576101ee565b806301ffc9a7146101f357806306fdde0314610230578063078837031461025b578063081812fc14610277575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612822565b61079f565b604051610227919061286a565b60405180910390f35b34801561023c57600080fd5b50610245610831565b604051610252919061291e565b60405180910390f35b61027560048036038101906102709190612976565b6108c3565b005b34801561028357600080fd5b5061029e60048036038101906102999190612976565b610a82565b6040516102ab91906129e4565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d69190612a2b565b610afe565b005b3480156102e957600080fd5b5061030460048036038101906102ff9190612ba0565b610c3f565b005b34801561031257600080fd5b5061031b610cd5565b6040516103289190612bf8565b60405180910390f35b34801561033d57600080fd5b5061035860048036038101906103539190612c13565b610cec565b005b34801561036657600080fd5b5061036f61100e565b005b34801561037d57600080fd5b5061039860048036038101906103939190612c13565b611165565b005b3480156103a657600080fd5b506103af611185565b6040516103bc919061291e565b60405180910390f35b3480156103d157600080fd5b506103da611213565b6040516103e79190612bf8565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190612976565b611219565b60405161042491906129e4565b60405180910390f35b34801561043957600080fd5b5061044261122b565b60405161044f919061286a565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a9190612c66565b61123e565b60405161048c9190612bf8565b60405180910390f35b3480156104a157600080fd5b506104aa6112f6565b005b3480156104b857600080fd5b506104d360048036038101906104ce9190612c93565b61137e565b005b3480156104e157600080fd5b506104ea61145f565b005b3480156104f857600080fd5b50610501611597565b60405161050e9190612bf8565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190612c66565b61159d565b60405161054b9190612d91565b60405180910390f35b34801561056057600080fd5b506105696116e1565b60405161057691906129e4565b60405180910390f35b34801561058b57600080fd5b5061059461170b565b6040516105a19190612bf8565b60405180910390f35b3480156105b657600080fd5b506105bf611711565b6040516105cc919061291e565b60405180910390f35b3480156105e157600080fd5b506105ea6117a3565b6040516105f79190612bf8565b60405180910390f35b34801561060c57600080fd5b5061062760048036038101906106229190612ddf565b6117a9565b005b34801561063557600080fd5b50610650600480360381019061064b9190612ec0565b611920565b005b34801561065e57600080fd5b5061067960048036038101906106749190612976565b611993565b604051610686919061291e565b60405180910390f35b34801561069b57600080fd5b506106a4611a3d565b6040516106b19190612bf8565b60405180910390f35b3480156106c657600080fd5b506106cf611a43565b6040516106dc9190612bf8565b60405180910390f35b3480156106f157600080fd5b5061070c60048036038101906107079190612f43565b611a49565b604051610719919061286a565b60405180910390f35b34801561072e57600080fd5b50610737611add565b604051610744919061291e565b60405180910390f35b34801561075957600080fd5b50610774600480360381019061076f9190612c66565b611b6b565b005b34801561078257600080fd5b5061079d60048036038101906107989190612ba0565b611c62565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107fa57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061082a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461084090612fb2565b80601f016020809104026020016040519081016040528092919081815260200182805461086c90612fb2565b80156108b95780601f1061088e576101008083540402835291602001916108b9565b820191906000526020600020905b81548152906001019060200180831161089c57829003601f168201915b5050505050905090565b60006108cd610cd5565b9050601260009054906101000a900460ff1661091e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109159061302f565b60405180910390fd5b60008211801561093057506010548211155b61096f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109669061309b565b60405180910390fd5b600d54828261097e91906130ea565b11156109bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b69061318c565b60405180910390fd5b601154826109cc3361123e565b6109d691906130ea565b1115610a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0e906131f8565b60405180910390fd5b81610a2182611cf8565b610a2b9190613218565b341015610a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a64906132be565b60405180910390fd5b610a7e610a78611d27565b83611d2f565b5050565b6000610a8d82611d4d565b610ac3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b0982611219565b90508073ffffffffffffffffffffffffffffffffffffffff16610b2a611dac565b73ffffffffffffffffffffffffffffffffffffffff1614610b8d57610b5681610b51611dac565b611a49565b610b8c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610c47611d27565b73ffffffffffffffffffffffffffffffffffffffff16610c656116e1565b73ffffffffffffffffffffffffffffffffffffffff1614610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb29061332a565b60405180910390fd5b80600b9080519060200190610cd19291906126c4565b5050565b6000610cdf611db4565b6001546000540303905090565b6000610cf782611db9565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d5e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d6a84611e85565b91509150610d808187610d7b611dac565b611ea7565b610dcc57610d9586610d90611dac565b611a49565b610dcb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610e32576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e3f8686866001611eeb565b8015610e4a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f1885610ef4888887611ef1565b7c020000000000000000000000000000000000000000000000000000000017611f19565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610f9e5760006001850190506000600460008381526020019081526020016000205403610f9c576000548114610f9b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110068686866001611f44565b505050505050565b611016611d27565b73ffffffffffffffffffffffffffffffffffffffff166110346116e1565b73ffffffffffffffffffffffffffffffffffffffff161461108a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110819061332a565b60405180910390fd5b6002600954036110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c690613396565b60405180910390fd5b6002600981905550600047905060006110e66116e1565b73ffffffffffffffffffffffffffffffffffffffff1682604051611109906133e7565b60006040518083038185875af1925050503d8060008114611146576040519150601f19603f3d011682016040523d82523d6000602084013e61114b565b606091505b505090508061115957600080fd5b50506001600981905550565b61118083838360405180602001604052806000815250611920565b505050565b600b805461119290612fb2565b80601f01602080910402602001604051908101604052809291908181526020018280546111be90612fb2565b801561120b5780601f106111e05761010080835404028352916020019161120b565b820191906000526020600020905b8154815290600101906020018083116111ee57829003601f168201915b505050505081565b60115481565b600061122482611db9565b9050919050565b601260009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112a5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112fe611d27565b73ffffffffffffffffffffffffffffffffffffffff1661131c6116e1565b73ffffffffffffffffffffffffffffffffffffffff1614611372576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113699061332a565b60405180910390fd5b61137c6000611f4a565b565b611386611d27565b73ffffffffffffffffffffffffffffffffffffffff166113a46116e1565b73ffffffffffffffffffffffffffffffffffffffff16146113fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f19061332a565b60405180910390fd5b600d5482611406610cd5565b61141091906130ea565b1115611451576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114489061318c565b60405180910390fd5b61145b8183611d2f565b5050565b611467611d27565b73ffffffffffffffffffffffffffffffffffffffff166114856116e1565b73ffffffffffffffffffffffffffffffffffffffff16146114db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d29061332a565b60405180910390fd5b600260095403611520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151790613396565b60405180910390fd5b6002600981905550600d54600f54611536610cd5565b61154091906130ea565b1115611581576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157890613448565b60405180910390fd5b61158d33600f54611d2f565b6001600981905550565b600e5481565b606060006115aa8361123e565b67ffffffffffffffff8111156115c3576115c2612a75565b5b6040519080825280602002602001820160405280156115f15781602001602082028036833780820191505090505b50905060006115fe612010565b905060008060005b838110156116d457600061161982612019565b905080604001511561162b57506116c7565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461166b57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116c557818685806001019650815181106116b8576116b7613468565b5b6020026020010181815250505b505b8080600101915050611606565b5083945050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b60606003805461172090612fb2565b80601f016020809104026020016040519081016040528092919081815260200182805461174c90612fb2565b80156117995780601f1061176e57610100808354040283529160200191611799565b820191906000526020600020905b81548152906001019060200180831161177c57829003601f168201915b5050505050905090565b600c5481565b6117b1611dac565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611815576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611822611dac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118cf611dac565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611914919061286a565b60405180910390a35050565b61192b848484610cec565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461198d5761195684848484612044565b61198c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061199e82611d4d565b6119dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d490613509565b60405180910390fd5b60006119e7612194565b90506000815111611a075760405180602001604052806000815250611a35565b80611a1184612226565b600b604051602001611a25939291906135f9565b6040516020818303038152906040525b915050919050565b600d5481565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a8054611aea90612fb2565b80601f0160208091040260200160405190810160405280929190818152602001828054611b1690612fb2565b8015611b635780601f10611b3857610100808354040283529160200191611b63565b820191906000526020600020905b815481529060010190602001808311611b4657829003601f168201915b505050505081565b611b73611d27565b73ffffffffffffffffffffffffffffffffffffffff16611b916116e1565b73ffffffffffffffffffffffffffffffffffffffff1614611be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bde9061332a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4d9061369c565b60405180910390fd5b611c5f81611f4a565b50565b611c6a611d27565b73ffffffffffffffffffffffffffffffffffffffff16611c886116e1565b73ffffffffffffffffffffffffffffffffffffffff1614611cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd59061332a565b60405180910390fd5b80600a9080519060200190611cf49291906126c4565b5050565b6000600e54821015611d0d5760009050611d22565b600d54821015611d2157600c549050611d22565b5b919050565b600033905090565b611d49828260405180602001604052806000815250612386565b5050565b600081611d58611db4565b11158015611d67575060005482105b8015611da5575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611dc8611db4565b11611e4e57600054811015611e4d5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611e4b575b60008103611e41576004600083600190039350838152602001908152602001600020549050611e17565b8092505050611e80565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f08868684612423565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008054905090565b61202161274a565b61203d600460008481526020019081526020016000205461242c565b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261206a611dac565b8786866040518563ffffffff1660e01b815260040161208c9493929190613711565b6020604051808303816000875af19250505080156120c857506040513d601f19601f820116820180604052508101906120c59190613772565b60015b612141573d80600081146120f8576040519150601f19603f3d011682016040523d82523d6000602084013e6120fd565b606091505b506000815103612139576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546121a390612fb2565b80601f01602080910402602001604051908101604052809291908181526020018280546121cf90612fb2565b801561221c5780601f106121f15761010080835404028352916020019161221c565b820191906000526020600020905b8154815290600101906020018083116121ff57829003601f168201915b5050505050905090565b60606000820361226d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612381565b600082905060005b6000821461229f5780806122889061379f565b915050600a826122989190613816565b9150612275565b60008167ffffffffffffffff8111156122bb576122ba612a75565b5b6040519080825280601f01601f1916602001820160405280156122ed5781602001600182028036833780820191505090505b5090505b6000851461237a576001826123069190613847565b9150600a85612315919061387b565b603061232191906130ea565b60f81b81838151811061233757612336613468565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123739190613816565b94506122f1565b8093505050505b919050565b61239083836124e2565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461241e57600080549050600083820390505b6123d06000868380600101945086612044565b612406576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106123bd57816000541461241b57600080fd5b50505b505050565b60009392505050565b61243461274a565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361254e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203612588576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125956000848385611eeb565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061260c836125fd6000866000611ef1565b612606856126b4565b17611f19565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612630578060008190555050506126af6000848385611f44565b505050565b60006001821460e11b9050919050565b8280546126d090612fb2565b90600052602060002090601f0160209004810192826126f25760008555612739565b82601f1061270b57805160ff1916838001178555612739565b82800160010185558215612739579182015b8281111561273857825182559160200191906001019061271d565b5b5090506127469190612799565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b808211156127b257600081600090555060010161279a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127ff816127ca565b811461280a57600080fd5b50565b60008135905061281c816127f6565b92915050565b600060208284031215612838576128376127c0565b5b60006128468482850161280d565b91505092915050565b60008115159050919050565b6128648161284f565b82525050565b600060208201905061287f600083018461285b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128bf5780820151818401526020810190506128a4565b838111156128ce576000848401525b50505050565b6000601f19601f8301169050919050565b60006128f082612885565b6128fa8185612890565b935061290a8185602086016128a1565b612913816128d4565b840191505092915050565b6000602082019050818103600083015261293881846128e5565b905092915050565b6000819050919050565b61295381612940565b811461295e57600080fd5b50565b6000813590506129708161294a565b92915050565b60006020828403121561298c5761298b6127c0565b5b600061299a84828501612961565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129ce826129a3565b9050919050565b6129de816129c3565b82525050565b60006020820190506129f960008301846129d5565b92915050565b612a08816129c3565b8114612a1357600080fd5b50565b600081359050612a25816129ff565b92915050565b60008060408385031215612a4257612a416127c0565b5b6000612a5085828601612a16565b9250506020612a6185828601612961565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612aad826128d4565b810181811067ffffffffffffffff82111715612acc57612acb612a75565b5b80604052505050565b6000612adf6127b6565b9050612aeb8282612aa4565b919050565b600067ffffffffffffffff821115612b0b57612b0a612a75565b5b612b14826128d4565b9050602081019050919050565b82818337600083830152505050565b6000612b43612b3e84612af0565b612ad5565b905082815260208101848484011115612b5f57612b5e612a70565b5b612b6a848285612b21565b509392505050565b600082601f830112612b8757612b86612a6b565b5b8135612b97848260208601612b30565b91505092915050565b600060208284031215612bb657612bb56127c0565b5b600082013567ffffffffffffffff811115612bd457612bd36127c5565b5b612be084828501612b72565b91505092915050565b612bf281612940565b82525050565b6000602082019050612c0d6000830184612be9565b92915050565b600080600060608486031215612c2c57612c2b6127c0565b5b6000612c3a86828701612a16565b9350506020612c4b86828701612a16565b9250506040612c5c86828701612961565b9150509250925092565b600060208284031215612c7c57612c7b6127c0565b5b6000612c8a84828501612a16565b91505092915050565b60008060408385031215612caa57612ca96127c0565b5b6000612cb885828601612961565b9250506020612cc985828601612a16565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612d0881612940565b82525050565b6000612d1a8383612cff565b60208301905092915050565b6000602082019050919050565b6000612d3e82612cd3565b612d488185612cde565b9350612d5383612cef565b8060005b83811015612d84578151612d6b8882612d0e565b9750612d7683612d26565b925050600181019050612d57565b5085935050505092915050565b60006020820190508181036000830152612dab8184612d33565b905092915050565b612dbc8161284f565b8114612dc757600080fd5b50565b600081359050612dd981612db3565b92915050565b60008060408385031215612df657612df56127c0565b5b6000612e0485828601612a16565b9250506020612e1585828601612dca565b9150509250929050565b600067ffffffffffffffff821115612e3a57612e39612a75565b5b612e43826128d4565b9050602081019050919050565b6000612e63612e5e84612e1f565b612ad5565b905082815260208101848484011115612e7f57612e7e612a70565b5b612e8a848285612b21565b509392505050565b600082601f830112612ea757612ea6612a6b565b5b8135612eb7848260208601612e50565b91505092915050565b60008060008060808587031215612eda57612ed96127c0565b5b6000612ee887828801612a16565b9450506020612ef987828801612a16565b9350506040612f0a87828801612961565b925050606085013567ffffffffffffffff811115612f2b57612f2a6127c5565b5b612f3787828801612e92565b91505092959194509250565b60008060408385031215612f5a57612f596127c0565b5b6000612f6885828601612a16565b9250506020612f7985828601612a16565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fca57607f821691505b602082108103612fdd57612fdc612f83565b5b50919050565b7f5468652053616c65206973207061757365642100000000000000000000000000600082015250565b6000613019601383612890565b915061302482612fe3565b602082019050919050565b600060208201905081810360008301526130488161300c565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613085601483612890565b91506130908261304f565b602082019050919050565b600060208201905081810360008301526130b481613078565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130f582612940565b915061310083612940565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613135576131346130bb565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613176601483612890565b915061318182613140565b602082019050919050565b600060208201905081810360008301526131a581613169565b9050919050565b7f4d6178206d696e74207065722077616c6c657420657863656564656421000000600082015250565b60006131e2601d83612890565b91506131ed826131ac565b602082019050919050565b60006020820190508181036000830152613211816131d5565b9050919050565b600061322382612940565b915061322e83612940565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613267576132666130bb565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006132a8601383612890565b91506132b382613272565b602082019050919050565b600060208201905081810360008301526132d78161329b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613314602083612890565b915061331f826132de565b602082019050919050565b6000602082019050818103600083015261334381613307565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613380601f83612890565b915061338b8261334a565b602082019050919050565b600060208201905081810360008301526133af81613373565b9050919050565b600081905092915050565b50565b60006133d16000836133b6565b91506133dc826133c1565b600082019050919050565b60006133f2826133c4565b9150819050919050565b7f4d617820537570706c792045786365656465642e000000000000000000000000600082015250565b6000613432601483612890565b915061343d826133fc565b602082019050919050565b6000602082019050818103600083015261346181613425565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006134f3602f83612890565b91506134fe82613497565b604082019050919050565b60006020820190508181036000830152613522816134e6565b9050919050565b600081905092915050565b600061353f82612885565b6135498185613529565b93506135598185602086016128a1565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461358781612fb2565b6135918186613529565b945060018216600081146135ac57600181146135bd576135f0565b60ff198316865281860193506135f0565b6135c685613565565b60005b838110156135e8578154818901526001820191506020810190506135c9565b838801955050505b50505092915050565b60006136058286613534565b91506136118285613534565b915061361d828461357a565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613686602683612890565b91506136918261362a565b604082019050919050565b600060208201905081810360008301526136b581613679565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006136e3826136bc565b6136ed81856136c7565b93506136fd8185602086016128a1565b613706816128d4565b840191505092915050565b600060808201905061372660008301876129d5565b61373360208301866129d5565b6137406040830185612be9565b818103606083015261375281846136d8565b905095945050505050565b60008151905061376c816127f6565b92915050565b600060208284031215613788576137876127c0565b5b60006137968482850161375d565b91505092915050565b60006137aa82612940565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036137dc576137db6130bb565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061382182612940565b915061382c83612940565b92508261383c5761383b6137e7565b5b828204905092915050565b600061385282612940565b915061385d83612940565b9250828210156138705761386f6130bb565b5b828203905092915050565b600061388682612940565b915061389183612940565b9250826138a1576138a06137e7565b5b82820690509291505056fea2646970667358221220a1781eefa4a610aa6cc674e5e7f75078fba00952e05ce6a2e582aaa4658e150a64736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d53595934346a4c4b663769433844414652763979453333516d586a7a71384769446a7350354e4469767734712f00000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string): ipfs://QmSYY44jLKf7iC8DAFRv9yE33QmXjzq8GiDjsP5NDivw4q/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d53595934346a4c4b663769433844414652763979453333
Arg [3] : 516d586a7a71384769446a7350354e4469767734712f00000000000000000000


Deployed Bytecode Sourcemap

65117:4300:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25769:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31416:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66442:578;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33362:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32910:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67464:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24823:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42627:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67710:194;;;;;;;;;;;;;:::i;:::-;;34252:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65301:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65533:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31205:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65575:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26448:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7601:103;;;;;;;;;;;;;:::i;:::-;;67028:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66242:194;;;;;;;;;;;;;:::i;:::-;;65414:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68046:712;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6950:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65490:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31585:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65339:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33638:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34508:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68865:373;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65378:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65450:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34017:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65279:17;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7859:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67382:76;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25769:615;25854:4;26169:10;26154:25;;:11;:25;;;;:102;;;;26246:10;26231:25;;:11;:25;;;;26154:102;:179;;;;26323:10;26308:25;;:11;:25;;;;26154:179;26134:199;;25769:615;;;:::o;31416:100::-;31470:13;31503:5;31496:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31416:100;:::o;66442:578::-;66499:14;66516:13;:11;:13::i;:::-;66499:30;;66573:4;;;;;;;;;;;66565:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;66630:1;66616:11;:15;:52;;;;;66650:18;;66635:11;:33;;66616:52;66608:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;66732:9;;66717:11;66708:6;:20;;;;:::i;:::-;:33;;66700:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;66820:17;;66805:11;66781:21;66791:10;66781:9;:21::i;:::-;:35;;;;:::i;:::-;:56;;66773:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;66920:11;66899:18;66910:6;66899:10;:18::i;:::-;:32;;;;:::i;:::-;66886:9;:45;;66878:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;66978:36;66988:12;:10;:12::i;:::-;67002:11;66978:9;:36::i;:::-;66492:528;66442:578;:::o;33362:204::-;33430:7;33455:16;33463:7;33455;:16::i;:::-;33450:64;;33480:34;;;;;;;;;;;;;;33450:64;33534:15;:24;33550:7;33534:24;;;;;;;;;;;;;;;;;;;;;33527:31;;33362:204;;;:::o;32910:386::-;32983:13;32999:16;33007:7;32999;:16::i;:::-;32983:32;;33055:5;33032:28;;:19;:17;:19::i;:::-;:28;;;33028:175;;33080:44;33097:5;33104:19;:17;:19::i;:::-;33080:16;:44::i;:::-;33075:128;;33152:35;;;;;;;;;;;;;;33075:128;33028:175;33242:2;33215:15;:24;33231:7;33215:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33280:7;33276:2;33260:28;;33269:5;33260:28;;;;;;;;;;;;32972:324;32910:386;;:::o;67464:100::-;7181:12;:10;:12::i;:::-;7170:23;;:7;:5;:7::i;:::-;:23;;;7162:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67548:10:::1;67536:9;:22;;;;;;;;;;;;:::i;:::-;;67464:100:::0;:::o;24823:315::-;24876:7;25104:15;:13;:15::i;:::-;25089:12;;25073:13;;:28;:46;25066:53;;24823:315;:::o;42627:2800::-;42761:27;42791;42810:7;42791:18;:27::i;:::-;42761:57;;42876:4;42835:45;;42851:19;42835:45;;;42831:86;;42889:28;;;;;;;;;;;;;;42831:86;42931:27;42960:23;42987:28;43007:7;42987:19;:28::i;:::-;42930:85;;;;43115:62;43134:15;43151:4;43157:19;:17;:19::i;:::-;43115:18;:62::i;:::-;43110:174;;43197:43;43214:4;43220:19;:17;:19::i;:::-;43197:16;:43::i;:::-;43192:92;;43249:35;;;;;;;;;;;;;;43192:92;43110:174;43315:1;43301:16;;:2;:16;;;43297:52;;43326:23;;;;;;;;;;;;;;43297:52;43362:43;43384:4;43390:2;43394:7;43403:1;43362:21;:43::i;:::-;43498:15;43495:160;;;43638:1;43617:19;43610:30;43495:160;44033:18;:24;44052:4;44033:24;;;;;;;;;;;;;;;;44031:26;;;;;;;;;;;;44102:18;:22;44121:2;44102:22;;;;;;;;;;;;;;;;44100:24;;;;;;;;;;;44424:145;44461:2;44509:45;44524:4;44530:2;44534:19;44509:14;:45::i;:::-;22051:8;44482:72;44424:18;:145::i;:::-;44395:17;:26;44413:7;44395:26;;;;;;;;;;;:174;;;;44739:1;22051:8;44689:19;:46;:51;44685:626;;44761:19;44793:1;44783:7;:11;44761:33;;44950:1;44916:17;:30;44934:11;44916:30;;;;;;;;;;;;:35;44912:384;;45054:13;;45039:11;:28;45035:242;;45234:19;45201:17;:30;45219:11;45201:30;;;;;;;;;;;:52;;;;45035:242;44912:384;44742:569;44685:626;45358:7;45354:2;45339:27;;45348:4;45339:27;;;;;;;;;;;;45377:42;45398:4;45404:2;45408:7;45417:1;45377:20;:42::i;:::-;42750:2677;;;42627:2800;;;:::o;67710:194::-;7181:12;:10;:12::i;:::-;7170:23;;:7;:5;:7::i;:::-;:23;;;7162:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10230:1:::1;10828:7;;:19:::0;10820:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10230:1;10961:7;:18;;;;67771:13:::2;67787:21;67771:37;;67821:7;67842;:5;:7::i;:::-;67834:21;;67863:8;67834:42;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67820:56;;;67895:2;67887:11;;;::::0;::::2;;67760:144;;10186:1:::1;11140:7;:22;;;;67710:194::o:0;34252:185::-;34390:39;34407:4;34413:2;34417:7;34390:39;;;;;;;;;;;;:16;:39::i;:::-;34252:185;;;:::o;65301:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;65533:37::-;;;;:::o;31205:144::-;31269:7;31312:27;31331:7;31312:18;:27::i;:::-;31289:52;;31205:144;;;:::o;65575:23::-;;;;;;;;;;;;;:::o;26448:224::-;26512:7;26553:1;26536:19;;:5;:19;;;26532:60;;26564:28;;;;;;;;;;;;;;26532:60;21003:13;26610:18;:25;26629:5;26610:25;;;;;;;;;;;;;;;;:54;26603:61;;26448:224;;;:::o;7601:103::-;7181:12;:10;:12::i;:::-;7170:23;;:7;:5;:7::i;:::-;:23;;;7162:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7666:30:::1;7693:1;7666:18;:30::i;:::-;7601:103::o:0;67028:200::-;7181:12;:10;:12::i;:::-;7170:23;;:7;:5;:7::i;:::-;:23;;;7162:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67148:9:::1;;67133:11;67117:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;67109:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;67189:33;67199:9;67210:11;67189:9;:33::i;:::-;67028:200:::0;;:::o;66242:194::-;7181:12;:10;:12::i;:::-;7170:23;;:7;:5;:7::i;:::-;:23;;;7162:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10230:1:::1;10828:7;;:19:::0;10820:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10230:1;10961:7;:18;;;;66350:9:::2;;66332:14;;66316:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:43;;66308:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;66393:37;66403:10;66415:14;;66393:9;:37::i;:::-;10186:1:::1;11140:7;:22;;;;66242:194::o:0;65414:31::-;;;;:::o;68046:712::-;68107:16;68153:18;68188:16;68198:5;68188:9;:16::i;:::-;68174:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68153:52;;68217:11;68231:14;:12;:14::i;:::-;68217:28;;68256:19;68286:25;68327:9;68322:403;68342:3;68338:1;:7;68322:403;;;68367:31;68401:15;68414:1;68401:12;:15::i;:::-;68367:49;;68435:9;:16;;;68431:65;;;68472:8;;;68431:65;68540:1;68514:28;;:9;:14;;;:28;;;68510:103;;68583:9;:14;;;68563:34;;68510:103;68652:5;68631:26;;:17;:26;;;68627:87;;68697:1;68678;68680:13;;;;;;68678:16;;;;;;;;:::i;:::-;;;;;;;:20;;;;;68627:87;68352:373;68322:403;68347:3;;;;;;;68322:403;;;;68742:1;68735:8;;;;;;68046:712;;;:::o;6950:87::-;6996:7;7023:6;;;;;;;;;;;7016:13;;6950:87;:::o;65490:38::-;;;;:::o;31585:104::-;31641:13;31674:7;31667:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31585:104;:::o;65339:34::-;;;;:::o;33638:308::-;33749:19;:17;:19::i;:::-;33737:31;;:8;:31;;;33733:61;;33777:17;;;;;;;;;;;;;;33733:61;33859:8;33807:18;:39;33826:19;:17;:19::i;:::-;33807:39;;;;;;;;;;;;;;;:49;33847:8;33807:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;33919:8;33883:55;;33898:19;:17;:19::i;:::-;33883:55;;;33929:8;33883:55;;;;;;:::i;:::-;;;;;;;;33638:308;;:::o;34508:399::-;34675:31;34688:4;34694:2;34698:7;34675:12;:31::i;:::-;34739:1;34721:2;:14;;;:19;34717:183;;34760:56;34791:4;34797:2;34801:7;34810:5;34760:30;:56::i;:::-;34755:145;;34844:40;;;;;;;;;;;;;;34755:145;34717:183;34508:399;;;;:::o;68865:373::-;68939:13;68969:17;68977:8;68969:7;:17::i;:::-;68961:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;69047:28;69078:10;:8;:10::i;:::-;69047:41;;69133:1;69108:14;69102:28;:32;:130;;;;;;;;;;;;;;;;;69170:14;69186:19;:8;:17;:19::i;:::-;69207:9;69153:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;69102:130;69095:137;;;68865:373;;;:::o;65378:31::-;;;;:::o;65450:35::-;;;;:::o;34017:164::-;34114:4;34138:18;:25;34157:5;34138:25;;;;;;;;;;;;;;;:35;34164:8;34138:35;;;;;;;;;;;;;;;;;;;;;;;;;34131:42;;34017:164;;;;:::o;65279:17::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7859:201::-;7181:12;:10;:12::i;:::-;7170:23;;:7;:5;:7::i;:::-;:23;;;7162:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7968:1:::1;7948:22;;:8;:22;;::::0;7940:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;8024:28;8043:8;8024:18;:28::i;:::-;7859:201:::0;:::o;67382:76::-;7181:12;:10;:12::i;:::-;7170:23;;:7;:5;:7::i;:::-;:23;;;7162:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67448:4:::1;67442:3;:10;;;;;;;;;;;;:::i;:::-;;67382:76:::0;:::o;65997:237::-;66058:13;66100:9;;66090:7;:19;66086:64;;;66133:1;66126:8;;;;66086:64;66174:9;;66164:7;:19;66160:67;;;66206:5;;66199:12;;;;66160:67;65997:237;;;;:::o;5674:98::-;5727:7;5754:10;5747:17;;5674:98;:::o;35519:104::-;35588:27;35598:2;35602:8;35588:27;;;;;;;;;;;;:9;:27::i;:::-;35519:104;;:::o;35162:273::-;35219:4;35275:7;35256:15;:13;:15::i;:::-;:26;;:66;;;;;35309:13;;35299:7;:23;35256:66;:152;;;;;35407:1;21773:8;35360:17;:26;35378:7;35360:26;;;;;;;;;;;;:43;:48;35256:152;35236:172;;35162:273;;;:::o;53723:105::-;53783:7;53810:10;53803:17;;53723:105;:::o;68764:95::-;68829:7;68764:95;:::o;28122:1129::-;28189:7;28209:12;28224:7;28209:22;;28292:4;28273:15;:13;:15::i;:::-;:23;28269:915;;28326:13;;28319:4;:20;28315:869;;;28364:14;28381:17;:23;28399:4;28381:23;;;;;;;;;;;;28364:40;;28497:1;21773:8;28470:6;:23;:28;28466:699;;28989:113;29006:1;28996:6;:11;28989:113;;29049:17;:25;29067:6;;;;;;;29049:25;;;;;;;;;;;;29040:34;;28989:113;;;29135:6;29128:13;;;;;;28466:699;28341:843;28315:869;28269:915;29212:31;;;;;;;;;;;;;;28122:1129;;;;:::o;40963:652::-;41058:27;41087:23;41128:53;41184:15;41128:71;;41370:7;41364:4;41357:21;41405:22;41399:4;41392:36;41481:4;41475;41465:21;41442:44;;41577:19;41571:26;41552:45;;41308:300;40963:652;;;:::o;41728:645::-;41870:11;42032:15;42026:4;42022:26;42014:34;;42191:15;42180:9;42176:31;42163:44;;42338:15;42327:9;42324:30;42317:4;42306:9;42303:19;42300:55;42290:65;;41728:645;;;;;:::o;52556:159::-;;;;;:::o;50868:309::-;51003:7;51023:16;22174:3;51049:19;:40;;51023:67;;22174:3;51116:31;51127:4;51133:2;51137:9;51116:10;:31::i;:::-;51108:40;;:61;;51101:68;;;50868:309;;;;;:::o;30696:447::-;30776:14;30944:15;30937:5;30933:27;30924:36;;31118:5;31104:11;31080:22;31076:40;31073:51;31066:5;31063:62;31053:72;;30696:447;;;;:::o;53374:158::-;;;;;:::o;8220:191::-;8294:16;8313:6;;;;;;;;;;;8294:25;;8339:8;8330:6;;:17;;;;;;;;;;;;;;;;;;8394:8;8363:40;;8384:8;8363:40;;;;;;;;;;;;8283:128;8220:191;:::o;24518:95::-;24565:7;24592:13;;24585:20;;24518:95;:::o;29799:153::-;29859:21;;:::i;:::-;29900:44;29919:17;:24;29937:5;29919:24;;;;;;;;;;;;29900:18;:44::i;:::-;29893:51;;29799:153;;;:::o;49378:716::-;49541:4;49587:2;49562:45;;;49608:19;:17;:19::i;:::-;49629:4;49635:7;49644:5;49562:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;49558:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49862:1;49845:6;:13;:18;49841:235;;49891:40;;;;;;;;;;;;;;49841:235;50034:6;50028:13;50019:6;50015:2;50011:15;50004:38;49558:529;49731:54;;;49721:64;;;:6;:64;;;;49714:71;;;49378:716;;;;;;:::o;69244:98::-;69304:13;69333:3;69326:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69244:98;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;36039:681::-;36162:19;36168:2;36172:8;36162:5;:19::i;:::-;36241:1;36223:2;:14;;;:19;36219:483;;36263:11;36277:13;;36263:27;;36309:13;36331:8;36325:3;:14;36309:30;;36358:233;36389:62;36428:1;36432:2;36436:7;;;;;;36445:5;36389:30;:62::i;:::-;36384:167;;36487:40;;;;;;;;;;;;;;36384:167;36586:3;36578:5;:11;36358:233;;36673:3;36656:13;;:20;36652:34;;36678:8;;;36652:34;36244:458;;36219:483;36039:681;;;:::o;51753:147::-;51890:6;51753:147;;;;;:::o;29345:363::-;29411:31;;:::i;:::-;29488:6;29455:9;:14;;:41;;;;;;;;;;;21657:3;29541:6;:32;;29507:9;:24;;:67;;;;;;;;;;;29631:1;21773:8;29604:6;:23;:28;;29585:9;:16;;:47;;;;;;;;;;;22174:3;29672:6;:27;;29643:9;:19;;:57;;;;;;;;;;;29345:363;;;:::o;36993:1529::-;37058:20;37081:13;;37058:36;;37123:1;37109:16;;:2;:16;;;37105:48;;37134:19;;;;;;;;;;;;;;37105:48;37180:1;37168:8;:13;37164:44;;37190:18;;;;;;;;;;;;;;37164:44;37221:61;37251:1;37255:2;37259:12;37273:8;37221:21;:61::i;:::-;37764:1;21140:2;37735:1;:25;;37734:31;37722:8;:44;37696:18;:22;37715:2;37696:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;38043:139;38080:2;38134:33;38157:1;38161:2;38165:1;38134:14;:33::i;:::-;38101:30;38122:8;38101:20;:30::i;:::-;:66;38043:18;:139::i;:::-;38009:17;:31;38027:12;38009:31;;;;;;;;;;;:173;;;;38199:15;38217:12;38199:30;;38244:11;38273:8;38258:12;:23;38244:37;;38296:101;38348:9;;;;;;38344:2;38323:35;;38340:1;38323:35;;;;;;;;;;;;38392:3;38382:7;:13;38296:101;;38429:3;38413:13;:19;;;;37470:974;;38454:60;38483:1;38487:2;38491:12;38505:8;38454:20;:60::i;:::-;37047:1475;36993:1529;;:::o;32526:322::-;32596:14;32827:1;32817:8;32814:15;32789:23;32785:45;32775:55;;32526:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:117::-;5047:1;5044;5037:12;5061:117;5170:1;5167;5160:12;5184:180;5232:77;5229:1;5222:88;5329:4;5326:1;5319:15;5353:4;5350:1;5343:15;5370:281;5453:27;5475:4;5453:27;:::i;:::-;5445:6;5441:40;5583:6;5571:10;5568:22;5547:18;5535:10;5532:34;5529:62;5526:88;;;5594:18;;:::i;:::-;5526:88;5634:10;5630:2;5623:22;5413:238;5370:281;;:::o;5657:129::-;5691:6;5718:20;;:::i;:::-;5708:30;;5747:33;5775:4;5767:6;5747:33;:::i;:::-;5657:129;;;:::o;5792:308::-;5854:4;5944:18;5936:6;5933:30;5930:56;;;5966:18;;:::i;:::-;5930:56;6004:29;6026:6;6004:29;:::i;:::-;5996:37;;6088:4;6082;6078:15;6070:23;;5792:308;;;:::o;6106:154::-;6190:6;6185:3;6180;6167:30;6252:1;6243:6;6238:3;6234:16;6227:27;6106:154;;;:::o;6266:412::-;6344:5;6369:66;6385:49;6427:6;6385:49;:::i;:::-;6369:66;:::i;:::-;6360:75;;6458:6;6451:5;6444:21;6496:4;6489:5;6485:16;6534:3;6525:6;6520:3;6516:16;6513:25;6510:112;;;6541:79;;:::i;:::-;6510:112;6631:41;6665:6;6660:3;6655;6631:41;:::i;:::-;6350:328;6266:412;;;;;:::o;6698:340::-;6754:5;6803:3;6796:4;6788:6;6784:17;6780:27;6770:122;;6811:79;;:::i;:::-;6770:122;6928:6;6915:20;6953:79;7028:3;7020:6;7013:4;7005:6;7001:17;6953:79;:::i;:::-;6944:88;;6760:278;6698:340;;;;:::o;7044:509::-;7113:6;7162:2;7150:9;7141:7;7137:23;7133:32;7130:119;;;7168:79;;:::i;:::-;7130:119;7316:1;7305:9;7301:17;7288:31;7346:18;7338:6;7335:30;7332:117;;;7368:79;;:::i;:::-;7332:117;7473:63;7528:7;7519:6;7508:9;7504:22;7473:63;:::i;:::-;7463:73;;7259:287;7044:509;;;;:::o;7559:118::-;7646:24;7664:5;7646:24;:::i;:::-;7641:3;7634:37;7559:118;;:::o;7683:222::-;7776:4;7814:2;7803:9;7799:18;7791:26;;7827:71;7895:1;7884:9;7880:17;7871:6;7827:71;:::i;:::-;7683:222;;;;:::o;7911:619::-;7988:6;7996;8004;8053:2;8041:9;8032:7;8028:23;8024:32;8021:119;;;8059:79;;:::i;:::-;8021:119;8179:1;8204:53;8249:7;8240:6;8229:9;8225:22;8204:53;:::i;:::-;8194:63;;8150:117;8306:2;8332:53;8377:7;8368:6;8357:9;8353:22;8332:53;:::i;:::-;8322:63;;8277:118;8434:2;8460:53;8505:7;8496:6;8485:9;8481:22;8460:53;:::i;:::-;8450:63;;8405:118;7911:619;;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:474::-;8939:6;8947;8996:2;8984:9;8975:7;8971:23;8967:32;8964:119;;;9002:79;;:::i;:::-;8964:119;9122:1;9147:53;9192:7;9183:6;9172:9;9168:22;9147:53;:::i;:::-;9137:63;;9093:117;9249:2;9275:53;9320:7;9311:6;9300:9;9296:22;9275:53;:::i;:::-;9265:63;;9220:118;8871:474;;;;;:::o;9351:114::-;9418:6;9452:5;9446:12;9436:22;;9351:114;;;:::o;9471:184::-;9570:11;9604:6;9599:3;9592:19;9644:4;9639:3;9635:14;9620:29;;9471:184;;;;:::o;9661:132::-;9728:4;9751:3;9743:11;;9781:4;9776:3;9772:14;9764:22;;9661:132;;;:::o;9799:108::-;9876:24;9894:5;9876:24;:::i;:::-;9871:3;9864:37;9799:108;;:::o;9913:179::-;9982:10;10003:46;10045:3;10037:6;10003:46;:::i;:::-;10081:4;10076:3;10072:14;10058:28;;9913:179;;;;:::o;10098:113::-;10168:4;10200;10195:3;10191:14;10183:22;;10098:113;;;:::o;10247:732::-;10366:3;10395:54;10443:5;10395:54;:::i;:::-;10465:86;10544:6;10539:3;10465:86;:::i;:::-;10458:93;;10575:56;10625:5;10575:56;:::i;:::-;10654:7;10685:1;10670:284;10695:6;10692:1;10689:13;10670:284;;;10771:6;10765:13;10798:63;10857:3;10842:13;10798:63;:::i;:::-;10791:70;;10884:60;10937:6;10884:60;:::i;:::-;10874:70;;10730:224;10717:1;10714;10710:9;10705:14;;10670:284;;;10674:14;10970:3;10963:10;;10371:608;;;10247:732;;;;:::o;10985:373::-;11128:4;11166:2;11155:9;11151:18;11143:26;;11215:9;11209:4;11205:20;11201:1;11190:9;11186:17;11179:47;11243:108;11346:4;11337:6;11243:108;:::i;:::-;11235:116;;10985:373;;;;:::o;11364:116::-;11434:21;11449:5;11434:21;:::i;:::-;11427:5;11424:32;11414:60;;11470:1;11467;11460:12;11414:60;11364:116;:::o;11486:133::-;11529:5;11567:6;11554:20;11545:29;;11583:30;11607:5;11583:30;:::i;:::-;11486:133;;;;:::o;11625:468::-;11690:6;11698;11747:2;11735:9;11726:7;11722:23;11718:32;11715:119;;;11753:79;;:::i;:::-;11715:119;11873:1;11898:53;11943:7;11934:6;11923:9;11919:22;11898:53;:::i;:::-;11888:63;;11844:117;12000:2;12026:50;12068:7;12059:6;12048:9;12044:22;12026:50;:::i;:::-;12016:60;;11971:115;11625:468;;;;;:::o;12099:307::-;12160:4;12250:18;12242:6;12239:30;12236:56;;;12272:18;;:::i;:::-;12236:56;12310:29;12332:6;12310:29;:::i;:::-;12302:37;;12394:4;12388;12384:15;12376:23;;12099:307;;;:::o;12412:410::-;12489:5;12514:65;12530:48;12571:6;12530:48;:::i;:::-;12514:65;:::i;:::-;12505:74;;12602:6;12595:5;12588:21;12640:4;12633:5;12629:16;12678:3;12669:6;12664:3;12660:16;12657:25;12654:112;;;12685:79;;:::i;:::-;12654:112;12775:41;12809:6;12804:3;12799;12775:41;:::i;:::-;12495:327;12412:410;;;;;:::o;12841:338::-;12896:5;12945:3;12938:4;12930:6;12926:17;12922:27;12912:122;;12953:79;;:::i;:::-;12912:122;13070:6;13057:20;13095:78;13169:3;13161:6;13154:4;13146:6;13142:17;13095:78;:::i;:::-;13086:87;;12902:277;12841:338;;;;:::o;13185:943::-;13280:6;13288;13296;13304;13353:3;13341:9;13332:7;13328:23;13324:33;13321:120;;;13360:79;;:::i;:::-;13321:120;13480:1;13505:53;13550:7;13541:6;13530:9;13526:22;13505:53;:::i;:::-;13495:63;;13451:117;13607:2;13633:53;13678:7;13669:6;13658:9;13654:22;13633:53;:::i;:::-;13623:63;;13578:118;13735:2;13761:53;13806:7;13797:6;13786:9;13782:22;13761:53;:::i;:::-;13751:63;;13706:118;13891:2;13880:9;13876:18;13863:32;13922:18;13914:6;13911:30;13908:117;;;13944:79;;:::i;:::-;13908:117;14049:62;14103:7;14094:6;14083:9;14079:22;14049:62;:::i;:::-;14039:72;;13834:287;13185:943;;;;;;;:::o;14134:474::-;14202:6;14210;14259:2;14247:9;14238:7;14234:23;14230:32;14227:119;;;14265:79;;:::i;:::-;14227:119;14385:1;14410:53;14455:7;14446:6;14435:9;14431:22;14410:53;:::i;:::-;14400:63;;14356:117;14512:2;14538:53;14583:7;14574:6;14563:9;14559:22;14538:53;:::i;:::-;14528:63;;14483:118;14134:474;;;;;:::o;14614:180::-;14662:77;14659:1;14652:88;14759:4;14756:1;14749:15;14783:4;14780:1;14773:15;14800:320;14844:6;14881:1;14875:4;14871:12;14861:22;;14928:1;14922:4;14918:12;14949:18;14939:81;;15005:4;14997:6;14993:17;14983:27;;14939:81;15067:2;15059:6;15056:14;15036:18;15033:38;15030:84;;15086:18;;:::i;:::-;15030:84;14851:269;14800:320;;;:::o;15126:169::-;15266:21;15262:1;15254:6;15250:14;15243:45;15126:169;:::o;15301:366::-;15443:3;15464:67;15528:2;15523:3;15464:67;:::i;:::-;15457:74;;15540:93;15629:3;15540:93;:::i;:::-;15658:2;15653:3;15649:12;15642:19;;15301:366;;;:::o;15673:419::-;15839:4;15877:2;15866:9;15862:18;15854:26;;15926:9;15920:4;15916:20;15912:1;15901:9;15897:17;15890:47;15954:131;16080:4;15954:131;:::i;:::-;15946:139;;15673:419;;;:::o;16098:170::-;16238:22;16234:1;16226:6;16222:14;16215:46;16098:170;:::o;16274:366::-;16416:3;16437:67;16501:2;16496:3;16437:67;:::i;:::-;16430:74;;16513:93;16602:3;16513:93;:::i;:::-;16631:2;16626:3;16622:12;16615:19;;16274:366;;;:::o;16646:419::-;16812:4;16850:2;16839:9;16835:18;16827:26;;16899:9;16893:4;16889:20;16885:1;16874:9;16870:17;16863:47;16927:131;17053:4;16927:131;:::i;:::-;16919:139;;16646:419;;;:::o;17071:180::-;17119:77;17116:1;17109:88;17216:4;17213:1;17206:15;17240:4;17237:1;17230:15;17257:305;17297:3;17316:20;17334:1;17316:20;:::i;:::-;17311:25;;17350:20;17368:1;17350:20;:::i;:::-;17345:25;;17504:1;17436:66;17432:74;17429:1;17426:81;17423:107;;;17510:18;;:::i;:::-;17423:107;17554:1;17551;17547:9;17540:16;;17257:305;;;;:::o;17568:170::-;17708:22;17704:1;17696:6;17692:14;17685:46;17568:170;:::o;17744:366::-;17886:3;17907:67;17971:2;17966:3;17907:67;:::i;:::-;17900:74;;17983:93;18072:3;17983:93;:::i;:::-;18101:2;18096:3;18092:12;18085:19;;17744:366;;;:::o;18116:419::-;18282:4;18320:2;18309:9;18305:18;18297:26;;18369:9;18363:4;18359:20;18355:1;18344:9;18340:17;18333:47;18397:131;18523:4;18397:131;:::i;:::-;18389:139;;18116:419;;;:::o;18541:179::-;18681:31;18677:1;18669:6;18665:14;18658:55;18541:179;:::o;18726:366::-;18868:3;18889:67;18953:2;18948:3;18889:67;:::i;:::-;18882:74;;18965:93;19054:3;18965:93;:::i;:::-;19083:2;19078:3;19074:12;19067:19;;18726:366;;;:::o;19098:419::-;19264:4;19302:2;19291:9;19287:18;19279:26;;19351:9;19345:4;19341:20;19337:1;19326:9;19322:17;19315:47;19379:131;19505:4;19379:131;:::i;:::-;19371:139;;19098:419;;;:::o;19523:348::-;19563:7;19586:20;19604:1;19586:20;:::i;:::-;19581:25;;19620:20;19638:1;19620:20;:::i;:::-;19615:25;;19808:1;19740:66;19736:74;19733:1;19730:81;19725:1;19718:9;19711:17;19707:105;19704:131;;;19815:18;;:::i;:::-;19704:131;19863:1;19860;19856:9;19845:20;;19523:348;;;;:::o;19877:169::-;20017:21;20013:1;20005:6;20001:14;19994:45;19877:169;:::o;20052:366::-;20194:3;20215:67;20279:2;20274:3;20215:67;:::i;:::-;20208:74;;20291:93;20380:3;20291:93;:::i;:::-;20409:2;20404:3;20400:12;20393:19;;20052:366;;;:::o;20424:419::-;20590:4;20628:2;20617:9;20613:18;20605:26;;20677:9;20671:4;20667:20;20663:1;20652:9;20648:17;20641:47;20705:131;20831:4;20705:131;:::i;:::-;20697:139;;20424:419;;;:::o;20849:182::-;20989:34;20985:1;20977:6;20973:14;20966:58;20849:182;:::o;21037:366::-;21179:3;21200:67;21264:2;21259:3;21200:67;:::i;:::-;21193:74;;21276:93;21365:3;21276:93;:::i;:::-;21394:2;21389:3;21385:12;21378:19;;21037:366;;;:::o;21409:419::-;21575:4;21613:2;21602:9;21598:18;21590:26;;21662:9;21656:4;21652:20;21648:1;21637:9;21633:17;21626:47;21690:131;21816:4;21690:131;:::i;:::-;21682:139;;21409:419;;;:::o;21834:181::-;21974:33;21970:1;21962:6;21958:14;21951:57;21834:181;:::o;22021:366::-;22163:3;22184:67;22248:2;22243:3;22184:67;:::i;:::-;22177:74;;22260:93;22349:3;22260:93;:::i;:::-;22378:2;22373:3;22369:12;22362:19;;22021:366;;;:::o;22393:419::-;22559:4;22597:2;22586:9;22582:18;22574:26;;22646:9;22640:4;22636:20;22632:1;22621:9;22617:17;22610:47;22674:131;22800:4;22674:131;:::i;:::-;22666:139;;22393:419;;;:::o;22818:147::-;22919:11;22956:3;22941:18;;22818:147;;;;:::o;22971:114::-;;:::o;23091:398::-;23250:3;23271:83;23352:1;23347:3;23271:83;:::i;:::-;23264:90;;23363:93;23452:3;23363:93;:::i;:::-;23481:1;23476:3;23472:11;23465:18;;23091:398;;;:::o;23495:379::-;23679:3;23701:147;23844:3;23701:147;:::i;:::-;23694:154;;23865:3;23858:10;;23495:379;;;:::o;23880:170::-;24020:22;24016:1;24008:6;24004:14;23997:46;23880:170;:::o;24056:366::-;24198:3;24219:67;24283:2;24278:3;24219:67;:::i;:::-;24212:74;;24295:93;24384:3;24295:93;:::i;:::-;24413:2;24408:3;24404:12;24397:19;;24056:366;;;:::o;24428:419::-;24594:4;24632:2;24621:9;24617:18;24609:26;;24681:9;24675:4;24671:20;24667:1;24656:9;24652:17;24645:47;24709:131;24835:4;24709:131;:::i;:::-;24701:139;;24428:419;;;:::o;24853:180::-;24901:77;24898:1;24891:88;24998:4;24995:1;24988:15;25022:4;25019:1;25012:15;25039:234;25179:34;25175:1;25167:6;25163:14;25156:58;25248:17;25243:2;25235:6;25231:15;25224:42;25039:234;:::o;25279:366::-;25421:3;25442:67;25506:2;25501:3;25442:67;:::i;:::-;25435:74;;25518:93;25607:3;25518:93;:::i;:::-;25636:2;25631:3;25627:12;25620:19;;25279:366;;;:::o;25651:419::-;25817:4;25855:2;25844:9;25840:18;25832:26;;25904:9;25898:4;25894:20;25890:1;25879:9;25875:17;25868:47;25932:131;26058:4;25932:131;:::i;:::-;25924:139;;25651:419;;;:::o;26076:148::-;26178:11;26215:3;26200:18;;26076:148;;;;:::o;26230:377::-;26336:3;26364:39;26397:5;26364:39;:::i;:::-;26419:89;26501:6;26496:3;26419:89;:::i;:::-;26412:96;;26517:52;26562:6;26557:3;26550:4;26543:5;26539:16;26517:52;:::i;:::-;26594:6;26589:3;26585:16;26578:23;;26340:267;26230:377;;;;:::o;26613:141::-;26662:4;26685:3;26677:11;;26708:3;26705:1;26698:14;26742:4;26739:1;26729:18;26721:26;;26613:141;;;:::o;26784:845::-;26887:3;26924:5;26918:12;26953:36;26979:9;26953:36;:::i;:::-;27005:89;27087:6;27082:3;27005:89;:::i;:::-;26998:96;;27125:1;27114:9;27110:17;27141:1;27136:137;;;;27287:1;27282:341;;;;27103:520;;27136:137;27220:4;27216:9;27205;27201:25;27196:3;27189:38;27256:6;27251:3;27247:16;27240:23;;27136:137;;27282:341;27349:38;27381:5;27349:38;:::i;:::-;27409:1;27423:154;27437:6;27434:1;27431:13;27423:154;;;27511:7;27505:14;27501:1;27496:3;27492:11;27485:35;27561:1;27552:7;27548:15;27537:26;;27459:4;27456:1;27452:12;27447:17;;27423:154;;;27606:6;27601:3;27597:16;27590:23;;27289:334;;27103:520;;26891:738;;26784:845;;;;:::o;27635:589::-;27860:3;27882:95;27973:3;27964:6;27882:95;:::i;:::-;27875:102;;27994:95;28085:3;28076:6;27994:95;:::i;:::-;27987:102;;28106:92;28194:3;28185:6;28106:92;:::i;:::-;28099:99;;28215:3;28208:10;;27635:589;;;;;;:::o;28230:225::-;28370:34;28366:1;28358:6;28354:14;28347:58;28439:8;28434:2;28426:6;28422:15;28415:33;28230:225;:::o;28461:366::-;28603:3;28624:67;28688:2;28683:3;28624:67;:::i;:::-;28617:74;;28700:93;28789:3;28700:93;:::i;:::-;28818:2;28813:3;28809:12;28802:19;;28461:366;;;:::o;28833:419::-;28999:4;29037:2;29026:9;29022:18;29014:26;;29086:9;29080:4;29076:20;29072:1;29061:9;29057:17;29050:47;29114:131;29240:4;29114:131;:::i;:::-;29106:139;;28833:419;;;:::o;29258:98::-;29309:6;29343:5;29337:12;29327:22;;29258:98;;;:::o;29362:168::-;29445:11;29479:6;29474:3;29467:19;29519:4;29514:3;29510:14;29495:29;;29362:168;;;;:::o;29536:360::-;29622:3;29650:38;29682:5;29650:38;:::i;:::-;29704:70;29767:6;29762:3;29704:70;:::i;:::-;29697:77;;29783:52;29828:6;29823:3;29816:4;29809:5;29805:16;29783:52;:::i;:::-;29860:29;29882:6;29860:29;:::i;:::-;29855:3;29851:39;29844:46;;29626:270;29536:360;;;;:::o;29902:640::-;30097:4;30135:3;30124:9;30120:19;30112:27;;30149:71;30217:1;30206:9;30202:17;30193:6;30149:71;:::i;:::-;30230:72;30298:2;30287:9;30283:18;30274:6;30230:72;:::i;:::-;30312;30380:2;30369:9;30365:18;30356:6;30312:72;:::i;:::-;30431:9;30425:4;30421:20;30416:2;30405:9;30401:18;30394:48;30459:76;30530:4;30521:6;30459:76;:::i;:::-;30451:84;;29902:640;;;;;;;:::o;30548:141::-;30604:5;30635:6;30629:13;30620:22;;30651:32;30677:5;30651:32;:::i;:::-;30548:141;;;;:::o;30695:349::-;30764:6;30813:2;30801:9;30792:7;30788:23;30784:32;30781:119;;;30819:79;;:::i;:::-;30781:119;30939:1;30964:63;31019:7;31010:6;30999:9;30995:22;30964:63;:::i;:::-;30954:73;;30910:127;30695:349;;;;:::o;31050:233::-;31089:3;31112:24;31130:5;31112:24;:::i;:::-;31103:33;;31158:66;31151:5;31148:77;31145:103;;31228:18;;:::i;:::-;31145:103;31275:1;31268:5;31264:13;31257:20;;31050:233;;;:::o;31289:180::-;31337:77;31334:1;31327:88;31434:4;31431:1;31424:15;31458:4;31455:1;31448:15;31475:185;31515:1;31532:20;31550:1;31532:20;:::i;:::-;31527:25;;31566:20;31584:1;31566:20;:::i;:::-;31561:25;;31605:1;31595:35;;31610:18;;:::i;:::-;31595:35;31652:1;31649;31645:9;31640:14;;31475:185;;;;:::o;31666:191::-;31706:4;31726:20;31744:1;31726:20;:::i;:::-;31721:25;;31760:20;31778:1;31760:20;:::i;:::-;31755:25;;31799:1;31796;31793:8;31790:34;;;31804:18;;:::i;:::-;31790:34;31849:1;31846;31842:9;31834:17;;31666:191;;;;:::o;31863:176::-;31895:1;31912:20;31930:1;31912:20;:::i;:::-;31907:25;;31946:20;31964:1;31946:20;:::i;:::-;31941:25;;31985:1;31975:35;;31990:18;;:::i;:::-;31975:35;32031:1;32028;32024:9;32019:14;;31863:176;;;;:::o

Swarm Source

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