ETH Price: $3,394.98 (+1.66%)

Token

Battle Burgers (BB)
 

Overview

Max Total Supply

10 BB

Holders

8

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
chickenchilli.eth
Balance
1 BB
0x060ab3b83b591a6b2615a0c3587fb8e9d684e3a5
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
BattleBurgers

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-30
*/

// SPDX-License-Identifier: GPL-3.0

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



pragma solidity ^0.8.0;

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

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


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



pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

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




// File: @openzeppelin/contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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



// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol



pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


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

// File: @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/Address.sol



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol



pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public 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 {}
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol



pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
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();
    }
}


// File: @openzeppelin/contracts/utils/math/SafeMath.sol



pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/BattleBurger.sol











pragma solidity ^0.8.0;


contract BattleBurgers is ERC721Enumerable, Ownable  {
    
    using SafeMath for uint256;
    using Strings for uint256;
    
    string public baseURI;
  
    string public baseExtension = ".json";

    uint256 public price = 0.06 ether;

    uint256 public MAX_BATTLEBURGER = 3999;

    uint256 public MAX_BATTLEBURGER_PRIVATE_SALE = 3000;

    uint256 public MAX_BATTLEBURGER_PURCHASE = 5; 

    uint256 public MAX_BATTLEBURGER_RESERVE = 200;

    bool public privateSaleIsActive = false;

    bool public saleIsActive = false;

    mapping (address => bool) whitelist;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI
  ) ERC721(_name, _symbol) {
     
    setBaseURI(_initBaseURI);
   
    mint(msg.sender, 1);
  }
  
    // internal
    function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
    }
    
    function mint(address _to, uint256 _mintAmount) internal onlyOwner {
    uint256 supply = totalSupply();
    require(_mintAmount > 0);
    require(supply + _mintAmount <= MAX_BATTLEBURGER);

        for (uint256 i = 1; i <= _mintAmount; i++) {
          _safeMint(_to, supply + i);
        }
    }
    
    function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
    {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
  }
    
    function withdrawAll() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
    
        function withdraw(address to, uint256 amount)
        public
        onlyOwner
    {
        require(amount > 0, "amount empty");
        require(amount <= address(this).balance, "amount exceeds balance");
        require(to != address(0), "address null");
        payable(to).transfer(amount);
    }

    function isEligiblePrivateSale(address _wallet) public view virtual returns (bool){
        return whitelist[_wallet];
    }

    function addWalletsToWhiteList(address[] memory _wallets) public onlyOwner{
        for(uint i = 0; i < _wallets.length; i++) {
            whitelist[_wallets[i]] = true;
        }
    }

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function flipPrivateSaleState() public onlyOwner {
        privateSaleIsActive = !privateSaleIsActive;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }
    
    function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
    }

    function setPrice(uint _price) public onlyOwner {
        price = _price;
    }
    function setmaxMintAmount(uint256 newMAX_BATTLEBURGER_PURCHASE) public onlyOwner() {
        MAX_BATTLEBURGER_PURCHASE = newMAX_BATTLEBURGER_PURCHASE;
    }

    function reserveBattleBurger(uint256 numberOfTokens) public onlyOwner {
        require(numberOfTokens > 0 && numberOfTokens <= MAX_BATTLEBURGER_RESERVE, "Not enough reserve left for team");

        for(uint256 i = 0; i < numberOfTokens; i++) {
            uint256 mintIndex = totalSupply() +1;
            _safeMint(msg.sender, mintIndex);
        }

        MAX_BATTLEBURGER_RESERVE = MAX_BATTLEBURGER_RESERVE.sub(numberOfTokens);
    }
    

    function mintBattleBurger(uint numberOfTokens) public payable {
        if (msg.sender != owner()) {
            require(saleIsActive, "Sale must be active to mint Battle Burgers");
            require(numberOfTokens <= 5, "Can only mint 5 tokens at a time");
            require(totalSupply().add(numberOfTokens) <= MAX_BATTLEBURGER, "Purchase would exceed max supply of Battle Burgers");
            require(msg.value >= price.mul(numberOfTokens), "Ether value sent is not correct");
            require(msg.value >= price * numberOfTokens);
        }
        
        for(uint i = 0; i < numberOfTokens; i++) {
            uint256 mintIndex = totalSupply();
            if (totalSupply() < MAX_BATTLEBURGER) {
                _safeMint(msg.sender, mintIndex + 1);
            }
        }
    }

    function mintBattleBurgerPrivateSale(uint numberOfTokens) public payable {
        if (msg.sender != owner()) {
            require(privateSaleIsActive, "Private Sale must be active to mint Battle Burgers");
            require(numberOfTokens + balanceOf(msg.sender) <= 5, "Can have 5 Battle Burgers per wallet");
            require(isEligiblePrivateSale(msg.sender), "The sender isn't eligible for private sale");
            require(totalSupply().add(numberOfTokens) <= MAX_BATTLEBURGER_PRIVATE_SALE, "Purchase would exceed max supply of Battle Burgers");
            require(msg.value >= price.mul(numberOfTokens), "Ether value sent is not correct");
            require(msg.value >= price * numberOfTokens);
        }
        
        for(uint i = 0; i < numberOfTokens; i++) {
            uint256 mintIndex = totalSupply();
            if (totalSupply() < MAX_BATTLEBURGER_PRIVATE_SALE) {
                _safeMint(msg.sender, mintIndex + 1);
            }
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_BATTLEBURGER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BATTLEBURGER_PRIVATE_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BATTLEBURGER_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BATTLEBURGER_RESERVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"addWalletsToWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPrivateSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"isEligiblePrivateSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintBattleBurger","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintBattleBurgerPrivateSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"reserveBattleBurger","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMAX_BATTLEBURGER_PURCHASE","type":"uint256"}],"name":"setmaxMintAmount","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000832565b5066d529ae9e860000600d55610f9f600e55610bb8600f55600560105560c86011556012805461ffff191690553480156200006257600080fd5b50604051620038e1380380620038e1833981016040819052620000859162000992565b8251839083906200009e90600090602085019062000832565b508051620000b490600190602084019062000832565b505050620000d1620000cb620000f260201b60201c565b620000f6565b620000dc8162000148565b620000e9336001620001b0565b50505062000c9d565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000152620000f2565b6001600160a01b0316620001656200026a565b6001600160a01b031614620001975760405162461bcd60e51b81526004016200018e9062000b7d565b60405180910390fd5b8051620001ac90600b90602084019062000832565b5050565b620001ba620000f2565b6001600160a01b0316620001cd6200026a565b6001600160a01b031614620001f65760405162461bcd60e51b81526004016200018e9062000b7d565b60006200020262000279565b9050600082116200021257600080fd5b600e5462000221838362000bb2565b11156200022d57600080fd5b60015b82811162000264576200024f8462000249838562000bb2565b6200027f565b806200025b8162000c53565b91505062000230565b50505050565b600a546001600160a01b031690565b60085490565b620001ac828260405180602001604052806000815250620002a160201b60201c565b620002ad8383620002e0565b620002bc6000848484620003cb565b620002db5760405162461bcd60e51b81526004016200018e9062000a75565b505050565b6001600160a01b038216620003095760405162461bcd60e51b81526004016200018e9062000b48565b620003148162000504565b15620003345760405162461bcd60e51b81526004016200018e9062000ac7565b620003426000838362000521565b6001600160a01b03821660009081526003602052604081208054600192906200036d90849062000bb2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620003ec846001600160a01b0316620005c560201b6200148c1760201c565b15620004f8576001600160a01b03841663150b7a026200040b620000f2565b8786866040518563ffffffff1660e01b81526004016200042f949392919062000a1f565b602060405180830381600087803b1580156200044a57600080fd5b505af19250505080156200047d575060408051601f3d908101601f191682019092526200047a9181019062000961565b60015b620004dd573d808015620004ae576040519150601f19603f3d011682016040523d82523d6000602084013e620004b3565b606091505b508051620004d55760405162461bcd60e51b81526004016200018e9062000a75565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620004fc565b5060015b949350505050565b6000908152600260205260409020546001600160a01b0316151590565b62000539838383620002db60201b6200086f1760201c565b6001600160a01b03831662000559576200055381620005cb565b6200057f565b816001600160a01b0316836001600160a01b0316146200057f576200057f83826200060f565b6001600160a01b0382166200059f576200059981620006bc565b620002db565b826001600160a01b0316826001600160a01b031614620002db57620002db82826200079a565b3b151590565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016200062984620007eb60201b62000cb01760201c565b62000635919062000bcd565b60008381526007602052604090205490915080821462000689576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090620006d09060019062000bcd565b600083815260096020526040812054600880549394509092849081106200070757634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106200073757634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806200077e57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000620007b283620007eb60201b62000cb01760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b038216620008165760405162461bcd60e51b81526004016200018e9062000afe565b506001600160a01b031660009081526003602052604090205490565b828054620008409062000c16565b90600052602060002090601f016020900481019282620008645760008555620008af565b82601f106200087f57805160ff1916838001178555620008af565b82800160010185558215620008af579182015b82811115620008af57825182559160200191906001019062000892565b50620008bd929150620008c1565b5090565b5b80821115620008bd5760008155600101620008c2565b600082601f830112620008e9578081fd5b81516001600160401b038082111562000906576200090662000c87565b604051601f8301601f1916810160200182811182821017156200092d576200092d62000c87565b60405282815284830160200186101562000945578384fd5b6200095883602083016020880162000be7565b95945050505050565b60006020828403121562000973578081fd5b81516001600160e01b0319811681146200098b578182fd5b9392505050565b600080600060608486031215620009a7578182fd5b83516001600160401b0380821115620009be578384fd5b620009cc87838801620008d8565b94506020860151915080821115620009e2578384fd5b620009f087838801620008d8565b9350604086015191508082111562000a06578283fd5b5062000a1586828701620008d8565b9150509250925092565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000a5e8160a085016020870162000be7565b601f01601f19169190910160a00195945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111562000bc85762000bc862000c71565b500190565b60008282101562000be25762000be262000c71565b500390565b60005b8381101562000c0457818101518382015260200162000bea565b83811115620002645750506000910152565b60028104600182168062000c2b57607f821691505b6020821081141562000c4d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000c6a5762000c6a62000c71565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b612c348062000cad6000396000f3fe6080604052600436106102465760003560e01c80637f00c7a611610139578063af7420a3116100b6578063da3ef23f1161007a578063da3ef23f14610613578063e2e1796314610633578063e985e9c514610653578063eb8d244414610673578063f2fde38b14610688578063f3fef3a3146106a857610246565b8063af7420a314610589578063b88d4fde146105a9578063bbfeae6c146105c9578063c6682862146105de578063c87b56dd146105f357610246565b806395d89b41116100fd57806395d89b411461050c5780639cae6f4914610521578063a035b1fe14610534578063a22cb46514610549578063ac7594181461056957610246565b80637f00c7a61461049a578063853828b6146104ba5780638da5cb5b146104c257806391b7f5ed146104d757806393ab192c146104f757610246565b806334918dfd116101c75780636352211e1161018b5780636352211e1461041d5780636be833491461043d5780636c0360eb1461045057806370a0823114610465578063715018a61461048557610246565b806334918dfd146103935780633719e3b0146103a857806342842e0e146103bd5780634f6ccce7146103dd57806355f804b3146103fd57610246565b806318160ddd1161020e57806318160ddd14610307578063207fc1ec1461032957806323b872dd1461033e5780632bacc31b1461035e5780632f745c591461037357610246565b806301ffc9a71461024b57806304737a011461028157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102e5575b600080fd5b34801561025757600080fd5b5061026b6102663660046120e6565b6106c8565b60405161027891906122bb565b60405180910390f35b34801561028d57600080fd5b5061026b6106f5565b3480156102a257600080fd5b506102ab6106fe565b60405161027891906122c6565b3480156102c457600080fd5b506102d86102d3366004612164565b610790565b604051610278919061226a565b3480156102f157600080fd5b5061030561030036600461200f565b6107dc565b005b34801561031357600080fd5b5061031c610874565b6040516102789190612a6f565b34801561033557600080fd5b5061031c61087a565b34801561034a57600080fd5b50610305610359366004611f21565b610880565b34801561036a57600080fd5b5061031c6108b8565b34801561037f57600080fd5b5061031c61038e36600461200f565b6108be565b34801561039f57600080fd5b50610305610910565b3480156103b457600080fd5b5061030561096c565b3480156103c957600080fd5b506103056103d8366004611f21565b6109bf565b3480156103e957600080fd5b5061031c6103f8366004612164565b6109da565b34801561040957600080fd5b5061030561041836600461211e565b610a35565b34801561042957600080fd5b506102d8610438366004612164565b610a8b565b61030561044b366004612164565b610ac0565b34801561045c57600080fd5b506102ab610c22565b34801561047157600080fd5b5061031c610480366004611ed5565b610cb0565b34801561049157600080fd5b50610305610cf4565b3480156104a657600080fd5b506103056104b5366004612164565b610d3f565b610305610d83565b3480156104ce57600080fd5b506102d8610de6565b3480156104e357600080fd5b506103056104f2366004612164565b610df5565b34801561050357600080fd5b5061031c610e39565b34801561051857600080fd5b506102ab610e3f565b61030561052f366004612164565b610e4e565b34801561054057600080fd5b5061031c610f73565b34801561055557600080fd5b50610305610564366004611fd5565b610f79565b34801561057557600080fd5b50610305610584366004612164565b611047565b34801561059557600080fd5b5061026b6105a4366004611ed5565b611107565b3480156105b557600080fd5b506103056105c4366004611f5c565b611125565b3480156105d557600080fd5b5061031c611164565b3480156105ea57600080fd5b506102ab61116a565b3480156105ff57600080fd5b506102ab61060e366004612164565b611177565b34801561061f57600080fd5b5061030561062e36600461211e565b6111fd565b34801561063f57600080fd5b5061030561064e366004612038565b61124f565b34801561065f57600080fd5b5061026b61066e366004611eef565b611304565b34801561067f57600080fd5b5061026b611332565b34801561069457600080fd5b506103056106a3366004611ed5565b611340565b3480156106b457600080fd5b506103056106c336600461200f565b6113b1565b60006001600160e01b0319821663780e9d6360e01b14806106ed57506106ed82611492565b90505b919050565b60125460ff1681565b60606000805461070d90612b3c565b80601f016020809104026020016040519081016040528092919081815260200182805461073990612b3c565b80156107865780601f1061075b57610100808354040283529160200191610786565b820191906000526020600020905b81548152906001019060200180831161076957829003601f168201915b5050505050905090565b600061079b826114d2565b6107c05760405162461bcd60e51b81526004016107b790612772565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107e782610a8b565b9050806001600160a01b0316836001600160a01b0316141561081b5760405162461bcd60e51b81526004016107b790612927565b806001600160a01b031661082d6114ef565b6001600160a01b0316148061084957506108498161066e6114ef565b6108655760405162461bcd60e51b81526004016107b79061264d565b61086f83836114f3565b505050565b60085490565b60115481565b61089161088b6114ef565b82611561565b6108ad5760405162461bcd60e51b81526004016107b790612968565b61086f8383836115e6565b600f5481565b60006108c983610cb0565b82106108e75760405162461bcd60e51b81526004016107b79061233e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6109186114ef565b6001600160a01b0316610929610de6565b6001600160a01b03161461094f5760405162461bcd60e51b81526004016107b7906127be565b6012805461ff001981166101009182900460ff1615909102179055565b6109746114ef565b6001600160a01b0316610985610de6565b6001600160a01b0316146109ab5760405162461bcd60e51b81526004016107b7906127be565b6012805460ff19811660ff90911615179055565b61086f83838360405180602001604052806000815250611125565b60006109e4610874565b8210610a025760405162461bcd60e51b81526004016107b7906129b9565b60088281548110610a2357634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610a3d6114ef565b6001600160a01b0316610a4e610de6565b6001600160a01b031614610a745760405162461bcd60e51b81526004016107b7906127be565b8051610a8790600b906020840190611dcd565b5050565b6000818152600260205260408120546001600160a01b0316806106ed5760405162461bcd60e51b81526004016107b7906126f4565b610ac8610de6565b6001600160a01b0316336001600160a01b031614610bd35760125460ff16610b025760405162461bcd60e51b81526004016107b79061288b565b6005610b0d33610cb0565b610b179083612aae565b1115610b355760405162461bcd60e51b81526004016107b790612a05565b610b3e33611107565b610b5a5760405162461bcd60e51b81526004016107b79061247e565b600f54610b6f82610b69610874565b90611713565b1115610b8d5760405162461bcd60e51b81526004016107b7906125fb565b600d54610b9a908261171f565b341015610bb95760405162461bcd60e51b81526004016107b790612578565b80600d54610bc79190612ada565b341015610bd357600080fd5b60005b81811015610a87576000610be8610874565b9050600f54610bf5610874565b1015610c0f57610c0f33610c0a836001612aae565b61172b565b5080610c1a81612b77565b915050610bd6565b600b8054610c2f90612b3c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5b90612b3c565b8015610ca85780601f10610c7d57610100808354040283529160200191610ca8565b820191906000526020600020905b815481529060010190602001808311610c8b57829003601f168201915b505050505081565b60006001600160a01b038216610cd85760405162461bcd60e51b81526004016107b7906126aa565b506001600160a01b031660009081526003602052604090205490565b610cfc6114ef565b6001600160a01b0316610d0d610de6565b6001600160a01b031614610d335760405162461bcd60e51b81526004016107b7906127be565b610d3d6000611745565b565b610d476114ef565b6001600160a01b0316610d58610de6565b6001600160a01b031614610d7e5760405162461bcd60e51b81526004016107b7906127be565b601055565b610d8b6114ef565b6001600160a01b0316610d9c610de6565b6001600160a01b031614610dc25760405162461bcd60e51b81526004016107b7906127be565b60405133904780156108fc02916000818181858888f19350505050610d3d57600080fd5b600a546001600160a01b031690565b610dfd6114ef565b6001600160a01b0316610e0e610de6565b6001600160a01b031614610e345760405162461bcd60e51b81526004016107b7906127be565b600d55565b600e5481565b60606001805461070d90612b3c565b610e56610de6565b6001600160a01b0316336001600160a01b031614610f2957601254610100900460ff16610e955760405162461bcd60e51b81526004016107b7906128dd565b6005811115610eb65760405162461bcd60e51b81526004016107b790612309565b600e54610ec582610b69610874565b1115610ee35760405162461bcd60e51b81526004016107b7906125fb565b600d54610ef0908261171f565b341015610f0f5760405162461bcd60e51b81526004016107b790612578565b80600d54610f1d9190612ada565b341015610f2957600080fd5b60005b81811015610a87576000610f3e610874565b9050600e54610f4b610874565b1015610f6057610f6033610c0a836001612aae565b5080610f6b81612b77565b915050610f2c565b600d5481565b610f816114ef565b6001600160a01b0316826001600160a01b03161415610fb25760405162461bcd60e51b81526004016107b790612541565b8060056000610fbf6114ef565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556110036114ef565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161103b91906122bb565b60405180910390a35050565b61104f6114ef565b6001600160a01b0316611060610de6565b6001600160a01b0316146110865760405162461bcd60e51b81526004016107b7906127be565b60008111801561109857506011548111155b6110b45760405162461bcd60e51b81526004016107b7906124c8565b60005b818110156110f35760006110c9610874565b6110d4906001612aae565b90506110e0338261172b565b50806110eb81612b77565b9150506110b7565b506011546111019082611797565b60115550565b6001600160a01b031660009081526013602052604090205460ff1690565b6111366111306114ef565b83611561565b6111525760405162461bcd60e51b81526004016107b790612968565b61115e848484846117a3565b50505050565b60105481565b600c8054610c2f90612b3c565b6060611182826114d2565b61119e5760405162461bcd60e51b81526004016107b79061283c565b60006111a86117d6565b905060008151116111c857604051806020016040528060008152506111f6565b806111d2846117e5565b600c6040516020016111e6939291906121a8565b6040516020818303038152906040525b9392505050565b6112056114ef565b6001600160a01b0316611216610de6565b6001600160a01b03161461123c5760405162461bcd60e51b81526004016107b7906127be565b8051610a8790600c906020840190611dcd565b6112576114ef565b6001600160a01b0316611268610de6565b6001600160a01b03161461128e5760405162461bcd60e51b81526004016107b7906127be565b60005b8151811015610a87576001601360008484815181106112c057634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806112fc81612b77565b915050611291565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b601254610100900460ff1681565b6113486114ef565b6001600160a01b0316611359610de6565b6001600160a01b03161461137f5760405162461bcd60e51b81526004016107b7906127be565b6001600160a01b0381166113a55760405162461bcd60e51b81526004016107b7906123db565b6113ae81611745565b50565b6113b96114ef565b6001600160a01b03166113ca610de6565b6001600160a01b0316146113f05760405162461bcd60e51b81526004016107b7906127be565b600081116114105760405162461bcd60e51b81526004016107b790612421565b478111156114305760405162461bcd60e51b81526004016107b7906122d9565b6001600160a01b0382166114565760405162461bcd60e51b81526004016107b790612a49565b6040516001600160a01b0383169082156108fc029083906000818181858888f1935050505015801561086f573d6000803e3d6000fd5b3b151590565b60006001600160e01b031982166380ac58cd60e01b14806114c357506001600160e01b03198216635b5e139f60e01b145b806106ed57506106ed82611900565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061152882610a8b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061156c826114d2565b6115885760405162461bcd60e51b81526004016107b7906125af565b600061159383610a8b565b9050806001600160a01b0316846001600160a01b031614806115ce5750836001600160a01b03166115c384610790565b6001600160a01b0316145b806115de57506115de8185611304565b949350505050565b826001600160a01b03166115f982610a8b565b6001600160a01b03161461161f5760405162461bcd60e51b81526004016107b7906127f3565b6001600160a01b0382166116455760405162461bcd60e51b81526004016107b7906124fd565b611650838383611919565b61165b6000826114f3565b6001600160a01b0383166000908152600360205260408120805460019290611684908490612af9565b90915550506001600160a01b03821660009081526003602052604081208054600192906116b2908490612aae565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006111f68284612aae565b60006111f68284612ada565b610a878282604051806020016040528060008152506119a2565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006111f68284612af9565b6117ae8484846115e6565b6117ba848484846119d5565b61115e5760405162461bcd60e51b81526004016107b790612389565b6060600b805461070d90612b3c565b60608161180a57506040805180820190915260018152600360fc1b60208201526106f0565b8160005b8115611834578061181e81612b77565b915061182d9050600a83612ac6565b915061180e565b60008167ffffffffffffffff81111561185d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611887576020820181803683370190505b5090505b84156115de5761189c600183612af9565b91506118a9600a86612b92565b6118b4906030612aae565b60f81b8183815181106118d757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506118f9600a86612ac6565b945061188b565b6001600160e01b031981166301ffc9a760e01b14919050565b61192483838361086f565b6001600160a01b0383166119405761193b81611af0565b611963565b816001600160a01b0316836001600160a01b031614611963576119638382611b34565b6001600160a01b03821661197f5761197a81611bd1565b61086f565b826001600160a01b0316826001600160a01b03161461086f5761086f8282611caa565b6119ac8383611cee565b6119b960008484846119d5565b61086f5760405162461bcd60e51b81526004016107b790612389565b60006119e9846001600160a01b031661148c565b15611ae557836001600160a01b031663150b7a02611a056114ef565b8786866040518563ffffffff1660e01b8152600401611a27949392919061227e565b602060405180830381600087803b158015611a4157600080fd5b505af1925050508015611a71575060408051601f3d908101601f19168201909252611a6e91810190612102565b60015b611acb573d808015611a9f576040519150601f19603f3d011682016040523d82523d6000602084013e611aa4565b606091505b508051611ac35760405162461bcd60e51b81526004016107b790612389565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115de565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611b4184610cb0565b611b4b9190612af9565b600083815260076020526040902054909150808214611b9e576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611be390600190612af9565b60008381526009602052604081205460088054939450909284908110611c1957634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611c4857634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c8e57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611cb583610cb0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611d145760405162461bcd60e51b81526004016107b79061273d565b611d1d816114d2565b15611d3a5760405162461bcd60e51b81526004016107b790612447565b611d4660008383611919565b6001600160a01b0382166000908152600360205260408120805460019290611d6f908490612aae565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611dd990612b3c565b90600052602060002090601f016020900481019282611dfb5760008555611e41565b82601f10611e1457805160ff1916838001178555611e41565b82800160010185558215611e41579182015b82811115611e41578251825591602001919060010190611e26565b50611e4d929150611e51565b5090565b5b80821115611e4d5760008155600101611e52565b600067ffffffffffffffff831115611e8057611e80612bd2565b611e93601f8401601f1916602001612a78565b9050828152838383011115611ea757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146106f057600080fd5b600060208284031215611ee6578081fd5b6111f682611ebe565b60008060408385031215611f01578081fd5b611f0a83611ebe565b9150611f1860208401611ebe565b90509250929050565b600080600060608486031215611f35578081fd5b611f3e84611ebe565b9250611f4c60208501611ebe565b9150604084013590509250925092565b60008060008060808587031215611f71578081fd5b611f7a85611ebe565b9350611f8860208601611ebe565b925060408501359150606085013567ffffffffffffffff811115611faa578182fd5b8501601f81018713611fba578182fd5b611fc987823560208401611e66565b91505092959194509250565b60008060408385031215611fe7578182fd5b611ff083611ebe565b915060208301358015158114612004578182fd5b809150509250929050565b60008060408385031215612021578182fd5b61202a83611ebe565b946020939093013593505050565b6000602080838503121561204a578182fd5b823567ffffffffffffffff80821115612061578384fd5b818501915085601f830112612074578384fd5b81358181111561208657612086612bd2565b8381029150612096848301612a78565b8181528481019084860184860187018a10156120b0578788fd5b8795505b838610156120d9576120c581611ebe565b8352600195909501949186019186016120b4565b5098975050505050505050565b6000602082840312156120f7578081fd5b81356111f681612be8565b600060208284031215612113578081fd5b81516111f681612be8565b60006020828403121561212f578081fd5b813567ffffffffffffffff811115612145578182fd5b8201601f81018413612155578182fd5b6115de84823560208401611e66565b600060208284031215612175578081fd5b5035919050565b60008151808452612194816020860160208601612b10565b601f01601f19169290920160200192915050565b6000845160206121bb8285838a01612b10565b8551918401916121ce8184848a01612b10565b85549201918390600281046001808316806121ea57607f831692505b85831081141561220857634e487b7160e01b88526022600452602488fd5b80801561221c576001811461222d57612259565b60ff19851688528388019550612259565b6122368b612aa2565b895b858110156122515781548a820152908401908801612238565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122b19083018461217c565b9695505050505050565b901515815260200190565b6000602082526111f6602083018461217c565b602080825260169082015275616d6f756e7420657863656564732062616c616e636560501b604082015260600190565b6020808252818101527f43616e206f6e6c79206d696e74203520746f6b656e7320617420612074696d65604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252600c908201526b616d6f756e7420656d70747960a01b604082015260600190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252602a908201527f5468652073656e6465722069736e277420656c696769626c6520666f7220707260408201526969766174652073616c6560b01b606082015260800190565b6020808252818101527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526032908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015271206f6620426174746c65204275726765727360701b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526032908201527f507269766174652053616c65206d7573742062652061637469766520746f206d604082015271696e7420426174746c65204275726765727360701b606082015260800190565b6020808252602a908201527f53616c65206d7573742062652061637469766520746f206d696e7420426174746040820152696c65204275726765727360b01b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526024908201527f43616e2068617665203520426174746c652042757267657273207065722077616040820152631b1b195d60e21b606082015260800190565b6020808252600c908201526b1859191c995cdcc81b9d5b1b60a21b604082015260600190565b90815260200190565b60405181810167ffffffffffffffff81118282101715612a9a57612a9a612bd2565b604052919050565b60009081526020902090565b60008219821115612ac157612ac1612ba6565b500190565b600082612ad557612ad5612bbc565b500490565b6000816000190483118215151615612af457612af4612ba6565b500290565b600082821015612b0b57612b0b612ba6565b500390565b60005b83811015612b2b578181015183820152602001612b13565b8381111561115e5750506000910152565b600281046001821680612b5057607f821691505b60208210811415612b7157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b8b57612b8b612ba6565b5060010190565b600082612ba157612ba1612bbc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113ae57600080fdfea2646970667358221220845e79d7d0f6c41659b727ac7eec9dc0ecbe1b3c314b667fa13d036a80461f6864736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e426174746c652042757267657273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000242420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d526e43473862356338716b50536d6f5158625453524b456a33526f517a35396d77785251663159336d7771582f00000000000000000000

Deployed Bytecode

0x6080604052600436106102465760003560e01c80637f00c7a611610139578063af7420a3116100b6578063da3ef23f1161007a578063da3ef23f14610613578063e2e1796314610633578063e985e9c514610653578063eb8d244414610673578063f2fde38b14610688578063f3fef3a3146106a857610246565b8063af7420a314610589578063b88d4fde146105a9578063bbfeae6c146105c9578063c6682862146105de578063c87b56dd146105f357610246565b806395d89b41116100fd57806395d89b411461050c5780639cae6f4914610521578063a035b1fe14610534578063a22cb46514610549578063ac7594181461056957610246565b80637f00c7a61461049a578063853828b6146104ba5780638da5cb5b146104c257806391b7f5ed146104d757806393ab192c146104f757610246565b806334918dfd116101c75780636352211e1161018b5780636352211e1461041d5780636be833491461043d5780636c0360eb1461045057806370a0823114610465578063715018a61461048557610246565b806334918dfd146103935780633719e3b0146103a857806342842e0e146103bd5780634f6ccce7146103dd57806355f804b3146103fd57610246565b806318160ddd1161020e57806318160ddd14610307578063207fc1ec1461032957806323b872dd1461033e5780632bacc31b1461035e5780632f745c591461037357610246565b806301ffc9a71461024b57806304737a011461028157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102e5575b600080fd5b34801561025757600080fd5b5061026b6102663660046120e6565b6106c8565b60405161027891906122bb565b60405180910390f35b34801561028d57600080fd5b5061026b6106f5565b3480156102a257600080fd5b506102ab6106fe565b60405161027891906122c6565b3480156102c457600080fd5b506102d86102d3366004612164565b610790565b604051610278919061226a565b3480156102f157600080fd5b5061030561030036600461200f565b6107dc565b005b34801561031357600080fd5b5061031c610874565b6040516102789190612a6f565b34801561033557600080fd5b5061031c61087a565b34801561034a57600080fd5b50610305610359366004611f21565b610880565b34801561036a57600080fd5b5061031c6108b8565b34801561037f57600080fd5b5061031c61038e36600461200f565b6108be565b34801561039f57600080fd5b50610305610910565b3480156103b457600080fd5b5061030561096c565b3480156103c957600080fd5b506103056103d8366004611f21565b6109bf565b3480156103e957600080fd5b5061031c6103f8366004612164565b6109da565b34801561040957600080fd5b5061030561041836600461211e565b610a35565b34801561042957600080fd5b506102d8610438366004612164565b610a8b565b61030561044b366004612164565b610ac0565b34801561045c57600080fd5b506102ab610c22565b34801561047157600080fd5b5061031c610480366004611ed5565b610cb0565b34801561049157600080fd5b50610305610cf4565b3480156104a657600080fd5b506103056104b5366004612164565b610d3f565b610305610d83565b3480156104ce57600080fd5b506102d8610de6565b3480156104e357600080fd5b506103056104f2366004612164565b610df5565b34801561050357600080fd5b5061031c610e39565b34801561051857600080fd5b506102ab610e3f565b61030561052f366004612164565b610e4e565b34801561054057600080fd5b5061031c610f73565b34801561055557600080fd5b50610305610564366004611fd5565b610f79565b34801561057557600080fd5b50610305610584366004612164565b611047565b34801561059557600080fd5b5061026b6105a4366004611ed5565b611107565b3480156105b557600080fd5b506103056105c4366004611f5c565b611125565b3480156105d557600080fd5b5061031c611164565b3480156105ea57600080fd5b506102ab61116a565b3480156105ff57600080fd5b506102ab61060e366004612164565b611177565b34801561061f57600080fd5b5061030561062e36600461211e565b6111fd565b34801561063f57600080fd5b5061030561064e366004612038565b61124f565b34801561065f57600080fd5b5061026b61066e366004611eef565b611304565b34801561067f57600080fd5b5061026b611332565b34801561069457600080fd5b506103056106a3366004611ed5565b611340565b3480156106b457600080fd5b506103056106c336600461200f565b6113b1565b60006001600160e01b0319821663780e9d6360e01b14806106ed57506106ed82611492565b90505b919050565b60125460ff1681565b60606000805461070d90612b3c565b80601f016020809104026020016040519081016040528092919081815260200182805461073990612b3c565b80156107865780601f1061075b57610100808354040283529160200191610786565b820191906000526020600020905b81548152906001019060200180831161076957829003601f168201915b5050505050905090565b600061079b826114d2565b6107c05760405162461bcd60e51b81526004016107b790612772565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107e782610a8b565b9050806001600160a01b0316836001600160a01b0316141561081b5760405162461bcd60e51b81526004016107b790612927565b806001600160a01b031661082d6114ef565b6001600160a01b0316148061084957506108498161066e6114ef565b6108655760405162461bcd60e51b81526004016107b79061264d565b61086f83836114f3565b505050565b60085490565b60115481565b61089161088b6114ef565b82611561565b6108ad5760405162461bcd60e51b81526004016107b790612968565b61086f8383836115e6565b600f5481565b60006108c983610cb0565b82106108e75760405162461bcd60e51b81526004016107b79061233e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6109186114ef565b6001600160a01b0316610929610de6565b6001600160a01b03161461094f5760405162461bcd60e51b81526004016107b7906127be565b6012805461ff001981166101009182900460ff1615909102179055565b6109746114ef565b6001600160a01b0316610985610de6565b6001600160a01b0316146109ab5760405162461bcd60e51b81526004016107b7906127be565b6012805460ff19811660ff90911615179055565b61086f83838360405180602001604052806000815250611125565b60006109e4610874565b8210610a025760405162461bcd60e51b81526004016107b7906129b9565b60088281548110610a2357634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610a3d6114ef565b6001600160a01b0316610a4e610de6565b6001600160a01b031614610a745760405162461bcd60e51b81526004016107b7906127be565b8051610a8790600b906020840190611dcd565b5050565b6000818152600260205260408120546001600160a01b0316806106ed5760405162461bcd60e51b81526004016107b7906126f4565b610ac8610de6565b6001600160a01b0316336001600160a01b031614610bd35760125460ff16610b025760405162461bcd60e51b81526004016107b79061288b565b6005610b0d33610cb0565b610b179083612aae565b1115610b355760405162461bcd60e51b81526004016107b790612a05565b610b3e33611107565b610b5a5760405162461bcd60e51b81526004016107b79061247e565b600f54610b6f82610b69610874565b90611713565b1115610b8d5760405162461bcd60e51b81526004016107b7906125fb565b600d54610b9a908261171f565b341015610bb95760405162461bcd60e51b81526004016107b790612578565b80600d54610bc79190612ada565b341015610bd357600080fd5b60005b81811015610a87576000610be8610874565b9050600f54610bf5610874565b1015610c0f57610c0f33610c0a836001612aae565b61172b565b5080610c1a81612b77565b915050610bd6565b600b8054610c2f90612b3c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5b90612b3c565b8015610ca85780601f10610c7d57610100808354040283529160200191610ca8565b820191906000526020600020905b815481529060010190602001808311610c8b57829003601f168201915b505050505081565b60006001600160a01b038216610cd85760405162461bcd60e51b81526004016107b7906126aa565b506001600160a01b031660009081526003602052604090205490565b610cfc6114ef565b6001600160a01b0316610d0d610de6565b6001600160a01b031614610d335760405162461bcd60e51b81526004016107b7906127be565b610d3d6000611745565b565b610d476114ef565b6001600160a01b0316610d58610de6565b6001600160a01b031614610d7e5760405162461bcd60e51b81526004016107b7906127be565b601055565b610d8b6114ef565b6001600160a01b0316610d9c610de6565b6001600160a01b031614610dc25760405162461bcd60e51b81526004016107b7906127be565b60405133904780156108fc02916000818181858888f19350505050610d3d57600080fd5b600a546001600160a01b031690565b610dfd6114ef565b6001600160a01b0316610e0e610de6565b6001600160a01b031614610e345760405162461bcd60e51b81526004016107b7906127be565b600d55565b600e5481565b60606001805461070d90612b3c565b610e56610de6565b6001600160a01b0316336001600160a01b031614610f2957601254610100900460ff16610e955760405162461bcd60e51b81526004016107b7906128dd565b6005811115610eb65760405162461bcd60e51b81526004016107b790612309565b600e54610ec582610b69610874565b1115610ee35760405162461bcd60e51b81526004016107b7906125fb565b600d54610ef0908261171f565b341015610f0f5760405162461bcd60e51b81526004016107b790612578565b80600d54610f1d9190612ada565b341015610f2957600080fd5b60005b81811015610a87576000610f3e610874565b9050600e54610f4b610874565b1015610f6057610f6033610c0a836001612aae565b5080610f6b81612b77565b915050610f2c565b600d5481565b610f816114ef565b6001600160a01b0316826001600160a01b03161415610fb25760405162461bcd60e51b81526004016107b790612541565b8060056000610fbf6114ef565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556110036114ef565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161103b91906122bb565b60405180910390a35050565b61104f6114ef565b6001600160a01b0316611060610de6565b6001600160a01b0316146110865760405162461bcd60e51b81526004016107b7906127be565b60008111801561109857506011548111155b6110b45760405162461bcd60e51b81526004016107b7906124c8565b60005b818110156110f35760006110c9610874565b6110d4906001612aae565b90506110e0338261172b565b50806110eb81612b77565b9150506110b7565b506011546111019082611797565b60115550565b6001600160a01b031660009081526013602052604090205460ff1690565b6111366111306114ef565b83611561565b6111525760405162461bcd60e51b81526004016107b790612968565b61115e848484846117a3565b50505050565b60105481565b600c8054610c2f90612b3c565b6060611182826114d2565b61119e5760405162461bcd60e51b81526004016107b79061283c565b60006111a86117d6565b905060008151116111c857604051806020016040528060008152506111f6565b806111d2846117e5565b600c6040516020016111e6939291906121a8565b6040516020818303038152906040525b9392505050565b6112056114ef565b6001600160a01b0316611216610de6565b6001600160a01b03161461123c5760405162461bcd60e51b81526004016107b7906127be565b8051610a8790600c906020840190611dcd565b6112576114ef565b6001600160a01b0316611268610de6565b6001600160a01b03161461128e5760405162461bcd60e51b81526004016107b7906127be565b60005b8151811015610a87576001601360008484815181106112c057634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806112fc81612b77565b915050611291565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b601254610100900460ff1681565b6113486114ef565b6001600160a01b0316611359610de6565b6001600160a01b03161461137f5760405162461bcd60e51b81526004016107b7906127be565b6001600160a01b0381166113a55760405162461bcd60e51b81526004016107b7906123db565b6113ae81611745565b50565b6113b96114ef565b6001600160a01b03166113ca610de6565b6001600160a01b0316146113f05760405162461bcd60e51b81526004016107b7906127be565b600081116114105760405162461bcd60e51b81526004016107b790612421565b478111156114305760405162461bcd60e51b81526004016107b7906122d9565b6001600160a01b0382166114565760405162461bcd60e51b81526004016107b790612a49565b6040516001600160a01b0383169082156108fc029083906000818181858888f1935050505015801561086f573d6000803e3d6000fd5b3b151590565b60006001600160e01b031982166380ac58cd60e01b14806114c357506001600160e01b03198216635b5e139f60e01b145b806106ed57506106ed82611900565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061152882610a8b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061156c826114d2565b6115885760405162461bcd60e51b81526004016107b7906125af565b600061159383610a8b565b9050806001600160a01b0316846001600160a01b031614806115ce5750836001600160a01b03166115c384610790565b6001600160a01b0316145b806115de57506115de8185611304565b949350505050565b826001600160a01b03166115f982610a8b565b6001600160a01b03161461161f5760405162461bcd60e51b81526004016107b7906127f3565b6001600160a01b0382166116455760405162461bcd60e51b81526004016107b7906124fd565b611650838383611919565b61165b6000826114f3565b6001600160a01b0383166000908152600360205260408120805460019290611684908490612af9565b90915550506001600160a01b03821660009081526003602052604081208054600192906116b2908490612aae565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006111f68284612aae565b60006111f68284612ada565b610a878282604051806020016040528060008152506119a2565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006111f68284612af9565b6117ae8484846115e6565b6117ba848484846119d5565b61115e5760405162461bcd60e51b81526004016107b790612389565b6060600b805461070d90612b3c565b60608161180a57506040805180820190915260018152600360fc1b60208201526106f0565b8160005b8115611834578061181e81612b77565b915061182d9050600a83612ac6565b915061180e565b60008167ffffffffffffffff81111561185d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611887576020820181803683370190505b5090505b84156115de5761189c600183612af9565b91506118a9600a86612b92565b6118b4906030612aae565b60f81b8183815181106118d757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506118f9600a86612ac6565b945061188b565b6001600160e01b031981166301ffc9a760e01b14919050565b61192483838361086f565b6001600160a01b0383166119405761193b81611af0565b611963565b816001600160a01b0316836001600160a01b031614611963576119638382611b34565b6001600160a01b03821661197f5761197a81611bd1565b61086f565b826001600160a01b0316826001600160a01b03161461086f5761086f8282611caa565b6119ac8383611cee565b6119b960008484846119d5565b61086f5760405162461bcd60e51b81526004016107b790612389565b60006119e9846001600160a01b031661148c565b15611ae557836001600160a01b031663150b7a02611a056114ef565b8786866040518563ffffffff1660e01b8152600401611a27949392919061227e565b602060405180830381600087803b158015611a4157600080fd5b505af1925050508015611a71575060408051601f3d908101601f19168201909252611a6e91810190612102565b60015b611acb573d808015611a9f576040519150601f19603f3d011682016040523d82523d6000602084013e611aa4565b606091505b508051611ac35760405162461bcd60e51b81526004016107b790612389565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115de565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611b4184610cb0565b611b4b9190612af9565b600083815260076020526040902054909150808214611b9e576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611be390600190612af9565b60008381526009602052604081205460088054939450909284908110611c1957634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611c4857634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c8e57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611cb583610cb0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611d145760405162461bcd60e51b81526004016107b79061273d565b611d1d816114d2565b15611d3a5760405162461bcd60e51b81526004016107b790612447565b611d4660008383611919565b6001600160a01b0382166000908152600360205260408120805460019290611d6f908490612aae565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611dd990612b3c565b90600052602060002090601f016020900481019282611dfb5760008555611e41565b82601f10611e1457805160ff1916838001178555611e41565b82800160010185558215611e41579182015b82811115611e41578251825591602001919060010190611e26565b50611e4d929150611e51565b5090565b5b80821115611e4d5760008155600101611e52565b600067ffffffffffffffff831115611e8057611e80612bd2565b611e93601f8401601f1916602001612a78565b9050828152838383011115611ea757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146106f057600080fd5b600060208284031215611ee6578081fd5b6111f682611ebe565b60008060408385031215611f01578081fd5b611f0a83611ebe565b9150611f1860208401611ebe565b90509250929050565b600080600060608486031215611f35578081fd5b611f3e84611ebe565b9250611f4c60208501611ebe565b9150604084013590509250925092565b60008060008060808587031215611f71578081fd5b611f7a85611ebe565b9350611f8860208601611ebe565b925060408501359150606085013567ffffffffffffffff811115611faa578182fd5b8501601f81018713611fba578182fd5b611fc987823560208401611e66565b91505092959194509250565b60008060408385031215611fe7578182fd5b611ff083611ebe565b915060208301358015158114612004578182fd5b809150509250929050565b60008060408385031215612021578182fd5b61202a83611ebe565b946020939093013593505050565b6000602080838503121561204a578182fd5b823567ffffffffffffffff80821115612061578384fd5b818501915085601f830112612074578384fd5b81358181111561208657612086612bd2565b8381029150612096848301612a78565b8181528481019084860184860187018a10156120b0578788fd5b8795505b838610156120d9576120c581611ebe565b8352600195909501949186019186016120b4565b5098975050505050505050565b6000602082840312156120f7578081fd5b81356111f681612be8565b600060208284031215612113578081fd5b81516111f681612be8565b60006020828403121561212f578081fd5b813567ffffffffffffffff811115612145578182fd5b8201601f81018413612155578182fd5b6115de84823560208401611e66565b600060208284031215612175578081fd5b5035919050565b60008151808452612194816020860160208601612b10565b601f01601f19169290920160200192915050565b6000845160206121bb8285838a01612b10565b8551918401916121ce8184848a01612b10565b85549201918390600281046001808316806121ea57607f831692505b85831081141561220857634e487b7160e01b88526022600452602488fd5b80801561221c576001811461222d57612259565b60ff19851688528388019550612259565b6122368b612aa2565b895b858110156122515781548a820152908401908801612238565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122b19083018461217c565b9695505050505050565b901515815260200190565b6000602082526111f6602083018461217c565b602080825260169082015275616d6f756e7420657863656564732062616c616e636560501b604082015260600190565b6020808252818101527f43616e206f6e6c79206d696e74203520746f6b656e7320617420612074696d65604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252600c908201526b616d6f756e7420656d70747960a01b604082015260600190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252602a908201527f5468652073656e6465722069736e277420656c696769626c6520666f7220707260408201526969766174652073616c6560b01b606082015260800190565b6020808252818101527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526032908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015271206f6620426174746c65204275726765727360701b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526032908201527f507269766174652053616c65206d7573742062652061637469766520746f206d604082015271696e7420426174746c65204275726765727360701b606082015260800190565b6020808252602a908201527f53616c65206d7573742062652061637469766520746f206d696e7420426174746040820152696c65204275726765727360b01b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526024908201527f43616e2068617665203520426174746c652042757267657273207065722077616040820152631b1b195d60e21b606082015260800190565b6020808252600c908201526b1859191c995cdcc81b9d5b1b60a21b604082015260600190565b90815260200190565b60405181810167ffffffffffffffff81118282101715612a9a57612a9a612bd2565b604052919050565b60009081526020902090565b60008219821115612ac157612ac1612ba6565b500190565b600082612ad557612ad5612bbc565b500490565b6000816000190483118215151615612af457612af4612ba6565b500290565b600082821015612b0b57612b0b612ba6565b500390565b60005b83811015612b2b578181015183820152602001612b13565b8381111561115e5750506000910152565b600281046001821680612b5057607f821691505b60208210811415612b7157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b8b57612b8b612ba6565b5060010190565b600082612ba157612ba1612bbc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113ae57600080fdfea2646970667358221220845e79d7d0f6c41659b727ac7eec9dc0ecbe1b3c314b667fa13d036a80461f6864736f6c63430008000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e426174746c652042757267657273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000242420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d526e43473862356338716b50536d6f5158625453524b456a33526f517a35396d77785251663159336d7771582f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Battle Burgers
Arg [1] : _symbol (string): BB
Arg [2] : _initBaseURI (string): ipfs://QmRnCG8b5c8qkPSmoQXbTSRKEj3RoQz59mwxRQf1Y3mwqX/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [4] : 426174746c652042757267657273000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 4242000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d526e43473862356338716b50536d6f5158625453524b45
Arg [9] : 6a33526f517a35396d77785251663159336d7771582f00000000000000000000


Deployed Bytecode Sourcemap

50215:5483:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37020:224;;;;;;;;;;-1:-1:-1;37020:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50687:39;;;;;;;;;;;;;:::i;24912:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26471:221::-;;;;;;;;;;-1:-1:-1;26471:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;25994:411::-;;;;;;;;;;-1:-1:-1;25994:411:0;;;;;:::i;:::-;;:::i;:::-;;37660:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;50633:45::-;;;;;;;;;;;;;:::i;27361:339::-;;;;;;;;;;-1:-1:-1;27361:339:0;;;;;:::i;:::-;;:::i;50519:51::-;;;;;;;;;;;;;:::i;37328:256::-;;;;;;;;;;-1:-1:-1;37328:256:0;;;;;:::i;:::-;;:::i;52704:89::-;;;;;;;;;;;;;:::i;52801:110::-;;;;;;;;;;;;;:::i;27771:185::-;;;;;;;;;;-1:-1:-1;27771:185:0;;;;;:::i;:::-;;:::i;37850:233::-;;;;;;;;;;-1:-1:-1;37850:233:0;;;;;:::i;:::-;;:::i;52919:104::-;;;;;;;;;;-1:-1:-1;52919:104:0;;;;;:::i;:::-;;:::i;24606:239::-;;;;;;;;;;-1:-1:-1;24606:239:0;;;;;:::i;:::-;;:::i;54701:994::-;;;;;;:::i;:::-;;:::i;50352:21::-;;;;;;;;;;;;;:::i;24336:208::-;;;;;;;;;;-1:-1:-1;24336:208:0;;;;;:::i;:::-;;:::i;2529:94::-;;;;;;;;;;;;;:::i;53254:158::-;;;;;;;;;;-1:-1:-1;53254:158:0;;;;;:::i;:::-;;:::i;51917:123::-;;;:::i;1878:87::-;;;;;;;;;;;;;:::i;53167:81::-;;;;;;;;;;-1:-1:-1;53167:81:0;;;;;:::i;:::-;;:::i;50472:38::-;;;;;;;;;;;;;:::i;25081:104::-;;;;;;;;;;;;;:::i;53882:811::-;;;;;;:::i;:::-;;:::i;50430:33::-;;;;;;;;;;;;;:::i;26764:295::-;;;;;;;;;;-1:-1:-1;26764:295:0;;;;;:::i;:::-;;:::i;53420:448::-;;;;;;;;;;-1:-1:-1;53420:448:0;;;;;:::i;:::-;;:::i;52372:126::-;;;;;;;;;;-1:-1:-1;52372:126:0;;;;;:::i;:::-;;:::i;28027:328::-;;;;;;;;;;-1:-1:-1;28027:328:0;;;;;:::i;:::-;;:::i;50579:44::-;;;;;;;;;;;;;:::i;50384:37::-;;;;;;;;;;;;;:::i;51480:425::-;;;;;;;;;;-1:-1:-1;51480:425:0;;;;;:::i;:::-;;:::i;53035:124::-;;;;;;;;;;-1:-1:-1;53035:124:0;;;;;:::i;:::-;;:::i;52506:190::-;;;;;;;;;;-1:-1:-1;52506:190:0;;;;;:::i;:::-;;:::i;27130:164::-;;;;;;;;;;-1:-1:-1;27130:164:0;;;;;:::i;:::-;;:::i;50735:32::-;;;;;;;;;;;;;:::i;2778:192::-;;;;;;;;;;-1:-1:-1;2778:192:0;;;;;:::i;:::-;;:::i;52056:308::-;;;;;;;;;;-1:-1:-1;52056:308:0;;;;;:::i;:::-;;:::i;37020:224::-;37122:4;-1:-1:-1;;;;;;37146:50:0;;-1:-1:-1;;;37146:50:0;;:90;;;37200:36;37224:11;37200:23;:36::i;:::-;37139:97;;37020:224;;;;:::o;50687:39::-;;;;;;:::o;24912:100::-;24966:13;24999:5;24992:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24912:100;:::o;26471:221::-;26547:7;26575:16;26583:7;26575;:16::i;:::-;26567:73;;;;-1:-1:-1;;;26567:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;26660:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26660:24:0;;26471:221::o;25994:411::-;26075:13;26091:23;26106:7;26091:14;:23::i;:::-;26075:39;;26139:5;-1:-1:-1;;;;;26133:11:0;:2;-1:-1:-1;;;;;26133:11:0;;;26125:57;;;;-1:-1:-1;;;26125:57:0;;;;;;;:::i;:::-;26233:5;-1:-1:-1;;;;;26217:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;26217:21:0;;:62;;;;26242:37;26259:5;26266:12;:10;:12::i;26242:37::-;26195:168;;;;-1:-1:-1;;;26195:168:0;;;;;;;:::i;:::-;26376:21;26385:2;26389:7;26376:8;:21::i;:::-;25994:411;;;:::o;37660:113::-;37748:10;:17;37660:113;:::o;50633:45::-;;;;:::o;27361:339::-;27556:41;27575:12;:10;:12::i;:::-;27589:7;27556:18;:41::i;:::-;27548:103;;;;-1:-1:-1;;;27548:103:0;;;;;;;:::i;:::-;27664:28;27674:4;27680:2;27684:7;27664:9;:28::i;50519:51::-;;;;:::o;37328:256::-;37425:7;37461:23;37478:5;37461:16;:23::i;:::-;37453:5;:31;37445:87;;;;-1:-1:-1;;;37445:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;37550:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37328:256::o;52704:89::-;2109:12;:10;:12::i;:::-;-1:-1:-1;;;;;2098:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2098:23:0;;2090:68;;;;-1:-1:-1;;;2090:68:0;;;;;;;:::i;:::-;52773:12:::1;::::0;;-1:-1:-1;;52757:28:0;::::1;52773:12;::::0;;;::::1;;;52772:13;52757:28:::0;;::::1;;::::0;;52704:89::o;52801:110::-;2109:12;:10;:12::i;:::-;-1:-1:-1;;;;;2098:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2098:23:0;;2090:68;;;;-1:-1:-1;;;2090:68:0;;;;;;;:::i;:::-;52884:19:::1;::::0;;-1:-1:-1;;52861:42:0;::::1;52884:19;::::0;;::::1;52883:20;52861:42;::::0;;52801:110::o;27771:185::-;27909:39;27926:4;27932:2;27936:7;27909:39;;;;;;;;;;;;:16;:39::i;37850:233::-;37925:7;37961:30;:28;:30::i;:::-;37953:5;:38;37945:95;;;;-1:-1:-1;;;37945:95:0;;;;;;;:::i;:::-;38058:10;38069:5;38058:17;;;;;;-1:-1:-1;;;38058:17:0;;;;;;;;;;;;;;;;;38051:24;;37850:233;;;:::o;52919:104::-;2109:12;:10;:12::i;:::-;-1:-1:-1;;;;;2098:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2098:23:0;;2090:68;;;;-1:-1:-1;;;2090:68:0;;;;;;;:::i;:::-;52994:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;52919:104:::0;:::o;24606:239::-;24678:7;24714:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24714:16:0;24749:19;24741:73;;;;-1:-1:-1;;;24741:73:0;;;;;;;:::i;54701:994::-;54803:7;:5;:7::i;:::-;-1:-1:-1;;;;;54789:21:0;:10;-1:-1:-1;;;;;54789:21:0;;54785:646;;54835:19;;;;54827:82;;;;-1:-1:-1;;;54827:82:0;;;;;;;:::i;:::-;54974:1;54949:21;54959:10;54949:9;:21::i;:::-;54932:38;;:14;:38;:::i;:::-;:43;;54924:92;;;;-1:-1:-1;;;54924:92:0;;;;;;;:::i;:::-;55039:33;55061:10;55039:21;:33::i;:::-;55031:88;;;;-1:-1:-1;;;55031:88:0;;;;;;;:::i;:::-;55179:29;;55142:33;55160:14;55142:13;:11;:13::i;:::-;:17;;:33::i;:::-;:66;;55134:129;;;;-1:-1:-1;;;55134:129:0;;;;;;;:::i;:::-;55299:5;;:25;;55309:14;55299:9;:25::i;:::-;55286:9;:38;;55278:82;;;;-1:-1:-1;;;55278:82:0;;;;;;;:::i;:::-;55404:14;55396:5;;:22;;;;:::i;:::-;55383:9;:35;;55375:44;;;;;;55455:6;55451:237;55471:14;55467:1;:18;55451:237;;;55507:17;55527:13;:11;:13::i;:::-;55507:33;;55575:29;;55559:13;:11;:13::i;:::-;:45;55555:122;;;55625:36;55635:10;55647:13;:9;55659:1;55647:13;:::i;:::-;55625:9;:36::i;:::-;-1:-1:-1;55487:3:0;;;;:::i;:::-;;;;55451:237;;50352:21;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24336:208::-;24408:7;-1:-1:-1;;;;;24436:19:0;;24428:74;;;;-1:-1:-1;;;24428:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;24520:16:0;;;;;:9;:16;;;;;;;24336:208::o;2529:94::-;2109:12;:10;:12::i;:::-;-1:-1:-1;;;;;2098:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2098:23:0;;2090:68;;;;-1:-1:-1;;;2090:68:0;;;;;;;:::i;:::-;2594:21:::1;2612:1;2594:9;:21::i;:::-;2529:94::o:0;53254:158::-;2109:12;:10;:12::i;:::-;-1:-1:-1;;;;;2098:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2098:23:0;;2090:68;;;;-1:-1:-1;;;2090:68:0;;;;;;;:::i;:::-;53348:25:::1;:56:::0;53254:158::o;51917:123::-;2109:12;:10;:12::i;:::-;-1:-1:-1;;;;;2098:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2098:23:0;;2090:68;;;;-1:-1:-1;;;2090:68:0;;;;;;;:::i;:::-;51984:47:::1;::::0;51992:10:::1;::::0;52009:21:::1;51984:47:::0;::::1;;;::::0;::::1;::::0;;;52009:21;51992:10;51984:47;::::1;;;;;;51976:56;;;::::0;::::1;1878:87:::0;1951:6;;-1:-1:-1;;;;;1951:6:0;1878:87;:::o;53167:81::-;2109:12;:10;:12::i;:::-;-1:-1:-1;;;;;2098:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2098:23:0;;2090:68;;;;-1:-1:-1;;;2090:68:0;;;;;;;:::i;:::-;53226:5:::1;:14:::0;53167:81::o;50472:38::-;;;;:::o;25081:104::-;25137:13;25170:7;25163:14;;;;;:::i;53882:811::-;53973:7;:5;:7::i;:::-;-1:-1:-1;;;;;53959:21:0;:10;-1:-1:-1;;;;;53959:21:0;;53955:487;;54005:12;;;;;;;53997:67;;;;-1:-1:-1;;;53997:67:0;;;;;;;:::i;:::-;54105:1;54087:14;:19;;54079:64;;;;-1:-1:-1;;;54079:64:0;;;;;;;:::i;:::-;54203:16;;54166:33;54184:14;54166:13;:11;:13::i;:33::-;:53;;54158:116;;;;-1:-1:-1;;;54158:116:0;;;;;;;:::i;:::-;54310:5;;:25;;54320:14;54310:9;:25::i;:::-;54297:9;:38;;54289:82;;;;-1:-1:-1;;;54289:82:0;;;;;;;:::i;:::-;54415:14;54407:5;;:22;;;;:::i;:::-;54394:9;:35;;54386:44;;;;;;54466:6;54462:224;54482:14;54478:1;:18;54462:224;;;54518:17;54538:13;:11;:13::i;:::-;54518:33;;54586:16;;54570:13;:11;:13::i;:::-;:32;54566:109;;;54623:36;54633:10;54645:13;:9;54657:1;54645:13;:::i;54623:36::-;-1:-1:-1;54498:3:0;;;;:::i;:::-;;;;54462:224;;50430:33;;;;:::o;26764:295::-;26879:12;:10;:12::i;:::-;-1:-1:-1;;;;;26867:24:0;:8;-1:-1:-1;;;;;26867:24:0;;;26859:62;;;;-1:-1:-1;;;26859:62:0;;;;;;;:::i;:::-;26979:8;26934:18;:32;26953:12;:10;:12::i;:::-;-1:-1:-1;;;;;26934:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;26934:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;26934:53:0;;;;;;;;;;;27018:12;:10;:12::i;:::-;-1:-1:-1;;;;;27003:48:0;;27042:8;27003:48;;;;;;:::i;:::-;;;;;;;;26764:295;;:::o;53420:448::-;2109:12;:10;:12::i;:::-;-1:-1:-1;;;;;2098:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2098:23:0;;2090:68;;;;-1:-1:-1;;;2090:68:0;;;;;;;:::i;:::-;53526:1:::1;53509:14;:18;:64;;;;;53549:24;;53531:14;:42;;53509:64;53501:109;;;;-1:-1:-1::0;;;53501:109:0::1;;;;;;;:::i;:::-;53627:9;53623:154;53646:14;53642:1;:18;53623:154;;;53682:17;53702:13;:11;:13::i;:::-;:16;::::0;53717:1:::1;53702:16;:::i;:::-;53682:36;;53733:32;53743:10;53755:9;53733;:32::i;:::-;-1:-1:-1::0;53662:3:0;::::1;::::0;::::1;:::i;:::-;;;;53623:154;;;-1:-1:-1::0;53816:24:0::1;::::0;:44:::1;::::0;53845:14;53816:28:::1;:44::i;:::-;53789:24;:71:::0;-1:-1:-1;53420:448:0:o;52372:126::-;-1:-1:-1;;;;;52472:18:0;52449:4;52472:18;;;:9;:18;;;;;;;;;52372:126::o;28027:328::-;28202:41;28221:12;:10;:12::i;:::-;28235:7;28202:18;:41::i;:::-;28194:103;;;;-1:-1:-1;;;28194:103:0;;;;;;;:::i;:::-;28308:39;28322:4;28328:2;28332:7;28341:5;28308:13;:39::i;:::-;28027:328;;;;:::o;50579:44::-;;;;:::o;50384:37::-;;;;;;;:::i;51480:425::-;51578:13;51621:16;51629:7;51621;:16::i;:::-;51605:97;;;;-1:-1:-1;;;51605:97:0;;;;;;;:::i;:::-;51711:28;51742:10;:8;:10::i;:::-;51711:41;;51797:1;51772:14;51766:28;:32;:133;;;;;;;;;;;;;;;;;51834:14;51850:18;:7;:16;:18::i;:::-;51870:13;51817:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51766:133;51759:140;51480:425;-1:-1:-1;;;51480:425:0:o;53035:124::-;2109:12;:10;:12::i;:::-;-1:-1:-1;;;;;2098:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2098:23:0;;2090:68;;;;-1:-1:-1;;;2090:68:0;;;;;;;:::i;:::-;53118:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;52506:190::-:0;2109:12;:10;:12::i;:::-;-1:-1:-1;;;;;2098:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2098:23:0;;2090:68;;;;-1:-1:-1;;;2090:68:0;;;;;;;:::i;:::-;52595:6:::1;52591:98;52611:8;:15;52607:1;:19;52591:98;;;52673:4;52648:9;:22;52658:8;52667:1;52658:11;;;;;;-1:-1:-1::0;;;52658:11:0::1;;;;;;;;;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;52648:22:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;52648:22:0;:29;;-1:-1:-1;;52648:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52628:3;::::1;::::0;::::1;:::i;:::-;;;;52591:98;;27130:164:::0;-1:-1:-1;;;;;27251:25:0;;;27227:4;27251:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27130:164::o;50735:32::-;;;;;;;;;:::o;2778:192::-;2109:12;:10;:12::i;:::-;-1:-1:-1;;;;;2098:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2098:23:0;;2090:68;;;;-1:-1:-1;;;2090:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2867:22:0;::::1;2859:73;;;;-1:-1:-1::0;;;2859:73:0::1;;;;;;;:::i;:::-;2943:19;2953:8;2943:9;:19::i;:::-;2778:192:::0;:::o;52056:308::-;2109:12;:10;:12::i;:::-;-1:-1:-1;;;;;2098:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2098:23:0;;2090:68;;;;-1:-1:-1;;;2090:68:0;;;;;;;:::i;:::-;52170:1:::1;52161:6;:10;52153:35;;;;-1:-1:-1::0;;;52153:35:0::1;;;;;;;:::i;:::-;52217:21;52207:6;:31;;52199:66;;;;-1:-1:-1::0;;;52199:66:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;52284:16:0;::::1;52276:41;;;;-1:-1:-1::0;;;52276:41:0::1;;;;;;;:::i;:::-;52328:28;::::0;-1:-1:-1;;;;;52328:20:0;::::1;::::0;:28;::::1;;;::::0;52349:6;;52328:28:::1;::::0;;;52349:6;52328:20;:28;::::1;;;;;;;;;;;;;::::0;::::1;;;;13609:387:::0;13932:20;13980:8;;;13609:387::o;23967:305::-;24069:4;-1:-1:-1;;;;;;24106:40:0;;-1:-1:-1;;;24106:40:0;;:105;;-1:-1:-1;;;;;;;24163:48:0;;-1:-1:-1;;;24163:48:0;24106:105;:158;;;;24228:36;24252:11;24228:23;:36::i;29865:127::-;29930:4;29954:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29954:16:0;:30;;;29865:127::o;664:98::-;744:10;664:98;:::o;33847:174::-;33922:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33922:29:0;-1:-1:-1;;;;;33922:29:0;;;;;;;;:24;;33976:23;33922:24;33976:14;:23::i;:::-;-1:-1:-1;;;;;33967:46:0;;;;;;;;;;;33847:174;;:::o;30159:348::-;30252:4;30277:16;30285:7;30277;:16::i;:::-;30269:73;;;;-1:-1:-1;;;30269:73:0;;;;;;;:::i;:::-;30353:13;30369:23;30384:7;30369:14;:23::i;:::-;30353:39;;30422:5;-1:-1:-1;;;;;30411:16:0;:7;-1:-1:-1;;;;;30411:16:0;;:51;;;;30455:7;-1:-1:-1;;;;;30431:31:0;:20;30443:7;30431:11;:20::i;:::-;-1:-1:-1;;;;;30431:31:0;;30411:51;:87;;;;30466:32;30483:5;30490:7;30466:16;:32::i;:::-;30403:96;30159:348;-1:-1:-1;;;;30159:348:0:o;33151:578::-;33310:4;-1:-1:-1;;;;;33283:31:0;:23;33298:7;33283:14;:23::i;:::-;-1:-1:-1;;;;;33283:31:0;;33275:85;;;;-1:-1:-1;;;33275:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33379:16:0;;33371:65;;;;-1:-1:-1;;;33371:65:0;;;;;;;:::i;:::-;33449:39;33470:4;33476:2;33480:7;33449:20;:39::i;:::-;33553:29;33570:1;33574:7;33553:8;:29::i;:::-;-1:-1:-1;;;;;33595:15:0;;;;;;:9;:15;;;;;:20;;33614:1;;33595:15;:20;;33614:1;;33595:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33626:13:0;;;;;;:9;:13;;;;;:18;;33643:1;;33626:13;:18;;33643:1;;33626:18;:::i;:::-;;;;-1:-1:-1;;33655:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33655:21:0;-1:-1:-1;;;;;33655:21:0;;;;;;;;;33694:27;;33655:16;;33694:27;;;;;;;33151:578;;;:::o;45962:98::-;46020:7;46047:5;46051:1;46047;:5;:::i;46700:98::-;46758:7;46785:5;46789:1;46785;:5;:::i;30849:110::-;30925:26;30935:2;30939:7;30925:26;;;;;;;;;;;;:9;:26::i;2978:173::-;3053:6;;;-1:-1:-1;;;;;3070:17:0;;;-1:-1:-1;;;;;;3070:17:0;;;;;;;3103:40;;3053:6;;;3070:17;3053:6;;3103:40;;3034:16;;3103:40;2978:173;;:::o;46343:98::-;46401:7;46428:5;46432:1;46428;:5;:::i;29237:315::-;29394:28;29404:4;29410:2;29414:7;29394:9;:28::i;:::-;29441:48;29464:4;29470:2;29474:7;29483:5;29441:22;:48::i;:::-;29433:111;;;;-1:-1:-1;;;29433:111:0;;;;;;;:::i;51047:104::-;51107:13;51136:7;51129:14;;;;;:::i;11082:723::-;11138:13;11359:10;11355:53;;-1:-1:-1;11386:10:0;;;;;;;;;;;;-1:-1:-1;;;11386:10:0;;;;;;11355:53;11433:5;11418:12;11474:78;11481:9;;11474:78;;11507:8;;;;:::i;:::-;;-1:-1:-1;11530:10:0;;-1:-1:-1;11538:2:0;11530:10;;:::i;:::-;;;11474:78;;;11562:19;11594:6;11584:17;;;;;;-1:-1:-1;;;11584:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11584:17:0;;11562:39;;11612:154;11619:10;;11612:154;;11646:11;11656:1;11646:11;;:::i;:::-;;-1:-1:-1;11715:10:0;11723:2;11715:5;:10;:::i;:::-;11702:24;;:2;:24;:::i;:::-;11689:39;;11672:6;11679;11672:14;;;;;;-1:-1:-1;;;11672:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;11672:56:0;;;;;;;;-1:-1:-1;11743:11:0;11752:2;11743:11;;:::i;:::-;;;11612:154;;10607:157;-1:-1:-1;;;;;;10716:40:0;;-1:-1:-1;;;10716:40:0;10607:157;;;:::o;38696:589::-;38840:45;38867:4;38873:2;38877:7;38840:26;:45::i;:::-;-1:-1:-1;;;;;38902:18:0;;38898:187;;38937:40;38969:7;38937:31;:40::i;:::-;38898:187;;;39007:2;-1:-1:-1;;;;;38999:10:0;:4;-1:-1:-1;;;;;38999:10:0;;38995:90;;39026:47;39059:4;39065:7;39026:32;:47::i;:::-;-1:-1:-1;;;;;39099:16:0;;39095:183;;39132:45;39169:7;39132:36;:45::i;:::-;39095:183;;;39205:4;-1:-1:-1;;;;;39199:10:0;:2;-1:-1:-1;;;;;39199:10:0;;39195:83;;39226:40;39254:2;39258:7;39226:27;:40::i;31186:321::-;31316:18;31322:2;31326:7;31316:5;:18::i;:::-;31367:54;31398:1;31402:2;31406:7;31415:5;31367:22;:54::i;:::-;31345:154;;;;-1:-1:-1;;;31345:154:0;;;;;;;:::i;34586:799::-;34741:4;34762:15;:2;-1:-1:-1;;;;;34762:13:0;;:15::i;:::-;34758:620;;;34814:2;-1:-1:-1;;;;;34798:36:0;;34835:12;:10;:12::i;:::-;34849:4;34855:7;34864:5;34798:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34798:72:0;;;;;;;;-1:-1:-1;;34798:72:0;;;;;;;;;;;;:::i;:::-;;;34794:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35040:13:0;;35036:272;;35083:60;;-1:-1:-1;;;35083:60:0;;;;;;;:::i;35036:272::-;35258:6;35252:13;35243:6;35239:2;35235:15;35228:38;34794:529;-1:-1:-1;;;;;;34921:51:0;-1:-1:-1;;;34921:51:0;;-1:-1:-1;34914:58:0;;34758:620;-1:-1:-1;35362:4:0;34586:799;;;;;;:::o;40008:164::-;40112:10;:17;;40085:24;;;;:15;:24;;;;;:44;;;40140:24;;;;;;;;;;;;40008:164::o;40799:988::-;41065:22;41115:1;41090:22;41107:4;41090:16;:22::i;:::-;:26;;;;:::i;:::-;41127:18;41148:26;;;:17;:26;;;;;;41065:51;;-1:-1:-1;41281:28:0;;;41277:328;;-1:-1:-1;;;;;41348:18:0;;41326:19;41348:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41399:30;;;;;;:44;;;41516:30;;:17;:30;;;;;:43;;;41277:328;-1:-1:-1;41701:26:0;;;;:17;:26;;;;;;;;41694:33;;;-1:-1:-1;;;;;41745:18:0;;;;;:12;:18;;;;;:34;;;;;;;41738:41;40799:988::o;42082:1079::-;42360:10;:17;42335:22;;42360:21;;42380:1;;42360:21;:::i;:::-;42392:18;42413:24;;;:15;:24;;;;;;42786:10;:26;;42335:46;;-1:-1:-1;42413:24:0;;42335:46;;42786:26;;;;-1:-1:-1;;;42786:26:0;;;;;;;;;;;;;;;;;42764:48;;42850:11;42825:10;42836;42825:22;;;;;;-1:-1:-1;;;42825:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;42930:28;;;:15;:28;;;;;;;:41;;;43102:24;;;;;43095:31;43137:10;:16;;;;;-1:-1:-1;;;43137:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;42082:1079;;;;:::o;39586:221::-;39671:14;39688:20;39705:2;39688:16;:20::i;:::-;-1:-1:-1;;;;;39719:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39764:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39586:221:0:o;31843:382::-;-1:-1:-1;;;;;31923:16:0;;31915:61;;;;-1:-1:-1;;;31915:61:0;;;;;;;:::i;:::-;31996:16;32004:7;31996;:16::i;:::-;31995:17;31987:58;;;;-1:-1:-1;;;31987:58:0;;;;;;;:::i;:::-;32058:45;32087:1;32091:2;32095:7;32058:20;:45::i;:::-;-1:-1:-1;;;;;32116:13:0;;;;;;:9;:13;;;;;:18;;32133:1;;32116:13;:18;;32133:1;;32116:18;:::i;:::-;;;;-1:-1:-1;;32145:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32145:21:0;-1:-1:-1;;;;;32145:21:0;;;;;;;;32184:33;;32145:16;;;32184:33;;32145:16;;32184:33;31843:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:409:1;;114:18;106:6;103:30;100:2;;;136:18;;:::i;:::-;174:58;220:2;197:17;;-1:-1:-1;;193:31:1;226:4;189:42;174:58;:::i;:::-;165:67;;255:6;248:5;241:21;295:3;286:6;281:3;277:16;274:25;271:2;;;312:1;309;302:12;271:2;361:6;356:3;349:4;342:5;338:16;325:43;415:1;408:4;399:6;392:5;388:18;384:29;377:40;90:333;;;;;:::o;428:175::-;498:20;;-1:-1:-1;;;;;547:31:1;;537:42;;527:2;;593:1;590;583:12;608:198;;720:2;708:9;699:7;695:23;691:32;688:2;;;741:6;733;726:22;688:2;769:31;790:9;769:31;:::i;811:274::-;;;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:31;1010:9;989:31;:::i;:::-;979:41;;1039:40;1075:2;1064:9;1060:18;1039:40;:::i;:::-;1029:50;;898:187;;;;;:::o;1090:342::-;;;;1236:2;1224:9;1215:7;1211:23;1207:32;1204:2;;;1257:6;1249;1242:22;1204:2;1285:31;1306:9;1285:31;:::i;:::-;1275:41;;1335:40;1371:2;1360:9;1356:18;1335:40;:::i;:::-;1325:50;;1422:2;1411:9;1407:18;1394:32;1384:42;;1194:238;;;;;:::o;1437:702::-;;;;;1609:3;1597:9;1588:7;1584:23;1580:33;1577:2;;;1631:6;1623;1616:22;1577:2;1659:31;1680:9;1659:31;:::i;:::-;1649:41;;1709:40;1745:2;1734:9;1730:18;1709:40;:::i;:::-;1699:50;;1796:2;1785:9;1781:18;1768:32;1758:42;;1851:2;1840:9;1836:18;1823:32;1878:18;1870:6;1867:30;1864:2;;;1915:6;1907;1900:22;1864:2;1943:22;;1996:4;1988:13;;1984:27;-1:-1:-1;1974:2:1;;2030:6;2022;2015:22;1974:2;2058:75;2125:7;2120:2;2107:16;2102:2;2098;2094:11;2058:75;:::i;:::-;2048:85;;;1567:572;;;;;;;:::o;2144:369::-;;;2270:2;2258:9;2249:7;2245:23;2241:32;2238:2;;;2291:6;2283;2276:22;2238:2;2319:31;2340:9;2319:31;:::i;:::-;2309:41;;2400:2;2389:9;2385:18;2372:32;2447:5;2440:13;2433:21;2426:5;2423:32;2413:2;;2474:6;2466;2459:22;2413:2;2502:5;2492:15;;;2228:285;;;;;:::o;2518:266::-;;;2647:2;2635:9;2626:7;2622:23;2618:32;2615:2;;;2668:6;2660;2653:22;2615:2;2696:31;2717:9;2696:31;:::i;:::-;2686:41;2774:2;2759:18;;;;2746:32;;-1:-1:-1;;;2605:179:1:o;2789:1010::-;;2904:2;2947;2935:9;2926:7;2922:23;2918:32;2915:2;;;2968:6;2960;2953:22;2915:2;3013:9;3000:23;3042:18;3083:2;3075:6;3072:14;3069:2;;;3104:6;3096;3089:22;3069:2;3147:6;3136:9;3132:22;3122:32;;3192:7;3185:4;3181:2;3177:13;3173:27;3163:2;;3219:6;3211;3204:22;3163:2;3260;3247:16;3282:2;3278;3275:10;3272:2;;;3288:18;;:::i;:::-;3335:2;3331;3327:11;3317:21;;3358:27;3381:2;3377;3373:11;3358:27;:::i;:::-;3419:15;;;3450:12;;;;3482:11;;;3512;;;3508:20;;3505:33;-1:-1:-1;3502:2:1;;;3556:6;3548;3541:22;3502:2;3583:6;3574:15;;3598:171;3612:2;3609:1;3606:9;3598:171;;;3669:25;3690:3;3669:25;:::i;:::-;3657:38;;3630:1;3623:9;;;;;3715:12;;;;3747;;3598:171;;;-1:-1:-1;3788:5:1;2884:915;-1:-1:-1;;;;;;;;2884:915:1:o;3804:257::-;;3915:2;3903:9;3894:7;3890:23;3886:32;3883:2;;;3936:6;3928;3921:22;3883:2;3980:9;3967:23;3999:32;4025:5;3999:32;:::i;4066:261::-;;4188:2;4176:9;4167:7;4163:23;4159:32;4156:2;;;4209:6;4201;4194:22;4156:2;4246:9;4240:16;4265:32;4291:5;4265:32;:::i;4332:482::-;;4454:2;4442:9;4433:7;4429:23;4425:32;4422:2;;;4475:6;4467;4460:22;4422:2;4520:9;4507:23;4553:18;4545:6;4542:30;4539:2;;;4590:6;4582;4575:22;4539:2;4618:22;;4671:4;4663:13;;4659:27;-1:-1:-1;4649:2:1;;4705:6;4697;4690:22;4649:2;4733:75;4800:7;4795:2;4782:16;4777:2;4773;4769:11;4733:75;:::i;4819:190::-;;4931:2;4919:9;4910:7;4906:23;4902:32;4899:2;;;4952:6;4944;4937:22;4899:2;-1:-1:-1;4980:23:1;;4889:120;-1:-1:-1;4889:120:1:o;5014:259::-;;5095:5;5089:12;5122:6;5117:3;5110:19;5138:63;5194:6;5187:4;5182:3;5178:14;5171:4;5164:5;5160:16;5138:63;:::i;:::-;5255:2;5234:15;-1:-1:-1;;5230:29:1;5221:39;;;;5262:4;5217:50;;5065:208;-1:-1:-1;;5065:208:1:o;5278:1532::-;;5540:6;5534:13;5566:4;5579:51;5623:6;5618:3;5613:2;5605:6;5601:15;5579:51;:::i;:::-;5693:13;;5652:16;;;;5715:55;5693:13;5652:16;5737:15;;;5715:55;:::i;:::-;5861:13;;5792:20;;;5832:3;;5938:1;5923:17;;5959:1;5995:18;;;;6022:2;;6100:4;6090:8;6086:19;6074:31;;6022:2;6163;6153:8;6150:16;6130:18;6127:40;6124:2;;;-1:-1:-1;;;6190:33:1;;6246:4;6243:1;6236:15;6276:4;6197:3;6264:17;6124:2;6307:18;6334:110;;;;6458:1;6453:332;;;;6300:485;;6334:110;-1:-1:-1;;6369:24:1;;6355:39;;6414:20;;;;-1:-1:-1;6334:110:1;;6453:332;6489:39;6521:6;6489:39;:::i;:::-;6550:3;6566:169;6580:8;6577:1;6574:15;6566:169;;;6662:14;;6647:13;;;6640:37;6705:16;;;;6597:10;;6566:169;;;6570:3;;6766:8;6759:5;6755:20;6748:27;;6300:485;-1:-1:-1;6801:3:1;;5510:1300;-1:-1:-1;;;;;;;;;;;5510:1300:1:o;6815:203::-;-1:-1:-1;;;;;6979:32:1;;;;6961:51;;6949:2;6934:18;;6916:102::o;7023:490::-;-1:-1:-1;;;;;7292:15:1;;;7274:34;;7344:15;;7339:2;7324:18;;7317:43;7391:2;7376:18;;7369:34;;;7439:3;7434:2;7419:18;;7412:31;;;7023:490;;7460:47;;7487:19;;7479:6;7460:47;:::i;:::-;7452:55;7226:287;-1:-1:-1;;;;;;7226:287:1:o;7518:187::-;7683:14;;7676:22;7658:41;;7646:2;7631:18;;7613:92::o;7710:221::-;;7859:2;7848:9;7841:21;7879:46;7921:2;7910:9;7906:18;7898:6;7879:46;:::i;7936:346::-;8138:2;8120:21;;;8177:2;8157:18;;;8150:30;-1:-1:-1;;;8211:2:1;8196:18;;8189:52;8273:2;8258:18;;8110:172::o;8287:356::-;8489:2;8471:21;;;8508:18;;;8501:30;8567:34;8562:2;8547:18;;8540:62;8634:2;8619:18;;8461:182::o;8648:407::-;8850:2;8832:21;;;8889:2;8869:18;;;8862:30;8928:34;8923:2;8908:18;;8901:62;-1:-1:-1;;;8994:2:1;8979:18;;8972:41;9045:3;9030:19;;8822:233::o;9060:414::-;9262:2;9244:21;;;9301:2;9281:18;;;9274:30;9340:34;9335:2;9320:18;;9313:62;-1:-1:-1;;;9406:2:1;9391:18;;9384:48;9464:3;9449:19;;9234:240::o;9479:402::-;9681:2;9663:21;;;9720:2;9700:18;;;9693:30;9759:34;9754:2;9739:18;;9732:62;-1:-1:-1;;;9825:2:1;9810:18;;9803:36;9871:3;9856:19;;9653:228::o;9886:336::-;10088:2;10070:21;;;10127:2;10107:18;;;10100:30;-1:-1:-1;;;10161:2:1;10146:18;;10139:42;10213:2;10198:18;;10060:162::o;10227:352::-;10429:2;10411:21;;;10468:2;10448:18;;;10441:30;10507;10502:2;10487:18;;10480:58;10570:2;10555:18;;10401:178::o;10584:406::-;10786:2;10768:21;;;10825:2;10805:18;;;10798:30;10864:34;10859:2;10844:18;;10837:62;-1:-1:-1;;;10930:2:1;10915:18;;10908:40;10980:3;10965:19;;10758:232::o;10995:356::-;11197:2;11179:21;;;11216:18;;;11209:30;11275:34;11270:2;11255:18;;11248:62;11342:2;11327:18;;11169:182::o;11356:400::-;11558:2;11540:21;;;11597:2;11577:18;;;11570:30;11636:34;11631:2;11616:18;;11609:62;-1:-1:-1;;;11702:2:1;11687:18;;11680:34;11746:3;11731:19;;11530:226::o;11761:349::-;11963:2;11945:21;;;12002:2;11982:18;;;11975:30;12041:27;12036:2;12021:18;;12014:55;12101:2;12086:18;;11935:175::o;12115:355::-;12317:2;12299:21;;;12356:2;12336:18;;;12329:30;12395:33;12390:2;12375:18;;12368:61;12461:2;12446:18;;12289:181::o;12475:408::-;12677:2;12659:21;;;12716:2;12696:18;;;12689:30;12755:34;12750:2;12735:18;;12728:62;-1:-1:-1;;;12821:2:1;12806:18;;12799:42;12873:3;12858:19;;12649:234::o;12888:414::-;13090:2;13072:21;;;13129:2;13109:18;;;13102:30;13168:34;13163:2;13148:18;;13141:62;-1:-1:-1;;;13234:2:1;13219:18;;13212:48;13292:3;13277:19;;13062:240::o;13307:420::-;13509:2;13491:21;;;13548:2;13528:18;;;13521:30;13587:34;13582:2;13567:18;;13560:62;13658:26;13653:2;13638:18;;13631:54;13717:3;13702:19;;13481:246::o;13732:406::-;13934:2;13916:21;;;13973:2;13953:18;;;13946:30;14012:34;14007:2;13992:18;;13985:62;-1:-1:-1;;;14078:2:1;14063:18;;14056:40;14128:3;14113:19;;13906:232::o;14143:405::-;14345:2;14327:21;;;14384:2;14364:18;;;14357:30;14423:34;14418:2;14403:18;;14396:62;-1:-1:-1;;;14489:2:1;14474:18;;14467:39;14538:3;14523:19;;14317:231::o;14553:356::-;14755:2;14737:21;;;14774:18;;;14767:30;14833:34;14828:2;14813:18;;14806:62;14900:2;14885:18;;14727:182::o;14914:408::-;15116:2;15098:21;;;15155:2;15135:18;;;15128:30;15194:34;15189:2;15174:18;;15167:62;-1:-1:-1;;;15260:2:1;15245:18;;15238:42;15312:3;15297:19;;15088:234::o;15327:356::-;15529:2;15511:21;;;15548:18;;;15541:30;15607:34;15602:2;15587:18;;15580:62;15674:2;15659:18;;15501:182::o;15688:405::-;15890:2;15872:21;;;15929:2;15909:18;;;15902:30;15968:34;15963:2;15948:18;;15941:62;-1:-1:-1;;;16034:2:1;16019:18;;16012:39;16083:3;16068:19;;15862:231::o;16098:411::-;16300:2;16282:21;;;16339:2;16319:18;;;16312:30;16378:34;16373:2;16358:18;;16351:62;-1:-1:-1;;;16444:2:1;16429:18;;16422:45;16499:3;16484:19;;16272:237::o;16514:414::-;16716:2;16698:21;;;16755:2;16735:18;;;16728:30;16794:34;16789:2;16774:18;;16767:62;-1:-1:-1;;;16860:2:1;16845:18;;16838:48;16918:3;16903:19;;16688:240::o;16933:406::-;17135:2;17117:21;;;17174:2;17154:18;;;17147:30;17213:34;17208:2;17193:18;;17186:62;-1:-1:-1;;;17279:2:1;17264:18;;17257:40;17329:3;17314:19;;17107:232::o;17344:397::-;17546:2;17528:21;;;17585:2;17565:18;;;17558:30;17624:34;17619:2;17604:18;;17597:62;-1:-1:-1;;;17690:2:1;17675:18;;17668:31;17731:3;17716:19;;17518:223::o;17746:413::-;17948:2;17930:21;;;17987:2;17967:18;;;17960:30;18026:34;18021:2;18006:18;;17999:62;-1:-1:-1;;;18092:2:1;18077:18;;18070:47;18149:3;18134:19;;17920:239::o;18164:408::-;18366:2;18348:21;;;18405:2;18385:18;;;18378:30;18444:34;18439:2;18424:18;;18417:62;-1:-1:-1;;;18510:2:1;18495:18;;18488:42;18562:3;18547:19;;18338:234::o;18577:400::-;18779:2;18761:21;;;18818:2;18798:18;;;18791:30;18857:34;18852:2;18837:18;;18830:62;-1:-1:-1;;;18923:2:1;18908:18;;18901:34;18967:3;18952:19;;18751:226::o;18982:336::-;19184:2;19166:21;;;19223:2;19203:18;;;19196:30;-1:-1:-1;;;19257:2:1;19242:18;;19235:42;19309:2;19294:18;;19156:162::o;19323:177::-;19469:25;;;19457:2;19442:18;;19424:76::o;19505:251::-;19575:2;19569:9;19605:17;;;19652:18;19637:34;;19673:22;;;19634:62;19631:2;;;19699:18;;:::i;:::-;19735:2;19728:22;19549:207;;-1:-1:-1;19549:207:1:o;19761:129::-;;19829:17;;;19879:4;19863:21;;;19819:71::o;19895:128::-;;19966:1;19962:6;19959:1;19956:13;19953:2;;;19972:18;;:::i;:::-;-1:-1:-1;20008:9:1;;19943:80::o;20028:120::-;;20094:1;20084:2;;20099:18;;:::i;:::-;-1:-1:-1;20133:9:1;;20074:74::o;20153:168::-;;20259:1;20255;20251:6;20247:14;20244:1;20241:21;20236:1;20229:9;20222:17;20218:45;20215:2;;;20266:18;;:::i;:::-;-1:-1:-1;20306:9:1;;20205:116::o;20326:125::-;;20394:1;20391;20388:8;20385:2;;;20399:18;;:::i;:::-;-1:-1:-1;20436:9:1;;20375:76::o;20456:258::-;20528:1;20538:113;20552:6;20549:1;20546:13;20538:113;;;20628:11;;;20622:18;20609:11;;;20602:39;20574:2;20567:10;20538:113;;;20669:6;20666:1;20663:13;20660:2;;;-1:-1:-1;;20704:1:1;20686:16;;20679:27;20509:205::o;20719:380::-;20804:1;20794:12;;20851:1;20841:12;;;20862:2;;20916:4;20908:6;20904:17;20894:27;;20862:2;20969;20961:6;20958:14;20938:18;20935:38;20932:2;;;21015:10;21010:3;21006:20;21003:1;20996:31;21050:4;21047:1;21040:15;21078:4;21075:1;21068:15;20932:2;;20774:325;;;:::o;21104:135::-;;-1:-1:-1;;21164:17:1;;21161:2;;;21184:18;;:::i;:::-;-1:-1:-1;21231:1:1;21220:13;;21151:88::o;21244:112::-;;21302:1;21292:2;;21307:18;;:::i;:::-;-1:-1:-1;21341:9:1;;21282:74::o;21361:127::-;21422:10;21417:3;21413:20;21410:1;21403:31;21453:4;21450:1;21443:15;21477:4;21474:1;21467:15;21493:127;21554:10;21549:3;21545:20;21542:1;21535:31;21585:4;21582:1;21575:15;21609:4;21606:1;21599:15;21625:127;21686:10;21681:3;21677:20;21674:1;21667:31;21717:4;21714:1;21707:15;21741:4;21738:1;21731:15;21757:133;-1:-1:-1;;;;;;21833:32:1;;21823:43;;21813:2;;21880:1;21877;21870:12

Swarm Source

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