ETH Price: $3,440.20 (-1.37%)
Gas: 8 Gwei

Token

BudFriends (BUD)
 

Overview

Max Total Supply

435 BUD

Holders

23

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BUD
0x611604d389e2e154924f451763218ae6e847d98d
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:
BudFriends

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-20
*/

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

// SPDX-License-Identifier: MIT
// 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)

/**
 * @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/Strings.sol)

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

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

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

// File @openzeppelin/contracts/token/ERC721/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 indexed tokenId
    );

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

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

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

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

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

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

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

// File @openzeppelin/contracts/token/ERC721/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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 @openzeppelin/contracts/token/ERC721/extensions/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        external
        view
        returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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

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

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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/introspection/[email protected]

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

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

// File contracts/ERC721A.sol

// Creator: Chiru Labs

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 (max value of uint128) of supply
 */
contract ERC721A is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

    // 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 ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < totalSupply(), "ERC721A: global index out of bounds");
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: balance query for the zero address"
        );
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: number minted query for the zero address"
        );
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        for (uint256 curr = tokenId; ; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

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

    /**
     * @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)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

    /**
     * @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 See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, "ERC721A: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721A: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721A: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        override
    {
        require(operator != _msgSender(), "ERC721A: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), 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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: transfer to non ERC721Receiver implementer"
        );
    }

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

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity > 0, "ERC721A: quantity must be greater 0");

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                "ERC721A: transfer to non ERC721Receiver implementer"
            );
            updatedIndex++;
        }

        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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(
            isApprovedOrOwner,
            "ERC721A: transfer caller is not owner nor approved"
        );

        require(
            prevOwnership.addr == from,
            "ERC721A: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(
                    prevOwnership.addr,
                    prevOwnership.startTimestamp
                );
            }
        }

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

contract BudFriends is ERC721A, Ownable {
    string public baseURI = "";
    string public contractURI = "";
    string public constant baseExtension = ".json";
    address public constant proxyRegistryAddress =
        0xf86e5dA18649F4fDe48165E695Cd57ba02519A1B;

    uint256 public constant MAX_PER_TX = 10;
    uint256 public constant MAX_SUPPLY = 4200;
    uint256 public constant FREE_MAX_SUPPLY = 430;
    uint256 public constant price = 0.032 ether;

    bool public paused = true;

    constructor() ERC721A("BudFriends", "BUD") {}

    function mint(uint256 _amount) external payable {
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "Must mint one or more!");
        require(tx.origin == _caller, "No contracts allowed");

        if (FREE_MAX_SUPPLY >= totalSupply()) {
            require(MAX_PER_TX >= _amount, "Excess max per free tx");
        } else {
            require(MAX_PER_TX >= _amount, "Excess max per tx");
            require(_amount * price == msg.value, "Invalid funds provided");
        }

        _safeMint(_caller, _amount);
    }

    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function setupOS() external onlyOwner {
        _safeMint(_msgSender(), 1);
    }

    function pause(bool _state) external onlyOwner {
        paused = _state;
    }

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

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "Token does not exist.");
        return
            bytes(baseURI).length > 0
                ? string(
                    abi.encodePacked(
                        baseURI,
                        Strings.toString(_tokenId),
                        baseExtension
                    )
                )
                : "";
    }
}

contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setupOS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600080805560a0604081905260808290526200001f916008919062000138565b50604080516020810191829052600090819052620000409160099162000138565b50600a805460ff191660011790553480156200005b57600080fd5b50604080518082018252600a815269427564467269656e647360b01b60208083019182528351808501909452600384526210955160ea1b908401528151919291620000a99160019162000138565b508051620000bf90600290602084019062000138565b505050620000dc620000d6620000e260201b60201c565b620000e6565b6200021b565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014690620001de565b90600052602060002090601f0160209004810192826200016a5760008555620001b5565b82601f106200018557805160ff1916838001178555620001b5565b82800160010185558215620001b5579182015b82811115620001b557825182559160200191906001019062000198565b50620001c3929150620001c7565b5090565b5b80821115620001c35760008155600101620001c8565b600281046001821680620001f357607f821691505b602082108114156200021557634e487b7160e01b600052602260045260246000fd5b50919050565b61270e806200022b6000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063cd7c03261161006f578063cd7c032614610541578063e8a3d48514610556578063e985e9c51461056b578063f2fde38b1461058b578063f43a22dc146105ab576101f9565b8063a22cb465146104cc578063b88d4fde146104ec578063c66828621461050c578063c87b56dd14610521576101f9565b8063938e3d7b116100dc578063938e3d7b1461046f57806395d89b411461048f578063a035b1fe146104a4578063a0712d68146104b9576101f9565b806370a0823114610410578063715018a6146104305780638069876d146104455780638da5cb5b1461045a576101f9565b806332cb6b0c1161019057806355f804b31161015f57806355f804b3146103915780635c975abb146103b15780636352211e146103c6578063698982ba146103e65780636c0360eb146103fb576101f9565b806332cb6b0c146103275780633ccfd60b1461033c57806342842e0e146103515780634f6ccce714610371576101f9565b8063095ea7b3116101cc578063095ea7b3146102a557806318160ddd146102c557806323b872dd146102e75780632f745c5914610307576101f9565b806301ffc9a7146101fe57806302329a291461023457806306fdde0314610256578063081812fc14610278575b600080fd5b34801561020a57600080fd5b5061021e610219366004611c8d565b6105c0565b60405161022b9190611e81565b60405180910390f35b34801561024057600080fd5b5061025461024f366004611c73565b610623565b005b34801561026257600080fd5b5061026b61067e565b60405161022b9190611e8c565b34801561028457600080fd5b50610298610293366004611d27565b610710565b60405161022b9190611e3a565b3480156102b157600080fd5b506102546102c0366004611c48565b610753565b3480156102d157600080fd5b506102da6107ec565b60405161022b919061251c565b3480156102f357600080fd5b50610254610302366004611b57565b6107f2565b34801561031357600080fd5b506102da610322366004611c48565b6107fd565b34801561033357600080fd5b506102da6108f9565b34801561034857600080fd5b506102546108ff565b34801561035d57600080fd5b5061025461036c366004611b57565b6109c6565b34801561037d57600080fd5b506102da61038c366004611d27565b6109e1565b34801561039d57600080fd5b506102546103ac366004611ce1565b610a0d565b3480156103bd57600080fd5b5061021e610a5f565b3480156103d257600080fd5b506102986103e1366004611d27565b610a68565b3480156103f257600080fd5b50610254610a7a565b34801561040757600080fd5b5061026b610acd565b34801561041c57600080fd5b506102da61042b366004611afc565b610b5b565b34801561043c57600080fd5b50610254610ba8565b34801561045157600080fd5b506102da610bf1565b34801561046657600080fd5b50610298610bf7565b34801561047b57600080fd5b5061025461048a366004611ce1565b610c06565b34801561049b57600080fd5b5061026b610c58565b3480156104b057600080fd5b506102da610c67565b6102546104c7366004611d27565b610c72565b3480156104d857600080fd5b506102546104e7366004611c14565b610dae565b3480156104f857600080fd5b50610254610507366004611b97565b610e7c565b34801561051857600080fd5b5061026b610eb5565b34801561052d57600080fd5b5061026b61053c366004611d27565b610ed6565b34801561054d57600080fd5b50610298610f79565b34801561056257600080fd5b5061026b610f91565b34801561057757600080fd5b5061021e610586366004611b1f565b610f9e565b34801561059757600080fd5b506102546105a6366004611afc565b611060565b3480156105b757600080fd5b506102da6110d1565b60006001600160e01b031982166380ac58cd60e01b14806105f157506001600160e01b03198216635b5e139f60e01b145b8061060c57506001600160e01b0319821663780e9d6360e01b145b8061061b575061061b826110d6565b90505b919050565b61062b6110ef565b6001600160a01b031661063c610bf7565b6001600160a01b03161461066b5760405162461bcd60e51b8152600401610662906121bd565b60405180910390fd5b600a805460ff1916911515919091179055565b60606001805461068d90612601565b80601f01602080910402602001604051908101604052809291908181526020018280546106b990612601565b80156107065780601f106106db57610100808354040283529160200191610706565b820191906000526020600020905b8154815290600101906020018083116106e957829003601f168201915b5050505050905090565b600061071b826110f3565b6107375760405162461bcd60e51b8152600401610662906124cf565b506000908152600560205260409020546001600160a01b031690565b600061075e82610a68565b9050806001600160a01b0316836001600160a01b031614156107925760405162461bcd60e51b8152600401610662906122db565b806001600160a01b03166107a46110ef565b6001600160a01b031614806107c057506107c0816105866110ef565b6107dc5760405162461bcd60e51b815260040161066290612074565b6107e78383836110fa565b505050565b60005490565b6107e7838383611156565b600061080883610b5b565b82106108265760405162461bcd60e51b815260040161066290611e9f565b60006108306107ec565b905060008060005b838110156108da576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561088b57805192505b876001600160a01b0316836001600160a01b031614156108c757868414156108b9575093506108f392505050565b836108c38161263c565b9450505b50806108d28161263c565b915050610838565b5060405162461bcd60e51b815260040161066290612481565b92915050565b61106881565b6109076110ef565b6001600160a01b0316610918610bf7565b6001600160a01b03161461093e5760405162461bcd60e51b8152600401610662906121bd565b4760006109496110ef565b6001600160a01b03168260405161095f90611e37565b60006040518083038185875af1925050503d806000811461099c576040519150601f19603f3d011682016040523d82523d6000602084013e6109a1565b606091505b50509050806109c25760405162461bcd60e51b81526004016106629061242b565b5050565b6107e783838360405180602001604052806000815250610e7c565b60006109eb6107ec565b8210610a095760405162461bcd60e51b815260040161066290611fbc565b5090565b610a156110ef565b6001600160a01b0316610a26610bf7565b6001600160a01b031614610a4c5760405162461bcd60e51b8152600401610662906121bd565b80516109c29060089060208401906119d0565b600a5460ff1681565b6000610a738261141f565b5192915050565b610a826110ef565b6001600160a01b0316610a93610bf7565b6001600160a01b031614610ab95760405162461bcd60e51b8152600401610662906121bd565b610acb610ac46110ef565b60016114b0565b565b60088054610ada90612601565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0690612601565b8015610b535780601f10610b2857610100808354040283529160200191610b53565b820191906000526020600020905b815481529060010190602001808311610b3657829003601f168201915b505050505081565b60006001600160a01b038216610b835760405162461bcd60e51b8152600401610662906120fd565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610bb06110ef565b6001600160a01b0316610bc1610bf7565b6001600160a01b031614610be75760405162461bcd60e51b8152600401610662906121bd565b610acb60006114ca565b6101ae81565b6007546001600160a01b031690565b610c0e6110ef565b6001600160a01b0316610c1f610bf7565b6001600160a01b031614610c455760405162461bcd60e51b8152600401610662906121bd565b80516109c29060099060208401906119d0565b60606002805461068d90612601565b6671afd498d0000081565b6000610c7c6110ef565b600a5490915060ff1615610ca25760405162461bcd60e51b815260040161066290611ee1565b81610cab6107ec565b610cb5919061255c565b6110681015610cd65760405162461bcd60e51b8152600401610662906120d1565b60008211610cf65760405162461bcd60e51b8152600401610662906122ab565b326001600160a01b03821614610d1e5760405162461bcd60e51b815260040161066290612453565b610d266107ec565b6101ae10610d545781600a1015610d4f5760405162461bcd60e51b815260040161066290612044565b610da4565b81600a1015610d755760405162461bcd60e51b815260040161066290611f47565b34610d876671afd498d0000084612588565b14610da45760405162461bcd60e51b81526004016106629061227b565b6109c281836114b0565b610db66110ef565b6001600160a01b0316826001600160a01b03161415610de75760405162461bcd60e51b8152600401610662906121f2565b8060066000610df46110ef565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610e386110ef565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e709190611e81565b60405180910390a35050565b610e87848484611156565b610e938484848461151c565b610eaf5760405162461bcd60e51b815260040161066290612360565b50505050565b60405180604001604052806005815260200164173539b7b760d91b81525081565b6060610ee1826110f3565b610efd5760405162461bcd60e51b815260040161066290612148565b600060088054610f0c90612601565b905011610f28576040518060200160405280600081525061061b565b6008610f3383611637565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001610f6393929190611d87565b6040516020818303038152906040529050919050565b73f86e5da18649f4fde48165e695cd57ba02519a1b81565b60098054610ada90612601565b60405163c455279160e01b815260009073f86e5da18649f4fde48165e695cd57ba02519a1b906001600160a01b03841690829063c455279190610fe5908890600401611e3a565b60206040518083038186803b158015610ffd57600080fd5b505afa158015611011573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110359190611cc5565b6001600160a01b0316141561104e5760019150506108f3565b6110588484611752565b949350505050565b6110686110ef565b6001600160a01b0316611079610bf7565b6001600160a01b03161461109f5760405162461bcd60e51b8152600401610662906121bd565b6001600160a01b0381166110c55760405162461bcd60e51b815260040161066290611f01565b6110ce816114ca565b50565b600a81565b6001600160e01b031981166301ffc9a760e01b14919050565b3390565b6000541190565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111618261141f565b9050600081600001516001600160a01b031661117b6110ef565b6001600160a01b031614806111b057506111936110ef565b6001600160a01b03166111a584610710565b6001600160a01b0316145b806111c4575081516111c4906105866110ef565b9050806111e35760405162461bcd60e51b815260040161066290612229565b846001600160a01b031682600001516001600160a01b0316146112185760405162461bcd60e51b815260040161066290612177565b6001600160a01b03841661123e5760405162461bcd60e51b815260040161066290611fff565b61124b8585856001610eaf565b61125b60008484600001516110fa565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a875260039095529285209151825494516001600160a01b031990951696169590951767ffffffffffffffff60a01b1916600160a01b93909216929092021790559061132490859061255c565b6000818152600360205260409020549091506001600160a01b03166113c95761134c816110f3565b156113c95760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114178686866001610eaf565b505050505050565b611427611a50565b611430826110f3565b61144c5760405162461bcd60e51b815260040161066290611f72565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561149d57915061061e9050565b50806114a8816125ea565b91505061144e565b6109c2828260405180602001604052806000815250611780565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611530846001600160a01b03166119ca565b1561162c57836001600160a01b031663150b7a0261154c6110ef565b8786866040518563ffffffff1660e01b815260040161156e9493929190611e4e565b602060405180830381600087803b15801561158857600080fd5b505af19250505080156115b8575060408051601f3d908101601f191682019092526115b591810190611ca9565b60015b611612573d8080156115e6576040519150601f19603f3d011682016040523d82523d6000602084013e6115eb565b606091505b50805161160a5760405162461bcd60e51b815260040161066290612360565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611058565b506001949350505050565b60608161165c57506040805180820190915260018152600360fc1b602082015261061e565b8160005b811561168657806116708161263c565b915061167f9050600a83612574565b9150611660565b60008167ffffffffffffffff8111156116af57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116d9576020820181803683370190505b5090505b8415611058576116ee6001836125a7565b91506116fb600a86612657565b61170690603061255c565b60f81b81838151811061172957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061174b600a86612574565b94506116dd565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6000546001600160a01b0384166117a95760405162461bcd60e51b8152600401610662906123ea565b6117b2816110f3565b156117cf5760405162461bcd60e51b8152600401610662906123b3565b600083116117ef5760405162461bcd60e51b81526004016106629061231d565b6117fc6000858386610eaf565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611858908790612531565b6001600160801b031681526020018583602001516118769190612531565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166001600160801b031990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b858110156119b85760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461197c600088848861151c565b6119985760405162461bcd60e51b815260040161066290612360565b816119a28161263c565b92505080806119b09061263c565b91505061192f565b50600081815561141790878588610eaf565b3b151590565b8280546119dc90612601565b90600052602060002090601f0160209004810192826119fe5760008555611a44565b82601f10611a1757805160ff1916838001178555611a44565b82800160010185558215611a44579182015b82811115611a44578251825591602001919060010190611a29565b50610a09929150611a67565b604080518082019091526000808252602082015290565b5b80821115610a095760008155600101611a68565b600067ffffffffffffffff80841115611a9757611a97612697565b604051601f8501601f191681016020018281118282101715611abb57611abb612697565b604052848152915081838501861015611ad357600080fd5b8484602083013760006020868301015250509392505050565b8035801515811461061e57600080fd5b600060208284031215611b0d578081fd5b8135611b18816126ad565b9392505050565b60008060408385031215611b31578081fd5b8235611b3c816126ad565b91506020830135611b4c816126ad565b809150509250929050565b600080600060608486031215611b6b578081fd5b8335611b76816126ad565b92506020840135611b86816126ad565b929592945050506040919091013590565b60008060008060808587031215611bac578081fd5b8435611bb7816126ad565b93506020850135611bc7816126ad565b925060408501359150606085013567ffffffffffffffff811115611be9578182fd5b8501601f81018713611bf9578182fd5b611c0887823560208401611a7c565b91505092959194509250565b60008060408385031215611c26578182fd5b8235611c31816126ad565b9150611c3f60208401611aec565b90509250929050565b60008060408385031215611c5a578182fd5b8235611c65816126ad565b946020939093013593505050565b600060208284031215611c84578081fd5b611b1882611aec565b600060208284031215611c9e578081fd5b8135611b18816126c2565b600060208284031215611cba578081fd5b8151611b18816126c2565b600060208284031215611cd6578081fd5b8151611b18816126ad565b600060208284031215611cf2578081fd5b813567ffffffffffffffff811115611d08578182fd5b8201601f81018413611d18578182fd5b61105884823560208401611a7c565b600060208284031215611d38578081fd5b5035919050565b60008151808452611d578160208601602086016125be565b601f01601f19169290920160200192915050565b60008151611d7d8185602086016125be565b9290920192915050565b8354600090819060028104600180831680611da357607f831692505b6020808410821415611dc357634e487b7160e01b87526022600452602487fd5b818015611dd75760018114611de857611e14565b60ff19861689528489019650611e14565b611df18c612525565b885b86811015611e0c5781548b820152908501908301611df3565b505084890196505b505050505050611e2d611e278287611d6b565b85611d6b565b9695505050505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e2d90830184611d3f565b901515815260200190565b600060208252611b186020830184611d3f565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526006908201526514185d5cd95960d21b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526011908201527008af0c6cae6e640dac2f040e0cae440e8f607b1b604082015260600190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526016908201527508af0c6cae6e640dac2f040e0cae440cce4caca40e8f60531b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526012908201527145786365656473206d617820737570706c7960701b604082015260600190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b6020808252601590820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b602080825260169082015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b604082015260600190565b6020808252601690820152754d757374206d696e74206f6e65206f72206d6f72652160501b604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526023908201527f455243373231413a207175616e74697479206d7573742062652067726561746560408201526207220360ec1b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252600e908201526d11985a5b1959081d1bc81cd95b9960921b604082015260600190565b602080825260149082015273139bc818dbdb9d1c9858dd1cc8185b1b1bddd95960621b604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b90815260200190565b60009081526020902090565b60006001600160801b038083168185168083038211156125535761255361266b565b01949350505050565b6000821982111561256f5761256f61266b565b500190565b60008261258357612583612681565b500490565b60008160001904831182151516156125a2576125a261266b565b500290565b6000828210156125b9576125b961266b565b500390565b60005b838110156125d95781810151838201526020016125c1565b83811115610eaf5750506000910152565b6000816125f9576125f961266b565b506000190190565b60028104600182168061261557607f821691505b6020821081141561263657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126505761265061266b565b5060010190565b60008261266657612666612681565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146110ce57600080fd5b6001600160e01b0319811681146110ce57600080fdfea2646970667358221220a738185e070e6420ec56f6457b0e65bb85a85b350b252bfca9bc5f8fb2b6bc2764736f6c63430008000033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063cd7c03261161006f578063cd7c032614610541578063e8a3d48514610556578063e985e9c51461056b578063f2fde38b1461058b578063f43a22dc146105ab576101f9565b8063a22cb465146104cc578063b88d4fde146104ec578063c66828621461050c578063c87b56dd14610521576101f9565b8063938e3d7b116100dc578063938e3d7b1461046f57806395d89b411461048f578063a035b1fe146104a4578063a0712d68146104b9576101f9565b806370a0823114610410578063715018a6146104305780638069876d146104455780638da5cb5b1461045a576101f9565b806332cb6b0c1161019057806355f804b31161015f57806355f804b3146103915780635c975abb146103b15780636352211e146103c6578063698982ba146103e65780636c0360eb146103fb576101f9565b806332cb6b0c146103275780633ccfd60b1461033c57806342842e0e146103515780634f6ccce714610371576101f9565b8063095ea7b3116101cc578063095ea7b3146102a557806318160ddd146102c557806323b872dd146102e75780632f745c5914610307576101f9565b806301ffc9a7146101fe57806302329a291461023457806306fdde0314610256578063081812fc14610278575b600080fd5b34801561020a57600080fd5b5061021e610219366004611c8d565b6105c0565b60405161022b9190611e81565b60405180910390f35b34801561024057600080fd5b5061025461024f366004611c73565b610623565b005b34801561026257600080fd5b5061026b61067e565b60405161022b9190611e8c565b34801561028457600080fd5b50610298610293366004611d27565b610710565b60405161022b9190611e3a565b3480156102b157600080fd5b506102546102c0366004611c48565b610753565b3480156102d157600080fd5b506102da6107ec565b60405161022b919061251c565b3480156102f357600080fd5b50610254610302366004611b57565b6107f2565b34801561031357600080fd5b506102da610322366004611c48565b6107fd565b34801561033357600080fd5b506102da6108f9565b34801561034857600080fd5b506102546108ff565b34801561035d57600080fd5b5061025461036c366004611b57565b6109c6565b34801561037d57600080fd5b506102da61038c366004611d27565b6109e1565b34801561039d57600080fd5b506102546103ac366004611ce1565b610a0d565b3480156103bd57600080fd5b5061021e610a5f565b3480156103d257600080fd5b506102986103e1366004611d27565b610a68565b3480156103f257600080fd5b50610254610a7a565b34801561040757600080fd5b5061026b610acd565b34801561041c57600080fd5b506102da61042b366004611afc565b610b5b565b34801561043c57600080fd5b50610254610ba8565b34801561045157600080fd5b506102da610bf1565b34801561046657600080fd5b50610298610bf7565b34801561047b57600080fd5b5061025461048a366004611ce1565b610c06565b34801561049b57600080fd5b5061026b610c58565b3480156104b057600080fd5b506102da610c67565b6102546104c7366004611d27565b610c72565b3480156104d857600080fd5b506102546104e7366004611c14565b610dae565b3480156104f857600080fd5b50610254610507366004611b97565b610e7c565b34801561051857600080fd5b5061026b610eb5565b34801561052d57600080fd5b5061026b61053c366004611d27565b610ed6565b34801561054d57600080fd5b50610298610f79565b34801561056257600080fd5b5061026b610f91565b34801561057757600080fd5b5061021e610586366004611b1f565b610f9e565b34801561059757600080fd5b506102546105a6366004611afc565b611060565b3480156105b757600080fd5b506102da6110d1565b60006001600160e01b031982166380ac58cd60e01b14806105f157506001600160e01b03198216635b5e139f60e01b145b8061060c57506001600160e01b0319821663780e9d6360e01b145b8061061b575061061b826110d6565b90505b919050565b61062b6110ef565b6001600160a01b031661063c610bf7565b6001600160a01b03161461066b5760405162461bcd60e51b8152600401610662906121bd565b60405180910390fd5b600a805460ff1916911515919091179055565b60606001805461068d90612601565b80601f01602080910402602001604051908101604052809291908181526020018280546106b990612601565b80156107065780601f106106db57610100808354040283529160200191610706565b820191906000526020600020905b8154815290600101906020018083116106e957829003601f168201915b5050505050905090565b600061071b826110f3565b6107375760405162461bcd60e51b8152600401610662906124cf565b506000908152600560205260409020546001600160a01b031690565b600061075e82610a68565b9050806001600160a01b0316836001600160a01b031614156107925760405162461bcd60e51b8152600401610662906122db565b806001600160a01b03166107a46110ef565b6001600160a01b031614806107c057506107c0816105866110ef565b6107dc5760405162461bcd60e51b815260040161066290612074565b6107e78383836110fa565b505050565b60005490565b6107e7838383611156565b600061080883610b5b565b82106108265760405162461bcd60e51b815260040161066290611e9f565b60006108306107ec565b905060008060005b838110156108da576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561088b57805192505b876001600160a01b0316836001600160a01b031614156108c757868414156108b9575093506108f392505050565b836108c38161263c565b9450505b50806108d28161263c565b915050610838565b5060405162461bcd60e51b815260040161066290612481565b92915050565b61106881565b6109076110ef565b6001600160a01b0316610918610bf7565b6001600160a01b03161461093e5760405162461bcd60e51b8152600401610662906121bd565b4760006109496110ef565b6001600160a01b03168260405161095f90611e37565b60006040518083038185875af1925050503d806000811461099c576040519150601f19603f3d011682016040523d82523d6000602084013e6109a1565b606091505b50509050806109c25760405162461bcd60e51b81526004016106629061242b565b5050565b6107e783838360405180602001604052806000815250610e7c565b60006109eb6107ec565b8210610a095760405162461bcd60e51b815260040161066290611fbc565b5090565b610a156110ef565b6001600160a01b0316610a26610bf7565b6001600160a01b031614610a4c5760405162461bcd60e51b8152600401610662906121bd565b80516109c29060089060208401906119d0565b600a5460ff1681565b6000610a738261141f565b5192915050565b610a826110ef565b6001600160a01b0316610a93610bf7565b6001600160a01b031614610ab95760405162461bcd60e51b8152600401610662906121bd565b610acb610ac46110ef565b60016114b0565b565b60088054610ada90612601565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0690612601565b8015610b535780601f10610b2857610100808354040283529160200191610b53565b820191906000526020600020905b815481529060010190602001808311610b3657829003601f168201915b505050505081565b60006001600160a01b038216610b835760405162461bcd60e51b8152600401610662906120fd565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610bb06110ef565b6001600160a01b0316610bc1610bf7565b6001600160a01b031614610be75760405162461bcd60e51b8152600401610662906121bd565b610acb60006114ca565b6101ae81565b6007546001600160a01b031690565b610c0e6110ef565b6001600160a01b0316610c1f610bf7565b6001600160a01b031614610c455760405162461bcd60e51b8152600401610662906121bd565b80516109c29060099060208401906119d0565b60606002805461068d90612601565b6671afd498d0000081565b6000610c7c6110ef565b600a5490915060ff1615610ca25760405162461bcd60e51b815260040161066290611ee1565b81610cab6107ec565b610cb5919061255c565b6110681015610cd65760405162461bcd60e51b8152600401610662906120d1565b60008211610cf65760405162461bcd60e51b8152600401610662906122ab565b326001600160a01b03821614610d1e5760405162461bcd60e51b815260040161066290612453565b610d266107ec565b6101ae10610d545781600a1015610d4f5760405162461bcd60e51b815260040161066290612044565b610da4565b81600a1015610d755760405162461bcd60e51b815260040161066290611f47565b34610d876671afd498d0000084612588565b14610da45760405162461bcd60e51b81526004016106629061227b565b6109c281836114b0565b610db66110ef565b6001600160a01b0316826001600160a01b03161415610de75760405162461bcd60e51b8152600401610662906121f2565b8060066000610df46110ef565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610e386110ef565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e709190611e81565b60405180910390a35050565b610e87848484611156565b610e938484848461151c565b610eaf5760405162461bcd60e51b815260040161066290612360565b50505050565b60405180604001604052806005815260200164173539b7b760d91b81525081565b6060610ee1826110f3565b610efd5760405162461bcd60e51b815260040161066290612148565b600060088054610f0c90612601565b905011610f28576040518060200160405280600081525061061b565b6008610f3383611637565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001610f6393929190611d87565b6040516020818303038152906040529050919050565b73f86e5da18649f4fde48165e695cd57ba02519a1b81565b60098054610ada90612601565b60405163c455279160e01b815260009073f86e5da18649f4fde48165e695cd57ba02519a1b906001600160a01b03841690829063c455279190610fe5908890600401611e3a565b60206040518083038186803b158015610ffd57600080fd5b505afa158015611011573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110359190611cc5565b6001600160a01b0316141561104e5760019150506108f3565b6110588484611752565b949350505050565b6110686110ef565b6001600160a01b0316611079610bf7565b6001600160a01b03161461109f5760405162461bcd60e51b8152600401610662906121bd565b6001600160a01b0381166110c55760405162461bcd60e51b815260040161066290611f01565b6110ce816114ca565b50565b600a81565b6001600160e01b031981166301ffc9a760e01b14919050565b3390565b6000541190565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111618261141f565b9050600081600001516001600160a01b031661117b6110ef565b6001600160a01b031614806111b057506111936110ef565b6001600160a01b03166111a584610710565b6001600160a01b0316145b806111c4575081516111c4906105866110ef565b9050806111e35760405162461bcd60e51b815260040161066290612229565b846001600160a01b031682600001516001600160a01b0316146112185760405162461bcd60e51b815260040161066290612177565b6001600160a01b03841661123e5760405162461bcd60e51b815260040161066290611fff565b61124b8585856001610eaf565b61125b60008484600001516110fa565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a875260039095529285209151825494516001600160a01b031990951696169590951767ffffffffffffffff60a01b1916600160a01b93909216929092021790559061132490859061255c565b6000818152600360205260409020549091506001600160a01b03166113c95761134c816110f3565b156113c95760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114178686866001610eaf565b505050505050565b611427611a50565b611430826110f3565b61144c5760405162461bcd60e51b815260040161066290611f72565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561149d57915061061e9050565b50806114a8816125ea565b91505061144e565b6109c2828260405180602001604052806000815250611780565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611530846001600160a01b03166119ca565b1561162c57836001600160a01b031663150b7a0261154c6110ef565b8786866040518563ffffffff1660e01b815260040161156e9493929190611e4e565b602060405180830381600087803b15801561158857600080fd5b505af19250505080156115b8575060408051601f3d908101601f191682019092526115b591810190611ca9565b60015b611612573d8080156115e6576040519150601f19603f3d011682016040523d82523d6000602084013e6115eb565b606091505b50805161160a5760405162461bcd60e51b815260040161066290612360565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611058565b506001949350505050565b60608161165c57506040805180820190915260018152600360fc1b602082015261061e565b8160005b811561168657806116708161263c565b915061167f9050600a83612574565b9150611660565b60008167ffffffffffffffff8111156116af57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116d9576020820181803683370190505b5090505b8415611058576116ee6001836125a7565b91506116fb600a86612657565b61170690603061255c565b60f81b81838151811061172957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061174b600a86612574565b94506116dd565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6000546001600160a01b0384166117a95760405162461bcd60e51b8152600401610662906123ea565b6117b2816110f3565b156117cf5760405162461bcd60e51b8152600401610662906123b3565b600083116117ef5760405162461bcd60e51b81526004016106629061231d565b6117fc6000858386610eaf565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611858908790612531565b6001600160801b031681526020018583602001516118769190612531565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166001600160801b031990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b858110156119b85760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461197c600088848861151c565b6119985760405162461bcd60e51b815260040161066290612360565b816119a28161263c565b92505080806119b09061263c565b91505061192f565b50600081815561141790878588610eaf565b3b151590565b8280546119dc90612601565b90600052602060002090601f0160209004810192826119fe5760008555611a44565b82601f10611a1757805160ff1916838001178555611a44565b82800160010185558215611a44579182015b82811115611a44578251825591602001919060010190611a29565b50610a09929150611a67565b604080518082019091526000808252602082015290565b5b80821115610a095760008155600101611a68565b600067ffffffffffffffff80841115611a9757611a97612697565b604051601f8501601f191681016020018281118282101715611abb57611abb612697565b604052848152915081838501861015611ad357600080fd5b8484602083013760006020868301015250509392505050565b8035801515811461061e57600080fd5b600060208284031215611b0d578081fd5b8135611b18816126ad565b9392505050565b60008060408385031215611b31578081fd5b8235611b3c816126ad565b91506020830135611b4c816126ad565b809150509250929050565b600080600060608486031215611b6b578081fd5b8335611b76816126ad565b92506020840135611b86816126ad565b929592945050506040919091013590565b60008060008060808587031215611bac578081fd5b8435611bb7816126ad565b93506020850135611bc7816126ad565b925060408501359150606085013567ffffffffffffffff811115611be9578182fd5b8501601f81018713611bf9578182fd5b611c0887823560208401611a7c565b91505092959194509250565b60008060408385031215611c26578182fd5b8235611c31816126ad565b9150611c3f60208401611aec565b90509250929050565b60008060408385031215611c5a578182fd5b8235611c65816126ad565b946020939093013593505050565b600060208284031215611c84578081fd5b611b1882611aec565b600060208284031215611c9e578081fd5b8135611b18816126c2565b600060208284031215611cba578081fd5b8151611b18816126c2565b600060208284031215611cd6578081fd5b8151611b18816126ad565b600060208284031215611cf2578081fd5b813567ffffffffffffffff811115611d08578182fd5b8201601f81018413611d18578182fd5b61105884823560208401611a7c565b600060208284031215611d38578081fd5b5035919050565b60008151808452611d578160208601602086016125be565b601f01601f19169290920160200192915050565b60008151611d7d8185602086016125be565b9290920192915050565b8354600090819060028104600180831680611da357607f831692505b6020808410821415611dc357634e487b7160e01b87526022600452602487fd5b818015611dd75760018114611de857611e14565b60ff19861689528489019650611e14565b611df18c612525565b885b86811015611e0c5781548b820152908501908301611df3565b505084890196505b505050505050611e2d611e278287611d6b565b85611d6b565b9695505050505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e2d90830184611d3f565b901515815260200190565b600060208252611b186020830184611d3f565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526006908201526514185d5cd95960d21b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526011908201527008af0c6cae6e640dac2f040e0cae440e8f607b1b604082015260600190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526016908201527508af0c6cae6e640dac2f040e0cae440cce4caca40e8f60531b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526012908201527145786365656473206d617820737570706c7960701b604082015260600190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b6020808252601590820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b602080825260169082015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b604082015260600190565b6020808252601690820152754d757374206d696e74206f6e65206f72206d6f72652160501b604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526023908201527f455243373231413a207175616e74697479206d7573742062652067726561746560408201526207220360ec1b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252600e908201526d11985a5b1959081d1bc81cd95b9960921b604082015260600190565b602080825260149082015273139bc818dbdb9d1c9858dd1cc8185b1b1bddd95960621b604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b90815260200190565b60009081526020902090565b60006001600160801b038083168185168083038211156125535761255361266b565b01949350505050565b6000821982111561256f5761256f61266b565b500190565b60008261258357612583612681565b500490565b60008160001904831182151516156125a2576125a261266b565b500290565b6000828210156125b9576125b961266b565b500390565b60005b838110156125d95781810151838201526020016125c1565b83811115610eaf5750506000910152565b6000816125f9576125f961266b565b506000190190565b60028104600182168061261557607f821691505b6020821081141561263657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126505761265061266b565b5060010190565b60008261266657612666612681565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146110ce57600080fd5b6001600160e01b0319811681146110ce57600080fdfea2646970667358221220a738185e070e6420ec56f6457b0e65bb85a85b350b252bfca9bc5f8fb2b6bc2764736f6c63430008000033

Deployed Bytecode Sourcemap

40216:2828:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27471:422;;;;;;;;;;-1:-1:-1;27471:422:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42216:81;;;;;;;;;;-1:-1:-1;42216:81:0;;;;;:::i;:::-;;:::i;:::-;;29254:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30949:292::-;;;;;;;;;;-1:-1:-1;30949:292:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;30470:413::-;;;;;;;;;;-1:-1:-1;30470:413:0;;;;;:::i;:::-;;:::i;25830:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31976:162::-;;;;;;;;;;-1:-1:-1;31976:162:0;;;;;:::i;:::-;;:::i;26535:864::-;;;;;;;;;;-1:-1:-1;26535:864:0;;;;;:::i;:::-;;:::i;40539:41::-;;;;;;;;;;;;;:::i;41908:209::-;;;;;;;;;;;;;:::i;32209:177::-;;;;;;;;;;-1:-1:-1;32209:177:0;;;;;:::i;:::-;;:::i;26007:228::-;;;;;;;;;;-1:-1:-1;26007:228:0;;;;;:::i;:::-;;:::i;42305:100::-;;;;;;;;;;-1:-1:-1;42305:100:0;;;;;:::i;:::-;;:::i;40691:25::-;;;;;;;;;;;;;:::i;29063:124::-;;;;;;;;;;-1:-1:-1;29063:124:0;;;;;:::i;:::-;;:::i;42125:83::-;;;;;;;;;;;;;:::i;40263:26::-;;;;;;;;;;;;;:::i;27957:258::-;;;;;;;;;;-1:-1:-1;27957:258:0;;;;;:::i;:::-;;:::i;2643:103::-;;;;;;;;;;;;;:::i;40587:45::-;;;;;;;;;;;;;:::i;1992:87::-;;;;;;;;;;;;;:::i;42413:116::-;;;;;;;;;;-1:-1:-1;42413:116:0;;;;;:::i;:::-;;:::i;29423:104::-;;;;;;;;;;;;;:::i;40639:43::-;;;;;;;;;;;;;:::i;40778:669::-;;;;;;:::i;:::-;;:::i;31313:311::-;;;;;;;;;;-1:-1:-1;31313:311:0;;;;;:::i;:::-;;:::i;32457:355::-;;;;;;;;;;-1:-1:-1;32457:355:0;;;;;:::i;:::-;;:::i;40333:46::-;;;;;;;;;;;;;:::i;42537:504::-;;;;;;;;;;-1:-1:-1;42537:504:0;;;;;:::i;:::-;;:::i;40386:98::-;;;;;;;;;;;;;:::i;40296:30::-;;;;;;;;;;;;;:::i;41455:445::-;;;;;;;;;;-1:-1:-1;41455:445:0;;;;;:::i;:::-;;:::i;2901:238::-;;;;;;;;;;-1:-1:-1;2901:238:0;;;;;:::i;:::-;;:::i;40493:39::-;;;;;;;;;;;;;:::i;27471:422::-;27618:4;-1:-1:-1;;;;;;27660:40:0;;-1:-1:-1;;;27660:40:0;;:105;;-1:-1:-1;;;;;;;27717:48:0;;-1:-1:-1;;;27717:48:0;27660:105;:172;;;-1:-1:-1;;;;;;;27782:50:0;;-1:-1:-1;;;27782:50:0;27660:172;:225;;;;27849:36;27873:11;27849:23;:36::i;:::-;27640:245;;27471:422;;;;:::o;42216:81::-;2223:12;:10;:12::i;:::-;-1:-1:-1;;;;;2212:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2212:23:0;;2204:68;;;;-1:-1:-1;;;2204:68:0;;;;;;;:::i;:::-;;;;;;;;;42274:6:::1;:15:::0;;-1:-1:-1;;42274:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42216:81::o;29254:100::-;29308:13;29341:5;29334:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29254:100;:::o;30949:292::-;31053:7;31100:16;31108:7;31100;:16::i;:::-;31078:111;;;;-1:-1:-1;;;31078:111:0;;;;;;;:::i;:::-;-1:-1:-1;31209:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31209:24:0;;30949:292::o;30470:413::-;30543:13;30559:24;30575:7;30559:15;:24::i;:::-;30543:40;;30608:5;-1:-1:-1;;;;;30602:11:0;:2;-1:-1:-1;;;;;30602:11:0;;;30594:58;;;;-1:-1:-1;;;30594:58:0;;;;;;;:::i;:::-;30703:5;-1:-1:-1;;;;;30687:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;30687:21:0;;:62;;;;30712:37;30729:5;30736:12;:10;:12::i;30712:37::-;30665:169;;;;-1:-1:-1;;;30665:169:0;;;;;;;:::i;:::-;30847:28;30856:2;30860:7;30869:5;30847:8;:28::i;:::-;30470:413;;;:::o;25830:100::-;25883:7;25910:12;25830:100;:::o;31976:162::-;32102:28;32112:4;32118:2;32122:7;32102:9;:28::i;26535:864::-;26660:7;26701:16;26711:5;26701:9;:16::i;:::-;26693:5;:24;26685:71;;;;-1:-1:-1;;;26685:71:0;;;;;;;:::i;:::-;26767:22;26792:13;:11;:13::i;:::-;26767:38;;26816:19;26850:25;26904:9;26899:426;26923:14;26919:1;:18;26899:426;;;26959:31;26993:14;;;:11;:14;;;;;;;;;26959:48;;;;;;;;;-1:-1:-1;;;;;26959:48:0;;;;;-1:-1:-1;;;26959:48:0;;;;;;;;;;;;27026:28;27022:103;;27095:14;;;-1:-1:-1;27022:103:0;27164:5;-1:-1:-1;;;;;27143:26:0;:17;-1:-1:-1;;;;;27143:26:0;;27139:175;;;27209:5;27194:11;:20;27190:77;;;-1:-1:-1;27246:1:0;-1:-1:-1;27239:8:0;;-1:-1:-1;;;27239:8:0;27190:77;27285:13;;;;:::i;:::-;;;;27139:175;-1:-1:-1;26939:3:0;;;;:::i;:::-;;;;26899:426;;;;27335:56;;-1:-1:-1;;;27335:56:0;;;;;;;:::i;26535:864::-;;;;;:::o;40539:41::-;40576:4;40539:41;:::o;41908:209::-;2223:12;:10;:12::i;:::-;-1:-1:-1;;;;;2212:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2212:23:0;;2204:68;;;;-1:-1:-1;;;2204:68:0;;;;;;;:::i;:::-;41976:21:::1;41958:15;42027:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;42027:17:0::1;42052:7;42027:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42008:56;;;42083:7;42075:34;;;;-1:-1:-1::0;;;42075:34:0::1;;;;;;;:::i;:::-;2283:1;;41908:209::o:0;32209:177::-;32339:39;32356:4;32362:2;32366:7;32339:39;;;;;;;;;;;;:16;:39::i;26007:228::-;26110:7;26151:13;:11;:13::i;:::-;26143:5;:21;26135:69;;;;-1:-1:-1;;;26135:69:0;;;;;;;:::i;:::-;-1:-1:-1;26222:5:0;26007:228::o;42305:100::-;2223:12;:10;:12::i;:::-;-1:-1:-1;;;;;2212:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2212:23:0;;2204:68;;;;-1:-1:-1;;;2204:68:0;;;;;;;:::i;:::-;42379:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;40691:25::-:0;;;;;;:::o;29063:124::-;29127:7;29154:20;29166:7;29154:11;:20::i;:::-;:25;;29063:124;-1:-1:-1;;29063:124:0:o;42125:83::-;2223:12;:10;:12::i;:::-;-1:-1:-1;;;;;2212:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2212:23:0;;2204:68;;;;-1:-1:-1;;;2204:68:0;;;;;;;:::i;:::-;42174:26:::1;42184:12;:10;:12::i;:::-;42198:1;42174:9;:26::i;:::-;42125:83::o:0;40263:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27957:258::-;28021:7;-1:-1:-1;;;;;28063:19:0;;28041:112;;;;-1:-1:-1;;;28041:112:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;28179:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28179:27:0;;27957:258::o;2643:103::-;2223:12;:10;:12::i;:::-;-1:-1:-1;;;;;2212:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2212:23:0;;2204:68;;;;-1:-1:-1;;;2204:68:0;;;;;;;:::i;:::-;2708:30:::1;2735:1;2708:18;:30::i;40587:45::-:0;40629:3;40587:45;:::o;1992:87::-;2065:6;;-1:-1:-1;;;;;2065:6:0;1992:87;:::o;42413:116::-;2223:12;:10;:12::i;:::-;-1:-1:-1;;;;;2212:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2212:23:0;;2204:68;;;;-1:-1:-1;;;2204:68:0;;;;;;;:::i;:::-;42495:26;;::::1;::::0;:11:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;29423:104::-:0;29479:13;29512:7;29505:14;;;;;:::i;40639:43::-;40671:11;40639:43;:::o;40778:669::-;40837:15;40855:12;:10;:12::i;:::-;40887:6;;40837:30;;-1:-1:-1;40887:6:0;;40886:7;40878:26;;;;-1:-1:-1;;;40878:26:0;;;;;;;:::i;:::-;40953:7;40937:13;:11;:13::i;:::-;:23;;;;:::i;:::-;40576:4;40923:37;;40915:68;;;;-1:-1:-1;;;40915:68:0;;;;;;;:::i;:::-;41012:1;41002:7;:11;40994:46;;;;-1:-1:-1;;;40994:46:0;;;;;;;:::i;:::-;41059:9;-1:-1:-1;;;;;41059:20:0;;;41051:53;;;;-1:-1:-1;;;41051:53:0;;;;;;;:::i;:::-;41140:13;:11;:13::i;:::-;40629:3;41121:32;41117:283;;41192:7;40530:2;41178:21;;41170:56;;;;-1:-1:-1;;;41170:56:0;;;;;;;:::i;:::-;41117:283;;;41281:7;40530:2;41267:21;;41259:51;;;;-1:-1:-1;;;41259:51:0;;;;;;;:::i;:::-;41352:9;41333:15;40671:11;41333:7;:15;:::i;:::-;:28;41325:63;;;;-1:-1:-1;;;41325:63:0;;;;;;;:::i;:::-;41412:27;41422:7;41431;41412:9;:27::i;31313:311::-;31443:12;:10;:12::i;:::-;-1:-1:-1;;;;;31431:24:0;:8;-1:-1:-1;;;;;31431:24:0;;;31423:63;;;;-1:-1:-1;;;31423:63:0;;;;;;;:::i;:::-;31544:8;31499:18;:32;31518:12;:10;:12::i;:::-;-1:-1:-1;;;;;31499:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;31499:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;31499:53:0;;;;;;;;;;;31583:12;:10;:12::i;:::-;-1:-1:-1;;;;;31568:48:0;;31607:8;31568:48;;;;;;:::i;:::-;;;;;;;;31313:311;;:::o;32457:355::-;32616:28;32626:4;32632:2;32636:7;32616:9;:28::i;:::-;32677:48;32700:4;32706:2;32710:7;32719:5;32677:22;:48::i;:::-;32655:149;;;;-1:-1:-1;;;32655:149:0;;;;;;;:::i;:::-;32457:355;;;;:::o;40333:46::-;;;;;;;;;;;;;;-1:-1:-1;;;40333:46:0;;;;:::o;42537:504::-;42639:13;42678:17;42686:8;42678:7;:17::i;:::-;42670:51;;;;-1:-1:-1;;;42670:51:0;;;;;;;:::i;:::-;42776:1;42758:7;42752:21;;;;;:::i;:::-;;;:25;:281;;;;;;;;;;;;;;;;;42869:7;42903:26;42920:8;42903:16;:26::i;:::-;42956:13;;;;;;;;;;;;;-1:-1:-1;;;42956:13:0;;;42826:166;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42732:301;;42537:504;;;:::o;40386:98::-;40442:42;40386:98;:::o;40296:30::-;;;;;;;:::i;41455:445::-;41753:28;;-1:-1:-1;;;41753:28:0;;41580:4;;40442:42;;-1:-1:-1;;;;;41745:49:0;;;40442:42;;41753:21;;:28;;41775:5;;41753:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;41745:49:0;;41741:93;;;41818:4;41811:11;;;;;41741:93;41853:39;41876:5;41883:8;41853:22;:39::i;:::-;41846:46;41455:445;-1:-1:-1;;;;41455:445:0:o;2901:238::-;2223:12;:10;:12::i;:::-;-1:-1:-1;;;;;2212:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2212:23:0;;2204:68;;;;-1:-1:-1;;;2204:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3004:22:0;::::1;2982:110;;;;-1:-1:-1::0;;;2982:110:0::1;;;;;;;:::i;:::-;3103:28;3122:8;3103:18;:28::i;:::-;2901:238:::0;:::o;40493:39::-;40530:2;40493:39;:::o;23823:207::-;-1:-1:-1;;;;;;23982:40:0;;-1:-1:-1;;;23982:40:0;23823:207;;;:::o;716:98::-;796:10;716:98;:::o;33067:111::-;33124:4;33158:12;-1:-1:-1;33148:22:0;33067:111::o;37246:196::-;37361:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;37361:29:0;-1:-1:-1;;;;;37361:29:0;;;;;;;;;37406:28;;37361:24;;37406:28;;;;;;;37246:196;;;:::o;35210:1918::-;35325:35;35363:20;35375:7;35363:11;:20::i;:::-;35325:58;;35396:22;35438:13;:18;;;-1:-1:-1;;;;;35422:34:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;35422:34:0;;:87;;;;35497:12;:10;:12::i;:::-;-1:-1:-1;;;;;35473:36:0;:20;35485:7;35473:11;:20::i;:::-;-1:-1:-1;;;;;35473:36:0;;35422:87;:154;;;-1:-1:-1;35543:18:0;;35526:50;;35563:12;:10;:12::i;35526:50::-;35396:181;;35612:17;35590:117;;;;-1:-1:-1;;;35590:117:0;;;;;;;:::i;:::-;35764:4;-1:-1:-1;;;;;35742:26:0;:13;:18;;;-1:-1:-1;;;;;35742:26:0;;35720:114;;;;-1:-1:-1;;;35720:114:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35853:16:0;;35845:66;;;;-1:-1:-1;;;35845:66:0;;;;;;;:::i;:::-;35924:43;35946:4;35952:2;35956:7;35965:1;35924:21;:43::i;:::-;36032:49;36049:1;36053:7;36062:13;:18;;;36032:8;:49::i;:::-;-1:-1:-1;;;;;36286:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;36286:31:0;;;-1:-1:-1;;;;;36286:31:0;;;-1:-1:-1;;36286:31:0;;;;;;;36332:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36332:29:0;;;;;;;;;;;;;36408:43;;;;;;;;;;36434:15;36408:43;;;;;;;;;;36385:20;;;:11;:20;;;;;;:66;;;;;;-1:-1:-1;;;;;;36385:66:0;;;;;;;;;-1:-1:-1;;;;36385:66:0;-1:-1:-1;;;36385:66:0;;;;;;;;;;;36286:18;36713:11;;36385:20;;36713:11;:::i;:::-;36780:1;36739:24;;;:11;:24;;;;;:29;36691:33;;-1:-1:-1;;;;;;36739:29:0;36735:288;;36803:20;36811:11;36803:7;:20::i;:::-;36799:213;;;36871:125;;;;;;;;36908:18;;-1:-1:-1;;;;;36871:125:0;;;;;;36949:28;;;;36871:125;;;;;;;;;;-1:-1:-1;36844:24:0;;;:11;:24;;;;;;;:152;;;;;;-1:-1:-1;;;;;;36844:152:0;;;;;;;;;-1:-1:-1;;;;36844:152:0;-1:-1:-1;;;36844:152:0;;;;;;;;;;;;;;36799:213;37059:7;37055:2;-1:-1:-1;;;;;37040:27:0;37049:4;-1:-1:-1;;;;;37040:27:0;;;;;;;;;;;37078:42;37099:4;37105:2;37109:7;37118:1;37078:20;:42::i;:::-;35210:1918;;;;;;:::o;28497:504::-;28585:21;;:::i;:::-;28632:16;28640:7;28632;:16::i;:::-;28624:71;;;;-1:-1:-1;;;28624:71:0;;;;;;;:::i;:::-;28728:7;28708:216;28762:31;28796:17;;;:11;:17;;;;;;;;;28762:51;;;;;;;;;-1:-1:-1;;;;;28762:51:0;;;;;-1:-1:-1;;;28762:51:0;;;;;;;;;;;;28832:28;28828:85;;28888:9;-1:-1:-1;28881:16:0;;-1:-1:-1;28881:16:0;28828:85;-1:-1:-1;28739:6:0;;;;:::i;:::-;;;;28708:216;;33186:104;33255:27;33265:2;33269:8;33255:27;;;;;;;;;;;;:9;:27::i;3299:191::-;3392:6;;;-1:-1:-1;;;;;3409:17:0;;;-1:-1:-1;;;;;;3409:17:0;;;;;;;3442:40;;3392:6;;;3409:17;3392:6;;3442:40;;3373:16;;3442:40;3299:191;;:::o;38007:985::-;38162:4;38183:15;:2;-1:-1:-1;;;;;38183:13:0;;:15::i;:::-;38179:806;;;38252:2;-1:-1:-1;;;;;38236:36:0;;38295:12;:10;:12::i;:::-;38330:4;38357:7;38387:5;38236:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38236:175:0;;;;;;;;-1:-1:-1;;38236:175:0;;;;;;;;;;;;:::i;:::-;;;38215:715;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38598:13:0;;38594:321;;38641:109;;-1:-1:-1;;;38641:109:0;;;;;;;:::i;38594:321::-;38865:6;38859:13;38850:6;38846:2;38842:15;38835:38;38215:715;-1:-1:-1;;;;;;38475:55:0;-1:-1:-1;;;38475:55:0;;-1:-1:-1;38468:62:0;;38179:806;-1:-1:-1;38969:4:0;38007:985;;;;;;:::o;3839:723::-;3895:13;4116:10;4112:53;;-1:-1:-1;4143:10:0;;;;;;;;;;;;-1:-1:-1;;;4143:10:0;;;;;;4112:53;4190:5;4175:12;4231:78;4238:9;;4231:78;;4264:8;;;;:::i;:::-;;-1:-1:-1;4287:10:0;;-1:-1:-1;4295:2:0;4287:10;;:::i;:::-;;;4231:78;;;4319:19;4351:6;4341:17;;;;;;-1:-1:-1;;;4341:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4341:17:0;;4319:39;;4369:154;4376:10;;4369:154;;4403:11;4413:1;4403:11;;:::i;:::-;;-1:-1:-1;4472:10:0;4480:2;4472:5;:10;:::i;:::-;4459:24;;:2;:24;:::i;:::-;4446:39;;4429:6;4436;4429:14;;;;;;-1:-1:-1;;;4429:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;4429:56:0;;;;;;;;-1:-1:-1;4500:11:0;4509:2;4500:11;;:::i;:::-;;;4369:154;;31695:214;-1:-1:-1;;;;;31866:25:0;;;31837:4;31866:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31695:214::o;33567:1389::-;33690:20;33713:12;-1:-1:-1;;;;;33744:16:0;;33736:62;;;;-1:-1:-1;;;33736:62:0;;;;;;;:::i;:::-;33943:21;33951:12;33943:7;:21::i;:::-;33942:22;33934:64;;;;-1:-1:-1;;;33934:64:0;;;;;;;:::i;:::-;34028:1;34017:8;:12;34009:60;;;;-1:-1:-1;;;34009:60:0;;;;;;;:::i;:::-;34082:61;34112:1;34116:2;34120:12;34134:8;34082:21;:61::i;:::-;-1:-1:-1;;;;;34189:16:0;;34156:30;34189:16;;;:12;:16;;;;;;;;;34156:49;;;;;;;;;-1:-1:-1;;;;;34156:49:0;;;;;-1:-1:-1;;;34156:49:0;;;;;;;;;;;34235:135;;;;;;;;34261:19;;34156:49;;34235:135;;;34261:39;;34291:8;;34261:39;:::i;:::-;-1:-1:-1;;;;;34235:135:0;;;;;34350:8;34315:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;34235:135:0;;;;;;-1:-1:-1;;;;;34216:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;;;-1:-1:-1;;;34216:154:0;;;;-1:-1:-1;;;;;;34216:154:0;;;;;;;;;;;;;;;;;34409:43;;;;;;;;;;;34435:15;34409:43;;;;;;;;34381:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;34381:71:0;-1:-1:-1;;;;34381:71:0;;;;-1:-1:-1;;;;;;34381:71:0;;;;;;;;;;;;;;;34393:12;;34513:325;34537:8;34533:1;:12;34513:325;;;34572:38;;34597:12;;-1:-1:-1;;;;;34572:38:0;;;34589:1;;34572:38;;34589:1;;34572:38;34651:59;34682:1;34686:2;34690:12;34704:5;34651:22;:59::i;:::-;34625:172;;;;-1:-1:-1;;;34625:172:0;;;;;;;:::i;:::-;34812:14;;;;:::i;:::-;;;;34547:3;;;;;:::i;:::-;;;;34513:325;;;-1:-1:-1;34850:12:0;:27;;;34888:60;;34921:2;34925:12;34939:8;34888:20;:60::i;15185:387::-;15508:20;15556:8;;;15185:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:162::-;693:20;;749:13;;742:21;732:32;;722:2;;778:1;775;768:12;793:259;;905:2;893:9;884:7;880:23;876:32;873:2;;;926:6;918;911:22;873:2;970:9;957:23;989:33;1016:5;989:33;:::i;:::-;1041:5;863:189;-1:-1:-1;;;863:189:1:o;1057:402::-;;;1186:2;1174:9;1165:7;1161:23;1157:32;1154:2;;;1207:6;1199;1192:22;1154:2;1251:9;1238:23;1270:33;1297:5;1270:33;:::i;:::-;1322:5;-1:-1:-1;1379:2:1;1364:18;;1351:32;1392:35;1351:32;1392:35;:::i;:::-;1446:7;1436:17;;;1144:315;;;;;:::o;1464:470::-;;;;1610:2;1598:9;1589:7;1585:23;1581:32;1578:2;;;1631:6;1623;1616:22;1578:2;1675:9;1662:23;1694:33;1721:5;1694:33;:::i;:::-;1746:5;-1:-1:-1;1803:2:1;1788:18;;1775:32;1816:35;1775:32;1816:35;:::i;:::-;1568:366;;1870:7;;-1:-1:-1;;;1924:2:1;1909:18;;;;1896:32;;1568:366::o;1939:830::-;;;;;2111:3;2099:9;2090:7;2086:23;2082:33;2079:2;;;2133:6;2125;2118:22;2079:2;2177:9;2164:23;2196:33;2223:5;2196:33;:::i;:::-;2248:5;-1:-1:-1;2305:2:1;2290:18;;2277:32;2318:35;2277:32;2318:35;:::i;:::-;2372:7;-1:-1:-1;2426:2:1;2411:18;;2398:32;;-1:-1:-1;2481:2:1;2466:18;;2453:32;2508:18;2497:30;;2494:2;;;2545:6;2537;2530:22;2494:2;2573:22;;2626:4;2618:13;;2614:27;-1:-1:-1;2604:2:1;;2660:6;2652;2645:22;2604:2;2688:75;2755:7;2750:2;2737:16;2732:2;2728;2724:11;2688:75;:::i;:::-;2678:85;;;2069:700;;;;;;;:::o;2774:329::-;;;2900:2;2888:9;2879:7;2875:23;2871:32;2868:2;;;2921:6;2913;2906:22;2868:2;2965:9;2952:23;2984:33;3011:5;2984:33;:::i;:::-;3036:5;-1:-1:-1;3060:37:1;3093:2;3078:18;;3060:37;:::i;:::-;3050:47;;2858:245;;;;;:::o;3108:327::-;;;3237:2;3225:9;3216:7;3212:23;3208:32;3205:2;;;3258:6;3250;3243:22;3205:2;3302:9;3289:23;3321:33;3348:5;3321:33;:::i;:::-;3373:5;3425:2;3410:18;;;;3397:32;;-1:-1:-1;;;3195:240:1:o;3440:192::-;;3549:2;3537:9;3528:7;3524:23;3520:32;3517:2;;;3570:6;3562;3555:22;3517:2;3598:28;3616:9;3598:28;:::i;3637:257::-;;3748:2;3736:9;3727:7;3723:23;3719:32;3716:2;;;3769:6;3761;3754:22;3716:2;3813:9;3800:23;3832:32;3858:5;3832:32;:::i;3899:261::-;;4021:2;4009:9;4000:7;3996:23;3992:32;3989:2;;;4042:6;4034;4027:22;3989:2;4079:9;4073:16;4098:32;4124:5;4098:32;:::i;4165:292::-;;4317:2;4305:9;4296:7;4292:23;4288:32;4285:2;;;4338:6;4330;4323:22;4285:2;4375:9;4369:16;4394:33;4421:5;4394:33;:::i;4462:482::-;;4584:2;4572:9;4563:7;4559:23;4555:32;4552:2;;;4605:6;4597;4590:22;4552:2;4650:9;4637:23;4683:18;4675:6;4672:30;4669:2;;;4720:6;4712;4705:22;4669:2;4748:22;;4801:4;4793:13;;4789:27;-1:-1:-1;4779:2:1;;4835:6;4827;4820:22;4779:2;4863:75;4930:7;4925:2;4912:16;4907:2;4903;4899:11;4863:75;:::i;4949:190::-;;5061:2;5049:9;5040:7;5036:23;5032:32;5029:2;;;5082:6;5074;5067:22;5029:2;-1:-1:-1;5110:23:1;;5019:120;-1:-1:-1;5019:120:1:o;5144:259::-;;5225:5;5219:12;5252:6;5247:3;5240:19;5268:63;5324:6;5317:4;5312:3;5308:14;5301:4;5294:5;5290:16;5268:63;:::i;:::-;5385:2;5364:15;-1:-1:-1;;5360:29:1;5351:39;;;;5392:4;5347:50;;5195:208;-1:-1:-1;;5195:208:1:o;5408:187::-;;5490:5;5484:12;5505:52;5550:6;5545:3;5538:4;5531:5;5527:16;5505:52;:::i;:::-;5573:16;;;;;5460:135;-1:-1:-1;;5460:135:1:o;5600:1258::-;5882:13;;5600:1258;;;;5955:1;5940:17;;5976:1;6012:18;;;;6039:2;;6093:4;6085:6;6081:17;6071:27;;6039:2;6119;6167;6159:6;6156:14;6136:18;6133:38;6130:2;;;-1:-1:-1;;;6194:33:1;;6250:4;6247:1;6240:15;6280:4;6201:3;6268:17;6130:2;6311:18;6338:104;;;;6456:1;6451:324;;;;6304:471;;6338:104;-1:-1:-1;;6371:24:1;;6359:37;;6416:16;;;;-1:-1:-1;6338:104:1;;6451:324;6487:39;6519:6;6487:39;:::i;:::-;6548:3;6564:165;6578:6;6575:1;6572:13;6564:165;;;6656:14;;6643:11;;;6636:35;6699:16;;;;6593:10;;6564:165;;;6568:3;;6758:6;6753:3;6749:16;6742:23;;6304:471;;;;;;;6791:61;6819:32;6847:3;6839:6;6819:32;:::i;:::-;6811:6;6791:61;:::i;:::-;6784:68;5832:1026;-1:-1:-1;;;;;;5832:1026:1:o;6863:205::-;7063:3;7054:14::o;7073:203::-;-1:-1:-1;;;;;7237:32:1;;;;7219:51;;7207:2;7192:18;;7174:102::o;7281:490::-;-1:-1:-1;;;;;7550:15:1;;;7532:34;;7602:15;;7597:2;7582:18;;7575:43;7649:2;7634:18;;7627:34;;;7697:3;7692:2;7677:18;;7670:31;;;7281:490;;7718:47;;7745:19;;7737:6;7718:47;:::i;7776:187::-;7941:14;;7934:22;7916:41;;7904:2;7889:18;;7871:92::o;7968:221::-;;8117:2;8106:9;8099:21;8137:46;8179:2;8168:9;8164:18;8156:6;8137:46;:::i;8194:398::-;8396:2;8378:21;;;8435:2;8415:18;;;8408:30;8474:34;8469:2;8454:18;;8447:62;-1:-1:-1;;;8540:2:1;8525:18;;8518:32;8582:3;8567:19;;8368:224::o;8597:329::-;8799:2;8781:21;;;8838:1;8818:18;;;8811:29;-1:-1:-1;;;8871:2:1;8856:18;;8849:36;8917:2;8902:18;;8771:155::o;8931:402::-;9133:2;9115:21;;;9172:2;9152:18;;;9145:30;9211:34;9206:2;9191:18;;9184:62;-1:-1:-1;;;9277:2:1;9262:18;;9255:36;9323:3;9308:19;;9105:228::o;9338:341::-;9540:2;9522:21;;;9579:2;9559:18;;;9552:30;-1:-1:-1;;;9613:2:1;9598:18;;9591:47;9670:2;9655:18;;9512:167::o;9684:406::-;9886:2;9868:21;;;9925:2;9905:18;;;9898:30;9964:34;9959:2;9944:18;;9937:62;-1:-1:-1;;;10030:2:1;10015:18;;10008:40;10080:3;10065:19;;9858:232::o;10095:399::-;10297:2;10279:21;;;10336:2;10316:18;;;10309:30;10375:34;10370:2;10355:18;;10348:62;-1:-1:-1;;;10441:2:1;10426:18;;10419:33;10484:3;10469:19;;10269:225::o;10499:401::-;10701:2;10683:21;;;10740:2;10720:18;;;10713:30;10779:34;10774:2;10759:18;;10752:62;-1:-1:-1;;;10845:2:1;10830:18;;10823:35;10890:3;10875:19;;10673:227::o;10905:346::-;11107:2;11089:21;;;11146:2;11126:18;;;11119:30;-1:-1:-1;;;11180:2:1;11165:18;;11158:52;11242:2;11227:18;;11079:172::o;11256:421::-;11458:2;11440:21;;;11497:2;11477:18;;;11470:30;11536:34;11531:2;11516:18;;11509:62;11607:27;11602:2;11587:18;;11580:55;11667:3;11652:19;;11430:247::o;11682:342::-;11884:2;11866:21;;;11923:2;11903:18;;;11896:30;-1:-1:-1;;;11957:2:1;11942:18;;11935:48;12015:2;12000:18;;11856:168::o;12029:407::-;12231:2;12213:21;;;12270:2;12250:18;;;12243:30;12309:34;12304:2;12289:18;;12282:62;-1:-1:-1;;;12375:2:1;12360:18;;12353:41;12426:3;12411:19;;12203:233::o;12441:345::-;12643:2;12625:21;;;12682:2;12662:18;;;12655:30;-1:-1:-1;;;12716:2:1;12701:18;;12694:51;12777:2;12762:18;;12615:171::o;12791:402::-;12993:2;12975:21;;;13032:2;13012:18;;;13005:30;13071:34;13066:2;13051:18;;13044:62;-1:-1:-1;;;13137:2:1;13122:18;;13115:36;13183:3;13168:19;;12965:228::o;13198:356::-;13400:2;13382:21;;;13419:18;;;13412:30;13478:34;13473:2;13458:18;;13451:62;13545:2;13530:18;;13372:182::o;13559:350::-;13761:2;13743:21;;;13800:2;13780:18;;;13773:30;13839:28;13834:2;13819:18;;13812:56;13900:2;13885:18;;13733:176::o;13914:414::-;14116:2;14098:21;;;14155:2;14135:18;;;14128:30;14194:34;14189:2;14174:18;;14167:62;-1:-1:-1;;;14260:2:1;14245:18;;14238:48;14318:3;14303:19;;14088:240::o;14333:346::-;14535:2;14517:21;;;14574:2;14554:18;;;14547:30;-1:-1:-1;;;14608:2:1;14593:18;;14586:52;14670:2;14655:18;;14507:172::o;14684:346::-;14886:2;14868:21;;;14925:2;14905:18;;;14898:30;-1:-1:-1;;;14959:2:1;14944:18;;14937:52;15021:2;15006:18;;14858:172::o;15035:398::-;15237:2;15219:21;;;15276:2;15256:18;;;15249:30;15315:34;15310:2;15295:18;;15288:62;-1:-1:-1;;;15381:2:1;15366:18;;15359:32;15423:3;15408:19;;15209:224::o;15438:399::-;15640:2;15622:21;;;15679:2;15659:18;;;15652:30;15718:34;15713:2;15698:18;;15691:62;-1:-1:-1;;;15784:2:1;15769:18;;15762:33;15827:3;15812:19;;15612:225::o;15842:415::-;16044:2;16026:21;;;16083:2;16063:18;;;16056:30;16122:34;16117:2;16102:18;;16095:62;-1:-1:-1;;;16188:2:1;16173:18;;16166:49;16247:3;16232:19;;16016:241::o;16262:353::-;16464:2;16446:21;;;16503:2;16483:18;;;16476:30;16542:31;16537:2;16522:18;;16515:59;16606:2;16591:18;;16436:179::o;16620:397::-;16822:2;16804:21;;;16861:2;16841:18;;;16834:30;16900:34;16895:2;16880:18;;16873:62;-1:-1:-1;;;16966:2:1;16951:18;;16944:31;17007:3;16992:19;;16794:223::o;17022:338::-;17224:2;17206:21;;;17263:2;17243:18;;;17236:30;-1:-1:-1;;;17297:2:1;17282:18;;17275:44;17351:2;17336:18;;17196:164::o;17365:344::-;17567:2;17549:21;;;17606:2;17586:18;;;17579:30;-1:-1:-1;;;17640:2:1;17625:18;;17618:50;17700:2;17685:18;;17539:170::o;17714:410::-;17916:2;17898:21;;;17955:2;17935:18;;;17928:30;17994:34;17989:2;17974:18;;17967:62;-1:-1:-1;;;18060:2:1;18045:18;;18038:44;18114:3;18099:19;;17888:236::o;18545:409::-;18747:2;18729:21;;;18786:2;18766:18;;;18759:30;18825:34;18820:2;18805:18;;18798:62;-1:-1:-1;;;18891:2:1;18876:18;;18869:43;18944:3;18929:19;;18719:235::o;18959:177::-;19105:25;;;19093:2;19078:18;;19060:76::o;19141:129::-;;19209:17;;;19259:4;19243:21;;;19199:71::o;19275:253::-;;-1:-1:-1;;;;;19404:2:1;19401:1;19397:10;19434:2;19431:1;19427:10;19465:3;19461:2;19457:12;19452:3;19449:21;19446:2;;;19473:18;;:::i;:::-;19509:13;;19323:205;-1:-1:-1;;;;19323:205:1:o;19533:128::-;;19604:1;19600:6;19597:1;19594:13;19591:2;;;19610:18;;:::i;:::-;-1:-1:-1;19646:9:1;;19581:80::o;19666:120::-;;19732:1;19722:2;;19737:18;;:::i;:::-;-1:-1:-1;19771:9:1;;19712:74::o;19791:168::-;;19897:1;19893;19889:6;19885:14;19882:1;19879:21;19874:1;19867:9;19860:17;19856:45;19853:2;;;19904:18;;:::i;:::-;-1:-1:-1;19944:9:1;;19843:116::o;19964:125::-;;20032:1;20029;20026:8;20023:2;;;20037:18;;:::i;:::-;-1:-1:-1;20074:9:1;;20013:76::o;20094:258::-;20166:1;20176:113;20190:6;20187:1;20184:13;20176:113;;;20266:11;;;20260:18;20247:11;;;20240:39;20212:2;20205:10;20176:113;;;20307:6;20304:1;20301:13;20298:2;;;-1:-1:-1;;20342:1:1;20324:16;;20317:27;20147:205::o;20357:136::-;;20424:5;20414:2;;20433:18;;:::i;:::-;-1:-1:-1;;;20469:18:1;;20404:89::o;20498:380::-;20583:1;20573:12;;20630:1;20620:12;;;20641:2;;20695:4;20687:6;20683:17;20673:27;;20641:2;20748;20740:6;20737:14;20717:18;20714:38;20711:2;;;20794:10;20789:3;20785:20;20782:1;20775:31;20829:4;20826:1;20819:15;20857:4;20854:1;20847:15;20711:2;;20553:325;;;:::o;20883:135::-;;-1:-1:-1;;20943:17:1;;20940:2;;;20963:18;;:::i;:::-;-1:-1:-1;21010:1:1;20999:13;;20930:88::o;21023:112::-;;21081:1;21071:2;;21086:18;;:::i;:::-;-1:-1:-1;21120:9:1;;21061:74::o;21140:127::-;21201:10;21196:3;21192:20;21189:1;21182:31;21232:4;21229:1;21222:15;21256:4;21253:1;21246:15;21272:127;21333:10;21328:3;21324:20;21321:1;21314:31;21364:4;21361:1;21354:15;21388:4;21385:1;21378:15;21404:127;21465:10;21460:3;21456:20;21453:1;21446:31;21496:4;21493:1;21486:15;21520:4;21517:1;21510:15;21536:133;-1:-1:-1;;;;;21613:31:1;;21603:42;;21593:2;;21659:1;21656;21649:12;21674:133;-1:-1:-1;;;;;;21750:32:1;;21740:43;;21730:2;;21797:1;21794;21787:12

Swarm Source

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