ETH Price: $3,140.44 (-8.21%)
Gas: 6 Gwei

Token

Doodle Goats (DGOATS)
 

Overview

Max Total Supply

2,222 DGOATS

Holders

445

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 DGOATS
0xdd1bd95250d9acaa0a9d6cddbda31b5d27874dec
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:
DoodleGoats

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 800 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File erc721a/contracts/[email protected]


// 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/extensions/[email protected]


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

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721ABurnable compliant contract.
 */
interface IERC721ABurnable is IERC721A {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) external;
}


// File erc721a/contracts/[email protected]


// 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 erc721a/contracts/extensions/[email protected]

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

pragma solidity ^0.8.4;


/**
 * @title ERC721A Burnable Token
 * @dev ERC721A Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721ABurnable is ERC721A, IERC721ABurnable {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual override {
        _burn(tokenId, true);
    }
}


// File @openzeppelin/contracts/utils/[email protected]


// 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/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}


// File @openzeppelin/contracts/security/[email protected]


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


// File @openzeppelin/contracts/utils/[email protected]


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


// File @openzeppelin/contracts/utils/[email protected]


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

pragma solidity ^0.8.0;

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

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

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

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

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


// File @openzeppelin/contracts/utils/cryptography/[email protected]


// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}


// File contracts/DoodleGoats.sol

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

/* ________  ________  ________  ________  ___       _______           ________  ________  ________  _________  ________      
|\   ___ \|\   __  \|\   __  \|\   ___ \|\  \     |\  ___ \         |\   ____\|\   __  \|\   __  \|\___   ___\\   ____\     
\ \  \_|\ \ \  \|\  \ \  \|\  \ \  \_|\ \ \  \    \ \   __/|        \ \  \___|\ \  \|\  \ \  \|\  \|___ \  \_\ \  \___|_    
 \ \  \ \\ \ \  \\\  \ \  \\\  \ \  \ \\ \ \  \    \ \  \_|/__       \ \  \  __\ \  \\\  \ \   __  \   \ \  \ \ \_____  \   
  \ \  \_\\ \ \  \\\  \ \  \\\  \ \  \_\\ \ \  \____\ \  \_|\ \       \ \  \|\  \ \  \\\  \ \  \ \  \   \ \  \ \|____|\  \  
   \ \_______\ \_______\ \_______\ \_______\ \_______\ \_______\       \ \_______\ \_______\ \__\ \__\   \ \__\  ____\_\  \ 
    \|_______|\|_______|\|_______|\|_______|\|_______|\|_______|        \|_______|\|_______|\|__|\|__|    \|__| |\_________\
*/

contract DoodleGoats is ERC721ABurnable, Ownable, ReentrancyGuard {

    using Address for address;
    using Strings for uint256;

    bytes32 public hayPassMerkle = 0xb5c0cbfff10c453a59313ad84ddc61626852fa226a7a5a566426775c05c8350e;
    bytes32 public whitelistMerkle = 0xcfebf1f32d3bc50ede34e1e71aafa1bf773d581b4cc963b0c375476663034fef;

    bool public hayPassOpen = false;
    bool public whitelistOpen = false;
    bool public publicOpen = false;
    
    uint256 public hayPassPrice = 0.0155 ether;
    uint256 public whitelistPrice = 0.0355 ether;
    uint256 public publicPrice = 0.0555 ether;

    uint256 public maxSupply = 5555;
    uint256 public maxPerWallet = 10;

    string public baseURI;
    string public baseExtension = ".json";

    mapping (address => uint256) public hayPassMinted;
    mapping (address => uint256) public whitelistMinted;
    mapping (address => uint256) public publicMinted;
    
    constructor() ERC721A("Doodle Goats", "DGOATS") {
        
    }

    modifier onlySender {
        require(msg.sender == tx.origin);
        _;
    }
        modifier isHayPassOpen {
        require(hayPassOpen == true);
        _;
    }
    modifier isWhitelistOpen {
        require(whitelistOpen == true);
        _;
    }
    modifier isPublicOpen {
        require(publicOpen == true);
        _;
    }

    function hayPass(bytes32[] calldata _merkleProof, uint256 amount) public payable nonReentrant onlySender isHayPassOpen
    {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, hayPassMerkle, leaf), "Invalid proof.");

        require(msg.value >= (hayPassPrice * amount));
        require(hayPassMinted[msg.sender] + amount <= maxPerWallet, "Above Max Allowance");   
        require((totalSupply() + amount) <= maxSupply, "Sold out!");

        hayPassMinted[msg.sender] += amount;

        _safeMint(msg.sender, amount);

    }
    function whitelistMint(bytes32[] calldata _merkleProof, uint256 amount) public payable nonReentrant onlySender isWhitelistOpen
    {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, whitelistMerkle, leaf), "Invalid proof.");

        require(msg.value >= (whitelistPrice * amount));
        require(whitelistMinted[msg.sender] + amount <= maxPerWallet, "Above Max Allowance");   
        require((totalSupply() + amount) <= maxSupply, "Sold out!");

        whitelistMinted[msg.sender] += amount;

        _safeMint(msg.sender, amount);

    }
    function publicMint(uint256 amount) public payable nonReentrant onlySender isPublicOpen
    {   
        require(publicMinted[msg.sender] + amount <= maxPerWallet, "Above Max Allowance");   
        require((totalSupply() + amount) <= maxSupply, "Sold out!");

        publicMinted[msg.sender] += amount;

        _safeMint(msg.sender, amount);
    }
    //Owner Functions
    function setMerkleRoots(bytes32 _hayPassMerkle, bytes32 _whitelistMerkle) public onlyOwner
    {
        hayPassMerkle = _hayPassMerkle;
        whitelistMerkle = _whitelistMerkle;
    }
    function teamMint(uint256 amount) public onlyOwner
    {
        require((totalSupply() + amount) <= maxSupply, "Sold out!");
        _safeMint(msg.sender, amount);
    }
    function changeMaxSupply(uint256 _newSupply) public onlyOwner
    {
        maxSupply = _newSupply;
    }
    function switchSalePhase(bool _hayPass, bool _whitelist, bool _public) public onlyOwner
    {
        hayPassOpen = _hayPass;
        whitelistOpen = _whitelist;
        publicOpen = _public;
    }
    function changeMintPrice(uint256 _hayPrice, uint256 _whitelistPrice, uint256 _publicPrice) public onlyOwner
    {
        hayPassPrice = _hayPrice;
        whitelistPrice = _whitelistPrice;
        publicPrice = _publicPrice;
    }
    function withdrawContractEther(address payable recipient) external onlyOwner
    {
        recipient.transfer(address(this).balance);
    }
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }
    //Metadata Read functions
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory)
    {
        require(_exists(tokenId), "ERC721AMetadata: URI query for nonexistent token");

        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : "";
    }


    function walletOfOwner(address address_) public virtual view returns (uint256[] memory) {
        uint256 _balance = balanceOf(address_);
        uint256[] memory _tokens = new uint256[] (_balance);
        uint256 _index;
        uint256 _loopThrough = totalSupply();
        for (uint256 i = 0; i < _loopThrough; i++) {
            bool _exists = _exists(i);
            if (_exists) {
                if (ownerOf(i) == address_) { _tokens[_index] = i; _index++; }
            }
            else if (!_exists && _tokens[_balance - 1] == 0) { _loopThrough++; }
        }
        return _tokens;
    }
}

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":"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"changeMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_hayPrice","type":"uint256"},{"internalType":"uint256","name":"_whitelistPrice","type":"uint256"},{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"changeMintPrice","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":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"hayPass","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"hayPassMerkle","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hayPassMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hayPassOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hayPassPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_hayPassMerkle","type":"bytes32"},{"internalType":"bytes32","name":"_whitelistMerkle","type":"bytes32"}],"name":"setMerkleRoots","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":[{"internalType":"bool","name":"_hayPass","type":"bool"},{"internalType":"bool","name":"_whitelist","type":"bool"},{"internalType":"bool","name":"_public","type":"bool"}],"name":"switchSalePhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkle","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"}],"name":"withdrawContractEther","outputs":[],"stateMutability":"nonpayable","type":"function"}]

7fb5c0cbfff10c453a59313ad84ddc61626852fa226a7a5a566426775c05c8350e600a9081557fcfebf1f32d3bc50ede34e1e71aafa1bf773d581b4cc963b0c375476663034fef600b55600c805462ffffff191690556637112afa04c000600d55667e1f0fd986c000600e5566c52cf4b908c000600f556115b360105560115560c06040526005608081905264173539b7b760d91b60a0908152620000a891601391906200018e565b50348015620000b657600080fd5b50604080518082018252600c81526b446f6f646c6520476f61747360a01b60208083019182528351808501909452600684526544474f41545360d01b90840152815191929162000109916002916200018e565b5080516200011f9060039060208401906200018e565b5050600080555062000131336200013c565b600160095562000271565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200019c9062000234565b90600052602060002090601f016020900481019282620001c057600085556200020b565b82601f10620001db57805160ff19168380011785556200020b565b828001600101855582156200020b579182015b828111156200020b578251825591602001919060010190620001ee565b50620002199291506200021d565b5090565b5b808211156200021957600081556001016200021e565b600181811c908216806200024957607f821691505b602082108114156200026b57634e487b7160e01b600052602260045260246000fd5b50919050565b61281480620002816000396000f3fe6080604052600436106102e75760003560e01c8063715018a611610184578063a22cb465116100d6578063c87b56dd1161008a578063e985e9c511610064578063e985e9c5146107e0578063f2fde38b14610829578063fc1a1c361461084957600080fd5b8063c87b56dd14610794578063cd880553146107b4578063d5abeb01146107ca57600080fd5b8063b88d4fde116100bb578063b88d4fde1461073f578063ba70c5151461075f578063c66828621461077f57600080fd5b8063a22cb46514610709578063a945bf801461072957600080fd5b80639871b9d4116101385780639c0084ec116101125780639c0084ec146106bc578063a16d605a146106cf578063a19687ac146106ef57600080fd5b80639871b9d41461064f57806398a8cffe1461066f5780639a48eb511461069c57600080fd5b806383b11f8c1161016957806383b11f8c146105ef5780638da5cb5b1461061c57806395d89b411461063a57600080fd5b8063715018a6146105bb5780637db3aecc146105d057600080fd5b80632fbba1151161023d578063453c2310116101f15780636352211e116101cb5780636352211e146105665780636c0360eb1461058657806370a082311461059b57600080fd5b8063453c2310146105105780634de204171461052657806355f804b31461054657600080fd5b806342842e0e1161022257806342842e0e146104a357806342966c68146104c3578063438b6300146104e357600080fd5b80632fbba11514610463578063404c7cdd1461048357600080fd5b806318160ddd1161029f5780632904e6d9116102795780632904e6d914610427578063297243201461043a5780632db115441461045057600080fd5b806318160ddd146103d857806320ba1a05146103f157806323b872dd1461040757600080fd5b8063081812fc116102d0578063081812fc14610343578063095ea7b31461037b5780631015805b1461039d57600080fd5b806301ffc9a7146102ec57806306fdde0314610321575b600080fd5b3480156102f857600080fd5b5061030c6103073660046123f8565b61085f565b60405190151581526020015b60405180910390f35b34801561032d57600080fd5b506103366108b1565b6040516103189190612630565b34801561034f57600080fd5b5061036361035e36600461247b565b610943565b6040516001600160a01b039091168152602001610318565b34801561038757600080fd5b5061039b6103963660046122ec565b610987565b005b3480156103a957600080fd5b506103ca6103b83660046121a0565b60166020526000908152604090205481565b604051908152602001610318565b3480156103e457600080fd5b50600154600054036103ca565b3480156103fd57600080fd5b506103ca600a5481565b34801561041357600080fd5b5061039b6104223660046121f6565b610a5a565b61039b610435366004612318565b610a6a565b34801561044657600080fd5b506103ca600d5481565b61039b61045e36600461247b565b610caf565b34801561046f57600080fd5b5061039b61047e36600461247b565b610e1b565b34801561048f57600080fd5b5061039b61049e36600461247b565b610ec5565b3480156104af57600080fd5b5061039b6104be3660046121f6565b610f12565b3480156104cf57600080fd5b5061039b6104de36600461247b565b610f2d565b3480156104ef57600080fd5b506105036104fe3660046121a0565b610f38565b60405161031891906125ec565b34801561051c57600080fd5b506103ca60115481565b34801561053257600080fd5b5061039b610541366004612494565b611073565b34801561055257600080fd5b5061039b610561366004612432565b6110c9565b34801561057257600080fd5b5061036361058136600461247b565b611128565b34801561059257600080fd5b50610336611133565b3480156105a757600080fd5b506103ca6105b63660046121a0565b6111c1565b3480156105c757600080fd5b5061039b611210565b3480156105dc57600080fd5b50600c5461030c90610100900460ff1681565b3480156105fb57600080fd5b506103ca61060a3660046121a0565b60146020526000908152604090205481565b34801561062857600080fd5b506008546001600160a01b0316610363565b34801561064657600080fd5b50610336611264565b34801561065b57600080fd5b5061039b61066a366004612393565b611273565b34801561067b57600080fd5b506103ca61068a3660046121a0565b60156020526000908152604090205481565b3480156106a857600080fd5b5061039b6106b73660046123d6565b6112f4565b61039b6106ca366004612318565b611347565b3480156106db57600080fd5b5061039b6106ea3660046121a0565b611566565b3480156106fb57600080fd5b50600c5461030c9060ff1681565b34801561071557600080fd5b5061039b6107243660046122b7565b6115e3565b34801561073557600080fd5b506103ca600f5481565b34801561074b57600080fd5b5061039b61075a366004612237565b611679565b34801561076b57600080fd5b50600c5461030c9062010000900460ff1681565b34801561078b57600080fd5b506103366116c3565b3480156107a057600080fd5b506103366107af36600461247b565b6116d0565b3480156107c057600080fd5b506103ca600b5481565b3480156107d657600080fd5b506103ca60105481565b3480156107ec57600080fd5b5061030c6107fb3660046121bd565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561083557600080fd5b5061039b6108443660046121a0565b6117ac565b34801561085557600080fd5b506103ca600e5481565b60006301ffc9a760e01b6001600160e01b03198316148061089057506380ac58cd60e01b6001600160e01b03198316145b806108ab5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546108c0906126d1565b80601f01602080910402602001604051908101604052809291908181526020018280546108ec906126d1565b80156109395780601f1061090e57610100808354040283529160200191610939565b820191906000526020600020905b81548152906001019060200180831161091c57829003601f168201915b5050505050905090565b600061094e82611879565b61096b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610992826118a0565b9050806001600160a01b0316836001600160a01b031614156109c75760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146109fe576109e181336107fb565b6109fe576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a65838383611901565b505050565b60026009541415610ac25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600955333214610ad357600080fd5b600c5460ff610100909104161515600114610aed57600080fd5b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610b6784848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b549150849050611aa4565b610ba45760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b6044820152606401610ab9565b81600e54610bb2919061266f565b341015610bbe57600080fd5b60115433600090815260156020526040902054610bdc908490612643565b1115610c205760405162461bcd60e51b815260206004820152601360248201527241626f7665204d617820416c6c6f77616e636560681b6044820152606401610ab9565b60105482610c316001546000540390565b610c3b9190612643565b1115610c755760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610ab9565b3360009081526015602052604081208054849290610c94908490612643565b90915550610ca490503383611aba565b505060016009555050565b60026009541415610d025760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ab9565b6002600955333214610d1357600080fd5b600c5462010000900460ff161515600114610d2d57600080fd5b60115433600090815260166020526040902054610d4b908390612643565b1115610d8f5760405162461bcd60e51b815260206004820152601360248201527241626f7665204d617820416c6c6f77616e636560681b6044820152606401610ab9565b60105481610da06001546000540390565b610daa9190612643565b1115610de45760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610ab9565b3360009081526016602052604081208054839290610e03908490612643565b90915550610e1390503382611aba565b506001600955565b6008546001600160a01b03163314610e635760405162461bcd60e51b815260206004820181905260248201526000805160206127bf8339815191526044820152606401610ab9565b60105481610e746001546000540390565b610e7e9190612643565b1115610eb85760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610ab9565b610ec23382611aba565b50565b6008546001600160a01b03163314610f0d5760405162461bcd60e51b815260206004820181905260248201526000805160206127bf8339815191526044820152606401610ab9565b601055565b610a6583838360405180602001604052806000815250611679565b610ec2816001611ad4565b60606000610f45836111c1565b905060008167ffffffffffffffff811115610f6257610f6261277d565b604051908082528060200260200182016040528015610f8b578160200160208202803683370190505b509050600080610f9e6001546000540390565b905060005b81811015611068576000610fb682611879565b9050801561101157876001600160a01b0316610fd183611128565b6001600160a01b0316141561100c5781858581518110610ff357610ff3612767565b6020908102919091010152836110088161270c565b9450505b611055565b8015801561104257508461102660018861268e565b8151811061103657611036612767565b60200260200101516000145b1561105557826110518161270c565b9350505b50806110608161270c565b915050610fa3565b509195945050505050565b6008546001600160a01b031633146110bb5760405162461bcd60e51b815260206004820181905260248201526000805160206127bf8339815191526044820152606401610ab9565b600d92909255600e55600f55565b6008546001600160a01b031633146111115760405162461bcd60e51b815260206004820181905260248201526000805160206127bf8339815191526044820152606401610ab9565b805161112490601290602084019061207c565b5050565b60006108ab826118a0565b60128054611140906126d1565b80601f016020809104026020016040519081016040528092919081815260200182805461116c906126d1565b80156111b95780601f1061118e576101008083540402835291602001916111b9565b820191906000526020600020905b81548152906001019060200180831161119c57829003601f168201915b505050505081565b60006001600160a01b0382166111ea576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146112585760405162461bcd60e51b815260206004820181905260248201526000805160206127bf8339815191526044820152606401610ab9565b6112626000611c28565b565b6060600380546108c0906126d1565b6008546001600160a01b031633146112bb5760405162461bcd60e51b815260206004820181905260248201526000805160206127bf8339815191526044820152606401610ab9565b600c805461ffff191693151561ff00191693909317610100921515929092029190911762ff000019166201000091151591909102179055565b6008546001600160a01b0316331461133c5760405162461bcd60e51b815260206004820181905260248201526000805160206127bf8339815191526044820152606401610ab9565b600a91909155600b55565b6002600954141561139a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ab9565b60026009553332146113ab57600080fd5b600c5460ff1615156001146113bf57600080fd5b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061143984848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050611aa4565b6114765760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b6044820152606401610ab9565b81600d54611484919061266f565b34101561149057600080fd5b601154336000908152601460205260409020546114ae908490612643565b11156114f25760405162461bcd60e51b815260206004820152601360248201527241626f7665204d617820416c6c6f77616e636560681b6044820152606401610ab9565b601054826115036001546000540390565b61150d9190612643565b11156115475760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610ab9565b3360009081526014602052604081208054849290610c94908490612643565b6008546001600160a01b031633146115ae5760405162461bcd60e51b815260206004820181905260248201526000805160206127bf8339815191526044820152606401610ab9565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015611124573d6000803e3d6000fd5b6001600160a01b03821633141561160d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611684848484611901565b6001600160a01b0383163b156116bd576116a084848484611c7a565b6116bd576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60138054611140906126d1565b60606116db82611879565b61174d5760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201527f6f6e6578697374656e7420746f6b656e000000000000000000000000000000006064820152608401610ab9565b6000611757611d72565b9050600081511161177757604051806020016040528060008152506117a5565b8061178184611d81565b6013604051602001611795939291906124ec565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146117f45760405162461bcd60e51b815260206004820181905260248201526000805160206127bf8339815191526044820152606401610ab9565b6001600160a01b0381166118705760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610ab9565b610ec281611c28565b60008054821080156108ab575050600090815260046020526040902054600160e01b161590565b6000816000548110156118e857600081815260046020526040902054600160e01b81166118e6575b806117a55750600019016000818152600460205260409020546118c8565b505b604051636f96cda160e11b815260040160405180910390fd5b600061190c826118a0565b9050836001600160a01b0316816001600160a01b03161461193f5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061195d575061195d85336107fb565b8061197857503361196d84610943565b6001600160a01b0316145b90508061199857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166119bf57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b861781179091558216611a5c5760018301600081815260046020526040902054611a5a576000548114611a5a5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600082611ab18584611e97565b14949350505050565b611124828260405180602001604052806000815250611f0b565b6000611adf836118a0565b9050808215611b43576000336001600160a01b0383161480611b065750611b0682336107fb565b80611b21575033611b1686610943565b6001600160a01b0316145b905080611b4157604051632ce44b5f60e11b815260040160405180910390fd5b505b600084815260066020908152604080832080546001600160a01b03191690556001600160a01b03841683526005825280832080546fffffffffffffffffffffffffffffffff01905586835260049091529020600360e01b4260a01b8317179055600160e11b8216611be25760018401600081815260046020526040902054611be0576000548114611be05760008181526004602052604090208390555b505b60405184906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a4505060018054810190555050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611caf9033908990889088906004016125b0565b602060405180830381600087803b158015611cc957600080fd5b505af1925050508015611cf9575060408051601f3d908101601f19168201909252611cf691810190612415565b60015b611d54573d808015611d27576040519150601f19603f3d011682016040523d82523d6000602084013e611d2c565b606091505b508051611d4c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060601280546108c0906126d1565b606081611da55750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dcf5780611db98161270c565b9150611dc89050600a8361265b565b9150611da9565b60008167ffffffffffffffff811115611dea57611dea61277d565b6040519080825280601f01601f191660200182016040528015611e14576020820181803683370190505b5090505b8415611d6a57611e2960018361268e565b9150611e36600a86612727565b611e41906030612643565b60f81b818381518110611e5657611e56612767565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611e90600a8661265b565b9450611e18565b600081815b8451811015611f03576000858281518110611eb957611eb9612767565b60200260200101519050808311611edf5760008381526020829052604090209250611ef0565b600081815260208490526040902092505b5080611efb8161270c565b915050611e9c565b509392505050565b6000546001600160a01b038416611f3457604051622e076360e81b815260040160405180910390fd5b82611f525760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15612027575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ff06000878480600101955087611c7a565b61200d576040516368d2bf6b60e11b815260040160405180910390fd5b808210611fa557826000541461202257600080fd5b61206c565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210612028575b5060009081556116bd9085838684565b828054612088906126d1565b90600052602060002090601f0160209004810192826120aa57600085556120f0565b82601f106120c357805160ff19168380011785556120f0565b828001600101855582156120f0579182015b828111156120f05782518255916020019190600101906120d5565b506120fc929150612100565b5090565b5b808211156120fc5760008155600101612101565b600067ffffffffffffffff808411156121305761213061277d565b604051601f8501601f19908116603f011681019082821181831017156121585761215861277d565b8160405280935085815286868601111561217157600080fd5b858560208301376000602087830101525050509392505050565b8035801515811461219b57600080fd5b919050565b6000602082840312156121b257600080fd5b81356117a581612793565b600080604083850312156121d057600080fd5b82356121db81612793565b915060208301356121eb81612793565b809150509250929050565b60008060006060848603121561220b57600080fd5b833561221681612793565b9250602084013561222681612793565b929592945050506040919091013590565b6000806000806080858703121561224d57600080fd5b843561225881612793565b9350602085013561226881612793565b925060408501359150606085013567ffffffffffffffff81111561228b57600080fd5b8501601f8101871361229c57600080fd5b6122ab87823560208401612115565b91505092959194509250565b600080604083850312156122ca57600080fd5b82356122d581612793565b91506122e36020840161218b565b90509250929050565b600080604083850312156122ff57600080fd5b823561230a81612793565b946020939093013593505050565b60008060006040848603121561232d57600080fd5b833567ffffffffffffffff8082111561234557600080fd5b818601915086601f83011261235957600080fd5b81358181111561236857600080fd5b8760208260051b850101111561237d57600080fd5b6020928301989097509590910135949350505050565b6000806000606084860312156123a857600080fd5b6123b18461218b565b92506123bf6020850161218b565b91506123cd6040850161218b565b90509250925092565b600080604083850312156123e957600080fd5b50508035926020909101359150565b60006020828403121561240a57600080fd5b81356117a5816127a8565b60006020828403121561242757600080fd5b81516117a5816127a8565b60006020828403121561244457600080fd5b813567ffffffffffffffff81111561245b57600080fd5b8201601f8101841361246c57600080fd5b611d6a84823560208401612115565b60006020828403121561248d57600080fd5b5035919050565b6000806000606084860312156124a957600080fd5b505081359360208301359350604090920135919050565b600081518084526124d88160208601602086016126a5565b601f01601f19169290920160200192915050565b6000845160206124ff8285838a016126a5565b8551918401916125128184848a016126a5565b8554920191600090600181811c908083168061252f57607f831692505b85831081141561254d57634e487b7160e01b85526022600452602485fd5b80801561256157600181146125725761259f565b60ff1985168852838801955061259f565b60008b81526020902060005b858110156125975781548a82015290840190880161257e565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526125e260808301846124c0565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561262457835183529284019291840191600101612608565b50909695505050505050565b6020815260006117a560208301846124c0565b600082198211156126565761265661273b565b500190565b60008261266a5761266a612751565b500490565b60008160001904831182151516156126895761268961273b565b500290565b6000828210156126a0576126a061273b565b500390565b60005b838110156126c05781810151838201526020016126a8565b838111156116bd5750506000910152565b600181811c908216806126e557607f821691505b6020821081141561270657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127205761272061273b565b5060010190565b60008261273657612736612751565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610ec257600080fd5b6001600160e01b031981168114610ec257600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a264697066735822122018744c70020699a58a89cdc0697a420eabd198b99b301149d374f6ce656aca7864736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102e75760003560e01c8063715018a611610184578063a22cb465116100d6578063c87b56dd1161008a578063e985e9c511610064578063e985e9c5146107e0578063f2fde38b14610829578063fc1a1c361461084957600080fd5b8063c87b56dd14610794578063cd880553146107b4578063d5abeb01146107ca57600080fd5b8063b88d4fde116100bb578063b88d4fde1461073f578063ba70c5151461075f578063c66828621461077f57600080fd5b8063a22cb46514610709578063a945bf801461072957600080fd5b80639871b9d4116101385780639c0084ec116101125780639c0084ec146106bc578063a16d605a146106cf578063a19687ac146106ef57600080fd5b80639871b9d41461064f57806398a8cffe1461066f5780639a48eb511461069c57600080fd5b806383b11f8c1161016957806383b11f8c146105ef5780638da5cb5b1461061c57806395d89b411461063a57600080fd5b8063715018a6146105bb5780637db3aecc146105d057600080fd5b80632fbba1151161023d578063453c2310116101f15780636352211e116101cb5780636352211e146105665780636c0360eb1461058657806370a082311461059b57600080fd5b8063453c2310146105105780634de204171461052657806355f804b31461054657600080fd5b806342842e0e1161022257806342842e0e146104a357806342966c68146104c3578063438b6300146104e357600080fd5b80632fbba11514610463578063404c7cdd1461048357600080fd5b806318160ddd1161029f5780632904e6d9116102795780632904e6d914610427578063297243201461043a5780632db115441461045057600080fd5b806318160ddd146103d857806320ba1a05146103f157806323b872dd1461040757600080fd5b8063081812fc116102d0578063081812fc14610343578063095ea7b31461037b5780631015805b1461039d57600080fd5b806301ffc9a7146102ec57806306fdde0314610321575b600080fd5b3480156102f857600080fd5b5061030c6103073660046123f8565b61085f565b60405190151581526020015b60405180910390f35b34801561032d57600080fd5b506103366108b1565b6040516103189190612630565b34801561034f57600080fd5b5061036361035e36600461247b565b610943565b6040516001600160a01b039091168152602001610318565b34801561038757600080fd5b5061039b6103963660046122ec565b610987565b005b3480156103a957600080fd5b506103ca6103b83660046121a0565b60166020526000908152604090205481565b604051908152602001610318565b3480156103e457600080fd5b50600154600054036103ca565b3480156103fd57600080fd5b506103ca600a5481565b34801561041357600080fd5b5061039b6104223660046121f6565b610a5a565b61039b610435366004612318565b610a6a565b34801561044657600080fd5b506103ca600d5481565b61039b61045e36600461247b565b610caf565b34801561046f57600080fd5b5061039b61047e36600461247b565b610e1b565b34801561048f57600080fd5b5061039b61049e36600461247b565b610ec5565b3480156104af57600080fd5b5061039b6104be3660046121f6565b610f12565b3480156104cf57600080fd5b5061039b6104de36600461247b565b610f2d565b3480156104ef57600080fd5b506105036104fe3660046121a0565b610f38565b60405161031891906125ec565b34801561051c57600080fd5b506103ca60115481565b34801561053257600080fd5b5061039b610541366004612494565b611073565b34801561055257600080fd5b5061039b610561366004612432565b6110c9565b34801561057257600080fd5b5061036361058136600461247b565b611128565b34801561059257600080fd5b50610336611133565b3480156105a757600080fd5b506103ca6105b63660046121a0565b6111c1565b3480156105c757600080fd5b5061039b611210565b3480156105dc57600080fd5b50600c5461030c90610100900460ff1681565b3480156105fb57600080fd5b506103ca61060a3660046121a0565b60146020526000908152604090205481565b34801561062857600080fd5b506008546001600160a01b0316610363565b34801561064657600080fd5b50610336611264565b34801561065b57600080fd5b5061039b61066a366004612393565b611273565b34801561067b57600080fd5b506103ca61068a3660046121a0565b60156020526000908152604090205481565b3480156106a857600080fd5b5061039b6106b73660046123d6565b6112f4565b61039b6106ca366004612318565b611347565b3480156106db57600080fd5b5061039b6106ea3660046121a0565b611566565b3480156106fb57600080fd5b50600c5461030c9060ff1681565b34801561071557600080fd5b5061039b6107243660046122b7565b6115e3565b34801561073557600080fd5b506103ca600f5481565b34801561074b57600080fd5b5061039b61075a366004612237565b611679565b34801561076b57600080fd5b50600c5461030c9062010000900460ff1681565b34801561078b57600080fd5b506103366116c3565b3480156107a057600080fd5b506103366107af36600461247b565b6116d0565b3480156107c057600080fd5b506103ca600b5481565b3480156107d657600080fd5b506103ca60105481565b3480156107ec57600080fd5b5061030c6107fb3660046121bd565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561083557600080fd5b5061039b6108443660046121a0565b6117ac565b34801561085557600080fd5b506103ca600e5481565b60006301ffc9a760e01b6001600160e01b03198316148061089057506380ac58cd60e01b6001600160e01b03198316145b806108ab5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546108c0906126d1565b80601f01602080910402602001604051908101604052809291908181526020018280546108ec906126d1565b80156109395780601f1061090e57610100808354040283529160200191610939565b820191906000526020600020905b81548152906001019060200180831161091c57829003601f168201915b5050505050905090565b600061094e82611879565b61096b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610992826118a0565b9050806001600160a01b0316836001600160a01b031614156109c75760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146109fe576109e181336107fb565b6109fe576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a65838383611901565b505050565b60026009541415610ac25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600955333214610ad357600080fd5b600c5460ff610100909104161515600114610aed57600080fd5b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610b6784848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b549150849050611aa4565b610ba45760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b6044820152606401610ab9565b81600e54610bb2919061266f565b341015610bbe57600080fd5b60115433600090815260156020526040902054610bdc908490612643565b1115610c205760405162461bcd60e51b815260206004820152601360248201527241626f7665204d617820416c6c6f77616e636560681b6044820152606401610ab9565b60105482610c316001546000540390565b610c3b9190612643565b1115610c755760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610ab9565b3360009081526015602052604081208054849290610c94908490612643565b90915550610ca490503383611aba565b505060016009555050565b60026009541415610d025760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ab9565b6002600955333214610d1357600080fd5b600c5462010000900460ff161515600114610d2d57600080fd5b60115433600090815260166020526040902054610d4b908390612643565b1115610d8f5760405162461bcd60e51b815260206004820152601360248201527241626f7665204d617820416c6c6f77616e636560681b6044820152606401610ab9565b60105481610da06001546000540390565b610daa9190612643565b1115610de45760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610ab9565b3360009081526016602052604081208054839290610e03908490612643565b90915550610e1390503382611aba565b506001600955565b6008546001600160a01b03163314610e635760405162461bcd60e51b815260206004820181905260248201526000805160206127bf8339815191526044820152606401610ab9565b60105481610e746001546000540390565b610e7e9190612643565b1115610eb85760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610ab9565b610ec23382611aba565b50565b6008546001600160a01b03163314610f0d5760405162461bcd60e51b815260206004820181905260248201526000805160206127bf8339815191526044820152606401610ab9565b601055565b610a6583838360405180602001604052806000815250611679565b610ec2816001611ad4565b60606000610f45836111c1565b905060008167ffffffffffffffff811115610f6257610f6261277d565b604051908082528060200260200182016040528015610f8b578160200160208202803683370190505b509050600080610f9e6001546000540390565b905060005b81811015611068576000610fb682611879565b9050801561101157876001600160a01b0316610fd183611128565b6001600160a01b0316141561100c5781858581518110610ff357610ff3612767565b6020908102919091010152836110088161270c565b9450505b611055565b8015801561104257508461102660018861268e565b8151811061103657611036612767565b60200260200101516000145b1561105557826110518161270c565b9350505b50806110608161270c565b915050610fa3565b509195945050505050565b6008546001600160a01b031633146110bb5760405162461bcd60e51b815260206004820181905260248201526000805160206127bf8339815191526044820152606401610ab9565b600d92909255600e55600f55565b6008546001600160a01b031633146111115760405162461bcd60e51b815260206004820181905260248201526000805160206127bf8339815191526044820152606401610ab9565b805161112490601290602084019061207c565b5050565b60006108ab826118a0565b60128054611140906126d1565b80601f016020809104026020016040519081016040528092919081815260200182805461116c906126d1565b80156111b95780601f1061118e576101008083540402835291602001916111b9565b820191906000526020600020905b81548152906001019060200180831161119c57829003601f168201915b505050505081565b60006001600160a01b0382166111ea576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146112585760405162461bcd60e51b815260206004820181905260248201526000805160206127bf8339815191526044820152606401610ab9565b6112626000611c28565b565b6060600380546108c0906126d1565b6008546001600160a01b031633146112bb5760405162461bcd60e51b815260206004820181905260248201526000805160206127bf8339815191526044820152606401610ab9565b600c805461ffff191693151561ff00191693909317610100921515929092029190911762ff000019166201000091151591909102179055565b6008546001600160a01b0316331461133c5760405162461bcd60e51b815260206004820181905260248201526000805160206127bf8339815191526044820152606401610ab9565b600a91909155600b55565b6002600954141561139a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ab9565b60026009553332146113ab57600080fd5b600c5460ff1615156001146113bf57600080fd5b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061143984848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050611aa4565b6114765760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b6044820152606401610ab9565b81600d54611484919061266f565b34101561149057600080fd5b601154336000908152601460205260409020546114ae908490612643565b11156114f25760405162461bcd60e51b815260206004820152601360248201527241626f7665204d617820416c6c6f77616e636560681b6044820152606401610ab9565b601054826115036001546000540390565b61150d9190612643565b11156115475760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610ab9565b3360009081526014602052604081208054849290610c94908490612643565b6008546001600160a01b031633146115ae5760405162461bcd60e51b815260206004820181905260248201526000805160206127bf8339815191526044820152606401610ab9565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015611124573d6000803e3d6000fd5b6001600160a01b03821633141561160d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611684848484611901565b6001600160a01b0383163b156116bd576116a084848484611c7a565b6116bd576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60138054611140906126d1565b60606116db82611879565b61174d5760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201527f6f6e6578697374656e7420746f6b656e000000000000000000000000000000006064820152608401610ab9565b6000611757611d72565b9050600081511161177757604051806020016040528060008152506117a5565b8061178184611d81565b6013604051602001611795939291906124ec565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146117f45760405162461bcd60e51b815260206004820181905260248201526000805160206127bf8339815191526044820152606401610ab9565b6001600160a01b0381166118705760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610ab9565b610ec281611c28565b60008054821080156108ab575050600090815260046020526040902054600160e01b161590565b6000816000548110156118e857600081815260046020526040902054600160e01b81166118e6575b806117a55750600019016000818152600460205260409020546118c8565b505b604051636f96cda160e11b815260040160405180910390fd5b600061190c826118a0565b9050836001600160a01b0316816001600160a01b03161461193f5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061195d575061195d85336107fb565b8061197857503361196d84610943565b6001600160a01b0316145b90508061199857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166119bf57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b861781179091558216611a5c5760018301600081815260046020526040902054611a5a576000548114611a5a5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600082611ab18584611e97565b14949350505050565b611124828260405180602001604052806000815250611f0b565b6000611adf836118a0565b9050808215611b43576000336001600160a01b0383161480611b065750611b0682336107fb565b80611b21575033611b1686610943565b6001600160a01b0316145b905080611b4157604051632ce44b5f60e11b815260040160405180910390fd5b505b600084815260066020908152604080832080546001600160a01b03191690556001600160a01b03841683526005825280832080546fffffffffffffffffffffffffffffffff01905586835260049091529020600360e01b4260a01b8317179055600160e11b8216611be25760018401600081815260046020526040902054611be0576000548114611be05760008181526004602052604090208390555b505b60405184906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a4505060018054810190555050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611caf9033908990889088906004016125b0565b602060405180830381600087803b158015611cc957600080fd5b505af1925050508015611cf9575060408051601f3d908101601f19168201909252611cf691810190612415565b60015b611d54573d808015611d27576040519150601f19603f3d011682016040523d82523d6000602084013e611d2c565b606091505b508051611d4c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060601280546108c0906126d1565b606081611da55750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dcf5780611db98161270c565b9150611dc89050600a8361265b565b9150611da9565b60008167ffffffffffffffff811115611dea57611dea61277d565b6040519080825280601f01601f191660200182016040528015611e14576020820181803683370190505b5090505b8415611d6a57611e2960018361268e565b9150611e36600a86612727565b611e41906030612643565b60f81b818381518110611e5657611e56612767565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611e90600a8661265b565b9450611e18565b600081815b8451811015611f03576000858281518110611eb957611eb9612767565b60200260200101519050808311611edf5760008381526020829052604090209250611ef0565b600081815260208490526040902092505b5080611efb8161270c565b915050611e9c565b509392505050565b6000546001600160a01b038416611f3457604051622e076360e81b815260040160405180910390fd5b82611f525760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15612027575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ff06000878480600101955087611c7a565b61200d576040516368d2bf6b60e11b815260040160405180910390fd5b808210611fa557826000541461202257600080fd5b61206c565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210612028575b5060009081556116bd9085838684565b828054612088906126d1565b90600052602060002090601f0160209004810192826120aa57600085556120f0565b82601f106120c357805160ff19168380011785556120f0565b828001600101855582156120f0579182015b828111156120f05782518255916020019190600101906120d5565b506120fc929150612100565b5090565b5b808211156120fc5760008155600101612101565b600067ffffffffffffffff808411156121305761213061277d565b604051601f8501601f19908116603f011681019082821181831017156121585761215861277d565b8160405280935085815286868601111561217157600080fd5b858560208301376000602087830101525050509392505050565b8035801515811461219b57600080fd5b919050565b6000602082840312156121b257600080fd5b81356117a581612793565b600080604083850312156121d057600080fd5b82356121db81612793565b915060208301356121eb81612793565b809150509250929050565b60008060006060848603121561220b57600080fd5b833561221681612793565b9250602084013561222681612793565b929592945050506040919091013590565b6000806000806080858703121561224d57600080fd5b843561225881612793565b9350602085013561226881612793565b925060408501359150606085013567ffffffffffffffff81111561228b57600080fd5b8501601f8101871361229c57600080fd5b6122ab87823560208401612115565b91505092959194509250565b600080604083850312156122ca57600080fd5b82356122d581612793565b91506122e36020840161218b565b90509250929050565b600080604083850312156122ff57600080fd5b823561230a81612793565b946020939093013593505050565b60008060006040848603121561232d57600080fd5b833567ffffffffffffffff8082111561234557600080fd5b818601915086601f83011261235957600080fd5b81358181111561236857600080fd5b8760208260051b850101111561237d57600080fd5b6020928301989097509590910135949350505050565b6000806000606084860312156123a857600080fd5b6123b18461218b565b92506123bf6020850161218b565b91506123cd6040850161218b565b90509250925092565b600080604083850312156123e957600080fd5b50508035926020909101359150565b60006020828403121561240a57600080fd5b81356117a5816127a8565b60006020828403121561242757600080fd5b81516117a5816127a8565b60006020828403121561244457600080fd5b813567ffffffffffffffff81111561245b57600080fd5b8201601f8101841361246c57600080fd5b611d6a84823560208401612115565b60006020828403121561248d57600080fd5b5035919050565b6000806000606084860312156124a957600080fd5b505081359360208301359350604090920135919050565b600081518084526124d88160208601602086016126a5565b601f01601f19169290920160200192915050565b6000845160206124ff8285838a016126a5565b8551918401916125128184848a016126a5565b8554920191600090600181811c908083168061252f57607f831692505b85831081141561254d57634e487b7160e01b85526022600452602485fd5b80801561256157600181146125725761259f565b60ff1985168852838801955061259f565b60008b81526020902060005b858110156125975781548a82015290840190880161257e565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526125e260808301846124c0565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561262457835183529284019291840191600101612608565b50909695505050505050565b6020815260006117a560208301846124c0565b600082198211156126565761265661273b565b500190565b60008261266a5761266a612751565b500490565b60008160001904831182151516156126895761268961273b565b500290565b6000828210156126a0576126a061273b565b500390565b60005b838110156126c05781810151838201526020016126a8565b838111156116bd5750506000910152565b600181811c908216806126e557607f821691505b6020821081141561270657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127205761272061273b565b5060010190565b60008261273657612736612751565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610ec257600080fd5b6001600160e01b031981168114610ec257600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a264697066735822122018744c70020699a58a89cdc0697a420eabd198b99b301149d374f6ce656aca7864736f6c63430008070033

Deployed Bytecode Sourcemap

61463:5356:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13578:615;;;;;;;;;;-1:-1:-1;13578:615:0;;;;;:::i;:::-;;:::i;:::-;;;9930:14:1;;9923:22;9905:41;;9893:2;9878:18;13578:615:0;;;;;;;;18591:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;20659:204::-;;;;;;;;;;-1:-1:-1;20659:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8545:55:1;;;8527:74;;8515:2;8500:18;20659:204:0;8381:226:1;20119:474:0;;;;;;;;;;-1:-1:-1;20119:474:0;;;;;:::i;:::-;;:::i;:::-;;62354:48;;;;;;;;;;-1:-1:-1;62354:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;10103:25:1;;;10091:2;10076:18;62354:48:0;9957:177:1;12632:315:0;;;;;;;;;;-1:-1:-1;12898:12:0;;12685:7;12882:13;:28;12632:315;;61604:97;;;;;;;;;;;;;;;;21545:170;;;;;;;;;;-1:-1:-1;21545:170:0;;;;;:::i;:::-;;:::i;63460:620::-;;;;;;:::i;:::-;;:::i;61937:42::-;;;;;;;;;;;;;;;;64086:358;;;;;;:::i;:::-;;:::i;64669:174::-;;;;;;;;;;-1:-1:-1;64669:174:0;;;;;:::i;:::-;;:::i;64849:108::-;;;;;;;;;;-1:-1:-1;64849:108:0;;;;;:::i;:::-;;:::i;21786:185::-;;;;;;;;;;-1:-1:-1;21786:185:0;;;;;:::i;:::-;;:::i;39362:94::-;;;;;;;;;;-1:-1:-1;39362:94:0;;;;;:::i;:::-;;:::i;66202:614::-;;;;;;;;;;-1:-1:-1;66202:614:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;62125:32::-;;;;;;;;;;;;;;;;65171:236;;;;;;;;;;-1:-1:-1;65171:236:0;;;;;:::i;:::-;;:::i;65561:104::-;;;;;;;;;;-1:-1:-1;65561:104:0;;;;;:::i;:::-;;:::i;18380:144::-;;;;;;;;;;-1:-1:-1;18380:144:0;;;;;:::i;:::-;;:::i;62166:21::-;;;;;;;;;;;;;:::i;14257:224::-;;;;;;;;;;-1:-1:-1;14257:224:0;;;;;:::i;:::-;;:::i;42081:103::-;;;;;;;;;;;;;:::i;61854:33::-;;;;;;;;;;-1:-1:-1;61854:33:0;;;;;;;;;;;62240:49;;;;;;;;;;-1:-1:-1;62240:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;41430:87;;;;;;;;;;-1:-1:-1;41503:6:0;;-1:-1:-1;;;;;41503:6:0;41430:87;;18760:104;;;;;;;;;;;;;:::i;64963:202::-;;;;;;;;;;-1:-1:-1;64963:202:0;;;;;:::i;:::-;;:::i;62296:51::-;;;;;;;;;;-1:-1:-1;62296:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;64473:190;;;;;;;;;;-1:-1:-1;64473:190:0;;;;;:::i;:::-;;:::i;62850:604::-;;;;;;:::i;:::-;;:::i;65413:142::-;;;;;;;;;;-1:-1:-1;65413:142:0;;;;;:::i;:::-;;:::i;61816:31::-;;;;;;;;;;-1:-1:-1;61816:31:0;;;;;;;;20935:308;;;;;;;;;;-1:-1:-1;20935:308:0;;;;;:::i;:::-;;:::i;62037:41::-;;;;;;;;;;;;;;;;22042:396;;;;;;;;;;-1:-1:-1;22042:396:0;;;;;:::i;:::-;;:::i;61894:30::-;;;;;;;;;;-1:-1:-1;61894:30:0;;;;;;;;;;;62194:37;;;;;;;;;;;;;:::i;65816:376::-;;;;;;;;;;-1:-1:-1;65816:376:0;;;;;:::i;:::-;;:::i;61708:99::-;;;;;;;;;;;;;;;;62087:31;;;;;;;;;;;;;;;;21314:164;;;;;;;;;;-1:-1:-1;21314:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;21435:25:0;;;21411:4;21435:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;21314:164;42339:201;;;;;;;;;;-1:-1:-1;42339:201:0;;;;;:::i;:::-;;:::i;61986:44::-;;;;;;;;;;;;;;;;13578:615;13663:4;-1:-1:-1;;;;;;;;;13963:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;14040:25:0;;;13963:102;:179;;;-1:-1:-1;;;;;;;;;;14117:25:0;;;13963:179;13943:199;13578:615;-1:-1:-1;;13578:615:0:o;18591:100::-;18645:13;18678:5;18671:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18591:100;:::o;20659:204::-;20727:7;20752:16;20760:7;20752;:16::i;:::-;20747:64;;20777:34;;-1:-1:-1;;;20777:34:0;;;;;;;;;;;20747:64;-1:-1:-1;20831:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;20831:24:0;;20659:204::o;20119:474::-;20192:13;20224:27;20243:7;20224:18;:27::i;:::-;20192:61;;20274:5;-1:-1:-1;;;;;20268:11:0;:2;-1:-1:-1;;;;;20268:11:0;;20264:48;;;20288:24;;-1:-1:-1;;;20288:24:0;;;;;;;;;;;20264:48;36762:10;-1:-1:-1;;;;;20329:28:0;;;20325:175;;20377:44;20394:5;36762:10;21314:164;:::i;20377:44::-;20372:128;;20449:35;;-1:-1:-1;;;20449:35:0;;;;;;;;;;;20372:128;20512:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;20512:29:0;-1:-1:-1;;;;;20512:29:0;;;;;;;;;20557:28;;20512:24;;20557:28;;;;;;;20181:412;20119:474;;:::o;21545:170::-;21679:28;21689:4;21695:2;21699:7;21679:9;:28::i;:::-;21545:170;;;:::o;63460:620::-;46191:1;46789:7;;:19;;46781:63;;;;-1:-1:-1;;;46781:63:0;;12093:2:1;46781:63:0;;;12075:21:1;12132:2;12112:18;;;12105:30;12171:33;12151:18;;;12144:61;12222:18;;46781:63:0;;;;;;;;;46191:1;46922:7;:18;62528:10:::1;62542:9;62528:23;62520:32;;;::::0;::::1;;62714:13:::2;::::0;::::2;;::::0;;::::2;;:21;;:13;:21;62706:30;;;::::0;::::2;;63628:28:::3;::::0;-1:-1:-1;;63645:10:0::3;6764:2:1::0;6760:15;6756:53;63628:28:0::3;::::0;::::3;6744:66:1::0;63603:12:0::3;::::0;6826::1;;63628:28:0::3;;;;;;;;;;;;63618:39;;;;;;63603:54;;63676:55;63695:12;;63676:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::3;::::0;;;;-1:-1:-1;;63709:15:0::3;::::0;;-1:-1:-1;63726:4:0;;-1:-1:-1;63676:18:0::3;:55::i;:::-;63668:82;;;::::0;-1:-1:-1;;;63668:82:0;;11750:2:1;63668:82:0::3;::::0;::::3;11732:21:1::0;11789:2;11769:18;;;11762:30;-1:-1:-1;;;11808:18:1;;;11801:44;11862:18;;63668:82:0::3;11548:338:1::0;63668:82:0::3;63802:6;63785:14;;:23;;;;:::i;:::-;63771:9;:38;;63763:47;;;::::0;::::3;;63869:12;::::0;63845:10:::3;63829:27;::::0;;;:15:::3;:27;::::0;;;;;:36:::3;::::0;63859:6;;63829:36:::3;:::i;:::-;:52;;63821:84;;;::::0;-1:-1:-1;;;63821:84:0;;12790:2:1;63821:84:0::3;::::0;::::3;12772:21:1::0;12829:2;12809:18;;;12802:30;-1:-1:-1;;;12848:18:1;;;12841:49;12907:18;;63821:84:0::3;12588:343:1::0;63821:84:0::3;63955:9;;63944:6;63928:13;12898:12:::0;;12685:7;12882:13;:28;;12632:315;63928:13:::3;:22;;;;:::i;:::-;63927:37;;63919:59;;;::::0;-1:-1:-1;;;63919:59:0;;12453:2:1;63919:59:0::3;::::0;::::3;12435:21:1::0;12492:1;12472:18;;;12465:29;-1:-1:-1;;;12510:18:1;;;12503:39;12559:18;;63919:59:0::3;12251:332:1::0;63919:59:0::3;64007:10;63991:27;::::0;;;:15:::3;:27;::::0;;;;:37;;64022:6;;63991:27;:37:::3;::::0;64022:6;;63991:37:::3;:::i;:::-;::::0;;;-1:-1:-1;64041:29:0::3;::::0;-1:-1:-1;64051:10:0::3;64063:6:::0;64041:9:::3;:29::i;:::-;-1:-1:-1::0;;46147:1:0;47101:7;:22;-1:-1:-1;;63460:620:0:o;64086:358::-;46191:1;46789:7;;:19;;46781:63;;;;-1:-1:-1;;;46781:63:0;;12093:2:1;46781:63:0;;;12075:21:1;12132:2;12112:18;;;12105:30;12171:33;12151:18;;;12144:61;12222:18;;46781:63:0;11891:355:1;46781:63:0;46191:1;46922:7;:18;62528:10:::1;62542:9;62528:23;62520:32;;;::::0;::::1;;62803:10:::2;::::0;;;::::2;;;:18;;62817:4;62803:18;62795:27;;;::::0;::::2;;64238:12:::3;::::0;64214:10:::3;64201:24;::::0;;;:12:::3;:24;::::0;;;;;:33:::3;::::0;64228:6;;64201:33:::3;:::i;:::-;:49;;64193:81;;;::::0;-1:-1:-1;;;64193:81:0;;12790:2:1;64193:81:0::3;::::0;::::3;12772:21:1::0;12829:2;12809:18;;;12802:30;-1:-1:-1;;;12848:18:1;;;12841:49;12907:18;;64193:81:0::3;12588:343:1::0;64193:81:0::3;64324:9;;64313:6;64297:13;12898:12:::0;;12685:7;12882:13;:28;;12632:315;64297:13:::3;:22;;;;:::i;:::-;64296:37;;64288:59;;;::::0;-1:-1:-1;;;64288:59:0;;12453:2:1;64288:59:0::3;::::0;::::3;12435:21:1::0;12492:1;12472:18;;;12465:29;-1:-1:-1;;;12510:18:1;;;12503:39;12559:18;;64288:59:0::3;12251:332:1::0;64288:59:0::3;64373:10;64360:24;::::0;;;:12:::3;:24;::::0;;;;:34;;64388:6;;64360:24;:34:::3;::::0;64388:6;;64360:34:::3;:::i;:::-;::::0;;;-1:-1:-1;64407:29:0::3;::::0;-1:-1:-1;64417:10:0::3;64429:6:::0;64407:9:::3;:29::i;:::-;-1:-1:-1::0;46147:1:0;47101:7;:22;64086:358::o;64669:174::-;41503:6;;-1:-1:-1;;;;;41503:6:0;36762:10;41650:23;41642:68;;;;-1:-1:-1;;;41642:68:0;;11389:2:1;41642:68:0;;;11371:21:1;;;11408:18;;;11401:30;-1:-1:-1;;;;;;;;;;;11447:18:1;;;11440:62;11519:18;;41642:68:0;11187:356:1;41642:68:0;64772:9:::1;;64761:6;64745:13;12898:12:::0;;12685:7;12882:13;:28;;12632:315;64745:13:::1;:22;;;;:::i;:::-;64744:37;;64736:59;;;::::0;-1:-1:-1;;;64736:59:0;;12453:2:1;64736:59:0::1;::::0;::::1;12435:21:1::0;12492:1;12472:18;;;12465:29;-1:-1:-1;;;12510:18:1;;;12503:39;12559:18;;64736:59:0::1;12251:332:1::0;64736:59:0::1;64806:29;64816:10;64828:6;64806:9;:29::i;:::-;64669:174:::0;:::o;64849:108::-;41503:6;;-1:-1:-1;;;;;41503:6:0;36762:10;41650:23;41642:68;;;;-1:-1:-1;;;41642:68:0;;11389:2:1;41642:68:0;;;11371:21:1;;;11408:18;;;11401:30;-1:-1:-1;;;;;;;;;;;11447:18:1;;;11440:62;11519:18;;41642:68:0;11187:356:1;41642:68:0;64927:9:::1;:22:::0;64849:108::o;21786:185::-;21924:39;21941:4;21947:2;21951:7;21924:39;;;;;;;;;;;;:16;:39::i;39362:94::-;39428:20;39434:7;39443:4;39428:5;:20::i;66202:614::-;66272:16;66301;66320:19;66330:8;66320:9;:19::i;:::-;66301:38;;66350:24;66392:8;66377:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66377:24:0;;66350:51;;66412:14;66437:20;66460:13;12898:12;;12685:7;12882:13;:28;;12632:315;66460:13;66437:36;;66489:9;66484:300;66508:12;66504:1;:16;66484:300;;;66542:12;66557:10;66565:1;66557:7;:10::i;:::-;66542:25;;66586:7;66582:191;;;66632:8;-1:-1:-1;;;;;66618:22:0;:10;66626:1;66618:7;:10::i;:::-;-1:-1:-1;;;;;66618:22:0;;66614:62;;;66662:1;66644:7;66652:6;66644:15;;;;;;;;:::i;:::-;;;;;;;;;;:19;66665:8;;;;:::i;:::-;;;;66614:62;66582:191;;;66715:7;66714:8;:38;;;;-1:-1:-1;66726:7:0;66734:12;66745:1;66734:8;:12;:::i;:::-;66726:21;;;;;;;;:::i;:::-;;;;;;;66751:1;66726:26;66714:38;66710:63;;;66756:14;;;;:::i;:::-;;;;66710:63;-1:-1:-1;66522:3:0;;;;:::i;:::-;;;;66484:300;;;-1:-1:-1;66801:7:0;;66202:614;-1:-1:-1;;;;;66202:614:0:o;65171:236::-;41503:6;;-1:-1:-1;;;;;41503:6:0;36762:10;41650:23;41642:68;;;;-1:-1:-1;;;41642:68:0;;11389:2:1;41642:68:0;;;11371:21:1;;;11408:18;;;11401:30;-1:-1:-1;;;;;;;;;;;11447:18:1;;;11440:62;11519:18;;41642:68:0;11187:356:1;41642:68:0;65295:12:::1;:24:::0;;;;65330:14:::1;:32:::0;65373:11:::1;:26:::0;65171:236::o;65561:104::-;41503:6;;-1:-1:-1;;;;;41503:6:0;36762:10;41650:23;41642:68;;;;-1:-1:-1;;;41642:68:0;;11389:2:1;41642:68:0;;;11371:21:1;;;11408:18;;;11401:30;-1:-1:-1;;;;;;;;;;;11447:18:1;;;11440:62;11519:18;;41642:68:0;11187:356:1;41642:68:0;65636:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;65561:104:::0;:::o;18380:144::-;18444:7;18487:27;18506:7;18487:18;:27::i;62166:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14257:224::-;14321:7;-1:-1:-1;;;;;14345:19:0;;14341:60;;14373:28;;-1:-1:-1;;;14373:28:0;;;;;;;;;;;14341:60;-1:-1:-1;;;;;;14419:25:0;;;;;:18;:25;;;;;;9596:13;14419:54;;14257:224::o;42081:103::-;41503:6;;-1:-1:-1;;;;;41503:6:0;36762:10;41650:23;41642:68;;;;-1:-1:-1;;;41642:68:0;;11389:2:1;41642:68:0;;;11371:21:1;;;11408:18;;;11401:30;-1:-1:-1;;;;;;;;;;;11447:18:1;;;11440:62;11519:18;;41642:68:0;11187:356:1;41642:68:0;42146:30:::1;42173:1;42146:18;:30::i;:::-;42081:103::o:0;18760:104::-;18816:13;18849:7;18842:14;;;;;:::i;64963:202::-;41503:6;;-1:-1:-1;;;;;41503:6:0;36762:10;41650:23;41642:68;;;;-1:-1:-1;;;41642:68:0;;11389:2:1;41642:68:0;;;11371:21:1;;;11408:18;;;11401:30;-1:-1:-1;;;;;;;;;;;11447:18:1;;;11440:62;11519:18;;41642:68:0;11187:356:1;41642:68:0;65067:11:::1;:22:::0;;-1:-1:-1;;65100:26:0;65067:22;::::1;;-1:-1:-1::0;;65100:26:0;;;;;65067:22:::1;65100:26:::0;::::1;;::::0;;;::::1;::::0;;;::::1;-1:-1:-1::0;;65137:20:0::1;::::0;;::::1;;::::0;;;::::1;;::::0;;64963:202::o;64473:190::-;41503:6;;-1:-1:-1;;;;;41503:6:0;36762:10;41650:23;41642:68;;;;-1:-1:-1;;;41642:68:0;;11389:2:1;41642:68:0;;;11371:21:1;;;11408:18;;;11401:30;-1:-1:-1;;;;;;;;;;;11447:18:1;;;11440:62;11519:18;;41642:68:0;11187:356:1;41642:68:0;64580:13:::1;:30:::0;;;;64621:15:::1;:34:::0;64473:190::o;62850:604::-;46191:1;46789:7;;:19;;46781:63;;;;-1:-1:-1;;;46781:63:0;;12093:2:1;46781:63:0;;;12075:21:1;12132:2;12112:18;;;12105:30;12171:33;12151:18;;;12144:61;12222:18;;46781:63:0;11891:355:1;46781:63:0;46191:1;46922:7;:18;62528:10:::1;62542:9;62528:23;62520:32;;;::::0;::::1;;62624:11:::2;::::0;::::2;;:19;;:11:::0;:19:::2;62616:28;;;::::0;::::2;;63010::::3;::::0;-1:-1:-1;;63027:10:0::3;6764:2:1::0;6760:15;6756:53;63010:28:0::3;::::0;::::3;6744:66:1::0;62985:12:0::3;::::0;6826::1;;63010:28:0::3;;;;;;;;;;;;63000:39;;;;;;62985:54;;63058:53;63077:12;;63058:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::3;::::0;;;;-1:-1:-1;;63091:13:0::3;::::0;;-1:-1:-1;63106:4:0;;-1:-1:-1;63058:18:0::3;:53::i;:::-;63050:80;;;::::0;-1:-1:-1;;;63050:80:0;;11750:2:1;63050:80:0::3;::::0;::::3;11732:21:1::0;11789:2;11769:18;;;11762:30;-1:-1:-1;;;11808:18:1;;;11801:44;11862:18;;63050:80:0::3;11548:338:1::0;63050:80:0::3;63180:6;63165:12;;:21;;;;:::i;:::-;63151:9;:36;;63143:45;;;::::0;::::3;;63245:12;::::0;63221:10:::3;63207:25;::::0;;;:13:::3;:25;::::0;;;;;:34:::3;::::0;63235:6;;63207:34:::3;:::i;:::-;:50;;63199:82;;;::::0;-1:-1:-1;;;63199:82:0;;12790:2:1;63199:82:0::3;::::0;::::3;12772:21:1::0;12829:2;12809:18;;;12802:30;-1:-1:-1;;;12848:18:1;;;12841:49;12907:18;;63199:82:0::3;12588:343:1::0;63199:82:0::3;63331:9;;63320:6;63304:13;12898:12:::0;;12685:7;12882:13;:28;;12632:315;63304:13:::3;:22;;;;:::i;:::-;63303:37;;63295:59;;;::::0;-1:-1:-1;;;63295:59:0;;12453:2:1;63295:59:0::3;::::0;::::3;12435:21:1::0;12492:1;12472:18;;;12465:29;-1:-1:-1;;;12510:18:1;;;12503:39;12559:18;;63295:59:0::3;12251:332:1::0;63295:59:0::3;63381:10;63367:25;::::0;;;:13:::3;:25;::::0;;;;:35;;63396:6;;63367:25;:35:::3;::::0;63396:6;;63367:35:::3;:::i;65413:142::-:0;41503:6;;-1:-1:-1;;;;;41503:6:0;36762:10;41650:23;41642:68;;;;-1:-1:-1;;;41642:68:0;;11389:2:1;41642:68:0;;;11371:21:1;;;11408:18;;;11401:30;-1:-1:-1;;;;;;;;;;;11447:18:1;;;11440:62;11519:18;;41642:68:0;11187:356:1;41642:68:0;65506:41:::1;::::0;-1:-1:-1;;;;;65506:18:0;::::1;::::0;65525:21:::1;65506:41:::0;::::1;;;::::0;::::1;::::0;;;65525:21;65506:18;:41;::::1;;;;;;;;;;;;;::::0;::::1;;;;20935:308:::0;-1:-1:-1;;;;;21034:31:0;;36762:10;21034:31;21030:61;;;21074:17;;-1:-1:-1;;;21074:17:0;;;;;;;;;;;21030:61;36762:10;21104:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;21104:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;21104:60:0;;;;;;;;;;21180:55;;9905:41:1;;;21104:49:0;;36762:10;21180:55;;9878:18:1;21180:55:0;;;;;;;20935:308;;:::o;22042:396::-;22209:28;22219:4;22225:2;22229:7;22209:9;:28::i;:::-;-1:-1:-1;;;;;22252:14:0;;;:19;22248:183;;22291:56;22322:4;22328:2;22332:7;22341:5;22291:30;:56::i;:::-;22286:145;;22375:40;;-1:-1:-1;;;22375:40:0;;;;;;;;;;;22286:145;22042:396;;;;:::o;62194:37::-;;;;;;;:::i;65816:376::-;65889:13;65928:16;65936:7;65928;:16::i;:::-;65920:77;;;;-1:-1:-1;;;65920:77:0;;10565:2:1;65920:77:0;;;10547:21:1;10604:2;10584:18;;;10577:30;10643:34;10623:18;;;10616:62;10714:18;10694;;;10687:46;10750:19;;65920:77:0;10363:412:1;65920:77:0;66010:28;66041:10;:8;:10::i;:::-;66010:41;;66100:1;66075:14;66069:28;:32;:115;;;;;;;;;;;;;;;;;66128:14;66144:18;:7;:16;:18::i;:::-;66164:13;66111:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66069:115;66062:122;65816:376;-1:-1:-1;;;65816:376:0:o;42339:201::-;41503:6;;-1:-1:-1;;;;;41503:6:0;36762:10;41650:23;41642:68;;;;-1:-1:-1;;;41642:68:0;;11389:2:1;41642:68:0;;;11371:21:1;;;11408:18;;;11401:30;-1:-1:-1;;;;;;;;;;;11447:18:1;;;11440:62;11519:18;;41642:68:0;11187:356:1;41642:68:0;-1:-1:-1;;;;;42428:22:0;::::1;42420:73;;;::::0;-1:-1:-1;;;42420:73:0;;10982:2:1;42420:73:0::1;::::0;::::1;10964:21:1::0;11021:2;11001:18;;;10994:30;11060:34;11040:18;;;11033:62;11131:8;11111:18;;;11104:36;11157:19;;42420:73:0::1;10780:402:1::0;42420:73:0::1;42504:28;42523:8;42504:18;:28::i;22693:273::-:0;22750:4;22840:13;;22830:7;:23;22787:152;;;;-1:-1:-1;;22891:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;22891:43:0;:48;;22693:273::o;15895:1129::-;15962:7;15997;16099:13;;16092:4;:20;16088:869;;;16137:14;16154:23;;;:17;:23;;;;;;-1:-1:-1;;;16243:23:0;;16239:699;;16762:113;16769:11;16762:113;;-1:-1:-1;;;16840:6:0;16822:25;;;;:17;:25;;;;;;16762:113;;16239:699;16114:843;16088:869;16985:31;;-1:-1:-1;;;16985:31:0;;;;;;;;;;;27932:2515;28047:27;28077;28096:7;28077:18;:27::i;:::-;28047:57;;28162:4;-1:-1:-1;;;;;28121:45:0;28137:19;-1:-1:-1;;;;;28121:45:0;;28117:86;;28175:28;;-1:-1:-1;;;28175:28:0;;;;;;;;;;;28117:86;28216:22;36762:10;-1:-1:-1;;;;;28242:27:0;;;;:87;;-1:-1:-1;28286:43:0;28303:4;36762:10;21314:164;:::i;28286:43::-;28242:147;;;-1:-1:-1;36762:10:0;28346:20;28358:7;28346:11;:20::i;:::-;-1:-1:-1;;;;;28346:43:0;;28242:147;28216:174;;28408:17;28403:66;;28434:35;;-1:-1:-1;;;28434:35:0;;;;;;;;;;;28403:66;-1:-1:-1;;;;;28484:16:0;;28480:52;;28509:23;;-1:-1:-1;;;28509:23:0;;;;;;;;;;;28480:52;28661:24;;;;:15;:24;;;;;;;;28654:31;;-1:-1:-1;;;;;;28654:31:0;;;-1:-1:-1;;;;;29053:24:0;;;;;:18;:24;;;;;29051:26;;-1:-1:-1;;29051:26:0;;;29122:22;;;;;;;29120:24;;-1:-1:-1;29120:24:0;;;29415:26;;;:17;:26;;;;;-1:-1:-1;;;29503:15:0;10250:3;29503:41;29461:84;;:128;;29415:174;;;29709:46;;29705:626;;29813:1;29803:11;;29781:19;29936:30;;;:17;:30;;;;;;29932:384;;30074:13;;30059:11;:28;30055:242;;30221:30;;;;:17;:30;;;;;:52;;;30055:242;29762:569;29705:626;30378:7;30374:2;-1:-1:-1;;;;;30359:27:0;30368:4;-1:-1:-1;;;;;30359:27:0;;;;;;;;;;;28036:2411;;27932:2515;;;:::o;59009:190::-;59134:4;59187;59158:25;59171:5;59178:4;59158:12;:25::i;:::-;:33;;59009:190;-1:-1:-1;;;;59009:190:0:o;23050:104::-;23119:27;23129:2;23133:8;23119:27;;;;;;;;;;;;:9;:27::i;30843:2809::-;30923:27;30953;30972:7;30953:18;:27::i;:::-;30923:57;-1:-1:-1;30923:57:0;31058:311;;;;31092:22;36762:10;-1:-1:-1;;;;;31118:27:0;;;;:91;;-1:-1:-1;31166:43:0;31183:4;36762:10;21314:164;:::i;31166:43::-;31118:155;;;-1:-1:-1;36762:10:0;31230:20;31242:7;31230:11;:20::i;:::-;-1:-1:-1;;;;;31230:43:0;;31118:155;31092:182;;31296:17;31291:66;;31322:35;;-1:-1:-1;;;31322:35:0;;;;;;;;;;;31291:66;31077:292;31058:311;31505:24;;;;:15;:24;;;;;;;;31498:31;;-1:-1:-1;;;;;;31498:31:0;;;-1:-1:-1;;;;;32118:24:0;;;;:18;:24;;;;;:59;;32146:31;32118:59;;;32415:26;;;:17;:26;;;;;-1:-1:-1;;;32505:15:0;10250:3;32505:41;32461:86;;:165;32415:211;;-1:-1:-1;;;32746:46:0;;32742:626;;32850:1;32840:11;;32818:19;32973:30;;;:17;:30;;;;;;32969:384;;33111:13;;33096:11;:28;33092:242;;33258:30;;;;:17;:30;;;;;:52;;;33092:242;32799:569;32742:626;33396:35;;33423:7;;33419:1;;-1:-1:-1;;;;;33396:35:0;;;;;33419:1;;33396:35;-1:-1:-1;;33619:12:0;:14;;;;;;-1:-1:-1;;30843:2809:0:o;42700:191::-;42793:6;;;-1:-1:-1;;;;;42810:17:0;;;-1:-1:-1;;;;;;42810:17:0;;;;;;;42843:40;;42793:6;;;42810:17;42793:6;;42843:40;;42774:16;;42843:40;42763:128;42700:191;:::o;34144:716::-;34328:88;;-1:-1:-1;;;34328:88:0;;34307:4;;-1:-1:-1;;;;;34328:45:0;;;;;:88;;36762:10;;34395:4;;34401:7;;34410:5;;34328:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34328:88:0;;;;;;;;-1:-1:-1;;34328:88:0;;;;;;;;;;;;:::i;:::-;;;34324:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34611:13:0;;34607:235;;34657:40;;-1:-1:-1;;;34657:40:0;;;;;;;;;;;34607:235;34800:6;34794:13;34785:6;34781:2;34777:15;34770:38;34324:529;-1:-1:-1;;;;;;34487:64:0;-1:-1:-1;;;34487:64:0;;-1:-1:-1;34324:529:0;34144:716;;;;;;:::o;65702:108::-;65762:13;65795:7;65788:14;;;;;:::i;56022:723::-;56078:13;56299:10;56295:53;;-1:-1:-1;;56326:10:0;;;;;;;;;;;;-1:-1:-1;;;56326:10:0;;;;;56022:723::o;56295:53::-;56373:5;56358:12;56414:78;56421:9;;56414:78;;56447:8;;;;:::i;:::-;;-1:-1:-1;56470:10:0;;-1:-1:-1;56478:2:0;56470:10;;:::i;:::-;;;56414:78;;;56502:19;56534:6;56524:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56524:17:0;;56502:39;;56552:154;56559:10;;56552:154;;56586:11;56596:1;56586:11;;:::i;:::-;;-1:-1:-1;56655:10:0;56663:2;56655:5;:10;:::i;:::-;56642:24;;:2;:24;:::i;:::-;56629:39;;56612:6;56619;56612:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;56683:11:0;56692:2;56683:11;;:::i;:::-;;;56552:154;;59560:675;59643:7;59686:4;59643:7;59701:497;59725:5;:12;59721:1;:16;59701:497;;;59759:20;59782:5;59788:1;59782:8;;;;;;;;:::i;:::-;;;;;;;59759:31;;59825:12;59809;:28;59805:382;;60311:13;60361:15;;;60397:4;60390:15;;;60444:4;60428:21;;59937:57;;59805:382;;;60311:13;60361:15;;;60397:4;60390:15;;;60444:4;60428:21;;60114:57;;59805:382;-1:-1:-1;59739:3:0;;;;:::i;:::-;;;;59701:497;;;-1:-1:-1;60215:12:0;59560:675;-1:-1:-1;;;59560:675:0:o;23527:2236::-;23650:20;23673:13;-1:-1:-1;;;;;23701:16:0;;23697:48;;23726:19;;-1:-1:-1;;;23726:19:0;;;;;;;;;;;23697:48;23760:13;23756:44;;23782:18;;-1:-1:-1;;;23782:18:0;;;;;;;;;;;23756:44;-1:-1:-1;;;;;24349:22:0;;;;;;:18;:22;;;;9733:2;24349:22;;;:70;;24387:31;24375:44;;24349:70;;;24662:31;;;:17;:31;;;;;24755:15;10250:3;24755:41;24713:84;;-1:-1:-1;24833:13:0;;10513:3;24818:56;24713:162;24662:213;;:31;;24956:23;;;;25000:14;:19;24996:635;;25040:313;25071:38;;25096:12;;-1:-1:-1;;;;;25071:38:0;;;25088:1;;25071:38;;25088:1;;25071:38;25137:69;25176:1;25180:2;25184:14;;;;;;25200:5;25137:30;:69::i;:::-;25132:174;;25242:40;;-1:-1:-1;;;25242:40:0;;;;;;;;;;;25132:174;25348:3;25333:12;:18;25040:313;;25434:12;25417:13;;:29;25413:43;;25448:8;;;25413:43;24996:635;;;25497:119;25528:40;;25553:14;;;;;-1:-1:-1;;;;;25528:40:0;;;25545:1;;25528:40;;25545:1;;25528:40;25611:3;25596:12;:18;25497:119;;24996:635;-1:-1:-1;25645:13:0;:28;;;25695:60;;25728:2;25732:12;25746:8;25695:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:160::-;715:20;;771:13;;764:21;754:32;;744:60;;800:1;797;790:12;744:60;650:160;;;:::o;815:247::-;874:6;927:2;915:9;906:7;902:23;898:32;895:52;;;943:1;940;933:12;895:52;982:9;969:23;1001:31;1026:5;1001:31;:::i;1327:388::-;1395:6;1403;1456:2;1444:9;1435:7;1431:23;1427:32;1424:52;;;1472:1;1469;1462:12;1424:52;1511:9;1498:23;1530:31;1555:5;1530:31;:::i;:::-;1580:5;-1:-1:-1;1637:2:1;1622:18;;1609:32;1650:33;1609:32;1650:33;:::i;:::-;1702:7;1692:17;;;1327:388;;;;;:::o;1720:456::-;1797:6;1805;1813;1866:2;1854:9;1845:7;1841:23;1837:32;1834:52;;;1882:1;1879;1872:12;1834:52;1921:9;1908:23;1940:31;1965:5;1940:31;:::i;:::-;1990:5;-1:-1:-1;2047:2:1;2032:18;;2019:32;2060:33;2019:32;2060:33;:::i;:::-;1720:456;;2112:7;;-1:-1:-1;;;2166:2:1;2151:18;;;;2138:32;;1720:456::o;2181:794::-;2276:6;2284;2292;2300;2353:3;2341:9;2332:7;2328:23;2324:33;2321:53;;;2370:1;2367;2360:12;2321:53;2409:9;2396:23;2428:31;2453:5;2428:31;:::i;:::-;2478:5;-1:-1:-1;2535:2:1;2520:18;;2507:32;2548:33;2507:32;2548:33;:::i;:::-;2600:7;-1:-1:-1;2654:2:1;2639:18;;2626:32;;-1:-1:-1;2709:2:1;2694:18;;2681:32;2736:18;2725:30;;2722:50;;;2768:1;2765;2758:12;2722:50;2791:22;;2844:4;2836:13;;2832:27;-1:-1:-1;2822:55:1;;2873:1;2870;2863:12;2822:55;2896:73;2961:7;2956:2;2943:16;2938:2;2934;2930:11;2896:73;:::i;:::-;2886:83;;;2181:794;;;;;;;:::o;2980:315::-;3045:6;3053;3106:2;3094:9;3085:7;3081:23;3077:32;3074:52;;;3122:1;3119;3112:12;3074:52;3161:9;3148:23;3180:31;3205:5;3180:31;:::i;:::-;3230:5;-1:-1:-1;3254:35:1;3285:2;3270:18;;3254:35;:::i;:::-;3244:45;;2980:315;;;;;:::o;3300:::-;3368:6;3376;3429:2;3417:9;3408:7;3404:23;3400:32;3397:52;;;3445:1;3442;3435:12;3397:52;3484:9;3471:23;3503:31;3528:5;3503:31;:::i;:::-;3553:5;3605:2;3590:18;;;;3577:32;;-1:-1:-1;;;3300:315:1:o;3620:689::-;3715:6;3723;3731;3784:2;3772:9;3763:7;3759:23;3755:32;3752:52;;;3800:1;3797;3790:12;3752:52;3840:9;3827:23;3869:18;3910:2;3902:6;3899:14;3896:34;;;3926:1;3923;3916:12;3896:34;3964:6;3953:9;3949:22;3939:32;;4009:7;4002:4;3998:2;3994:13;3990:27;3980:55;;4031:1;4028;4021:12;3980:55;4071:2;4058:16;4097:2;4089:6;4086:14;4083:34;;;4113:1;4110;4103:12;4083:34;4168:7;4161:4;4151:6;4148:1;4144:14;4140:2;4136:23;4132:34;4129:47;4126:67;;;4189:1;4186;4179:12;4126:67;4220:4;4212:13;;;;4244:6;;-1:-1:-1;4282:20:1;;;;4269:34;;3620:689;-1:-1:-1;;;;3620:689:1:o;4314:316::-;4382:6;4390;4398;4451:2;4439:9;4430:7;4426:23;4422:32;4419:52;;;4467:1;4464;4457:12;4419:52;4490:26;4506:9;4490:26;:::i;:::-;4480:36;;4535:35;4566:2;4555:9;4551:18;4535:35;:::i;:::-;4525:45;;4589:35;4620:2;4609:9;4605:18;4589:35;:::i;:::-;4579:45;;4314:316;;;;;:::o;4635:248::-;4703:6;4711;4764:2;4752:9;4743:7;4739:23;4735:32;4732:52;;;4780:1;4777;4770:12;4732:52;-1:-1:-1;;4803:23:1;;;4873:2;4858:18;;;4845:32;;-1:-1:-1;4635:248:1:o;4888:245::-;4946:6;4999:2;4987:9;4978:7;4974:23;4970:32;4967:52;;;5015:1;5012;5005:12;4967:52;5054:9;5041:23;5073:30;5097:5;5073:30;:::i;5138:249::-;5207:6;5260:2;5248:9;5239:7;5235:23;5231:32;5228:52;;;5276:1;5273;5266:12;5228:52;5308:9;5302:16;5327:30;5351:5;5327:30;:::i;5392:450::-;5461:6;5514:2;5502:9;5493:7;5489:23;5485:32;5482:52;;;5530:1;5527;5520:12;5482:52;5570:9;5557:23;5603:18;5595:6;5592:30;5589:50;;;5635:1;5632;5625:12;5589:50;5658:22;;5711:4;5703:13;;5699:27;-1:-1:-1;5689:55:1;;5740:1;5737;5730:12;5689:55;5763:73;5828:7;5823:2;5810:16;5805:2;5801;5797:11;5763:73;:::i;5847:180::-;5906:6;5959:2;5947:9;5938:7;5934:23;5930:32;5927:52;;;5975:1;5972;5965:12;5927:52;-1:-1:-1;5998:23:1;;5847:180;-1:-1:-1;5847:180:1:o;6032:316::-;6109:6;6117;6125;6178:2;6166:9;6157:7;6153:23;6149:32;6146:52;;;6194:1;6191;6184:12;6146:52;-1:-1:-1;;6217:23:1;;;6287:2;6272:18;;6259:32;;-1:-1:-1;6338:2:1;6323:18;;;6310:32;;6032:316;-1:-1:-1;6032:316:1:o;6353:257::-;6394:3;6432:5;6426:12;6459:6;6454:3;6447:19;6475:63;6531:6;6524:4;6519:3;6515:14;6508:4;6501:5;6497:16;6475:63;:::i;:::-;6592:2;6571:15;-1:-1:-1;;6567:29:1;6558:39;;;;6599:4;6554:50;;6353:257;-1:-1:-1;;6353:257:1:o;6849:1527::-;7073:3;7111:6;7105:13;7137:4;7150:51;7194:6;7189:3;7184:2;7176:6;7172:15;7150:51;:::i;:::-;7264:13;;7223:16;;;;7286:55;7264:13;7223:16;7308:15;;;7286:55;:::i;:::-;7430:13;;7363:20;;;7403:1;;7490;7512:18;;;;7565;;;;7592:93;;7670:4;7660:8;7656:19;7644:31;;7592:93;7733:2;7723:8;7720:16;7700:18;7697:40;7694:167;;;-1:-1:-1;;;7760:33:1;;7816:4;7813:1;7806:15;7846:4;7767:3;7834:17;7694:167;7877:18;7904:110;;;;8028:1;8023:328;;;;7870:481;;7904:110;-1:-1:-1;;7939:24:1;;7925:39;;7984:20;;;;-1:-1:-1;7904:110:1;;8023:328;13191:1;13184:14;;;13228:4;13215:18;;8118:1;8132:169;8146:8;8143:1;8140:15;8132:169;;;8228:14;;8213:13;;;8206:37;8271:16;;;;8163:10;;8132:169;;;8136:3;;8332:8;8325:5;8321:20;8314:27;;7870:481;-1:-1:-1;8367:3:1;;6849:1527;-1:-1:-1;;;;;;;;;;;6849:1527:1:o;8612:511::-;8806:4;-1:-1:-1;;;;;8916:2:1;8908:6;8904:15;8893:9;8886:34;8968:2;8960:6;8956:15;8951:2;8940:9;8936:18;8929:43;;9008:6;9003:2;8992:9;8988:18;8981:34;9051:3;9046:2;9035:9;9031:18;9024:31;9072:45;9112:3;9101:9;9097:19;9089:6;9072:45;:::i;:::-;9064:53;8612:511;-1:-1:-1;;;;;;8612:511:1:o;9128:632::-;9299:2;9351:21;;;9421:13;;9324:18;;;9443:22;;;9270:4;;9299:2;9522:15;;;;9496:2;9481:18;;;9270:4;9565:169;9579:6;9576:1;9573:13;9565:169;;;9640:13;;9628:26;;9709:15;;;;9674:12;;;;9601:1;9594:9;9565:169;;;-1:-1:-1;9751:3:1;;9128:632;-1:-1:-1;;;;;;9128:632:1:o;10139:219::-;10288:2;10277:9;10270:21;10251:4;10308:44;10348:2;10337:9;10333:18;10325:6;10308:44;:::i;13244:128::-;13284:3;13315:1;13311:6;13308:1;13305:13;13302:39;;;13321:18;;:::i;:::-;-1:-1:-1;13357:9:1;;13244:128::o;13377:120::-;13417:1;13443;13433:35;;13448:18;;:::i;:::-;-1:-1:-1;13482:9:1;;13377:120::o;13502:168::-;13542:7;13608:1;13604;13600:6;13596:14;13593:1;13590:21;13585:1;13578:9;13571:17;13567:45;13564:71;;;13615:18;;:::i;:::-;-1:-1:-1;13655:9:1;;13502:168::o;13675:125::-;13715:4;13743:1;13740;13737:8;13734:34;;;13748:18;;:::i;:::-;-1:-1:-1;13785:9:1;;13675:125::o;13805:258::-;13877:1;13887:113;13901:6;13898:1;13895:13;13887:113;;;13977:11;;;13971:18;13958:11;;;13951:39;13923:2;13916:10;13887:113;;;14018:6;14015:1;14012:13;14009:48;;;-1:-1:-1;;14053:1:1;14035:16;;14028:27;13805:258::o;14068:380::-;14147:1;14143:12;;;;14190;;;14211:61;;14265:4;14257:6;14253:17;14243:27;;14211:61;14318:2;14310:6;14307:14;14287:18;14284:38;14281:161;;;14364:10;14359:3;14355:20;14352:1;14345:31;14399:4;14396:1;14389:15;14427:4;14424:1;14417:15;14281:161;;14068:380;;;:::o;14453:135::-;14492:3;-1:-1:-1;;14513:17:1;;14510:43;;;14533:18;;:::i;:::-;-1:-1:-1;14580:1:1;14569:13;;14453:135::o;14593:112::-;14625:1;14651;14641:35;;14656:18;;:::i;:::-;-1:-1:-1;14690:9:1;;14593:112::o;14710:127::-;14771:10;14766:3;14762:20;14759:1;14752:31;14802:4;14799:1;14792:15;14826:4;14823:1;14816:15;14842:127;14903:10;14898:3;14894:20;14891:1;14884:31;14934:4;14931:1;14924:15;14958:4;14955:1;14948:15;14974:127;15035:10;15030:3;15026:20;15023:1;15016:31;15066:4;15063:1;15056:15;15090:4;15087:1;15080:15;15106:127;15167:10;15162:3;15158:20;15155:1;15148:31;15198:4;15195:1;15188:15;15222:4;15219:1;15212:15;15238:154;-1:-1:-1;;;;;15317:5:1;15313:54;15306:5;15303:65;15293:93;;15382:1;15379;15372:12;15397:131;-1:-1:-1;;;;;;15471:32:1;;15461:43;;15451:71;;15518:1;15515;15508:12

Swarm Source

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