ETH Price: $3,305.34 (-3.75%)
Gas: 19 Gwei

Token

Umms (Umms)
 

Overview

Max Total Supply

5,025 Umms

Holders

2,088

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
573v3.eth
Balance
1 Umms
0xDb859662323621A50f27dD125e810A9B80966398
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:
UMMS

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: UNLICENSED

/*

  Umms NFT Contract

  Created by Mo.
  
  https://Mochoudhury.dev

*/

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

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

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

// File: NFTS/Umms/umms.sol



pragma solidity >=0.8.0 <0.9.0;





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

  bool public revealed = false;

  string public _baseTokenURI = "ipfs://QmTLVBazzM97uHWk2xVGo3j4cT1qj5jj12Gy1dGZ9LDNSz/";
  string public hiddenMetadataUri;

  uint256 public cost = 0.05 ether;
  uint256 public maxSupply = 5025;
  uint256 public nftPerAddressLimit = 3;

  mapping(address => uint256) public addressMintedBalance;

  bool public paused = true;

  constructor(

  ) ERC721A("Umms", "Umms") {
    setHiddenMetadataUri("ipfs://QmWzGboGw2UGAc2uPmktdY5Vrj8Fd7cXxDRgmHVvDTUna9");
    _safeMint(0xF342C2Af0d55dCB75f2b35fb235140D663C16811, 20);
  }

  function mint(uint256 _mintAmount) public payable nonReentrant {
    require(addressMintedBalance[msg.sender] + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
    require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
    require(!paused, "The contract is paused!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    addressMintedBalance[msg.sender] += _mintAmount;
    _safeMint(_msgSender(), _mintAmount);
  }

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

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

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

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


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

  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }
  

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

  // METADATA HANDLING

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

  function setBaseURI(string calldata baseURI) public onlyOwner {
    _baseTokenURI = baseURI;
  }

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

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
      if (revealed) {
          return string(abi.encodePacked(_baseURI(), _tokenId.toString(), ".json"));
      } else {
          return hiddenMetadataUri;
      }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60006101000a81548160ff02191690831515021790555060405180606001604052806036815260200162003e9e60369139600b9080519060200190620000509291906200083d565b5066b1a2bc2ec50000600d556113a1600e556003600f556001601160006101000a81548160ff0219169083151502179055503480156200008f57600080fd5b506040518060400160405280600481526020017f556d6d73000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f556d6d73000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001149291906200083d565b5080600390805190602001906200012d9291906200083d565b506200013e620001c560201b60201c565b6000819055505050620001666200015a620001ce60201b60201c565b620001d660201b60201c565b60016009819055506200019860405180606001604052806035815260200162003ed4603591396200029c60201b60201c565b620001bf73f342c2af0d55dcb75f2b35fb235140d663c168116014620002c860201b60201c565b62000bc1565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002ac620002ee60201b60201c565b80600c9080519060200190620002c49291906200083d565b5050565b620002ea8282604051806020016040528060008152506200037f60201b60201c565b5050565b620002fe620001ce60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003246200043060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200037d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003749062000a14565b60405180910390fd5b565b6200039183836200045a60201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146200042b57600080549050600083820390505b620003da60008683806001019450866200064360201b60201c565b62000411576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110620003bf5781600054146200042857600080fd5b50505b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008054905060008214156200049c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620004b16000848385620007b560201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506200054083620005226000866000620007bb60201b60201c565b6200053385620007eb60201b60201c565b17620007fb60201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114620005e357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050620005a6565b50600082141562000620576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506200063e60008483856200082660201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006716200082c60201b60201c565b8786866040518563ffffffff1660e01b8152600401620006959493929190620009c0565b602060405180830381600087803b158015620006b057600080fd5b505af1925050508015620006e457506040513d601f19601f82011682018060405250810190620006e1919062000904565b60015b62000762573d806000811462000717576040519150601f19603f3d011682016040523d82523d6000602084013e6200071c565b606091505b506000815114156200075a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e8620007da8686846200083460201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b8280546200084b9062000b03565b90600052602060002090601f0160209004810192826200086f5760008555620008bb565b82601f106200088a57805160ff1916838001178555620008bb565b82800160010185558215620008bb579182015b82811115620008ba5782518255916020019190600101906200089d565b5b509050620008ca9190620008ce565b5090565b5b80821115620008e9576000816000905550600101620008cf565b5090565b600081519050620008fe8162000ba7565b92915050565b6000602082840312156200091d576200091c62000b68565b5b60006200092d84828501620008ed565b91505092915050565b620009418162000a63565b82525050565b6000620009548262000a36565b62000960818562000a41565b93506200097281856020860162000acd565b6200097d8162000b6d565b840191505092915050565b60006200099760208362000a52565b9150620009a48262000b7e565b602082019050919050565b620009ba8162000ac3565b82525050565b6000608082019050620009d7600083018762000936565b620009e6602083018662000936565b620009f56040830185620009af565b818103606083015262000a09818462000947565b905095945050505050565b6000602082019050818103600083015262000a2f8162000988565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000a708262000aa3565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000aed57808201518184015260208101905062000ad0565b8381111562000afd576000848401525b50505050565b6000600282049050600182168062000b1c57607f821691505b6020821081141562000b335762000b3262000b39565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b62000bb28162000a77565b811462000bbe57600080fd5b50565b6132cd8062000bd16000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063ba7d2c76116100a0578063d5abeb011161006f578063d5abeb01146106fe578063e0a8085314610729578063e985e9c514610752578063efbd73f41461078f578063f2fde38b146107b8576101f9565b8063ba7d2c7614610642578063c87b56dd1461066d578063cfc86f7b146106aa578063d0eb26b0146106d5576101f9565b8063a0712d68116100dc578063a0712d68146105a9578063a22cb465146105c5578063a45ba8e7146105ee578063b88d4fde14610619576101f9565b806370a08231146104ff578063715018a61461053c5780638da5cb5b1461055357806395d89b411461057e576101f9565b806323b872dd116101905780634fdd43cb1161015f5780634fdd43cb1461041a578063518302271461044357806355f804b31461046e5780635c975abb146104975780636352211e146104c2576101f9565b806323b872dd146103885780633ccfd60b146103b157806342842e0e146103c857806344a0d68a146103f1576101f9565b806313faede6116101cc57806313faede6146102cc57806316c38b3c146102f757806318160ddd1461032057806318cae2691461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906126e8565b6107e1565b6040516102329190612afb565b60405180910390f35b34801561024757600080fd5b50610250610873565b60405161025d9190612b16565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906127d8565b610905565b60405161029a9190612a94565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c5919061267b565b610984565b005b3480156102d857600080fd5b506102e1610ac8565b6040516102ee9190612c18565b60405180910390f35b34801561030357600080fd5b5061031e600480360381019061031991906126bb565b610ace565b005b34801561032c57600080fd5b50610335610af3565b6040516103429190612c18565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d91906124f8565b610b0a565b60405161037f9190612c18565b60405180910390f35b34801561039457600080fd5b506103af60048036038101906103aa9190612565565b610b22565b005b3480156103bd57600080fd5b506103c6610e47565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190612565565b610f25565b005b3480156103fd57600080fd5b50610418600480360381019061041391906127d8565b610f45565b005b34801561042657600080fd5b50610441600480360381019061043c919061278f565b610f57565b005b34801561044f57600080fd5b50610458610f79565b6040516104659190612afb565b60405180910390f35b34801561047a57600080fd5b5061049560048036038101906104909190612742565b610f8c565b005b3480156104a357600080fd5b506104ac610faa565b6040516104b99190612afb565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e491906127d8565b610fbd565b6040516104f69190612a94565b60405180910390f35b34801561050b57600080fd5b50610526600480360381019061052191906124f8565b610fcf565b6040516105339190612c18565b60405180910390f35b34801561054857600080fd5b50610551611088565b005b34801561055f57600080fd5b5061056861109c565b6040516105759190612a94565b60405180910390f35b34801561058a57600080fd5b506105936110c6565b6040516105a09190612b16565b60405180910390f35b6105c360048036038101906105be91906127d8565b611158565b005b3480156105d157600080fd5b506105ec60048036038101906105e7919061263b565b61139e565b005b3480156105fa57600080fd5b50610603611516565b6040516106109190612b16565b60405180910390f35b34801561062557600080fd5b50610640600480360381019061063b91906125b8565b6115a4565b005b34801561064e57600080fd5b50610657611617565b6040516106649190612c18565b60405180910390f35b34801561067957600080fd5b50610694600480360381019061068f91906127d8565b61161d565b6040516106a19190612b16565b60405180910390f35b3480156106b657600080fd5b506106bf6116ff565b6040516106cc9190612b16565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f791906127d8565b61178d565b005b34801561070a57600080fd5b5061071361179f565b6040516107209190612c18565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b91906126bb565b6117a5565b005b34801561075e57600080fd5b5061077960048036038101906107749190612525565b6117ca565b6040516107869190612afb565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b19190612805565b61185e565b005b3480156107c457600080fd5b506107df60048036038101906107da91906124f8565b611874565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461088290612ed3565b80601f01602080910402602001604051908101604052809291908181526020018280546108ae90612ed3565b80156108fb5780601f106108d0576101008083540402835291602001916108fb565b820191906000526020600020905b8154815290600101906020018083116108de57829003601f168201915b5050505050905090565b6000610910826118f8565b610946576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098f82610fbd565b90508073ffffffffffffffffffffffffffffffffffffffff166109b0611957565b73ffffffffffffffffffffffffffffffffffffffff1614610a13576109dc816109d7611957565b6117ca565b610a12576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610ad661195f565b80601160006101000a81548160ff02191690831515021790555050565b6000610afd6119dd565b6001546000540303905090565b60106020528060005260406000206000915090505481565b6000610b2d826119e6565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b94576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ba084611ab4565b91509150610bb68187610bb1611957565b611adb565b610c0257610bcb86610bc6611957565b6117ca565b610c01576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c69576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c768686866001611b1f565b8015610c8157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d4f85610d2b888887611b25565b7c020000000000000000000000000000000000000000000000000000000017611b4d565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610dd7576000600185019050600060046000838152602001908152602001600020541415610dd5576000548114610dd4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e3f8686866001611b78565b505050505050565b610e4f61195f565b60026009541415610e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8c90612bd8565b60405180910390fd5b60026009819055506000610ea761109c565b73ffffffffffffffffffffffffffffffffffffffff1647604051610eca90612a7f565b60006040518083038185875af1925050503d8060008114610f07576040519150601f19603f3d011682016040523d82523d6000602084013e610f0c565b606091505b5050905080610f1a57600080fd5b506001600981905550565b610f40838383604051806020016040528060008152506115a4565b505050565b610f4d61195f565b80600d8190555050565b610f5f61195f565b80600c9080519060200190610f75929190612230565b5050565b600a60009054906101000a900460ff1681565b610f9461195f565b8181600b9190610fa59291906122b6565b505050565b601160009054906101000a900460ff1681565b6000610fc8826119e6565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611037576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61109061195f565b61109a6000611b7e565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110d590612ed3565b80601f016020809104026020016040519081016040528092919081815260200182805461110190612ed3565b801561114e5780601f106111235761010080835404028352916020019161114e565b820191906000526020600020905b81548152906001019060200180831161113157829003601f168201915b5050505050905090565b6002600954141561119e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119590612bd8565b60405180910390fd5b6002600981905550600f5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111f49190612d08565b1115611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122c90612b58565b60405180910390fd5b600e5481611241610af3565b61124b9190612d08565b111561128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128390612bb8565b60405180910390fd5b601160009054906101000a900460ff16156112dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d390612b98565b60405180910390fd5b80600d546112ea9190612d8f565b34101561132c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132390612bf8565b60405180910390fd5b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461137b9190612d08565b9250508190555061139361138d611c44565b82611c4c565b600160098190555050565b6113a6611957565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561140b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611418611957565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114c5611957565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161150a9190612afb565b60405180910390a35050565b600c805461152390612ed3565b80601f016020809104026020016040519081016040528092919081815260200182805461154f90612ed3565b801561159c5780601f106115715761010080835404028352916020019161159c565b820191906000526020600020905b81548152906001019060200180831161157f57829003601f168201915b505050505081565b6115af848484610b22565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611611576115da84848484611c6a565b611610576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600f5481565b6060600a60009054906101000a900460ff161561166c5761163c611dca565b61164583611e5c565b604051602001611656929190612a50565b60405160208183030381529060405290506116fa565b600c805461167990612ed3565b80601f01602080910402602001604051908101604052809291908181526020018280546116a590612ed3565b80156116f25780601f106116c7576101008083540402835291602001916116f2565b820191906000526020600020905b8154815290600101906020018083116116d557829003601f168201915b505050505090505b919050565b600b805461170c90612ed3565b80601f016020809104026020016040519081016040528092919081815260200182805461173890612ed3565b80156117855780601f1061175a57610100808354040283529160200191611785565b820191906000526020600020905b81548152906001019060200180831161176857829003601f168201915b505050505081565b61179561195f565b80600f8190555050565b600e5481565b6117ad61195f565b80600a60006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61186661195f565b6118708183611c4c565b5050565b61187c61195f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e390612b38565b60405180910390fd5b6118f581611b7e565b50565b6000816119036119dd565b11158015611912575060005482105b8015611950575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611967611c44565b73ffffffffffffffffffffffffffffffffffffffff1661198561109c565b73ffffffffffffffffffffffffffffffffffffffff16146119db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d290612b78565b60405180910390fd5b565b60006001905090565b600080829050806119f56119dd565b11611a7d57600054811015611a7c5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a7a575b6000811415611a70576004600083600190039350838152602001908152602001600020549050611a45565b8092505050611aaf565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b3c868684611fbd565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b611c66828260405180602001604052806000815250611fc6565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c90611957565b8786866040518563ffffffff1660e01b8152600401611cb29493929190612aaf565b602060405180830381600087803b158015611ccc57600080fd5b505af1925050508015611cfd57506040513d601f19601f82011682018060405250810190611cfa9190612715565b60015b611d77573d8060008114611d2d576040519150601f19603f3d011682016040523d82523d6000602084013e611d32565b606091505b50600081511415611d6f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611dd990612ed3565b80601f0160208091040260200160405190810160405280929190818152602001828054611e0590612ed3565b8015611e525780601f10611e2757610100808354040283529160200191611e52565b820191906000526020600020905b815481529060010190602001808311611e3557829003601f168201915b5050505050905090565b60606000821415611ea4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611fb8565b600082905060005b60008214611ed6578080611ebf90612f36565b915050600a82611ecf9190612d5e565b9150611eac565b60008167ffffffffffffffff811115611ef257611ef161306c565b5b6040519080825280601f01601f191660200182016040528015611f245781602001600182028036833780820191505090505b5090505b60008514611fb157600182611f3d9190612de9565b9150600a85611f4c9190612f7f565b6030611f589190612d08565b60f81b818381518110611f6e57611f6d61303d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611faa9190612d5e565b9450611f28565b8093505050505b919050565b60009392505050565b611fd08383612063565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461205e57600080549050600083820390505b6120106000868380600101945086611c6a565b612046576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ffd57816000541461205b57600080fd5b50505b505050565b60008054905060008214156120a4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120b16000848385611b1f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612128836121196000866000611b25565b61212285612220565b17611b4d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146121c957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061218e565b506000821415612205576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061221b6000848385611b78565b505050565b60006001821460e11b9050919050565b82805461223c90612ed3565b90600052602060002090601f01602090048101928261225e57600085556122a5565b82601f1061227757805160ff19168380011785556122a5565b828001600101855582156122a5579182015b828111156122a4578251825591602001919060010190612289565b5b5090506122b2919061233c565b5090565b8280546122c290612ed3565b90600052602060002090601f0160209004810192826122e4576000855561232b565b82601f106122fd57803560ff191683800117855561232b565b8280016001018555821561232b579182015b8281111561232a57823582559160200191906001019061230f565b5b509050612338919061233c565b5090565b5b8082111561235557600081600090555060010161233d565b5090565b600061236c61236784612c58565b612c33565b905082815260208101848484011115612388576123876130aa565b5b612393848285612e91565b509392505050565b60006123ae6123a984612c89565b612c33565b9050828152602081018484840111156123ca576123c96130aa565b5b6123d5848285612e91565b509392505050565b6000813590506123ec8161323b565b92915050565b60008135905061240181613252565b92915050565b60008135905061241681613269565b92915050565b60008151905061242b81613269565b92915050565b600082601f830112612446576124456130a0565b5b8135612456848260208601612359565b91505092915050565b60008083601f840112612475576124746130a0565b5b8235905067ffffffffffffffff8111156124925761249161309b565b5b6020830191508360018202830111156124ae576124ad6130a5565b5b9250929050565b600082601f8301126124ca576124c96130a0565b5b81356124da84826020860161239b565b91505092915050565b6000813590506124f281613280565b92915050565b60006020828403121561250e5761250d6130b4565b5b600061251c848285016123dd565b91505092915050565b6000806040838503121561253c5761253b6130b4565b5b600061254a858286016123dd565b925050602061255b858286016123dd565b9150509250929050565b60008060006060848603121561257e5761257d6130b4565b5b600061258c868287016123dd565b935050602061259d868287016123dd565b92505060406125ae868287016124e3565b9150509250925092565b600080600080608085870312156125d2576125d16130b4565b5b60006125e0878288016123dd565b94505060206125f1878288016123dd565b9350506040612602878288016124e3565b925050606085013567ffffffffffffffff811115612623576126226130af565b5b61262f87828801612431565b91505092959194509250565b60008060408385031215612652576126516130b4565b5b6000612660858286016123dd565b9250506020612671858286016123f2565b9150509250929050565b60008060408385031215612692576126916130b4565b5b60006126a0858286016123dd565b92505060206126b1858286016124e3565b9150509250929050565b6000602082840312156126d1576126d06130b4565b5b60006126df848285016123f2565b91505092915050565b6000602082840312156126fe576126fd6130b4565b5b600061270c84828501612407565b91505092915050565b60006020828403121561272b5761272a6130b4565b5b60006127398482850161241c565b91505092915050565b60008060208385031215612759576127586130b4565b5b600083013567ffffffffffffffff811115612777576127766130af565b5b6127838582860161245f565b92509250509250929050565b6000602082840312156127a5576127a46130b4565b5b600082013567ffffffffffffffff8111156127c3576127c26130af565b5b6127cf848285016124b5565b91505092915050565b6000602082840312156127ee576127ed6130b4565b5b60006127fc848285016124e3565b91505092915050565b6000806040838503121561281c5761281b6130b4565b5b600061282a858286016124e3565b925050602061283b858286016123dd565b9150509250929050565b61284e81612e1d565b82525050565b61285d81612e2f565b82525050565b600061286e82612cba565b6128788185612cd0565b9350612888818560208601612ea0565b612891816130b9565b840191505092915050565b60006128a782612cc5565b6128b18185612cec565b93506128c1818560208601612ea0565b6128ca816130b9565b840191505092915050565b60006128e082612cc5565b6128ea8185612cfd565b93506128fa818560208601612ea0565b80840191505092915050565b6000612913602683612cec565b915061291e826130ca565b604082019050919050565b6000612936601c83612cec565b915061294182613119565b602082019050919050565b6000612959600583612cfd565b915061296482613142565b600582019050919050565b600061297c602083612cec565b91506129878261316b565b602082019050919050565b600061299f601783612cec565b91506129aa82613194565b602082019050919050565b60006129c2600083612ce1565b91506129cd826131bd565b600082019050919050565b60006129e5601483612cec565b91506129f0826131c0565b602082019050919050565b6000612a08601f83612cec565b9150612a13826131e9565b602082019050919050565b6000612a2b601383612cec565b9150612a3682613212565b602082019050919050565b612a4a81612e87565b82525050565b6000612a5c82856128d5565b9150612a6882846128d5565b9150612a738261294c565b91508190509392505050565b6000612a8a826129b5565b9150819050919050565b6000602082019050612aa96000830184612845565b92915050565b6000608082019050612ac46000830187612845565b612ad16020830186612845565b612ade6040830185612a41565b8181036060830152612af08184612863565b905095945050505050565b6000602082019050612b106000830184612854565b92915050565b60006020820190508181036000830152612b30818461289c565b905092915050565b60006020820190508181036000830152612b5181612906565b9050919050565b60006020820190508181036000830152612b7181612929565b9050919050565b60006020820190508181036000830152612b918161296f565b9050919050565b60006020820190508181036000830152612bb181612992565b9050919050565b60006020820190508181036000830152612bd1816129d8565b9050919050565b60006020820190508181036000830152612bf1816129fb565b9050919050565b60006020820190508181036000830152612c1181612a1e565b9050919050565b6000602082019050612c2d6000830184612a41565b92915050565b6000612c3d612c4e565b9050612c498282612f05565b919050565b6000604051905090565b600067ffffffffffffffff821115612c7357612c7261306c565b5b612c7c826130b9565b9050602081019050919050565b600067ffffffffffffffff821115612ca457612ca361306c565b5b612cad826130b9565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d1382612e87565b9150612d1e83612e87565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d5357612d52612fb0565b5b828201905092915050565b6000612d6982612e87565b9150612d7483612e87565b925082612d8457612d83612fdf565b5b828204905092915050565b6000612d9a82612e87565b9150612da583612e87565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612dde57612ddd612fb0565b5b828202905092915050565b6000612df482612e87565b9150612dff83612e87565b925082821015612e1257612e11612fb0565b5b828203905092915050565b6000612e2882612e67565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612ebe578082015181840152602081019050612ea3565b83811115612ecd576000848401525b50505050565b60006002820490506001821680612eeb57607f821691505b60208210811415612eff57612efe61300e565b5b50919050565b612f0e826130b9565b810181811067ffffffffffffffff82111715612f2d57612f2c61306c565b5b80604052505050565b6000612f4182612e87565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f7457612f73612fb0565b5b600182019050919050565b6000612f8a82612e87565b9150612f9583612e87565b925082612fa557612fa4612fdf565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61324481612e1d565b811461324f57600080fd5b50565b61325b81612e2f565b811461326657600080fd5b50565b61327281612e3b565b811461327d57600080fd5b50565b61328981612e87565b811461329457600080fd5b5056fea26469706673582212206511be045bae4fa02a0fdf4c4329bacfb1651979068406e83a891abb6346180264736f6c63430008070033697066733a2f2f516d544c5642617a7a4d39377548576b327856476f336a34635431716a356a6a313247793164475a394c444e537a2f697066733a2f2f516d577a47626f477732554741633275506d6b7464593556726a384664376358784452676d4856764454556e6139

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063ba7d2c76116100a0578063d5abeb011161006f578063d5abeb01146106fe578063e0a8085314610729578063e985e9c514610752578063efbd73f41461078f578063f2fde38b146107b8576101f9565b8063ba7d2c7614610642578063c87b56dd1461066d578063cfc86f7b146106aa578063d0eb26b0146106d5576101f9565b8063a0712d68116100dc578063a0712d68146105a9578063a22cb465146105c5578063a45ba8e7146105ee578063b88d4fde14610619576101f9565b806370a08231146104ff578063715018a61461053c5780638da5cb5b1461055357806395d89b411461057e576101f9565b806323b872dd116101905780634fdd43cb1161015f5780634fdd43cb1461041a578063518302271461044357806355f804b31461046e5780635c975abb146104975780636352211e146104c2576101f9565b806323b872dd146103885780633ccfd60b146103b157806342842e0e146103c857806344a0d68a146103f1576101f9565b806313faede6116101cc57806313faede6146102cc57806316c38b3c146102f757806318160ddd1461032057806318cae2691461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906126e8565b6107e1565b6040516102329190612afb565b60405180910390f35b34801561024757600080fd5b50610250610873565b60405161025d9190612b16565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906127d8565b610905565b60405161029a9190612a94565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c5919061267b565b610984565b005b3480156102d857600080fd5b506102e1610ac8565b6040516102ee9190612c18565b60405180910390f35b34801561030357600080fd5b5061031e600480360381019061031991906126bb565b610ace565b005b34801561032c57600080fd5b50610335610af3565b6040516103429190612c18565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d91906124f8565b610b0a565b60405161037f9190612c18565b60405180910390f35b34801561039457600080fd5b506103af60048036038101906103aa9190612565565b610b22565b005b3480156103bd57600080fd5b506103c6610e47565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190612565565b610f25565b005b3480156103fd57600080fd5b50610418600480360381019061041391906127d8565b610f45565b005b34801561042657600080fd5b50610441600480360381019061043c919061278f565b610f57565b005b34801561044f57600080fd5b50610458610f79565b6040516104659190612afb565b60405180910390f35b34801561047a57600080fd5b5061049560048036038101906104909190612742565b610f8c565b005b3480156104a357600080fd5b506104ac610faa565b6040516104b99190612afb565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e491906127d8565b610fbd565b6040516104f69190612a94565b60405180910390f35b34801561050b57600080fd5b50610526600480360381019061052191906124f8565b610fcf565b6040516105339190612c18565b60405180910390f35b34801561054857600080fd5b50610551611088565b005b34801561055f57600080fd5b5061056861109c565b6040516105759190612a94565b60405180910390f35b34801561058a57600080fd5b506105936110c6565b6040516105a09190612b16565b60405180910390f35b6105c360048036038101906105be91906127d8565b611158565b005b3480156105d157600080fd5b506105ec60048036038101906105e7919061263b565b61139e565b005b3480156105fa57600080fd5b50610603611516565b6040516106109190612b16565b60405180910390f35b34801561062557600080fd5b50610640600480360381019061063b91906125b8565b6115a4565b005b34801561064e57600080fd5b50610657611617565b6040516106649190612c18565b60405180910390f35b34801561067957600080fd5b50610694600480360381019061068f91906127d8565b61161d565b6040516106a19190612b16565b60405180910390f35b3480156106b657600080fd5b506106bf6116ff565b6040516106cc9190612b16565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f791906127d8565b61178d565b005b34801561070a57600080fd5b5061071361179f565b6040516107209190612c18565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b91906126bb565b6117a5565b005b34801561075e57600080fd5b5061077960048036038101906107749190612525565b6117ca565b6040516107869190612afb565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b19190612805565b61185e565b005b3480156107c457600080fd5b506107df60048036038101906107da91906124f8565b611874565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461088290612ed3565b80601f01602080910402602001604051908101604052809291908181526020018280546108ae90612ed3565b80156108fb5780601f106108d0576101008083540402835291602001916108fb565b820191906000526020600020905b8154815290600101906020018083116108de57829003601f168201915b5050505050905090565b6000610910826118f8565b610946576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098f82610fbd565b90508073ffffffffffffffffffffffffffffffffffffffff166109b0611957565b73ffffffffffffffffffffffffffffffffffffffff1614610a13576109dc816109d7611957565b6117ca565b610a12576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610ad661195f565b80601160006101000a81548160ff02191690831515021790555050565b6000610afd6119dd565b6001546000540303905090565b60106020528060005260406000206000915090505481565b6000610b2d826119e6565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b94576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ba084611ab4565b91509150610bb68187610bb1611957565b611adb565b610c0257610bcb86610bc6611957565b6117ca565b610c01576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c69576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c768686866001611b1f565b8015610c8157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d4f85610d2b888887611b25565b7c020000000000000000000000000000000000000000000000000000000017611b4d565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610dd7576000600185019050600060046000838152602001908152602001600020541415610dd5576000548114610dd4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e3f8686866001611b78565b505050505050565b610e4f61195f565b60026009541415610e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8c90612bd8565b60405180910390fd5b60026009819055506000610ea761109c565b73ffffffffffffffffffffffffffffffffffffffff1647604051610eca90612a7f565b60006040518083038185875af1925050503d8060008114610f07576040519150601f19603f3d011682016040523d82523d6000602084013e610f0c565b606091505b5050905080610f1a57600080fd5b506001600981905550565b610f40838383604051806020016040528060008152506115a4565b505050565b610f4d61195f565b80600d8190555050565b610f5f61195f565b80600c9080519060200190610f75929190612230565b5050565b600a60009054906101000a900460ff1681565b610f9461195f565b8181600b9190610fa59291906122b6565b505050565b601160009054906101000a900460ff1681565b6000610fc8826119e6565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611037576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61109061195f565b61109a6000611b7e565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110d590612ed3565b80601f016020809104026020016040519081016040528092919081815260200182805461110190612ed3565b801561114e5780601f106111235761010080835404028352916020019161114e565b820191906000526020600020905b81548152906001019060200180831161113157829003601f168201915b5050505050905090565b6002600954141561119e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119590612bd8565b60405180910390fd5b6002600981905550600f5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111f49190612d08565b1115611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122c90612b58565b60405180910390fd5b600e5481611241610af3565b61124b9190612d08565b111561128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128390612bb8565b60405180910390fd5b601160009054906101000a900460ff16156112dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d390612b98565b60405180910390fd5b80600d546112ea9190612d8f565b34101561132c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132390612bf8565b60405180910390fd5b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461137b9190612d08565b9250508190555061139361138d611c44565b82611c4c565b600160098190555050565b6113a6611957565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561140b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611418611957565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114c5611957565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161150a9190612afb565b60405180910390a35050565b600c805461152390612ed3565b80601f016020809104026020016040519081016040528092919081815260200182805461154f90612ed3565b801561159c5780601f106115715761010080835404028352916020019161159c565b820191906000526020600020905b81548152906001019060200180831161157f57829003601f168201915b505050505081565b6115af848484610b22565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611611576115da84848484611c6a565b611610576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600f5481565b6060600a60009054906101000a900460ff161561166c5761163c611dca565b61164583611e5c565b604051602001611656929190612a50565b60405160208183030381529060405290506116fa565b600c805461167990612ed3565b80601f01602080910402602001604051908101604052809291908181526020018280546116a590612ed3565b80156116f25780601f106116c7576101008083540402835291602001916116f2565b820191906000526020600020905b8154815290600101906020018083116116d557829003601f168201915b505050505090505b919050565b600b805461170c90612ed3565b80601f016020809104026020016040519081016040528092919081815260200182805461173890612ed3565b80156117855780601f1061175a57610100808354040283529160200191611785565b820191906000526020600020905b81548152906001019060200180831161176857829003601f168201915b505050505081565b61179561195f565b80600f8190555050565b600e5481565b6117ad61195f565b80600a60006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61186661195f565b6118708183611c4c565b5050565b61187c61195f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e390612b38565b60405180910390fd5b6118f581611b7e565b50565b6000816119036119dd565b11158015611912575060005482105b8015611950575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611967611c44565b73ffffffffffffffffffffffffffffffffffffffff1661198561109c565b73ffffffffffffffffffffffffffffffffffffffff16146119db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d290612b78565b60405180910390fd5b565b60006001905090565b600080829050806119f56119dd565b11611a7d57600054811015611a7c5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a7a575b6000811415611a70576004600083600190039350838152602001908152602001600020549050611a45565b8092505050611aaf565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b3c868684611fbd565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b611c66828260405180602001604052806000815250611fc6565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c90611957565b8786866040518563ffffffff1660e01b8152600401611cb29493929190612aaf565b602060405180830381600087803b158015611ccc57600080fd5b505af1925050508015611cfd57506040513d601f19601f82011682018060405250810190611cfa9190612715565b60015b611d77573d8060008114611d2d576040519150601f19603f3d011682016040523d82523d6000602084013e611d32565b606091505b50600081511415611d6f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611dd990612ed3565b80601f0160208091040260200160405190810160405280929190818152602001828054611e0590612ed3565b8015611e525780601f10611e2757610100808354040283529160200191611e52565b820191906000526020600020905b815481529060010190602001808311611e3557829003601f168201915b5050505050905090565b60606000821415611ea4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611fb8565b600082905060005b60008214611ed6578080611ebf90612f36565b915050600a82611ecf9190612d5e565b9150611eac565b60008167ffffffffffffffff811115611ef257611ef161306c565b5b6040519080825280601f01601f191660200182016040528015611f245781602001600182028036833780820191505090505b5090505b60008514611fb157600182611f3d9190612de9565b9150600a85611f4c9190612f7f565b6030611f589190612d08565b60f81b818381518110611f6e57611f6d61303d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611faa9190612d5e565b9450611f28565b8093505050505b919050565b60009392505050565b611fd08383612063565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461205e57600080549050600083820390505b6120106000868380600101945086611c6a565b612046576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ffd57816000541461205b57600080fd5b50505b505050565b60008054905060008214156120a4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120b16000848385611b1f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612128836121196000866000611b25565b61212285612220565b17611b4d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146121c957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061218e565b506000821415612205576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061221b6000848385611b78565b505050565b60006001821460e11b9050919050565b82805461223c90612ed3565b90600052602060002090601f01602090048101928261225e57600085556122a5565b82601f1061227757805160ff19168380011785556122a5565b828001600101855582156122a5579182015b828111156122a4578251825591602001919060010190612289565b5b5090506122b2919061233c565b5090565b8280546122c290612ed3565b90600052602060002090601f0160209004810192826122e4576000855561232b565b82601f106122fd57803560ff191683800117855561232b565b8280016001018555821561232b579182015b8281111561232a57823582559160200191906001019061230f565b5b509050612338919061233c565b5090565b5b8082111561235557600081600090555060010161233d565b5090565b600061236c61236784612c58565b612c33565b905082815260208101848484011115612388576123876130aa565b5b612393848285612e91565b509392505050565b60006123ae6123a984612c89565b612c33565b9050828152602081018484840111156123ca576123c96130aa565b5b6123d5848285612e91565b509392505050565b6000813590506123ec8161323b565b92915050565b60008135905061240181613252565b92915050565b60008135905061241681613269565b92915050565b60008151905061242b81613269565b92915050565b600082601f830112612446576124456130a0565b5b8135612456848260208601612359565b91505092915050565b60008083601f840112612475576124746130a0565b5b8235905067ffffffffffffffff8111156124925761249161309b565b5b6020830191508360018202830111156124ae576124ad6130a5565b5b9250929050565b600082601f8301126124ca576124c96130a0565b5b81356124da84826020860161239b565b91505092915050565b6000813590506124f281613280565b92915050565b60006020828403121561250e5761250d6130b4565b5b600061251c848285016123dd565b91505092915050565b6000806040838503121561253c5761253b6130b4565b5b600061254a858286016123dd565b925050602061255b858286016123dd565b9150509250929050565b60008060006060848603121561257e5761257d6130b4565b5b600061258c868287016123dd565b935050602061259d868287016123dd565b92505060406125ae868287016124e3565b9150509250925092565b600080600080608085870312156125d2576125d16130b4565b5b60006125e0878288016123dd565b94505060206125f1878288016123dd565b9350506040612602878288016124e3565b925050606085013567ffffffffffffffff811115612623576126226130af565b5b61262f87828801612431565b91505092959194509250565b60008060408385031215612652576126516130b4565b5b6000612660858286016123dd565b9250506020612671858286016123f2565b9150509250929050565b60008060408385031215612692576126916130b4565b5b60006126a0858286016123dd565b92505060206126b1858286016124e3565b9150509250929050565b6000602082840312156126d1576126d06130b4565b5b60006126df848285016123f2565b91505092915050565b6000602082840312156126fe576126fd6130b4565b5b600061270c84828501612407565b91505092915050565b60006020828403121561272b5761272a6130b4565b5b60006127398482850161241c565b91505092915050565b60008060208385031215612759576127586130b4565b5b600083013567ffffffffffffffff811115612777576127766130af565b5b6127838582860161245f565b92509250509250929050565b6000602082840312156127a5576127a46130b4565b5b600082013567ffffffffffffffff8111156127c3576127c26130af565b5b6127cf848285016124b5565b91505092915050565b6000602082840312156127ee576127ed6130b4565b5b60006127fc848285016124e3565b91505092915050565b6000806040838503121561281c5761281b6130b4565b5b600061282a858286016124e3565b925050602061283b858286016123dd565b9150509250929050565b61284e81612e1d565b82525050565b61285d81612e2f565b82525050565b600061286e82612cba565b6128788185612cd0565b9350612888818560208601612ea0565b612891816130b9565b840191505092915050565b60006128a782612cc5565b6128b18185612cec565b93506128c1818560208601612ea0565b6128ca816130b9565b840191505092915050565b60006128e082612cc5565b6128ea8185612cfd565b93506128fa818560208601612ea0565b80840191505092915050565b6000612913602683612cec565b915061291e826130ca565b604082019050919050565b6000612936601c83612cec565b915061294182613119565b602082019050919050565b6000612959600583612cfd565b915061296482613142565b600582019050919050565b600061297c602083612cec565b91506129878261316b565b602082019050919050565b600061299f601783612cec565b91506129aa82613194565b602082019050919050565b60006129c2600083612ce1565b91506129cd826131bd565b600082019050919050565b60006129e5601483612cec565b91506129f0826131c0565b602082019050919050565b6000612a08601f83612cec565b9150612a13826131e9565b602082019050919050565b6000612a2b601383612cec565b9150612a3682613212565b602082019050919050565b612a4a81612e87565b82525050565b6000612a5c82856128d5565b9150612a6882846128d5565b9150612a738261294c565b91508190509392505050565b6000612a8a826129b5565b9150819050919050565b6000602082019050612aa96000830184612845565b92915050565b6000608082019050612ac46000830187612845565b612ad16020830186612845565b612ade6040830185612a41565b8181036060830152612af08184612863565b905095945050505050565b6000602082019050612b106000830184612854565b92915050565b60006020820190508181036000830152612b30818461289c565b905092915050565b60006020820190508181036000830152612b5181612906565b9050919050565b60006020820190508181036000830152612b7181612929565b9050919050565b60006020820190508181036000830152612b918161296f565b9050919050565b60006020820190508181036000830152612bb181612992565b9050919050565b60006020820190508181036000830152612bd1816129d8565b9050919050565b60006020820190508181036000830152612bf1816129fb565b9050919050565b60006020820190508181036000830152612c1181612a1e565b9050919050565b6000602082019050612c2d6000830184612a41565b92915050565b6000612c3d612c4e565b9050612c498282612f05565b919050565b6000604051905090565b600067ffffffffffffffff821115612c7357612c7261306c565b5b612c7c826130b9565b9050602081019050919050565b600067ffffffffffffffff821115612ca457612ca361306c565b5b612cad826130b9565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d1382612e87565b9150612d1e83612e87565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d5357612d52612fb0565b5b828201905092915050565b6000612d6982612e87565b9150612d7483612e87565b925082612d8457612d83612fdf565b5b828204905092915050565b6000612d9a82612e87565b9150612da583612e87565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612dde57612ddd612fb0565b5b828202905092915050565b6000612df482612e87565b9150612dff83612e87565b925082821015612e1257612e11612fb0565b5b828203905092915050565b6000612e2882612e67565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612ebe578082015181840152602081019050612ea3565b83811115612ecd576000848401525b50505050565b60006002820490506001821680612eeb57607f821691505b60208210811415612eff57612efe61300e565b5b50919050565b612f0e826130b9565b810181811067ffffffffffffffff82111715612f2d57612f2c61306c565b5b80604052505050565b6000612f4182612e87565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f7457612f73612fb0565b5b600182019050919050565b6000612f8a82612e87565b9150612f9583612e87565b925082612fa557612fa4612fdf565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61324481612e1d565b811461324f57600080fd5b50565b61325b81612e2f565b811461326657600080fd5b50565b61327281612e3b565b811461327d57600080fd5b50565b61328981612e87565b811461329457600080fd5b5056fea26469706673582212206511be045bae4fa02a0fdf4c4329bacfb1651979068406e83a891abb6346180264736f6c63430008070033

Deployed Bytecode Sourcemap

59754:2564:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27285:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28187:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34670:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34111:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60006:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61312:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23938:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60123:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38377:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61509:150;;;;;;;;;;;;;:::i;:::-;;41290:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61143:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61691:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59842:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61829:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60185:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29580:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25122:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8033:103;;;;;;;;;;;;;:::i;:::-;;7385:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28363:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60421:482;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35228:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59968:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42073:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60079:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62049:266;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59877:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61395:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60043:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61223:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35693:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60909:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8291:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27285:639;27370:4;27709:10;27694:25;;:11;:25;;;;:102;;;;27786:10;27771:25;;:11;:25;;;;27694:102;:179;;;;27863:10;27848:25;;:11;:25;;;;27694:179;27674:199;;27285:639;;;:::o;28187:100::-;28241:13;28274:5;28267:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28187:100;:::o;34670:218::-;34746:7;34771:16;34779:7;34771;:16::i;:::-;34766:64;;34796:34;;;;;;;;;;;;;;34766:64;34850:15;:24;34866:7;34850:24;;;;;;;;;;;:30;;;;;;;;;;;;34843:37;;34670:218;;;:::o;34111:400::-;34192:13;34208:16;34216:7;34208;:16::i;:::-;34192:32;;34264:5;34241:28;;:19;:17;:19::i;:::-;:28;;;34237:175;;34289:44;34306:5;34313:19;:17;:19::i;:::-;34289:16;:44::i;:::-;34284:128;;34361:35;;;;;;;;;;;;;;34284:128;34237:175;34457:2;34424:15;:24;34440:7;34424:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34495:7;34491:2;34475:28;;34484:5;34475:28;;;;;;;;;;;;34181:330;34111:400;;:::o;60006:32::-;;;;:::o;61312:77::-;7271:13;:11;:13::i;:::-;61377:6:::1;61368;;:15;;;;;;;;;;;;;;;;;;61312:77:::0;:::o;23938:323::-;23999:7;24227:15;:13;:15::i;:::-;24212:12;;24196:13;;:28;:46;24189:53;;23938:323;:::o;60123:55::-;;;;;;;;;;;;;;;;;:::o;38377:2817::-;38511:27;38541;38560:7;38541:18;:27::i;:::-;38511:57;;38626:4;38585:45;;38601:19;38585:45;;;38581:86;;38639:28;;;;;;;;;;;;;;38581:86;38681:27;38710:23;38737:35;38764:7;38737:26;:35::i;:::-;38680:92;;;;38872:68;38897:15;38914:4;38920:19;:17;:19::i;:::-;38872:24;:68::i;:::-;38867:180;;38960:43;38977:4;38983:19;:17;:19::i;:::-;38960:16;:43::i;:::-;38955:92;;39012:35;;;;;;;;;;;;;;38955:92;38867:180;39078:1;39064:16;;:2;:16;;;39060:52;;;39089:23;;;;;;;;;;;;;;39060:52;39125:43;39147:4;39153:2;39157:7;39166:1;39125:21;:43::i;:::-;39261:15;39258:160;;;39401:1;39380:19;39373:30;39258:160;39798:18;:24;39817:4;39798:24;;;;;;;;;;;;;;;;39796:26;;;;;;;;;;;;39867:18;:22;39886:2;39867:22;;;;;;;;;;;;;;;;39865:24;;;;;;;;;;;40189:146;40226:2;40275:45;40290:4;40296:2;40300:19;40275:14;:45::i;:::-;20337:8;40247:73;40189:18;:146::i;:::-;40160:17;:26;40178:7;40160:26;;;;;;;;;;;:175;;;;40506:1;20337:8;40455:19;:47;:52;40451:627;;;40528:19;40560:1;40550:7;:11;40528:33;;40717:1;40683:17;:30;40701:11;40683:30;;;;;;;;;;;;:35;40679:384;;;40821:13;;40806:11;:28;40802:242;;41001:19;40968:17;:30;40986:11;40968:30;;;;;;;;;;;:52;;;;40802:242;40679:384;40509:569;40451:627;41125:7;41121:2;41106:27;;41115:4;41106:27;;;;;;;;;;;;41144:42;41165:4;41171:2;41175:7;41184:1;41144:20;:42::i;:::-;38500:2694;;;38377:2817;;;:::o;61509:150::-;7271:13;:11;:13::i;:::-;4310:1:::1;4908:7;;:19;;4900:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4310:1;5041:7;:18;;;;61567:7:::2;61588;:5;:7::i;:::-;61580:21;;61609;61580:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61566:69;;;61650:2;61642:11;;;::::0;::::2;;61559:100;4266:1:::1;5220:7;:22;;;;61509:150::o:0;41290:185::-;41428:39;41445:4;41451:2;41455:7;41428:39;;;;;;;;;;;;:16;:39::i;:::-;41290:185;;;:::o;61143:74::-;7271:13;:11;:13::i;:::-;61206:5:::1;61199:4;:12;;;;61143:74:::0;:::o;61691:132::-;7271:13;:11;:13::i;:::-;61799:18:::1;61779:17;:38;;;;;;;;;;;;:::i;:::-;;61691:132:::0;:::o;59842:28::-;;;;;;;;;;;;;:::o;61829:98::-;7271:13;:11;:13::i;:::-;61914:7:::1;;61898:13;:23;;;;;;;:::i;:::-;;61829:98:::0;;:::o;60185:25::-;;;;;;;;;;;;;:::o;29580:152::-;29652:7;29695:27;29714:7;29695:18;:27::i;:::-;29672:52;;29580:152;;;:::o;25122:233::-;25194:7;25235:1;25218:19;;:5;:19;;;25214:60;;;25246:28;;;;;;;;;;;;;;25214:60;19281:13;25292:18;:25;25311:5;25292:25;;;;;;;;;;;;;;;;:55;25285:62;;25122:233;;;:::o;8033:103::-;7271:13;:11;:13::i;:::-;8098:30:::1;8125:1;8098:18;:30::i;:::-;8033:103::o:0;7385:87::-;7431:7;7458:6;;;;;;;;;;;7451:13;;7385:87;:::o;28363:104::-;28419:13;28452:7;28445:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28363:104;:::o;60421:482::-;4310:1;4908:7;;:19;;4900:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4310:1;5041:7;:18;;;;60549::::1;;60534:11;60499:20;:32;60520:10;60499:32;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;:68;;60491:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;60646:9;;60631:11;60615:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;60607:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;60696:6;;;;;;;;;;;60695:7;60687:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;60765:11;60758:4;;:18;;;;:::i;:::-;60745:9;:31;;60737:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;60843:11;60807:20;:32;60828:10;60807:32;;;;;;;;;;;;;;;;:47;;;;;;;:::i;:::-;;;;;;;;60861:36;60871:12;:10;:12::i;:::-;60885:11;60861:9;:36::i;:::-;4266:1:::0;5220:7;:22;;;;60421:482;:::o;35228:308::-;35339:19;:17;:19::i;:::-;35327:31;;:8;:31;;;35323:61;;;35367:17;;;;;;;;;;;;;;35323:61;35449:8;35397:18;:39;35416:19;:17;:19::i;:::-;35397:39;;;;;;;;;;;;;;;:49;35437:8;35397:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;35509:8;35473:55;;35488:19;:17;:19::i;:::-;35473:55;;;35519:8;35473:55;;;;;;:::i;:::-;;;;;;;;35228:308;;:::o;59968:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42073:399::-;42240:31;42253:4;42259:2;42263:7;42240:12;:31::i;:::-;42304:1;42286:2;:14;;;:19;42282:183;;42325:56;42356:4;42362:2;42366:7;42375:5;42325:30;:56::i;:::-;42320:145;;42409:40;;;;;;;;;;;;;;42320:145;42282:183;42073:399;;;;:::o;60079:37::-;;;;:::o;62049:266::-;62123:13;62151:8;;;;;;;;;;;62147:163;;;62205:10;:8;:10::i;:::-;62217:19;:8;:17;:19::i;:::-;62188:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62174:73;;;;62147:163;62283:17;62276:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62049:266;;;;:::o;59877:86::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;61395:104::-;7271:13;:11;:13::i;:::-;61487:6:::1;61466:18;:27;;;;61395:104:::0;:::o;60043:31::-;;;;:::o;61223:81::-;7271:13;:11;:13::i;:::-;61292:6:::1;61281:8;;:17;;;;;;;;;;;;;;;;;;61223:81:::0;:::o;35693:164::-;35790:4;35814:18;:25;35833:5;35814:25;;;;;;;;;;;;;;;:35;35840:8;35814:35;;;;;;;;;;;;;;;;;;;;;;;;;35807:42;;35693:164;;;;:::o;60909:127::-;7271:13;:11;:13::i;:::-;60997:33:::1;61007:9;61018:11;60997:9;:33::i;:::-;60909:127:::0;;:::o;8291:201::-;7271:13;:11;:13::i;:::-;8400:1:::1;8380:22;;:8;:22;;;;8372:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8456:28;8475:8;8456:18;:28::i;:::-;8291:201:::0;:::o;36115:282::-;36180:4;36236:7;36217:15;:13;:15::i;:::-;:26;;:66;;;;;36270:13;;36260:7;:23;36217:66;:153;;;;;36369:1;20057:8;36321:17;:26;36339:7;36321:26;;;;;;;;;;;;:44;:49;36217:153;36197:173;;36115:282;;;:::o;57881:105::-;57941:7;57968:10;57961:17;;57881:105;:::o;7550:132::-;7625:12;:10;:12::i;:::-;7614:23;;:7;:5;:7::i;:::-;:23;;;7606:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7550:132::o;61042:95::-;61107:7;61130:1;61123:8;;61042:95;:::o;30735:1275::-;30802:7;30822:12;30837:7;30822:22;;30905:4;30886:15;:13;:15::i;:::-;:23;30882:1061;;30939:13;;30932:4;:20;30928:1015;;;30977:14;30994:17;:23;31012:4;30994:23;;;;;;;;;;;;30977:40;;31111:1;20057:8;31083:6;:24;:29;31079:845;;;31748:113;31765:1;31755:6;:11;31748:113;;;31808:17;:25;31826:6;;;;;;;31808:25;;;;;;;;;;;;31799:34;;31748:113;;;31894:6;31887:13;;;;;;31079:845;30954:989;30928:1015;30882:1061;31971:31;;;;;;;;;;;;;;30735:1275;;;;:::o;37278:479::-;37380:27;37409:23;37450:38;37491:15;:24;37507:7;37491:24;;;;;;;;;;;37450:65;;37662:18;37639:41;;37719:19;37713:26;37694:45;;37624:126;37278:479;;;:::o;36506:659::-;36655:11;36820:16;36813:5;36809:28;36800:37;;36980:16;36969:9;36965:32;36952:45;;37130:15;37119:9;37116:30;37108:5;37097:9;37094:20;37091:56;37081:66;;36506:659;;;;;:::o;43134:159::-;;;;;:::o;57190:311::-;57325:7;57345:16;20461:3;57371:19;:41;;57345:68;;20461:3;57439:31;57450:4;57456:2;57460:9;57439:10;:31::i;:::-;57431:40;;:62;;57424:69;;;57190:311;;;;;:::o;32558:450::-;32638:14;32806:16;32799:5;32795:28;32786:37;;32983:5;32969:11;32944:23;32940:41;32937:52;32930:5;32927:63;32917:73;;32558:450;;;;:::o;43958:158::-;;;;;:::o;8652:191::-;8726:16;8745:6;;;;;;;;;;;8726:25;;8771:8;8762:6;;:17;;;;;;;;;;;;;;;;;;8826:8;8795:40;;8816:8;8795:40;;;;;;;;;;;;8715:128;8652:191;:::o;5936:98::-;5989:7;6016:10;6009:17;;5936:98;:::o;51713:112::-;51790:27;51800:2;51804:8;51790:27;;;;;;;;;;;;:9;:27::i;:::-;51713:112;;:::o;44556:716::-;44719:4;44765:2;44740:45;;;44786:19;:17;:19::i;:::-;44807:4;44813:7;44822:5;44740:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44736:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45040:1;45023:6;:13;:18;45019:235;;;45069:40;;;;;;;;;;;;;;45019:235;45212:6;45206:13;45197:6;45193:2;45189:15;45182:38;44736:529;44909:54;;;44899:64;;;:6;:64;;;;44892:71;;;44556:716;;;;;;:::o;61933:110::-;61993:13;62024;62017:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61933:110;:::o;431:723::-;487:13;717:1;708:5;:10;704:53;;;735:10;;;;;;;;;;;;;;;;;;;;;704:53;767:12;782:5;767:20;;798:14;823:78;838:1;830:4;:9;823:78;;856:8;;;;;:::i;:::-;;;;887:2;879:10;;;;;:::i;:::-;;;823:78;;;911:19;943:6;933:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;911:39;;961:154;977:1;968:5;:10;961:154;;1005:1;995:11;;;;;:::i;:::-;;;1072:2;1064:5;:10;;;;:::i;:::-;1051:2;:24;;;;:::i;:::-;1038:39;;1021:6;1028;1021:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1101:2;1092:11;;;;;:::i;:::-;;;961:154;;;1139:6;1125:21;;;;;431:723;;;;:::o;56891:147::-;57028:6;56891:147;;;;;:::o;50940:689::-;51071:19;51077:2;51081:8;51071:5;:19::i;:::-;51150:1;51132:2;:14;;;:19;51128:483;;51172:11;51186:13;;51172:27;;51218:13;51240:8;51234:3;:14;51218:30;;51267:233;51298:62;51337:1;51341:2;51345:7;;;;;;51354:5;51298:30;:62::i;:::-;51293:167;;51396:40;;;;;;;;;;;;;;51293:167;51495:3;51487:5;:11;51267:233;;51582:3;51565:13;;:20;51561:34;;51587:8;;;51561:34;51153:458;;51128:483;50940:689;;;:::o;45734:2454::-;45807:20;45830:13;;45807:36;;45870:1;45858:8;:13;45854:44;;;45880:18;;;;;;;;;;;;;;45854:44;45911:61;45941:1;45945:2;45949:12;45963:8;45911:21;:61::i;:::-;46455:1;19419:2;46425:1;:26;;46424:32;46412:8;:45;46386:18;:22;46405:2;46386:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;46734:139;46771:2;46825:33;46848:1;46852:2;46856:1;46825:14;:33::i;:::-;46792:30;46813:8;46792:20;:30::i;:::-;:66;46734:18;:139::i;:::-;46700:17;:31;46718:12;46700:31;;;;;;;;;;;:173;;;;46890:16;46921:11;46950:8;46935:12;:23;46921:37;;47205:16;47201:2;47197:25;47185:37;;47577:12;47537:8;47496:1;47434:25;47375:1;47314;47287:335;47702:1;47688:12;47684:20;47642:346;47743:3;47734:7;47731:16;47642:346;;47961:7;47951:8;47948:1;47921:25;47918:1;47915;47910:59;47796:1;47787:7;47783:15;47772:26;;47642:346;;;47646:77;48033:1;48021:8;:13;48017:45;;;48043:19;;;;;;;;;;;;;;48017:45;48095:3;48079:13;:19;;;;46160:1950;;48120:60;48149:1;48153:2;48157:12;48171:8;48120:20;:60::i;:::-;45796:2392;45734:2454;;:::o;33110:324::-;33180:14;33413:1;33403:8;33400:15;33374:24;33370:46;33360:56;;33110:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:553::-;1844:8;1854:6;1904:3;1897:4;1889:6;1885:17;1881:27;1871:122;;1912:79;;:::i;:::-;1871:122;2025:6;2012:20;2002:30;;2055:18;2047:6;2044:30;2041:117;;;2077:79;;:::i;:::-;2041:117;2191:4;2183:6;2179:17;2167:29;;2245:3;2237:4;2229:6;2225:17;2215:8;2211:32;2208:41;2205:128;;;2252:79;;:::i;:::-;2205:128;1786:553;;;;;:::o;2359:340::-;2415:5;2464:3;2457:4;2449:6;2445:17;2441:27;2431:122;;2472:79;;:::i;:::-;2431:122;2589:6;2576:20;2614:79;2689:3;2681:6;2674:4;2666:6;2662:17;2614:79;:::i;:::-;2605:88;;2421:278;2359:340;;;;:::o;2705:139::-;2751:5;2789:6;2776:20;2767:29;;2805:33;2832:5;2805:33;:::i;:::-;2705:139;;;;:::o;2850:329::-;2909:6;2958:2;2946:9;2937:7;2933:23;2929:32;2926:119;;;2964:79;;:::i;:::-;2926:119;3084:1;3109:53;3154:7;3145:6;3134:9;3130:22;3109:53;:::i;:::-;3099:63;;3055:117;2850:329;;;;:::o;3185:474::-;3253:6;3261;3310:2;3298:9;3289:7;3285:23;3281:32;3278:119;;;3316:79;;:::i;:::-;3278:119;3436:1;3461:53;3506:7;3497:6;3486:9;3482:22;3461:53;:::i;:::-;3451:63;;3407:117;3563:2;3589:53;3634:7;3625:6;3614:9;3610:22;3589:53;:::i;:::-;3579:63;;3534:118;3185:474;;;;;:::o;3665:619::-;3742:6;3750;3758;3807:2;3795:9;3786:7;3782:23;3778:32;3775:119;;;3813:79;;:::i;:::-;3775:119;3933:1;3958:53;4003:7;3994:6;3983:9;3979:22;3958:53;:::i;:::-;3948:63;;3904:117;4060:2;4086:53;4131:7;4122:6;4111:9;4107:22;4086:53;:::i;:::-;4076:63;;4031:118;4188:2;4214:53;4259:7;4250:6;4239:9;4235:22;4214:53;:::i;:::-;4204:63;;4159:118;3665:619;;;;;:::o;4290:943::-;4385:6;4393;4401;4409;4458:3;4446:9;4437:7;4433:23;4429:33;4426:120;;;4465:79;;:::i;:::-;4426:120;4585:1;4610:53;4655:7;4646:6;4635:9;4631:22;4610:53;:::i;:::-;4600:63;;4556:117;4712:2;4738:53;4783:7;4774:6;4763:9;4759:22;4738:53;:::i;:::-;4728:63;;4683:118;4840:2;4866:53;4911:7;4902:6;4891:9;4887:22;4866:53;:::i;:::-;4856:63;;4811:118;4996:2;4985:9;4981:18;4968:32;5027:18;5019:6;5016:30;5013:117;;;5049:79;;:::i;:::-;5013:117;5154:62;5208:7;5199:6;5188:9;5184:22;5154:62;:::i;:::-;5144:72;;4939:287;4290:943;;;;;;;:::o;5239:468::-;5304:6;5312;5361:2;5349:9;5340:7;5336:23;5332:32;5329:119;;;5367:79;;:::i;:::-;5329:119;5487:1;5512:53;5557:7;5548:6;5537:9;5533:22;5512:53;:::i;:::-;5502:63;;5458:117;5614:2;5640:50;5682:7;5673:6;5662:9;5658:22;5640:50;:::i;:::-;5630:60;;5585:115;5239:468;;;;;:::o;5713:474::-;5781:6;5789;5838:2;5826:9;5817:7;5813:23;5809:32;5806:119;;;5844:79;;:::i;:::-;5806:119;5964:1;5989:53;6034:7;6025:6;6014:9;6010:22;5989:53;:::i;:::-;5979:63;;5935:117;6091:2;6117:53;6162:7;6153:6;6142:9;6138:22;6117:53;:::i;:::-;6107:63;;6062:118;5713:474;;;;;:::o;6193:323::-;6249:6;6298:2;6286:9;6277:7;6273:23;6269:32;6266:119;;;6304:79;;:::i;:::-;6266:119;6424:1;6449:50;6491:7;6482:6;6471:9;6467:22;6449:50;:::i;:::-;6439:60;;6395:114;6193:323;;;;:::o;6522:327::-;6580:6;6629:2;6617:9;6608:7;6604:23;6600:32;6597:119;;;6635:79;;:::i;:::-;6597:119;6755:1;6780:52;6824:7;6815:6;6804:9;6800:22;6780:52;:::i;:::-;6770:62;;6726:116;6522:327;;;;:::o;6855:349::-;6924:6;6973:2;6961:9;6952:7;6948:23;6944:32;6941:119;;;6979:79;;:::i;:::-;6941:119;7099:1;7124:63;7179:7;7170:6;7159:9;7155:22;7124:63;:::i;:::-;7114:73;;7070:127;6855:349;;;;:::o;7210:529::-;7281:6;7289;7338:2;7326:9;7317:7;7313:23;7309:32;7306:119;;;7344:79;;:::i;:::-;7306:119;7492:1;7481:9;7477:17;7464:31;7522:18;7514:6;7511:30;7508:117;;;7544:79;;:::i;:::-;7508:117;7657:65;7714:7;7705:6;7694:9;7690:22;7657:65;:::i;:::-;7639:83;;;;7435:297;7210:529;;;;;:::o;7745:509::-;7814:6;7863:2;7851:9;7842:7;7838:23;7834:32;7831:119;;;7869:79;;:::i;:::-;7831:119;8017:1;8006:9;8002:17;7989:31;8047:18;8039:6;8036:30;8033:117;;;8069:79;;:::i;:::-;8033:117;8174:63;8229:7;8220:6;8209:9;8205:22;8174:63;:::i;:::-;8164:73;;7960:287;7745:509;;;;:::o;8260:329::-;8319:6;8368:2;8356:9;8347:7;8343:23;8339:32;8336:119;;;8374:79;;:::i;:::-;8336:119;8494:1;8519:53;8564:7;8555:6;8544:9;8540:22;8519:53;:::i;:::-;8509:63;;8465:117;8260:329;;;;:::o;8595:474::-;8663:6;8671;8720:2;8708:9;8699:7;8695:23;8691:32;8688:119;;;8726:79;;:::i;:::-;8688:119;8846:1;8871:53;8916:7;8907:6;8896:9;8892:22;8871:53;:::i;:::-;8861:63;;8817:117;8973:2;8999:53;9044:7;9035:6;9024:9;9020:22;8999:53;:::i;:::-;8989:63;;8944:118;8595:474;;;;;:::o;9075:118::-;9162:24;9180:5;9162:24;:::i;:::-;9157:3;9150:37;9075:118;;:::o;9199:109::-;9280:21;9295:5;9280:21;:::i;:::-;9275:3;9268:34;9199:109;;:::o;9314:360::-;9400:3;9428:38;9460:5;9428:38;:::i;:::-;9482:70;9545:6;9540:3;9482:70;:::i;:::-;9475:77;;9561:52;9606:6;9601:3;9594:4;9587:5;9583:16;9561:52;:::i;:::-;9638:29;9660:6;9638:29;:::i;:::-;9633:3;9629:39;9622:46;;9404:270;9314:360;;;;:::o;9680:364::-;9768:3;9796:39;9829:5;9796:39;:::i;:::-;9851:71;9915:6;9910:3;9851:71;:::i;:::-;9844:78;;9931:52;9976:6;9971:3;9964:4;9957:5;9953:16;9931:52;:::i;:::-;10008:29;10030:6;10008:29;:::i;:::-;10003:3;9999:39;9992:46;;9772:272;9680:364;;;;:::o;10050:377::-;10156:3;10184:39;10217:5;10184:39;:::i;:::-;10239:89;10321:6;10316:3;10239:89;:::i;:::-;10232:96;;10337:52;10382:6;10377:3;10370:4;10363:5;10359:16;10337:52;:::i;:::-;10414:6;10409:3;10405:16;10398:23;;10160:267;10050:377;;;;:::o;10433:366::-;10575:3;10596:67;10660:2;10655:3;10596:67;:::i;:::-;10589:74;;10672:93;10761:3;10672:93;:::i;:::-;10790:2;10785:3;10781:12;10774:19;;10433:366;;;:::o;10805:::-;10947:3;10968:67;11032:2;11027:3;10968:67;:::i;:::-;10961:74;;11044:93;11133:3;11044:93;:::i;:::-;11162:2;11157:3;11153:12;11146:19;;10805:366;;;:::o;11177:400::-;11337:3;11358:84;11440:1;11435:3;11358:84;:::i;:::-;11351:91;;11451:93;11540:3;11451:93;:::i;:::-;11569:1;11564:3;11560:11;11553:18;;11177:400;;;:::o;11583:366::-;11725:3;11746:67;11810:2;11805:3;11746:67;:::i;:::-;11739:74;;11822:93;11911:3;11822:93;:::i;:::-;11940:2;11935:3;11931:12;11924:19;;11583:366;;;:::o;11955:::-;12097:3;12118:67;12182:2;12177:3;12118:67;:::i;:::-;12111:74;;12194:93;12283:3;12194:93;:::i;:::-;12312:2;12307:3;12303:12;12296:19;;11955:366;;;:::o;12327:398::-;12486:3;12507:83;12588:1;12583:3;12507:83;:::i;:::-;12500:90;;12599:93;12688:3;12599:93;:::i;:::-;12717:1;12712:3;12708:11;12701:18;;12327:398;;;:::o;12731:366::-;12873:3;12894:67;12958:2;12953:3;12894:67;:::i;:::-;12887:74;;12970:93;13059:3;12970:93;:::i;:::-;13088:2;13083:3;13079:12;13072:19;;12731:366;;;:::o;13103:::-;13245:3;13266:67;13330:2;13325:3;13266:67;:::i;:::-;13259:74;;13342:93;13431:3;13342:93;:::i;:::-;13460:2;13455:3;13451:12;13444:19;;13103:366;;;:::o;13475:::-;13617:3;13638:67;13702:2;13697:3;13638:67;:::i;:::-;13631:74;;13714:93;13803:3;13714:93;:::i;:::-;13832:2;13827:3;13823:12;13816:19;;13475:366;;;:::o;13847:118::-;13934:24;13952:5;13934:24;:::i;:::-;13929:3;13922:37;13847:118;;:::o;13971:701::-;14252:3;14274:95;14365:3;14356:6;14274:95;:::i;:::-;14267:102;;14386:95;14477:3;14468:6;14386:95;:::i;:::-;14379:102;;14498:148;14642:3;14498:148;:::i;:::-;14491:155;;14663:3;14656:10;;13971:701;;;;;:::o;14678:379::-;14862:3;14884:147;15027:3;14884:147;:::i;:::-;14877:154;;15048:3;15041:10;;14678:379;;;:::o;15063:222::-;15156:4;15194:2;15183:9;15179:18;15171:26;;15207:71;15275:1;15264:9;15260:17;15251:6;15207:71;:::i;:::-;15063:222;;;;:::o;15291:640::-;15486:4;15524:3;15513:9;15509:19;15501:27;;15538:71;15606:1;15595:9;15591:17;15582:6;15538:71;:::i;:::-;15619:72;15687:2;15676:9;15672:18;15663:6;15619:72;:::i;:::-;15701;15769:2;15758:9;15754:18;15745:6;15701:72;:::i;:::-;15820:9;15814:4;15810:20;15805:2;15794:9;15790:18;15783:48;15848:76;15919:4;15910:6;15848:76;:::i;:::-;15840:84;;15291:640;;;;;;;:::o;15937:210::-;16024:4;16062:2;16051:9;16047:18;16039:26;;16075:65;16137:1;16126:9;16122:17;16113:6;16075:65;:::i;:::-;15937:210;;;;:::o;16153:313::-;16266:4;16304:2;16293:9;16289:18;16281:26;;16353:9;16347:4;16343:20;16339:1;16328:9;16324:17;16317:47;16381:78;16454:4;16445:6;16381:78;:::i;:::-;16373:86;;16153:313;;;;:::o;16472:419::-;16638:4;16676:2;16665:9;16661:18;16653:26;;16725:9;16719:4;16715:20;16711:1;16700:9;16696:17;16689:47;16753:131;16879:4;16753:131;:::i;:::-;16745:139;;16472:419;;;:::o;16897:::-;17063:4;17101:2;17090:9;17086:18;17078:26;;17150:9;17144:4;17140:20;17136:1;17125:9;17121:17;17114:47;17178:131;17304:4;17178:131;:::i;:::-;17170:139;;16897:419;;;:::o;17322:::-;17488:4;17526:2;17515:9;17511:18;17503:26;;17575:9;17569:4;17565:20;17561:1;17550:9;17546:17;17539:47;17603:131;17729:4;17603:131;:::i;:::-;17595:139;;17322:419;;;:::o;17747:::-;17913:4;17951:2;17940:9;17936:18;17928:26;;18000:9;17994:4;17990:20;17986:1;17975:9;17971:17;17964:47;18028:131;18154:4;18028:131;:::i;:::-;18020:139;;17747:419;;;:::o;18172:::-;18338:4;18376:2;18365:9;18361:18;18353:26;;18425:9;18419:4;18415:20;18411:1;18400:9;18396:17;18389:47;18453:131;18579:4;18453:131;:::i;:::-;18445:139;;18172:419;;;:::o;18597:::-;18763:4;18801:2;18790:9;18786:18;18778:26;;18850:9;18844:4;18840:20;18836:1;18825:9;18821:17;18814:47;18878:131;19004:4;18878:131;:::i;:::-;18870:139;;18597:419;;;:::o;19022:::-;19188:4;19226:2;19215:9;19211:18;19203:26;;19275:9;19269:4;19265:20;19261:1;19250:9;19246:17;19239:47;19303:131;19429:4;19303:131;:::i;:::-;19295:139;;19022:419;;;:::o;19447:222::-;19540:4;19578:2;19567:9;19563:18;19555:26;;19591:71;19659:1;19648:9;19644:17;19635:6;19591:71;:::i;:::-;19447:222;;;;:::o;19675:129::-;19709:6;19736:20;;:::i;:::-;19726:30;;19765:33;19793:4;19785:6;19765:33;:::i;:::-;19675:129;;;:::o;19810:75::-;19843:6;19876:2;19870:9;19860:19;;19810:75;:::o;19891:307::-;19952:4;20042:18;20034:6;20031:30;20028:56;;;20064:18;;:::i;:::-;20028:56;20102:29;20124:6;20102:29;:::i;:::-;20094:37;;20186:4;20180;20176:15;20168:23;;19891:307;;;:::o;20204:308::-;20266:4;20356:18;20348:6;20345:30;20342:56;;;20378:18;;:::i;:::-;20342:56;20416:29;20438:6;20416:29;:::i;:::-;20408:37;;20500:4;20494;20490:15;20482:23;;20204:308;;;:::o;20518:98::-;20569:6;20603:5;20597:12;20587:22;;20518:98;;;:::o;20622:99::-;20674:6;20708:5;20702:12;20692:22;;20622:99;;;:::o;20727:168::-;20810:11;20844:6;20839:3;20832:19;20884:4;20879:3;20875:14;20860:29;;20727:168;;;;:::o;20901:147::-;21002:11;21039:3;21024:18;;20901:147;;;;:::o;21054:169::-;21138:11;21172:6;21167:3;21160:19;21212:4;21207:3;21203:14;21188:29;;21054:169;;;;:::o;21229:148::-;21331:11;21368:3;21353:18;;21229:148;;;;:::o;21383:305::-;21423:3;21442:20;21460:1;21442:20;:::i;:::-;21437:25;;21476:20;21494:1;21476:20;:::i;:::-;21471:25;;21630:1;21562:66;21558:74;21555:1;21552:81;21549:107;;;21636:18;;:::i;:::-;21549:107;21680:1;21677;21673:9;21666:16;;21383:305;;;;:::o;21694:185::-;21734:1;21751:20;21769:1;21751:20;:::i;:::-;21746:25;;21785:20;21803:1;21785:20;:::i;:::-;21780:25;;21824:1;21814:35;;21829:18;;:::i;:::-;21814:35;21871:1;21868;21864:9;21859:14;;21694:185;;;;:::o;21885:348::-;21925:7;21948:20;21966:1;21948:20;:::i;:::-;21943:25;;21982:20;22000:1;21982:20;:::i;:::-;21977:25;;22170:1;22102:66;22098:74;22095:1;22092:81;22087:1;22080:9;22073:17;22069:105;22066:131;;;22177:18;;:::i;:::-;22066:131;22225:1;22222;22218:9;22207:20;;21885:348;;;;:::o;22239:191::-;22279:4;22299:20;22317:1;22299:20;:::i;:::-;22294:25;;22333:20;22351:1;22333:20;:::i;:::-;22328:25;;22372:1;22369;22366:8;22363:34;;;22377:18;;:::i;:::-;22363:34;22422:1;22419;22415:9;22407:17;;22239:191;;;;:::o;22436:96::-;22473:7;22502:24;22520:5;22502:24;:::i;:::-;22491:35;;22436:96;;;:::o;22538:90::-;22572:7;22615:5;22608:13;22601:21;22590:32;;22538:90;;;:::o;22634:149::-;22670:7;22710:66;22703:5;22699:78;22688:89;;22634:149;;;:::o;22789:126::-;22826:7;22866:42;22859:5;22855:54;22844:65;;22789:126;;;:::o;22921:77::-;22958:7;22987:5;22976:16;;22921:77;;;:::o;23004:154::-;23088:6;23083:3;23078;23065:30;23150:1;23141:6;23136:3;23132:16;23125:27;23004:154;;;:::o;23164:307::-;23232:1;23242:113;23256:6;23253:1;23250:13;23242:113;;;23341:1;23336:3;23332:11;23326:18;23322:1;23317:3;23313:11;23306:39;23278:2;23275:1;23271:10;23266:15;;23242:113;;;23373:6;23370:1;23367:13;23364:101;;;23453:1;23444:6;23439:3;23435:16;23428:27;23364:101;23213:258;23164:307;;;:::o;23477:320::-;23521:6;23558:1;23552:4;23548:12;23538:22;;23605:1;23599:4;23595:12;23626:18;23616:81;;23682:4;23674:6;23670:17;23660:27;;23616:81;23744:2;23736:6;23733:14;23713:18;23710:38;23707:84;;;23763:18;;:::i;:::-;23707:84;23528:269;23477:320;;;:::o;23803:281::-;23886:27;23908:4;23886:27;:::i;:::-;23878:6;23874:40;24016:6;24004:10;24001:22;23980:18;23968:10;23965:34;23962:62;23959:88;;;24027:18;;:::i;:::-;23959:88;24067:10;24063:2;24056:22;23846:238;23803:281;;:::o;24090:233::-;24129:3;24152:24;24170:5;24152:24;:::i;:::-;24143:33;;24198:66;24191:5;24188:77;24185:103;;;24268:18;;:::i;:::-;24185:103;24315:1;24308:5;24304:13;24297:20;;24090:233;;;:::o;24329:176::-;24361:1;24378:20;24396:1;24378:20;:::i;:::-;24373:25;;24412:20;24430:1;24412:20;:::i;:::-;24407:25;;24451:1;24441:35;;24456:18;;:::i;:::-;24441:35;24497:1;24494;24490:9;24485:14;;24329:176;;;;:::o;24511:180::-;24559:77;24556:1;24549:88;24656:4;24653:1;24646:15;24680:4;24677:1;24670:15;24697:180;24745:77;24742:1;24735:88;24842:4;24839:1;24832:15;24866:4;24863:1;24856:15;24883:180;24931:77;24928:1;24921:88;25028:4;25025:1;25018:15;25052:4;25049:1;25042:15;25069:180;25117:77;25114:1;25107:88;25214:4;25211:1;25204:15;25238:4;25235:1;25228:15;25255:180;25303:77;25300:1;25293:88;25400:4;25397:1;25390:15;25424:4;25421:1;25414:15;25441:117;25550:1;25547;25540:12;25564:117;25673:1;25670;25663:12;25687:117;25796:1;25793;25786:12;25810:117;25919:1;25916;25909:12;25933:117;26042:1;26039;26032:12;26056:117;26165:1;26162;26155:12;26179:102;26220:6;26271:2;26267:7;26262:2;26255:5;26251:14;26247:28;26237:38;;26179:102;;;:::o;26287:225::-;26427:34;26423:1;26415:6;26411:14;26404:58;26496:8;26491:2;26483:6;26479:15;26472:33;26287:225;:::o;26518:178::-;26658:30;26654:1;26646:6;26642:14;26635:54;26518:178;:::o;26702:155::-;26842:7;26838:1;26830:6;26826:14;26819:31;26702:155;:::o;26863:182::-;27003:34;26999:1;26991:6;26987:14;26980:58;26863:182;:::o;27051:173::-;27191:25;27187:1;27179:6;27175:14;27168:49;27051:173;:::o;27230:114::-;;:::o;27350:170::-;27490:22;27486:1;27478:6;27474:14;27467:46;27350:170;:::o;27526:181::-;27666:33;27662:1;27654:6;27650:14;27643:57;27526:181;:::o;27713:169::-;27853:21;27849:1;27841:6;27837:14;27830:45;27713:169;:::o;27888:122::-;27961:24;27979:5;27961:24;:::i;:::-;27954:5;27951:35;27941:63;;28000:1;27997;27990:12;27941:63;27888:122;:::o;28016:116::-;28086:21;28101:5;28086:21;:::i;:::-;28079:5;28076:32;28066:60;;28122:1;28119;28112:12;28066:60;28016:116;:::o;28138:120::-;28210:23;28227:5;28210:23;:::i;:::-;28203:5;28200:34;28190:62;;28248:1;28245;28238:12;28190:62;28138:120;:::o;28264:122::-;28337:24;28355:5;28337:24;:::i;:::-;28330:5;28327:35;28317:63;;28376:1;28373;28366:12;28317:63;28264:122;:::o

Swarm Source

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