ETH Price: $2,622.87 (+1.19%)

Token

Bad Boy On The Floor (BOTF)
 

Overview

Max Total Supply

112 BOTF

Holders

102

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BOTF
0x464443f3e3b114bc70d421aa09eb401db4b3a51b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Bad Boy on the Floor is a collection of 3D avatars with a wide assortment of traits and accessories who will act as identity to explore the metaverse, play games, and win prizes

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BadBoyOnTheFloor

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-13
*/

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


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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

// File: @openzeppelin/contracts/utils/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/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/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/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(to).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/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/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/token/ERC721/extensions/ERC721Burnable.sol



pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

// 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: contracts/BadBoyOnTheFloor.sol


pragma solidity >=0.8.0;




contract BadBoyOnTheFloor is ERC721Enumerable, Ownable {

    using Strings for uint256;

    string _baseTokenURI;
    uint256 private _reserved = 200;
    uint256 private _price = 0.029 ether;
    uint256 private _badBoyPrice = 0.00 ether;
    uint256 public _badBoyStartCount = 10000;
    bool public _paused = false;
    bool public _badBoyPaused = false;

    // withdraw addresses
    address badboy = 0xF106F4C717C75FbD5C3cfBa21541Ea52e59d2cdE;
    address badBoyPunk = 0x7Df3E8E0c855dcEa6f27A666f320EC4C6CfCC015;
    address badBoyOwner = 0x59ff5E7E25fE76c41cf1898D4bA4F19Eb0402068;

    // 9999 badboys in total, might get reduced 
    constructor(string memory baseURI) ERC721("Bad Boy On The Floor", "BOTF")  {
        setBaseURI(baseURI);

        // team gets the first 3 boys
        _safeMint( badboy, 0);
        _safeMint( badBoyPunk, 1);
        _safeMint( badBoyOwner, 2);

    }

    function purchase(uint256 num) public payable {
        uint256 supply = totalSupply();
        require( num < 21,                              "You can purchase a maximum of 20 BadBoys" );
        require( supply + num < 10000 - _reserved,      "Exceeds maximum Badboy supply" );
        require( msg.value >= _price * num,             "Ether sent is not correct" );

        for(uint256 i; i < num; i++){
            _safeMint( msg.sender, supply + i );
        }
    }

    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    // Just in case Eth does some crazy stuff
    function setPrice(uint256 _newPrice) public onlyOwner() {
        _price = _newPrice;
    }

    function setBadBoyPrice(uint256 _newPrice) public onlyOwner() {
        _badBoyPrice = _newPrice;
    }

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

    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function getPrice() public view returns (uint256){
        return _price;
    }

    function getBadBoyprice() public view returns (uint256){
        return _badBoyPrice;
    }

    function giveAway(address _to, uint256 _amount) external onlyOwner() {
        require( _amount <= _reserved, "Exceeds reserved Badboy supply" );

        uint256 supply = totalSupply();
        for(uint256 i; i < _amount; i++){
            _safeMint( _to, supply + i );
        }

        _reserved -= _amount;
    }
    
    function _beforeTokenTransfer(address _from, address _to, uint256 _tokenId) internal virtual override(ERC721Enumerable) {
        super._beforeTokenTransfer(_from, _to, _tokenId);
    }
    
    function pause(bool val) public onlyOwner {
        _paused = val;
    }

    function badBoyPause(bool val) public onlyOwner {
        _badBoyPaused = val;
    }

    function withdrawAll() public payable onlyOwner {
        uint256 _each = address(this).balance / 2;
        require(payable(badboy).send(_each));
        require(payable(badBoyOwner).send(_each));
    }

    function withdraw(uint256 amount) public payable onlyOwner {
        require(payable(badboy).send(amount));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","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":"_badBoyPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_badBoyStartCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"badBoyPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBadBoyprice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setBadBoyPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

608060405260c8600c5566670758aa7c8000600d556000600e55612710600f556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff02191690831515021790555073f106f4c717c75fbd5c3cfba21541ea52e59d2cde601060026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737df3e8e0c855dcea6f27a666f320ec4c6cfcc015601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507359ff5e7e25fe76c41cf1898d4ba4f19eb0402068601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200016157600080fd5b50604051620059f2380380620059f2833981810160405281019062000187919062001077565b6040518060400160405280601481526020017f42616420426f79204f6e2054686520466c6f6f720000000000000000000000008152506040518060400160405280600481526020017f424f54460000000000000000000000000000000000000000000000000000000081525081600090805190602001906200020b92919062000f12565b5080600190805190602001906200022492919062000f12565b505050620002476200023b620002fe60201b60201c565b6200030660201b60201c565b6200025881620003cc60201b60201c565b6200028d601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660006200047760201b60201c565b620002c2601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200047760201b60201c565b620002f7601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660026200047760201b60201c565b506200166d565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003dc620002fe60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004026200049d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200045b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004529062001391565b60405180910390fd5b80600b90805190602001906200047392919062000f12565b5050565b62000499828260405180602001604052806000815250620004c760201b60201c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620004d983836200053560201b60201c565b620004ee60008484846200071b60201b60201c565b62000530576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005279062001309565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620005a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200059f906200136f565b60405180910390fd5b620005b981620008d560201b60201c565b15620005fc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005f3906200132b565b60405180910390fd5b62000610600083836200094160201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000662919062001447565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620007498473ffffffffffffffffffffffffffffffffffffffff166200095e60201b62001bb01760201c565b15620008c8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200077b620002fe60201b60201c565b8786866040518563ffffffff1660e01b81526004016200079f9493929190620012b5565b602060405180830381600087803b158015620007ba57600080fd5b505af1925050508015620007ee57506040513d601f19601f82011682018060405250810190620007eb91906200104b565b60015b62000877573d806000811462000821576040519150601f19603f3d011682016040523d82523d6000602084013e62000826565b606091505b506000815114156200086f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008669062001309565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620008cd565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620009598383836200097160201b62001bc31760201c565b505050565b600080823b905060008111915050919050565b6200098983838362000ab860201b62001cd71760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620009d657620009d08162000abd60201b60201c565b62000a1e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000a1d5762000a1c838262000b0660201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a6b5762000a658162000c8360201b60201c565b62000ab3565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000ab25762000ab1828262000dcb60201b60201c565b5b5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000b208462000e5760201b620010d31760201c565b62000b2c9190620014a4565b905060006007600084815260200190815260200160002054905081811462000c12576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000c999190620014a4565b905060006009600084815260200190815260200160002054905060006008838154811062000cf0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811062000d39577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000daf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600062000de38362000e5760201b620010d31760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000ecb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ec2906200134d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000f20906200157f565b90600052602060002090601f01602090048101928262000f44576000855562000f90565b82601f1062000f5f57805160ff191683800117855562000f90565b8280016001018555821562000f90579182015b8281111562000f8f57825182559160200191906001019062000f72565b5b50905062000f9f919062000fa3565b5090565b5b8082111562000fbe57600081600090555060010162000fa4565b5090565b600062000fd962000fd384620013e7565b620013b3565b90508281526020810184848401111562000ff257600080fd5b62000fff84828562001549565b509392505050565b600081519050620010188162001653565b92915050565b600082601f8301126200103057600080fd5b81516200104284826020860162000fc2565b91505092915050565b6000602082840312156200105e57600080fd5b60006200106e8482850162001007565b91505092915050565b6000602082840312156200108a57600080fd5b600082015167ffffffffffffffff811115620010a557600080fd5b620010b3848285016200101e565b91505092915050565b620010c781620014df565b82525050565b6000620010da826200141a565b620010e6818562001425565b9350620010f881856020860162001549565b620011038162001642565b840191505092915050565b60006200111d60328362001436565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600062001185601c8362001436565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000620011c7602a8362001436565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006200122f60208362001436565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006200127160208362001436565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b620012af816200153f565b82525050565b6000608082019050620012cc6000830187620010bc565b620012db6020830186620010bc565b620012ea6040830185620012a4565b8181036060830152620012fe8184620010cd565b905095945050505050565b6000602082019050818103600083015262001324816200110e565b9050919050565b60006020820190508181036000830152620013468162001176565b9050919050565b600060208201905081810360008301526200136881620011b8565b9050919050565b600060208201905081810360008301526200138a8162001220565b9050919050565b60006020820190508181036000830152620013ac8162001262565b9050919050565b6000604051905081810181811067ffffffffffffffff82111715620013dd57620013dc62001613565b5b8060405250919050565b600067ffffffffffffffff82111562001405576200140462001613565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062001454826200153f565b915062001461836200153f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620014995762001498620015b5565b5b828201905092915050565b6000620014b1826200153f565b9150620014be836200153f565b925082821015620014d457620014d3620015b5565b5b828203905092915050565b6000620014ec826200151f565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620015695780820151818401526020810190506200154c565b8381111562001579576000848401525b50505050565b600060028204905060018216806200159857607f821691505b60208210811415620015af57620015ae620015e4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6200165e81620014f3565b81146200166a57600080fd5b50565b614375806200167d6000396000f3fe6080604052600436106101f95760003560e01c806363ca3c3b1161010d57806398d5fdca116100a0578063c87b56dd1161006f578063c87b56dd14610703578063ca80014414610740578063e985e9c514610769578063efef39a1146107a6578063f2fde38b146107c2576101f9565b806398d5fdca1461065d578063a22cb46514610688578063b88d4fde146106b1578063c14c8140146106da576101f9565b8063853828b6116100dc578063853828b6146105d45780638da5cb5b146105de57806391b7f5ed1461060957806395d89b4114610632576101f9565b806363ca3c3b1461052c5780636dc49c281461055757806370a0823114610580578063715018a6146105bd576101f9565b80632e1a7d4d11610190578063438b63001161015f578063438b6300146104215780634b415ff41461045e5780634f6ccce71461048957806355f804b3146104c65780636352211e146104ef576101f9565b80632e1a7d4d146103745780632f745c591461039057806341a5a802146103cd57806342842e0e146103f8576101f9565b8063095ea7b3116101cc578063095ea7b3146102cc57806316c61ccc146102f557806318160ddd1461032057806323b872dd1461034b576101f9565b806301ffc9a7146101fe57806302329a291461023b57806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190613102565b6107eb565b6040516102329190613b7a565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d91906130d9565b610865565b005b34801561027057600080fd5b506102796108fe565b6040516102869190613b95565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190613195565b610990565b6040516102c39190613af1565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee919061309d565b610a15565b005b34801561030157600080fd5b5061030a610b2d565b6040516103179190613b7a565b60405180910390f35b34801561032c57600080fd5b50610335610b40565b6040516103429190613e77565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190612f97565b610b4d565b005b61038e60048036038101906103899190613195565b610bad565b005b34801561039c57600080fd5b506103b760048036038101906103b2919061309d565b610c8c565b6040516103c49190613e77565b60405180910390f35b3480156103d957600080fd5b506103e2610d31565b6040516103ef9190613b7a565b60405180910390f35b34801561040457600080fd5b5061041f600480360381019061041a9190612f97565b610d44565b005b34801561042d57600080fd5b5061044860048036038101906104439190612f32565b610d64565b6040516104559190613b58565b60405180910390f35b34801561046a57600080fd5b50610473610e5e565b6040516104809190613e77565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190613195565b610e64565b6040516104bd9190613e77565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e89190613154565b610efb565b005b3480156104fb57600080fd5b5061051660048036038101906105119190613195565b610f91565b6040516105239190613af1565b60405180910390f35b34801561053857600080fd5b50610541611043565b60405161054e9190613e77565b60405180910390f35b34801561056357600080fd5b5061057e60048036038101906105799190613195565b61104d565b005b34801561058c57600080fd5b506105a760048036038101906105a29190612f32565b6110d3565b6040516105b49190613e77565b60405180910390f35b3480156105c957600080fd5b506105d261118b565b005b6105dc611213565b005b3480156105ea57600080fd5b506105f3611363565b6040516106009190613af1565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b9190613195565b61138d565b005b34801561063e57600080fd5b50610647611413565b6040516106549190613b95565b60405180910390f35b34801561066957600080fd5b506106726114a5565b60405161067f9190613e77565b60405180910390f35b34801561069457600080fd5b506106af60048036038101906106aa9190613061565b6114af565b005b3480156106bd57600080fd5b506106d860048036038101906106d39190612fe6565b611630565b005b3480156106e657600080fd5b5061070160048036038101906106fc91906130d9565b611692565b005b34801561070f57600080fd5b5061072a60048036038101906107259190613195565b61172b565b6040516107379190613b95565b60405180910390f35b34801561074c57600080fd5b506107676004803603810190610762919061309d565b6117d2565b005b34801561077557600080fd5b50610790600480360381019061078b9190612f5b565b6118f1565b60405161079d9190613b7a565b60405180910390f35b6107c060048036038101906107bb9190613195565b611985565b005b3480156107ce57600080fd5b506107e960048036038101906107e49190612f32565b611ab8565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085e575061085d82611cdc565b5b9050919050565b61086d611dbe565b73ffffffffffffffffffffffffffffffffffffffff1661088b611363565b73ffffffffffffffffffffffffffffffffffffffff16146108e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d890613d77565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b60606000805461090d9061416a565b80601f01602080910402602001604051908101604052809291908181526020018280546109399061416a565b80156109865780601f1061095b57610100808354040283529160200191610986565b820191906000526020600020905b81548152906001019060200180831161096957829003601f168201915b5050505050905090565b600061099b82611dc6565b6109da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d190613d57565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2082610f91565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8890613dd7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab0611dbe565b73ffffffffffffffffffffffffffffffffffffffff161480610adf5750610ade81610ad9611dbe565b6118f1565b5b610b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1590613c97565b60405180910390fd5b610b288383611e32565b505050565b601060009054906101000a900460ff1681565b6000600880549050905090565b610b5e610b58611dbe565b82611eeb565b610b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9490613e17565b60405180910390fd5b610ba8838383611fc9565b505050565b610bb5611dbe565b73ffffffffffffffffffffffffffffffffffffffff16610bd3611363565b73ffffffffffffffffffffffffffffffffffffffff1614610c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2090613d77565b60405180910390fd5b601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610c8957600080fd5b50565b6000610c97836110d3565b8210610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf90613bb7565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601060019054906101000a900460ff1681565b610d5f83838360405180602001604052806000815250611630565b505050565b60606000610d71836110d3565b905060008167ffffffffffffffff811115610db5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610de35781602001602082028036833780820191505090505b50905060005b82811015610e5357610dfb8582610c8c565b828281518110610e34577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610e4b9061419c565b915050610de9565b508092505050919050565b600f5481565b6000610e6e610b40565b8210610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea690613e37565b60405180910390fd5b60088281548110610ee9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610f03611dbe565b73ffffffffffffffffffffffffffffffffffffffff16610f21611363565b73ffffffffffffffffffffffffffffffffffffffff1614610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e90613d77565b60405180910390fd5b80600b9080519060200190610f8d929190612d56565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561103a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103190613cd7565b60405180910390fd5b80915050919050565b6000600e54905090565b611055611dbe565b73ffffffffffffffffffffffffffffffffffffffff16611073611363565b73ffffffffffffffffffffffffffffffffffffffff16146110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090613d77565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b90613cb7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611193611dbe565b73ffffffffffffffffffffffffffffffffffffffff166111b1611363565b73ffffffffffffffffffffffffffffffffffffffff1614611207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fe90613d77565b60405180910390fd5b6112116000612225565b565b61121b611dbe565b73ffffffffffffffffffffffffffffffffffffffff16611239611363565b73ffffffffffffffffffffffffffffffffffffffff161461128f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128690613d77565b60405180910390fd5b600060024761129e9190613ff5565b9050601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061130057600080fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061136057600080fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611395611dbe565b73ffffffffffffffffffffffffffffffffffffffff166113b3611363565b73ffffffffffffffffffffffffffffffffffffffff1614611409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140090613d77565b60405180910390fd5b80600d8190555050565b6060600180546114229061416a565b80601f016020809104026020016040519081016040528092919081815260200182805461144e9061416a565b801561149b5780601f106114705761010080835404028352916020019161149b565b820191906000526020600020905b81548152906001019060200180831161147e57829003601f168201915b5050505050905090565b6000600d54905090565b6114b7611dbe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151c90613c57565b60405180910390fd5b8060056000611532611dbe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115df611dbe565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116249190613b7a565b60405180910390a35050565b61164161163b611dbe565b83611eeb565b611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790613e17565b60405180910390fd5b61168c848484846122eb565b50505050565b61169a611dbe565b73ffffffffffffffffffffffffffffffffffffffff166116b8611363565b73ffffffffffffffffffffffffffffffffffffffff161461170e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170590613d77565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b606061173682611dc6565b611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c90613db7565b60405180910390fd5b600061177f612347565b9050600081511161179f57604051806020016040528060008152506117ca565b806117a9846123d9565b6040516020016117ba929190613acd565b6040516020818303038152906040525b915050919050565b6117da611dbe565b73ffffffffffffffffffffffffffffffffffffffff166117f8611363565b73ffffffffffffffffffffffffffffffffffffffff161461184e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184590613d77565b60405180910390fd5b600c54811115611893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188a90613e57565b60405180910390fd5b600061189d610b40565b905060005b828110156118d2576118bf8482846118ba9190613f9f565b612586565b80806118ca9061419c565b9150506118a2565b5081600c60008282546118e59190614080565b92505081905550505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600061198f610b40565b9050601582106119d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cb90613cf7565b60405180910390fd5b600c546127106119e49190614080565b82826119f09190613f9f565b10611a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2790613d17565b60405180910390fd5b81600d54611a3e9190614026565b341015611a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7790613df7565b60405180910390fd5b60005b82811015611ab357611aa0338284611a9b9190613f9f565b612586565b8080611aab9061419c565b915050611a83565b505050565b611ac0611dbe565b73ffffffffffffffffffffffffffffffffffffffff16611ade611363565b73ffffffffffffffffffffffffffffffffffffffff1614611b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2b90613d77565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9b90613bf7565b60405180910390fd5b611bad81612225565b50565b600080823b905060008111915050919050565b611bce838383611cd7565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c1157611c0c816125a4565b611c50565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611c4f57611c4e83826125ed565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c9357611c8e8161275a565b611cd2565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611cd157611cd0828261289d565b5b5b505050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611da757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611db75750611db68261291c565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ea583610f91565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ef682611dc6565b611f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2c90613c77565b60405180910390fd5b6000611f4083610f91565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611faf57508373ffffffffffffffffffffffffffffffffffffffff16611f9784610990565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fc05750611fbf81856118f1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fe982610f91565b73ffffffffffffffffffffffffffffffffffffffff161461203f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203690613d97565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a690613c37565b60405180910390fd5b6120ba838383612986565b6120c5600082611e32565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121159190614080565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461216c9190613f9f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122f6848484611fc9565b61230284848484612996565b612341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233890613bd7565b60405180910390fd5b50505050565b6060600b80546123569061416a565b80601f01602080910402602001604051908101604052809291908181526020018280546123829061416a565b80156123cf5780601f106123a4576101008083540402835291602001916123cf565b820191906000526020600020905b8154815290600101906020018083116123b257829003601f168201915b5050505050905090565b60606000821415612421576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612581565b600082905060005b6000821461245357808061243c9061419c565b915050600a8261244c9190613ff5565b9150612429565b60008167ffffffffffffffff811115612495577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124c75781602001600182028036833780820191505090505b5090505b6000851461257a576001826124e09190614080565b9150600a856124ef91906141e5565b60306124fb9190613f9f565b60f81b818381518110612537577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125739190613ff5565b94506124cb565b8093505050505b919050565b6125a0828260405180602001604052806000815250612b2d565b5050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016125fa846110d3565b6126049190614080565b90506000600760008481526020019081526020016000205490508181146126e9576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061276e9190614080565b90506000600960008481526020019081526020016000205490506000600883815481106127c4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061280c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612881577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006128a8836110d3565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612991838383611bc3565b505050565b60006129b78473ffffffffffffffffffffffffffffffffffffffff16611bb0565b15612b20578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129e0611dbe565b8786866040518563ffffffff1660e01b8152600401612a029493929190613b0c565b602060405180830381600087803b158015612a1c57600080fd5b505af1925050508015612a4d57506040513d601f19601f82011682018060405250810190612a4a919061312b565b60015b612ad0573d8060008114612a7d576040519150601f19603f3d011682016040523d82523d6000602084013e612a82565b606091505b50600081511415612ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abf90613bd7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b25565b600190505b949350505050565b612b378383612b88565b612b446000848484612996565b612b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7a90613bd7565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bef90613d37565b60405180910390fd5b612c0181611dc6565b15612c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3890613c17565b60405180910390fd5b612c4d60008383612986565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c9d9190613f9f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612d629061416a565b90600052602060002090601f016020900481019282612d845760008555612dcb565b82601f10612d9d57805160ff1916838001178555612dcb565b82800160010185558215612dcb579182015b82811115612dca578251825591602001919060010190612daf565b5b509050612dd89190612ddc565b5090565b5b80821115612df5576000816000905550600101612ddd565b5090565b6000612e0c612e0784613ec3565b613e92565b905082815260208101848484011115612e2457600080fd5b612e2f848285614128565b509392505050565b6000612e4a612e4584613ef3565b613e92565b905082815260208101848484011115612e6257600080fd5b612e6d848285614128565b509392505050565b600081359050612e84816142e3565b92915050565b600081359050612e99816142fa565b92915050565b600081359050612eae81614311565b92915050565b600081519050612ec381614311565b92915050565b600082601f830112612eda57600080fd5b8135612eea848260208601612df9565b91505092915050565b600082601f830112612f0457600080fd5b8135612f14848260208601612e37565b91505092915050565b600081359050612f2c81614328565b92915050565b600060208284031215612f4457600080fd5b6000612f5284828501612e75565b91505092915050565b60008060408385031215612f6e57600080fd5b6000612f7c85828601612e75565b9250506020612f8d85828601612e75565b9150509250929050565b600080600060608486031215612fac57600080fd5b6000612fba86828701612e75565b9350506020612fcb86828701612e75565b9250506040612fdc86828701612f1d565b9150509250925092565b60008060008060808587031215612ffc57600080fd5b600061300a87828801612e75565b945050602061301b87828801612e75565b935050604061302c87828801612f1d565b925050606085013567ffffffffffffffff81111561304957600080fd5b61305587828801612ec9565b91505092959194509250565b6000806040838503121561307457600080fd5b600061308285828601612e75565b925050602061309385828601612e8a565b9150509250929050565b600080604083850312156130b057600080fd5b60006130be85828601612e75565b92505060206130cf85828601612f1d565b9150509250929050565b6000602082840312156130eb57600080fd5b60006130f984828501612e8a565b91505092915050565b60006020828403121561311457600080fd5b600061312284828501612e9f565b91505092915050565b60006020828403121561313d57600080fd5b600061314b84828501612eb4565b91505092915050565b60006020828403121561316657600080fd5b600082013567ffffffffffffffff81111561318057600080fd5b61318c84828501612ef3565b91505092915050565b6000602082840312156131a757600080fd5b60006131b584828501612f1d565b91505092915050565b60006131ca8383613aaf565b60208301905092915050565b6131df816140b4565b82525050565b60006131f082613f33565b6131fa8185613f61565b935061320583613f23565b8060005b8381101561323657815161321d88826131be565b975061322883613f54565b925050600181019050613209565b5085935050505092915050565b61324c816140c6565b82525050565b600061325d82613f3e565b6132678185613f72565b9350613277818560208601614137565b613280816142d2565b840191505092915050565b600061329682613f49565b6132a08185613f83565b93506132b0818560208601614137565b6132b9816142d2565b840191505092915050565b60006132cf82613f49565b6132d98185613f94565b93506132e9818560208601614137565b80840191505092915050565b6000613302602b83613f83565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613368603283613f83565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006133ce602683613f83565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613434601c83613f83565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613474602483613f83565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134da601983613f83565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061351a602c83613f83565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613580603883613f83565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006135e6602a83613f83565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061364c602983613f83565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006136b2602883613f83565b91507f596f752063616e2070757263686173652061206d6178696d756d206f6620323060008301527f20426164426f79730000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613718601d83613f83565b91507f45786365656473206d6178696d756d20426164626f7920737570706c790000006000830152602082019050919050565b6000613758602083613f83565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613798602c83613f83565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006137fe602083613f83565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061383e602983613f83565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006138a4602f83613f83565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061390a602183613f83565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613970601983613f83565b91507f45746865722073656e74206973206e6f7420636f7272656374000000000000006000830152602082019050919050565b60006139b0603183613f83565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613a16602c83613f83565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000613a7c601e83613f83565b91507f4578636565647320726573657276656420426164626f7920737570706c7900006000830152602082019050919050565b613ab88161411e565b82525050565b613ac78161411e565b82525050565b6000613ad982856132c4565b9150613ae582846132c4565b91508190509392505050565b6000602082019050613b0660008301846131d6565b92915050565b6000608082019050613b2160008301876131d6565b613b2e60208301866131d6565b613b3b6040830185613abe565b8181036060830152613b4d8184613252565b905095945050505050565b60006020820190508181036000830152613b7281846131e5565b905092915050565b6000602082019050613b8f6000830184613243565b92915050565b60006020820190508181036000830152613baf818461328b565b905092915050565b60006020820190508181036000830152613bd0816132f5565b9050919050565b60006020820190508181036000830152613bf08161335b565b9050919050565b60006020820190508181036000830152613c10816133c1565b9050919050565b60006020820190508181036000830152613c3081613427565b9050919050565b60006020820190508181036000830152613c5081613467565b9050919050565b60006020820190508181036000830152613c70816134cd565b9050919050565b60006020820190508181036000830152613c908161350d565b9050919050565b60006020820190508181036000830152613cb081613573565b9050919050565b60006020820190508181036000830152613cd0816135d9565b9050919050565b60006020820190508181036000830152613cf08161363f565b9050919050565b60006020820190508181036000830152613d10816136a5565b9050919050565b60006020820190508181036000830152613d308161370b565b9050919050565b60006020820190508181036000830152613d508161374b565b9050919050565b60006020820190508181036000830152613d708161378b565b9050919050565b60006020820190508181036000830152613d90816137f1565b9050919050565b60006020820190508181036000830152613db081613831565b9050919050565b60006020820190508181036000830152613dd081613897565b9050919050565b60006020820190508181036000830152613df0816138fd565b9050919050565b60006020820190508181036000830152613e1081613963565b9050919050565b60006020820190508181036000830152613e30816139a3565b9050919050565b60006020820190508181036000830152613e5081613a09565b9050919050565b60006020820190508181036000830152613e7081613a6f565b9050919050565b6000602082019050613e8c6000830184613abe565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613eb957613eb86142a3565b5b8060405250919050565b600067ffffffffffffffff821115613ede57613edd6142a3565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613f0e57613f0d6142a3565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613faa8261411e565b9150613fb58361411e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fea57613fe9614216565b5b828201905092915050565b60006140008261411e565b915061400b8361411e565b92508261401b5761401a614245565b5b828204905092915050565b60006140318261411e565b915061403c8361411e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561407557614074614216565b5b828202905092915050565b600061408b8261411e565b91506140968361411e565b9250828210156140a9576140a8614216565b5b828203905092915050565b60006140bf826140fe565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561415557808201518184015260208101905061413a565b83811115614164576000848401525b50505050565b6000600282049050600182168061418257607f821691505b6020821081141561419657614195614274565b5b50919050565b60006141a78261411e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141da576141d9614216565b5b600182019050919050565b60006141f08261411e565b91506141fb8361411e565b92508261420b5761420a614245565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6142ec816140b4565b81146142f757600080fd5b50565b614303816140c6565b811461430e57600080fd5b50565b61431a816140d2565b811461432557600080fd5b50565b6143318161411e565b811461433c57600080fd5b5056fea264697066735822122060fe0981eebf6878cab4da9fe6963c502187cd071b8cf755b756e3ea5244994164736f6c634300080000330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002e68747470733a2f2f626164626f796261636b656e642e6865726f6b756170702e636f6d2f6170692f746f6b656e2f000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806363ca3c3b1161010d57806398d5fdca116100a0578063c87b56dd1161006f578063c87b56dd14610703578063ca80014414610740578063e985e9c514610769578063efef39a1146107a6578063f2fde38b146107c2576101f9565b806398d5fdca1461065d578063a22cb46514610688578063b88d4fde146106b1578063c14c8140146106da576101f9565b8063853828b6116100dc578063853828b6146105d45780638da5cb5b146105de57806391b7f5ed1461060957806395d89b4114610632576101f9565b806363ca3c3b1461052c5780636dc49c281461055757806370a0823114610580578063715018a6146105bd576101f9565b80632e1a7d4d11610190578063438b63001161015f578063438b6300146104215780634b415ff41461045e5780634f6ccce71461048957806355f804b3146104c65780636352211e146104ef576101f9565b80632e1a7d4d146103745780632f745c591461039057806341a5a802146103cd57806342842e0e146103f8576101f9565b8063095ea7b3116101cc578063095ea7b3146102cc57806316c61ccc146102f557806318160ddd1461032057806323b872dd1461034b576101f9565b806301ffc9a7146101fe57806302329a291461023b57806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190613102565b6107eb565b6040516102329190613b7a565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d91906130d9565b610865565b005b34801561027057600080fd5b506102796108fe565b6040516102869190613b95565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190613195565b610990565b6040516102c39190613af1565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee919061309d565b610a15565b005b34801561030157600080fd5b5061030a610b2d565b6040516103179190613b7a565b60405180910390f35b34801561032c57600080fd5b50610335610b40565b6040516103429190613e77565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190612f97565b610b4d565b005b61038e60048036038101906103899190613195565b610bad565b005b34801561039c57600080fd5b506103b760048036038101906103b2919061309d565b610c8c565b6040516103c49190613e77565b60405180910390f35b3480156103d957600080fd5b506103e2610d31565b6040516103ef9190613b7a565b60405180910390f35b34801561040457600080fd5b5061041f600480360381019061041a9190612f97565b610d44565b005b34801561042d57600080fd5b5061044860048036038101906104439190612f32565b610d64565b6040516104559190613b58565b60405180910390f35b34801561046a57600080fd5b50610473610e5e565b6040516104809190613e77565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190613195565b610e64565b6040516104bd9190613e77565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e89190613154565b610efb565b005b3480156104fb57600080fd5b5061051660048036038101906105119190613195565b610f91565b6040516105239190613af1565b60405180910390f35b34801561053857600080fd5b50610541611043565b60405161054e9190613e77565b60405180910390f35b34801561056357600080fd5b5061057e60048036038101906105799190613195565b61104d565b005b34801561058c57600080fd5b506105a760048036038101906105a29190612f32565b6110d3565b6040516105b49190613e77565b60405180910390f35b3480156105c957600080fd5b506105d261118b565b005b6105dc611213565b005b3480156105ea57600080fd5b506105f3611363565b6040516106009190613af1565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b9190613195565b61138d565b005b34801561063e57600080fd5b50610647611413565b6040516106549190613b95565b60405180910390f35b34801561066957600080fd5b506106726114a5565b60405161067f9190613e77565b60405180910390f35b34801561069457600080fd5b506106af60048036038101906106aa9190613061565b6114af565b005b3480156106bd57600080fd5b506106d860048036038101906106d39190612fe6565b611630565b005b3480156106e657600080fd5b5061070160048036038101906106fc91906130d9565b611692565b005b34801561070f57600080fd5b5061072a60048036038101906107259190613195565b61172b565b6040516107379190613b95565b60405180910390f35b34801561074c57600080fd5b506107676004803603810190610762919061309d565b6117d2565b005b34801561077557600080fd5b50610790600480360381019061078b9190612f5b565b6118f1565b60405161079d9190613b7a565b60405180910390f35b6107c060048036038101906107bb9190613195565b611985565b005b3480156107ce57600080fd5b506107e960048036038101906107e49190612f32565b611ab8565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085e575061085d82611cdc565b5b9050919050565b61086d611dbe565b73ffffffffffffffffffffffffffffffffffffffff1661088b611363565b73ffffffffffffffffffffffffffffffffffffffff16146108e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d890613d77565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b60606000805461090d9061416a565b80601f01602080910402602001604051908101604052809291908181526020018280546109399061416a565b80156109865780601f1061095b57610100808354040283529160200191610986565b820191906000526020600020905b81548152906001019060200180831161096957829003601f168201915b5050505050905090565b600061099b82611dc6565b6109da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d190613d57565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2082610f91565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8890613dd7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab0611dbe565b73ffffffffffffffffffffffffffffffffffffffff161480610adf5750610ade81610ad9611dbe565b6118f1565b5b610b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1590613c97565b60405180910390fd5b610b288383611e32565b505050565b601060009054906101000a900460ff1681565b6000600880549050905090565b610b5e610b58611dbe565b82611eeb565b610b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9490613e17565b60405180910390fd5b610ba8838383611fc9565b505050565b610bb5611dbe565b73ffffffffffffffffffffffffffffffffffffffff16610bd3611363565b73ffffffffffffffffffffffffffffffffffffffff1614610c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2090613d77565b60405180910390fd5b601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610c8957600080fd5b50565b6000610c97836110d3565b8210610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf90613bb7565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601060019054906101000a900460ff1681565b610d5f83838360405180602001604052806000815250611630565b505050565b60606000610d71836110d3565b905060008167ffffffffffffffff811115610db5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610de35781602001602082028036833780820191505090505b50905060005b82811015610e5357610dfb8582610c8c565b828281518110610e34577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610e4b9061419c565b915050610de9565b508092505050919050565b600f5481565b6000610e6e610b40565b8210610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea690613e37565b60405180910390fd5b60088281548110610ee9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610f03611dbe565b73ffffffffffffffffffffffffffffffffffffffff16610f21611363565b73ffffffffffffffffffffffffffffffffffffffff1614610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e90613d77565b60405180910390fd5b80600b9080519060200190610f8d929190612d56565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561103a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103190613cd7565b60405180910390fd5b80915050919050565b6000600e54905090565b611055611dbe565b73ffffffffffffffffffffffffffffffffffffffff16611073611363565b73ffffffffffffffffffffffffffffffffffffffff16146110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090613d77565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b90613cb7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611193611dbe565b73ffffffffffffffffffffffffffffffffffffffff166111b1611363565b73ffffffffffffffffffffffffffffffffffffffff1614611207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fe90613d77565b60405180910390fd5b6112116000612225565b565b61121b611dbe565b73ffffffffffffffffffffffffffffffffffffffff16611239611363565b73ffffffffffffffffffffffffffffffffffffffff161461128f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128690613d77565b60405180910390fd5b600060024761129e9190613ff5565b9050601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061130057600080fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061136057600080fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611395611dbe565b73ffffffffffffffffffffffffffffffffffffffff166113b3611363565b73ffffffffffffffffffffffffffffffffffffffff1614611409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140090613d77565b60405180910390fd5b80600d8190555050565b6060600180546114229061416a565b80601f016020809104026020016040519081016040528092919081815260200182805461144e9061416a565b801561149b5780601f106114705761010080835404028352916020019161149b565b820191906000526020600020905b81548152906001019060200180831161147e57829003601f168201915b5050505050905090565b6000600d54905090565b6114b7611dbe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151c90613c57565b60405180910390fd5b8060056000611532611dbe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115df611dbe565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116249190613b7a565b60405180910390a35050565b61164161163b611dbe565b83611eeb565b611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790613e17565b60405180910390fd5b61168c848484846122eb565b50505050565b61169a611dbe565b73ffffffffffffffffffffffffffffffffffffffff166116b8611363565b73ffffffffffffffffffffffffffffffffffffffff161461170e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170590613d77565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b606061173682611dc6565b611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c90613db7565b60405180910390fd5b600061177f612347565b9050600081511161179f57604051806020016040528060008152506117ca565b806117a9846123d9565b6040516020016117ba929190613acd565b6040516020818303038152906040525b915050919050565b6117da611dbe565b73ffffffffffffffffffffffffffffffffffffffff166117f8611363565b73ffffffffffffffffffffffffffffffffffffffff161461184e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184590613d77565b60405180910390fd5b600c54811115611893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188a90613e57565b60405180910390fd5b600061189d610b40565b905060005b828110156118d2576118bf8482846118ba9190613f9f565b612586565b80806118ca9061419c565b9150506118a2565b5081600c60008282546118e59190614080565b92505081905550505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600061198f610b40565b9050601582106119d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cb90613cf7565b60405180910390fd5b600c546127106119e49190614080565b82826119f09190613f9f565b10611a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2790613d17565b60405180910390fd5b81600d54611a3e9190614026565b341015611a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7790613df7565b60405180910390fd5b60005b82811015611ab357611aa0338284611a9b9190613f9f565b612586565b8080611aab9061419c565b915050611a83565b505050565b611ac0611dbe565b73ffffffffffffffffffffffffffffffffffffffff16611ade611363565b73ffffffffffffffffffffffffffffffffffffffff1614611b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2b90613d77565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9b90613bf7565b60405180910390fd5b611bad81612225565b50565b600080823b905060008111915050919050565b611bce838383611cd7565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c1157611c0c816125a4565b611c50565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611c4f57611c4e83826125ed565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c9357611c8e8161275a565b611cd2565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611cd157611cd0828261289d565b5b5b505050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611da757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611db75750611db68261291c565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ea583610f91565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ef682611dc6565b611f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2c90613c77565b60405180910390fd5b6000611f4083610f91565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611faf57508373ffffffffffffffffffffffffffffffffffffffff16611f9784610990565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fc05750611fbf81856118f1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fe982610f91565b73ffffffffffffffffffffffffffffffffffffffff161461203f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203690613d97565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a690613c37565b60405180910390fd5b6120ba838383612986565b6120c5600082611e32565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121159190614080565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461216c9190613f9f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122f6848484611fc9565b61230284848484612996565b612341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233890613bd7565b60405180910390fd5b50505050565b6060600b80546123569061416a565b80601f01602080910402602001604051908101604052809291908181526020018280546123829061416a565b80156123cf5780601f106123a4576101008083540402835291602001916123cf565b820191906000526020600020905b8154815290600101906020018083116123b257829003601f168201915b5050505050905090565b60606000821415612421576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612581565b600082905060005b6000821461245357808061243c9061419c565b915050600a8261244c9190613ff5565b9150612429565b60008167ffffffffffffffff811115612495577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124c75781602001600182028036833780820191505090505b5090505b6000851461257a576001826124e09190614080565b9150600a856124ef91906141e5565b60306124fb9190613f9f565b60f81b818381518110612537577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125739190613ff5565b94506124cb565b8093505050505b919050565b6125a0828260405180602001604052806000815250612b2d565b5050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016125fa846110d3565b6126049190614080565b90506000600760008481526020019081526020016000205490508181146126e9576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061276e9190614080565b90506000600960008481526020019081526020016000205490506000600883815481106127c4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061280c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612881577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006128a8836110d3565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612991838383611bc3565b505050565b60006129b78473ffffffffffffffffffffffffffffffffffffffff16611bb0565b15612b20578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129e0611dbe565b8786866040518563ffffffff1660e01b8152600401612a029493929190613b0c565b602060405180830381600087803b158015612a1c57600080fd5b505af1925050508015612a4d57506040513d601f19601f82011682018060405250810190612a4a919061312b565b60015b612ad0573d8060008114612a7d576040519150601f19603f3d011682016040523d82523d6000602084013e612a82565b606091505b50600081511415612ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abf90613bd7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b25565b600190505b949350505050565b612b378383612b88565b612b446000848484612996565b612b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7a90613bd7565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bef90613d37565b60405180910390fd5b612c0181611dc6565b15612c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3890613c17565b60405180910390fd5b612c4d60008383612986565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c9d9190613f9f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612d629061416a565b90600052602060002090601f016020900481019282612d845760008555612dcb565b82601f10612d9d57805160ff1916838001178555612dcb565b82800160010185558215612dcb579182015b82811115612dca578251825591602001919060010190612daf565b5b509050612dd89190612ddc565b5090565b5b80821115612df5576000816000905550600101612ddd565b5090565b6000612e0c612e0784613ec3565b613e92565b905082815260208101848484011115612e2457600080fd5b612e2f848285614128565b509392505050565b6000612e4a612e4584613ef3565b613e92565b905082815260208101848484011115612e6257600080fd5b612e6d848285614128565b509392505050565b600081359050612e84816142e3565b92915050565b600081359050612e99816142fa565b92915050565b600081359050612eae81614311565b92915050565b600081519050612ec381614311565b92915050565b600082601f830112612eda57600080fd5b8135612eea848260208601612df9565b91505092915050565b600082601f830112612f0457600080fd5b8135612f14848260208601612e37565b91505092915050565b600081359050612f2c81614328565b92915050565b600060208284031215612f4457600080fd5b6000612f5284828501612e75565b91505092915050565b60008060408385031215612f6e57600080fd5b6000612f7c85828601612e75565b9250506020612f8d85828601612e75565b9150509250929050565b600080600060608486031215612fac57600080fd5b6000612fba86828701612e75565b9350506020612fcb86828701612e75565b9250506040612fdc86828701612f1d565b9150509250925092565b60008060008060808587031215612ffc57600080fd5b600061300a87828801612e75565b945050602061301b87828801612e75565b935050604061302c87828801612f1d565b925050606085013567ffffffffffffffff81111561304957600080fd5b61305587828801612ec9565b91505092959194509250565b6000806040838503121561307457600080fd5b600061308285828601612e75565b925050602061309385828601612e8a565b9150509250929050565b600080604083850312156130b057600080fd5b60006130be85828601612e75565b92505060206130cf85828601612f1d565b9150509250929050565b6000602082840312156130eb57600080fd5b60006130f984828501612e8a565b91505092915050565b60006020828403121561311457600080fd5b600061312284828501612e9f565b91505092915050565b60006020828403121561313d57600080fd5b600061314b84828501612eb4565b91505092915050565b60006020828403121561316657600080fd5b600082013567ffffffffffffffff81111561318057600080fd5b61318c84828501612ef3565b91505092915050565b6000602082840312156131a757600080fd5b60006131b584828501612f1d565b91505092915050565b60006131ca8383613aaf565b60208301905092915050565b6131df816140b4565b82525050565b60006131f082613f33565b6131fa8185613f61565b935061320583613f23565b8060005b8381101561323657815161321d88826131be565b975061322883613f54565b925050600181019050613209565b5085935050505092915050565b61324c816140c6565b82525050565b600061325d82613f3e565b6132678185613f72565b9350613277818560208601614137565b613280816142d2565b840191505092915050565b600061329682613f49565b6132a08185613f83565b93506132b0818560208601614137565b6132b9816142d2565b840191505092915050565b60006132cf82613f49565b6132d98185613f94565b93506132e9818560208601614137565b80840191505092915050565b6000613302602b83613f83565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613368603283613f83565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006133ce602683613f83565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613434601c83613f83565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613474602483613f83565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134da601983613f83565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061351a602c83613f83565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613580603883613f83565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006135e6602a83613f83565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061364c602983613f83565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006136b2602883613f83565b91507f596f752063616e2070757263686173652061206d6178696d756d206f6620323060008301527f20426164426f79730000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613718601d83613f83565b91507f45786365656473206d6178696d756d20426164626f7920737570706c790000006000830152602082019050919050565b6000613758602083613f83565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613798602c83613f83565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006137fe602083613f83565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061383e602983613f83565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006138a4602f83613f83565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061390a602183613f83565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613970601983613f83565b91507f45746865722073656e74206973206e6f7420636f7272656374000000000000006000830152602082019050919050565b60006139b0603183613f83565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613a16602c83613f83565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000613a7c601e83613f83565b91507f4578636565647320726573657276656420426164626f7920737570706c7900006000830152602082019050919050565b613ab88161411e565b82525050565b613ac78161411e565b82525050565b6000613ad982856132c4565b9150613ae582846132c4565b91508190509392505050565b6000602082019050613b0660008301846131d6565b92915050565b6000608082019050613b2160008301876131d6565b613b2e60208301866131d6565b613b3b6040830185613abe565b8181036060830152613b4d8184613252565b905095945050505050565b60006020820190508181036000830152613b7281846131e5565b905092915050565b6000602082019050613b8f6000830184613243565b92915050565b60006020820190508181036000830152613baf818461328b565b905092915050565b60006020820190508181036000830152613bd0816132f5565b9050919050565b60006020820190508181036000830152613bf08161335b565b9050919050565b60006020820190508181036000830152613c10816133c1565b9050919050565b60006020820190508181036000830152613c3081613427565b9050919050565b60006020820190508181036000830152613c5081613467565b9050919050565b60006020820190508181036000830152613c70816134cd565b9050919050565b60006020820190508181036000830152613c908161350d565b9050919050565b60006020820190508181036000830152613cb081613573565b9050919050565b60006020820190508181036000830152613cd0816135d9565b9050919050565b60006020820190508181036000830152613cf08161363f565b9050919050565b60006020820190508181036000830152613d10816136a5565b9050919050565b60006020820190508181036000830152613d308161370b565b9050919050565b60006020820190508181036000830152613d508161374b565b9050919050565b60006020820190508181036000830152613d708161378b565b9050919050565b60006020820190508181036000830152613d90816137f1565b9050919050565b60006020820190508181036000830152613db081613831565b9050919050565b60006020820190508181036000830152613dd081613897565b9050919050565b60006020820190508181036000830152613df0816138fd565b9050919050565b60006020820190508181036000830152613e1081613963565b9050919050565b60006020820190508181036000830152613e30816139a3565b9050919050565b60006020820190508181036000830152613e5081613a09565b9050919050565b60006020820190508181036000830152613e7081613a6f565b9050919050565b6000602082019050613e8c6000830184613abe565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613eb957613eb86142a3565b5b8060405250919050565b600067ffffffffffffffff821115613ede57613edd6142a3565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613f0e57613f0d6142a3565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613faa8261411e565b9150613fb58361411e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fea57613fe9614216565b5b828201905092915050565b60006140008261411e565b915061400b8361411e565b92508261401b5761401a614245565b5b828204905092915050565b60006140318261411e565b915061403c8361411e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561407557614074614216565b5b828202905092915050565b600061408b8261411e565b91506140968361411e565b9250828210156140a9576140a8614216565b5b828203905092915050565b60006140bf826140fe565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561415557808201518184015260208101905061413a565b83811115614164576000848401525b50505050565b6000600282049050600182168061418257607f821691505b6020821081141561419657614195614274565b5b50919050565b60006141a78261411e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141da576141d9614216565b5b600182019050919050565b60006141f08261411e565b91506141fb8361411e565b92508261420b5761420a614245565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6142ec816140b4565b81146142f757600080fd5b50565b614303816140c6565b811461430e57600080fd5b50565b61431a816140d2565b811461432557600080fd5b50565b6143318161411e565b811461433c57600080fd5b5056fea264697066735822122060fe0981eebf6878cab4da9fe6963c502187cd071b8cf755b756e3ea5244994164736f6c63430008000033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002e68747470733a2f2f626164626f796261636b656e642e6865726f6b756170702e636f6d2f6170692f746f6b656e2f000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://badboybackend.herokuapp.com/api/token/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [2] : 68747470733a2f2f626164626f796261636b656e642e6865726f6b756170702e
Arg [3] : 636f6d2f6170692f746f6b656e2f000000000000000000000000000000000000


Deployed Bytecode Sourcemap

43720:3499:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34506:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46710:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21403:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22962:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22485:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44021:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35146:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23852:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47101:115;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34814:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44055:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24262:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45140:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43974:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35336:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45873:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21097:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46072:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45638:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20827:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43012:94;;;;;;;;;;;;;:::i;:::-;;46886:207;;;:::i;:::-;;42361:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45537:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21572:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45983:81;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23255:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24518:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46792:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21747:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46173:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23621:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44652:480;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43261:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34506:224;34608:4;34647:35;34632:50;;;:11;:50;;;;:90;;;;34686:36;34710:11;34686:23;:36::i;:::-;34632:90;34625:97;;34506:224;;;:::o;46710:74::-;42592:12;:10;:12::i;:::-;42581:23;;:7;:5;:7::i;:::-;:23;;;42573:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46773:3:::1;46763:7;;:13;;;;;;;;;;;;;;;;;;46710:74:::0;:::o;21403:100::-;21457:13;21490:5;21483:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21403:100;:::o;22962:221::-;23038:7;23066:16;23074:7;23066;:16::i;:::-;23058:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23151:15;:24;23167:7;23151:24;;;;;;;;;;;;;;;;;;;;;23144:31;;22962:221;;;:::o;22485:411::-;22566:13;22582:23;22597:7;22582:14;:23::i;:::-;22566:39;;22630:5;22624:11;;:2;:11;;;;22616:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22724:5;22708:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22733:37;22750:5;22757:12;:10;:12::i;:::-;22733:16;:37::i;:::-;22708:62;22686:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;22867:21;22876:2;22880:7;22867:8;:21::i;:::-;22485:411;;;:::o;44021:27::-;;;;;;;;;;;;;:::o;35146:113::-;35207:7;35234:10;:17;;;;35227:24;;35146:113;:::o;23852:339::-;24047:41;24066:12;:10;:12::i;:::-;24080:7;24047:18;:41::i;:::-;24039:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24155:28;24165:4;24171:2;24175:7;24155:9;:28::i;:::-;23852:339;;;:::o;47101:115::-;42592:12;:10;:12::i;:::-;42581:23;;:7;:5;:7::i;:::-;:23;;;42573:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47187:6:::1;;;;;;;;;;;47179:20;;:28;47200:6;47179:28;;;;;;;;;;;;;;;;;;;;;;;47171:37;;;::::0;::::1;;47101:115:::0;:::o;34814:256::-;34911:7;34947:23;34964:5;34947:16;:23::i;:::-;34939:5;:31;34931:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35036:12;:19;35049:5;35036:19;;;;;;;;;;;;;;;:26;35056:5;35036:26;;;;;;;;;;;;35029:33;;34814:256;;;;:::o;44055:33::-;;;;;;;;;;;;;:::o;24262:185::-;24400:39;24417:4;24423:2;24427:7;24400:39;;;;;;;;;;;;:16;:39::i;:::-;24262:185;;;:::o;45140:342::-;45199:16;45228:18;45249:17;45259:6;45249:9;:17::i;:::-;45228:38;;45279:25;45321:10;45307:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45279:53;;45347:9;45343:106;45362:10;45358:1;:14;45343:106;;;45407:30;45427:6;45435:1;45407:19;:30::i;:::-;45393:8;45402:1;45393:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;45374:3;;;;;:::i;:::-;;;;45343:106;;;;45466:8;45459:15;;;;45140:342;;;:::o;43974:40::-;;;;:::o;35336:233::-;35411:7;35447:30;:28;:30::i;:::-;35439:5;:38;35431:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35544:10;35555:5;35544:17;;;;;;;;;;;;;;;;;;;;;;;;35537:24;;35336:233;;;:::o;45873:102::-;42592:12;:10;:12::i;:::-;42581:23;;:7;:5;:7::i;:::-;:23;;;42573:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45960:7:::1;45944:13;:23;;;;;;;;;;;;:::i;:::-;;45873:102:::0;:::o;21097:239::-;21169:7;21189:13;21205:7;:16;21213:7;21205:16;;;;;;;;;;;;;;;;;;;;;21189:32;;21257:1;21240:19;;:5;:19;;;;21232:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21323:5;21316:12;;;21097:239;;;:::o;46072:93::-;46119:7;46145:12;;46138:19;;46072:93;:::o;45638:105::-;42592:12;:10;:12::i;:::-;42581:23;;:7;:5;:7::i;:::-;:23;;;42573:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45726:9:::1;45711:12;:24;;;;45638:105:::0;:::o;20827:208::-;20899:7;20944:1;20927:19;;:5;:19;;;;20919:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21011:9;:16;21021:5;21011:16;;;;;;;;;;;;;;;;21004:23;;20827:208;;;:::o;43012:94::-;42592:12;:10;:12::i;:::-;42581:23;;:7;:5;:7::i;:::-;:23;;;42573:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43077:21:::1;43095:1;43077:9;:21::i;:::-;43012:94::o:0;46886:207::-;42592:12;:10;:12::i;:::-;42581:23;;:7;:5;:7::i;:::-;:23;;;42573:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46945:13:::1;46985:1;46961:21;:25;;;;:::i;:::-;46945:41;;47013:6;;;;;;;;;;;47005:20;;:27;47026:5;47005:27;;;;;;;;;;;;;;;;;;;;;;;46997:36;;;::::0;::::1;;47060:11;;;;;;;;;;;47052:25;;:32;47078:5;47052:32;;;;;;;;;;;;;;;;;;;;;;;47044:41;;;::::0;::::1;;42652:1;46886:207::o:0;42361:87::-;42407:7;42434:6;;;;;;;;;;;42427:13;;42361:87;:::o;45537:93::-;42592:12;:10;:12::i;:::-;42581:23;;:7;:5;:7::i;:::-;:23;;;42573:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45613:9:::1;45604:6;:18;;;;45537:93:::0;:::o;21572:104::-;21628:13;21661:7;21654:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21572:104;:::o;45983:81::-;46024:7;46050:6;;46043:13;;45983:81;:::o;23255:295::-;23370:12;:10;:12::i;:::-;23358:24;;:8;:24;;;;23350:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23470:8;23425:18;:32;23444:12;:10;:12::i;:::-;23425:32;;;;;;;;;;;;;;;:42;23458:8;23425:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23523:8;23494:48;;23509:12;:10;:12::i;:::-;23494:48;;;23533:8;23494:48;;;;;;:::i;:::-;;;;;;;;23255:295;;:::o;24518:328::-;24693:41;24712:12;:10;:12::i;:::-;24726:7;24693:18;:41::i;:::-;24685:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24799:39;24813:4;24819:2;24823:7;24832:5;24799:13;:39::i;:::-;24518:328;;;;:::o;46792:86::-;42592:12;:10;:12::i;:::-;42581:23;;:7;:5;:7::i;:::-;:23;;;42573:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46867:3:::1;46851:13;;:19;;;;;;;;;;;;;;;;;;46792:86:::0;:::o;21747:334::-;21820:13;21854:16;21862:7;21854;:16::i;:::-;21846:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;21935:21;21959:10;:8;:10::i;:::-;21935:34;;22011:1;21993:7;21987:21;:25;:86;;;;;;;;;;;;;;;;;22039:7;22048:18;:7;:16;:18::i;:::-;22022:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21987:86;21980:93;;;21747:334;;;:::o;46173:326::-;42592:12;:10;:12::i;:::-;42581:23;;:7;:5;:7::i;:::-;:23;;;42573:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46273:9:::1;;46262:7;:20;;46253:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;46331:14;46348:13;:11;:13::i;:::-;46331:30;;46376:9;46372:87;46391:7;46387:1;:11;46372:87;;;46419:28;46430:3;46444:1;46435:6;:10;;;;:::i;:::-;46419:9;:28::i;:::-;46400:3;;;;;:::i;:::-;;;;46372:87;;;;46484:7;46471:9;;:20;;;;;;;:::i;:::-;;;;;;;;42652:1;46173:326:::0;;:::o;23621:164::-;23718:4;23742:18;:25;23761:5;23742:25;;;;;;;;;;;;;;;:35;23768:8;23742:35;;;;;;;;;;;;;;;;;;;;;;;;;23735:42;;23621:164;;;;:::o;44652:480::-;44709:14;44726:13;:11;:13::i;:::-;44709:30;;44765:2;44759:3;:8;44750:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;44885:9;;44877:5;:17;;;;:::i;:::-;44871:3;44862:6;:12;;;;:::i;:::-;:32;44853:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;44976:3;44967:6;;:12;;;;:::i;:::-;44954:9;:25;;44945:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;45039:9;45035:90;45054:3;45050:1;:7;45035:90;;;45078:35;45089:10;45110:1;45101:6;:10;;;;:::i;:::-;45078:9;:35::i;:::-;45059:3;;;;;:::i;:::-;;;;45035:90;;;;44652:480;;:::o;43261:192::-;42592:12;:10;:12::i;:::-;42581:23;;:7;:5;:7::i;:::-;:23;;;42573:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43370:1:::1;43350:22;;:8;:22;;;;43342:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43426:19;43436:8;43426:9;:19::i;:::-;43261:192:::0;:::o;8142:387::-;8202:4;8410:12;8477:7;8465:20;8457:28;;8520:1;8513:4;:8;8506:15;;;8142:387;;;:::o;36182:589::-;36326:45;36353:4;36359:2;36363:7;36326:26;:45::i;:::-;36404:1;36388:18;;:4;:18;;;36384:187;;;36423:40;36455:7;36423:31;:40::i;:::-;36384:187;;;36493:2;36485:10;;:4;:10;;;36481:90;;36512:47;36545:4;36551:7;36512:32;:47::i;:::-;36481:90;36384:187;36599:1;36585:16;;:2;:16;;;36581:183;;;36618:45;36655:7;36618:36;:45::i;:::-;36581:183;;;36691:4;36685:10;;:2;:10;;;36681:83;;36712:40;36740:2;36744:7;36712:27;:40::i;:::-;36681:83;36581:183;36182:589;;;:::o;32452:126::-;;;;:::o;20458:305::-;20560:4;20612:25;20597:40;;;:11;:40;;;;:105;;;;20669:33;20654:48;;;:11;:48;;;;20597:105;:158;;;;20719:36;20743:11;20719:23;:36::i;:::-;20597:158;20577:178;;20458:305;;;:::o;15880:98::-;15933:7;15960:10;15953:17;;15880:98;:::o;26356:127::-;26421:4;26473:1;26445:30;;:7;:16;26453:7;26445:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26438:37;;26356:127;;;:::o;30338:174::-;30440:2;30413:15;:24;30429:7;30413:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30496:7;30492:2;30458:46;;30467:23;30482:7;30467:14;:23::i;:::-;30458:46;;;;;;;;;;;;30338:174;;:::o;26650:348::-;26743:4;26768:16;26776:7;26768;:16::i;:::-;26760:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26844:13;26860:23;26875:7;26860:14;:23::i;:::-;26844:39;;26913:5;26902:16;;:7;:16;;;:51;;;;26946:7;26922:31;;:20;26934:7;26922:11;:20::i;:::-;:31;;;26902:51;:87;;;;26957:32;26974:5;26981:7;26957:16;:32::i;:::-;26902:87;26894:96;;;26650:348;;;;:::o;29642:578::-;29801:4;29774:31;;:23;29789:7;29774:14;:23::i;:::-;:31;;;29766:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29884:1;29870:16;;:2;:16;;;;29862:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29940:39;29961:4;29967:2;29971:7;29940:20;:39::i;:::-;30044:29;30061:1;30065:7;30044:8;:29::i;:::-;30105:1;30086:9;:15;30096:4;30086:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30134:1;30117:9;:13;30127:2;30117:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30165:2;30146:7;:16;30154:7;30146:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30204:7;30200:2;30185:27;;30194:4;30185:27;;;;;;;;;;;;29642:578;;;:::o;43461:173::-;43517:16;43536:6;;;;;;;;;;;43517:25;;43562:8;43553:6;;:17;;;;;;;;;;;;;;;;;;43617:8;43586:40;;43607:8;43586:40;;;;;;;;;;;;43461:173;;:::o;25728:315::-;25885:28;25895:4;25901:2;25905:7;25885:9;:28::i;:::-;25932:48;25955:4;25961:2;25965:7;25974:5;25932:22;:48::i;:::-;25924:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25728:315;;;;:::o;45751:114::-;45811:13;45844;45837:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45751:114;:::o;16405:723::-;16461:13;16691:1;16682:5;:10;16678:53;;;16709:10;;;;;;;;;;;;;;;;;;;;;16678:53;16741:12;16756:5;16741:20;;16772:14;16797:78;16812:1;16804:4;:9;16797:78;;16830:8;;;;;:::i;:::-;;;;16861:2;16853:10;;;;;:::i;:::-;;;16797:78;;;16885:19;16917:6;16907:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16885:39;;16935:154;16951:1;16942:5;:10;16935:154;;16979:1;16969:11;;;;;:::i;:::-;;;17046:2;17038:5;:10;;;;:::i;:::-;17025:2;:24;;;;:::i;:::-;17012:39;;16995:6;17002;16995:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17075:2;17066:11;;;;;:::i;:::-;;;16935:154;;;17113:6;17099:21;;;;;16405:723;;;;:::o;27340:110::-;27416:26;27426:2;27430:7;27416:26;;;;;;;;;;;;:9;:26::i;:::-;27340:110;;:::o;37494:164::-;37598:10;:17;;;;37571:15;:24;37587:7;37571:24;;;;;;;;;;;:44;;;;37626:10;37642:7;37626:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37494:164;:::o;38285:988::-;38551:22;38601:1;38576:22;38593:4;38576:16;:22::i;:::-;:26;;;;:::i;:::-;38551:51;;38613:18;38634:17;:26;38652:7;38634:26;;;;;;;;;;;;38613:47;;38781:14;38767:10;:28;38763:328;;38812:19;38834:12;:18;38847:4;38834:18;;;;;;;;;;;;;;;:34;38853:14;38834:34;;;;;;;;;;;;38812:56;;38918:11;38885:12;:18;38898:4;38885:18;;;;;;;;;;;;;;;:30;38904:10;38885:30;;;;;;;;;;;:44;;;;39035:10;39002:17;:30;39020:11;39002:30;;;;;;;;;;;:43;;;;38763:328;;39187:17;:26;39205:7;39187:26;;;;;;;;;;;39180:33;;;39231:12;:18;39244:4;39231:18;;;;;;;;;;;;;;;:34;39250:14;39231:34;;;;;;;;;;;39224:41;;;38285:988;;;;:::o;39568:1079::-;39821:22;39866:1;39846:10;:17;;;;:21;;;;:::i;:::-;39821:46;;39878:18;39899:15;:24;39915:7;39899:24;;;;;;;;;;;;39878:45;;40250:19;40272:10;40283:14;40272:26;;;;;;;;;;;;;;;;;;;;;;;;40250:48;;40336:11;40311:10;40322;40311:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;40447:10;40416:15;:28;40432:11;40416:28;;;;;;;;;;;:41;;;;40588:15;:24;40604:7;40588:24;;;;;;;;;;;40581:31;;;40623:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39568:1079;;;;:::o;37072:221::-;37157:14;37174:20;37191:2;37174:16;:20::i;:::-;37157:37;;37232:7;37205:12;:16;37218:2;37205:16;;;;;;;;;;;;;;;:24;37222:6;37205:24;;;;;;;;;;;:34;;;;37279:6;37250:17;:26;37268:7;37250:26;;;;;;;;;;;:35;;;;37072:221;;;:::o;18962:157::-;19047:4;19086:25;19071:40;;;:11;:40;;;;19064:47;;18962:157;;;:::o;46511:187::-;46642:48;46669:5;46676:3;46681:8;46642:26;:48::i;:::-;46511:187;;;:::o;31077:803::-;31232:4;31253:15;:2;:13;;;:15::i;:::-;31249:624;;;31305:2;31289:36;;;31326:12;:10;:12::i;:::-;31340:4;31346:7;31355:5;31289:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31285:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31552:1;31535:6;:13;:18;31531:272;;;31578:60;;;;;;;;;;:::i;:::-;;;;;;;;31531:272;31753:6;31747:13;31738:6;31734:2;31730:15;31723:38;31285:533;31422:45;;;31412:55;;;:6;:55;;;;31405:62;;;;;31249:624;31857:4;31850:11;;31077:803;;;;;;;:::o;27677:321::-;27807:18;27813:2;27817:7;27807:5;:18::i;:::-;27858:54;27889:1;27893:2;27897:7;27906:5;27858:22;:54::i;:::-;27836:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;27677:321;;;:::o;28334:382::-;28428:1;28414:16;;:2;:16;;;;28406:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28487:16;28495:7;28487;:16::i;:::-;28486:17;28478:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28549:45;28578:1;28582:2;28586:7;28549:20;:45::i;:::-;28624:1;28607:9;:13;28617:2;28607:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28655:2;28636:7;:16;28644:7;28636:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28700:7;28696:2;28675:33;;28692:1;28675:33;;;;;;;;;;;;28334:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:256::-;;4986:2;4974:9;4965:7;4961:23;4957:32;4954:2;;;5002:1;4999;4992:12;4954:2;5045:1;5070:50;5112:7;5103:6;5092:9;5088:22;5070:50;:::i;:::-;5060:60;;5016:114;4944:193;;;;:::o;5143:260::-;;5250:2;5238:9;5229:7;5225:23;5221:32;5218:2;;;5266:1;5263;5256:12;5218:2;5309:1;5334:52;5378:7;5369:6;5358:9;5354:22;5334:52;:::i;:::-;5324:62;;5280:116;5208:195;;;;:::o;5409:282::-;;5527:2;5515:9;5506:7;5502:23;5498:32;5495:2;;;5543:1;5540;5533:12;5495:2;5586:1;5611:63;5666:7;5657:6;5646:9;5642:22;5611:63;:::i;:::-;5601:73;;5557:127;5485:206;;;;:::o;5697:375::-;;5815:2;5803:9;5794:7;5790:23;5786:32;5783:2;;;5831:1;5828;5821:12;5783:2;5902:1;5891:9;5887:17;5874:31;5932:18;5924:6;5921:30;5918:2;;;5964:1;5961;5954:12;5918:2;5992:63;6047:7;6038:6;6027:9;6023:22;5992:63;:::i;:::-;5982:73;;5845:220;5773:299;;;;:::o;6078:262::-;;6186:2;6174:9;6165:7;6161:23;6157:32;6154:2;;;6202:1;6199;6192:12;6154:2;6245:1;6270:53;6315:7;6306:6;6295:9;6291:22;6270:53;:::i;:::-;6260:63;;6216:117;6144:196;;;;:::o;6346:179::-;;6436:46;6478:3;6470:6;6436:46;:::i;:::-;6514:4;6509:3;6505:14;6491:28;;6426:99;;;;:::o;6531:118::-;6618:24;6636:5;6618:24;:::i;:::-;6613:3;6606:37;6596:53;;:::o;6685:732::-;;6833:54;6881:5;6833:54;:::i;:::-;6903:86;6982:6;6977:3;6903:86;:::i;:::-;6896:93;;7013:56;7063:5;7013:56;:::i;:::-;7092:7;7123:1;7108:284;7133:6;7130:1;7127:13;7108:284;;;7209:6;7203:13;7236:63;7295:3;7280:13;7236:63;:::i;:::-;7229:70;;7322:60;7375:6;7322:60;:::i;:::-;7312:70;;7168:224;7155:1;7152;7148:9;7143:14;;7108:284;;;7112:14;7408:3;7401:10;;6809:608;;;;;;;:::o;7423:109::-;7504:21;7519:5;7504:21;:::i;:::-;7499:3;7492:34;7482:50;;:::o;7538:360::-;;7652:38;7684:5;7652:38;:::i;:::-;7706:70;7769:6;7764:3;7706:70;:::i;:::-;7699:77;;7785:52;7830:6;7825:3;7818:4;7811:5;7807:16;7785:52;:::i;:::-;7862:29;7884:6;7862:29;:::i;:::-;7857:3;7853:39;7846:46;;7628:270;;;;;:::o;7904:364::-;;8020:39;8053:5;8020:39;:::i;:::-;8075:71;8139:6;8134:3;8075:71;:::i;:::-;8068:78;;8155:52;8200:6;8195:3;8188:4;8181:5;8177:16;8155:52;:::i;:::-;8232:29;8254:6;8232:29;:::i;:::-;8227:3;8223:39;8216:46;;7996:272;;;;;:::o;8274:377::-;;8408:39;8441:5;8408:39;:::i;:::-;8463:89;8545:6;8540:3;8463:89;:::i;:::-;8456:96;;8561:52;8606:6;8601:3;8594:4;8587:5;8583:16;8561:52;:::i;:::-;8638:6;8633:3;8629:16;8622:23;;8384:267;;;;;:::o;8657:375::-;;8820:67;8884:2;8879:3;8820:67;:::i;:::-;8813:74;;8917:34;8913:1;8908:3;8904:11;8897:55;8983:13;8978:2;8973:3;8969:12;8962:35;9023:2;9018:3;9014:12;9007:19;;8803:229;;;:::o;9038:382::-;;9201:67;9265:2;9260:3;9201:67;:::i;:::-;9194:74;;9298:34;9294:1;9289:3;9285:11;9278:55;9364:20;9359:2;9354:3;9350:12;9343:42;9411:2;9406:3;9402:12;9395:19;;9184:236;;;:::o;9426:370::-;;9589:67;9653:2;9648:3;9589:67;:::i;:::-;9582:74;;9686:34;9682:1;9677:3;9673:11;9666:55;9752:8;9747:2;9742:3;9738:12;9731:30;9787:2;9782:3;9778:12;9771:19;;9572:224;;;:::o;9802:326::-;;9965:67;10029:2;10024:3;9965:67;:::i;:::-;9958:74;;10062:30;10058:1;10053:3;10049:11;10042:51;10119:2;10114:3;10110:12;10103:19;;9948:180;;;:::o;10134:368::-;;10297:67;10361:2;10356:3;10297:67;:::i;:::-;10290:74;;10394:34;10390:1;10385:3;10381:11;10374:55;10460:6;10455:2;10450:3;10446:12;10439:28;10493:2;10488:3;10484:12;10477:19;;10280:222;;;:::o;10508:323::-;;10671:67;10735:2;10730:3;10671:67;:::i;:::-;10664:74;;10768:27;10764:1;10759:3;10755:11;10748:48;10822:2;10817:3;10813:12;10806:19;;10654:177;;;:::o;10837:376::-;;11000:67;11064:2;11059:3;11000:67;:::i;:::-;10993:74;;11097:34;11093:1;11088:3;11084:11;11077:55;11163:14;11158:2;11153:3;11149:12;11142:36;11204:2;11199:3;11195:12;11188:19;;10983:230;;;:::o;11219:388::-;;11382:67;11446:2;11441:3;11382:67;:::i;:::-;11375:74;;11479:34;11475:1;11470:3;11466:11;11459:55;11545:26;11540:2;11535:3;11531:12;11524:48;11598:2;11593:3;11589:12;11582:19;;11365:242;;;:::o;11613:374::-;;11776:67;11840:2;11835:3;11776:67;:::i;:::-;11769:74;;11873:34;11869:1;11864:3;11860:11;11853:55;11939:12;11934:2;11929:3;11925:12;11918:34;11978:2;11973:3;11969:12;11962:19;;11759:228;;;:::o;11993:373::-;;12156:67;12220:2;12215:3;12156:67;:::i;:::-;12149:74;;12253:34;12249:1;12244:3;12240:11;12233:55;12319:11;12314:2;12309:3;12305:12;12298:33;12357:2;12352:3;12348:12;12341:19;;12139:227;;;:::o;12372:372::-;;12535:67;12599:2;12594:3;12535:67;:::i;:::-;12528:74;;12632:34;12628:1;12623:3;12619:11;12612:55;12698:10;12693:2;12688:3;12684:12;12677:32;12735:2;12730:3;12726:12;12719:19;;12518:226;;;:::o;12750:327::-;;12913:67;12977:2;12972:3;12913:67;:::i;:::-;12906:74;;13010:31;13006:1;13001:3;12997:11;12990:52;13068:2;13063:3;13059:12;13052:19;;12896:181;;;:::o;13083:330::-;;13246:67;13310:2;13305:3;13246:67;:::i;:::-;13239:74;;13343:34;13339:1;13334:3;13330:11;13323:55;13404:2;13399:3;13395:12;13388:19;;13229:184;;;:::o;13419:376::-;;13582:67;13646:2;13641:3;13582:67;:::i;:::-;13575:74;;13679:34;13675:1;13670:3;13666:11;13659:55;13745:14;13740:2;13735:3;13731:12;13724:36;13786:2;13781:3;13777:12;13770:19;;13565:230;;;:::o;13801:330::-;;13964:67;14028:2;14023:3;13964:67;:::i;:::-;13957:74;;14061:34;14057:1;14052:3;14048:11;14041:55;14122:2;14117:3;14113:12;14106:19;;13947:184;;;:::o;14137:373::-;;14300:67;14364:2;14359:3;14300:67;:::i;:::-;14293:74;;14397:34;14393:1;14388:3;14384:11;14377:55;14463:11;14458:2;14453:3;14449:12;14442:33;14501:2;14496:3;14492:12;14485:19;;14283:227;;;:::o;14516:379::-;;14679:67;14743:2;14738:3;14679:67;:::i;:::-;14672:74;;14776:34;14772:1;14767:3;14763:11;14756:55;14842:17;14837:2;14832:3;14828:12;14821:39;14886:2;14881:3;14877:12;14870:19;;14662:233;;;:::o;14901:365::-;;15064:67;15128:2;15123:3;15064:67;:::i;:::-;15057:74;;15161:34;15157:1;15152:3;15148:11;15141:55;15227:3;15222:2;15217:3;15213:12;15206:25;15257:2;15252:3;15248:12;15241:19;;15047:219;;;:::o;15272:323::-;;15435:67;15499:2;15494:3;15435:67;:::i;:::-;15428:74;;15532:27;15528:1;15523:3;15519:11;15512:48;15586:2;15581:3;15577:12;15570:19;;15418:177;;;:::o;15601:381::-;;15764:67;15828:2;15823:3;15764:67;:::i;:::-;15757:74;;15861:34;15857:1;15852:3;15848:11;15841:55;15927:19;15922:2;15917:3;15913:12;15906:41;15973:2;15968:3;15964:12;15957:19;;15747:235;;;:::o;15988:376::-;;16151:67;16215:2;16210:3;16151:67;:::i;:::-;16144:74;;16248:34;16244:1;16239:3;16235:11;16228:55;16314:14;16309:2;16304:3;16300:12;16293:36;16355:2;16350:3;16346:12;16339:19;;16134:230;;;:::o;16370:328::-;;16533:67;16597:2;16592:3;16533:67;:::i;:::-;16526:74;;16630:32;16626:1;16621:3;16617:11;16610:53;16689:2;16684:3;16680:12;16673:19;;16516:182;;;:::o;16704:108::-;16781:24;16799:5;16781:24;:::i;:::-;16776:3;16769:37;16759:53;;:::o;16818:118::-;16905:24;16923:5;16905:24;:::i;:::-;16900:3;16893:37;16883:53;;:::o;16942:435::-;;17144:95;17235:3;17226:6;17144:95;:::i;:::-;17137:102;;17256:95;17347:3;17338:6;17256:95;:::i;:::-;17249:102;;17368:3;17361:10;;17126:251;;;;;:::o;17383:222::-;;17514:2;17503:9;17499:18;17491:26;;17527:71;17595:1;17584:9;17580:17;17571:6;17527:71;:::i;:::-;17481:124;;;;:::o;17611:640::-;;17844:3;17833:9;17829:19;17821:27;;17858:71;17926:1;17915:9;17911:17;17902:6;17858:71;:::i;:::-;17939:72;18007:2;17996:9;17992:18;17983:6;17939:72;:::i;:::-;18021;18089:2;18078:9;18074:18;18065:6;18021:72;:::i;:::-;18140:9;18134:4;18130:20;18125:2;18114:9;18110:18;18103:48;18168:76;18239:4;18230:6;18168:76;:::i;:::-;18160:84;;17811:440;;;;;;;:::o;18257:373::-;;18438:2;18427:9;18423:18;18415:26;;18487:9;18481:4;18477:20;18473:1;18462:9;18458:17;18451:47;18515:108;18618:4;18609:6;18515:108;:::i;:::-;18507:116;;18405:225;;;;:::o;18636:210::-;;18761:2;18750:9;18746:18;18738:26;;18774:65;18836:1;18825:9;18821:17;18812:6;18774:65;:::i;:::-;18728:118;;;;:::o;18852:313::-;;19003:2;18992:9;18988:18;18980:26;;19052:9;19046:4;19042:20;19038:1;19027:9;19023:17;19016:47;19080:78;19153:4;19144:6;19080:78;:::i;:::-;19072:86;;18970:195;;;;:::o;19171:419::-;;19375:2;19364:9;19360:18;19352:26;;19424:9;19418:4;19414:20;19410:1;19399:9;19395:17;19388:47;19452:131;19578:4;19452:131;:::i;:::-;19444:139;;19342:248;;;:::o;19596:419::-;;19800:2;19789:9;19785:18;19777:26;;19849:9;19843:4;19839:20;19835:1;19824:9;19820:17;19813:47;19877:131;20003:4;19877:131;:::i;:::-;19869:139;;19767:248;;;:::o;20021:419::-;;20225:2;20214:9;20210:18;20202:26;;20274:9;20268:4;20264:20;20260:1;20249:9;20245:17;20238:47;20302:131;20428:4;20302:131;:::i;:::-;20294:139;;20192:248;;;:::o;20446:419::-;;20650:2;20639:9;20635:18;20627:26;;20699:9;20693:4;20689:20;20685:1;20674:9;20670:17;20663:47;20727:131;20853:4;20727:131;:::i;:::-;20719:139;;20617:248;;;:::o;20871:419::-;;21075:2;21064:9;21060:18;21052:26;;21124:9;21118:4;21114:20;21110:1;21099:9;21095:17;21088:47;21152:131;21278:4;21152:131;:::i;:::-;21144:139;;21042:248;;;:::o;21296:419::-;;21500:2;21489:9;21485:18;21477:26;;21549:9;21543:4;21539:20;21535:1;21524:9;21520:17;21513:47;21577:131;21703:4;21577:131;:::i;:::-;21569:139;;21467:248;;;:::o;21721:419::-;;21925:2;21914:9;21910:18;21902:26;;21974:9;21968:4;21964:20;21960:1;21949:9;21945:17;21938:47;22002:131;22128:4;22002:131;:::i;:::-;21994:139;;21892:248;;;:::o;22146:419::-;;22350:2;22339:9;22335:18;22327:26;;22399:9;22393:4;22389:20;22385:1;22374:9;22370:17;22363:47;22427:131;22553:4;22427:131;:::i;:::-;22419:139;;22317:248;;;:::o;22571:419::-;;22775:2;22764:9;22760:18;22752:26;;22824:9;22818:4;22814:20;22810:1;22799:9;22795:17;22788:47;22852:131;22978:4;22852:131;:::i;:::-;22844:139;;22742:248;;;:::o;22996:419::-;;23200:2;23189:9;23185:18;23177:26;;23249:9;23243:4;23239:20;23235:1;23224:9;23220:17;23213:47;23277:131;23403:4;23277:131;:::i;:::-;23269:139;;23167:248;;;:::o;23421:419::-;;23625:2;23614:9;23610:18;23602:26;;23674:9;23668:4;23664:20;23660:1;23649:9;23645:17;23638:47;23702:131;23828:4;23702:131;:::i;:::-;23694:139;;23592:248;;;:::o;23846:419::-;;24050:2;24039:9;24035:18;24027:26;;24099:9;24093:4;24089:20;24085:1;24074:9;24070:17;24063:47;24127:131;24253:4;24127:131;:::i;:::-;24119:139;;24017:248;;;:::o;24271:419::-;;24475:2;24464:9;24460:18;24452:26;;24524:9;24518:4;24514:20;24510:1;24499:9;24495:17;24488:47;24552:131;24678:4;24552:131;:::i;:::-;24544:139;;24442:248;;;:::o;24696:419::-;;24900:2;24889:9;24885:18;24877:26;;24949:9;24943:4;24939:20;24935:1;24924:9;24920:17;24913:47;24977:131;25103:4;24977:131;:::i;:::-;24969:139;;24867:248;;;:::o;25121:419::-;;25325:2;25314:9;25310:18;25302:26;;25374:9;25368:4;25364:20;25360:1;25349:9;25345:17;25338:47;25402:131;25528:4;25402:131;:::i;:::-;25394:139;;25292:248;;;:::o;25546:419::-;;25750:2;25739:9;25735:18;25727:26;;25799:9;25793:4;25789:20;25785:1;25774:9;25770:17;25763:47;25827:131;25953:4;25827:131;:::i;:::-;25819:139;;25717:248;;;:::o;25971:419::-;;26175:2;26164:9;26160:18;26152:26;;26224:9;26218:4;26214:20;26210:1;26199:9;26195:17;26188:47;26252:131;26378:4;26252:131;:::i;:::-;26244:139;;26142:248;;;:::o;26396:419::-;;26600:2;26589:9;26585:18;26577:26;;26649:9;26643:4;26639:20;26635:1;26624:9;26620:17;26613:47;26677:131;26803:4;26677:131;:::i;:::-;26669:139;;26567:248;;;:::o;26821:419::-;;27025:2;27014:9;27010:18;27002:26;;27074:9;27068:4;27064:20;27060:1;27049:9;27045:17;27038:47;27102:131;27228:4;27102:131;:::i;:::-;27094:139;;26992:248;;;:::o;27246:419::-;;27450:2;27439:9;27435:18;27427:26;;27499:9;27493:4;27489:20;27485:1;27474:9;27470:17;27463:47;27527:131;27653:4;27527:131;:::i;:::-;27519:139;;27417:248;;;:::o;27671:419::-;;27875:2;27864:9;27860:18;27852:26;;27924:9;27918:4;27914:20;27910:1;27899:9;27895:17;27888:47;27952:131;28078:4;27952:131;:::i;:::-;27944:139;;27842:248;;;:::o;28096:419::-;;28300:2;28289:9;28285:18;28277:26;;28349:9;28343:4;28339:20;28335:1;28324:9;28320:17;28313:47;28377:131;28503:4;28377:131;:::i;:::-;28369:139;;28267:248;;;:::o;28521:222::-;;28652:2;28641:9;28637:18;28629:26;;28665:71;28733:1;28722:9;28718:17;28709:6;28665:71;:::i;:::-;28619:124;;;;:::o;28749:283::-;;28815:2;28809:9;28799:19;;28857:4;28849:6;28845:17;28964:6;28952:10;28949:22;28928:18;28916:10;28913:34;28910:62;28907:2;;;28975:18;;:::i;:::-;28907:2;29015:10;29011:2;29004:22;28789:243;;;;:::o;29038:331::-;;29189:18;29181:6;29178:30;29175:2;;;29211:18;;:::i;:::-;29175:2;29296:4;29292:9;29285:4;29277:6;29273:17;29269:33;29261:41;;29357:4;29351;29347:15;29339:23;;29104:265;;;:::o;29375:332::-;;29527:18;29519:6;29516:30;29513:2;;;29549:18;;:::i;:::-;29513:2;29634:4;29630:9;29623:4;29615:6;29611:17;29607:33;29599:41;;29695:4;29689;29685:15;29677:23;;29442:265;;;:::o;29713:132::-;;29803:3;29795:11;;29833:4;29828:3;29824:14;29816:22;;29785:60;;;:::o;29851:114::-;;29952:5;29946:12;29936:22;;29925:40;;;:::o;29971:98::-;;30056:5;30050:12;30040:22;;30029:40;;;:::o;30075:99::-;;30161:5;30155:12;30145:22;;30134:40;;;:::o;30180:113::-;;30282:4;30277:3;30273:14;30265:22;;30255:38;;;:::o;30299:184::-;;30432:6;30427:3;30420:19;30472:4;30467:3;30463:14;30448:29;;30410:73;;;;:::o;30489:168::-;;30606:6;30601:3;30594:19;30646:4;30641:3;30637:14;30622:29;;30584:73;;;;:::o;30663:169::-;;30781:6;30776:3;30769:19;30821:4;30816:3;30812:14;30797:29;;30759:73;;;;:::o;30838:148::-;;30977:3;30962:18;;30952:34;;;;:::o;30992:305::-;;31051:20;31069:1;31051:20;:::i;:::-;31046:25;;31085:20;31103:1;31085:20;:::i;:::-;31080:25;;31239:1;31171:66;31167:74;31164:1;31161:81;31158:2;;;31245:18;;:::i;:::-;31158:2;31289:1;31286;31282:9;31275:16;;31036:261;;;;:::o;31303:185::-;;31360:20;31378:1;31360:20;:::i;:::-;31355:25;;31394:20;31412:1;31394:20;:::i;:::-;31389:25;;31433:1;31423:2;;31438:18;;:::i;:::-;31423:2;31480:1;31477;31473:9;31468:14;;31345:143;;;;:::o;31494:348::-;;31557:20;31575:1;31557:20;:::i;:::-;31552:25;;31591:20;31609:1;31591:20;:::i;:::-;31586:25;;31779:1;31711:66;31707:74;31704:1;31701:81;31696:1;31689:9;31682:17;31678:105;31675:2;;;31786:18;;:::i;:::-;31675:2;31834:1;31831;31827:9;31816:20;;31542:300;;;;:::o;31848:191::-;;31908:20;31926:1;31908:20;:::i;:::-;31903:25;;31942:20;31960:1;31942:20;:::i;:::-;31937:25;;31981:1;31978;31975:8;31972:2;;;31986:18;;:::i;:::-;31972:2;32031:1;32028;32024:9;32016:17;;31893:146;;;;:::o;32045:96::-;;32111:24;32129:5;32111:24;:::i;:::-;32100:35;;32090:51;;;:::o;32147:90::-;;32224:5;32217:13;32210:21;32199:32;;32189:48;;;:::o;32243:149::-;;32319:66;32312:5;32308:78;32297:89;;32287:105;;;:::o;32398:126::-;;32475:42;32468:5;32464:54;32453:65;;32443:81;;;:::o;32530:77::-;;32596:5;32585:16;;32575:32;;;:::o;32613:154::-;32697:6;32692:3;32687;32674:30;32759:1;32750:6;32745:3;32741:16;32734:27;32664:103;;;:::o;32773:307::-;32841:1;32851:113;32865:6;32862:1;32859:13;32851:113;;;32950:1;32945:3;32941:11;32935:18;32931:1;32926:3;32922:11;32915:39;32887:2;32884:1;32880:10;32875:15;;32851:113;;;32982:6;32979:1;32976:13;32973:2;;;33062:1;33053:6;33048:3;33044:16;33037:27;32973:2;32822:258;;;;:::o;33086:320::-;;33167:1;33161:4;33157:12;33147:22;;33214:1;33208:4;33204:12;33235:18;33225:2;;33291:4;33283:6;33279:17;33269:27;;33225:2;33353;33345:6;33342:14;33322:18;33319:38;33316:2;;;33372:18;;:::i;:::-;33316:2;33137:269;;;;:::o;33412:233::-;;33474:24;33492:5;33474:24;:::i;:::-;33465:33;;33520:66;33513:5;33510:77;33507:2;;;33590:18;;:::i;:::-;33507:2;33637:1;33630:5;33626:13;33619:20;;33455:190;;;:::o;33651:176::-;;33700:20;33718:1;33700:20;:::i;:::-;33695:25;;33734:20;33752:1;33734:20;:::i;:::-;33729:25;;33773:1;33763:2;;33778:18;;:::i;:::-;33763:2;33819:1;33816;33812:9;33807:14;;33685:142;;;;:::o;33833:180::-;33881:77;33878:1;33871:88;33978:4;33975:1;33968:15;34002:4;33999:1;33992:15;34019:180;34067:77;34064:1;34057:88;34164:4;34161:1;34154:15;34188:4;34185:1;34178:15;34205:180;34253:77;34250:1;34243:88;34350:4;34347:1;34340:15;34374:4;34371:1;34364:15;34391:180;34439:77;34436:1;34429:88;34536:4;34533:1;34526:15;34560:4;34557:1;34550:15;34577:102;;34669:2;34665:7;34660:2;34653:5;34649:14;34645:28;34635:38;;34625:54;;;:::o;34685:122::-;34758:24;34776:5;34758:24;:::i;:::-;34751:5;34748:35;34738:2;;34797:1;34794;34787:12;34738:2;34728:79;:::o;34813:116::-;34883:21;34898:5;34883:21;:::i;:::-;34876:5;34873:32;34863:2;;34919:1;34916;34909:12;34863:2;34853:76;:::o;34935:120::-;35007:23;35024:5;35007:23;:::i;:::-;35000:5;34997:34;34987:2;;35045:1;35042;35035:12;34987:2;34977:78;:::o;35061:122::-;35134:24;35152:5;35134:24;:::i;:::-;35127:5;35124:35;35114:2;;35173:1;35170;35163:12;35114:2;35104:79;:::o

Swarm Source

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