ETH Price: $2,406.82 (-4.08%)
Gas: 2.39 Gwei

Token

xPudgys (xPudgys)
 

Overview

Max Total Supply

3,333 xPudgys

Holders

252

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
20 xPudgys
0x96484cD79E899Cc45588A5d4e33Dc9C8B51539Ad
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:
xPudgys

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-01-18
*/

//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&&&&&@@@@&@@@@@&&&&&&&@@@@@&@@@@&@@@
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&***@@@@@&&@@@@&&@&@@@@&&&&&&@@@&&&&@@@@&@@
//@@@@@@@@@@@@@@@@@@@@@@@@@#***/****(*********@%**&*&(@@@@@@@&&&&&&&@@@@@@@@@@&&@@
//@@@@@@@@@@@@@@@@@@/*//**************/***(**(%@@*****(***/@@@@@@@@@@@&@&@&&&&&&@@
//@@@@@@@@@@@@@@***(*****/****,../(,(*,********(*/******(*****#&@@@@@@@@@@@&&&&&@@
//@@@@@@@@@@@/******/***.                 ,***,,********       ((@@@&&@@@@@&&&&@@@
//@@@@@@@@@(******(**..              /         *****.             *@@@@@@@&&&&@@@@
//@@@@@@@@*********,                                         .      @@@@@&&&@@@@@@
//@@@@@@@(********.                                                 &&&&&&&&&&@@@@
//@@@@@@##********            *%(@@@@#(%@# #....  ,,*#/(@@@@@@@.@**.(%&&&&&&&&&&@@
//@@@@@@(********           /@@&@@@@@@@@@@@@@@@@@@@@@@@@@@@@&@..@@@@@@&&&&&&&&&&&@
//@@@@@@#********           /&@@@@@@@@%%@%@%@@@@@@@@@@@%%@%@%@@@@@@##@&&&&&&&&&&&&
//@@@@@@*********                .@@@@@%%@&%@@@@@@@@@@@&%@@@%@@..     @&&&&&&&&&&&
//@@@@@@&*********                **@@@@@@@@@@@/   .@@@@@@@@@@@&.     /@&&&&&&&&&&
//@@@@@@@#*********                           .    .           #       @&&&&&&&&&&
//@@@@@@@@%**********                  %@@@@@@@@@@@@@@@@@@@*,         *@@@@@@@@@@@
//@@@@@@@@@&**********              #@@@@@@@ #@( @ .*  @@@@@%         @@@@@@@@@@@@
//@@@@@@@@@@@***********             %@@@@@@@@@@/@@ @@@@@@@(         @@@@@@@@@@@@@
//@@@@@@@@@@@%************             #@@@@@@&@@(@@@@@@@@#%       *@@@@@@@@@@@@@@
//@@@@@@@@@@@@@*************           /#@@@@  @ %@@ @@@@@(.      **@@@@@@@@@@@@@@
//@@@@@@@@@@/********/*******          ,**(@@@@@@@@@(@@@@,.      *****@@@@@@@@@@@@
//@@@@@@@@********************,          .*%%#, *@/,  .           ,***#%@@@@@@@@@@
//@@@@@@&***********************          ,            /            &**@@@@@@@@@@@
//@@@@&**********(*****%*********                        ,            #*//&@@@@@@@
//@@@#*****************/(********,                       //            @***&@@@@@@
//@@&******************%(********,                  ./                  #(**/@@@@@
//@@#************/*****@*********                     ./,                (%**(@@@@
//@#**/************/***@*****/**                           .//            &#**@@@@
//#******/*************&%******                     //                     @**(@@@
//**********************@*****                           .////.            *@**@@@
//**********************/@***.                               /              @**@@@
//%**********************@#**                                /              @/*@@@

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

// File: 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: @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/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/token/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

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



pragma solidity ^0.8.9;






enum ContractStatus {
        disable,
        open
    }

contract xPudgys is Ownable, ERC721A, ERC2981, ReentrancyGuard {

    ContractStatus public CONTRACT_STATUS = ContractStatus.disable;

    uint96 public immutable ROYALTY_FEE_NUMERATOR = 500;

    uint256 public immutable MAX_FREE_PER_WALLET = 1;
    uint256 public immutable MAX_TX_PER_WALLET = 20;
    uint256 public immutable PRICE = 0.001 ether;
    uint256 public immutable TOTAL_SUPPLY = 3333;
    string public uriSuffix = '.json';

    string internal baseURI = "";

    modifier isEthAvailable(uint256 quantity) {
        require(msg.value >= getSalePrice(msg.sender, quantity), "Insufficient funds");
        _;
    }

    modifier isMaxTxReached(uint256 quantity) {
        require(_numberMinted(msg.sender) + quantity <= MAX_TX_PER_WALLET, "Exceeded tx limit");
        _;
    }

    modifier isSupplyUnavailable(uint256 quantity) {
        require(totalSupply() + quantity <= TOTAL_SUPPLY, "Max supply reached");
        _;
    }

    modifier isUser() {
        require(tx.origin == msg.sender, "Invalid User");
        _;
    }

    constructor() ERC721A("xPudgys", "xPudgys") {
        _setDefaultRoyalty(owner(), ROYALTY_FEE_NUMERATOR);
    }

    function getTotalSupplyLeft() public view returns (uint256) {
        return TOTAL_SUPPLY - totalSupply();
    }

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

    function internalMint(address buyerAddress, uint256 quantity)
        external
        onlyOwner
        nonReentrant
        isUser
        isSupplyUnavailable(quantity)
    {
        _mint(buyerAddress, quantity);
    }

    function publicMint(uint256 quantity)
        public
        payable
        virtual
        nonReentrant
        isUser
        isSupplyUnavailable(quantity)
        isMaxTxReached(quantity)
        isEthAvailable(quantity)
    {
        require(
            CONTRACT_STATUS == ContractStatus.open,
            "Not in whitelist mint stage"
        );

        _mint(msg.sender, quantity);
    }

    function getTotalMinted(address addr)
        public
        view
        returns (uint256)
    {
        return _numberMinted(addr);
    }

    function setBaseURI(string memory newURI) external virtual onlyOwner {
        baseURI = newURI;
    }

    function setStatus(ContractStatus status) external onlyOwner {
        CONTRACT_STATUS = status;
    }

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

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

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

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721A, ERC2981)
        returns (bool)
    {
        return
            ERC721A.supportsInterface(interfaceId) ||
            ERC2981.supportsInterface(interfaceId) ||
            super.supportsInterface(interfaceId);
    }

    function getSalePrice(address sender, uint256 quantity)
        private
        view
        returns (uint256)
    {
        bool isAlreadyMinted = _numberMinted(sender) > 0;

        return
            isAlreadyMinted
                ? PRICE * (quantity)
                : PRICE * (quantity - MAX_FREE_PER_WALLET);
    }

    function withdraw(uint256 balance)external onlyOwner nonReentrant isUser {
        (bool success, ) = msg.sender.call{value: balance}("");

        require(success, "Transfer failed.");
    }

    function withdrawAll() external onlyOwner nonReentrant isUser {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");

        require(success, "Transfer failed.");
    }
}

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":"CONTRACT_STATUS","outputs":[{"internalType":"enum ContractStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALTY_FEE_NUMERATOR","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getTotalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupplyLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"buyerAddress","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"internalMint","outputs":[],"stateMutability":"nonpayable","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum ContractStatus","name":"status","type":"uint8"}],"name":"setStatus","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":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101206040525f600c5f6101000a81548160ff021916908360018111156200002c576200002b62000489565b5b02179055506101f46bffffffffffffffffffffffff166080906bffffffffffffffffffffffff16815250600160a090815250601460c09081525066038d7ea4c6800060e090815250610d05610100908152506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d9081620000c491906200071a565b5060405180602001604052805f815250600e9081620000e491906200071a565b50348015620000f1575f80fd5b506040518060400160405280600781526020017f78507564677973000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f78507564677973000000000000000000000000000000000000000000000000008152506200017e62000172620001eb60201b60201c565b620001f260201b60201c565b81600390816200018f91906200071a565b508060049081620001a191906200071a565b50620001b2620002b360201b60201c565b60018190555050506001600b81905550620001e5620001d6620002bb60201b60201c565b608051620002e260201b60201c565b62000910565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6001905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620002f26200048060201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111562000353576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034a9062000882565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003c4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003bb90620008f0565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff1681525060095f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151815f0160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b5f612710905090565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200053257607f821691505b602082108103620005485762000547620004ed565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620005ac7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200056f565b620005b886836200056f565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000602620005fc620005f684620005d0565b620005d9565b620005d0565b9050919050565b5f819050919050565b6200061d83620005e2565b620006356200062c8262000609565b8484546200057b565b825550505050565b5f90565b6200064b6200063d565b6200065881848462000612565b505050565b5b818110156200067f57620006735f8262000641565b6001810190506200065e565b5050565b601f821115620006ce5762000698816200054e565b620006a38462000560565b81016020851015620006b3578190505b620006cb620006c28562000560565b8301826200065d565b50505b505050565b5f82821c905092915050565b5f620006f05f1984600802620006d3565b1980831691505092915050565b5f6200070a8383620006df565b9150826002028217905092915050565b6200072582620004b6565b67ffffffffffffffff811115620007415762000740620004c0565b5b6200074d82546200051a565b6200075a82828562000683565b5f60209050601f83116001811462000790575f84156200077b578287015190505b620007878582620006fd565b865550620007f6565b601f198416620007a0866200054e565b5f5b82811015620007c957848901518255600182019150602085019450602081019050620007a2565b86831015620007e95784890151620007e5601f891682620006df565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c206578636565645f8201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b5f6200086a602a83620007fe565b915062000877826200080e565b604082019050919050565b5f6020820190508181035f8301526200089b816200085c565b9050919050565b7f455243323938313a20696e76616c6964207265636569766572000000000000005f82015250565b5f620008d8601983620007fe565b9150620008e582620008a2565b602082019050919050565b5f6020820190508181035f8301526200090981620008ca565b9050919050565b60805160a05160c05160e05161010051613acd6200097f5f395f8181610fdb0152818161140f0152818161181f0152611bd201525f81816117d4015281816120aa01526120db01525f818161105101526118d301525f81816118f7015261207e01525f6115460152613acd5ff3fe6080604052600436106101ed575f3560e01c806370a082311161010c57806398710d1e1161009f578063bf7b779c1161006e578063bf7b779c146106ae578063c87b56dd146106d8578063defcbacb14610714578063e985e9c51461073e578063f2fde38b1461077a576101ed565b806398710d1e146105f85780639a9c1bb114610622578063a22cb4651461065e578063b88d4fde14610686576101ed565b80638da5cb5b116100db5780638da5cb5b14610550578063902d55a51461057a57806395d89b41146105a4578063975e840e146105ce576101ed565b806370a08231146104be578063715018a6146104fa578063853828b6146105105780638d859f3e14610526576101ed565b80632e1a7d4d116101845780635503a0e8116101535780635503a0e81461040657806355850fe61461043057806355f804b31461045a5780636352211e14610482576101ed565b80632e1a7d4d146103665780632e49d78b1461038e57806335001a1a146103b657806342842e0e146103de576101ed565b806318160ddd116101c057806318160ddd146102bb57806323b872dd146102e55780632a55205a1461030d5780632db115441461034a576101ed565b806301ffc9a7146101f157806306fdde031461022d578063081812fc14610257578063095ea7b314610293575b5f80fd5b3480156101fc575f80fd5b5061021760048036038101906102129190612819565b6107a2565b604051610224919061285e565b60405180910390f35b348015610238575f80fd5b506102416107d3565b60405161024e9190612901565b60405180910390f35b348015610262575f80fd5b5061027d60048036038101906102789190612954565b610863565b60405161028a91906129be565b60405180910390f35b34801561029e575f80fd5b506102b960048036038101906102b49190612a01565b6108dd565b005b3480156102c6575f80fd5b506102cf610a1c565b6040516102dc9190612a4e565b60405180910390f35b3480156102f0575f80fd5b5061030b60048036038101906103069190612a67565b610a32565b005b348015610318575f80fd5b50610333600480360381019061032e9190612ab7565b610d41565b604051610341929190612af5565b60405180910390f35b610364600480360381019061035f9190612954565b610f1d565b005b348015610371575f80fd5b5061038c60048036038101906103879190612954565b61119e565b005b348015610399575f80fd5b506103b460048036038101906103af9190612b3f565b611315565b005b3480156103c1575f80fd5b506103dc60048036038101906103d79190612a01565b611349565b005b3480156103e9575f80fd5b5061040460048036038101906103ff9190612a67565b611499565b005b348015610411575f80fd5b5061041a6114b8565b6040516104279190612901565b60405180910390f35b34801561043b575f80fd5b50610444611544565b6040516104519190612b90565b60405180910390f35b348015610465575f80fd5b50610480600480360381019061047b9190612cd5565b611568565b005b34801561048d575f80fd5b506104a860048036038101906104a39190612954565b611583565b6040516104b591906129be565b60405180910390f35b3480156104c9575f80fd5b506104e460048036038101906104df9190612d1c565b611594565b6040516104f19190612a4e565b60405180910390f35b348015610505575f80fd5b5061050e611649565b005b34801561051b575f80fd5b5061052461165c565b005b348015610531575f80fd5b5061053a6117d2565b6040516105479190612a4e565b60405180910390f35b34801561055b575f80fd5b506105646117f6565b60405161057191906129be565b60405180910390f35b348015610585575f80fd5b5061058e61181d565b60405161059b9190612a4e565b60405180910390f35b3480156105af575f80fd5b506105b8611841565b6040516105c59190612901565b60405180910390f35b3480156105d9575f80fd5b506105e26118d1565b6040516105ef9190612a4e565b60405180910390f35b348015610603575f80fd5b5061060c6118f5565b6040516106199190612a4e565b60405180910390f35b34801561062d575f80fd5b5061064860048036038101906106439190612d1c565b611919565b6040516106559190612a4e565b60405180910390f35b348015610669575f80fd5b50610684600480360381019061067f9190612d71565b61192a565b005b348015610691575f80fd5b506106ac60048036038101906106a79190612e4d565b611a9c565b005b3480156106b9575f80fd5b506106c2611b0e565b6040516106cf9190612f40565b60405180910390f35b3480156106e3575f80fd5b506106fe60048036038101906106f99190612954565b611b20565b60405161070b9190612901565b60405180910390f35b34801561071f575f80fd5b50610728611bc7565b6040516107359190612a4e565b60405180910390f35b348015610749575f80fd5b50610764600480360381019061075f9190612f59565b611c00565b604051610771919061285e565b60405180910390f35b348015610785575f80fd5b506107a0600480360381019061079b9190612d1c565b611c8e565b005b5f6107ac82611d10565b806107bc57506107bb82611da1565b5b806107cc57506107cb82611da1565b5b9050919050565b6060600380546107e290612fc4565b80601f016020809104026020016040519081016040528092919081815260200182805461080e90612fc4565b80156108595780601f1061083057610100808354040283529160200191610859565b820191905f5260205f20905b81548152906001019060200180831161083c57829003601f168201915b5050505050905090565b5f61086d82611e1a565b6108a3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60075f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f6108e782611583565b90508073ffffffffffffffffffffffffffffffffffffffff16610908611e75565b73ffffffffffffffffffffffffffffffffffffffff161461096b576109348161092f611e75565b611c00565b61096a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260075f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f610a25611e7c565b6002546001540303905090565b5f610a3c82611e84565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610aa3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610aae84611f48565b91509150610ac48187610abf611e75565b611f6b565b610b1057610ad986610ad4611e75565b611c00565b610b0f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b75576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b828686866001611fae565b8015610b8c575f82555b60065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610c5485610c30888887611fb4565b7c020000000000000000000000000000000000000000000000000000000017611fdb565b60055f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610cd1575f6001850190505f60055f8381526020019081526020015f205403610ccf576001548114610cce578360055f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d398686866001612005565b505050505050565b5f805f600a5f8681526020019081526020015f206040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1603610eca5760096040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b5f610ed361200b565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610eff9190613021565b610f09919061308f565b9050815f0151819350935050509250929050565b6002600b5403610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5990613109565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcf90613171565b60405180910390fd5b807f000000000000000000000000000000000000000000000000000000000000000081611003610a1c565b61100d919061318f565b111561104e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110459061320c565b60405180910390fd5b817f00000000000000000000000000000000000000000000000000000000000000008161107a33612014565b611084919061318f565b11156110c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bc90613274565b60405180910390fd5b826110d03382612068565b341015611112576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611109906132dc565b60405180910390fd5b60018081111561112557611124612ecd565b5b600c5f9054906101000a900460ff16600181111561114657611145612ecd565b5b14611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d90613344565b60405180910390fd5b611190338561210e565b5050506001600b8190555050565b6111a66122b9565b6002600b54036111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e290613109565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890613171565b60405180910390fd5b5f3373ffffffffffffffffffffffffffffffffffffffff16826040516112869061338f565b5f6040518083038185875af1925050503d805f81146112c0576040519150601f19603f3d011682016040523d82523d5f602084013e6112c5565b606091505b5050905080611309576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611300906133ed565b60405180910390fd5b506001600b8190555050565b61131d6122b9565b80600c5f6101000a81548160ff0219169083600181111561134157611340612ecd565b5b021790555050565b6113516122b9565b6002600b5403611396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138d90613109565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461140c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140390613171565b60405180910390fd5b807f000000000000000000000000000000000000000000000000000000000000000081611437610a1c565b611441919061318f565b1115611482576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114799061320c565b60405180910390fd5b61148c838361210e565b506001600b819055505050565b6114b383838360405180602001604052805f815250611a9c565b505050565b600d80546114c590612fc4565b80601f01602080910402602001604051908101604052809291908181526020018280546114f190612fc4565b801561153c5780601f106115135761010080835404028352916020019161153c565b820191905f5260205f20905b81548152906001019060200180831161151f57829003601f168201915b505050505081565b7f000000000000000000000000000000000000000000000000000000000000000081565b6115706122b9565b80600e908161157f91906135a8565b5050565b5f61158d82611e84565b9050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115fa576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b6116516122b9565b61165a5f612337565b565b6116646122b9565b6002600b54036116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a090613109565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461171f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171690613171565b60405180910390fd5b5f3373ffffffffffffffffffffffffffffffffffffffff16476040516117449061338f565b5f6040518083038185875af1925050503d805f811461177e576040519150601f19603f3d011682016040523d82523d5f602084013e611783565b606091505b50509050806117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be906133ed565b60405180910390fd5b506001600b81905550565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b60606004805461185090612fc4565b80601f016020809104026020016040519081016040528092919081815260200182805461187c90612fc4565b80156118c75780601f1061189e576101008083540402835291602001916118c7565b820191905f5260205f20905b8154815290600101906020018083116118aa57829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f61192382612014565b9050919050565b611932611e75565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611996576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060085f6119a2611e75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a4b611e75565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a90919061285e565b60405180910390a35050565b611aa7848484610a32565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611b0857611ad1848484846123f8565b611b07576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5f9054906101000a900460ff1681565b6060611b2b82611e1a565b611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b61906136e7565b60405180910390fd5b5f611b73612543565b90505f815111611b915760405180602001604052805f815250611bbf565b80611b9b846125d3565b600d604051602001611baf939291906137bf565b6040516020818303038152906040525b915050919050565b5f611bd0610a1c565b7f0000000000000000000000000000000000000000000000000000000000000000611bfb91906137ef565b905090565b5f60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611c966122b9565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfb90613892565b60405180910390fd5b611d0d81612337565b50565b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d6a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d9a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b5f7f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e135750611e128261272c565b5b9050919050565b5f81611e24611e7c565b11158015611e33575060015482105b8015611e6e57505f7c010000000000000000000000000000000000000000000000000000000060055f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f8082905080611e92611e7c565b11611f1157600154811015611f10575f60055f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611f0e575b5f8103611f045760055f836001900393508381526020019081526020015f20549050611edd565b8092505050611f43565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60075f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e8611fca868684612795565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f612710905090565b5f67ffffffffffffffff604060065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b5f805f61207485612014565b119050806120d8577f0000000000000000000000000000000000000000000000000000000000000000836120a891906137ef565b7f00000000000000000000000000000000000000000000000000000000000000006120d39190613021565b612105565b827f00000000000000000000000000000000000000000000000000000000000000006121049190613021565b5b91505092915050565b5f60015490505f820361214d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121595f848385611fae565b600160406001901b17820260065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055506121cb836121bc5f865f611fb4565b6121c58561279d565b17611fdb565b60055f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146122655780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a460018101905061222c565b505f820361229f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506122b45f848385612005565b505050565b6122c16127ac565b73ffffffffffffffffffffffffffffffffffffffff166122df6117f6565b73ffffffffffffffffffffffffffffffffffffffff1614612335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232c906138fa565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261241d611e75565b8786866040518563ffffffff1660e01b815260040161243f949392919061396a565b6020604051808303815f875af192505050801561247a57506040513d601f19601f8201168201806040525081019061247791906139c8565b60015b6124f0573d805f81146124a8576040519150601f19603f3d011682016040523d82523d5f602084013e6124ad565b606091505b505f8151036124e8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e805461255290612fc4565b80601f016020809104026020016040519081016040528092919081815260200182805461257e90612fc4565b80156125c95780601f106125a0576101008083540402835291602001916125c9565b820191905f5260205f20905b8154815290600101906020018083116125ac57829003601f168201915b5050505050905090565b60605f8203612619576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612727565b5f8290505f5b5f8214612648578080612631906139f3565b915050600a82612641919061308f565b915061261f565b5f8167ffffffffffffffff81111561266357612662612bb1565b5b6040519080825280601f01601f1916602001820160405280156126955781602001600182028036833780820191505090505b5090505b5f8514612720576001826126ad91906137ef565b9150600a856126bc9190613a3a565b60306126c8919061318f565b60f81b8183815181106126de576126dd613a6a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a905350600a85612719919061308f565b9450612699565b8093505050505b919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f9392505050565b5f6001821460e11b9050919050565b5f33905090565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127f8816127c4565b8114612802575f80fd5b50565b5f81359050612813816127ef565b92915050565b5f6020828403121561282e5761282d6127bc565b5b5f61283b84828501612805565b91505092915050565b5f8115159050919050565b61285881612844565b82525050565b5f6020820190506128715f83018461284f565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156128ae578082015181840152602081019050612893565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6128d382612877565b6128dd8185612881565b93506128ed818560208601612891565b6128f6816128b9565b840191505092915050565b5f6020820190508181035f83015261291981846128c9565b905092915050565b5f819050919050565b61293381612921565b811461293d575f80fd5b50565b5f8135905061294e8161292a565b92915050565b5f60208284031215612969576129686127bc565b5b5f61297684828501612940565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6129a88261297f565b9050919050565b6129b88161299e565b82525050565b5f6020820190506129d15f8301846129af565b92915050565b6129e08161299e565b81146129ea575f80fd5b50565b5f813590506129fb816129d7565b92915050565b5f8060408385031215612a1757612a166127bc565b5b5f612a24858286016129ed565b9250506020612a3585828601612940565b9150509250929050565b612a4881612921565b82525050565b5f602082019050612a615f830184612a3f565b92915050565b5f805f60608486031215612a7e57612a7d6127bc565b5b5f612a8b868287016129ed565b9350506020612a9c868287016129ed565b9250506040612aad86828701612940565b9150509250925092565b5f8060408385031215612acd57612acc6127bc565b5b5f612ada85828601612940565b9250506020612aeb85828601612940565b9150509250929050565b5f604082019050612b085f8301856129af565b612b156020830184612a3f565b9392505050565b60028110612b28575f80fd5b50565b5f81359050612b3981612b1c565b92915050565b5f60208284031215612b5457612b536127bc565b5b5f612b6184828501612b2b565b91505092915050565b5f6bffffffffffffffffffffffff82169050919050565b612b8a81612b6a565b82525050565b5f602082019050612ba35f830184612b81565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612be7826128b9565b810181811067ffffffffffffffff82111715612c0657612c05612bb1565b5b80604052505050565b5f612c186127b3565b9050612c248282612bde565b919050565b5f67ffffffffffffffff821115612c4357612c42612bb1565b5b612c4c826128b9565b9050602081019050919050565b828183375f83830152505050565b5f612c79612c7484612c29565b612c0f565b905082815260208101848484011115612c9557612c94612bad565b5b612ca0848285612c59565b509392505050565b5f82601f830112612cbc57612cbb612ba9565b5b8135612ccc848260208601612c67565b91505092915050565b5f60208284031215612cea57612ce96127bc565b5b5f82013567ffffffffffffffff811115612d0757612d066127c0565b5b612d1384828501612ca8565b91505092915050565b5f60208284031215612d3157612d306127bc565b5b5f612d3e848285016129ed565b91505092915050565b612d5081612844565b8114612d5a575f80fd5b50565b5f81359050612d6b81612d47565b92915050565b5f8060408385031215612d8757612d866127bc565b5b5f612d94858286016129ed565b9250506020612da585828601612d5d565b9150509250929050565b5f67ffffffffffffffff821115612dc957612dc8612bb1565b5b612dd2826128b9565b9050602081019050919050565b5f612df1612dec84612daf565b612c0f565b905082815260208101848484011115612e0d57612e0c612bad565b5b612e18848285612c59565b509392505050565b5f82601f830112612e3457612e33612ba9565b5b8135612e44848260208601612ddf565b91505092915050565b5f805f8060808587031215612e6557612e646127bc565b5b5f612e72878288016129ed565b9450506020612e83878288016129ed565b9350506040612e9487828801612940565b925050606085013567ffffffffffffffff811115612eb557612eb46127c0565b5b612ec187828801612e20565b91505092959194509250565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b60028110612f0b57612f0a612ecd565b5b50565b5f819050612f1b82612efa565b919050565b5f612f2a82612f0e565b9050919050565b612f3a81612f20565b82525050565b5f602082019050612f535f830184612f31565b92915050565b5f8060408385031215612f6f57612f6e6127bc565b5b5f612f7c858286016129ed565b9250506020612f8d858286016129ed565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612fdb57607f821691505b602082108103612fee57612fed612f97565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61302b82612921565b915061303683612921565b925082820261304481612921565b9150828204841483151761305b5761305a612ff4565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61309982612921565b91506130a483612921565b9250826130b4576130b3613062565b5b828204905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f6130f3601f83612881565b91506130fe826130bf565b602082019050919050565b5f6020820190508181035f830152613120816130e7565b9050919050565b7f496e76616c6964205573657200000000000000000000000000000000000000005f82015250565b5f61315b600c83612881565b915061316682613127565b602082019050919050565b5f6020820190508181035f8301526131888161314f565b9050919050565b5f61319982612921565b91506131a483612921565b92508282019050808211156131bc576131bb612ff4565b5b92915050565b7f4d617820737570706c79207265616368656400000000000000000000000000005f82015250565b5f6131f6601283612881565b9150613201826131c2565b602082019050919050565b5f6020820190508181035f830152613223816131ea565b9050919050565b7f4578636565646564207478206c696d69740000000000000000000000000000005f82015250565b5f61325e601183612881565b91506132698261322a565b602082019050919050565b5f6020820190508181035f83015261328b81613252565b9050919050565b7f496e73756666696369656e742066756e647300000000000000000000000000005f82015250565b5f6132c6601283612881565b91506132d182613292565b602082019050919050565b5f6020820190508181035f8301526132f3816132ba565b9050919050565b7f4e6f7420696e2077686974656c697374206d696e7420737461676500000000005f82015250565b5f61332e601b83612881565b9150613339826132fa565b602082019050919050565b5f6020820190508181035f83015261335b81613322565b9050919050565b5f81905092915050565b50565b5f61337a5f83613362565b91506133858261336c565b5f82019050919050565b5f6133998261336f565b9150819050919050565b7f5472616e73666572206661696c65642e000000000000000000000000000000005f82015250565b5f6133d7601083612881565b91506133e2826133a3565b602082019050919050565b5f6020820190508181035f830152613404816133cb565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026134677fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261342c565b613471868361342c565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6134ac6134a76134a284612921565b613489565b612921565b9050919050565b5f819050919050565b6134c583613492565b6134d96134d1826134b3565b848454613438565b825550505050565b5f90565b6134ed6134e1565b6134f88184846134bc565b505050565b5b8181101561351b576135105f826134e5565b6001810190506134fe565b5050565b601f821115613560576135318161340b565b61353a8461341d565b81016020851015613549578190505b61355d6135558561341d565b8301826134fd565b50505b505050565b5f82821c905092915050565b5f6135805f1984600802613565565b1980831691505092915050565b5f6135988383613571565b9150826002028217905092915050565b6135b182612877565b67ffffffffffffffff8111156135ca576135c9612bb1565b5b6135d48254612fc4565b6135df82828561351f565b5f60209050601f831160018114613610575f84156135fe578287015190505b613608858261358d565b86555061366f565b601f19841661361e8661340b565b5f5b8281101561364557848901518255600182019150602085019450602081019050613620565b86831015613662578489015161365e601f891682613571565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f6136d1602f83612881565b91506136dc82613677565b604082019050919050565b5f6020820190508181035f8301526136fe816136c5565b9050919050565b5f81905092915050565b5f61371982612877565b6137238185613705565b9350613733818560208601612891565b80840191505092915050565b5f815461374b81612fc4565b6137558186613705565b9450600182165f811461376f5760018114613784576137b6565b60ff19831686528115158202860193506137b6565b61378d8561340b565b5f5b838110156137ae5781548189015260018201915060208101905061378f565b838801955050505b50505092915050565b5f6137ca828661370f565b91506137d6828561370f565b91506137e2828461373f565b9150819050949350505050565b5f6137f982612921565b915061380483612921565b925082820390508181111561381c5761381b612ff4565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61387c602683612881565b915061388782613822565b604082019050919050565b5f6020820190508181035f8301526138a981613870565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6138e4602083612881565b91506138ef826138b0565b602082019050919050565b5f6020820190508181035f830152613911816138d8565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f61393c82613918565b6139468185613922565b9350613956818560208601612891565b61395f816128b9565b840191505092915050565b5f60808201905061397d5f8301876129af565b61398a60208301866129af565b6139976040830185612a3f565b81810360608301526139a98184613932565b905095945050505050565b5f815190506139c2816127ef565b92915050565b5f602082840312156139dd576139dc6127bc565b5b5f6139ea848285016139b4565b91505092915050565b5f6139fd82612921565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613a2f57613a2e612ff4565b5b600182019050919050565b5f613a4482612921565b9150613a4f83612921565b925082613a5f57613a5e613062565b5b828206905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffdfea2646970667358221220a47ae13cbbff829b99c215eb6d4f4869e952a812fec3be96abbef90f6fa997c864736f6c63430008160033

Deployed Bytecode

0x6080604052600436106101ed575f3560e01c806370a082311161010c57806398710d1e1161009f578063bf7b779c1161006e578063bf7b779c146106ae578063c87b56dd146106d8578063defcbacb14610714578063e985e9c51461073e578063f2fde38b1461077a576101ed565b806398710d1e146105f85780639a9c1bb114610622578063a22cb4651461065e578063b88d4fde14610686576101ed565b80638da5cb5b116100db5780638da5cb5b14610550578063902d55a51461057a57806395d89b41146105a4578063975e840e146105ce576101ed565b806370a08231146104be578063715018a6146104fa578063853828b6146105105780638d859f3e14610526576101ed565b80632e1a7d4d116101845780635503a0e8116101535780635503a0e81461040657806355850fe61461043057806355f804b31461045a5780636352211e14610482576101ed565b80632e1a7d4d146103665780632e49d78b1461038e57806335001a1a146103b657806342842e0e146103de576101ed565b806318160ddd116101c057806318160ddd146102bb57806323b872dd146102e55780632a55205a1461030d5780632db115441461034a576101ed565b806301ffc9a7146101f157806306fdde031461022d578063081812fc14610257578063095ea7b314610293575b5f80fd5b3480156101fc575f80fd5b5061021760048036038101906102129190612819565b6107a2565b604051610224919061285e565b60405180910390f35b348015610238575f80fd5b506102416107d3565b60405161024e9190612901565b60405180910390f35b348015610262575f80fd5b5061027d60048036038101906102789190612954565b610863565b60405161028a91906129be565b60405180910390f35b34801561029e575f80fd5b506102b960048036038101906102b49190612a01565b6108dd565b005b3480156102c6575f80fd5b506102cf610a1c565b6040516102dc9190612a4e565b60405180910390f35b3480156102f0575f80fd5b5061030b60048036038101906103069190612a67565b610a32565b005b348015610318575f80fd5b50610333600480360381019061032e9190612ab7565b610d41565b604051610341929190612af5565b60405180910390f35b610364600480360381019061035f9190612954565b610f1d565b005b348015610371575f80fd5b5061038c60048036038101906103879190612954565b61119e565b005b348015610399575f80fd5b506103b460048036038101906103af9190612b3f565b611315565b005b3480156103c1575f80fd5b506103dc60048036038101906103d79190612a01565b611349565b005b3480156103e9575f80fd5b5061040460048036038101906103ff9190612a67565b611499565b005b348015610411575f80fd5b5061041a6114b8565b6040516104279190612901565b60405180910390f35b34801561043b575f80fd5b50610444611544565b6040516104519190612b90565b60405180910390f35b348015610465575f80fd5b50610480600480360381019061047b9190612cd5565b611568565b005b34801561048d575f80fd5b506104a860048036038101906104a39190612954565b611583565b6040516104b591906129be565b60405180910390f35b3480156104c9575f80fd5b506104e460048036038101906104df9190612d1c565b611594565b6040516104f19190612a4e565b60405180910390f35b348015610505575f80fd5b5061050e611649565b005b34801561051b575f80fd5b5061052461165c565b005b348015610531575f80fd5b5061053a6117d2565b6040516105479190612a4e565b60405180910390f35b34801561055b575f80fd5b506105646117f6565b60405161057191906129be565b60405180910390f35b348015610585575f80fd5b5061058e61181d565b60405161059b9190612a4e565b60405180910390f35b3480156105af575f80fd5b506105b8611841565b6040516105c59190612901565b60405180910390f35b3480156105d9575f80fd5b506105e26118d1565b6040516105ef9190612a4e565b60405180910390f35b348015610603575f80fd5b5061060c6118f5565b6040516106199190612a4e565b60405180910390f35b34801561062d575f80fd5b5061064860048036038101906106439190612d1c565b611919565b6040516106559190612a4e565b60405180910390f35b348015610669575f80fd5b50610684600480360381019061067f9190612d71565b61192a565b005b348015610691575f80fd5b506106ac60048036038101906106a79190612e4d565b611a9c565b005b3480156106b9575f80fd5b506106c2611b0e565b6040516106cf9190612f40565b60405180910390f35b3480156106e3575f80fd5b506106fe60048036038101906106f99190612954565b611b20565b60405161070b9190612901565b60405180910390f35b34801561071f575f80fd5b50610728611bc7565b6040516107359190612a4e565b60405180910390f35b348015610749575f80fd5b50610764600480360381019061075f9190612f59565b611c00565b604051610771919061285e565b60405180910390f35b348015610785575f80fd5b506107a0600480360381019061079b9190612d1c565b611c8e565b005b5f6107ac82611d10565b806107bc57506107bb82611da1565b5b806107cc57506107cb82611da1565b5b9050919050565b6060600380546107e290612fc4565b80601f016020809104026020016040519081016040528092919081815260200182805461080e90612fc4565b80156108595780601f1061083057610100808354040283529160200191610859565b820191905f5260205f20905b81548152906001019060200180831161083c57829003601f168201915b5050505050905090565b5f61086d82611e1a565b6108a3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60075f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f6108e782611583565b90508073ffffffffffffffffffffffffffffffffffffffff16610908611e75565b73ffffffffffffffffffffffffffffffffffffffff161461096b576109348161092f611e75565b611c00565b61096a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260075f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f610a25611e7c565b6002546001540303905090565b5f610a3c82611e84565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610aa3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610aae84611f48565b91509150610ac48187610abf611e75565b611f6b565b610b1057610ad986610ad4611e75565b611c00565b610b0f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b75576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b828686866001611fae565b8015610b8c575f82555b60065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610c5485610c30888887611fb4565b7c020000000000000000000000000000000000000000000000000000000017611fdb565b60055f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610cd1575f6001850190505f60055f8381526020019081526020015f205403610ccf576001548114610cce578360055f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d398686866001612005565b505050505050565b5f805f600a5f8681526020019081526020015f206040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1603610eca5760096040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b5f610ed361200b565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610eff9190613021565b610f09919061308f565b9050815f0151819350935050509250929050565b6002600b5403610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5990613109565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcf90613171565b60405180910390fd5b807f0000000000000000000000000000000000000000000000000000000000000d0581611003610a1c565b61100d919061318f565b111561104e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110459061320c565b60405180910390fd5b817f00000000000000000000000000000000000000000000000000000000000000148161107a33612014565b611084919061318f565b11156110c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bc90613274565b60405180910390fd5b826110d03382612068565b341015611112576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611109906132dc565b60405180910390fd5b60018081111561112557611124612ecd565b5b600c5f9054906101000a900460ff16600181111561114657611145612ecd565b5b14611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d90613344565b60405180910390fd5b611190338561210e565b5050506001600b8190555050565b6111a66122b9565b6002600b54036111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e290613109565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890613171565b60405180910390fd5b5f3373ffffffffffffffffffffffffffffffffffffffff16826040516112869061338f565b5f6040518083038185875af1925050503d805f81146112c0576040519150601f19603f3d011682016040523d82523d5f602084013e6112c5565b606091505b5050905080611309576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611300906133ed565b60405180910390fd5b506001600b8190555050565b61131d6122b9565b80600c5f6101000a81548160ff0219169083600181111561134157611340612ecd565b5b021790555050565b6113516122b9565b6002600b5403611396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138d90613109565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461140c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140390613171565b60405180910390fd5b807f0000000000000000000000000000000000000000000000000000000000000d0581611437610a1c565b611441919061318f565b1115611482576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114799061320c565b60405180910390fd5b61148c838361210e565b506001600b819055505050565b6114b383838360405180602001604052805f815250611a9c565b505050565b600d80546114c590612fc4565b80601f01602080910402602001604051908101604052809291908181526020018280546114f190612fc4565b801561153c5780601f106115135761010080835404028352916020019161153c565b820191905f5260205f20905b81548152906001019060200180831161151f57829003601f168201915b505050505081565b7f00000000000000000000000000000000000000000000000000000000000001f481565b6115706122b9565b80600e908161157f91906135a8565b5050565b5f61158d82611e84565b9050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115fa576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b6116516122b9565b61165a5f612337565b565b6116646122b9565b6002600b54036116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a090613109565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461171f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171690613171565b60405180910390fd5b5f3373ffffffffffffffffffffffffffffffffffffffff16476040516117449061338f565b5f6040518083038185875af1925050503d805f811461177e576040519150601f19603f3d011682016040523d82523d5f602084013e611783565b606091505b50509050806117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be906133ed565b60405180910390fd5b506001600b81905550565b7f00000000000000000000000000000000000000000000000000038d7ea4c6800081565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f0000000000000000000000000000000000000000000000000000000000000d0581565b60606004805461185090612fc4565b80601f016020809104026020016040519081016040528092919081815260200182805461187c90612fc4565b80156118c75780601f1061189e576101008083540402835291602001916118c7565b820191905f5260205f20905b8154815290600101906020018083116118aa57829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000001481565b7f000000000000000000000000000000000000000000000000000000000000000181565b5f61192382612014565b9050919050565b611932611e75565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611996576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060085f6119a2611e75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a4b611e75565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a90919061285e565b60405180910390a35050565b611aa7848484610a32565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611b0857611ad1848484846123f8565b611b07576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5f9054906101000a900460ff1681565b6060611b2b82611e1a565b611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b61906136e7565b60405180910390fd5b5f611b73612543565b90505f815111611b915760405180602001604052805f815250611bbf565b80611b9b846125d3565b600d604051602001611baf939291906137bf565b6040516020818303038152906040525b915050919050565b5f611bd0610a1c565b7f0000000000000000000000000000000000000000000000000000000000000d05611bfb91906137ef565b905090565b5f60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611c966122b9565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfb90613892565b60405180910390fd5b611d0d81612337565b50565b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d6a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d9a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b5f7f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e135750611e128261272c565b5b9050919050565b5f81611e24611e7c565b11158015611e33575060015482105b8015611e6e57505f7c010000000000000000000000000000000000000000000000000000000060055f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f8082905080611e92611e7c565b11611f1157600154811015611f10575f60055f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611f0e575b5f8103611f045760055f836001900393508381526020019081526020015f20549050611edd565b8092505050611f43565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60075f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e8611fca868684612795565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f612710905090565b5f67ffffffffffffffff604060065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b5f805f61207485612014565b119050806120d8577f0000000000000000000000000000000000000000000000000000000000000001836120a891906137ef565b7f00000000000000000000000000000000000000000000000000038d7ea4c680006120d39190613021565b612105565b827f00000000000000000000000000000000000000000000000000038d7ea4c680006121049190613021565b5b91505092915050565b5f60015490505f820361214d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121595f848385611fae565b600160406001901b17820260065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055506121cb836121bc5f865f611fb4565b6121c58561279d565b17611fdb565b60055f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146122655780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a460018101905061222c565b505f820361229f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506122b45f848385612005565b505050565b6122c16127ac565b73ffffffffffffffffffffffffffffffffffffffff166122df6117f6565b73ffffffffffffffffffffffffffffffffffffffff1614612335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232c906138fa565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261241d611e75565b8786866040518563ffffffff1660e01b815260040161243f949392919061396a565b6020604051808303815f875af192505050801561247a57506040513d601f19601f8201168201806040525081019061247791906139c8565b60015b6124f0573d805f81146124a8576040519150601f19603f3d011682016040523d82523d5f602084013e6124ad565b606091505b505f8151036124e8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e805461255290612fc4565b80601f016020809104026020016040519081016040528092919081815260200182805461257e90612fc4565b80156125c95780601f106125a0576101008083540402835291602001916125c9565b820191905f5260205f20905b8154815290600101906020018083116125ac57829003601f168201915b5050505050905090565b60605f8203612619576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612727565b5f8290505f5b5f8214612648578080612631906139f3565b915050600a82612641919061308f565b915061261f565b5f8167ffffffffffffffff81111561266357612662612bb1565b5b6040519080825280601f01601f1916602001820160405280156126955781602001600182028036833780820191505090505b5090505b5f8514612720576001826126ad91906137ef565b9150600a856126bc9190613a3a565b60306126c8919061318f565b60f81b8183815181106126de576126dd613a6a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a905350600a85612719919061308f565b9450612699565b8093505050505b919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f9392505050565b5f6001821460e11b9050919050565b5f33905090565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127f8816127c4565b8114612802575f80fd5b50565b5f81359050612813816127ef565b92915050565b5f6020828403121561282e5761282d6127bc565b5b5f61283b84828501612805565b91505092915050565b5f8115159050919050565b61285881612844565b82525050565b5f6020820190506128715f83018461284f565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156128ae578082015181840152602081019050612893565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6128d382612877565b6128dd8185612881565b93506128ed818560208601612891565b6128f6816128b9565b840191505092915050565b5f6020820190508181035f83015261291981846128c9565b905092915050565b5f819050919050565b61293381612921565b811461293d575f80fd5b50565b5f8135905061294e8161292a565b92915050565b5f60208284031215612969576129686127bc565b5b5f61297684828501612940565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6129a88261297f565b9050919050565b6129b88161299e565b82525050565b5f6020820190506129d15f8301846129af565b92915050565b6129e08161299e565b81146129ea575f80fd5b50565b5f813590506129fb816129d7565b92915050565b5f8060408385031215612a1757612a166127bc565b5b5f612a24858286016129ed565b9250506020612a3585828601612940565b9150509250929050565b612a4881612921565b82525050565b5f602082019050612a615f830184612a3f565b92915050565b5f805f60608486031215612a7e57612a7d6127bc565b5b5f612a8b868287016129ed565b9350506020612a9c868287016129ed565b9250506040612aad86828701612940565b9150509250925092565b5f8060408385031215612acd57612acc6127bc565b5b5f612ada85828601612940565b9250506020612aeb85828601612940565b9150509250929050565b5f604082019050612b085f8301856129af565b612b156020830184612a3f565b9392505050565b60028110612b28575f80fd5b50565b5f81359050612b3981612b1c565b92915050565b5f60208284031215612b5457612b536127bc565b5b5f612b6184828501612b2b565b91505092915050565b5f6bffffffffffffffffffffffff82169050919050565b612b8a81612b6a565b82525050565b5f602082019050612ba35f830184612b81565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612be7826128b9565b810181811067ffffffffffffffff82111715612c0657612c05612bb1565b5b80604052505050565b5f612c186127b3565b9050612c248282612bde565b919050565b5f67ffffffffffffffff821115612c4357612c42612bb1565b5b612c4c826128b9565b9050602081019050919050565b828183375f83830152505050565b5f612c79612c7484612c29565b612c0f565b905082815260208101848484011115612c9557612c94612bad565b5b612ca0848285612c59565b509392505050565b5f82601f830112612cbc57612cbb612ba9565b5b8135612ccc848260208601612c67565b91505092915050565b5f60208284031215612cea57612ce96127bc565b5b5f82013567ffffffffffffffff811115612d0757612d066127c0565b5b612d1384828501612ca8565b91505092915050565b5f60208284031215612d3157612d306127bc565b5b5f612d3e848285016129ed565b91505092915050565b612d5081612844565b8114612d5a575f80fd5b50565b5f81359050612d6b81612d47565b92915050565b5f8060408385031215612d8757612d866127bc565b5b5f612d94858286016129ed565b9250506020612da585828601612d5d565b9150509250929050565b5f67ffffffffffffffff821115612dc957612dc8612bb1565b5b612dd2826128b9565b9050602081019050919050565b5f612df1612dec84612daf565b612c0f565b905082815260208101848484011115612e0d57612e0c612bad565b5b612e18848285612c59565b509392505050565b5f82601f830112612e3457612e33612ba9565b5b8135612e44848260208601612ddf565b91505092915050565b5f805f8060808587031215612e6557612e646127bc565b5b5f612e72878288016129ed565b9450506020612e83878288016129ed565b9350506040612e9487828801612940565b925050606085013567ffffffffffffffff811115612eb557612eb46127c0565b5b612ec187828801612e20565b91505092959194509250565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b60028110612f0b57612f0a612ecd565b5b50565b5f819050612f1b82612efa565b919050565b5f612f2a82612f0e565b9050919050565b612f3a81612f20565b82525050565b5f602082019050612f535f830184612f31565b92915050565b5f8060408385031215612f6f57612f6e6127bc565b5b5f612f7c858286016129ed565b9250506020612f8d858286016129ed565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612fdb57607f821691505b602082108103612fee57612fed612f97565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61302b82612921565b915061303683612921565b925082820261304481612921565b9150828204841483151761305b5761305a612ff4565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61309982612921565b91506130a483612921565b9250826130b4576130b3613062565b5b828204905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f6130f3601f83612881565b91506130fe826130bf565b602082019050919050565b5f6020820190508181035f830152613120816130e7565b9050919050565b7f496e76616c6964205573657200000000000000000000000000000000000000005f82015250565b5f61315b600c83612881565b915061316682613127565b602082019050919050565b5f6020820190508181035f8301526131888161314f565b9050919050565b5f61319982612921565b91506131a483612921565b92508282019050808211156131bc576131bb612ff4565b5b92915050565b7f4d617820737570706c79207265616368656400000000000000000000000000005f82015250565b5f6131f6601283612881565b9150613201826131c2565b602082019050919050565b5f6020820190508181035f830152613223816131ea565b9050919050565b7f4578636565646564207478206c696d69740000000000000000000000000000005f82015250565b5f61325e601183612881565b91506132698261322a565b602082019050919050565b5f6020820190508181035f83015261328b81613252565b9050919050565b7f496e73756666696369656e742066756e647300000000000000000000000000005f82015250565b5f6132c6601283612881565b91506132d182613292565b602082019050919050565b5f6020820190508181035f8301526132f3816132ba565b9050919050565b7f4e6f7420696e2077686974656c697374206d696e7420737461676500000000005f82015250565b5f61332e601b83612881565b9150613339826132fa565b602082019050919050565b5f6020820190508181035f83015261335b81613322565b9050919050565b5f81905092915050565b50565b5f61337a5f83613362565b91506133858261336c565b5f82019050919050565b5f6133998261336f565b9150819050919050565b7f5472616e73666572206661696c65642e000000000000000000000000000000005f82015250565b5f6133d7601083612881565b91506133e2826133a3565b602082019050919050565b5f6020820190508181035f830152613404816133cb565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026134677fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261342c565b613471868361342c565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6134ac6134a76134a284612921565b613489565b612921565b9050919050565b5f819050919050565b6134c583613492565b6134d96134d1826134b3565b848454613438565b825550505050565b5f90565b6134ed6134e1565b6134f88184846134bc565b505050565b5b8181101561351b576135105f826134e5565b6001810190506134fe565b5050565b601f821115613560576135318161340b565b61353a8461341d565b81016020851015613549578190505b61355d6135558561341d565b8301826134fd565b50505b505050565b5f82821c905092915050565b5f6135805f1984600802613565565b1980831691505092915050565b5f6135988383613571565b9150826002028217905092915050565b6135b182612877565b67ffffffffffffffff8111156135ca576135c9612bb1565b5b6135d48254612fc4565b6135df82828561351f565b5f60209050601f831160018114613610575f84156135fe578287015190505b613608858261358d565b86555061366f565b601f19841661361e8661340b565b5f5b8281101561364557848901518255600182019150602085019450602081019050613620565b86831015613662578489015161365e601f891682613571565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f6136d1602f83612881565b91506136dc82613677565b604082019050919050565b5f6020820190508181035f8301526136fe816136c5565b9050919050565b5f81905092915050565b5f61371982612877565b6137238185613705565b9350613733818560208601612891565b80840191505092915050565b5f815461374b81612fc4565b6137558186613705565b9450600182165f811461376f5760018114613784576137b6565b60ff19831686528115158202860193506137b6565b61378d8561340b565b5f5b838110156137ae5781548189015260018201915060208101905061378f565b838801955050505b50505092915050565b5f6137ca828661370f565b91506137d6828561370f565b91506137e2828461373f565b9150819050949350505050565b5f6137f982612921565b915061380483612921565b925082820390508181111561381c5761381b612ff4565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61387c602683612881565b915061388782613822565b604082019050919050565b5f6020820190508181035f8301526138a981613870565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6138e4602083612881565b91506138ef826138b0565b602082019050919050565b5f6020820190508181035f830152613911816138d8565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f61393c82613918565b6139468185613922565b9350613956818560208601612891565b61395f816128b9565b840191505092915050565b5f60808201905061397d5f8301876129af565b61398a60208301866129af565b6139976040830185612a3f565b81810360608301526139a98184613932565b905095945050505050565b5f815190506139c2816127ef565b92915050565b5f602082840312156139dd576139dc6127bc565b5b5f6139ea848285016139b4565b91505092915050565b5f6139fd82612921565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613a2f57613a2e612ff4565b5b600182019050919050565b5f613a4482612921565b9150613a4f83612921565b925082613a5f57613a5e613062565b5b828206905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffdfea2646970667358221220a47ae13cbbff829b99c215eb6d4f4869e952a812fec3be96abbef90f6fa997c864736f6c63430008160033

Deployed Bytecode Sourcemap

69019:4090:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72013:344;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24074:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30557:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29998:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19825:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34264:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62824:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;70697:412;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72705:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71382:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70460:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37177:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69433:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69162:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71270:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25467:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21009:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68097:103;;;;;;;;;;;;;:::i;:::-;;72908:198;;;;;;;;;;;;;:::i;:::-;;69331:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67449:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69382:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24250:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69277:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69222:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71117:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31115:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37960:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69091:62;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71603:402;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70222:114;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31580:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68355:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72013:344;72161:4;72203:38;72229:11;72203:25;:38::i;:::-;:93;;;;72258:38;72284:11;72258:25;:38::i;:::-;72203:93;:146;;;;72313:36;72337:11;72313:23;:36::i;:::-;72203:146;72183:166;;72013:344;;;:::o;24074:100::-;24128:13;24161:5;24154:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24074:100;:::o;30557:218::-;30633:7;30658:16;30666:7;30658;:16::i;:::-;30653:64;;30683:34;;;;;;;;;;;;;;30653:64;30737:15;:24;30753:7;30737:24;;;;;;;;;;;:30;;;;;;;;;;;;30730:37;;30557:218;;;:::o;29998:400::-;30079:13;30095:16;30103:7;30095;:16::i;:::-;30079:32;;30151:5;30128:28;;:19;:17;:19::i;:::-;:28;;;30124:175;;30176:44;30193:5;30200:19;:17;:19::i;:::-;30176:16;:44::i;:::-;30171:128;;30248:35;;;;;;;;;;;;;;30171:128;30124:175;30344:2;30311:15;:24;30327:7;30311:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;30382:7;30378:2;30362:28;;30371:5;30362:28;;;;;;;;;;;;30068:330;29998:400;;:::o;19825:323::-;19886:7;20114:15;:13;:15::i;:::-;20099:12;;20083:13;;:28;:46;20076:53;;19825:323;:::o;34264:2817::-;34398:27;34428;34447:7;34428:18;:27::i;:::-;34398:57;;34513:4;34472:45;;34488:19;34472:45;;;34468:86;;34526:28;;;;;;;;;;;;;;34468:86;34568:27;34597:23;34624:35;34651:7;34624:26;:35::i;:::-;34567:92;;;;34759:68;34784:15;34801:4;34807:19;:17;:19::i;:::-;34759:24;:68::i;:::-;34754:180;;34847:43;34864:4;34870:19;:17;:19::i;:::-;34847:16;:43::i;:::-;34842:92;;34899:35;;;;;;;;;;;;;;34842:92;34754:180;34965:1;34951:16;;:2;:16;;;34947:52;;34976:23;;;;;;;;;;;;;;34947:52;35012:43;35034:4;35040:2;35044:7;35053:1;35012:21;:43::i;:::-;35148:15;35145:160;;;35288:1;35267:19;35260:30;35145:160;35685:18;:24;35704:4;35685:24;;;;;;;;;;;;;;;;35683:26;;;;;;;;;;;;35754:18;:22;35773:2;35754:22;;;;;;;;;;;;;;;;35752:24;;;;;;;;;;;36076:146;36113:2;36162:45;36177:4;36183:2;36187:19;36162:14;:45::i;:::-;16224:8;36134:73;36076:18;:146::i;:::-;36047:17;:26;36065:7;36047:26;;;;;;;;;;;:175;;;;36393:1;16224:8;36342:19;:47;:52;36338:627;;36415:19;36447:1;36437:7;:11;36415:33;;36604:1;36570:17;:30;36588:11;36570:30;;;;;;;;;;;;:35;36566:384;;36708:13;;36693:11;:28;36689:242;;36888:19;36855:17;:30;36873:11;36855:30;;;;;;;;;;;:52;;;;36689:242;36566:384;36396:569;36338:627;37012:7;37008:2;36993:27;;37002:4;36993:27;;;;;;;;;;;;37031:42;37052:4;37058:2;37062:7;37071:1;37031:20;:42::i;:::-;34387:2694;;;34264:2817;;;:::o;62824:442::-;62921:7;62930;62950:26;62979:17;:27;62997:8;62979:27;;;;;;;;;;;62950:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63051:1;63023:30;;:7;:16;;;:30;;;63019:92;;63080:19;63070:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63019:92;63123:21;63188:17;:15;:17::i;:::-;63147:58;;63161:7;:23;;;63148:36;;:10;:36;;;;:::i;:::-;63147:58;;;;:::i;:::-;63123:82;;63226:7;:16;;;63244:13;63218:40;;;;;;62824:442;;;;;:::o;70697:412::-;57377:1;57975:7;;:19;57967:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;57377:1;58108:7;:18;;;;70046:10:::1;70033:23;;:9;:23;;;70025:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;70852:8:::2;69933:12;69921:8;69905:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;;69897:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;70886:8:::3;69772:17;69760:8;69732:25;69746:10;69732:13;:25::i;:::-;:36;;;;:::i;:::-;:57;;69724:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;70920:8:::4;69586:34;69599:10;69611:8;69586:12;:34::i;:::-;69573:9;:47;;69565:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;70987:19:::5;70968:38:::0;::::5;;;;;;;:::i;:::-;;:15;;;;;;;;;;;:38;;;;;;;;:::i;:::-;;;70946:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;71074:27;71080:10;71092:8;71074:5;:27::i;:::-;69822:1:::4;69979::::3;70084::::2;57333::::0;58287:7;:22;;;;70697:412;:::o;72705:195::-;67335:13;:11;:13::i;:::-;57377:1:::1;57975:7;;:19:::0;57967:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;57377:1;58108:7;:18;;;;70046:10:::2;70033:23;;:9;:23;;;70025:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;72790:12:::3;72808:10;:15;;72831:7;72808:35;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72789:54;;;72864:7;72856:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;72778:122;57333:1:::1;58287:7;:22;;;;72705:195:::0;:::o;71382:104::-;67335:13;:11;:13::i;:::-;71472:6:::1;71454:15;;:24;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;71382:104:::0;:::o;70460:229::-;67335:13;:11;:13::i;:::-;57377:1:::1;57975:7;;:19:::0;57967:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;57377:1;58108:7;:18;;;;70046:10:::2;70033:23;;:9;:23;;;70025:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;70626:8:::3;69933:12;69921:8;69905:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;;69897:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;70652:29:::4;70658:12;70672:8;70652:5;:29::i;:::-;70084:1:::3;57333::::1;58287:7;:22;;;;70460:229:::0;;:::o;37177:185::-;37315:39;37332:4;37338:2;37342:7;37315:39;;;;;;;;;;;;:16;:39::i;:::-;37177:185;;;:::o;69433:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;69162:51::-;;;:::o;71270:104::-;67335:13;:11;:13::i;:::-;71360:6:::1;71350:7;:16;;;;;;:::i;:::-;;71270:104:::0;:::o;25467:152::-;25539:7;25582:27;25601:7;25582:18;:27::i;:::-;25559:52;;25467:152;;;:::o;21009:233::-;21081:7;21122:1;21105:19;;:5;:19;;;21101:60;;21133:28;;;;;;;;;;;;;;21101:60;15168:13;21179:18;:25;21198:5;21179:25;;;;;;;;;;;;;;;;:55;21172:62;;21009:233;;;:::o;68097:103::-;67335:13;:11;:13::i;:::-;68162:30:::1;68189:1;68162:18;:30::i;:::-;68097:103::o:0;72908:198::-;67335:13;:11;:13::i;:::-;57377:1:::1;57975:7;;:19:::0;57967:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;57377:1;58108:7;:18;;;;70046:10:::2;70033:23;;:9;:23;;;70025:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;72982:12:::3;73000:10;:15;;73023:21;73000:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72981:68;;;73070:7;73062:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;72970:136;57333:1:::1;58287:7;:22;;;;72908:198::o:0;69331:44::-;;;:::o;67449:87::-;67495:7;67522:6;;;;;;;;;;;67515:13;;67449:87;:::o;69382:44::-;;;:::o;24250:104::-;24306:13;24339:7;24332:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24250:104;:::o;69277:47::-;;;:::o;69222:48::-;;;:::o;71117:145::-;71203:7;71235:19;71249:4;71235:13;:19::i;:::-;71228:26;;71117:145;;;:::o;31115:308::-;31226:19;:17;:19::i;:::-;31214:31;;:8;:31;;;31210:61;;31254:17;;;;;;;;;;;;;;31210:61;31336:8;31284:18;:39;31303:19;:17;:19::i;:::-;31284:39;;;;;;;;;;;;;;;:49;31324:8;31284:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;31396:8;31360:55;;31375:19;:17;:19::i;:::-;31360:55;;;31406:8;31360:55;;;;;;:::i;:::-;;;;;;;;31115:308;;:::o;37960:399::-;38127:31;38140:4;38146:2;38150:7;38127:12;:31::i;:::-;38191:1;38173:2;:14;;;:19;38169:183;;38212:56;38243:4;38249:2;38253:7;38262:5;38212:30;:56::i;:::-;38207:145;;38296:40;;;;;;;;;;;;;;38207:145;38169:183;37960:399;;;;:::o;69091:62::-;;;;;;;;;;;;;:::o;71603:402::-;71677:13;71711:17;71719:8;71711:7;:17::i;:::-;71703:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;71793:28;71824:10;:8;:10::i;:::-;71793:41;;71883:1;71858:14;71852:28;:32;:145;;;;;;;;;;;;;;;;;71924:14;71940:26;71957:8;71940:16;:26::i;:::-;71968:9;71907:71;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71852:145;71845:152;;;71603:402;;;:::o;70222:114::-;70273:7;70315:13;:11;:13::i;:::-;70300:12;:28;;;;:::i;:::-;70293:35;;70222:114;:::o;31580:164::-;31677:4;31701:18;:25;31720:5;31701:25;;;;;;;;;;;;;;;:35;31727:8;31701:35;;;;;;;;;;;;;;;;;;;;;;;;;31694:42;;31580:164;;;;:::o;68355:201::-;67335:13;:11;:13::i;:::-;68464:1:::1;68444:22;;:8;:22;;::::0;68436:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;68520:28;68539:8;68520:18;:28::i;:::-;68355:201:::0;:::o;23172:639::-;23257:4;23596:10;23581:25;;:11;:25;;;;:102;;;;23673:10;23658:25;;:11;:25;;;;23581:102;:179;;;;23750:10;23735:25;;:11;:25;;;;23581:179;23561:199;;23172:639;;;:::o;62554:215::-;62656:4;62695:26;62680:41;;;:11;:41;;;;:81;;;;62725:36;62749:11;62725:23;:36::i;:::-;62680:81;62673:88;;62554:215;;;:::o;32002:282::-;32067:4;32123:7;32104:15;:13;:15::i;:::-;:26;;:66;;;;;32157:13;;32147:7;:23;32104:66;:153;;;;;32256:1;15944:8;32208:17;:26;32226:7;32208:26;;;;;;;;;;;;:44;:49;32104:153;32084:173;;32002:282;;;:::o;53768:105::-;53828:7;53855:10;53848:17;;53768:105;:::o;71494:101::-;71559:7;71586:1;71579:8;;71494:101;:::o;26622:1275::-;26689:7;26709:12;26724:7;26709:22;;26792:4;26773:15;:13;:15::i;:::-;:23;26769:1061;;26826:13;;26819:4;:20;26815:1015;;;26864:14;26881:17;:23;26899:4;26881:23;;;;;;;;;;;;26864:40;;26998:1;15944:8;26970:6;:24;:29;26966:845;;27635:113;27652:1;27642:6;:11;27635:113;;27695:17;:25;27713:6;;;;;;;27695:25;;;;;;;;;;;;27686:34;;27635:113;;;27781:6;27774:13;;;;;;26966:845;26841:989;26815:1015;26769:1061;27858:31;;;;;;;;;;;;;;26622:1275;;;;:::o;33165:479::-;33267:27;33296:23;33337:38;33378:15;:24;33394:7;33378:24;;;;;;;;;;;33337:65;;33549:18;33526:41;;33606:19;33600:26;33581:45;;33511:126;33165:479;;;:::o;32393:659::-;32542:11;32707:16;32700:5;32696:28;32687:37;;32867:16;32856:9;32852:32;32839:45;;33017:15;33006:9;33003:30;32995:5;32984:9;32981:20;32978:56;32968:66;;32393:659;;;;;:::o;39021:159::-;;;;;:::o;53077:311::-;53212:7;53232:16;16348:3;53258:19;:41;;53232:68;;16348:3;53326:31;53337:4;53343:2;53347:9;53326:10;:31::i;:::-;53318:40;;:62;;53311:69;;;53077:311;;;;;:::o;28445:450::-;28525:14;28693:16;28686:5;28682:28;28673:37;;28870:5;28856:11;28831:23;28827:41;28824:52;28817:5;28814:63;28804:73;;28445:450;;;;:::o;39845:158::-;;;;;:::o;63548:97::-;63606:6;63632:5;63625:12;;63548:97;:::o;21324:178::-;21385:7;15168:13;15306:2;21413:18;:25;21432:5;21413:25;;;;;;;;;;;;;;;;:50;;21412:82;21405:89;;21324:178;;;:::o;72365:332::-;72470:7;72495:20;72542:1;72518:21;72532:6;72518:13;:21::i;:::-;:25;72495:48;;72576:15;:113;;72669:19;72658:8;:30;;;;:::i;:::-;72649:5;:40;;;;:::i;:::-;72576:113;;;72620:8;72611:5;:18;;;;:::i;:::-;72576:113;72556:133;;;72365:332;;;;:::o;41621:2454::-;41694:20;41717:13;;41694:36;;41757:1;41745:8;:13;41741:44;;41767:18;;;;;;;;;;;;;;41741:44;41798:61;41828:1;41832:2;41836:12;41850:8;41798:21;:61::i;:::-;42342:1;15306:2;42312:1;:26;;42311:32;42299:8;:45;42273:18;:22;42292:2;42273:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;42621:139;42658:2;42712:33;42735:1;42739:2;42743:1;42712:14;:33::i;:::-;42679:30;42700:8;42679:20;:30::i;:::-;:66;42621:18;:139::i;:::-;42587:17;:31;42605:12;42587:31;;;;;;;;;;;:173;;;;42777:16;42808:11;42837:8;42822:12;:23;42808:37;;43092:16;43088:2;43084:25;43072:37;;43464:12;43424:8;43383:1;43321:25;43262:1;43201;43174:335;43589:1;43575:12;43571:20;43529:346;43630:3;43621:7;43618:16;43529:346;;43848:7;43838:8;43835:1;43808:25;43805:1;43802;43797:59;43683:1;43674:7;43670:15;43659:26;;43529:346;;;43533:77;43920:1;43908:8;:13;43904:45;;43930:19;;;;;;;;;;;;;;43904:45;43982:3;43966:13;:19;;;;42047:1950;;44007:60;44036:1;44040:2;44044:12;44058:8;44007:20;:60::i;:::-;41683:2392;41621:2454;;:::o;67614:132::-;67689:12;:10;:12::i;:::-;67678:23;;:7;:5;:7::i;:::-;:23;;;67670:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67614:132::o;68716:191::-;68790:16;68809:6;;;;;;;;;;;68790:25;;68835:8;68826:6;;:17;;;;;;;;;;;;;;;;;;68890:8;68859:40;;68880:8;68859:40;;;;;;;;;;;;68779:128;68716:191;:::o;40443:716::-;40606:4;40652:2;40627:45;;;40673:19;:17;:19::i;:::-;40694:4;40700:7;40709:5;40627:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40623:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40927:1;40910:6;:13;:18;40906:235;;40956:40;;;;;;;;;;;;;;40906:235;41099:6;41093:13;41084:6;41080:2;41076:15;41069:38;40623:529;40796:54;;;40786:64;;;:6;:64;;;;40779:71;;;40443:716;;;;;;:::o;70344:108::-;70404:13;70437:7;70430:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70344:108;:::o;2978:723::-;3034:13;3264:1;3255:5;:10;3251:53;;3282:10;;;;;;;;;;;;;;;;;;;;;3251:53;3314:12;3329:5;3314:20;;3345:14;3370:78;3385:1;3377:4;:9;3370:78;;3403:8;;;;;:::i;:::-;;;;3434:2;3426:10;;;;;:::i;:::-;;;3370:78;;;3458:19;3490:6;3480:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3458:39;;3508:154;3524:1;3515:5;:10;3508:154;;3552:1;3542:11;;;;;:::i;:::-;;;3619:2;3611:5;:10;;;;:::i;:::-;3598:2;:24;;;;:::i;:::-;3585:39;;3568:6;3575;3568:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3648:2;3639:11;;;;;:::i;:::-;;;3508:154;;;3686:6;3672:21;;;;;2978:723;;;;:::o;60106:157::-;60191:4;60230:25;60215:40;;;:11;:40;;;;60208:47;;60106:157;;;:::o;52778:147::-;52915:6;52778:147;;;;;:::o;28997:324::-;29067:14;29300:1;29290:8;29287:15;29261:24;29257:46;29247:56;;28997:324;;;:::o;66000:98::-;66053:7;66080:10;66073:17;;66000:98;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:474::-;5935:6;5943;5992:2;5980:9;5971:7;5967:23;5963:32;5960:119;;;5998:79;;:::i;:::-;5960:119;6118:1;6143:53;6188:7;6179:6;6168:9;6164:22;6143:53;:::i;:::-;6133:63;;6089:117;6245:2;6271:53;6316:7;6307:6;6296:9;6292:22;6271:53;:::i;:::-;6261:63;;6216:118;5867:474;;;;;:::o;6347:332::-;6468:4;6506:2;6495:9;6491:18;6483:26;;6519:71;6587:1;6576:9;6572:17;6563:6;6519:71;:::i;:::-;6600:72;6668:2;6657:9;6653:18;6644:6;6600:72;:::i;:::-;6347:332;;;;;:::o;6685:118::-;6777:1;6770:5;6767:12;6757:40;;6793:1;6790;6783:12;6757:40;6685:118;:::o;6809:177::-;6874:5;6912:6;6899:20;6890:29;;6928:52;6974:5;6928:52;:::i;:::-;6809:177;;;;:::o;6992:367::-;7070:6;7119:2;7107:9;7098:7;7094:23;7090:32;7087:119;;;7125:79;;:::i;:::-;7087:119;7245:1;7270:72;7334:7;7325:6;7314:9;7310:22;7270:72;:::i;:::-;7260:82;;7216:136;6992:367;;;;:::o;7365:109::-;7401:7;7441:26;7434:5;7430:38;7419:49;;7365:109;;;:::o;7480:115::-;7565:23;7582:5;7565:23;:::i;:::-;7560:3;7553:36;7480:115;;:::o;7601:218::-;7692:4;7730:2;7719:9;7715:18;7707:26;;7743:69;7809:1;7798:9;7794:17;7785:6;7743:69;:::i;:::-;7601:218;;;;:::o;7825:117::-;7934:1;7931;7924:12;7948:117;8057:1;8054;8047:12;8071:180;8119:77;8116:1;8109:88;8216:4;8213:1;8206:15;8240:4;8237:1;8230:15;8257:281;8340:27;8362:4;8340:27;:::i;:::-;8332:6;8328:40;8470:6;8458:10;8455:22;8434:18;8422:10;8419:34;8416:62;8413:88;;;8481:18;;:::i;:::-;8413:88;8521:10;8517:2;8510:22;8300:238;8257:281;;:::o;8544:129::-;8578:6;8605:20;;:::i;:::-;8595:30;;8634:33;8662:4;8654:6;8634:33;:::i;:::-;8544:129;;;:::o;8679:308::-;8741:4;8831:18;8823:6;8820:30;8817:56;;;8853:18;;:::i;:::-;8817:56;8891:29;8913:6;8891:29;:::i;:::-;8883:37;;8975:4;8969;8965:15;8957:23;;8679:308;;;:::o;8993:146::-;9090:6;9085:3;9080;9067:30;9131:1;9122:6;9117:3;9113:16;9106:27;8993:146;;;:::o;9145:425::-;9223:5;9248:66;9264:49;9306:6;9264:49;:::i;:::-;9248:66;:::i;:::-;9239:75;;9337:6;9330:5;9323:21;9375:4;9368:5;9364:16;9413:3;9404:6;9399:3;9395:16;9392:25;9389:112;;;9420:79;;:::i;:::-;9389:112;9510:54;9557:6;9552:3;9547;9510:54;:::i;:::-;9229:341;9145:425;;;;;:::o;9590:340::-;9646:5;9695:3;9688:4;9680:6;9676:17;9672:27;9662:122;;9703:79;;:::i;:::-;9662:122;9820:6;9807:20;9845:79;9920:3;9912:6;9905:4;9897:6;9893:17;9845:79;:::i;:::-;9836:88;;9652:278;9590:340;;;;:::o;9936:509::-;10005:6;10054:2;10042:9;10033:7;10029:23;10025:32;10022:119;;;10060:79;;:::i;:::-;10022:119;10208:1;10197:9;10193:17;10180:31;10238:18;10230:6;10227:30;10224:117;;;10260:79;;:::i;:::-;10224:117;10365:63;10420:7;10411:6;10400:9;10396:22;10365:63;:::i;:::-;10355:73;;10151:287;9936:509;;;;:::o;10451:329::-;10510:6;10559:2;10547:9;10538:7;10534:23;10530:32;10527:119;;;10565:79;;:::i;:::-;10527:119;10685:1;10710:53;10755:7;10746:6;10735:9;10731:22;10710:53;:::i;:::-;10700:63;;10656:117;10451:329;;;;:::o;10786:116::-;10856:21;10871:5;10856:21;:::i;:::-;10849:5;10846:32;10836:60;;10892:1;10889;10882:12;10836:60;10786:116;:::o;10908:133::-;10951:5;10989:6;10976:20;10967:29;;11005:30;11029:5;11005:30;:::i;:::-;10908:133;;;;:::o;11047:468::-;11112:6;11120;11169:2;11157:9;11148:7;11144:23;11140:32;11137:119;;;11175:79;;:::i;:::-;11137:119;11295:1;11320:53;11365:7;11356:6;11345:9;11341:22;11320:53;:::i;:::-;11310:63;;11266:117;11422:2;11448:50;11490:7;11481:6;11470:9;11466:22;11448:50;:::i;:::-;11438:60;;11393:115;11047:468;;;;;:::o;11521:307::-;11582:4;11672:18;11664:6;11661:30;11658:56;;;11694:18;;:::i;:::-;11658:56;11732:29;11754:6;11732:29;:::i;:::-;11724:37;;11816:4;11810;11806:15;11798:23;;11521:307;;;:::o;11834:423::-;11911:5;11936:65;11952:48;11993:6;11952:48;:::i;:::-;11936:65;:::i;:::-;11927:74;;12024:6;12017:5;12010:21;12062:4;12055:5;12051:16;12100:3;12091:6;12086:3;12082:16;12079:25;12076:112;;;12107:79;;:::i;:::-;12076:112;12197:54;12244:6;12239:3;12234;12197:54;:::i;:::-;11917:340;11834:423;;;;;:::o;12276:338::-;12331:5;12380:3;12373:4;12365:6;12361:17;12357:27;12347:122;;12388:79;;:::i;:::-;12347:122;12505:6;12492:20;12530:78;12604:3;12596:6;12589:4;12581:6;12577:17;12530:78;:::i;:::-;12521:87;;12337:277;12276:338;;;;:::o;12620:943::-;12715:6;12723;12731;12739;12788:3;12776:9;12767:7;12763:23;12759:33;12756:120;;;12795:79;;:::i;:::-;12756:120;12915:1;12940:53;12985:7;12976:6;12965:9;12961:22;12940:53;:::i;:::-;12930:63;;12886:117;13042:2;13068:53;13113:7;13104:6;13093:9;13089:22;13068:53;:::i;:::-;13058:63;;13013:118;13170:2;13196:53;13241:7;13232:6;13221:9;13217:22;13196:53;:::i;:::-;13186:63;;13141:118;13326:2;13315:9;13311:18;13298:32;13357:18;13349:6;13346:30;13343:117;;;13379:79;;:::i;:::-;13343:117;13484:62;13538:7;13529:6;13518:9;13514:22;13484:62;:::i;:::-;13474:72;;13269:287;12620:943;;;;;;;:::o;13569:180::-;13617:77;13614:1;13607:88;13714:4;13711:1;13704:15;13738:4;13735:1;13728:15;13755:124;13847:1;13840:5;13837:12;13827:46;;13853:18;;:::i;:::-;13827:46;13755:124;:::o;13885:149::-;13941:7;13970:5;13959:16;;13976:52;14022:5;13976:52;:::i;:::-;13885:149;;;:::o;14040:::-;14107:9;14140:43;14177:5;14140:43;:::i;:::-;14127:56;;14040:149;;;:::o;14195:165::-;14299:54;14347:5;14299:54;:::i;:::-;14294:3;14287:67;14195:165;;:::o;14366:256::-;14476:4;14514:2;14503:9;14499:18;14491:26;;14527:88;14612:1;14601:9;14597:17;14588:6;14527:88;:::i;:::-;14366:256;;;;:::o;14628:474::-;14696:6;14704;14753:2;14741:9;14732:7;14728:23;14724:32;14721:119;;;14759:79;;:::i;:::-;14721:119;14879:1;14904:53;14949:7;14940:6;14929:9;14925:22;14904:53;:::i;:::-;14894:63;;14850:117;15006:2;15032:53;15077:7;15068:6;15057:9;15053:22;15032:53;:::i;:::-;15022:63;;14977:118;14628:474;;;;;:::o;15108:180::-;15156:77;15153:1;15146:88;15253:4;15250:1;15243:15;15277:4;15274:1;15267:15;15294:320;15338:6;15375:1;15369:4;15365:12;15355:22;;15422:1;15416:4;15412:12;15443:18;15433:81;;15499:4;15491:6;15487:17;15477:27;;15433:81;15561:2;15553:6;15550:14;15530:18;15527:38;15524:84;;15580:18;;:::i;:::-;15524:84;15345:269;15294:320;;;:::o;15620:180::-;15668:77;15665:1;15658:88;15765:4;15762:1;15755:15;15789:4;15786:1;15779:15;15806:410;15846:7;15869:20;15887:1;15869:20;:::i;:::-;15864:25;;15903:20;15921:1;15903:20;:::i;:::-;15898:25;;15958:1;15955;15951:9;15980:30;15998:11;15980:30;:::i;:::-;15969:41;;16159:1;16150:7;16146:15;16143:1;16140:22;16120:1;16113:9;16093:83;16070:139;;16189:18;;:::i;:::-;16070:139;15854:362;15806:410;;;;:::o;16222:180::-;16270:77;16267:1;16260:88;16367:4;16364:1;16357:15;16391:4;16388:1;16381:15;16408:185;16448:1;16465:20;16483:1;16465:20;:::i;:::-;16460:25;;16499:20;16517:1;16499:20;:::i;:::-;16494:25;;16538:1;16528:35;;16543:18;;:::i;:::-;16528:35;16585:1;16582;16578:9;16573:14;;16408:185;;;;:::o;16599:181::-;16739:33;16735:1;16727:6;16723:14;16716:57;16599:181;:::o;16786:366::-;16928:3;16949:67;17013:2;17008:3;16949:67;:::i;:::-;16942:74;;17025:93;17114:3;17025:93;:::i;:::-;17143:2;17138:3;17134:12;17127:19;;16786:366;;;:::o;17158:419::-;17324:4;17362:2;17351:9;17347:18;17339:26;;17411:9;17405:4;17401:20;17397:1;17386:9;17382:17;17375:47;17439:131;17565:4;17439:131;:::i;:::-;17431:139;;17158:419;;;:::o;17583:162::-;17723:14;17719:1;17711:6;17707:14;17700:38;17583:162;:::o;17751:366::-;17893:3;17914:67;17978:2;17973:3;17914:67;:::i;:::-;17907:74;;17990:93;18079:3;17990:93;:::i;:::-;18108:2;18103:3;18099:12;18092:19;;17751:366;;;:::o;18123:419::-;18289:4;18327:2;18316:9;18312:18;18304:26;;18376:9;18370:4;18366:20;18362:1;18351:9;18347:17;18340:47;18404:131;18530:4;18404:131;:::i;:::-;18396:139;;18123:419;;;:::o;18548:191::-;18588:3;18607:20;18625:1;18607:20;:::i;:::-;18602:25;;18641:20;18659:1;18641:20;:::i;:::-;18636:25;;18684:1;18681;18677:9;18670:16;;18705:3;18702:1;18699:10;18696:36;;;18712:18;;:::i;:::-;18696:36;18548:191;;;;:::o;18745:168::-;18885:20;18881:1;18873:6;18869:14;18862:44;18745:168;:::o;18919:366::-;19061:3;19082:67;19146:2;19141:3;19082:67;:::i;:::-;19075:74;;19158:93;19247:3;19158:93;:::i;:::-;19276:2;19271:3;19267:12;19260:19;;18919:366;;;:::o;19291:419::-;19457:4;19495:2;19484:9;19480:18;19472:26;;19544:9;19538:4;19534:20;19530:1;19519:9;19515:17;19508:47;19572:131;19698:4;19572:131;:::i;:::-;19564:139;;19291:419;;;:::o;19716:167::-;19856:19;19852:1;19844:6;19840:14;19833:43;19716:167;:::o;19889:366::-;20031:3;20052:67;20116:2;20111:3;20052:67;:::i;:::-;20045:74;;20128:93;20217:3;20128:93;:::i;:::-;20246:2;20241:3;20237:12;20230:19;;19889:366;;;:::o;20261:419::-;20427:4;20465:2;20454:9;20450:18;20442:26;;20514:9;20508:4;20504:20;20500:1;20489:9;20485:17;20478:47;20542:131;20668:4;20542:131;:::i;:::-;20534:139;;20261:419;;;:::o;20686:168::-;20826:20;20822:1;20814:6;20810:14;20803:44;20686:168;:::o;20860:366::-;21002:3;21023:67;21087:2;21082:3;21023:67;:::i;:::-;21016:74;;21099:93;21188:3;21099:93;:::i;:::-;21217:2;21212:3;21208:12;21201:19;;20860:366;;;:::o;21232:419::-;21398:4;21436:2;21425:9;21421:18;21413:26;;21485:9;21479:4;21475:20;21471:1;21460:9;21456:17;21449:47;21513:131;21639:4;21513:131;:::i;:::-;21505:139;;21232:419;;;:::o;21657:177::-;21797:29;21793:1;21785:6;21781:14;21774:53;21657:177;:::o;21840:366::-;21982:3;22003:67;22067:2;22062:3;22003:67;:::i;:::-;21996:74;;22079:93;22168:3;22079:93;:::i;:::-;22197:2;22192:3;22188:12;22181:19;;21840:366;;;:::o;22212:419::-;22378:4;22416:2;22405:9;22401:18;22393:26;;22465:9;22459:4;22455:20;22451:1;22440:9;22436:17;22429:47;22493:131;22619:4;22493:131;:::i;:::-;22485:139;;22212:419;;;:::o;22637:147::-;22738:11;22775:3;22760:18;;22637:147;;;;:::o;22790:114::-;;:::o;22910:398::-;23069:3;23090:83;23171:1;23166:3;23090:83;:::i;:::-;23083:90;;23182:93;23271:3;23182:93;:::i;:::-;23300:1;23295:3;23291:11;23284:18;;22910:398;;;:::o;23314:379::-;23498:3;23520:147;23663:3;23520:147;:::i;:::-;23513:154;;23684:3;23677:10;;23314:379;;;:::o;23699:166::-;23839:18;23835:1;23827:6;23823:14;23816:42;23699:166;:::o;23871:366::-;24013:3;24034:67;24098:2;24093:3;24034:67;:::i;:::-;24027:74;;24110:93;24199:3;24110:93;:::i;:::-;24228:2;24223:3;24219:12;24212:19;;23871:366;;;:::o;24243:419::-;24409:4;24447:2;24436:9;24432:18;24424:26;;24496:9;24490:4;24486:20;24482:1;24471:9;24467:17;24460:47;24524:131;24650:4;24524:131;:::i;:::-;24516:139;;24243:419;;;:::o;24668:141::-;24717:4;24740:3;24732:11;;24763:3;24760:1;24753:14;24797:4;24794:1;24784:18;24776:26;;24668:141;;;:::o;24815:93::-;24852:6;24899:2;24894;24887:5;24883:14;24879:23;24869:33;;24815:93;;;:::o;24914:107::-;24958:8;25008:5;25002:4;24998:16;24977:37;;24914:107;;;;:::o;25027:393::-;25096:6;25146:1;25134:10;25130:18;25169:97;25199:66;25188:9;25169:97;:::i;:::-;25287:39;25317:8;25306:9;25287:39;:::i;:::-;25275:51;;25359:4;25355:9;25348:5;25344:21;25335:30;;25408:4;25398:8;25394:19;25387:5;25384:30;25374:40;;25103:317;;25027:393;;;;;:::o;25426:60::-;25454:3;25475:5;25468:12;;25426:60;;;:::o;25492:142::-;25542:9;25575:53;25593:34;25602:24;25620:5;25602:24;:::i;:::-;25593:34;:::i;:::-;25575:53;:::i;:::-;25562:66;;25492:142;;;:::o;25640:75::-;25683:3;25704:5;25697:12;;25640:75;;;:::o;25721:269::-;25831:39;25862:7;25831:39;:::i;:::-;25892:91;25941:41;25965:16;25941:41;:::i;:::-;25933:6;25926:4;25920:11;25892:91;:::i;:::-;25886:4;25879:105;25797:193;25721:269;;;:::o;25996:73::-;26041:3;25996:73;:::o;26075:189::-;26152:32;;:::i;:::-;26193:65;26251:6;26243;26237:4;26193:65;:::i;:::-;26128:136;26075:189;;:::o;26270:186::-;26330:120;26347:3;26340:5;26337:14;26330:120;;;26401:39;26438:1;26431:5;26401:39;:::i;:::-;26374:1;26367:5;26363:13;26354:22;;26330:120;;;26270:186;;:::o;26462:543::-;26563:2;26558:3;26555:11;26552:446;;;26597:38;26629:5;26597:38;:::i;:::-;26681:29;26699:10;26681:29;:::i;:::-;26671:8;26667:44;26864:2;26852:10;26849:18;26846:49;;;26885:8;26870:23;;26846:49;26908:80;26964:22;26982:3;26964:22;:::i;:::-;26954:8;26950:37;26937:11;26908:80;:::i;:::-;26567:431;;26552:446;26462:543;;;:::o;27011:117::-;27065:8;27115:5;27109:4;27105:16;27084:37;;27011:117;;;;:::o;27134:169::-;27178:6;27211:51;27259:1;27255:6;27247:5;27244:1;27240:13;27211:51;:::i;:::-;27207:56;27292:4;27286;27282:15;27272:25;;27185:118;27134:169;;;;:::o;27308:295::-;27384:4;27530:29;27555:3;27549:4;27530:29;:::i;:::-;27522:37;;27592:3;27589:1;27585:11;27579:4;27576:21;27568:29;;27308:295;;;;:::o;27608:1395::-;27725:37;27758:3;27725:37;:::i;:::-;27827:18;27819:6;27816:30;27813:56;;;27849:18;;:::i;:::-;27813:56;27893:38;27925:4;27919:11;27893:38;:::i;:::-;27978:67;28038:6;28030;28024:4;27978:67;:::i;:::-;28072:1;28096:4;28083:17;;28128:2;28120:6;28117:14;28145:1;28140:618;;;;28802:1;28819:6;28816:77;;;28868:9;28863:3;28859:19;28853:26;28844:35;;28816:77;28919:67;28979:6;28972:5;28919:67;:::i;:::-;28913:4;28906:81;28775:222;28110:887;;28140:618;28192:4;28188:9;28180:6;28176:22;28226:37;28258:4;28226:37;:::i;:::-;28285:1;28299:208;28313:7;28310:1;28307:14;28299:208;;;28392:9;28387:3;28383:19;28377:26;28369:6;28362:42;28443:1;28435:6;28431:14;28421:24;;28490:2;28479:9;28475:18;28462:31;;28336:4;28333:1;28329:12;28324:17;;28299:208;;;28535:6;28526:7;28523:19;28520:179;;;28593:9;28588:3;28584:19;28578:26;28636:48;28678:4;28670:6;28666:17;28655:9;28636:48;:::i;:::-;28628:6;28621:64;28543:156;28520:179;28745:1;28741;28733:6;28729:14;28725:22;28719:4;28712:36;28147:611;;;28110:887;;27700:1303;;;27608:1395;;:::o;29009:234::-;29149:34;29145:1;29137:6;29133:14;29126:58;29218:17;29213:2;29205:6;29201:15;29194:42;29009:234;:::o;29249:366::-;29391:3;29412:67;29476:2;29471:3;29412:67;:::i;:::-;29405:74;;29488:93;29577:3;29488:93;:::i;:::-;29606:2;29601:3;29597:12;29590:19;;29249:366;;;:::o;29621:419::-;29787:4;29825:2;29814:9;29810:18;29802:26;;29874:9;29868:4;29864:20;29860:1;29849:9;29845:17;29838:47;29902:131;30028:4;29902:131;:::i;:::-;29894:139;;29621:419;;;:::o;30046:148::-;30148:11;30185:3;30170:18;;30046:148;;;;:::o;30200:390::-;30306:3;30334:39;30367:5;30334:39;:::i;:::-;30389:89;30471:6;30466:3;30389:89;:::i;:::-;30382:96;;30487:65;30545:6;30540:3;30533:4;30526:5;30522:16;30487:65;:::i;:::-;30577:6;30572:3;30568:16;30561:23;;30310:280;30200:390;;;;:::o;30620:874::-;30723:3;30760:5;30754:12;30789:36;30815:9;30789:36;:::i;:::-;30841:89;30923:6;30918:3;30841:89;:::i;:::-;30834:96;;30961:1;30950:9;30946:17;30977:1;30972:166;;;;31152:1;31147:341;;;;30939:549;;30972:166;31056:4;31052:9;31041;31037:25;31032:3;31025:38;31118:6;31111:14;31104:22;31096:6;31092:35;31087:3;31083:45;31076:52;;30972:166;;31147:341;31214:38;31246:5;31214:38;:::i;:::-;31274:1;31288:154;31302:6;31299:1;31296:13;31288:154;;;31376:7;31370:14;31366:1;31361:3;31357:11;31350:35;31426:1;31417:7;31413:15;31402:26;;31324:4;31321:1;31317:12;31312:17;;31288:154;;;31471:6;31466:3;31462:16;31455:23;;31154:334;;30939:549;;30727:767;;30620:874;;;;:::o;31500:589::-;31725:3;31747:95;31838:3;31829:6;31747:95;:::i;:::-;31740:102;;31859:95;31950:3;31941:6;31859:95;:::i;:::-;31852:102;;31971:92;32059:3;32050:6;31971:92;:::i;:::-;31964:99;;32080:3;32073:10;;31500:589;;;;;;:::o;32095:194::-;32135:4;32155:20;32173:1;32155:20;:::i;:::-;32150:25;;32189:20;32207:1;32189:20;:::i;:::-;32184:25;;32233:1;32230;32226:9;32218:17;;32257:1;32251:4;32248:11;32245:37;;;32262:18;;:::i;:::-;32245:37;32095:194;;;;:::o;32295:225::-;32435:34;32431:1;32423:6;32419:14;32412:58;32504:8;32499:2;32491:6;32487:15;32480:33;32295:225;:::o;32526:366::-;32668:3;32689:67;32753:2;32748:3;32689:67;:::i;:::-;32682:74;;32765:93;32854:3;32765:93;:::i;:::-;32883:2;32878:3;32874:12;32867:19;;32526:366;;;:::o;32898:419::-;33064:4;33102:2;33091:9;33087:18;33079:26;;33151:9;33145:4;33141:20;33137:1;33126:9;33122:17;33115:47;33179:131;33305:4;33179:131;:::i;:::-;33171:139;;32898:419;;;:::o;33323:182::-;33463:34;33459:1;33451:6;33447:14;33440:58;33323:182;:::o;33511:366::-;33653:3;33674:67;33738:2;33733:3;33674:67;:::i;:::-;33667:74;;33750:93;33839:3;33750:93;:::i;:::-;33868:2;33863:3;33859:12;33852:19;;33511:366;;;:::o;33883:419::-;34049:4;34087:2;34076:9;34072:18;34064:26;;34136:9;34130:4;34126:20;34122:1;34111:9;34107:17;34100:47;34164:131;34290:4;34164:131;:::i;:::-;34156:139;;33883:419;;;:::o;34308:98::-;34359:6;34393:5;34387:12;34377:22;;34308:98;;;:::o;34412:168::-;34495:11;34529:6;34524:3;34517:19;34569:4;34564:3;34560:14;34545:29;;34412:168;;;;:::o;34586:373::-;34672:3;34700:38;34732:5;34700:38;:::i;:::-;34754:70;34817:6;34812:3;34754:70;:::i;:::-;34747:77;;34833:65;34891:6;34886:3;34879:4;34872:5;34868:16;34833:65;:::i;:::-;34923:29;34945:6;34923:29;:::i;:::-;34918:3;34914:39;34907:46;;34676:283;34586:373;;;;:::o;34965:640::-;35160:4;35198:3;35187:9;35183:19;35175:27;;35212:71;35280:1;35269:9;35265:17;35256:6;35212:71;:::i;:::-;35293:72;35361:2;35350:9;35346:18;35337:6;35293:72;:::i;:::-;35375;35443:2;35432:9;35428:18;35419:6;35375:72;:::i;:::-;35494:9;35488:4;35484:20;35479:2;35468:9;35464:18;35457:48;35522:76;35593:4;35584:6;35522:76;:::i;:::-;35514:84;;34965:640;;;;;;;:::o;35611:141::-;35667:5;35698:6;35692:13;35683:22;;35714:32;35740:5;35714:32;:::i;:::-;35611:141;;;;:::o;35758:349::-;35827:6;35876:2;35864:9;35855:7;35851:23;35847:32;35844:119;;;35882:79;;:::i;:::-;35844:119;36002:1;36027:63;36082:7;36073:6;36062:9;36058:22;36027:63;:::i;:::-;36017:73;;35973:127;35758:349;;;;:::o;36113:233::-;36152:3;36175:24;36193:5;36175:24;:::i;:::-;36166:33;;36221:66;36214:5;36211:77;36208:103;;36291:18;;:::i;:::-;36208:103;36338:1;36331:5;36327:13;36320:20;;36113:233;;;:::o;36352:176::-;36384:1;36401:20;36419:1;36401:20;:::i;:::-;36396:25;;36435:20;36453:1;36435:20;:::i;:::-;36430:25;;36474:1;36464:35;;36479:18;;:::i;:::-;36464:35;36520:1;36517;36513:9;36508:14;;36352:176;;;;:::o;36534:180::-;36582:77;36579:1;36572:88;36679:4;36676:1;36669:15;36703:4;36700:1;36693:15

Swarm Source

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