ETH Price: $3,107.96 (+1.51%)
Gas: 4 Gwei

Token

Bored Ape Dojo Club (BADC)
 

Overview

Max Total Supply

2,439 BADC

Holders

605

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
zoopa.eth
Balance
1 BADC
0x98fec861d4ec4af35d5a22f4590de3d3df650572
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Bored Ape Dojo Club is a collection of 10,000 exclusive NFT collectibles that will live on the Ethereum Blockchain. The traits are programmatically assigned but manually drawn giving each artwork a distinct identity and lending added value to the Bored Ape Dojo Club community....

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BADC

Compiler Version
v0.8.7+commit.e28d00a7

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-29
*/

// SPDX-License-Identifier: GPL-3.0
// File: @openzeppelin/contracts/utils/Strings.sol

pragma solidity ^0.8.0;


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

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

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

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

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

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

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



/**
 * @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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


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


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


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



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



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



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





contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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;
    
    
    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 ||
            super.supportsInterface(interfaceId);
    }

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

    /**
     * @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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: 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 virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), 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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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

abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from,address to, uint256 tokenId) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } 
        else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } 
        else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

contract BADC is ERC721Enumerable, Ownable {
    using Strings for uint256;

    //baseURI that is established
    string private _currentBaseURI;
    //unrevealed URI that is established
    string public unrevealedURI;

    //accumulate the number of tokens that have been minted
    uint256 public numberOfTokens;
    
    //limit the tokens that can be minted
    uint256 public maxTokens;
    
    //stores the amount of mints each address has had
    mapping(address => uint) private mintsPerAddress;    
    
    //price to pay for each nft
    uint256 private mintCost_ = 0.1 ether;
    
    constructor() ERC721("Bored Ape Dojo Club", "BADC") {
        //this uri will only be used once revealed is on
        unrevealedURI = "ipfs://9b2e3t4t5e6r6l7u8c9k9n0e2x2t2t3i3m4e5/";
        //start off with zero tokens and max in total collection will be 9324
        numberOfTokens = 0;
        maxTokens = 10000;
        
    }
    
    //this uri will only be used once revealed is on
    function setBaseURI(string memory baseURI) external onlyOwner {
        _currentBaseURI = baseURI;
    }

    function setMintCost(uint256 _newCost) external onlyOwner {
        mintCost_ = _newCost;
    }

    //function to see the current baseURI
    function _baseURI() internal view override returns (string memory) {
        return _currentBaseURI;
    }
    
    //tokens are numbered from 1 to 10
    function tokenId() internal view returns(uint256) {
        return numberOfTokens + 1;
    }
    
    //minting a new NFT
    function mint(uint number) payable public {
        require(numberOfTokens + number <= maxTokens, 'Max Number of Tokens reached!');
        require(msg.value >= mintCost_ * number, 'Insufficient Funds');
        
        for (uint256 i = 0; i < number; i++) {
            uint256 tid = tokenId();
            _safeMint(msg.sender, tid);
            mintsPerAddress[msg.sender] += 1;
            numberOfTokens += 1;
        }
    }
    
    //reserved NFTs for creator
    function reservedMint(uint256 number, address recipient) public onlyOwner {
        require(numberOfTokens+ number <= maxTokens, 'No more NFTs to mint!');
        for (uint256 i = 0; i < number; i++) {
            _safeMint(recipient, tokenId());
            mintsPerAddress[recipient] += 1;
            numberOfTokens += 1;
        }
    }

    
    //sending mint fees to owner 
    function withdraw() public onlyOwner {
        address payable owner_ = payable(owner());
        (bool success, ) = owner_.call{value: address(this).balance}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }
    
    function mintCost() public view returns(uint256) {
        return mintCost_;
    }

    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(), '.json')) : "";
        
    }
   
}

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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"reservedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setMintCost","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":"unrevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405267016345785d8a00006010553480156200001d57600080fd5b50604080518082018252601381527f426f7265642041706520446f6a6f20436c7562000000000000000000000000006020808301918252835180850190945260048452634241444360e01b9084015281519192916200007f916000916200014a565b508051620000959060019060208401906200014a565b505050620000b2620000ac620000f460201b60201c565b620000f8565b6040518060600160405280602d8152602001620023c8602d91398051620000e291600c916020909101906200014a565b506000600d55612710600e556200022d565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015890620001f0565b90600052602060002090601f0160209004810192826200017c5760008555620001c7565b82601f106200019757805160ff1916838001178555620001c7565b82800160010185558215620001c7579182015b82811115620001c7578251825591602001919060010190620001aa565b50620001d5929150620001d9565b5090565b5b80821115620001d55760008155600101620001da565b600181811c908216806200020557607f821691505b602082108114156200022757634e487b7160e01b600052602260045260246000fd5b50919050565b61218b806200023d6000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063b88d4fde1161008a578063e831574211610064578063e8315742146104a6578063e985e9c5146104bc578063f2fde38b14610505578063f9f16ef21461052557600080fd5b8063b88d4fde14610451578063bdb4b84814610471578063c87b56dd1461048657600080fd5b80638da5cb5b116100c65780638da5cb5b146103eb57806395d89b4114610409578063a0712d681461041e578063a22cb4651461043157600080fd5b806370a0823114610396578063715018a6146103b65780638545f4ea146103cb57600080fd5b80632f745c59116101595780634f6ccce7116101335780634f6ccce71461032157806355f804b3146103415780636352211e146103615780637035bf181461038157600080fd5b80632f745c59146102cc5780633ccfd60b146102ec57806342842e0e1461030157600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d57806318df64031461028c57806323b872dd146102ac57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611d87565b61053b565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610566565b6040516101e89190611eee565b34801561021f57600080fd5b5061023361022e366004611e0a565b6105f8565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611d5d565b610692565b005b34801561027957600080fd5b506008545b6040519081526020016101e8565b34801561029857600080fd5b5061026b6102a7366004611e23565b6107a8565b3480156102b857600080fd5b5061026b6102c7366004611c69565b6108a0565b3480156102d857600080fd5b5061027e6102e7366004611d5d565b6108d1565b3480156102f857600080fd5b5061026b610967565b34801561030d57600080fd5b5061026b61031c366004611c69565b610a74565b34801561032d57600080fd5b5061027e61033c366004611e0a565b610a8f565b34801561034d57600080fd5b5061026b61035c366004611dc1565b610b22565b34801561036d57600080fd5b5061023361037c366004611e0a565b610b5f565b34801561038d57600080fd5b50610206610bd6565b3480156103a257600080fd5b5061027e6103b1366004611c1b565b610c64565b3480156103c257600080fd5b5061026b610ceb565b3480156103d757600080fd5b5061026b6103e6366004611e0a565b610d21565b3480156103f757600080fd5b50600a546001600160a01b0316610233565b34801561041557600080fd5b50610206610d50565b61026b61042c366004611e0a565b610d5f565b34801561043d57600080fd5b5061026b61044c366004611d21565b610e85565b34801561045d57600080fd5b5061026b61046c366004611ca5565b610f4a565b34801561047d57600080fd5b5060105461027e565b34801561049257600080fd5b506102066104a1366004611e0a565b610f82565b3480156104b257600080fd5b5061027e600e5481565b3480156104c857600080fd5b506101dc6104d7366004611c36565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561051157600080fd5b5061026b610520366004611c1b565b61105d565b34801561053157600080fd5b5061027e600d5481565b60006001600160e01b0319821663780e9d6360e01b14806105605750610560826110f8565b92915050565b60606000805461057590612067565b80601f01602080910402602001604051908101604052809291908181526020018280546105a190612067565b80156105ee5780601f106105c3576101008083540402835291602001916105ee565b820191906000526020600020905b8154815290600101906020018083116105d157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106765760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061069d82610b5f565b9050806001600160a01b0316836001600160a01b0316141561070b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161066d565b336001600160a01b0382161480610727575061072781336104d7565b6107995760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161066d565b6107a38383611148565b505050565b600a546001600160a01b031633146107d25760405162461bcd60e51b815260040161066d90611f53565b600e5482600d546107e39190611fd9565b11156108295760405162461bcd60e51b81526020600482015260156024820152744e6f206d6f7265204e46547320746f206d696e742160581b604482015260640161066d565b60005b828110156107a357610845826108406111b6565b6111cc565b6001600160a01b0382166000908152600f6020526040812080546001929061086e908490611fd9565b925050819055506001600d60008282546108889190611fd9565b90915550819050610898816120a2565b91505061082c565b6108aa33826111e6565b6108c65760405162461bcd60e51b815260040161066d90611f88565b6107a38383836112dd565b60006108dc83610c64565b821061093e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161066d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109915760405162461bcd60e51b815260040161066d90611f53565b60006109a5600a546001600160a01b031690565b90506000816001600160a01b03164760405160006040518083038185875af1925050503d80600081146109f4576040519150601f19603f3d011682016040523d82523d6000602084013e6109f9565b606091505b5050905080610a705760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161066d565b5050565b6107a383838360405180602001604052806000815250610f4a565b6000610a9a60085490565b8210610afd5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161066d565b60088281548110610b1057610b10612113565b90600052602060002001549050919050565b600a546001600160a01b03163314610b4c5760405162461bcd60e51b815260040161066d90611f53565b8051610a7090600b906020840190611af0565b6000818152600260205260408120546001600160a01b0316806105605760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161066d565b600c8054610be390612067565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0f90612067565b8015610c5c5780601f10610c3157610100808354040283529160200191610c5c565b820191906000526020600020905b815481529060010190602001808311610c3f57829003601f168201915b505050505081565b60006001600160a01b038216610ccf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161066d565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d155760405162461bcd60e51b815260040161066d90611f53565b610d1f6000611488565b565b600a546001600160a01b03163314610d4b5760405162461bcd60e51b815260040161066d90611f53565b601055565b60606001805461057590612067565b600e5481600d54610d709190611fd9565b1115610dbe5760405162461bcd60e51b815260206004820152601d60248201527f4d6178204e756d626572206f6620546f6b656e73207265616368656421000000604482015260640161066d565b80601054610dcc9190612005565b341015610e105760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b604482015260640161066d565b60005b81811015610a70576000610e256111b6565b9050610e3133826111cc565b336000908152600f60205260408120805460019290610e51908490611fd9565b925050819055506001600d6000828254610e6b9190611fd9565b90915550829150610e7d9050816120a2565b915050610e13565b6001600160a01b038216331415610ede5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161066d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f5433836111e6565b610f705760405162461bcd60e51b815260040161066d90611f88565b610f7c848484846114da565b50505050565b6000818152600260205260409020546060906001600160a01b03166110015760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161066d565b600061100b61150d565b9050600081511161102b5760405180602001604052806000815250611056565b806110358461151c565b604051602001611046929190611e72565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146110875760405162461bcd60e51b815260040161066d90611f53565b6001600160a01b0381166110ec5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161066d565b6110f581611488565b50565b60006001600160e01b031982166380ac58cd60e01b148061112957506001600160e01b03198216635b5e139f60e01b145b8061056057506301ffc9a760e01b6001600160e01b0319831614610560565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061117d82610b5f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000600d5460016111c79190611fd9565b905090565b610a7082826040518060200160405280600081525061161a565b6000818152600260205260408120546001600160a01b031661125f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161066d565b600061126a83610b5f565b9050806001600160a01b0316846001600160a01b031614806112a55750836001600160a01b031661129a846105f8565b6001600160a01b0316145b806112d557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112f082610b5f565b6001600160a01b0316146113585760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161066d565b6001600160a01b0382166113ba5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161066d565b6113c583838361164d565b6113d0600082611148565b6001600160a01b03831660009081526003602052604081208054600192906113f9908490612024565b90915550506001600160a01b0382166000908152600360205260408120805460019290611427908490611fd9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6114e58484846112dd565b6114f184848484611705565b610f7c5760405162461bcd60e51b815260040161066d90611f01565b6060600b805461057590612067565b6060816115405750506040805180820190915260018152600360fc1b602082015290565b8160005b811561156a5780611554816120a2565b91506115639050600a83611ff1565b9150611544565b60008167ffffffffffffffff81111561158557611585612129565b6040519080825280601f01601f1916602001820160405280156115af576020820181803683370190505b5090505b84156112d5576115c4600183612024565b91506115d1600a866120bd565b6115dc906030611fd9565b60f81b8183815181106115f1576115f1612113565b60200101906001600160f81b031916908160001a905350611613600a86611ff1565b94506115b3565b6116248383611812565b6116316000848484611705565b6107a35760405162461bcd60e51b815260040161066d90611f01565b6001600160a01b0383166116a8576116a381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6116cb565b816001600160a01b0316836001600160a01b0316146116cb576116cb8382611960565b6001600160a01b0382166116e2576107a3816119fd565b826001600160a01b0316826001600160a01b0316146107a3576107a38282611aac565b60006001600160a01b0384163b1561180757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611749903390899088908890600401611eb1565b602060405180830381600087803b15801561176357600080fd5b505af1925050508015611793575060408051601f3d908101601f1916820190925261179091810190611da4565b60015b6117ed573d8080156117c1576040519150601f19603f3d011682016040523d82523d6000602084013e6117c6565b606091505b5080516117e55760405162461bcd60e51b815260040161066d90611f01565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112d5565b506001949350505050565b6001600160a01b0382166118685760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161066d565b6000818152600260205260409020546001600160a01b0316156118cd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161066d565b6118d96000838361164d565b6001600160a01b0382166000908152600360205260408120805460019290611902908490611fd9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161196d84610c64565b6119779190612024565b6000838152600760205260409020549091508082146119ca576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a0f90600190612024565b60008381526009602052604081205460088054939450909284908110611a3757611a37612113565b906000526020600020015490508060088381548110611a5857611a58612113565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611a9057611a906120fd565b6001900381819060005260206000200160009055905550505050565b6000611ab783610c64565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611afc90612067565b90600052602060002090601f016020900481019282611b1e5760008555611b64565b82601f10611b3757805160ff1916838001178555611b64565b82800160010185558215611b64579182015b82811115611b64578251825591602001919060010190611b49565b50611b70929150611b74565b5090565b5b80821115611b705760008155600101611b75565b600067ffffffffffffffff80841115611ba457611ba4612129565b604051601f8501601f19908116603f01168101908282118183101715611bcc57611bcc612129565b81604052809350858152868686011115611be557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c1657600080fd5b919050565b600060208284031215611c2d57600080fd5b61105682611bff565b60008060408385031215611c4957600080fd5b611c5283611bff565b9150611c6060208401611bff565b90509250929050565b600080600060608486031215611c7e57600080fd5b611c8784611bff565b9250611c9560208501611bff565b9150604084013590509250925092565b60008060008060808587031215611cbb57600080fd5b611cc485611bff565b9350611cd260208601611bff565b925060408501359150606085013567ffffffffffffffff811115611cf557600080fd5b8501601f81018713611d0657600080fd5b611d1587823560208401611b89565b91505092959194509250565b60008060408385031215611d3457600080fd5b611d3d83611bff565b915060208301358015158114611d5257600080fd5b809150509250929050565b60008060408385031215611d7057600080fd5b611d7983611bff565b946020939093013593505050565b600060208284031215611d9957600080fd5b81356110568161213f565b600060208284031215611db657600080fd5b81516110568161213f565b600060208284031215611dd357600080fd5b813567ffffffffffffffff811115611dea57600080fd5b8201601f81018413611dfb57600080fd5b6112d584823560208401611b89565b600060208284031215611e1c57600080fd5b5035919050565b60008060408385031215611e3657600080fd5b82359150611c6060208401611bff565b60008151808452611e5e81602086016020860161203b565b601f01601f19169290920160200192915050565b60008351611e8481846020880161203b565b835190830190611e9881836020880161203b565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ee490830184611e46565b9695505050505050565b6020815260006110566020830184611e46565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611fec57611fec6120d1565b500190565b600082612000576120006120e7565b500490565b600081600019048311821515161561201f5761201f6120d1565b500290565b600082821015612036576120366120d1565b500390565b60005b8381101561205657818101518382015260200161203e565b83811115610f7c5750506000910152565b600181811c9082168061207b57607f821691505b6020821081141561209c57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120b6576120b66120d1565b5060010190565b6000826120cc576120cc6120e7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110f557600080fdfea2646970667358221220d482ba7546f4e553cd0297d5189798b75bbce4dd2e8f1a7a64d51f479614e55764736f6c63430008070033697066733a2f2f396232653374347435653672366c37753863396b396e30653278327432743369336d3465352f

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063b88d4fde1161008a578063e831574211610064578063e8315742146104a6578063e985e9c5146104bc578063f2fde38b14610505578063f9f16ef21461052557600080fd5b8063b88d4fde14610451578063bdb4b84814610471578063c87b56dd1461048657600080fd5b80638da5cb5b116100c65780638da5cb5b146103eb57806395d89b4114610409578063a0712d681461041e578063a22cb4651461043157600080fd5b806370a0823114610396578063715018a6146103b65780638545f4ea146103cb57600080fd5b80632f745c59116101595780634f6ccce7116101335780634f6ccce71461032157806355f804b3146103415780636352211e146103615780637035bf181461038157600080fd5b80632f745c59146102cc5780633ccfd60b146102ec57806342842e0e1461030157600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d57806318df64031461028c57806323b872dd146102ac57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611d87565b61053b565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610566565b6040516101e89190611eee565b34801561021f57600080fd5b5061023361022e366004611e0a565b6105f8565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611d5d565b610692565b005b34801561027957600080fd5b506008545b6040519081526020016101e8565b34801561029857600080fd5b5061026b6102a7366004611e23565b6107a8565b3480156102b857600080fd5b5061026b6102c7366004611c69565b6108a0565b3480156102d857600080fd5b5061027e6102e7366004611d5d565b6108d1565b3480156102f857600080fd5b5061026b610967565b34801561030d57600080fd5b5061026b61031c366004611c69565b610a74565b34801561032d57600080fd5b5061027e61033c366004611e0a565b610a8f565b34801561034d57600080fd5b5061026b61035c366004611dc1565b610b22565b34801561036d57600080fd5b5061023361037c366004611e0a565b610b5f565b34801561038d57600080fd5b50610206610bd6565b3480156103a257600080fd5b5061027e6103b1366004611c1b565b610c64565b3480156103c257600080fd5b5061026b610ceb565b3480156103d757600080fd5b5061026b6103e6366004611e0a565b610d21565b3480156103f757600080fd5b50600a546001600160a01b0316610233565b34801561041557600080fd5b50610206610d50565b61026b61042c366004611e0a565b610d5f565b34801561043d57600080fd5b5061026b61044c366004611d21565b610e85565b34801561045d57600080fd5b5061026b61046c366004611ca5565b610f4a565b34801561047d57600080fd5b5060105461027e565b34801561049257600080fd5b506102066104a1366004611e0a565b610f82565b3480156104b257600080fd5b5061027e600e5481565b3480156104c857600080fd5b506101dc6104d7366004611c36565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561051157600080fd5b5061026b610520366004611c1b565b61105d565b34801561053157600080fd5b5061027e600d5481565b60006001600160e01b0319821663780e9d6360e01b14806105605750610560826110f8565b92915050565b60606000805461057590612067565b80601f01602080910402602001604051908101604052809291908181526020018280546105a190612067565b80156105ee5780601f106105c3576101008083540402835291602001916105ee565b820191906000526020600020905b8154815290600101906020018083116105d157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106765760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061069d82610b5f565b9050806001600160a01b0316836001600160a01b0316141561070b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161066d565b336001600160a01b0382161480610727575061072781336104d7565b6107995760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161066d565b6107a38383611148565b505050565b600a546001600160a01b031633146107d25760405162461bcd60e51b815260040161066d90611f53565b600e5482600d546107e39190611fd9565b11156108295760405162461bcd60e51b81526020600482015260156024820152744e6f206d6f7265204e46547320746f206d696e742160581b604482015260640161066d565b60005b828110156107a357610845826108406111b6565b6111cc565b6001600160a01b0382166000908152600f6020526040812080546001929061086e908490611fd9565b925050819055506001600d60008282546108889190611fd9565b90915550819050610898816120a2565b91505061082c565b6108aa33826111e6565b6108c65760405162461bcd60e51b815260040161066d90611f88565b6107a38383836112dd565b60006108dc83610c64565b821061093e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161066d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109915760405162461bcd60e51b815260040161066d90611f53565b60006109a5600a546001600160a01b031690565b90506000816001600160a01b03164760405160006040518083038185875af1925050503d80600081146109f4576040519150601f19603f3d011682016040523d82523d6000602084013e6109f9565b606091505b5050905080610a705760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161066d565b5050565b6107a383838360405180602001604052806000815250610f4a565b6000610a9a60085490565b8210610afd5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161066d565b60088281548110610b1057610b10612113565b90600052602060002001549050919050565b600a546001600160a01b03163314610b4c5760405162461bcd60e51b815260040161066d90611f53565b8051610a7090600b906020840190611af0565b6000818152600260205260408120546001600160a01b0316806105605760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161066d565b600c8054610be390612067565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0f90612067565b8015610c5c5780601f10610c3157610100808354040283529160200191610c5c565b820191906000526020600020905b815481529060010190602001808311610c3f57829003601f168201915b505050505081565b60006001600160a01b038216610ccf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161066d565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d155760405162461bcd60e51b815260040161066d90611f53565b610d1f6000611488565b565b600a546001600160a01b03163314610d4b5760405162461bcd60e51b815260040161066d90611f53565b601055565b60606001805461057590612067565b600e5481600d54610d709190611fd9565b1115610dbe5760405162461bcd60e51b815260206004820152601d60248201527f4d6178204e756d626572206f6620546f6b656e73207265616368656421000000604482015260640161066d565b80601054610dcc9190612005565b341015610e105760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b604482015260640161066d565b60005b81811015610a70576000610e256111b6565b9050610e3133826111cc565b336000908152600f60205260408120805460019290610e51908490611fd9565b925050819055506001600d6000828254610e6b9190611fd9565b90915550829150610e7d9050816120a2565b915050610e13565b6001600160a01b038216331415610ede5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161066d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f5433836111e6565b610f705760405162461bcd60e51b815260040161066d90611f88565b610f7c848484846114da565b50505050565b6000818152600260205260409020546060906001600160a01b03166110015760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161066d565b600061100b61150d565b9050600081511161102b5760405180602001604052806000815250611056565b806110358461151c565b604051602001611046929190611e72565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146110875760405162461bcd60e51b815260040161066d90611f53565b6001600160a01b0381166110ec5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161066d565b6110f581611488565b50565b60006001600160e01b031982166380ac58cd60e01b148061112957506001600160e01b03198216635b5e139f60e01b145b8061056057506301ffc9a760e01b6001600160e01b0319831614610560565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061117d82610b5f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000600d5460016111c79190611fd9565b905090565b610a7082826040518060200160405280600081525061161a565b6000818152600260205260408120546001600160a01b031661125f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161066d565b600061126a83610b5f565b9050806001600160a01b0316846001600160a01b031614806112a55750836001600160a01b031661129a846105f8565b6001600160a01b0316145b806112d557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112f082610b5f565b6001600160a01b0316146113585760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161066d565b6001600160a01b0382166113ba5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161066d565b6113c583838361164d565b6113d0600082611148565b6001600160a01b03831660009081526003602052604081208054600192906113f9908490612024565b90915550506001600160a01b0382166000908152600360205260408120805460019290611427908490611fd9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6114e58484846112dd565b6114f184848484611705565b610f7c5760405162461bcd60e51b815260040161066d90611f01565b6060600b805461057590612067565b6060816115405750506040805180820190915260018152600360fc1b602082015290565b8160005b811561156a5780611554816120a2565b91506115639050600a83611ff1565b9150611544565b60008167ffffffffffffffff81111561158557611585612129565b6040519080825280601f01601f1916602001820160405280156115af576020820181803683370190505b5090505b84156112d5576115c4600183612024565b91506115d1600a866120bd565b6115dc906030611fd9565b60f81b8183815181106115f1576115f1612113565b60200101906001600160f81b031916908160001a905350611613600a86611ff1565b94506115b3565b6116248383611812565b6116316000848484611705565b6107a35760405162461bcd60e51b815260040161066d90611f01565b6001600160a01b0383166116a8576116a381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6116cb565b816001600160a01b0316836001600160a01b0316146116cb576116cb8382611960565b6001600160a01b0382166116e2576107a3816119fd565b826001600160a01b0316826001600160a01b0316146107a3576107a38282611aac565b60006001600160a01b0384163b1561180757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611749903390899088908890600401611eb1565b602060405180830381600087803b15801561176357600080fd5b505af1925050508015611793575060408051601f3d908101601f1916820190925261179091810190611da4565b60015b6117ed573d8080156117c1576040519150601f19603f3d011682016040523d82523d6000602084013e6117c6565b606091505b5080516117e55760405162461bcd60e51b815260040161066d90611f01565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112d5565b506001949350505050565b6001600160a01b0382166118685760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161066d565b6000818152600260205260409020546001600160a01b0316156118cd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161066d565b6118d96000838361164d565b6001600160a01b0382166000908152600360205260408120805460019290611902908490611fd9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161196d84610c64565b6119779190612024565b6000838152600760205260409020549091508082146119ca576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a0f90600190612024565b60008381526009602052604081205460088054939450909284908110611a3757611a37612113565b906000526020600020015490508060088381548110611a5857611a58612113565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611a9057611a906120fd565b6001900381819060005260206000200160009055905550505050565b6000611ab783610c64565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611afc90612067565b90600052602060002090601f016020900481019282611b1e5760008555611b64565b82601f10611b3757805160ff1916838001178555611b64565b82800160010185558215611b64579182015b82811115611b64578251825591602001919060010190611b49565b50611b70929150611b74565b5090565b5b80821115611b705760008155600101611b75565b600067ffffffffffffffff80841115611ba457611ba4612129565b604051601f8501601f19908116603f01168101908282118183101715611bcc57611bcc612129565b81604052809350858152868686011115611be557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c1657600080fd5b919050565b600060208284031215611c2d57600080fd5b61105682611bff565b60008060408385031215611c4957600080fd5b611c5283611bff565b9150611c6060208401611bff565b90509250929050565b600080600060608486031215611c7e57600080fd5b611c8784611bff565b9250611c9560208501611bff565b9150604084013590509250925092565b60008060008060808587031215611cbb57600080fd5b611cc485611bff565b9350611cd260208601611bff565b925060408501359150606085013567ffffffffffffffff811115611cf557600080fd5b8501601f81018713611d0657600080fd5b611d1587823560208401611b89565b91505092959194509250565b60008060408385031215611d3457600080fd5b611d3d83611bff565b915060208301358015158114611d5257600080fd5b809150509250929050565b60008060408385031215611d7057600080fd5b611d7983611bff565b946020939093013593505050565b600060208284031215611d9957600080fd5b81356110568161213f565b600060208284031215611db657600080fd5b81516110568161213f565b600060208284031215611dd357600080fd5b813567ffffffffffffffff811115611dea57600080fd5b8201601f81018413611dfb57600080fd5b6112d584823560208401611b89565b600060208284031215611e1c57600080fd5b5035919050565b60008060408385031215611e3657600080fd5b82359150611c6060208401611bff565b60008151808452611e5e81602086016020860161203b565b601f01601f19169290920160200192915050565b60008351611e8481846020880161203b565b835190830190611e9881836020880161203b565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ee490830184611e46565b9695505050505050565b6020815260006110566020830184611e46565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611fec57611fec6120d1565b500190565b600082612000576120006120e7565b500490565b600081600019048311821515161561201f5761201f6120d1565b500290565b600082821015612036576120366120d1565b500390565b60005b8381101561205657818101518382015260200161203e565b83811115610f7c5750506000910152565b600181811c9082168061207b57607f821691505b6020821081141561209c57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120b6576120b66120d1565b5060010190565b6000826120cc576120cc6120e7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110f557600080fdfea2646970667358221220d482ba7546f4e553cd0297d5189798b75bbce4dd2e8f1a7a64d51f479614e55764736f6c63430008070033

Deployed Bytecode Sourcemap

41287:3188:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35154:224;;;;;;;;;;-1:-1:-1;35154:224:0;;;;;:::i;:::-;;:::i;:::-;;;6282:14:1;;6275:22;6257:41;;6245:2;6230:18;35154:224:0;;;;;;;;22876:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24191:221::-;;;;;;;;;;-1:-1:-1;24191:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5580:32:1;;;5562:51;;5550:2;5535:18;24191:221:0;5416:203:1;23714:411:0;;;;;;;;;;-1:-1:-1;23714:411:0;;;;;:::i;:::-;;:::i;:::-;;35794:113;;;;;;;;;;-1:-1:-1;35882:10:0;:17;35794:113;;;15368:25:1;;;15356:2;15341:18;35794:113:0;15222:177:1;43350:347:0;;;;;;;;;;-1:-1:-1;43350:347:0;;;;;:::i;:::-;;:::i;25081:339::-;;;;;;;;;;-1:-1:-1;25081:339:0;;;;;:::i;:::-;;:::i;35462:256::-;;;;;;;;;;-1:-1:-1;35462:256:0;;;;;:::i;:::-;;:::i;43746:261::-;;;;;;;;;;;;;:::i;25491:185::-;;;;;;;;;;-1:-1:-1;25491:185:0;;;;;:::i;:::-;;:::i;35984:233::-;;;;;;;;;;-1:-1:-1;35984:233:0;;;;;:::i;:::-;;:::i;42311:106::-;;;;;;;;;;-1:-1:-1;42311:106:0;;;;;:::i;:::-;;:::i;22570:239::-;;;;;;;;;;-1:-1:-1;22570:239:0;;;;;:::i;:::-;;:::i;41485:27::-;;;;;;;;;;;;;:::i;22300:208::-;;;;;;;;;;-1:-1:-1;22300:208:0;;;;;:::i;:::-;;:::i;4478:94::-;;;;;;;;;;;;;:::i;42425:97::-;;;;;;;;;;-1:-1:-1;42425:97:0;;;;;:::i;:::-;;:::i;3827:87::-;;;;;;;;;;-1:-1:-1;3900:6:0;;-1:-1:-1;;;;;3900:6:0;3827:87;;23045:104;;;;;;;;;;;;;:::i;42864:441::-;;;;;;:::i;:::-;;:::i;24484:295::-;;;;;;;;;;-1:-1:-1;24484:295:0;;;;;:::i;:::-;;:::i;25747:328::-;;;;;;;;;;-1:-1:-1;25747:328:0;;;;;:::i;:::-;;:::i;44019:84::-;;;;;;;;;;-1:-1:-1;44086:9:0;;44019:84;;44111:356;;;;;;;;;;-1:-1:-1;44111:356:0;;;;;:::i;:::-;;:::i;41667:24::-;;;;;;;;;;;;;;;;24850:164;;;;;;;;;;-1:-1:-1;24850:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24971:25:0;;;24947:4;24971:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24850:164;4727:192;;;;;;;;;;-1:-1:-1;4727:192:0;;;;;:::i;:::-;;:::i;41582:29::-;;;;;;;;;;;;;;;;35154:224;35256:4;-1:-1:-1;;;;;;35280:50:0;;-1:-1:-1;;;35280:50:0;;:90;;;35334:36;35358:11;35334:23;:36::i;:::-;35273:97;35154:224;-1:-1:-1;;35154:224:0:o;22876:100::-;22930:13;22963:5;22956:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22876:100;:::o;24191:221::-;24267:7;27674:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27674:16:0;24287:73;;;;-1:-1:-1;;;24287:73:0;;12233:2:1;24287:73:0;;;12215:21:1;12272:2;12252:18;;;12245:30;12311:34;12291:18;;;12284:62;-1:-1:-1;;;12362:18:1;;;12355:42;12414:19;;24287:73:0;;;;;;;;;-1:-1:-1;24380:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24380:24:0;;24191:221::o;23714:411::-;23795:13;23811:23;23826:7;23811:14;:23::i;:::-;23795:39;;23859:5;-1:-1:-1;;;;;23853:11:0;:2;-1:-1:-1;;;;;23853:11:0;;;23845:57;;;;-1:-1:-1;;;23845:57:0;;13833:2:1;23845:57:0;;;13815:21:1;13872:2;13852:18;;;13845:30;13911:34;13891:18;;;13884:62;-1:-1:-1;;;13962:18:1;;;13955:31;14003:19;;23845:57:0;13631:397:1;23845:57:0;2779:10;-1:-1:-1;;;;;23937:21:0;;;;:62;;-1:-1:-1;23962:37:0;23979:5;2779:10;24850:164;:::i;23962:37::-;23915:168;;;;-1:-1:-1;;;23915:168:0;;10626:2:1;23915:168:0;;;10608:21:1;10665:2;10645:18;;;10638:30;10704:34;10684:18;;;10677:62;10775:26;10755:18;;;10748:54;10819:19;;23915:168:0;10424:420:1;23915:168:0;24096:21;24105:2;24109:7;24096:8;:21::i;:::-;23784:341;23714:411;;:::o;43350:347::-;3900:6;;-1:-1:-1;;;;;3900:6:0;2779:10;4047:23;4039:68;;;;-1:-1:-1;;;4039:68:0;;;;;;;:::i;:::-;43469:9:::1;;43459:6;43443:14;;:22;;;;:::i;:::-;:35;;43435:69;;;::::0;-1:-1:-1;;;43435:69:0;;10276:2:1;43435:69:0::1;::::0;::::1;10258:21:1::0;10315:2;10295:18;;;10288:30;-1:-1:-1;;;10334:18:1;;;10327:51;10395:18;;43435:69:0::1;10074:345:1::0;43435:69:0::1;43520:9;43515:175;43539:6;43535:1;:10;43515:175;;;43567:31;43577:9;43588;:7;:9::i;:::-;43567;:31::i;:::-;-1:-1:-1::0;;;;;43613:26:0;::::1;;::::0;;;:15:::1;:26;::::0;;;;:31;;43643:1:::1;::::0;43613:26;:31:::1;::::0;43643:1;;43613:31:::1;:::i;:::-;;;;;;;;43677:1;43659:14;;:19;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;43547:3:0;;-1:-1:-1;43547:3:0::1;::::0;::::1;:::i;:::-;;;;43515:175;;25081:339:::0;25276:41;2779:10;25309:7;25276:18;:41::i;:::-;25268:103;;;;-1:-1:-1;;;25268:103:0;;;;;;;:::i;:::-;25384:28;25394:4;25400:2;25404:7;25384:9;:28::i;35462:256::-;35559:7;35595:23;35612:5;35595:16;:23::i;:::-;35587:5;:31;35579:87;;;;-1:-1:-1;;;35579:87:0;;6735:2:1;35579:87:0;;;6717:21:1;6774:2;6754:18;;;6747:30;6813:34;6793:18;;;6786:62;-1:-1:-1;;;6864:18:1;;;6857:41;6915:19;;35579:87:0;6533:407:1;35579:87:0;-1:-1:-1;;;;;;35684:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35462:256::o;43746:261::-;3900:6;;-1:-1:-1;;;;;3900:6:0;2779:10;4047:23;4039:68;;;;-1:-1:-1;;;4039:68:0;;;;;;;:::i;:::-;43794:22:::1;43827:7;3900:6:::0;;-1:-1:-1;;;;;3900:6:0;;3827:87;43827:7:::1;43794:41;;43847:12;43865:6;-1:-1:-1::0;;;;;43865:11:0::1;43884:21;43865:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43846:64;;;43929:7;43921:78;;;::::0;-1:-1:-1;;;43921:78:0;;9436:2:1;43921:78:0::1;::::0;::::1;9418:21:1::0;9475:2;9455:18;;;9448:30;9514:34;9494:18;;;9487:62;9585:28;9565:18;;;9558:56;9631:19;;43921:78:0::1;9234:422:1::0;43921:78:0::1;43783:224;;43746:261::o:0;25491:185::-;25629:39;25646:4;25652:2;25656:7;25629:39;;;;;;;;;;;;:16;:39::i;35984:233::-;36059:7;36095:30;35882:10;:17;;35794:113;36095:30;36087:5;:38;36079:95;;;;-1:-1:-1;;;36079:95:0;;15011:2:1;36079:95:0;;;14993:21:1;15050:2;15030:18;;;15023:30;15089:34;15069:18;;;15062:62;-1:-1:-1;;;15140:18:1;;;15133:42;15192:19;;36079:95:0;14809:408:1;36079:95:0;36192:10;36203:5;36192:17;;;;;;;;:::i;:::-;;;;;;;;;36185:24;;35984:233;;;:::o;42311:106::-;3900:6;;-1:-1:-1;;;;;3900:6:0;2779:10;4047:23;4039:68;;;;-1:-1:-1;;;4039:68:0;;;;;;;:::i;:::-;42384:25;;::::1;::::0;:15:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;22570:239::-:0;22642:7;22678:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22678:16:0;22713:19;22705:73;;;;-1:-1:-1;;;22705:73:0;;11462:2:1;22705:73:0;;;11444:21:1;11501:2;11481:18;;;11474:30;11540:34;11520:18;;;11513:62;-1:-1:-1;;;11591:18:1;;;11584:39;11640:19;;22705:73:0;11260:405:1;41485:27:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22300:208::-;22372:7;-1:-1:-1;;;;;22400:19:0;;22392:74;;;;-1:-1:-1;;;22392:74:0;;11051:2:1;22392:74:0;;;11033:21:1;11090:2;11070:18;;;11063:30;11129:34;11109:18;;;11102:62;-1:-1:-1;;;11180:18:1;;;11173:40;11230:19;;22392:74:0;10849:406:1;22392:74:0;-1:-1:-1;;;;;;22484:16:0;;;;;:9;:16;;;;;;;22300:208::o;4478:94::-;3900:6;;-1:-1:-1;;;;;3900:6:0;2779:10;4047:23;4039:68;;;;-1:-1:-1;;;4039:68:0;;;;;;;:::i;:::-;4543:21:::1;4561:1;4543:9;:21::i;:::-;4478:94::o:0;42425:97::-;3900:6;;-1:-1:-1;;;;;3900:6:0;2779:10;4047:23;4039:68;;;;-1:-1:-1;;;4039:68:0;;;;;;;:::i;:::-;42494:9:::1;:20:::0;42425:97::o;23045:104::-;23101:13;23134:7;23127:14;;;;;:::i;42864:441::-;42952:9;;42942:6;42925:14;;:23;;;;:::i;:::-;:36;;42917:78;;;;-1:-1:-1;;;42917:78:0;;14235:2:1;42917:78:0;;;14217:21:1;14274:2;14254:18;;;14247:30;14313:31;14293:18;;;14286:59;14362:18;;42917:78:0;14033:353:1;42917:78:0;43039:6;43027:9;;:18;;;;:::i;:::-;43014:9;:31;;43006:62;;;;-1:-1:-1;;;43006:62:0;;8330:2:1;43006:62:0;;;8312:21:1;8369:2;8349:18;;;8342:30;-1:-1:-1;;;8388:18:1;;;8381:48;8446:18;;43006:62:0;8128:342:1;43006:62:0;43094:9;43089:209;43113:6;43109:1;:10;43089:209;;;43141:11;43155:9;:7;:9::i;:::-;43141:23;;43179:26;43189:10;43201:3;43179:9;:26::i;:::-;43236:10;43220:27;;;;:15;:27;;;;;:32;;43251:1;;43220:27;:32;;43251:1;;43220:32;:::i;:::-;;;;;;;;43285:1;43267:14;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;43121:3:0;;-1:-1:-1;43121:3:0;;-1:-1:-1;43121:3:0;;:::i;:::-;;;;43089:209;;24484:295;-1:-1:-1;;;;;24587:24:0;;2779:10;24587:24;;24579:62;;;;-1:-1:-1;;;24579:62:0;;9082:2:1;24579:62:0;;;9064:21:1;9121:2;9101:18;;;9094:30;9160:27;9140:18;;;9133:55;9205:18;;24579:62:0;8880:349:1;24579:62:0;2779:10;24654:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24654:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24654:53:0;;;;;;;;;;24723:48;;6257:41:1;;;24654:42:0;;2779:10;24723:48;;6230:18:1;24723:48:0;;;;;;;24484:295;;:::o;25747:328::-;25922:41;2779:10;25955:7;25922:18;:41::i;:::-;25914:103;;;;-1:-1:-1;;;25914:103:0;;;;;;;:::i;:::-;26028:39;26042:4;26048:2;26052:7;26061:5;26028:13;:39::i;:::-;25747:328;;;;:::o;44111:356::-;27650:4;27674:16;;;:7;:16;;;;;;44185:13;;-1:-1:-1;;;;;27674:16:0;44211:77;;;;-1:-1:-1;;;44211:77:0;;13417:2:1;44211:77:0;;;13399:21:1;13456:2;13436:18;;;13429:30;13495:34;13475:18;;;13468:62;-1:-1:-1;;;13546:18:1;;;13539:45;13601:19;;44211:77:0;13215:411:1;44211:77:0;44301:21;44325:10;:8;:10::i;:::-;44301:34;;44377:1;44359:7;44353:21;:25;:96;;;;;;;;;;;;;;;;;44405:7;44414:19;:8;:17;:19::i;:::-;44388:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44353:96;44346:103;44111:356;-1:-1:-1;;;44111:356:0:o;4727:192::-;3900:6;;-1:-1:-1;;;;;3900:6:0;2779:10;4047:23;4039:68;;;;-1:-1:-1;;;4039:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4816:22:0;::::1;4808:73;;;::::0;-1:-1:-1;;;4808:73:0;;7566:2:1;4808:73:0::1;::::0;::::1;7548:21:1::0;7605:2;7585:18;;;7578:30;7644:34;7624:18;;;7617:62;-1:-1:-1;;;7695:18:1;;;7688:36;7741:19;;4808:73:0::1;7364:402:1::0;4808:73:0::1;4892:19;4902:8;4892:9;:19::i;:::-;4727:192:::0;:::o;21931:305::-;22033:4;-1:-1:-1;;;;;;22070:40:0;;-1:-1:-1;;;22070:40:0;;:105;;-1:-1:-1;;;;;;;22127:48:0;;-1:-1:-1;;;22127:48:0;22070:105;:158;;;-1:-1:-1;;;;;;;;;;15548:40:0;;;22192:36;15439:157;31567:174;31642:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31642:29:0;-1:-1:-1;;;;;31642:29:0;;;;;;;;:24;;31696:23;31642:24;31696:14;:23::i;:::-;-1:-1:-1;;;;;31687:46:0;;;;;;;;;;;31567:174;;:::o;42733:94::-;42774:7;42801:14;;42818:1;42801:18;;;;:::i;:::-;42794:25;;42733:94;:::o;28569:110::-;28645:26;28655:2;28659:7;28645:26;;;;;;;;;;;;:9;:26::i;27879:348::-;27972:4;27674:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27674:16:0;27989:73;;;;-1:-1:-1;;;27989:73:0;;9863:2:1;27989:73:0;;;9845:21:1;9902:2;9882:18;;;9875:30;9941:34;9921:18;;;9914:62;-1:-1:-1;;;9992:18:1;;;9985:42;10044:19;;27989:73:0;9661:408:1;27989:73:0;28073:13;28089:23;28104:7;28089:14;:23::i;:::-;28073:39;;28142:5;-1:-1:-1;;;;;28131:16:0;:7;-1:-1:-1;;;;;28131:16:0;;:51;;;;28175:7;-1:-1:-1;;;;;28151:31:0;:20;28163:7;28151:11;:20::i;:::-;-1:-1:-1;;;;;28151:31:0;;28131:51;:87;;;-1:-1:-1;;;;;;24971:25:0;;;24947:4;24971:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28186:32;28123:96;27879:348;-1:-1:-1;;;;27879:348:0:o;30871:578::-;31030:4;-1:-1:-1;;;;;31003:31:0;:23;31018:7;31003:14;:23::i;:::-;-1:-1:-1;;;;;31003:31:0;;30995:85;;;;-1:-1:-1;;;30995:85:0;;13007:2:1;30995:85:0;;;12989:21:1;13046:2;13026:18;;;13019:30;13085:34;13065:18;;;13058:62;-1:-1:-1;;;13136:18:1;;;13129:39;13185:19;;30995:85:0;12805:405:1;30995:85:0;-1:-1:-1;;;;;31099:16:0;;31091:65;;;;-1:-1:-1;;;31091:65:0;;8677:2:1;31091:65:0;;;8659:21:1;8716:2;8696:18;;;8689:30;8755:34;8735:18;;;8728:62;-1:-1:-1;;;8806:18:1;;;8799:34;8850:19;;31091:65:0;8475:400:1;31091:65:0;31169:39;31190:4;31196:2;31200:7;31169:20;:39::i;:::-;31273:29;31290:1;31294:7;31273:8;:29::i;:::-;-1:-1:-1;;;;;31315:15:0;;;;;;:9;:15;;;;;:20;;31334:1;;31315:15;:20;;31334:1;;31315:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31346:13:0;;;;;;:9;:13;;;;;:18;;31363:1;;31346:13;:18;;31363:1;;31346:18;:::i;:::-;;;;-1:-1:-1;;31375:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31375:21:0;-1:-1:-1;;;;;31375:21:0;;;;;;;;;31414:27;;31375:16;;31414:27;;;;;;;30871:578;;;:::o;4927:173::-;5002:6;;;-1:-1:-1;;;;;5019:17:0;;;-1:-1:-1;;;;;;5019:17:0;;;;;;;5052:40;;5002:6;;;5019:17;5002:6;;5052:40;;4983:16;;5052:40;4972:128;4927:173;:::o;26957:315::-;27114:28;27124:4;27130:2;27134:7;27114:9;:28::i;:::-;27161:48;27184:4;27190:2;27194:7;27203:5;27161:22;:48::i;:::-;27153:111;;;;-1:-1:-1;;;27153:111:0;;;;;;;:::i;42573:108::-;42625:13;42658:15;42651:22;;;;;:::i;346:723::-;402:13;623:10;619:53;;-1:-1:-1;;650:10:0;;;;;;;;;;;;-1:-1:-1;;;650:10:0;;;;;346:723::o;619:53::-;697:5;682:12;738:78;745:9;;738:78;;771:8;;;;:::i;:::-;;-1:-1:-1;794:10:0;;-1:-1:-1;802:2:0;794:10;;:::i;:::-;;;738:78;;;826:19;858:6;848:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;848:17:0;;826:39;;876:154;883:10;;876:154;;910:11;920:1;910:11;;:::i;:::-;;-1:-1:-1;979:10:0;987:2;979:5;:10;:::i;:::-;966:24;;:2;:24;:::i;:::-;953:39;;936:6;943;936:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;936:56:0;;;;;;;;-1:-1:-1;1007:11:0;1016:2;1007:11;;:::i;:::-;;;876:154;;28906:321;29036:18;29042:2;29046:7;29036:5;:18::i;:::-;29087:54;29118:1;29122:2;29126:7;29135:5;29087:22;:54::i;:::-;29065:154;;;;-1:-1:-1;;;29065:154:0;;;;;;;:::i;36830:574::-;-1:-1:-1;;;;;37001:18:0;;36997:197;;37036:40;37068:7;38231:10;:17;;38204:24;;;;:15;:24;;;;;:44;;;38259:24;;;;;;;;;;;;38127:164;37036:40;36997:197;;;37116:2;-1:-1:-1;;;;;37108:10:0;:4;-1:-1:-1;;;;;37108:10:0;;37104:90;;37135:47;37168:4;37174:7;37135:32;:47::i;:::-;-1:-1:-1;;;;;37208:16:0;;37204:193;;37241:45;37278:7;37241:36;:45::i;37204:193::-;37324:4;-1:-1:-1;;;;;37318:10:0;:2;-1:-1:-1;;;;;37318:10:0;;37314:83;;37345:40;37373:2;37377:7;37345:27;:40::i;32306:799::-;32461:4;-1:-1:-1;;;;;32482:13:0;;6113:20;6161:8;32478:620;;32518:72;;-1:-1:-1;;;32518:72:0;;-1:-1:-1;;;;;32518:36:0;;;;;:72;;2779:10;;32569:4;;32575:7;;32584:5;;32518:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32518:72:0;;;;;;;;-1:-1:-1;;32518:72:0;;;;;;;;;;;;:::i;:::-;;;32514:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32760:13:0;;32756:272;;32803:60;;-1:-1:-1;;;32803:60:0;;;;;;;:::i;32756:272::-;32978:6;32972:13;32963:6;32959:2;32955:15;32948:38;32514:529;-1:-1:-1;;;;;;32641:51:0;-1:-1:-1;;;32641:51:0;;-1:-1:-1;32634:58:0;;32478:620;-1:-1:-1;33082:4:0;32306:799;;;;;;:::o;29563:382::-;-1:-1:-1;;;;;29643:16:0;;29635:61;;;;-1:-1:-1;;;29635:61:0;;11872:2:1;29635:61:0;;;11854:21:1;;;11891:18;;;11884:30;11950:34;11930:18;;;11923:62;12002:18;;29635:61:0;11670:356:1;29635:61:0;27650:4;27674:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27674:16:0;:30;29707:58;;;;-1:-1:-1;;;29707:58:0;;7973:2:1;29707:58:0;;;7955:21:1;8012:2;7992:18;;;7985:30;8051;8031:18;;;8024:58;8099:18;;29707:58:0;7771:352:1;29707:58:0;29778:45;29807:1;29811:2;29815:7;29778:20;:45::i;:::-;-1:-1:-1;;;;;29836:13:0;;;;;;:9;:13;;;;;:18;;29853:1;;29836:13;:18;;29853:1;;29836:18;:::i;:::-;;;;-1:-1:-1;;29865:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29865:21:0;-1:-1:-1;;;;;29865:21:0;;;;;;;;29904:33;;29865:16;;;29904:33;;29865:16;;29904:33;29563:382;;:::o;38918:988::-;39184:22;39234:1;39209:22;39226:4;39209:16;:22::i;:::-;:26;;;;:::i;:::-;39246:18;39267:26;;;:17;:26;;;;;;39184:51;;-1:-1:-1;39400:28:0;;;39396:328;;-1:-1:-1;;;;;39467:18:0;;39445:19;39467:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39518:30;;;;;;:44;;;39635:30;;:17;:30;;;;;:43;;;39396:328;-1:-1:-1;39820:26:0;;;;:17;:26;;;;;;;;39813:33;;;-1:-1:-1;;;;;39864:18:0;;;;;:12;:18;;;;;:34;;;;;;;39857:41;38918:988::o;40201:1079::-;40479:10;:17;40454:22;;40479:21;;40499:1;;40479:21;:::i;:::-;40511:18;40532:24;;;:15;:24;;;;;;40905:10;:26;;40454:46;;-1:-1:-1;40532:24:0;;40454:46;;40905:26;;;;;;:::i;:::-;;;;;;;;;40883:48;;40969:11;40944:10;40955;40944:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;41049:28;;;:15;:28;;;;;;;:41;;;41221:24;;;;;41214:31;41256:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;40272:1008;;;40201:1079;:::o;37705:221::-;37790:14;37807:20;37824:2;37807:16;:20::i;:::-;-1:-1:-1;;;;;37838:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37883:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37705:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:254::-;4111:6;4119;4172:2;4160:9;4151:7;4147:23;4143:32;4140:52;;;4188:1;4185;4178:12;4140:52;4224:9;4211:23;4201:33;;4253:38;4287:2;4276:9;4272:18;4253:38;:::i;4302:257::-;4343:3;4381:5;4375:12;4408:6;4403:3;4396:19;4424:63;4480:6;4473:4;4468:3;4464:14;4457:4;4450:5;4446:16;4424:63;:::i;:::-;4541:2;4520:15;-1:-1:-1;;4516:29:1;4507:39;;;;4548:4;4503:50;;4302:257;-1:-1:-1;;4302:257:1:o;4564:637::-;4844:3;4882:6;4876:13;4898:53;4944:6;4939:3;4932:4;4924:6;4920:17;4898:53;:::i;:::-;5014:13;;4973:16;;;;5036:57;5014:13;4973:16;5070:4;5058:17;;5036:57;:::i;:::-;-1:-1:-1;;;5115:20:1;;5144:22;;;5193:1;5182:13;;4564:637;-1:-1:-1;;;;4564:637:1:o;5624:488::-;-1:-1:-1;;;;;5893:15:1;;;5875:34;;5945:15;;5940:2;5925:18;;5918:43;5992:2;5977:18;;5970:34;;;6040:3;6035:2;6020:18;;6013:31;;;5818:4;;6061:45;;6086:19;;6078:6;6061:45;:::i;:::-;6053:53;5624:488;-1:-1:-1;;;;;;5624:488:1:o;6309:219::-;6458:2;6447:9;6440:21;6421:4;6478:44;6518:2;6507:9;6503:18;6495:6;6478:44;:::i;6945:414::-;7147:2;7129:21;;;7186:2;7166:18;;;7159:30;7225:34;7220:2;7205:18;;7198:62;-1:-1:-1;;;7291:2:1;7276:18;;7269:48;7349:3;7334:19;;6945:414::o;12444:356::-;12646:2;12628:21;;;12665:18;;;12658:30;12724:34;12719:2;12704:18;;12697:62;12791:2;12776:18;;12444:356::o;14391:413::-;14593:2;14575:21;;;14632:2;14612:18;;;14605:30;14671:34;14666:2;14651:18;;14644:62;-1:-1:-1;;;14737:2:1;14722:18;;14715:47;14794:3;14779:19;;14391:413::o;15404:128::-;15444:3;15475:1;15471:6;15468:1;15465:13;15462:39;;;15481:18;;:::i;:::-;-1:-1:-1;15517:9:1;;15404:128::o;15537:120::-;15577:1;15603;15593:35;;15608:18;;:::i;:::-;-1:-1:-1;15642:9:1;;15537:120::o;15662:168::-;15702:7;15768:1;15764;15760:6;15756:14;15753:1;15750:21;15745:1;15738:9;15731:17;15727:45;15724:71;;;15775:18;;:::i;:::-;-1:-1:-1;15815:9:1;;15662:168::o;15835:125::-;15875:4;15903:1;15900;15897:8;15894:34;;;15908:18;;:::i;:::-;-1:-1:-1;15945:9:1;;15835:125::o;15965:258::-;16037:1;16047:113;16061:6;16058:1;16055:13;16047:113;;;16137:11;;;16131:18;16118:11;;;16111:39;16083:2;16076:10;16047:113;;;16178:6;16175:1;16172:13;16169:48;;;-1:-1:-1;;16213:1:1;16195:16;;16188:27;15965:258::o;16228:380::-;16307:1;16303:12;;;;16350;;;16371:61;;16425:4;16417:6;16413:17;16403:27;;16371:61;16478:2;16470:6;16467:14;16447:18;16444:38;16441:161;;;16524:10;16519:3;16515:20;16512:1;16505:31;16559:4;16556:1;16549:15;16587:4;16584:1;16577:15;16441:161;;16228:380;;;:::o;16613:135::-;16652:3;-1:-1:-1;;16673:17:1;;16670:43;;;16693:18;;:::i;:::-;-1:-1:-1;16740:1:1;16729:13;;16613:135::o;16753:112::-;16785:1;16811;16801:35;;16816:18;;:::i;:::-;-1:-1:-1;16850:9:1;;16753:112::o;16870:127::-;16931:10;16926:3;16922:20;16919:1;16912:31;16962:4;16959:1;16952:15;16986:4;16983:1;16976:15;17002:127;17063:10;17058:3;17054:20;17051:1;17044:31;17094:4;17091:1;17084:15;17118:4;17115:1;17108:15;17134:127;17195:10;17190:3;17186:20;17183:1;17176:31;17226:4;17223:1;17216:15;17250:4;17247:1;17240:15;17266:127;17327:10;17322:3;17318:20;17315:1;17308:31;17358:4;17355:1;17348:15;17382:4;17379:1;17372:15;17398:127;17459:10;17454:3;17450:20;17447:1;17440:31;17490:4;17487:1;17480:15;17514:4;17511:1;17504:15;17530:131;-1:-1:-1;;;;;;17604:32:1;;17594:43;;17584:71;;17651:1;17648;17641:12

Swarm Source

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