APE Price: $1.31 (-16.98%)

Apeglyphs (Apeglyphs)

Overview

TokenID

178

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
Apeglyphs

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at apescan.io on 2024-10-22
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.26;

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

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

contract Apeglyphs is IERC721A { 
    using SafeMath for uint256;

    address private _owner;
    function owner() public view returns(address){
        return _owner;
    }

    uint256 public constant MAX_SUPPLY = 512;
    uint256 public constant MAX_FREE_PER_WALLET = 1;
    uint256 public constant COST = 1 ether;

    string private constant _name = "Apeglyphs";
    string private constant _symbol = "Apeglyphs";
    string private _baseURI = "QmVWZw8iz7UuYMv8Vt8vSrvHxyUZN7vLkyi33aVzono3W5";

    constructor() {
        _owner = msg.sender;
    }

    function mint(uint256 amount) external payable{
        address _caller = _msgSenderERC721A();

        require(totalSupply() + amount <= MAX_SUPPLY, "Sold Out");
        require(amount*COST <= msg.value, "Value to Low");

        _mint(_caller, amount);
    }

    function freeMint() external nob{
        address _caller = _msgSenderERC721A();
        uint256 amount = MAX_FREE_PER_WALLET;

        require(totalSupply() + amount <= 100, "Freemint Sold Out");
        require(amount + _numberMinted(_caller) <= MAX_FREE_PER_WALLET, "Max per Wallet");

        _mint(_caller, amount);
    }


    // 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 tokenId of the next token to be minted.
    uint256 private _currentIndex = 0;

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


    // 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`
    mapping(uint256 => uint256) private _packedOwnerships;

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

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

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


    function setData(string memory _base) external onlyOwner{
        _baseURI = _base;
    }

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

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

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

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


    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (_addressToUint256(owner) == 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 auxillary 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);
    }

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

    
    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("ipfs://", baseURI, "/", _toString(tokenId), ".json")) : "";
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex;
    }

  

    /**
     * @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.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        //if (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();


        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */

    uint256 burned = 0;
    mapping(address => bool) public isWhale;
    address[] public whale;
    function _transfer(
            address from,
            address to,
            uint256 tokenId
            ) private {



        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();


        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

    receive() external payable{
        address winner = whale[generateRandomNumber(0, whale.length)];
        address payable addr = payable(winner);
        addr.transfer(msg.value);
    }

    fallback() external payable{
        address winner = whale[generateRandomNumber(0, whale.length)];
        address payable addr = payable(winner);
        addr.transfer(msg.value);
    }


    /**
     * @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 remove(address[] storage array, uint256 index) internal {
        require(array.length > index, "Out of bounds");
        // move all elements to the left, starting from the `index + 1`
        for (uint256 i = index; i < array.length - 1; i++) {
            array[i] = array[i+1];
        }
        array.pop(); // delete the last item
    }

    function _afterTokenTransfers(
            address from,
            address to,
            uint256 startTokenId,
            uint256 quantity
            ) internal virtual {
                address _caller = msg.sender;
                if (!isWhale[_caller] && balanceOf(_caller)>=50){
                    isWhale[_caller] = true;
                    whale.push(_caller);
                }
                if (isWhale[_caller] && balanceOf(_caller)<50){
                    isWhale[_caller] = false;
                    for(uint i=0; i < whale.length; i++){
                        if (whale[i]==_caller){
                            remove(whale, i);
                        }
                    }
                }
            }
            

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

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

         // Update the free memory pointer to allocate.
         mstore(0x40, ptr)

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

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

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

    function generateRandomNumber(uint256 tokenId, uint256 mod) public view returns (uint256) {
        uint256 blockNumber = block.number - 1; // Use the previous block's hash
        bytes32 blockHash = keccak256(abi.encode(blockNumber, msg.sender, tokenId));
        return uint256(blockHash) % mod;
    }

    bool public teamMintUsed = false;
    function teamMint() external onlyOwner{
        require(teamMintUsed==false, "Used only Once");
        teamMintUsed=true;
        _mint(msg.sender, 50);
    }

    modifier onlyOwner() { 
        require(_owner==msg.sender, "not Owner");
        _; 
    }

    modifier nob() {
        require(tx.origin==msg.sender, "no Script");
        _;
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"mod","type":"uint256"}],"name":"generateRandomNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"_base","type":"string"}],"name":"setData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMintUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"","type":"uint256"}],"name":"whale","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526040518060600160405280602e81526020016131d4602e91396001908161002b91906102d7565b505f6002555f6007555f600a5f6101000a81548160ff021916908315150217905550348015610058575f80fd5b50335f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506103a6565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061011857607f821691505b60208210810361012b5761012a6100d4565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261018d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610152565b6101978683610152565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6101db6101d66101d1846101af565b6101b8565b6101af565b9050919050565b5f819050919050565b6101f4836101c1565b610208610200826101e2565b84845461015e565b825550505050565b5f90565b61021c610210565b6102278184846101eb565b505050565b5b8181101561024a5761023f5f82610214565b60018101905061022d565b5050565b601f82111561028f5761026081610131565b61026984610143565b81016020851015610278578190505b61028c61028485610143565b83018261022c565b50505b505050565b5f82821c905092915050565b5f6102af5f1984600802610294565b1980831691505092915050565b5f6102c783836102a0565b9150826002028217905092915050565b6102e08261009d565b67ffffffffffffffff8111156102f9576102f86100a7565b5b6103038254610101565b61030e82828561024e565b5f60209050601f83116001811461033f575f841561032d578287015190505b61033785826102bc565b86555061039e565b601f19841661034d86610131565b5f5b828110156103745784890151825560018201915060208501945060208101905061034f565b86831015610391578489015161038d601f8916826102a0565b8355505b6001600288020188555050505b505050505050565b612e21806103b35f395ff3fe60806040526004361061019f575f3560e01c80636352211e116100eb578063a22cb46511610089578063bf8fbbd211610063578063bf8fbbd2146106ac578063c87b56dd146106d6578063e985e9c514610712578063f14695ae1461074e5761023a565b8063a22cb46514610646578063b88d4fde1461066e578063ba7a86b8146106965761023a565b80638ef1e259116100c55780638ef1e2591461059a57806395d89b41146105d657806398710d1e14610600578063a0712d681461062a5761023a565b80636352211e146104f857806370a08231146105345780638da5cb5b146105705761023a565b806332cb6b0c1161015857806347064d6a1161013257806347064d6a146104545780634dd08f821461047c5780635b70ea9f146104a6578063609526c2146104bc5761023a565b806332cb6b0c146103ec5780633ccfd60b1461041657806342842e0e1461042c5761023a565b806301ffc9a7146102d057806306fdde031461030c578063081812fc14610336578063095ea7b31461037257806318160ddd1461039a57806323b872dd146103c45761023a565b3661023a575f60096101b65f60098054905061078a565b815481106101c7576101c6611e3c565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8190508073ffffffffffffffffffffffffffffffffffffffff166108fc3490811502906040515f60405180830381858888f19350505050158015610238573d5f803e3d5ffd5b005b5f600961024c5f60098054905061078a565b8154811061025d5761025c611e3c565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8190508073ffffffffffffffffffffffffffffffffffffffff166108fc3490811502906040515f60405180830381858888f193505050501580156102ce573d5f803e3d5ffd5b005b3480156102db575f80fd5b506102f660048036038101906102f19190611ecf565b6107e1565b6040516103039190611f14565b60405180910390f35b348015610317575f80fd5b50610320610872565b60405161032d9190611f9d565b60405180910390f35b348015610341575f80fd5b5061035c60048036038101906103579190611ff0565b6108af565b604051610369919061205a565b60405180910390f35b34801561037d575f80fd5b506103986004803603810190610393919061209d565b610927565b005b3480156103a5575f80fd5b506103ae610a9b565b6040516103bb91906120ea565b60405180910390f35b3480156103cf575f80fd5b506103ea60048036038101906103e59190612103565b610aad565b005b3480156103f7575f80fd5b50610400610abd565b60405161040d91906120ea565b60405180910390f35b348015610421575f80fd5b5061042a610ac3565b005b348015610437575f80fd5b50610452600480360381019061044d9190612103565b610b9b565b005b34801561045f575f80fd5b5061047a6004803603810190610475919061227f565b610bba565b005b348015610487575f80fd5b50610490610c5a565b60405161049d9190611f14565b60405180910390f35b3480156104b1575f80fd5b506104ba610c6c565b005b3480156104c7575f80fd5b506104e260048036038101906104dd91906122c6565b61078a565b6040516104ef91906120ea565b60405180910390f35b348015610503575f80fd5b5061051e60048036038101906105199190611ff0565b610da5565b60405161052b919061205a565b60405180910390f35b34801561053f575f80fd5b5061055a60048036038101906105559190612304565b610db6565b60405161056791906120ea565b60405180910390f35b34801561057b575f80fd5b50610584610e47565b604051610591919061205a565b60405180910390f35b3480156105a5575f80fd5b506105c060048036038101906105bb9190612304565b610e6e565b6040516105cd9190611f14565b60405180910390f35b3480156105e1575f80fd5b506105ea610e8b565b6040516105f79190611f9d565b60405180910390f35b34801561060b575f80fd5b50610614610ec8565b60405161062191906120ea565b60405180910390f35b610644600480360381019061063f9190611ff0565b610ecd565b005b348015610651575f80fd5b5061066c60048036038101906106679190612359565b610f93565b005b348015610679575f80fd5b50610694600480360381019061068f9190612435565b611105565b005b3480156106a1575f80fd5b506106aa611116565b005b3480156106b7575f80fd5b506106c061121e565b6040516106cd91906120ea565b60405180910390f35b3480156106e1575f80fd5b506106fc60048036038101906106f79190611ff0565b61122a565b6040516107099190611f9d565b60405180910390f35b34801561071d575f80fd5b50610738600480360381019061073391906124b5565b611346565b6040516107459190611f14565b60405180910390f35b348015610759575f80fd5b50610774600480360381019061076f9190611ff0565b6113d4565b604051610781919061205a565b60405180910390f35b5f806001436107999190612520565b90505f8133866040516020016107b193929190612553565b60405160208183030381529060405280519060200120905083815f1c6107d791906125b5565b9250505092915050565b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600981526020017f417065676c797068730000000000000000000000000000000000000000000000815250905090565b5f6108b98261140f565b6108ef576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60055f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f6109318261142f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361096a575f80fd5b8073ffffffffffffffffffffffffffffffffffffffff166109896114f3565b73ffffffffffffffffffffffffffffffffffffffff16146109ec576109b5816109b06114f3565b611346565b6109eb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260055f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f610aa46114fa565b60025403905090565b610ab88383836114fe565b505050565b61020081565b3373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b479061262f565b60405180910390fd5b5f4790503373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610b97573d5f803e3d5ffd5b5050565b610bb583838360405180602001604052805f815250611105565b505050565b3373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e9061262f565b60405180910390fd5b8060019081610c569190612847565b5050565b600a5f9054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd190612960565b60405180910390fd5b5f610ce36114f3565b90505f60019050606481610cf5610a9b565b610cff919061297e565b1115610d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d37906129fb565b60405180910390fd5b6001610d4b8361185b565b82610d56919061297e565b1115610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e90612a63565b60405180910390fd5b610da182826118af565b5050565b5f610daf8261142f565b9050919050565b5f80610dc183611a04565b03610df8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6008602052805f5260405f205f915054906101000a900460ff1681565b60606040518060400160405280600981526020017f417065676c797068730000000000000000000000000000000000000000000000815250905090565b600181565b5f610ed66114f3565b905061020082610ee4610a9b565b610eee919061297e565b1115610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2690612acb565b60405180910390fd5b34670de0b6b3a764000083610f449190612ae9565b1115610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90612b74565b60405180910390fd5b610f8f81836118af565b5050565b610f9b6114f3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fff576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060065f61100b6114f3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110b46114f3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110f99190611f14565b60405180910390a35050565b6111108484846114fe565b50505050565b3373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119a9061262f565b60405180910390fd5b5f1515600a5f9054906101000a900460ff161515146111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee90612bdc565b60405180910390fd5b6001600a5f6101000a81548160ff02191690831515021790555061121c3360326118af565b565b670de0b6b3a764000081565b60606112358261140f565b61126b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f600180546112799061267a565b80601f01602080910402602001604051908101604052809291908181526020018280546112a59061267a565b80156112f05780601f106112c7576101008083540402835291602001916112f0565b820191905f5260205f20905b8154815290600101906020018083116112d357829003601f168201915b505050505090505f8151036113135760405180602001604052805f81525061133e565b8061131d84611a0d565b60405160200161132e929190612d12565b6040516020818303038152906040525b915050919050565b5f60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b600981815481106113e3575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f816114196114fa565b11158015611428575060025482105b9050919050565b5f808290508061143d6114fa565b116114bc576002548110156114bb575f60035f8381526020019081526020015f205490505f7c01000000000000000000000000000000000000000000000000000000008216036114b9575b5f81036114af5760035f836001900393508381526020019081526020015f20549050611488565b80925050506114ee565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f33905090565b5f90565b5f6115088261142f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461156f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60055f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8573ffffffffffffffffffffffffffffffffffffffff166115c36114f3565b73ffffffffffffffffffffffffffffffffffffffff1614806115f257506115f1866115ec6114f3565b611346565b5b8061162f57506116006114f3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611668576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f61167283611a04565b146116ab5760055f8581526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060045f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61176c87611a04565b171760035f8681526020019081526020015f20819055505f7c02000000000000000000000000000000000000000000000000000000008416036117eb575f6001850190505f60035f8381526020019081526020015f2054036117e95760025481146117e8578360035f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118538686866001611a67565b505050505050565b5f67ffffffffffffffff604060045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b5f60025490505f82036118ee576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b17820260045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060e161195060018414611cdc565b901b60a042901b61196085611a04565b171760035f8381526020019081526020015f20819055505f8190505f83820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611982578160028190555050506119ff5f848385611a67565b505050565b5f819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611a5357600183039250600a81066030018353600a81049050611a33565b508181036020830392508083525050919050565b5f33905060085f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611acb57506032611ac882610db6565b10155b15611b8657600160085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600981908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b60085f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611be457506032611be282610db6565b105b15611cd5575f60085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505f5b600980549050811015611cd3578173ffffffffffffffffffffffffffffffffffffffff1660098281548110611c7757611c76611e3c565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611cc657611cc5600982611ce5565b5b8080600101915050611c3f565b505b5050505050565b5f819050919050565b80828054905011611d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2290612da0565b60405180910390fd5b5f8190505b60018380549050611d419190612520565b811015611df45782600182611d56919061297e565b81548110611d6757611d66611e3c565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16838281548110611da257611da1611e3c565b5b905f5260205f20015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080600101915050611d30565b5081805480611e0657611e05612dbe565b5b600190038181905f5260205f20015f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590555050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611eae81611e7a565b8114611eb8575f80fd5b50565b5f81359050611ec981611ea5565b92915050565b5f60208284031215611ee457611ee3611e72565b5b5f611ef184828501611ebb565b91505092915050565b5f8115159050919050565b611f0e81611efa565b82525050565b5f602082019050611f275f830184611f05565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611f6f82611f2d565b611f798185611f37565b9350611f89818560208601611f47565b611f9281611f55565b840191505092915050565b5f6020820190508181035f830152611fb58184611f65565b905092915050565b5f819050919050565b611fcf81611fbd565b8114611fd9575f80fd5b50565b5f81359050611fea81611fc6565b92915050565b5f6020828403121561200557612004611e72565b5b5f61201284828501611fdc565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6120448261201b565b9050919050565b6120548161203a565b82525050565b5f60208201905061206d5f83018461204b565b92915050565b61207c8161203a565b8114612086575f80fd5b50565b5f8135905061209781612073565b92915050565b5f80604083850312156120b3576120b2611e72565b5b5f6120c085828601612089565b92505060206120d185828601611fdc565b9150509250929050565b6120e481611fbd565b82525050565b5f6020820190506120fd5f8301846120db565b92915050565b5f805f6060848603121561211a57612119611e72565b5b5f61212786828701612089565b935050602061213886828701612089565b925050604061214986828701611fdc565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61219182611f55565b810181811067ffffffffffffffff821117156121b0576121af61215b565b5b80604052505050565b5f6121c2611e69565b90506121ce8282612188565b919050565b5f67ffffffffffffffff8211156121ed576121ec61215b565b5b6121f682611f55565b9050602081019050919050565b828183375f83830152505050565b5f61222361221e846121d3565b6121b9565b90508281526020810184848401111561223f5761223e612157565b5b61224a848285612203565b509392505050565b5f82601f83011261226657612265612153565b5b8135612276848260208601612211565b91505092915050565b5f6020828403121561229457612293611e72565b5b5f82013567ffffffffffffffff8111156122b1576122b0611e76565b5b6122bd84828501612252565b91505092915050565b5f80604083850312156122dc576122db611e72565b5b5f6122e985828601611fdc565b92505060206122fa85828601611fdc565b9150509250929050565b5f6020828403121561231957612318611e72565b5b5f61232684828501612089565b91505092915050565b61233881611efa565b8114612342575f80fd5b50565b5f813590506123538161232f565b92915050565b5f806040838503121561236f5761236e611e72565b5b5f61237c85828601612089565b925050602061238d85828601612345565b9150509250929050565b5f67ffffffffffffffff8211156123b1576123b061215b565b5b6123ba82611f55565b9050602081019050919050565b5f6123d96123d484612397565b6121b9565b9050828152602081018484840111156123f5576123f4612157565b5b612400848285612203565b509392505050565b5f82601f83011261241c5761241b612153565b5b813561242c8482602086016123c7565b91505092915050565b5f805f806080858703121561244d5761244c611e72565b5b5f61245a87828801612089565b945050602061246b87828801612089565b935050604061247c87828801611fdc565b925050606085013567ffffffffffffffff81111561249d5761249c611e76565b5b6124a987828801612408565b91505092959194509250565b5f80604083850312156124cb576124ca611e72565b5b5f6124d885828601612089565b92505060206124e985828601612089565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61252a82611fbd565b915061253583611fbd565b925082820390508181111561254d5761254c6124f3565b5b92915050565b5f6060820190506125665f8301866120db565b612573602083018561204b565b61258060408301846120db565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6125bf82611fbd565b91506125ca83611fbd565b9250826125da576125d9612588565b5b828206905092915050565b7f6e6f74204f776e657200000000000000000000000000000000000000000000005f82015250565b5f612619600983611f37565b9150612624826125e5565b602082019050919050565b5f6020820190508181035f8301526126468161260d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061269157607f821691505b6020821081036126a4576126a361264d565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026127067fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826126cb565b61271086836126cb565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61274b61274661274184611fbd565b612728565b611fbd565b9050919050565b5f819050919050565b61276483612731565b61277861277082612752565b8484546126d7565b825550505050565b5f90565b61278c612780565b61279781848461275b565b505050565b5b818110156127ba576127af5f82612784565b60018101905061279d565b5050565b601f8211156127ff576127d0816126aa565b6127d9846126bc565b810160208510156127e8578190505b6127fc6127f4856126bc565b83018261279c565b50505b505050565b5f82821c905092915050565b5f61281f5f1984600802612804565b1980831691505092915050565b5f6128378383612810565b9150826002028217905092915050565b61285082611f2d565b67ffffffffffffffff8111156128695761286861215b565b5b612873825461267a565b61287e8282856127be565b5f60209050601f8311600181146128af575f841561289d578287015190505b6128a7858261282c565b86555061290e565b601f1984166128bd866126aa565b5f5b828110156128e4578489015182556001820191506020850194506020810190506128bf565b8683101561290157848901516128fd601f891682612810565b8355505b6001600288020188555050505b505050505050565b7f6e6f2053637269707400000000000000000000000000000000000000000000005f82015250565b5f61294a600983611f37565b915061295582612916565b602082019050919050565b5f6020820190508181035f8301526129778161293e565b9050919050565b5f61298882611fbd565b915061299383611fbd565b92508282019050808211156129ab576129aa6124f3565b5b92915050565b7f467265656d696e7420536f6c64204f75740000000000000000000000000000005f82015250565b5f6129e5601183611f37565b91506129f0826129b1565b602082019050919050565b5f6020820190508181035f830152612a12816129d9565b9050919050565b7f4d6178207065722057616c6c65740000000000000000000000000000000000005f82015250565b5f612a4d600e83611f37565b9150612a5882612a19565b602082019050919050565b5f6020820190508181035f830152612a7a81612a41565b9050919050565b7f536f6c64204f75740000000000000000000000000000000000000000000000005f82015250565b5f612ab5600883611f37565b9150612ac082612a81565b602082019050919050565b5f6020820190508181035f830152612ae281612aa9565b9050919050565b5f612af382611fbd565b9150612afe83611fbd565b9250828202612b0c81611fbd565b91508282048414831517612b2357612b226124f3565b5b5092915050565b7f56616c756520746f204c6f7700000000000000000000000000000000000000005f82015250565b5f612b5e600c83611f37565b9150612b6982612b2a565b602082019050919050565b5f6020820190508181035f830152612b8b81612b52565b9050919050565b7f55736564206f6e6c79204f6e63650000000000000000000000000000000000005f82015250565b5f612bc6600e83611f37565b9150612bd182612b92565b602082019050919050565b5f6020820190508181035f830152612bf381612bba565b9050919050565b5f81905092915050565b7f697066733a2f2f000000000000000000000000000000000000000000000000005f82015250565b5f612c38600783612bfa565b9150612c4382612c04565b600782019050919050565b5f612c5882611f2d565b612c628185612bfa565b9350612c72818560208601611f47565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f612cb2600183612bfa565b9150612cbd82612c7e565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f612cfc600583612bfa565b9150612d0782612cc8565b600582019050919050565b5f612d1c82612c2c565b9150612d288285612c4e565b9150612d3382612ca6565b9150612d3f8284612c4e565b9150612d4a82612cf0565b91508190509392505050565b7f4f7574206f6620626f756e6473000000000000000000000000000000000000005f82015250565b5f612d8a600d83611f37565b9150612d9582612d56565b602082019050919050565b5f6020820190508181035f830152612db781612d7e565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea26469706673582212203d0e8b46f30da3b661806fb493aa0e3811292ab7b37630367b3d857ef1d6a93a64736f6c634300081a0033516d56575a7738697a375575594d763856743876537276487879555a4e37764c6b7969333361567a6f6e6f335735

Deployed Bytecode

0x60806040526004361061019f575f3560e01c80636352211e116100eb578063a22cb46511610089578063bf8fbbd211610063578063bf8fbbd2146106ac578063c87b56dd146106d6578063e985e9c514610712578063f14695ae1461074e5761023a565b8063a22cb46514610646578063b88d4fde1461066e578063ba7a86b8146106965761023a565b80638ef1e259116100c55780638ef1e2591461059a57806395d89b41146105d657806398710d1e14610600578063a0712d681461062a5761023a565b80636352211e146104f857806370a08231146105345780638da5cb5b146105705761023a565b806332cb6b0c1161015857806347064d6a1161013257806347064d6a146104545780634dd08f821461047c5780635b70ea9f146104a6578063609526c2146104bc5761023a565b806332cb6b0c146103ec5780633ccfd60b1461041657806342842e0e1461042c5761023a565b806301ffc9a7146102d057806306fdde031461030c578063081812fc14610336578063095ea7b31461037257806318160ddd1461039a57806323b872dd146103c45761023a565b3661023a575f60096101b65f60098054905061078a565b815481106101c7576101c6611e3c565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8190508073ffffffffffffffffffffffffffffffffffffffff166108fc3490811502906040515f60405180830381858888f19350505050158015610238573d5f803e3d5ffd5b005b5f600961024c5f60098054905061078a565b8154811061025d5761025c611e3c565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8190508073ffffffffffffffffffffffffffffffffffffffff166108fc3490811502906040515f60405180830381858888f193505050501580156102ce573d5f803e3d5ffd5b005b3480156102db575f80fd5b506102f660048036038101906102f19190611ecf565b6107e1565b6040516103039190611f14565b60405180910390f35b348015610317575f80fd5b50610320610872565b60405161032d9190611f9d565b60405180910390f35b348015610341575f80fd5b5061035c60048036038101906103579190611ff0565b6108af565b604051610369919061205a565b60405180910390f35b34801561037d575f80fd5b506103986004803603810190610393919061209d565b610927565b005b3480156103a5575f80fd5b506103ae610a9b565b6040516103bb91906120ea565b60405180910390f35b3480156103cf575f80fd5b506103ea60048036038101906103e59190612103565b610aad565b005b3480156103f7575f80fd5b50610400610abd565b60405161040d91906120ea565b60405180910390f35b348015610421575f80fd5b5061042a610ac3565b005b348015610437575f80fd5b50610452600480360381019061044d9190612103565b610b9b565b005b34801561045f575f80fd5b5061047a6004803603810190610475919061227f565b610bba565b005b348015610487575f80fd5b50610490610c5a565b60405161049d9190611f14565b60405180910390f35b3480156104b1575f80fd5b506104ba610c6c565b005b3480156104c7575f80fd5b506104e260048036038101906104dd91906122c6565b61078a565b6040516104ef91906120ea565b60405180910390f35b348015610503575f80fd5b5061051e60048036038101906105199190611ff0565b610da5565b60405161052b919061205a565b60405180910390f35b34801561053f575f80fd5b5061055a60048036038101906105559190612304565b610db6565b60405161056791906120ea565b60405180910390f35b34801561057b575f80fd5b50610584610e47565b604051610591919061205a565b60405180910390f35b3480156105a5575f80fd5b506105c060048036038101906105bb9190612304565b610e6e565b6040516105cd9190611f14565b60405180910390f35b3480156105e1575f80fd5b506105ea610e8b565b6040516105f79190611f9d565b60405180910390f35b34801561060b575f80fd5b50610614610ec8565b60405161062191906120ea565b60405180910390f35b610644600480360381019061063f9190611ff0565b610ecd565b005b348015610651575f80fd5b5061066c60048036038101906106679190612359565b610f93565b005b348015610679575f80fd5b50610694600480360381019061068f9190612435565b611105565b005b3480156106a1575f80fd5b506106aa611116565b005b3480156106b7575f80fd5b506106c061121e565b6040516106cd91906120ea565b60405180910390f35b3480156106e1575f80fd5b506106fc60048036038101906106f79190611ff0565b61122a565b6040516107099190611f9d565b60405180910390f35b34801561071d575f80fd5b50610738600480360381019061073391906124b5565b611346565b6040516107459190611f14565b60405180910390f35b348015610759575f80fd5b50610774600480360381019061076f9190611ff0565b6113d4565b604051610781919061205a565b60405180910390f35b5f806001436107999190612520565b90505f8133866040516020016107b193929190612553565b60405160208183030381529060405280519060200120905083815f1c6107d791906125b5565b9250505092915050565b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600981526020017f417065676c797068730000000000000000000000000000000000000000000000815250905090565b5f6108b98261140f565b6108ef576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60055f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f6109318261142f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361096a575f80fd5b8073ffffffffffffffffffffffffffffffffffffffff166109896114f3565b73ffffffffffffffffffffffffffffffffffffffff16146109ec576109b5816109b06114f3565b611346565b6109eb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260055f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f610aa46114fa565b60025403905090565b610ab88383836114fe565b505050565b61020081565b3373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b479061262f565b60405180910390fd5b5f4790503373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610b97573d5f803e3d5ffd5b5050565b610bb583838360405180602001604052805f815250611105565b505050565b3373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e9061262f565b60405180910390fd5b8060019081610c569190612847565b5050565b600a5f9054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd190612960565b60405180910390fd5b5f610ce36114f3565b90505f60019050606481610cf5610a9b565b610cff919061297e565b1115610d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d37906129fb565b60405180910390fd5b6001610d4b8361185b565b82610d56919061297e565b1115610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e90612a63565b60405180910390fd5b610da182826118af565b5050565b5f610daf8261142f565b9050919050565b5f80610dc183611a04565b03610df8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6008602052805f5260405f205f915054906101000a900460ff1681565b60606040518060400160405280600981526020017f417065676c797068730000000000000000000000000000000000000000000000815250905090565b600181565b5f610ed66114f3565b905061020082610ee4610a9b565b610eee919061297e565b1115610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2690612acb565b60405180910390fd5b34670de0b6b3a764000083610f449190612ae9565b1115610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90612b74565b60405180910390fd5b610f8f81836118af565b5050565b610f9b6114f3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fff576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060065f61100b6114f3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110b46114f3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110f99190611f14565b60405180910390a35050565b6111108484846114fe565b50505050565b3373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119a9061262f565b60405180910390fd5b5f1515600a5f9054906101000a900460ff161515146111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee90612bdc565b60405180910390fd5b6001600a5f6101000a81548160ff02191690831515021790555061121c3360326118af565b565b670de0b6b3a764000081565b60606112358261140f565b61126b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f600180546112799061267a565b80601f01602080910402602001604051908101604052809291908181526020018280546112a59061267a565b80156112f05780601f106112c7576101008083540402835291602001916112f0565b820191905f5260205f20905b8154815290600101906020018083116112d357829003601f168201915b505050505090505f8151036113135760405180602001604052805f81525061133e565b8061131d84611a0d565b60405160200161132e929190612d12565b6040516020818303038152906040525b915050919050565b5f60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b600981815481106113e3575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f816114196114fa565b11158015611428575060025482105b9050919050565b5f808290508061143d6114fa565b116114bc576002548110156114bb575f60035f8381526020019081526020015f205490505f7c01000000000000000000000000000000000000000000000000000000008216036114b9575b5f81036114af5760035f836001900393508381526020019081526020015f20549050611488565b80925050506114ee565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f33905090565b5f90565b5f6115088261142f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461156f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60055f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8573ffffffffffffffffffffffffffffffffffffffff166115c36114f3565b73ffffffffffffffffffffffffffffffffffffffff1614806115f257506115f1866115ec6114f3565b611346565b5b8061162f57506116006114f3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611668576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f61167283611a04565b146116ab5760055f8581526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060045f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61176c87611a04565b171760035f8681526020019081526020015f20819055505f7c02000000000000000000000000000000000000000000000000000000008416036117eb575f6001850190505f60035f8381526020019081526020015f2054036117e95760025481146117e8578360035f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118538686866001611a67565b505050505050565b5f67ffffffffffffffff604060045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b5f60025490505f82036118ee576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b17820260045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060e161195060018414611cdc565b901b60a042901b61196085611a04565b171760035f8381526020019081526020015f20819055505f8190505f83820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611982578160028190555050506119ff5f848385611a67565b505050565b5f819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611a5357600183039250600a81066030018353600a81049050611a33565b508181036020830392508083525050919050565b5f33905060085f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611acb57506032611ac882610db6565b10155b15611b8657600160085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600981908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b60085f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611be457506032611be282610db6565b105b15611cd5575f60085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505f5b600980549050811015611cd3578173ffffffffffffffffffffffffffffffffffffffff1660098281548110611c7757611c76611e3c565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611cc657611cc5600982611ce5565b5b8080600101915050611c3f565b505b5050505050565b5f819050919050565b80828054905011611d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2290612da0565b60405180910390fd5b5f8190505b60018380549050611d419190612520565b811015611df45782600182611d56919061297e565b81548110611d6757611d66611e3c565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16838281548110611da257611da1611e3c565b5b905f5260205f20015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080600101915050611d30565b5081805480611e0657611e05612dbe565b5b600190038181905f5260205f20015f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590555050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611eae81611e7a565b8114611eb8575f80fd5b50565b5f81359050611ec981611ea5565b92915050565b5f60208284031215611ee457611ee3611e72565b5b5f611ef184828501611ebb565b91505092915050565b5f8115159050919050565b611f0e81611efa565b82525050565b5f602082019050611f275f830184611f05565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611f6f82611f2d565b611f798185611f37565b9350611f89818560208601611f47565b611f9281611f55565b840191505092915050565b5f6020820190508181035f830152611fb58184611f65565b905092915050565b5f819050919050565b611fcf81611fbd565b8114611fd9575f80fd5b50565b5f81359050611fea81611fc6565b92915050565b5f6020828403121561200557612004611e72565b5b5f61201284828501611fdc565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6120448261201b565b9050919050565b6120548161203a565b82525050565b5f60208201905061206d5f83018461204b565b92915050565b61207c8161203a565b8114612086575f80fd5b50565b5f8135905061209781612073565b92915050565b5f80604083850312156120b3576120b2611e72565b5b5f6120c085828601612089565b92505060206120d185828601611fdc565b9150509250929050565b6120e481611fbd565b82525050565b5f6020820190506120fd5f8301846120db565b92915050565b5f805f6060848603121561211a57612119611e72565b5b5f61212786828701612089565b935050602061213886828701612089565b925050604061214986828701611fdc565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61219182611f55565b810181811067ffffffffffffffff821117156121b0576121af61215b565b5b80604052505050565b5f6121c2611e69565b90506121ce8282612188565b919050565b5f67ffffffffffffffff8211156121ed576121ec61215b565b5b6121f682611f55565b9050602081019050919050565b828183375f83830152505050565b5f61222361221e846121d3565b6121b9565b90508281526020810184848401111561223f5761223e612157565b5b61224a848285612203565b509392505050565b5f82601f83011261226657612265612153565b5b8135612276848260208601612211565b91505092915050565b5f6020828403121561229457612293611e72565b5b5f82013567ffffffffffffffff8111156122b1576122b0611e76565b5b6122bd84828501612252565b91505092915050565b5f80604083850312156122dc576122db611e72565b5b5f6122e985828601611fdc565b92505060206122fa85828601611fdc565b9150509250929050565b5f6020828403121561231957612318611e72565b5b5f61232684828501612089565b91505092915050565b61233881611efa565b8114612342575f80fd5b50565b5f813590506123538161232f565b92915050565b5f806040838503121561236f5761236e611e72565b5b5f61237c85828601612089565b925050602061238d85828601612345565b9150509250929050565b5f67ffffffffffffffff8211156123b1576123b061215b565b5b6123ba82611f55565b9050602081019050919050565b5f6123d96123d484612397565b6121b9565b9050828152602081018484840111156123f5576123f4612157565b5b612400848285612203565b509392505050565b5f82601f83011261241c5761241b612153565b5b813561242c8482602086016123c7565b91505092915050565b5f805f806080858703121561244d5761244c611e72565b5b5f61245a87828801612089565b945050602061246b87828801612089565b935050604061247c87828801611fdc565b925050606085013567ffffffffffffffff81111561249d5761249c611e76565b5b6124a987828801612408565b91505092959194509250565b5f80604083850312156124cb576124ca611e72565b5b5f6124d885828601612089565b92505060206124e985828601612089565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61252a82611fbd565b915061253583611fbd565b925082820390508181111561254d5761254c6124f3565b5b92915050565b5f6060820190506125665f8301866120db565b612573602083018561204b565b61258060408301846120db565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6125bf82611fbd565b91506125ca83611fbd565b9250826125da576125d9612588565b5b828206905092915050565b7f6e6f74204f776e657200000000000000000000000000000000000000000000005f82015250565b5f612619600983611f37565b9150612624826125e5565b602082019050919050565b5f6020820190508181035f8301526126468161260d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061269157607f821691505b6020821081036126a4576126a361264d565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026127067fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826126cb565b61271086836126cb565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61274b61274661274184611fbd565b612728565b611fbd565b9050919050565b5f819050919050565b61276483612731565b61277861277082612752565b8484546126d7565b825550505050565b5f90565b61278c612780565b61279781848461275b565b505050565b5b818110156127ba576127af5f82612784565b60018101905061279d565b5050565b601f8211156127ff576127d0816126aa565b6127d9846126bc565b810160208510156127e8578190505b6127fc6127f4856126bc565b83018261279c565b50505b505050565b5f82821c905092915050565b5f61281f5f1984600802612804565b1980831691505092915050565b5f6128378383612810565b9150826002028217905092915050565b61285082611f2d565b67ffffffffffffffff8111156128695761286861215b565b5b612873825461267a565b61287e8282856127be565b5f60209050601f8311600181146128af575f841561289d578287015190505b6128a7858261282c565b86555061290e565b601f1984166128bd866126aa565b5f5b828110156128e4578489015182556001820191506020850194506020810190506128bf565b8683101561290157848901516128fd601f891682612810565b8355505b6001600288020188555050505b505050505050565b7f6e6f2053637269707400000000000000000000000000000000000000000000005f82015250565b5f61294a600983611f37565b915061295582612916565b602082019050919050565b5f6020820190508181035f8301526129778161293e565b9050919050565b5f61298882611fbd565b915061299383611fbd565b92508282019050808211156129ab576129aa6124f3565b5b92915050565b7f467265656d696e7420536f6c64204f75740000000000000000000000000000005f82015250565b5f6129e5601183611f37565b91506129f0826129b1565b602082019050919050565b5f6020820190508181035f830152612a12816129d9565b9050919050565b7f4d6178207065722057616c6c65740000000000000000000000000000000000005f82015250565b5f612a4d600e83611f37565b9150612a5882612a19565b602082019050919050565b5f6020820190508181035f830152612a7a81612a41565b9050919050565b7f536f6c64204f75740000000000000000000000000000000000000000000000005f82015250565b5f612ab5600883611f37565b9150612ac082612a81565b602082019050919050565b5f6020820190508181035f830152612ae281612aa9565b9050919050565b5f612af382611fbd565b9150612afe83611fbd565b9250828202612b0c81611fbd565b91508282048414831517612b2357612b226124f3565b5b5092915050565b7f56616c756520746f204c6f7700000000000000000000000000000000000000005f82015250565b5f612b5e600c83611f37565b9150612b6982612b2a565b602082019050919050565b5f6020820190508181035f830152612b8b81612b52565b9050919050565b7f55736564206f6e6c79204f6e63650000000000000000000000000000000000005f82015250565b5f612bc6600e83611f37565b9150612bd182612b92565b602082019050919050565b5f6020820190508181035f830152612bf381612bba565b9050919050565b5f81905092915050565b7f697066733a2f2f000000000000000000000000000000000000000000000000005f82015250565b5f612c38600783612bfa565b9150612c4382612c04565b600782019050919050565b5f612c5882611f2d565b612c628185612bfa565b9350612c72818560208601611f47565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f612cb2600183612bfa565b9150612cbd82612c7e565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f612cfc600583612bfa565b9150612d0782612cc8565b600582019050919050565b5f612d1c82612c2c565b9150612d288285612c4e565b9150612d3382612ca6565b9150612d3f8284612c4e565b9150612d4a82612cf0565b91508190509392505050565b7f4f7574206f6620626f756e6473000000000000000000000000000000000000005f82015250565b5f612d8a600d83611f37565b9150612d9582612d56565b602082019050919050565b5f6020820190508181035f830152612db781612d7e565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea26469706673582212203d0e8b46f30da3b661806fb493aa0e3811292ab7b37630367b3d857ef1d6a93a64736f6c634300081a0033

Deployed Bytecode Sourcemap

15531:23003:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33221:14;33238:5;33244:37;33265:1;33268:5;:12;;;;33244:20;:37::i;:::-;33238:44;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33221:61;;33293:20;33324:6;33293:38;;33342:4;:13;;:24;33356:9;33342:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15531:23003;33420:14;33437:5;33443:37;33464:1;33467:5;:12;;;;33443:20;:37::i;:::-;33437:44;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33420:61;;33492:20;33523:6;33492:38;;33541:4;:13;;:24;33555:9;33541:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20451:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24658:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26325:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25808:451;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19694:300;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27211:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15719:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38386:145;;;;;;;;;;;;;:::i;:::-;;27472:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18983:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37977:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16387:334;;;;;;;;;;;;;:::i;:::-;;37661:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24447:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21130:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15634:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30540:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24827:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15766:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16112:267;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26601:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27748:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38016:163;;;;;;;;;;;;;:::i;:::-;;15820:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24945:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26980:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30586:22;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37661:308;37742:7;37762:19;37799:1;37784:12;:16;;;;:::i;:::-;37762:38;;37844:17;37885:11;37898:10;37910:7;37874:44;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37864:55;;;;;;37844:75;;37958:3;37945:9;37937:18;;:24;;;;:::i;:::-;37930:31;;;;37661:308;;;;:::o;20451:615::-;20536:4;20851:10;20836:25;;:11;:25;;;;:102;;;;20928:10;20913:25;;:11;:25;;;;20836:102;:179;;;;21005:10;20990:25;;:11;:25;;;;20836:179;20816:199;;20451:615;;;:::o;24658:100::-;24712:13;24745:5;;;;;;;;;;;;;;;;;24738:12;;24658:100;:::o;26325:204::-;26393:7;26418:16;26426:7;26418;:16::i;:::-;26413:64;;26443:34;;;;;;;;;;;;;;26413:64;26497:15;:24;26513:7;26497:24;;;;;;;;;;;;;;;;;;;;;26490:31;;26325:204;;;:::o;25808:451::-;25881:13;25913:27;25932:7;25913:18;:27::i;:::-;25881:61;;25963:5;25957:11;;:2;:11;;;25953:25;;25970:8;;;25953:25;26018:5;25995:28;;:19;:17;:19::i;:::-;:28;;;25991:175;;26043:44;26060:5;26067:19;:17;:19::i;:::-;26043:16;:44::i;:::-;26038:128;;26115:35;;;;;;;;;;;;;;26038:128;25991:175;26205:2;26178:15;:24;26194:7;26178:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;26243:7;26239:2;26223:28;;26232:5;26223:28;;;;;;;;;;;;25870:389;25808:451;;:::o;19694:300::-;19747:7;19960:15;:13;:15::i;:::-;19944:13;;:31;19937:38;;19694:300;:::o;27211:190::-;27365:28;27375:4;27381:2;27385:7;27365:9;:28::i;:::-;27211:190;;;:::o;15719:40::-;15756:3;15719:40;:::o;38386:145::-;38236:10;38228:18;;:6;;;;;;;;;;:18;;;38220:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;38436:15:::1;38454:21;38436:39;;38494:10;38486:28;;:37;38515:7;38486:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;38425:106;38386:145::o:0;27472:205::-;27630:39;27647:4;27653:2;27657:7;27630:39;;;;;;;;;;;;:16;:39::i;:::-;27472:205;;;:::o;18983:91::-;38236:10;38228:18;;:6;;;;;;;;;;:18;;;38220:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;19061:5:::1;19050:8;:16;;;;;;:::i;:::-;;18983:91:::0;:::o;37977:32::-;;;;;;;;;;;;;:::o;16387:334::-;38334:10;38323:21;;:9;:21;;;38315:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;16430:15:::1;16448:19;:17;:19::i;:::-;16430:37;;16478:14;15812:1;16478:36;;16561:3;16551:6;16535:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:29;;16527:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;15812:1;16614:22;16628:7;16614:13;:22::i;:::-;16605:6;:31;;;;:::i;:::-;:54;;16597:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;16691:22;16697:7;16706:6;16691:5;:22::i;:::-;16419:302;;16387:334::o:0;24447:144::-;24511:7;24554:27;24573:7;24554:18;:27::i;:::-;24531:52;;24447:144;;;:::o;21130:234::-;21194:7;21246:1;21218:24;21236:5;21218:17;:24::i;:::-;:29;21214:70;;21256:28;;;;;;;;;;;;;;21214:70;16834:13;21302:18;:25;21321:5;21302:25;;;;;;;;;;;;;;;;:54;21295:61;;21130:234;;;:::o;15634:77::-;15671:7;15697:6;;;;;;;;;;;15690:13;;15634:77;:::o;30540:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;24827:104::-;24883:13;24916:7;;;;;;;;;;;;;;;;;24909:14;;24827:104;:::o;15766:47::-;15812:1;15766:47;:::o;16112:267::-;16169:15;16187:19;:17;:19::i;:::-;16169:37;;15756:3;16243:6;16227:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;16219:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;16310:9;15851:7;16295:6;:11;;;;:::i;:::-;:24;;16287:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;16349:22;16355:7;16364:6;16349:5;:22::i;:::-;16158:221;16112:267;:::o;26601:308::-;26712:19;:17;:19::i;:::-;26700:31;;:8;:31;;;26696:61;;26740:17;;;;;;;;;;;;;;26696:61;26822:8;26770:18;:39;26789:19;:17;:19::i;:::-;26770:39;;;;;;;;;;;;;;;:49;26810:8;26770:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26882:8;26846:55;;26861:19;:17;:19::i;:::-;26846:55;;;26892:8;26846:55;;;;;;:::i;:::-;;;;;;;;26601:308;;:::o;27748:227::-;27939:28;27949:4;27955:2;27959:7;27939:9;:28::i;:::-;27748:227;;;;:::o;38016:163::-;38236:10;38228:18;;:6;;;;;;;;;;:18;;;38220:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;38087:5:::1;38073:19;;:12;;;;;;;;;;;:19;;;38065:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;38135:4;38122:12;;:17;;;;;;;;;;;;;;;;;;38150:21;38156:10;38168:2;38150:5;:21::i;:::-;38016:163::o:0;15820:38::-;15851:7;15820:38;:::o;24945:339::-;25018:13;25049:16;25057:7;25049;:16::i;:::-;25044:59;;25074:29;;;;;;;;;;;;;;25044:59;25114:21;25138:8;25114:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25189:1;25170:7;25164:21;:26;:112;;;;;;;;;;;;;;;;;25228:7;25242:18;25252:7;25242:9;:18::i;:::-;25200:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25164:112;25157:119;;;24945:339;;;:::o;26980:164::-;27077:4;27101:18;:25;27120:5;27101:25;;;;;;;;;;;;;;;:35;27127:8;27101:35;;;;;;;;;;;;;;;;;;;;;;;;;27094:42;;26980:164;;;;:::o;30586:22::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28230:168::-;28287:4;28343:7;28324:15;:13;:15::i;:::-;:26;;:66;;;;;28377:13;;28367:7;:23;28324:66;28304:86;;28230:168;;;:::o;21962:1129::-;22029:7;22049:12;22064:7;22049:22;;22132:4;22113:15;:13;:15::i;:::-;:23;22109:915;;22166:13;;22159:4;:20;22155:869;;;22204:14;22221:17;:23;22239:4;22221:23;;;;;;;;;;;;22204:40;;22337:1;17604:8;22310:6;:23;:28;22306:699;;22829:113;22846:1;22836:6;:11;22829:113;;22889:17;:25;22907:6;;;;;;;22889:25;;;;;;;;;;;;22880:34;;22829:113;;;22975:6;22968:13;;;;;;22306:699;22181:843;22155:869;22109:915;23052:31;;;;;;;;;;;;;;21962:1129;;;;:::o;35560:105::-;35620:7;35647:10;35640:17;;35560:105;:::o;19217:92::-;19273:7;19217:92;:::o;30615:2561::-;30756:27;30786;30805:7;30786:18;:27::i;:::-;30756:57;;30871:4;30830:45;;30846:19;30830:45;;;30826:86;;30884:28;;;;;;;;;;;;;;30826:86;30925:23;30951:15;:24;30967:7;30951:24;;;;;;;;;;;;;;;;;;;;;30925:50;;30988:22;31037:4;31014:27;;:19;:17;:19::i;:::-;:27;;;:91;;;;31062:43;31079:4;31085:19;:17;:19::i;:::-;31062:16;:43::i;:::-;31014:91;:150;;;;31145:19;:17;:19::i;:::-;31126:38;;:15;:38;;;31014:150;30988:177;;31183:17;31178:66;;31209:35;;;;;;;;;;;;;;31178:66;31354:1;31316:34;31334:15;31316:17;:34::i;:::-;:39;31312:103;;31379:15;:24;31395:7;31379:24;;;;;;;;;;;;31372:31;;;;;;;;;;;31312:103;31782:18;:24;31801:4;31782:24;;;;;;;;;;;;;;;;31780:26;;;;;;;;;;;;31851:18;:22;31870:2;31851:22;;;;;;;;;;;;;;;;31849:24;;;;;;;;;;;17882:8;17488:3;32232:15;:41;;32190:21;32208:2;32190:17;:21::i;:::-;:84;:128;32144:17;:26;32162:7;32144:26;;;;;;;;;;;:174;;;;32488:1;17882:8;32438:19;:46;:51;32434:626;;32510:19;32542:1;32532:7;:11;32510:33;;32699:1;32665:17;:30;32683:11;32665:30;;;;;;;;;;;;:35;32661:384;;32803:13;;32788:11;:28;32784:242;;32983:19;32950:17;:30;32968:11;32950:30;;;;;;;;;;;:52;;;;32784:242;32661:384;32491:569;32434:626;33107:7;33103:2;33088:27;;33097:4;33088:27;;;;;;;;;;;;33126:42;33147:4;33153:2;33157:7;33166:1;33126:20;:42::i;:::-;30739:2437;;;30615:2561;;;:::o;21446:176::-;21507:7;16834:13;16971:2;21535:18;:25;21554:5;21535:25;;;;;;;;;;;;;;;;:49;;21534:80;21527:87;;21446:176;;;:::o;28663:1596::-;28728:20;28751:13;;28728:36;;28862:1;28850:8;:13;28846:44;;28872:18;;;;;;;;;;;;;;28846:44;29435:1;16971:2;29406:1;:25;;29405:31;29393:8;:44;29367:18;:22;29386:2;29367:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;17747:3;29836:29;29863:1;29851:8;:13;29836:14;:29::i;:::-;:56;;17488:3;29773:15;:41;;29731:21;29749:2;29731:17;:21::i;:::-;:84;:162;29680:17;:31;29698:12;29680:31;;;;;;;;;;;:213;;;;29910:20;29933:12;29910:35;;29960:11;29989:8;29974:12;:23;29960:37;;30014:111;30066:14;;;;;;30062:2;30041:40;;30058:1;30041:40;;;;;;;;;;;;30120:3;30105:12;:18;30014:111;;30157:12;30141:13;:28;;;;29144:1037;;30191:60;30220:1;30224:2;30228:12;30242:8;30191:20;:60::i;:::-;28717:1542;28663:1596;;:::o;25369:148::-;25433:14;25494:5;25484:15;;25369:148;;;:::o;35771:1882::-;35828:17;36249:3;36242:4;36236:11;36232:21;36225:28;;36336:3;36330:4;36323:17;36436:3;36872:5;37004:1;36999:3;36995:11;36988:18;;37143:2;37137:4;37133:13;37129:2;37125:22;37120:3;37112:36;37185:2;37179:4;37175:13;37167:21;;36769:661;37201:4;36769:661;;;37369:1;37364:3;37360:11;37353:18;;37413:2;37407:4;37403:13;37399:2;37395:22;37390:3;37382:36;37286:2;37280:4;37276:13;37268:21;;36769:661;;;36773:427;37462:3;37457;37453:13;37571:2;37566:3;37562:12;37555:19;;37628:6;37623:3;37616:19;35867:1779;;35771:1882;;;:::o;34602:753::-;34801:15;34819:10;34801:28;;34853:7;:16;34861:7;34853:16;;;;;;;;;;;;;;;;;;;;;;;;;34852:17;:43;;;;;34893:2;34873:18;34883:7;34873:9;:18::i;:::-;:22;;34852:43;34848:156;;;34938:4;34919:7;:16;34927:7;34919:16;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;34965:5;34976:7;34965:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34848:156;35026:7;:16;35034:7;35026:16;;;;;;;;;;;;;;;;;;;;;;;;;:41;;;;;35065:2;35046:18;35056:7;35046:9;:18::i;:::-;:21;35026:41;35022:318;;;35110:5;35091:7;:16;35099:7;35091:16;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;35142:6;35138:183;35156:5;:12;;;;35152:1;:16;35138:183;;;35215:7;35205:17;;:5;35211:1;35205:8;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:17;;;35201:97;;35254:16;35261:5;35268:1;35254:6;:16::i;:::-;35201:97;35170:3;;;;;;;35138:183;;;;35022:318;34782:573;34602:753;;;;:::o;25604:142::-;25662:14;25723:5;25713:15;;25604:142;;;:::o;34236:358::-;34335:5;34320;:12;;;;:20;34312:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;34447:9;34459:5;34447:17;;34442:99;34485:1;34470:5;:12;;;;:16;;;;:::i;:::-;34466:1;:20;34442:99;;;34519:5;34527:1;34525;:3;;;;:::i;:::-;34519:10;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34508:5;34514:1;34508:8;;;;;;;;:::i;:::-;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34488:3;;;;;;;34442:99;;;;34551:5;:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;34236:358;;:::o;7:180:1:-;55:77;52:1;45:88;152:4;149:1;142:15;176:4;173:1;166:15;193:75;226:6;259:2;253:9;243:19;;193:75;:::o;274:117::-;383:1;380;373:12;397:117;506:1;503;496:12;520:149;556:7;596:66;589:5;585:78;574:89;;520:149;;;:::o;675:120::-;747:23;764:5;747:23;:::i;:::-;740:5;737:34;727:62;;785:1;782;775:12;727:62;675:120;:::o;801:137::-;846:5;884:6;871:20;862:29;;900:32;926:5;900:32;:::i;:::-;801:137;;;;:::o;944:327::-;1002:6;1051:2;1039:9;1030:7;1026:23;1022:32;1019:119;;;1057:79;;:::i;:::-;1019:119;1177:1;1202:52;1246:7;1237:6;1226:9;1222:22;1202:52;:::i;:::-;1192:62;;1148:116;944:327;;;;:::o;1277:90::-;1311:7;1354:5;1347:13;1340:21;1329:32;;1277:90;;;:::o;1373:109::-;1454:21;1469:5;1454:21;:::i;:::-;1449:3;1442:34;1373:109;;:::o;1488:210::-;1575:4;1613:2;1602:9;1598:18;1590:26;;1626:65;1688:1;1677:9;1673:17;1664:6;1626:65;:::i;:::-;1488:210;;;;:::o;1704:99::-;1756:6;1790:5;1784:12;1774:22;;1704:99;;;:::o;1809:169::-;1893:11;1927:6;1922:3;1915:19;1967:4;1962:3;1958:14;1943:29;;1809:169;;;;:::o;1984:139::-;2073:6;2068:3;2063;2057:23;2114:1;2105:6;2100:3;2096:16;2089:27;1984:139;;;:::o;2129:102::-;2170:6;2221:2;2217:7;2212:2;2205:5;2201:14;2197:28;2187:38;;2129:102;;;:::o;2237:377::-;2325:3;2353:39;2386:5;2353:39;:::i;:::-;2408:71;2472:6;2467:3;2408:71;:::i;:::-;2401:78;;2488:65;2546:6;2541:3;2534:4;2527:5;2523:16;2488:65;:::i;:::-;2578:29;2600:6;2578:29;:::i;:::-;2573:3;2569:39;2562:46;;2329:285;2237:377;;;;:::o;2620:313::-;2733:4;2771:2;2760:9;2756:18;2748:26;;2820:9;2814:4;2810:20;2806:1;2795:9;2791:17;2784:47;2848:78;2921:4;2912:6;2848:78;:::i;:::-;2840:86;;2620:313;;;;:::o;2939:77::-;2976:7;3005:5;2994:16;;2939:77;;;:::o;3022:122::-;3095:24;3113:5;3095:24;:::i;:::-;3088:5;3085:35;3075:63;;3134:1;3131;3124:12;3075:63;3022:122;:::o;3150:139::-;3196:5;3234:6;3221:20;3212:29;;3250:33;3277:5;3250:33;:::i;:::-;3150:139;;;;:::o;3295:329::-;3354:6;3403:2;3391:9;3382:7;3378:23;3374:32;3371:119;;;3409:79;;:::i;:::-;3371:119;3529:1;3554:53;3599:7;3590:6;3579:9;3575:22;3554:53;:::i;:::-;3544:63;;3500:117;3295:329;;;;:::o;3630:126::-;3667:7;3707:42;3700:5;3696:54;3685:65;;3630:126;;;:::o;3762:96::-;3799:7;3828:24;3846:5;3828:24;:::i;:::-;3817:35;;3762:96;;;:::o;3864:118::-;3951:24;3969:5;3951:24;:::i;:::-;3946:3;3939:37;3864:118;;:::o;3988:222::-;4081:4;4119:2;4108:9;4104:18;4096:26;;4132:71;4200:1;4189:9;4185:17;4176:6;4132:71;:::i;:::-;3988:222;;;;:::o;4216:122::-;4289:24;4307:5;4289:24;:::i;:::-;4282:5;4279:35;4269:63;;4328:1;4325;4318:12;4269:63;4216:122;:::o;4344:139::-;4390:5;4428:6;4415:20;4406:29;;4444:33;4471:5;4444:33;:::i;:::-;4344:139;;;;:::o;4489:474::-;4557:6;4565;4614:2;4602:9;4593:7;4589:23;4585:32;4582:119;;;4620:79;;:::i;:::-;4582:119;4740:1;4765:53;4810:7;4801:6;4790:9;4786:22;4765:53;:::i;:::-;4755:63;;4711:117;4867:2;4893:53;4938:7;4929:6;4918:9;4914:22;4893:53;:::i;:::-;4883:63;;4838:118;4489:474;;;;;:::o;4969:118::-;5056:24;5074:5;5056:24;:::i;:::-;5051:3;5044:37;4969:118;;:::o;5093:222::-;5186:4;5224:2;5213:9;5209:18;5201:26;;5237:71;5305:1;5294:9;5290:17;5281:6;5237:71;:::i;:::-;5093:222;;;;:::o;5321:619::-;5398:6;5406;5414;5463:2;5451:9;5442:7;5438:23;5434:32;5431:119;;;5469:79;;:::i;:::-;5431:119;5589:1;5614:53;5659:7;5650:6;5639:9;5635:22;5614:53;:::i;:::-;5604:63;;5560:117;5716:2;5742:53;5787:7;5778:6;5767:9;5763:22;5742:53;:::i;:::-;5732:63;;5687:118;5844:2;5870:53;5915:7;5906:6;5895:9;5891:22;5870:53;:::i;:::-;5860:63;;5815:118;5321:619;;;;;:::o;5946:117::-;6055:1;6052;6045:12;6069:117;6178:1;6175;6168:12;6192:180;6240:77;6237:1;6230:88;6337:4;6334:1;6327:15;6361:4;6358:1;6351:15;6378:281;6461:27;6483:4;6461:27;:::i;:::-;6453:6;6449:40;6591:6;6579:10;6576:22;6555:18;6543:10;6540:34;6537:62;6534:88;;;6602:18;;:::i;:::-;6534:88;6642:10;6638:2;6631:22;6421:238;6378:281;;:::o;6665:129::-;6699:6;6726:20;;:::i;:::-;6716:30;;6755:33;6783:4;6775:6;6755:33;:::i;:::-;6665:129;;;:::o;6800:308::-;6862:4;6952:18;6944:6;6941:30;6938:56;;;6974:18;;:::i;:::-;6938:56;7012:29;7034:6;7012:29;:::i;:::-;7004:37;;7096:4;7090;7086:15;7078:23;;6800:308;;;:::o;7114:148::-;7212:6;7207:3;7202;7189:30;7253:1;7244:6;7239:3;7235:16;7228:27;7114:148;;;:::o;7268:425::-;7346:5;7371:66;7387:49;7429:6;7387:49;:::i;:::-;7371:66;:::i;:::-;7362:75;;7460:6;7453:5;7446:21;7498:4;7491:5;7487:16;7536:3;7527:6;7522:3;7518:16;7515:25;7512:112;;;7543:79;;:::i;:::-;7512:112;7633:54;7680:6;7675:3;7670;7633:54;:::i;:::-;7352:341;7268:425;;;;;:::o;7713:340::-;7769:5;7818:3;7811:4;7803:6;7799:17;7795:27;7785:122;;7826:79;;:::i;:::-;7785:122;7943:6;7930:20;7968:79;8043:3;8035:6;8028:4;8020:6;8016:17;7968:79;:::i;:::-;7959:88;;7775:278;7713:340;;;;:::o;8059:509::-;8128:6;8177:2;8165:9;8156:7;8152:23;8148:32;8145:119;;;8183:79;;:::i;:::-;8145:119;8331:1;8320:9;8316:17;8303:31;8361:18;8353:6;8350:30;8347:117;;;8383:79;;:::i;:::-;8347:117;8488:63;8543:7;8534:6;8523:9;8519:22;8488:63;:::i;:::-;8478:73;;8274:287;8059:509;;;;:::o;8574:474::-;8642:6;8650;8699:2;8687:9;8678:7;8674:23;8670:32;8667:119;;;8705:79;;:::i;:::-;8667:119;8825:1;8850:53;8895:7;8886:6;8875:9;8871:22;8850:53;:::i;:::-;8840:63;;8796:117;8952:2;8978:53;9023:7;9014:6;9003:9;8999:22;8978:53;:::i;:::-;8968:63;;8923:118;8574:474;;;;;:::o;9054:329::-;9113:6;9162:2;9150:9;9141:7;9137:23;9133:32;9130:119;;;9168:79;;:::i;:::-;9130:119;9288:1;9313:53;9358:7;9349:6;9338:9;9334:22;9313:53;:::i;:::-;9303:63;;9259:117;9054:329;;;;:::o;9389:116::-;9459:21;9474:5;9459:21;:::i;:::-;9452:5;9449:32;9439:60;;9495:1;9492;9485:12;9439:60;9389:116;:::o;9511:133::-;9554:5;9592:6;9579:20;9570:29;;9608:30;9632:5;9608:30;:::i;:::-;9511:133;;;;:::o;9650:468::-;9715:6;9723;9772:2;9760:9;9751:7;9747:23;9743:32;9740:119;;;9778:79;;:::i;:::-;9740:119;9898:1;9923:53;9968:7;9959:6;9948:9;9944:22;9923:53;:::i;:::-;9913:63;;9869:117;10025:2;10051:50;10093:7;10084:6;10073:9;10069:22;10051:50;:::i;:::-;10041:60;;9996:115;9650:468;;;;;:::o;10124:307::-;10185:4;10275:18;10267:6;10264:30;10261:56;;;10297:18;;:::i;:::-;10261:56;10335:29;10357:6;10335:29;:::i;:::-;10327:37;;10419:4;10413;10409:15;10401:23;;10124:307;;;:::o;10437:423::-;10514:5;10539:65;10555:48;10596:6;10555:48;:::i;:::-;10539:65;:::i;:::-;10530:74;;10627:6;10620:5;10613:21;10665:4;10658:5;10654:16;10703:3;10694:6;10689:3;10685:16;10682:25;10679:112;;;10710:79;;:::i;:::-;10679:112;10800:54;10847:6;10842:3;10837;10800:54;:::i;:::-;10520:340;10437:423;;;;;:::o;10879:338::-;10934:5;10983:3;10976:4;10968:6;10964:17;10960:27;10950:122;;10991:79;;:::i;:::-;10950:122;11108:6;11095:20;11133:78;11207:3;11199:6;11192:4;11184:6;11180:17;11133:78;:::i;:::-;11124:87;;10940:277;10879:338;;;;:::o;11223:943::-;11318:6;11326;11334;11342;11391:3;11379:9;11370:7;11366:23;11362:33;11359:120;;;11398:79;;:::i;:::-;11359:120;11518:1;11543:53;11588:7;11579:6;11568:9;11564:22;11543:53;:::i;:::-;11533:63;;11489:117;11645:2;11671:53;11716:7;11707:6;11696:9;11692:22;11671:53;:::i;:::-;11661:63;;11616:118;11773:2;11799:53;11844:7;11835:6;11824:9;11820:22;11799:53;:::i;:::-;11789:63;;11744:118;11929:2;11918:9;11914:18;11901:32;11960:18;11952:6;11949:30;11946:117;;;11982:79;;:::i;:::-;11946:117;12087:62;12141:7;12132:6;12121:9;12117:22;12087:62;:::i;:::-;12077:72;;11872:287;11223:943;;;;;;;:::o;12172:474::-;12240:6;12248;12297:2;12285:9;12276:7;12272:23;12268:32;12265:119;;;12303:79;;:::i;:::-;12265:119;12423:1;12448:53;12493:7;12484:6;12473:9;12469:22;12448:53;:::i;:::-;12438:63;;12394:117;12550:2;12576:53;12621:7;12612:6;12601:9;12597:22;12576:53;:::i;:::-;12566:63;;12521:118;12172:474;;;;;:::o;12652:180::-;12700:77;12697:1;12690:88;12797:4;12794:1;12787:15;12821:4;12818:1;12811:15;12838:194;12878:4;12898:20;12916:1;12898:20;:::i;:::-;12893:25;;12932:20;12950:1;12932:20;:::i;:::-;12927:25;;12976:1;12973;12969:9;12961:17;;13000:1;12994:4;12991:11;12988:37;;;13005:18;;:::i;:::-;12988:37;12838:194;;;;:::o;13038:442::-;13187:4;13225:2;13214:9;13210:18;13202:26;;13238:71;13306:1;13295:9;13291:17;13282:6;13238:71;:::i;:::-;13319:72;13387:2;13376:9;13372:18;13363:6;13319:72;:::i;:::-;13401;13469:2;13458:9;13454:18;13445:6;13401:72;:::i;:::-;13038:442;;;;;;:::o;13486:180::-;13534:77;13531:1;13524:88;13631:4;13628:1;13621:15;13655:4;13652:1;13645:15;13672:176;13704:1;13721:20;13739:1;13721:20;:::i;:::-;13716:25;;13755:20;13773:1;13755:20;:::i;:::-;13750:25;;13794:1;13784:35;;13799:18;;:::i;:::-;13784:35;13840:1;13837;13833:9;13828:14;;13672:176;;;;:::o;13854:159::-;13994:11;13990:1;13982:6;13978:14;13971:35;13854:159;:::o;14019:365::-;14161:3;14182:66;14246:1;14241:3;14182:66;:::i;:::-;14175:73;;14257:93;14346:3;14257:93;:::i;:::-;14375:2;14370:3;14366:12;14359:19;;14019:365;;;:::o;14390:419::-;14556:4;14594:2;14583:9;14579:18;14571:26;;14643:9;14637:4;14633:20;14629:1;14618:9;14614:17;14607:47;14671:131;14797:4;14671:131;:::i;:::-;14663:139;;14390:419;;;:::o;14815:180::-;14863:77;14860:1;14853:88;14960:4;14957:1;14950:15;14984:4;14981:1;14974:15;15001:320;15045:6;15082:1;15076:4;15072:12;15062:22;;15129:1;15123:4;15119:12;15150:18;15140:81;;15206:4;15198:6;15194:17;15184:27;;15140:81;15268:2;15260:6;15257:14;15237:18;15234:38;15231:84;;15287:18;;:::i;:::-;15231:84;15052:269;15001:320;;;:::o;15327:141::-;15376:4;15399:3;15391:11;;15422:3;15419:1;15412:14;15456:4;15453:1;15443:18;15435:26;;15327:141;;;:::o;15474:93::-;15511:6;15558:2;15553;15546:5;15542:14;15538:23;15528:33;;15474:93;;;:::o;15573:107::-;15617:8;15667:5;15661:4;15657:16;15636:37;;15573:107;;;;:::o;15686:393::-;15755:6;15805:1;15793:10;15789:18;15828:97;15858:66;15847:9;15828:97;:::i;:::-;15946:39;15976:8;15965:9;15946:39;:::i;:::-;15934:51;;16018:4;16014:9;16007:5;16003:21;15994:30;;16067:4;16057:8;16053:19;16046:5;16043:30;16033:40;;15762:317;;15686:393;;;;;:::o;16085:60::-;16113:3;16134:5;16127:12;;16085:60;;;:::o;16151:142::-;16201:9;16234:53;16252:34;16261:24;16279:5;16261:24;:::i;:::-;16252:34;:::i;:::-;16234:53;:::i;:::-;16221:66;;16151:142;;;:::o;16299:75::-;16342:3;16363:5;16356:12;;16299:75;;;:::o;16380:269::-;16490:39;16521:7;16490:39;:::i;:::-;16551:91;16600:41;16624:16;16600:41;:::i;:::-;16592:6;16585:4;16579:11;16551:91;:::i;:::-;16545:4;16538:105;16456:193;16380:269;;;:::o;16655:73::-;16700:3;16655:73;:::o;16734:189::-;16811:32;;:::i;:::-;16852:65;16910:6;16902;16896:4;16852:65;:::i;:::-;16787:136;16734:189;;:::o;16929:186::-;16989:120;17006:3;16999:5;16996:14;16989:120;;;17060:39;17097:1;17090:5;17060:39;:::i;:::-;17033:1;17026:5;17022:13;17013:22;;16989:120;;;16929:186;;:::o;17121:543::-;17222:2;17217:3;17214:11;17211:446;;;17256:38;17288:5;17256:38;:::i;:::-;17340:29;17358:10;17340:29;:::i;:::-;17330:8;17326:44;17523:2;17511:10;17508:18;17505:49;;;17544:8;17529:23;;17505:49;17567:80;17623:22;17641:3;17623:22;:::i;:::-;17613:8;17609:37;17596:11;17567:80;:::i;:::-;17226:431;;17211:446;17121:543;;;:::o;17670:117::-;17724:8;17774:5;17768:4;17764:16;17743:37;;17670:117;;;;:::o;17793:169::-;17837:6;17870:51;17918:1;17914:6;17906:5;17903:1;17899:13;17870:51;:::i;:::-;17866:56;17951:4;17945;17941:15;17931:25;;17844:118;17793:169;;;;:::o;17967:295::-;18043:4;18189:29;18214:3;18208:4;18189:29;:::i;:::-;18181:37;;18251:3;18248:1;18244:11;18238:4;18235:21;18227:29;;17967:295;;;;:::o;18267:1395::-;18384:37;18417:3;18384:37;:::i;:::-;18486:18;18478:6;18475:30;18472:56;;;18508:18;;:::i;:::-;18472:56;18552:38;18584:4;18578:11;18552:38;:::i;:::-;18637:67;18697:6;18689;18683:4;18637:67;:::i;:::-;18731:1;18755:4;18742:17;;18787:2;18779:6;18776:14;18804:1;18799:618;;;;19461:1;19478:6;19475:77;;;19527:9;19522:3;19518:19;19512:26;19503:35;;19475:77;19578:67;19638:6;19631:5;19578:67;:::i;:::-;19572:4;19565:81;19434:222;18769:887;;18799:618;18851:4;18847:9;18839:6;18835:22;18885:37;18917:4;18885:37;:::i;:::-;18944:1;18958:208;18972:7;18969:1;18966:14;18958:208;;;19051:9;19046:3;19042:19;19036:26;19028:6;19021:42;19102:1;19094:6;19090:14;19080:24;;19149:2;19138:9;19134:18;19121:31;;18995:4;18992:1;18988:12;18983:17;;18958:208;;;19194:6;19185:7;19182:19;19179:179;;;19252:9;19247:3;19243:19;19237:26;19295:48;19337:4;19329:6;19325:17;19314:9;19295:48;:::i;:::-;19287:6;19280:64;19202:156;19179:179;19404:1;19400;19392:6;19388:14;19384:22;19378:4;19371:36;18806:611;;;18769:887;;18359:1303;;;18267:1395;;:::o;19668:159::-;19808:11;19804:1;19796:6;19792:14;19785:35;19668:159;:::o;19833:365::-;19975:3;19996:66;20060:1;20055:3;19996:66;:::i;:::-;19989:73;;20071:93;20160:3;20071:93;:::i;:::-;20189:2;20184:3;20180:12;20173:19;;19833:365;;;:::o;20204:419::-;20370:4;20408:2;20397:9;20393:18;20385:26;;20457:9;20451:4;20447:20;20443:1;20432:9;20428:17;20421:47;20485:131;20611:4;20485:131;:::i;:::-;20477:139;;20204:419;;;:::o;20629:191::-;20669:3;20688:20;20706:1;20688:20;:::i;:::-;20683:25;;20722:20;20740:1;20722:20;:::i;:::-;20717:25;;20765:1;20762;20758:9;20751:16;;20786:3;20783:1;20780:10;20777:36;;;20793:18;;:::i;:::-;20777:36;20629:191;;;;:::o;20826:167::-;20966:19;20962:1;20954:6;20950:14;20943:43;20826:167;:::o;20999:366::-;21141:3;21162:67;21226:2;21221:3;21162:67;:::i;:::-;21155:74;;21238:93;21327:3;21238:93;:::i;:::-;21356:2;21351:3;21347:12;21340:19;;20999:366;;;:::o;21371:419::-;21537:4;21575:2;21564:9;21560:18;21552:26;;21624:9;21618:4;21614:20;21610:1;21599:9;21595:17;21588:47;21652:131;21778:4;21652:131;:::i;:::-;21644:139;;21371:419;;;:::o;21796:164::-;21936:16;21932:1;21924:6;21920:14;21913:40;21796:164;:::o;21966:366::-;22108:3;22129:67;22193:2;22188:3;22129:67;:::i;:::-;22122:74;;22205:93;22294:3;22205:93;:::i;:::-;22323:2;22318:3;22314:12;22307:19;;21966:366;;;:::o;22338:419::-;22504:4;22542:2;22531:9;22527:18;22519:26;;22591:9;22585:4;22581:20;22577:1;22566:9;22562:17;22555:47;22619:131;22745:4;22619:131;:::i;:::-;22611:139;;22338:419;;;:::o;22763:158::-;22903:10;22899:1;22891:6;22887:14;22880:34;22763:158;:::o;22927:365::-;23069:3;23090:66;23154:1;23149:3;23090:66;:::i;:::-;23083:73;;23165:93;23254:3;23165:93;:::i;:::-;23283:2;23278:3;23274:12;23267:19;;22927:365;;;:::o;23298:419::-;23464:4;23502:2;23491:9;23487:18;23479:26;;23551:9;23545:4;23541:20;23537:1;23526:9;23522:17;23515:47;23579:131;23705:4;23579:131;:::i;:::-;23571:139;;23298:419;;;:::o;23723:410::-;23763:7;23786:20;23804:1;23786:20;:::i;:::-;23781:25;;23820:20;23838:1;23820:20;:::i;:::-;23815:25;;23875:1;23872;23868:9;23897:30;23915:11;23897:30;:::i;:::-;23886:41;;24076:1;24067:7;24063:15;24060:1;24057:22;24037:1;24030:9;24010:83;23987:139;;24106:18;;:::i;:::-;23987:139;23771:362;23723:410;;;;:::o;24139:162::-;24279:14;24275:1;24267:6;24263:14;24256:38;24139:162;:::o;24307:366::-;24449:3;24470:67;24534:2;24529:3;24470:67;:::i;:::-;24463:74;;24546:93;24635:3;24546:93;:::i;:::-;24664:2;24659:3;24655:12;24648:19;;24307:366;;;:::o;24679:419::-;24845:4;24883:2;24872:9;24868:18;24860:26;;24932:9;24926:4;24922:20;24918:1;24907:9;24903:17;24896:47;24960:131;25086:4;24960:131;:::i;:::-;24952:139;;24679:419;;;:::o;25104:164::-;25244:16;25240:1;25232:6;25228:14;25221:40;25104:164;:::o;25274:366::-;25416:3;25437:67;25501:2;25496:3;25437:67;:::i;:::-;25430:74;;25513:93;25602:3;25513:93;:::i;:::-;25631:2;25626:3;25622:12;25615:19;;25274:366;;;:::o;25646:419::-;25812:4;25850:2;25839:9;25835:18;25827:26;;25899:9;25893:4;25889:20;25885:1;25874:9;25870:17;25863:47;25927:131;26053:4;25927:131;:::i;:::-;25919:139;;25646:419;;;:::o;26071:148::-;26173:11;26210:3;26195:18;;26071:148;;;;:::o;26225:161::-;26365:9;26361:1;26353:6;26349:14;26342:33;26225:161;:::o;26396:416::-;26556:3;26581:84;26663:1;26658:3;26581:84;:::i;:::-;26574:91;;26678:93;26767:3;26678:93;:::i;:::-;26800:1;26795:3;26791:11;26784:18;;26396:416;;;:::o;26822:410::-;26928:3;26960:39;26993:5;26960:39;:::i;:::-;27019:89;27101:6;27096:3;27019:89;:::i;:::-;27012:96;;27121:65;27179:6;27174:3;27167:4;27160:5;27156:16;27121:65;:::i;:::-;27215:6;27210:3;27206:16;27199:23;;26932:300;26822:410;;;;:::o;27242:159::-;27386:3;27382:1;27374:6;27370:14;27363:27;27242:159;:::o;27411:416::-;27571:3;27596:84;27678:1;27673:3;27596:84;:::i;:::-;27589:91;;27693:93;27782:3;27693:93;:::i;:::-;27815:1;27810:3;27806:11;27799:18;;27411:416;;;:::o;27837:163::-;27981:7;27977:1;27969:6;27965:14;27958:31;27837:163;:::o;28010:416::-;28170:3;28195:84;28277:1;28272:3;28195:84;:::i;:::-;28188:91;;28292:93;28381:3;28292:93;:::i;:::-;28414:1;28409:3;28405:11;28398:18;;28010:416;;;:::o;28436:1261::-;28919:3;28945:148;29089:3;28945:148;:::i;:::-;28938:155;;29114:95;29205:3;29196:6;29114:95;:::i;:::-;29107:102;;29230:148;29374:3;29230:148;:::i;:::-;29223:155;;29399:95;29490:3;29481:6;29399:95;:::i;:::-;29392:102;;29515:148;29659:3;29515:148;:::i;:::-;29508:155;;29684:3;29677:10;;28436:1261;;;;;:::o;29707:171::-;29851:15;29847:1;29839:6;29835:14;29828:39;29707:171;:::o;29888:382::-;30030:3;30055:67;30119:2;30114:3;30055:67;:::i;:::-;30048:74;;30135:93;30224:3;30135:93;:::i;:::-;30257:2;30252:3;30248:12;30241:19;;29888:382;;;:::o;30280:435::-;30446:4;30488:2;30477:9;30473:18;30465:26;;30541:9;30535:4;30531:20;30527:1;30516:9;30512:17;30505:47;30573:131;30699:4;30573:131;:::i;:::-;30565:139;;30280:435;;;:::o;30725:196::-;30777:77;30774:1;30767:88;30878:4;30875:1;30868:15;30906:4;30903:1;30896:15

Swarm Source

ipfs://3d0e8b46f30da3b661806fb493aa0e3811292ab7b37630367b3d857ef1d6a93a
[ 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.