ETH Price: $3,272.81 (-4.04%)
Gas: 10 Gwei

Token

BVB Genesis (BVB)
 

Overview

Max Total Supply

4,500 BVB

Holders

2,038

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
abg721a.eth
Balance
1 BVB
0x3B34Bbe8A4a6FF559438B0b7EBCf3a01685BB66d
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
BVBGen

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

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

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

        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);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance 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;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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 (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // 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.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        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);
    }

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

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

        address from = address(uint160(prevOwnershipPacked));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                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, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/BVBGen.sol



pragma solidity ^0.8.13;





contract BVBGen is ERC721A, Ownable {
    using Strings for uint256;

    string private baseTokenURI;

    uint256 public basePrice = 0.005 ether;

    uint256 public maxPerTx = 5;

    uint256 public maxFreeMintPerWallet = 1;

    uint256 public totalFree = 1000;

    uint256 public maxSupply = 5555;

    uint64 public mintTime;

    bool public mintEnabled = true;
    

    constructor() ERC721A("BVB Genesis", "BVB") {
    }

    function mint(uint256 amount) external payable {
        require(amount != 0, "Please set mint amount");
        uint price = basePrice;
        if (totalSupply() + amount <= totalFree && _numberMinted(msg.sender) + amount <= maxFreeMintPerWallet)
        {
            price = 0;
        }
        require(mintTime !=0 &&  block.timestamp >= mintTime,"Mint is not active yet");
        require(msg.value >= amount * price, "Please send the exact amount");
        require(totalSupply() + amount <= maxSupply, "Unable to Mint over max supply");
        require(mintEnabled, "Minting is not live yet");
        require(amount <= maxPerTx, "Max per TX reached.");

        _safeMint(msg.sender, amount);
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {   
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return string(abi.encodePacked(baseTokenURI, tokenId.toString(), ".json"));
    }

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

    function setFreeMintPerWallet(uint256 _freeMintperWallet) external onlyOwner{
        maxFreeMintPerWallet = _freeMintperWallet;
    }

    function setFreeAmount(uint256 _freeAmount) external onlyOwner {
        totalFree = _freeAmount;
    }
    
    function setMaxSupply(uint256 _updatedMaxSupply) external onlyOwner {
        maxSupply = _updatedMaxSupply;
    }

    function setNewPrice(uint256 _newPrice) external onlyOwner {
        basePrice = _newPrice;
    }

    function flipMintActive() external onlyOwner {
        mintEnabled = !mintEnabled;
    }

    function SetMintTime(uint32 _timeStamp) external onlyOwner {
     mintTime = _timeStamp;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint32","name":"_timeStamp","type":"uint32"}],"name":"SetMintTime","outputs":[],"stateMutability":"nonpayable","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":"basePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintTime","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeAmount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMintperWallet","type":"uint256"}],"name":"setFreeMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_updatedMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setNewPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526611c37937e08000600a556005600b556001600c556103e8600d556115b3600e556001600f60086101000a81548160ff0219169083151502179055503480156200004d57600080fd5b506040518060400160405280600b81526020017f4256422047656e657369730000000000000000000000000000000000000000008152506040518060400160405280600381526020017f42564200000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000d2929190620001fd565b508060039080519060200190620000eb929190620001fd565b50620000fc6200012a60201b60201c565b600081905550505062000124620001186200012f60201b60201c565b6200013760201b60201c565b62000311565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020b90620002dc565b90600052602060002090601f0160209004810192826200022f57600085556200027b565b82601f106200024a57805160ff19168380011785556200027b565b828001600101855582156200027b579182015b828111156200027a5782518255916020019190600101906200025d565b5b5090506200028a91906200028e565b5090565b5b80821115620002a95760008160009055506001016200028f565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002f557607f821691505b6020821081036200030b576200030a620002ad565b5b50919050565b6134dd80620003216000396000f3fe6080604052600436106101ee5760003560e01c8063864781221161010d578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb01146106a2578063e985e9c5146106cd578063ee8cdd4e1461070a578063f2fde38b14610733578063f968adbe1461075c576101ee565b8063b88d4fde146105e6578063c7876ea41461060f578063c87b56dd1461063a578063d123973014610677576101ee565b8063a0712d68116100dc578063a0712d6814610561578063a0ecbdb51461057d578063a22cb465146105a6578063b5bfcfa8146105cf576101ee565b806386478122146104b75780638da5cb5b146104e257806392910eec1461050d57806395d89b4114610536576101ee565b80633ccfd60b116101855780636f8b44b0116101545780636f8b44b01461040f57806370a0823114610438578063715018a614610475578063845bb3bb1461048c576101ee565b80633ccfd60b1461036957806342842e0e1461038057806355f804b3146103a95780636352211e146103d2576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806318160ddd146102ea57806323b872dd14610315578063333e44e61461033e576101ee565b806301ffc9a7146101f35780630426c1fa1461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a6004803603810190610215919061253b565b610787565b6040516102279190612583565b60405180910390f35b34801561023c57600080fd5b50610257600480360381019061025291906125d4565b610819565b005b34801561026557600080fd5b5061026e61089f565b60405161027b919061269a565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a691906125d4565b610931565b6040516102b891906126fd565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e39190612744565b6109ad565b005b3480156102f657600080fd5b506102ff610b53565b60405161030c9190612793565b60405180910390f35b34801561032157600080fd5b5061033c600480360381019061033791906127ae565b610b6a565b005b34801561034a57600080fd5b50610353610b7a565b6040516103609190612793565b60405180910390f35b34801561037557600080fd5b5061037e610b80565b005b34801561038c57600080fd5b506103a760048036038101906103a291906127ae565b610c45565b005b3480156103b557600080fd5b506103d060048036038101906103cb9190612866565b610c65565b005b3480156103de57600080fd5b506103f960048036038101906103f491906125d4565b610cf7565b60405161040691906126fd565b60405180910390f35b34801561041b57600080fd5b50610436600480360381019061043191906125d4565b610d09565b005b34801561044457600080fd5b5061045f600480360381019061045a91906128b3565b610d8f565b60405161046c9190612793565b60405180910390f35b34801561048157600080fd5b5061048a610e47565b005b34801561049857600080fd5b506104a1610ecf565b6040516104ae9190612793565b60405180910390f35b3480156104c357600080fd5b506104cc610ed5565b6040516104d99190612903565b60405180910390f35b3480156104ee57600080fd5b506104f7610eef565b60405161050491906126fd565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f91906125d4565b610f19565b005b34801561054257600080fd5b5061054b610f9f565b604051610558919061269a565b60405180910390f35b61057b600480360381019061057691906125d4565b611031565b005b34801561058957600080fd5b506105a4600480360381019061059f919061295a565b611295565b005b3480156105b257600080fd5b506105cd60048036038101906105c891906129b3565b611343565b005b3480156105db57600080fd5b506105e46114ba565b005b3480156105f257600080fd5b5061060d60048036038101906106089190612b23565b611562565b005b34801561061b57600080fd5b506106246115d5565b6040516106319190612793565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c91906125d4565b6115db565b60405161066e919061269a565b60405180910390f35b34801561068357600080fd5b5061068c611657565b6040516106999190612583565b60405180910390f35b3480156106ae57600080fd5b506106b761166a565b6040516106c49190612793565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef9190612ba6565b611670565b6040516107019190612583565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c91906125d4565b611704565b005b34801561073f57600080fd5b5061075a600480360381019061075591906128b3565b61178a565b005b34801561076857600080fd5b50610771611881565b60405161077e9190612793565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108125750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610821611887565b73ffffffffffffffffffffffffffffffffffffffff1661083f610eef565b73ffffffffffffffffffffffffffffffffffffffff1614610895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088c90612c32565b60405180910390fd5b80600c8190555050565b6060600280546108ae90612c81565b80601f01602080910402602001604051908101604052809291908181526020018280546108da90612c81565b80156109275780601f106108fc57610100808354040283529160200191610927565b820191906000526020600020905b81548152906001019060200180831161090a57829003601f168201915b5050505050905090565b600061093c8261188f565b610972576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b8826118ee565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a1f576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a3e6119ba565b73ffffffffffffffffffffffffffffffffffffffff1614610aa157610a6a81610a656119ba565b611670565b610aa0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b5d6119c2565b6001546000540303905090565b610b758383836119c7565b505050565b600d5481565b610b88611887565b73ffffffffffffffffffffffffffffffffffffffff16610ba6610eef565b73ffffffffffffffffffffffffffffffffffffffff1614610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf390612c32565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c42573d6000803e3d6000fd5b50565b610c6083838360405180602001604052806000815250611562565b505050565b610c6d611887565b73ffffffffffffffffffffffffffffffffffffffff16610c8b610eef565b73ffffffffffffffffffffffffffffffffffffffff1614610ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd890612c32565b60405180910390fd5b818160099190610cf292919061242c565b505050565b6000610d02826118ee565b9050919050565b610d11611887565b73ffffffffffffffffffffffffffffffffffffffff16610d2f610eef565b73ffffffffffffffffffffffffffffffffffffffff1614610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c90612c32565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610df6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e4f611887565b73ffffffffffffffffffffffffffffffffffffffff16610e6d610eef565b73ffffffffffffffffffffffffffffffffffffffff1614610ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eba90612c32565b60405180910390fd5b610ecd6000611d6e565b565b600c5481565b600f60009054906101000a900467ffffffffffffffff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f21611887565b73ffffffffffffffffffffffffffffffffffffffff16610f3f610eef565b73ffffffffffffffffffffffffffffffffffffffff1614610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90612c32565b60405180910390fd5b80600d8190555050565b606060038054610fae90612c81565b80601f0160208091040260200160405190810160405280929190818152602001828054610fda90612c81565b80156110275780601f10610ffc57610100808354040283529160200191611027565b820191906000526020600020905b81548152906001019060200180831161100a57829003601f168201915b5050505050905090565b60008103611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b90612cfe565b60405180910390fd5b6000600a549050600d5482611087610b53565b6110919190612d4d565b111580156110b45750600c54826110a733611e34565b6110b19190612d4d565b11155b156110be57600090505b6000600f60009054906101000a900467ffffffffffffffff1667ffffffffffffffff161415801561110f5750600f60009054906101000a900467ffffffffffffffff1667ffffffffffffffff164210155b61114e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114590612def565b60405180910390fd5b808261115a9190612e0f565b34101561119c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119390612eb5565b60405180910390fd5b600e54826111a8610b53565b6111b29190612d4d565b11156111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea90612f21565b60405180910390fd5b600f60089054906101000a900460ff16611242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123990612f8d565b60405180910390fd5b600b54821115611287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127e90612ff9565b60405180910390fd5b6112913383611e8b565b5050565b61129d611887565b73ffffffffffffffffffffffffffffffffffffffff166112bb610eef565b73ffffffffffffffffffffffffffffffffffffffff1614611311576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130890612c32565b60405180910390fd5b8063ffffffff16600f60006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050565b61134b6119ba565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113af576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113bc6119ba565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114696119ba565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114ae9190612583565b60405180910390a35050565b6114c2611887565b73ffffffffffffffffffffffffffffffffffffffff166114e0610eef565b73ffffffffffffffffffffffffffffffffffffffff1614611536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152d90612c32565b60405180910390fd5b600f60089054906101000a900460ff1615600f60086101000a81548160ff021916908315150217905550565b61156d8484846119c7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115cf5761159884848484611ea9565b6115ce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a5481565b60606115e68261188f565b611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c9061308b565b60405180910390fd5b600961163083611ff9565b6040516020016116419291906131c7565b6040516020818303038152906040529050919050565b600f60089054906101000a900460ff1681565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61170c611887565b73ffffffffffffffffffffffffffffffffffffffff1661172a610eef565b73ffffffffffffffffffffffffffffffffffffffff1614611780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177790612c32565b60405180910390fd5b80600a8190555050565b611792611887565b73ffffffffffffffffffffffffffffffffffffffff166117b0610eef565b73ffffffffffffffffffffffffffffffffffffffff1614611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd90612c32565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186c90613268565b60405180910390fd5b61187e81611d6e565b50565b600b5481565b600033905090565b60008161189a6119c2565b111580156118a9575060005482105b80156118e7575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806118fd6119c2565b11611983576000548110156119825760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611980575b6000810361197657600460008360019003935083815260200190815260200160002054905061194c565b80925050506119b5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006119d2826118ee565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a39576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611a5a6119ba565b73ffffffffffffffffffffffffffffffffffffffff161480611a895750611a8885611a836119ba565b611670565b5b80611ace5750611a976119ba565b73ffffffffffffffffffffffffffffffffffffffff16611ab684610931565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611b07576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611b6d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b7a8585856001612159565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611c778661215f565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603611cff5760006001840190506000600460008381526020019081526020016000205403611cfd576000548114611cfc578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d678585856001612169565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b611ea582826040518060200160405280600081525061216f565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ecf6119ba565b8786866040518563ffffffff1660e01b8152600401611ef194939291906132dd565b6020604051808303816000875af1925050508015611f2d57506040513d601f19601f82011682018060405250810190611f2a919061333e565b60015b611fa6573d8060008114611f5d576040519150601f19603f3d011682016040523d82523d6000602084013e611f62565b606091505b506000815103611f9e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203612040576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612154565b600082905060005b6000821461207257808061205b9061336b565b915050600a8261206b91906133e2565b9150612048565b60008167ffffffffffffffff81111561208e5761208d6129f8565b5b6040519080825280601f01601f1916602001820160405280156120c05781602001600182028036833780820191505090505b5090505b6000851461214d576001826120d99190613413565b9150600a856120e89190613447565b60306120f49190612d4d565b60f81b81838151811061210a57612109613478565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561214691906133e2565b94506120c4565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036121db576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612215576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122226000858386612159565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161228760018514612422565b901b60a042901b6122978661215f565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461239b575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461234b6000878480600101955087611ea9565b612381576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106122dc57826000541461239657600080fd5b612406565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061239c575b81600081905550505061241c6000858386612169565b50505050565b6000819050919050565b82805461243890612c81565b90600052602060002090601f01602090048101928261245a57600085556124a1565b82601f1061247357803560ff19168380011785556124a1565b828001600101855582156124a1579182015b828111156124a0578235825591602001919060010190612485565b5b5090506124ae91906124b2565b5090565b5b808211156124cb5760008160009055506001016124b3565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612518816124e3565b811461252357600080fd5b50565b6000813590506125358161250f565b92915050565b600060208284031215612551576125506124d9565b5b600061255f84828501612526565b91505092915050565b60008115159050919050565b61257d81612568565b82525050565b60006020820190506125986000830184612574565b92915050565b6000819050919050565b6125b18161259e565b81146125bc57600080fd5b50565b6000813590506125ce816125a8565b92915050565b6000602082840312156125ea576125e96124d9565b5b60006125f8848285016125bf565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561263b578082015181840152602081019050612620565b8381111561264a576000848401525b50505050565b6000601f19601f8301169050919050565b600061266c82612601565b612676818561260c565b935061268681856020860161261d565b61268f81612650565b840191505092915050565b600060208201905081810360008301526126b48184612661565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126e7826126bc565b9050919050565b6126f7816126dc565b82525050565b600060208201905061271260008301846126ee565b92915050565b612721816126dc565b811461272c57600080fd5b50565b60008135905061273e81612718565b92915050565b6000806040838503121561275b5761275a6124d9565b5b60006127698582860161272f565b925050602061277a858286016125bf565b9150509250929050565b61278d8161259e565b82525050565b60006020820190506127a86000830184612784565b92915050565b6000806000606084860312156127c7576127c66124d9565b5b60006127d58682870161272f565b93505060206127e68682870161272f565b92505060406127f7868287016125bf565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261282657612825612801565b5b8235905067ffffffffffffffff81111561284357612842612806565b5b60208301915083600182028301111561285f5761285e61280b565b5b9250929050565b6000806020838503121561287d5761287c6124d9565b5b600083013567ffffffffffffffff81111561289b5761289a6124de565b5b6128a785828601612810565b92509250509250929050565b6000602082840312156128c9576128c86124d9565b5b60006128d78482850161272f565b91505092915050565b600067ffffffffffffffff82169050919050565b6128fd816128e0565b82525050565b600060208201905061291860008301846128f4565b92915050565b600063ffffffff82169050919050565b6129378161291e565b811461294257600080fd5b50565b6000813590506129548161292e565b92915050565b6000602082840312156129705761296f6124d9565b5b600061297e84828501612945565b91505092915050565b61299081612568565b811461299b57600080fd5b50565b6000813590506129ad81612987565b92915050565b600080604083850312156129ca576129c96124d9565b5b60006129d88582860161272f565b92505060206129e98582860161299e565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a3082612650565b810181811067ffffffffffffffff82111715612a4f57612a4e6129f8565b5b80604052505050565b6000612a626124cf565b9050612a6e8282612a27565b919050565b600067ffffffffffffffff821115612a8e57612a8d6129f8565b5b612a9782612650565b9050602081019050919050565b82818337600083830152505050565b6000612ac6612ac184612a73565b612a58565b905082815260208101848484011115612ae257612ae16129f3565b5b612aed848285612aa4565b509392505050565b600082601f830112612b0a57612b09612801565b5b8135612b1a848260208601612ab3565b91505092915050565b60008060008060808587031215612b3d57612b3c6124d9565b5b6000612b4b8782880161272f565b9450506020612b5c8782880161272f565b9350506040612b6d878288016125bf565b925050606085013567ffffffffffffffff811115612b8e57612b8d6124de565b5b612b9a87828801612af5565b91505092959194509250565b60008060408385031215612bbd57612bbc6124d9565b5b6000612bcb8582860161272f565b9250506020612bdc8582860161272f565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c1c60208361260c565b9150612c2782612be6565b602082019050919050565b60006020820190508181036000830152612c4b81612c0f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c9957607f821691505b602082108103612cac57612cab612c52565b5b50919050565b7f506c6561736520736574206d696e7420616d6f756e7400000000000000000000600082015250565b6000612ce860168361260c565b9150612cf382612cb2565b602082019050919050565b60006020820190508181036000830152612d1781612cdb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d588261259e565b9150612d638361259e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d9857612d97612d1e565b5b828201905092915050565b7f4d696e74206973206e6f74206163746976652079657400000000000000000000600082015250565b6000612dd960168361260c565b9150612de482612da3565b602082019050919050565b60006020820190508181036000830152612e0881612dcc565b9050919050565b6000612e1a8261259e565b9150612e258361259e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e5e57612e5d612d1e565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e7400000000600082015250565b6000612e9f601c8361260c565b9150612eaa82612e69565b602082019050919050565b60006020820190508181036000830152612ece81612e92565b9050919050565b7f556e61626c6520746f204d696e74206f766572206d617820737570706c790000600082015250565b6000612f0b601e8361260c565b9150612f1682612ed5565b602082019050919050565b60006020820190508181036000830152612f3a81612efe565b9050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b6000612f7760178361260c565b9150612f8282612f41565b602082019050919050565b60006020820190508181036000830152612fa681612f6a565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000612fe360138361260c565b9150612fee82612fad565b602082019050919050565b6000602082019050818103600083015261301281612fd6565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613075602f8361260c565b915061308082613019565b604082019050919050565b600060208201905081810360008301526130a481613068565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546130d881612c81565b6130e281866130ab565b945060018216600081146130fd576001811461310e57613141565b60ff19831686528186019350613141565b613117856130b6565b60005b838110156131395781548189015260018201915060208101905061311a565b838801955050505b50505092915050565b600061315582612601565b61315f81856130ab565b935061316f81856020860161261d565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006131b16005836130ab565b91506131bc8261317b565b600582019050919050565b60006131d382856130cb565b91506131df828461314a565b91506131ea826131a4565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061325260268361260c565b915061325d826131f6565b604082019050919050565b6000602082019050818103600083015261328181613245565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006132af82613288565b6132b98185613293565b93506132c981856020860161261d565b6132d281612650565b840191505092915050565b60006080820190506132f260008301876126ee565b6132ff60208301866126ee565b61330c6040830185612784565b818103606083015261331e81846132a4565b905095945050505050565b6000815190506133388161250f565b92915050565b600060208284031215613354576133536124d9565b5b600061336284828501613329565b91505092915050565b60006133768261259e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036133a8576133a7612d1e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006133ed8261259e565b91506133f88361259e565b925082613408576134076133b3565b5b828204905092915050565b600061341e8261259e565b91506134298361259e565b92508282101561343c5761343b612d1e565b5b828203905092915050565b60006134528261259e565b915061345d8361259e565b92508261346d5761346c6133b3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212203bd454c173708e13bcf2ef7a3b80bd441c517dfff39e72d30cba7395b4650f0b64736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c8063864781221161010d578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb01146106a2578063e985e9c5146106cd578063ee8cdd4e1461070a578063f2fde38b14610733578063f968adbe1461075c576101ee565b8063b88d4fde146105e6578063c7876ea41461060f578063c87b56dd1461063a578063d123973014610677576101ee565b8063a0712d68116100dc578063a0712d6814610561578063a0ecbdb51461057d578063a22cb465146105a6578063b5bfcfa8146105cf576101ee565b806386478122146104b75780638da5cb5b146104e257806392910eec1461050d57806395d89b4114610536576101ee565b80633ccfd60b116101855780636f8b44b0116101545780636f8b44b01461040f57806370a0823114610438578063715018a614610475578063845bb3bb1461048c576101ee565b80633ccfd60b1461036957806342842e0e1461038057806355f804b3146103a95780636352211e146103d2576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806318160ddd146102ea57806323b872dd14610315578063333e44e61461033e576101ee565b806301ffc9a7146101f35780630426c1fa1461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a6004803603810190610215919061253b565b610787565b6040516102279190612583565b60405180910390f35b34801561023c57600080fd5b50610257600480360381019061025291906125d4565b610819565b005b34801561026557600080fd5b5061026e61089f565b60405161027b919061269a565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a691906125d4565b610931565b6040516102b891906126fd565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e39190612744565b6109ad565b005b3480156102f657600080fd5b506102ff610b53565b60405161030c9190612793565b60405180910390f35b34801561032157600080fd5b5061033c600480360381019061033791906127ae565b610b6a565b005b34801561034a57600080fd5b50610353610b7a565b6040516103609190612793565b60405180910390f35b34801561037557600080fd5b5061037e610b80565b005b34801561038c57600080fd5b506103a760048036038101906103a291906127ae565b610c45565b005b3480156103b557600080fd5b506103d060048036038101906103cb9190612866565b610c65565b005b3480156103de57600080fd5b506103f960048036038101906103f491906125d4565b610cf7565b60405161040691906126fd565b60405180910390f35b34801561041b57600080fd5b50610436600480360381019061043191906125d4565b610d09565b005b34801561044457600080fd5b5061045f600480360381019061045a91906128b3565b610d8f565b60405161046c9190612793565b60405180910390f35b34801561048157600080fd5b5061048a610e47565b005b34801561049857600080fd5b506104a1610ecf565b6040516104ae9190612793565b60405180910390f35b3480156104c357600080fd5b506104cc610ed5565b6040516104d99190612903565b60405180910390f35b3480156104ee57600080fd5b506104f7610eef565b60405161050491906126fd565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f91906125d4565b610f19565b005b34801561054257600080fd5b5061054b610f9f565b604051610558919061269a565b60405180910390f35b61057b600480360381019061057691906125d4565b611031565b005b34801561058957600080fd5b506105a4600480360381019061059f919061295a565b611295565b005b3480156105b257600080fd5b506105cd60048036038101906105c891906129b3565b611343565b005b3480156105db57600080fd5b506105e46114ba565b005b3480156105f257600080fd5b5061060d60048036038101906106089190612b23565b611562565b005b34801561061b57600080fd5b506106246115d5565b6040516106319190612793565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c91906125d4565b6115db565b60405161066e919061269a565b60405180910390f35b34801561068357600080fd5b5061068c611657565b6040516106999190612583565b60405180910390f35b3480156106ae57600080fd5b506106b761166a565b6040516106c49190612793565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef9190612ba6565b611670565b6040516107019190612583565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c91906125d4565b611704565b005b34801561073f57600080fd5b5061075a600480360381019061075591906128b3565b61178a565b005b34801561076857600080fd5b50610771611881565b60405161077e9190612793565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108125750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610821611887565b73ffffffffffffffffffffffffffffffffffffffff1661083f610eef565b73ffffffffffffffffffffffffffffffffffffffff1614610895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088c90612c32565b60405180910390fd5b80600c8190555050565b6060600280546108ae90612c81565b80601f01602080910402602001604051908101604052809291908181526020018280546108da90612c81565b80156109275780601f106108fc57610100808354040283529160200191610927565b820191906000526020600020905b81548152906001019060200180831161090a57829003601f168201915b5050505050905090565b600061093c8261188f565b610972576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b8826118ee565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a1f576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a3e6119ba565b73ffffffffffffffffffffffffffffffffffffffff1614610aa157610a6a81610a656119ba565b611670565b610aa0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b5d6119c2565b6001546000540303905090565b610b758383836119c7565b505050565b600d5481565b610b88611887565b73ffffffffffffffffffffffffffffffffffffffff16610ba6610eef565b73ffffffffffffffffffffffffffffffffffffffff1614610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf390612c32565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c42573d6000803e3d6000fd5b50565b610c6083838360405180602001604052806000815250611562565b505050565b610c6d611887565b73ffffffffffffffffffffffffffffffffffffffff16610c8b610eef565b73ffffffffffffffffffffffffffffffffffffffff1614610ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd890612c32565b60405180910390fd5b818160099190610cf292919061242c565b505050565b6000610d02826118ee565b9050919050565b610d11611887565b73ffffffffffffffffffffffffffffffffffffffff16610d2f610eef565b73ffffffffffffffffffffffffffffffffffffffff1614610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c90612c32565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610df6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e4f611887565b73ffffffffffffffffffffffffffffffffffffffff16610e6d610eef565b73ffffffffffffffffffffffffffffffffffffffff1614610ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eba90612c32565b60405180910390fd5b610ecd6000611d6e565b565b600c5481565b600f60009054906101000a900467ffffffffffffffff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f21611887565b73ffffffffffffffffffffffffffffffffffffffff16610f3f610eef565b73ffffffffffffffffffffffffffffffffffffffff1614610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90612c32565b60405180910390fd5b80600d8190555050565b606060038054610fae90612c81565b80601f0160208091040260200160405190810160405280929190818152602001828054610fda90612c81565b80156110275780601f10610ffc57610100808354040283529160200191611027565b820191906000526020600020905b81548152906001019060200180831161100a57829003601f168201915b5050505050905090565b60008103611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b90612cfe565b60405180910390fd5b6000600a549050600d5482611087610b53565b6110919190612d4d565b111580156110b45750600c54826110a733611e34565b6110b19190612d4d565b11155b156110be57600090505b6000600f60009054906101000a900467ffffffffffffffff1667ffffffffffffffff161415801561110f5750600f60009054906101000a900467ffffffffffffffff1667ffffffffffffffff164210155b61114e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114590612def565b60405180910390fd5b808261115a9190612e0f565b34101561119c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119390612eb5565b60405180910390fd5b600e54826111a8610b53565b6111b29190612d4d565b11156111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea90612f21565b60405180910390fd5b600f60089054906101000a900460ff16611242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123990612f8d565b60405180910390fd5b600b54821115611287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127e90612ff9565b60405180910390fd5b6112913383611e8b565b5050565b61129d611887565b73ffffffffffffffffffffffffffffffffffffffff166112bb610eef565b73ffffffffffffffffffffffffffffffffffffffff1614611311576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130890612c32565b60405180910390fd5b8063ffffffff16600f60006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050565b61134b6119ba565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113af576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113bc6119ba565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114696119ba565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114ae9190612583565b60405180910390a35050565b6114c2611887565b73ffffffffffffffffffffffffffffffffffffffff166114e0610eef565b73ffffffffffffffffffffffffffffffffffffffff1614611536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152d90612c32565b60405180910390fd5b600f60089054906101000a900460ff1615600f60086101000a81548160ff021916908315150217905550565b61156d8484846119c7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115cf5761159884848484611ea9565b6115ce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a5481565b60606115e68261188f565b611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c9061308b565b60405180910390fd5b600961163083611ff9565b6040516020016116419291906131c7565b6040516020818303038152906040529050919050565b600f60089054906101000a900460ff1681565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61170c611887565b73ffffffffffffffffffffffffffffffffffffffff1661172a610eef565b73ffffffffffffffffffffffffffffffffffffffff1614611780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177790612c32565b60405180910390fd5b80600a8190555050565b611792611887565b73ffffffffffffffffffffffffffffffffffffffff166117b0610eef565b73ffffffffffffffffffffffffffffffffffffffff1614611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd90612c32565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186c90613268565b60405180910390fd5b61187e81611d6e565b50565b600b5481565b600033905090565b60008161189a6119c2565b111580156118a9575060005482105b80156118e7575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806118fd6119c2565b11611983576000548110156119825760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611980575b6000810361197657600460008360019003935083815260200190815260200160002054905061194c565b80925050506119b5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006119d2826118ee565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a39576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611a5a6119ba565b73ffffffffffffffffffffffffffffffffffffffff161480611a895750611a8885611a836119ba565b611670565b5b80611ace5750611a976119ba565b73ffffffffffffffffffffffffffffffffffffffff16611ab684610931565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611b07576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611b6d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b7a8585856001612159565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611c778661215f565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603611cff5760006001840190506000600460008381526020019081526020016000205403611cfd576000548114611cfc578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d678585856001612169565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b611ea582826040518060200160405280600081525061216f565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ecf6119ba565b8786866040518563ffffffff1660e01b8152600401611ef194939291906132dd565b6020604051808303816000875af1925050508015611f2d57506040513d601f19601f82011682018060405250810190611f2a919061333e565b60015b611fa6573d8060008114611f5d576040519150601f19603f3d011682016040523d82523d6000602084013e611f62565b606091505b506000815103611f9e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203612040576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612154565b600082905060005b6000821461207257808061205b9061336b565b915050600a8261206b91906133e2565b9150612048565b60008167ffffffffffffffff81111561208e5761208d6129f8565b5b6040519080825280601f01601f1916602001820160405280156120c05781602001600182028036833780820191505090505b5090505b6000851461214d576001826120d99190613413565b9150600a856120e89190613447565b60306120f49190612d4d565b60f81b81838151811061210a57612109613478565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561214691906133e2565b94506120c4565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036121db576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612215576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122226000858386612159565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161228760018514612422565b901b60a042901b6122978661215f565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461239b575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461234b6000878480600101955087611ea9565b612381576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106122dc57826000541461239657600080fd5b612406565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061239c575b81600081905550505061241c6000858386612169565b50505050565b6000819050919050565b82805461243890612c81565b90600052602060002090601f01602090048101928261245a57600085556124a1565b82601f1061247357803560ff19168380011785556124a1565b828001600101855582156124a1579182015b828111156124a0578235825591602001919060010190612485565b5b5090506124ae91906124b2565b5090565b5b808211156124cb5760008160009055506001016124b3565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612518816124e3565b811461252357600080fd5b50565b6000813590506125358161250f565b92915050565b600060208284031215612551576125506124d9565b5b600061255f84828501612526565b91505092915050565b60008115159050919050565b61257d81612568565b82525050565b60006020820190506125986000830184612574565b92915050565b6000819050919050565b6125b18161259e565b81146125bc57600080fd5b50565b6000813590506125ce816125a8565b92915050565b6000602082840312156125ea576125e96124d9565b5b60006125f8848285016125bf565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561263b578082015181840152602081019050612620565b8381111561264a576000848401525b50505050565b6000601f19601f8301169050919050565b600061266c82612601565b612676818561260c565b935061268681856020860161261d565b61268f81612650565b840191505092915050565b600060208201905081810360008301526126b48184612661565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126e7826126bc565b9050919050565b6126f7816126dc565b82525050565b600060208201905061271260008301846126ee565b92915050565b612721816126dc565b811461272c57600080fd5b50565b60008135905061273e81612718565b92915050565b6000806040838503121561275b5761275a6124d9565b5b60006127698582860161272f565b925050602061277a858286016125bf565b9150509250929050565b61278d8161259e565b82525050565b60006020820190506127a86000830184612784565b92915050565b6000806000606084860312156127c7576127c66124d9565b5b60006127d58682870161272f565b93505060206127e68682870161272f565b92505060406127f7868287016125bf565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261282657612825612801565b5b8235905067ffffffffffffffff81111561284357612842612806565b5b60208301915083600182028301111561285f5761285e61280b565b5b9250929050565b6000806020838503121561287d5761287c6124d9565b5b600083013567ffffffffffffffff81111561289b5761289a6124de565b5b6128a785828601612810565b92509250509250929050565b6000602082840312156128c9576128c86124d9565b5b60006128d78482850161272f565b91505092915050565b600067ffffffffffffffff82169050919050565b6128fd816128e0565b82525050565b600060208201905061291860008301846128f4565b92915050565b600063ffffffff82169050919050565b6129378161291e565b811461294257600080fd5b50565b6000813590506129548161292e565b92915050565b6000602082840312156129705761296f6124d9565b5b600061297e84828501612945565b91505092915050565b61299081612568565b811461299b57600080fd5b50565b6000813590506129ad81612987565b92915050565b600080604083850312156129ca576129c96124d9565b5b60006129d88582860161272f565b92505060206129e98582860161299e565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a3082612650565b810181811067ffffffffffffffff82111715612a4f57612a4e6129f8565b5b80604052505050565b6000612a626124cf565b9050612a6e8282612a27565b919050565b600067ffffffffffffffff821115612a8e57612a8d6129f8565b5b612a9782612650565b9050602081019050919050565b82818337600083830152505050565b6000612ac6612ac184612a73565b612a58565b905082815260208101848484011115612ae257612ae16129f3565b5b612aed848285612aa4565b509392505050565b600082601f830112612b0a57612b09612801565b5b8135612b1a848260208601612ab3565b91505092915050565b60008060008060808587031215612b3d57612b3c6124d9565b5b6000612b4b8782880161272f565b9450506020612b5c8782880161272f565b9350506040612b6d878288016125bf565b925050606085013567ffffffffffffffff811115612b8e57612b8d6124de565b5b612b9a87828801612af5565b91505092959194509250565b60008060408385031215612bbd57612bbc6124d9565b5b6000612bcb8582860161272f565b9250506020612bdc8582860161272f565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c1c60208361260c565b9150612c2782612be6565b602082019050919050565b60006020820190508181036000830152612c4b81612c0f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c9957607f821691505b602082108103612cac57612cab612c52565b5b50919050565b7f506c6561736520736574206d696e7420616d6f756e7400000000000000000000600082015250565b6000612ce860168361260c565b9150612cf382612cb2565b602082019050919050565b60006020820190508181036000830152612d1781612cdb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d588261259e565b9150612d638361259e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d9857612d97612d1e565b5b828201905092915050565b7f4d696e74206973206e6f74206163746976652079657400000000000000000000600082015250565b6000612dd960168361260c565b9150612de482612da3565b602082019050919050565b60006020820190508181036000830152612e0881612dcc565b9050919050565b6000612e1a8261259e565b9150612e258361259e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e5e57612e5d612d1e565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e7400000000600082015250565b6000612e9f601c8361260c565b9150612eaa82612e69565b602082019050919050565b60006020820190508181036000830152612ece81612e92565b9050919050565b7f556e61626c6520746f204d696e74206f766572206d617820737570706c790000600082015250565b6000612f0b601e8361260c565b9150612f1682612ed5565b602082019050919050565b60006020820190508181036000830152612f3a81612efe565b9050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b6000612f7760178361260c565b9150612f8282612f41565b602082019050919050565b60006020820190508181036000830152612fa681612f6a565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000612fe360138361260c565b9150612fee82612fad565b602082019050919050565b6000602082019050818103600083015261301281612fd6565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613075602f8361260c565b915061308082613019565b604082019050919050565b600060208201905081810360008301526130a481613068565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546130d881612c81565b6130e281866130ab565b945060018216600081146130fd576001811461310e57613141565b60ff19831686528186019350613141565b613117856130b6565b60005b838110156131395781548189015260018201915060208101905061311a565b838801955050505b50505092915050565b600061315582612601565b61315f81856130ab565b935061316f81856020860161261d565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006131b16005836130ab565b91506131bc8261317b565b600582019050919050565b60006131d382856130cb565b91506131df828461314a565b91506131ea826131a4565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061325260268361260c565b915061325d826131f6565b604082019050919050565b6000602082019050818103600083015261328181613245565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006132af82613288565b6132b98185613293565b93506132c981856020860161261d565b6132d281612650565b840191505092915050565b60006080820190506132f260008301876126ee565b6132ff60208301866126ee565b61330c6040830185612784565b818103606083015261331e81846132a4565b905095945050505050565b6000815190506133388161250f565b92915050565b600060208284031215613354576133536124d9565b5b600061336284828501613329565b91505092915050565b60006133768261259e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036133a8576133a7612d1e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006133ed8261259e565b91506133f88361259e565b925082613408576134076133b3565b5b828204905092915050565b600061341e8261259e565b91506134298361259e565b92508282101561343c5761343b612d1e565b5b828203905092915050565b60006134528261259e565b915061345d8361259e565b92508261346d5761346c6133b3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212203bd454c173708e13bcf2ef7a3b80bd441c517dfff39e72d30cba7395b4650f0b64736f6c634300080d0033

Deployed Bytecode Sourcemap

43967:2593:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15197:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45754:136;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20210:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22278:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21738:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14251:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23164:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44211:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46448:109;;;;;;;;;;;;;:::i;:::-;;23405:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45643:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19999:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46015:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15876:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43077:103;;;;;;;;;;;;;:::i;:::-;;44163:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44291:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42426:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45898:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20379:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44427:721;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46344:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22554:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46246:90;;;;;;;;;;;;;:::i;:::-;;23661:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44080:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45277:358;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44322:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44251:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22933:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46139:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43335:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44127:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15197:615;15282:4;15597:10;15582:25;;:11;:25;;;;:102;;;;15674:10;15659:25;;:11;:25;;;;15582:102;:179;;;;15751:10;15736:25;;:11;:25;;;;15582:179;15562:199;;15197:615;;;:::o;45754:136::-;42657:12;:10;:12::i;:::-;42646:23;;:7;:5;:7::i;:::-;:23;;;42638:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45864:18:::1;45841:20;:41;;;;45754:136:::0;:::o;20210:100::-;20264:13;20297:5;20290:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20210:100;:::o;22278:204::-;22346:7;22371:16;22379:7;22371;:16::i;:::-;22366:64;;22396:34;;;;;;;;;;;;;;22366:64;22450:15;:24;22466:7;22450:24;;;;;;;;;;;;;;;;;;;;;22443:31;;22278:204;;;:::o;21738:474::-;21811:13;21843:27;21862:7;21843:18;:27::i;:::-;21811:61;;21893:5;21887:11;;:2;:11;;;21883:48;;21907:24;;;;;;;;;;;;;;21883:48;21971:5;21948:28;;:19;:17;:19::i;:::-;:28;;;21944:175;;21996:44;22013:5;22020:19;:17;:19::i;:::-;21996:16;:44::i;:::-;21991:128;;22068:35;;;;;;;;;;;;;;21991:128;21944:175;22158:2;22131:15;:24;22147:7;22131:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;22196:7;22192:2;22176:28;;22185:5;22176:28;;;;;;;;;;;;21800:412;21738:474;;:::o;14251:315::-;14304:7;14532:15;:13;:15::i;:::-;14517:12;;14501:13;;:28;:46;14494:53;;14251:315;:::o;23164:170::-;23298:28;23308:4;23314:2;23318:7;23298:9;:28::i;:::-;23164:170;;;:::o;44211:31::-;;;;:::o;46448:109::-;42657:12;:10;:12::i;:::-;42646:23;;:7;:5;:7::i;:::-;:23;;;42638:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46506:10:::1;46498:28;;:51;46527:21;46498:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;46448:109::o:0;23405:185::-;23543:39;23560:4;23566:2;23570:7;23543:39;;;;;;;;;;;;:16;:39::i;:::-;23405:185;;;:::o;45643:103::-;42657:12;:10;:12::i;:::-;42646:23;;:7;:5;:7::i;:::-;:23;;;42638:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45731:7:::1;;45716:12;:22;;;;;;;:::i;:::-;;45643:103:::0;;:::o;19999:144::-;20063:7;20106:27;20125:7;20106:18;:27::i;:::-;20083:52;;19999:144;;;:::o;46015:116::-;42657:12;:10;:12::i;:::-;42646:23;;:7;:5;:7::i;:::-;:23;;;42638:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46106:17:::1;46094:9;:29;;;;46015:116:::0;:::o;15876:224::-;15940:7;15981:1;15964:19;;:5;:19;;;15960:60;;15992:28;;;;;;;;;;;;;;15960:60;11215:13;16038:18;:25;16057:5;16038:25;;;;;;;;;;;;;;;;:54;16031:61;;15876:224;;;:::o;43077:103::-;42657:12;:10;:12::i;:::-;42646:23;;:7;:5;:7::i;:::-;:23;;;42638:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43142:30:::1;43169:1;43142:18;:30::i;:::-;43077:103::o:0;44163:39::-;;;;:::o;44291:22::-;;;;;;;;;;;;;:::o;42426:87::-;42472:7;42499:6;;;;;;;;;;;42492:13;;42426:87;:::o;45898:105::-;42657:12;:10;:12::i;:::-;42646:23;;:7;:5;:7::i;:::-;:23;;;42638:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45984:11:::1;45972:9;:23;;;;45898:105:::0;:::o;20379:104::-;20435:13;20468:7;20461:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20379:104;:::o;44427:721::-;44503:1;44493:6;:11;44485:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;44542:10;44555:9;;44542:22;;44605:9;;44595:6;44579:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;:97;;;;;44656:20;;44646:6;44618:25;44632:10;44618:13;:25::i;:::-;:34;;;;:::i;:::-;:58;;44579:97;44575:148;;;44710:1;44702:9;;44575:148;44752:1;44741:8;;;;;;;;;;;:12;;;;:44;;;;;44777:8;;;;;;;;;;;44758:27;;:15;:27;;44741:44;44733:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;44852:5;44843:6;:14;;;;:::i;:::-;44830:9;:27;;44822:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44935:9;;44925:6;44909:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;44901:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;44998:11;;;;;;;;;;;44990:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;45066:8;;45056:6;:18;;45048:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;45111:29;45121:10;45133:6;45111:9;:29::i;:::-;44474:674;44427:721;:::o;46344:96::-;42657:12;:10;:12::i;:::-;42646:23;;:7;:5;:7::i;:::-;:23;;;42638:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46422:10:::1;46411:21;;:8;;:21;;;;;;;;;;;;;;;;;;46344:96:::0;:::o;22554:308::-;22665:19;:17;:19::i;:::-;22653:31;;:8;:31;;;22649:61;;22693:17;;;;;;;;;;;;;;22649:61;22775:8;22723:18;:39;22742:19;:17;:19::i;:::-;22723:39;;;;;;;;;;;;;;;:49;22763:8;22723:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;22835:8;22799:55;;22814:19;:17;:19::i;:::-;22799:55;;;22845:8;22799:55;;;;;;:::i;:::-;;;;;;;;22554:308;;:::o;46246:90::-;42657:12;:10;:12::i;:::-;42646:23;;:7;:5;:7::i;:::-;:23;;;42638:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46317:11:::1;;;;;;;;;;;46316:12;46302:11;;:26;;;;;;;;;;;;;;;;;;46246:90::o:0;23661:396::-;23828:28;23838:4;23844:2;23848:7;23828:9;:28::i;:::-;23889:1;23871:2;:14;;;:19;23867:183;;23910:56;23941:4;23947:2;23951:7;23960:5;23910:30;:56::i;:::-;23905:145;;23994:40;;;;;;;;;;;;;;23905:145;23867:183;23661:396;;;;:::o;44080:38::-;;;;:::o;45277:358::-;45395:13;45451:16;45459:7;45451;:16::i;:::-;45429:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;45584:12;45598:18;:7;:16;:18::i;:::-;45567:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45553:74;;45277:358;;;:::o;44322:30::-;;;;;;;;;;;;;:::o;44251:31::-;;;;:::o;22933:164::-;23030:4;23054:18;:25;23073:5;23054:25;;;;;;;;;;;;;;;:35;23080:8;23054:35;;;;;;;;;;;;;;;;;;;;;;;;;23047:42;;22933:164;;;;:::o;46139:99::-;42657:12;:10;:12::i;:::-;42646:23;;:7;:5;:7::i;:::-;:23;;;42638:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46221:9:::1;46209;:21;;;;46139:99:::0;:::o;43335:201::-;42657:12;:10;:12::i;:::-;42646:23;;:7;:5;:7::i;:::-;:23;;;42638:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43444:1:::1;43424:22;;:8;:22;;::::0;43416:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;43500:28;43519:8;43500:18;:28::i;:::-;43335:201:::0;:::o;44127:27::-;;;;:::o;41150:98::-;41203:7;41230:10;41223:17;;41150:98;:::o;24312:273::-;24369:4;24425:7;24406:15;:13;:15::i;:::-;:26;;:66;;;;;24459:13;;24449:7;:23;24406:66;:152;;;;;24557:1;11985:8;24510:17;:26;24528:7;24510:26;;;;;;;;;;;;:43;:48;24406:152;24386:172;;24312:273;;;:::o;17514:1129::-;17581:7;17601:12;17616:7;17601:22;;17684:4;17665:15;:13;:15::i;:::-;:23;17661:915;;17718:13;;17711:4;:20;17707:869;;;17756:14;17773:17;:23;17791:4;17773:23;;;;;;;;;;;;17756:40;;17889:1;11985:8;17862:6;:23;:28;17858:699;;18381:113;18398:1;18388:6;:11;18381:113;;18441:17;:25;18459:6;;;;;;;18441:25;;;;;;;;;;;;18432:34;;18381:113;;;18527:6;18520:13;;;;;;17858:699;17733:843;17707:869;17661:915;18604:31;;;;;;;;;;;;;;17514:1129;;;;:::o;38294:105::-;38354:7;38381:10;38374:17;;38294:105;:::o;13774:92::-;13830:7;13774:92;:::o;29551:2515::-;29666:27;29696;29715:7;29696:18;:27::i;:::-;29666:57;;29781:4;29740:45;;29756:19;29740:45;;;29736:86;;29794:28;;;;;;;;;;;;;;29736:86;29835:22;29884:4;29861:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;29905:43;29922:4;29928:19;:17;:19::i;:::-;29905:16;:43::i;:::-;29861:87;:147;;;;29989:19;:17;:19::i;:::-;29965:43;;:20;29977:7;29965:11;:20::i;:::-;:43;;;29861:147;29835:174;;30027:17;30022:66;;30053:35;;;;;;;;;;;;;;30022:66;30117:1;30103:16;;:2;:16;;;30099:52;;30128:23;;;;;;;;;;;;;;30099:52;30164:43;30186:4;30192:2;30196:7;30205:1;30164:21;:43::i;:::-;30280:15;:24;30296:7;30280:24;;;;;;;;;;;;30273:31;;;;;;;;;;;30672:18;:24;30691:4;30672:24;;;;;;;;;;;;;;;;30670:26;;;;;;;;;;;;30741:18;:22;30760:2;30741:22;;;;;;;;;;;;;;;;30739:24;;;;;;;;;;;12267:8;11869:3;31122:15;:41;;31080:21;31098:2;31080:17;:21::i;:::-;:84;:128;31034:17;:26;31052:7;31034:26;;;;;;;;;;;:174;;;;31378:1;12267:8;31328:19;:46;:51;31324:626;;31400:19;31432:1;31422:7;:11;31400:33;;31589:1;31555:17;:30;31573:11;31555:30;;;;;;;;;;;;:35;31551:384;;31693:13;;31678:11;:28;31674:242;;31873:19;31840:17;:30;31858:11;31840:30;;;;;;;;;;;:52;;;;31674:242;31551:384;31381:569;31324:626;31997:7;31993:2;31978:27;;31987:4;31978:27;;;;;;;;;;;;32016:42;32037:4;32043:2;32047:7;32056:1;32016:20;:42::i;:::-;29655:2411;;29551:2515;;;:::o;43696:191::-;43770:16;43789:6;;;;;;;;;;;43770:25;;43815:8;43806:6;;:17;;;;;;;;;;;;;;;;;;43870:8;43839:40;;43860:8;43839:40;;;;;;;;;;;;43759:128;43696:191;:::o;16182:176::-;16243:7;11215:13;11352:2;16271:18;:25;16290:5;16271:25;;;;;;;;;;;;;;;;:49;;16270:80;16263:87;;16182:176;;;:::o;24669:104::-;24738:27;24748:2;24752:8;24738:27;;;;;;;;;;;;:9;:27::i;:::-;24669:104;;:::o;35763:716::-;35926:4;35972:2;35947:45;;;35993:19;:17;:19::i;:::-;36014:4;36020:7;36029:5;35947:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35943:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36247:1;36230:6;:13;:18;36226:235;;36276:40;;;;;;;;;;;;;;36226:235;36419:6;36413:13;36404:6;36400:2;36396:15;36389:38;35943:529;36116:54;;;36106:64;;;:6;:64;;;;36099:71;;;35763:716;;;;;;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;37127:159::-;;;;;:::o;21299:148::-;21363:14;21424:5;21414:15;;21299:148;;;:::o;37945:158::-;;;;;:::o;25146:2236::-;25269:20;25292:13;;25269:36;;25334:1;25320:16;;:2;:16;;;25316:48;;25345:19;;;;;;;;;;;;;;25316:48;25391:1;25379:8;:13;25375:44;;25401:18;;;;;;;;;;;;;;25375:44;25432:61;25462:1;25466:2;25470:12;25484:8;25432:21;:61::i;:::-;26036:1;11352:2;26007:1;:25;;26006:31;25994:8;:44;25968:18;:22;25987:2;25968:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;12132:3;26437:29;26464:1;26452:8;:13;26437:14;:29::i;:::-;:56;;11869:3;26374:15;:41;;26332:21;26350:2;26332:17;:21::i;:::-;:84;:162;26281:17;:31;26299:12;26281:31;;;;;;;;;;;:213;;;;26511:20;26534:12;26511:35;;26561:11;26590:8;26575:12;:23;26561:37;;26637:1;26619:2;:14;;;:19;26615:635;;26659:313;26715:12;26711:2;26690:38;;26707:1;26690:38;;;;;;;;;;;;26756:69;26795:1;26799:2;26803:14;;;;;;26819:5;26756:30;:69::i;:::-;26751:174;;26861:40;;;;;;;;;;;;;;26751:174;26967:3;26952:12;:18;26659:313;;27053:12;27036:13;;:29;27032:43;;27067:8;;;27032:43;26615:635;;;27116:119;27172:14;;;;;;27168:2;27147:40;;27164:1;27147:40;;;;;;;;;;;;27230:3;27215:12;:18;27116:119;;26615:635;27280:12;27264:13;:28;;;;25745:1559;;27314:60;27343:1;27347:2;27351:12;27365:8;27314:20;:60::i;:::-;25258:2124;25146:2236;;;:::o;21534:142::-;21592:14;21653:5;21643:15;;21534:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:122::-;1674:24;1692:5;1674:24;:::i;:::-;1667:5;1664:35;1654:63;;1713:1;1710;1703:12;1654:63;1601:122;:::o;1729:139::-;1775:5;1813:6;1800:20;1791:29;;1829:33;1856:5;1829:33;:::i;:::-;1729:139;;;;:::o;1874:329::-;1933:6;1982:2;1970:9;1961:7;1957:23;1953:32;1950:119;;;1988:79;;:::i;:::-;1950:119;2108:1;2133:53;2178:7;2169:6;2158:9;2154:22;2133:53;:::i;:::-;2123:63;;2079:117;1874:329;;;;:::o;2209:99::-;2261:6;2295:5;2289:12;2279:22;;2209:99;;;:::o;2314:169::-;2398:11;2432:6;2427:3;2420:19;2472:4;2467:3;2463:14;2448:29;;2314:169;;;;:::o;2489:307::-;2557:1;2567:113;2581:6;2578:1;2575:13;2567:113;;;2666:1;2661:3;2657:11;2651:18;2647:1;2642:3;2638:11;2631:39;2603:2;2600:1;2596:10;2591:15;;2567:113;;;2698:6;2695:1;2692:13;2689:101;;;2778:1;2769:6;2764:3;2760:16;2753:27;2689:101;2538:258;2489:307;;;:::o;2802:102::-;2843:6;2894:2;2890:7;2885:2;2878:5;2874:14;2870:28;2860:38;;2802:102;;;:::o;2910:364::-;2998:3;3026:39;3059:5;3026:39;:::i;:::-;3081:71;3145:6;3140:3;3081:71;:::i;:::-;3074:78;;3161:52;3206:6;3201:3;3194:4;3187:5;3183:16;3161:52;:::i;:::-;3238:29;3260:6;3238:29;:::i;:::-;3233:3;3229:39;3222:46;;3002:272;2910:364;;;;:::o;3280:313::-;3393:4;3431:2;3420:9;3416:18;3408:26;;3480:9;3474:4;3470:20;3466:1;3455:9;3451:17;3444:47;3508:78;3581:4;3572:6;3508:78;:::i;:::-;3500:86;;3280:313;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:117;6270:1;6267;6260:12;6298:553;6356:8;6366:6;6416:3;6409:4;6401:6;6397:17;6393:27;6383:122;;6424:79;;:::i;:::-;6383:122;6537:6;6524:20;6514:30;;6567:18;6559:6;6556:30;6553:117;;;6589:79;;:::i;:::-;6553:117;6703:4;6695:6;6691:17;6679:29;;6757:3;6749:4;6741:6;6737:17;6727:8;6723:32;6720:41;6717:128;;;6764:79;;:::i;:::-;6717:128;6298:553;;;;;:::o;6857:529::-;6928:6;6936;6985:2;6973:9;6964:7;6960:23;6956:32;6953:119;;;6991:79;;:::i;:::-;6953:119;7139:1;7128:9;7124:17;7111:31;7169:18;7161:6;7158:30;7155:117;;;7191:79;;:::i;:::-;7155:117;7304:65;7361:7;7352:6;7341:9;7337:22;7304:65;:::i;:::-;7286:83;;;;7082:297;6857:529;;;;;:::o;7392:329::-;7451:6;7500:2;7488:9;7479:7;7475:23;7471:32;7468:119;;;7506:79;;:::i;:::-;7468:119;7626:1;7651:53;7696:7;7687:6;7676:9;7672:22;7651:53;:::i;:::-;7641:63;;7597:117;7392:329;;;;:::o;7727:101::-;7763:7;7803:18;7796:5;7792:30;7781:41;;7727:101;;;:::o;7834:115::-;7919:23;7936:5;7919:23;:::i;:::-;7914:3;7907:36;7834:115;;:::o;7955:218::-;8046:4;8084:2;8073:9;8069:18;8061:26;;8097:69;8163:1;8152:9;8148:17;8139:6;8097:69;:::i;:::-;7955:218;;;;:::o;8179:93::-;8215:7;8255:10;8248:5;8244:22;8233:33;;8179:93;;;:::o;8278:120::-;8350:23;8367:5;8350:23;:::i;:::-;8343:5;8340:34;8330:62;;8388:1;8385;8378:12;8330:62;8278:120;:::o;8404:137::-;8449:5;8487:6;8474:20;8465:29;;8503:32;8529:5;8503:32;:::i;:::-;8404:137;;;;:::o;8547:327::-;8605:6;8654:2;8642:9;8633:7;8629:23;8625:32;8622:119;;;8660:79;;:::i;:::-;8622:119;8780:1;8805:52;8849:7;8840:6;8829:9;8825:22;8805:52;:::i;:::-;8795:62;;8751:116;8547:327;;;;:::o;8880:116::-;8950:21;8965:5;8950:21;:::i;:::-;8943:5;8940:32;8930:60;;8986:1;8983;8976:12;8930:60;8880:116;:::o;9002:133::-;9045:5;9083:6;9070:20;9061:29;;9099:30;9123:5;9099:30;:::i;:::-;9002:133;;;;:::o;9141:468::-;9206:6;9214;9263:2;9251:9;9242:7;9238:23;9234:32;9231:119;;;9269:79;;:::i;:::-;9231:119;9389:1;9414:53;9459:7;9450:6;9439:9;9435:22;9414:53;:::i;:::-;9404:63;;9360:117;9516:2;9542:50;9584:7;9575:6;9564:9;9560:22;9542:50;:::i;:::-;9532:60;;9487:115;9141:468;;;;;:::o;9615:117::-;9724:1;9721;9714:12;9738:180;9786:77;9783:1;9776:88;9883:4;9880:1;9873:15;9907:4;9904:1;9897:15;9924:281;10007:27;10029:4;10007:27;:::i;:::-;9999:6;9995:40;10137:6;10125:10;10122:22;10101:18;10089:10;10086:34;10083:62;10080:88;;;10148:18;;:::i;:::-;10080:88;10188:10;10184:2;10177:22;9967:238;9924:281;;:::o;10211:129::-;10245:6;10272:20;;:::i;:::-;10262:30;;10301:33;10329:4;10321:6;10301:33;:::i;:::-;10211:129;;;:::o;10346:307::-;10407:4;10497:18;10489:6;10486:30;10483:56;;;10519:18;;:::i;:::-;10483:56;10557:29;10579:6;10557:29;:::i;:::-;10549:37;;10641:4;10635;10631:15;10623:23;;10346:307;;;:::o;10659:154::-;10743:6;10738:3;10733;10720:30;10805:1;10796:6;10791:3;10787:16;10780:27;10659:154;;;:::o;10819:410::-;10896:5;10921:65;10937:48;10978:6;10937:48;:::i;:::-;10921:65;:::i;:::-;10912:74;;11009:6;11002:5;10995:21;11047:4;11040:5;11036:16;11085:3;11076:6;11071:3;11067:16;11064:25;11061:112;;;11092:79;;:::i;:::-;11061:112;11182:41;11216:6;11211:3;11206;11182:41;:::i;:::-;10902:327;10819:410;;;;;:::o;11248:338::-;11303:5;11352:3;11345:4;11337:6;11333:17;11329:27;11319:122;;11360:79;;:::i;:::-;11319:122;11477:6;11464:20;11502:78;11576:3;11568:6;11561:4;11553:6;11549:17;11502:78;:::i;:::-;11493:87;;11309:277;11248:338;;;;:::o;11592:943::-;11687:6;11695;11703;11711;11760:3;11748:9;11739:7;11735:23;11731:33;11728:120;;;11767:79;;:::i;:::-;11728:120;11887:1;11912:53;11957:7;11948:6;11937:9;11933:22;11912:53;:::i;:::-;11902:63;;11858:117;12014:2;12040:53;12085:7;12076:6;12065:9;12061:22;12040:53;:::i;:::-;12030:63;;11985:118;12142:2;12168:53;12213:7;12204:6;12193:9;12189:22;12168:53;:::i;:::-;12158:63;;12113:118;12298:2;12287:9;12283:18;12270:32;12329:18;12321:6;12318:30;12315:117;;;12351:79;;:::i;:::-;12315:117;12456:62;12510:7;12501:6;12490:9;12486:22;12456:62;:::i;:::-;12446:72;;12241:287;11592:943;;;;;;;:::o;12541:474::-;12609:6;12617;12666:2;12654:9;12645:7;12641:23;12637:32;12634:119;;;12672:79;;:::i;:::-;12634:119;12792:1;12817:53;12862:7;12853:6;12842:9;12838:22;12817:53;:::i;:::-;12807:63;;12763:117;12919:2;12945:53;12990:7;12981:6;12970:9;12966:22;12945:53;:::i;:::-;12935:63;;12890:118;12541:474;;;;;:::o;13021:182::-;13161:34;13157:1;13149:6;13145:14;13138:58;13021:182;:::o;13209:366::-;13351:3;13372:67;13436:2;13431:3;13372:67;:::i;:::-;13365:74;;13448:93;13537:3;13448:93;:::i;:::-;13566:2;13561:3;13557:12;13550:19;;13209:366;;;:::o;13581:419::-;13747:4;13785:2;13774:9;13770:18;13762:26;;13834:9;13828:4;13824:20;13820:1;13809:9;13805:17;13798:47;13862:131;13988:4;13862:131;:::i;:::-;13854:139;;13581:419;;;:::o;14006:180::-;14054:77;14051:1;14044:88;14151:4;14148:1;14141:15;14175:4;14172:1;14165:15;14192:320;14236:6;14273:1;14267:4;14263:12;14253:22;;14320:1;14314:4;14310:12;14341:18;14331:81;;14397:4;14389:6;14385:17;14375:27;;14331:81;14459:2;14451:6;14448:14;14428:18;14425:38;14422:84;;14478:18;;:::i;:::-;14422:84;14243:269;14192:320;;;:::o;14518:172::-;14658:24;14654:1;14646:6;14642:14;14635:48;14518:172;:::o;14696:366::-;14838:3;14859:67;14923:2;14918:3;14859:67;:::i;:::-;14852:74;;14935:93;15024:3;14935:93;:::i;:::-;15053:2;15048:3;15044:12;15037:19;;14696:366;;;:::o;15068:419::-;15234:4;15272:2;15261:9;15257:18;15249:26;;15321:9;15315:4;15311:20;15307:1;15296:9;15292:17;15285:47;15349:131;15475:4;15349:131;:::i;:::-;15341:139;;15068:419;;;:::o;15493:180::-;15541:77;15538:1;15531:88;15638:4;15635:1;15628:15;15662:4;15659:1;15652:15;15679:305;15719:3;15738:20;15756:1;15738:20;:::i;:::-;15733:25;;15772:20;15790:1;15772:20;:::i;:::-;15767:25;;15926:1;15858:66;15854:74;15851:1;15848:81;15845:107;;;15932:18;;:::i;:::-;15845:107;15976:1;15973;15969:9;15962:16;;15679:305;;;;:::o;15990:172::-;16130:24;16126:1;16118:6;16114:14;16107:48;15990:172;:::o;16168:366::-;16310:3;16331:67;16395:2;16390:3;16331:67;:::i;:::-;16324:74;;16407:93;16496:3;16407:93;:::i;:::-;16525:2;16520:3;16516:12;16509:19;;16168:366;;;:::o;16540:419::-;16706:4;16744:2;16733:9;16729:18;16721:26;;16793:9;16787:4;16783:20;16779:1;16768:9;16764:17;16757:47;16821:131;16947:4;16821:131;:::i;:::-;16813:139;;16540:419;;;:::o;16965:348::-;17005:7;17028:20;17046:1;17028:20;:::i;:::-;17023:25;;17062:20;17080:1;17062:20;:::i;:::-;17057:25;;17250:1;17182:66;17178:74;17175:1;17172:81;17167:1;17160:9;17153:17;17149:105;17146:131;;;17257:18;;:::i;:::-;17146:131;17305:1;17302;17298:9;17287:20;;16965:348;;;;:::o;17319:178::-;17459:30;17455:1;17447:6;17443:14;17436:54;17319:178;:::o;17503:366::-;17645:3;17666:67;17730:2;17725:3;17666:67;:::i;:::-;17659:74;;17742:93;17831:3;17742:93;:::i;:::-;17860:2;17855:3;17851:12;17844:19;;17503:366;;;:::o;17875:419::-;18041:4;18079:2;18068:9;18064:18;18056:26;;18128:9;18122:4;18118:20;18114:1;18103:9;18099:17;18092:47;18156:131;18282:4;18156:131;:::i;:::-;18148:139;;17875:419;;;:::o;18300:180::-;18440:32;18436:1;18428:6;18424:14;18417:56;18300:180;:::o;18486:366::-;18628:3;18649:67;18713:2;18708:3;18649:67;:::i;:::-;18642:74;;18725:93;18814:3;18725:93;:::i;:::-;18843:2;18838:3;18834:12;18827:19;;18486:366;;;:::o;18858:419::-;19024:4;19062:2;19051:9;19047:18;19039:26;;19111:9;19105:4;19101:20;19097:1;19086:9;19082:17;19075:47;19139:131;19265:4;19139:131;:::i;:::-;19131:139;;18858:419;;;:::o;19283:173::-;19423:25;19419:1;19411:6;19407:14;19400:49;19283:173;:::o;19462:366::-;19604:3;19625:67;19689:2;19684:3;19625:67;:::i;:::-;19618:74;;19701:93;19790:3;19701:93;:::i;:::-;19819:2;19814:3;19810:12;19803:19;;19462:366;;;:::o;19834:419::-;20000:4;20038:2;20027:9;20023:18;20015:26;;20087:9;20081:4;20077:20;20073:1;20062:9;20058:17;20051:47;20115:131;20241:4;20115:131;:::i;:::-;20107:139;;19834:419;;;:::o;20259:169::-;20399:21;20395:1;20387:6;20383:14;20376:45;20259:169;:::o;20434:366::-;20576:3;20597:67;20661:2;20656:3;20597:67;:::i;:::-;20590:74;;20673:93;20762:3;20673:93;:::i;:::-;20791:2;20786:3;20782:12;20775:19;;20434:366;;;:::o;20806:419::-;20972:4;21010:2;20999:9;20995:18;20987:26;;21059:9;21053:4;21049:20;21045:1;21034:9;21030:17;21023:47;21087:131;21213:4;21087:131;:::i;:::-;21079:139;;20806:419;;;:::o;21231:234::-;21371:34;21367:1;21359:6;21355:14;21348:58;21440:17;21435:2;21427:6;21423:15;21416:42;21231:234;:::o;21471:366::-;21613:3;21634:67;21698:2;21693:3;21634:67;:::i;:::-;21627:74;;21710:93;21799:3;21710:93;:::i;:::-;21828:2;21823:3;21819:12;21812:19;;21471:366;;;:::o;21843:419::-;22009:4;22047:2;22036:9;22032:18;22024:26;;22096:9;22090:4;22086:20;22082:1;22071:9;22067:17;22060:47;22124:131;22250:4;22124:131;:::i;:::-;22116:139;;21843:419;;;:::o;22268:148::-;22370:11;22407:3;22392:18;;22268:148;;;;:::o;22422:141::-;22471:4;22494:3;22486:11;;22517:3;22514:1;22507:14;22551:4;22548:1;22538:18;22530:26;;22422:141;;;:::o;22593:845::-;22696:3;22733:5;22727:12;22762:36;22788:9;22762:36;:::i;:::-;22814:89;22896:6;22891:3;22814:89;:::i;:::-;22807:96;;22934:1;22923:9;22919:17;22950:1;22945:137;;;;23096:1;23091:341;;;;22912:520;;22945:137;23029:4;23025:9;23014;23010:25;23005:3;22998:38;23065:6;23060:3;23056:16;23049:23;;22945:137;;23091:341;23158:38;23190:5;23158:38;:::i;:::-;23218:1;23232:154;23246:6;23243:1;23240:13;23232:154;;;23320:7;23314:14;23310:1;23305:3;23301:11;23294:35;23370:1;23361:7;23357:15;23346:26;;23268:4;23265:1;23261:12;23256:17;;23232:154;;;23415:6;23410:3;23406:16;23399:23;;23098:334;;22912:520;;22700:738;;22593:845;;;;:::o;23444:377::-;23550:3;23578:39;23611:5;23578:39;:::i;:::-;23633:89;23715:6;23710:3;23633:89;:::i;:::-;23626:96;;23731:52;23776:6;23771:3;23764:4;23757:5;23753:16;23731:52;:::i;:::-;23808:6;23803:3;23799:16;23792:23;;23554:267;23444:377;;;;:::o;23827:155::-;23967:7;23963:1;23955:6;23951:14;23944:31;23827:155;:::o;23988:400::-;24148:3;24169:84;24251:1;24246:3;24169:84;:::i;:::-;24162:91;;24262:93;24351:3;24262:93;:::i;:::-;24380:1;24375:3;24371:11;24364:18;;23988:400;;;:::o;24394:695::-;24672:3;24694:92;24782:3;24773:6;24694:92;:::i;:::-;24687:99;;24803:95;24894:3;24885:6;24803:95;:::i;:::-;24796:102;;24915:148;25059:3;24915:148;:::i;:::-;24908:155;;25080:3;25073:10;;24394:695;;;;;:::o;25095:225::-;25235:34;25231:1;25223:6;25219:14;25212:58;25304:8;25299:2;25291:6;25287:15;25280:33;25095:225;:::o;25326:366::-;25468:3;25489:67;25553:2;25548:3;25489:67;:::i;:::-;25482:74;;25565:93;25654:3;25565:93;:::i;:::-;25683:2;25678:3;25674:12;25667:19;;25326:366;;;:::o;25698:419::-;25864:4;25902:2;25891:9;25887:18;25879:26;;25951:9;25945:4;25941:20;25937:1;25926:9;25922:17;25915:47;25979:131;26105:4;25979:131;:::i;:::-;25971:139;;25698:419;;;:::o;26123:98::-;26174:6;26208:5;26202:12;26192:22;;26123:98;;;:::o;26227:168::-;26310:11;26344:6;26339:3;26332:19;26384:4;26379:3;26375:14;26360:29;;26227:168;;;;:::o;26401:360::-;26487:3;26515:38;26547:5;26515:38;:::i;:::-;26569:70;26632:6;26627:3;26569:70;:::i;:::-;26562:77;;26648:52;26693:6;26688:3;26681:4;26674:5;26670:16;26648:52;:::i;:::-;26725:29;26747:6;26725:29;:::i;:::-;26720:3;26716:39;26709:46;;26491:270;26401:360;;;;:::o;26767:640::-;26962:4;27000:3;26989:9;26985:19;26977:27;;27014:71;27082:1;27071:9;27067:17;27058:6;27014:71;:::i;:::-;27095:72;27163:2;27152:9;27148:18;27139:6;27095:72;:::i;:::-;27177;27245:2;27234:9;27230:18;27221:6;27177:72;:::i;:::-;27296:9;27290:4;27286:20;27281:2;27270:9;27266:18;27259:48;27324:76;27395:4;27386:6;27324:76;:::i;:::-;27316:84;;26767:640;;;;;;;:::o;27413:141::-;27469:5;27500:6;27494:13;27485:22;;27516:32;27542:5;27516:32;:::i;:::-;27413:141;;;;:::o;27560:349::-;27629:6;27678:2;27666:9;27657:7;27653:23;27649:32;27646:119;;;27684:79;;:::i;:::-;27646:119;27804:1;27829:63;27884:7;27875:6;27864:9;27860:22;27829:63;:::i;:::-;27819:73;;27775:127;27560:349;;;;:::o;27915:233::-;27954:3;27977:24;27995:5;27977:24;:::i;:::-;27968:33;;28023:66;28016:5;28013:77;28010:103;;28093:18;;:::i;:::-;28010:103;28140:1;28133:5;28129:13;28122:20;;27915:233;;;:::o;28154:180::-;28202:77;28199:1;28192:88;28299:4;28296:1;28289:15;28323:4;28320:1;28313:15;28340:185;28380:1;28397:20;28415:1;28397:20;:::i;:::-;28392:25;;28431:20;28449:1;28431:20;:::i;:::-;28426:25;;28470:1;28460:35;;28475:18;;:::i;:::-;28460:35;28517:1;28514;28510:9;28505:14;;28340:185;;;;:::o;28531:191::-;28571:4;28591:20;28609:1;28591:20;:::i;:::-;28586:25;;28625:20;28643:1;28625:20;:::i;:::-;28620:25;;28664:1;28661;28658:8;28655:34;;;28669:18;;:::i;:::-;28655:34;28714:1;28711;28707:9;28699:17;;28531:191;;;;:::o;28728:176::-;28760:1;28777:20;28795:1;28777:20;:::i;:::-;28772:25;;28811:20;28829:1;28811:20;:::i;:::-;28806:25;;28850:1;28840:35;;28855:18;;:::i;:::-;28840:35;28896:1;28893;28889:9;28884:14;;28728:176;;;;:::o;28910:180::-;28958:77;28955:1;28948:88;29055:4;29052:1;29045:15;29079:4;29076:1;29069:15

Swarm Source

ipfs://3bd454c173708e13bcf2ef7a3b80bd441c517dfff39e72d30cba7395b4650f0b
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.