ETH Price: $3,444.32 (-0.96%)
Gas: 4 Gwei

Token

Silly Gecko Gang (SGG)
 

Overview

Max Total Supply

1,112 SGG

Holders

120

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
lazthe01.eth
Balance
6 SGG
0x09846c9ed5d569b3c2429b03997ca9f7bc76393a
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
SillyGeckoGang

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : SillyGeckoGang.sol
// SPDX-License-Identifier: MIT
 
pragma solidity ^0.8.7;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
 
contract SillyGeckoGang is ERC721, Ownable {
 
   uint public totalSupply = 0;
   uint public price = 0.05 ether;
   uint public maxSupply = 4444;
   uint public freeMintSupply = 1111;
   uint public maxItem = 10;
   string public _baseTokenURI;
   bool public saleState = false;
 
   address m1 = 0x070D6e6F94599CB66D649B3AFE1b60Ffe1187F40;
   address m2 = 0xE32850e8e4b7faF5d71d5142A4Ca74F7ad4e6AE3;

   constructor() ERC721("Silly Gecko Gang", "SGG") {
       transferOwnership(0x8ee13fe15d786e2933987fAf07AfeBeC813650dA);
   }
 
   function publicMint(uint amount) external payable {
       require(amount > 0, "Can't mint zero");
 
       require(msg.value == amount * price, "Send proper ETH amount");
 
       _rawMint(msg.sender, amount);
   }
 
   function _rawMint(address to, uint amount) internal {
       require(saleState, "Sale is not active in the moment");
       require(totalSupply + amount <= maxSupply, "Sold out");
       require(amount <= maxItem, "You can only mint 10 NFT at a time");
       for (uint i = 0; i < amount; i++) {
           _mint(to, totalSupply);
           totalSupply += 1;
       }
   }
 
   function freeMint(uint amount) external {
       require(amount > 0, "Can't mint zero");
       require(freeMintSupply > 0, "No more free mint");
 
       _rawMint(msg.sender, amount);
       freeMintSupply -= amount;
   }
 
   function ownerMint(uint amount) external onlyOwner {
       _rawMint(msg.sender, amount);
   }
 
   function withdraw() public payable onlyOwner {
       uint256 _each = address(this).balance / 2;
       require(payable(m1).send(_each));
       require(payable(m2).send(_each));
   }
 
   function flipSaleState() public onlyOwner {
       saleState = !saleState;
   }
 
   function setMintPrice(uint _price) external onlyOwner {
       price = _price;
   }
 
   function setBaseTokenURI(string memory __baseTokenURI) public onlyOwner {
       _baseTokenURI = __baseTokenURI;
   }
 
   function tokenURI(uint256 _tokenId) public view override returns (string memory) {
       return string(abi.encodePacked(_baseTokenURI, Strings.toString(_tokenId)));
   }
 
}

File 2 of 11 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @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 {
        _setApprovalForAll(_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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 3 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

File 4 of 11 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 5 of 11 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 6 of 11 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 7 of 11 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 11 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 11 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 10 of 11 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 11 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxItem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","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":[],"name":"saleState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"__baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setMintPrice","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":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600060075566b1a2bc2ec5000060085561115c600955610457600a55600a600b556000600d60006101000a81548160ff02191690831515021790555073070d6e6f94599cb66d649b3afe1b60ffe1187f40600d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e32850e8e4b7faf5d71d5142a4ca74f7ad4e6ae3600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000f757600080fd5b506040518060400160405280601081526020017f53696c6c79204765636b6f2047616e67000000000000000000000000000000008152506040518060400160405280600381526020017f534747000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200017c929190620003f1565b50806001908051906020019062000195929190620003f1565b505050620001b8620001ac620001e360201b60201c565b620001eb60201b60201c565b620001dd738ee13fe15d786e2933987faf07afebec813650da620002b160201b60201c565b62000621565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002c1620001e360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002e7620003c760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000340576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003379062000511565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620003b3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003aa90620004ef565b60405180910390fd5b620003c481620001eb60201b60201c565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003ff9062000544565b90600052602060002090601f0160209004810192826200042357600085556200046f565b82601f106200043e57805160ff19168380011785556200046f565b828001600101855582156200046f579182015b828111156200046e57825182559160200191906001019062000451565b5b5090506200047e919062000482565b5090565b5b808211156200049d57600081600090555060010162000483565b5090565b6000620004b060268362000533565b9150620004bd82620005a9565b604082019050919050565b6000620004d760208362000533565b9150620004e482620005f8565b602082019050919050565b600060208201905081810360008301526200050a81620004a1565b9050919050565b600060208201905081810360008301526200052c81620004c8565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200055d57607f821691505b602082108114156200057457620005736200057a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61391380620006316000396000f3fe6080604052600436106101cd5760003560e01c80637c928fe9116100f7578063cfc86f7b11610095578063e985e9c511610064578063e985e9c514610624578063f19e75d414610661578063f2fde38b1461068a578063f4a0a528146106b3576101cd565b8063cfc86f7b14610578578063d008b056146105a3578063d5abeb01146105ce578063e150007e146105f9576101cd565b8063a035b1fe116100d1578063a035b1fe146104be578063a22cb465146104e9578063b88d4fde14610512578063c87b56dd1461053b576101cd565b80637c928fe91461043f5780638da5cb5b1461046857806395d89b4114610493576101cd565b806330176e131161016f578063603f4d521161013e578063603f4d52146103835780636352211e146103ae57806370a08231146103eb578063715018a614610428576101cd565b806330176e131461031057806334918dfd146103395780633ccfd60b1461035057806342842e0e1461035a576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632db11544146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612644565b6106dc565b6040516102069190612bcd565b60405180910390f35b34801561021b57600080fd5b506102246107be565b6040516102319190612be8565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c91906126e7565b610850565b60405161026e9190612b66565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612604565b6108d5565b005b3480156102ac57600080fd5b506102b56109ed565b6040516102c29190612eaa565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed91906124ee565b6109f3565b005b61030e600480360381019061030991906126e7565b610a53565b005b34801561031c57600080fd5b506103376004803603810190610332919061269e565b610af2565b005b34801561034557600080fd5b5061034e610b88565b005b610358610c30565b005b34801561036657600080fd5b50610381600480360381019061037c91906124ee565b610d80565b005b34801561038f57600080fd5b50610398610da0565b6040516103a59190612bcd565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d091906126e7565b610db3565b6040516103e29190612b66565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d9190612481565b610e65565b60405161041f9190612eaa565b60405180910390f35b34801561043457600080fd5b5061043d610f1d565b005b34801561044b57600080fd5b50610466600480360381019061046191906126e7565b610fa5565b005b34801561047457600080fd5b5061047d611053565b60405161048a9190612b66565b60405180910390f35b34801561049f57600080fd5b506104a861107d565b6040516104b59190612be8565b60405180910390f35b3480156104ca57600080fd5b506104d361110f565b6040516104e09190612eaa565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b91906125c4565b611115565b005b34801561051e57600080fd5b5061053960048036038101906105349190612541565b61112b565b005b34801561054757600080fd5b50610562600480360381019061055d91906126e7565b61118d565b60405161056f9190612be8565b60405180910390f35b34801561058457600080fd5b5061058d6111c1565b60405161059a9190612be8565b60405180910390f35b3480156105af57600080fd5b506105b861124f565b6040516105c59190612eaa565b60405180910390f35b3480156105da57600080fd5b506105e3611255565b6040516105f09190612eaa565b60405180910390f35b34801561060557600080fd5b5061060e61125b565b60405161061b9190612eaa565b60405180910390f35b34801561063057600080fd5b5061064b600480360381019061064691906124ae565b611261565b6040516106589190612bcd565b60405180910390f35b34801561066d57600080fd5b50610688600480360381019061068391906126e7565b6112f5565b005b34801561069657600080fd5b506106b160048036038101906106ac9190612481565b61137e565b005b3480156106bf57600080fd5b506106da60048036038101906106d591906126e7565b611476565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107b757506107b6826114fc565b5b9050919050565b6060600080546107cd9061316f565b80601f01602080910402602001604051908101604052809291908181526020018280546107f99061316f565b80156108465780601f1061081b57610100808354040283529160200191610846565b820191906000526020600020905b81548152906001019060200180831161082957829003601f168201915b5050505050905090565b600061085b82611566565b61089a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089190612dca565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108e082610db3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610951576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094890612e2a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109706115d2565b73ffffffffffffffffffffffffffffffffffffffff16148061099f575061099e816109996115d2565b611261565b5b6109de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d590612d2a565b60405180910390fd5b6109e883836115da565b505050565b60075481565b610a046109fe6115d2565b82611693565b610a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3a90612e6a565b60405180910390fd5b610a4e838383611771565b505050565b60008111610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d90612e0a565b60405180910390fd5b60085481610aa4919061302b565b3414610ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adc90612d0a565b60405180910390fd5b610aef33826119d8565b50565b610afa6115d2565b73ffffffffffffffffffffffffffffffffffffffff16610b18611053565b73ffffffffffffffffffffffffffffffffffffffff1614610b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6590612dea565b60405180910390fd5b80600c9080519060200190610b84929190612295565b5050565b610b906115d2565b73ffffffffffffffffffffffffffffffffffffffff16610bae611053565b73ffffffffffffffffffffffffffffffffffffffff1614610c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfb90612dea565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610c386115d2565b73ffffffffffffffffffffffffffffffffffffffff16610c56611053565b73ffffffffffffffffffffffffffffffffffffffff1614610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca390612dea565b60405180910390fd5b6000600247610cbb9190612ffa565b9050600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610d1d57600080fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610d7d57600080fd5b50565b610d9b8383836040518060200160405280600081525061112b565b505050565b600d60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5390612d6a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecd90612d4a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f256115d2565b73ffffffffffffffffffffffffffffffffffffffff16610f43611053565b73ffffffffffffffffffffffffffffffffffffffff1614610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9090612dea565b60405180910390fd5b610fa36000611b07565b565b60008111610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf90612e0a565b60405180910390fd5b6000600a541161102d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102490612e4a565b60405180910390fd5b61103733826119d8565b80600a60008282546110499190613085565b9250508190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461108c9061316f565b80601f01602080910402602001604051908101604052809291908181526020018280546110b89061316f565b80156111055780601f106110da57610100808354040283529160200191611105565b820191906000526020600020905b8154815290600101906020018083116110e857829003601f168201915b5050505050905090565b60085481565b6111276111206115d2565b8383611bcd565b5050565b61113c6111366115d2565b83611693565b61117b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117290612e6a565b60405180910390fd5b61118784848484611d3a565b50505050565b6060600c61119a83611d96565b6040516020016111ab929190612b42565b6040516020818303038152906040529050919050565b600c80546111ce9061316f565b80601f01602080910402602001604051908101604052809291908181526020018280546111fa9061316f565b80156112475780601f1061121c57610100808354040283529160200191611247565b820191906000526020600020905b81548152906001019060200180831161122a57829003601f168201915b505050505081565b600b5481565b60095481565b600a5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112fd6115d2565b73ffffffffffffffffffffffffffffffffffffffff1661131b611053565b73ffffffffffffffffffffffffffffffffffffffff1614611371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136890612dea565b60405180910390fd5b61137b33826119d8565b50565b6113866115d2565b73ffffffffffffffffffffffffffffffffffffffff166113a4611053565b73ffffffffffffffffffffffffffffffffffffffff16146113fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f190612dea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561146a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146190612c4a565b60405180910390fd5b61147381611b07565b50565b61147e6115d2565b73ffffffffffffffffffffffffffffffffffffffff1661149c611053565b73ffffffffffffffffffffffffffffffffffffffff16146114f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e990612dea565b60405180910390fd5b8060088190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661164d83610db3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061169e82611566565b6116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d490612cea565b60405180910390fd5b60006116e883610db3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061175757508373ffffffffffffffffffffffffffffffffffffffff1661173f84610850565b73ffffffffffffffffffffffffffffffffffffffff16145b8061176857506117678185611261565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661179182610db3565b73ffffffffffffffffffffffffffffffffffffffff16146117e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117de90612c6a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184e90612caa565b60405180910390fd5b611862838383611ef7565b61186d6000826115da565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118bd9190613085565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119149190612fa4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119d3838383611efc565b505050565b600d60009054906101000a900460ff16611a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1e90612c0a565b60405180910390fd5b60095481600754611a389190612fa4565b1115611a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7090612e8a565b60405180910390fd5b600b54811115611abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab590612daa565b60405180910390fd5b60005b81811015611b0257611ad583600754611f01565b600160076000828254611ae89190612fa4565b925050819055508080611afa906131d2565b915050611ac1565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3390612cca565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d2d9190612bcd565b60405180910390a3505050565b611d45848484611771565b611d51848484846120db565b611d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8790612c2a565b60405180910390fd5b50505050565b60606000821415611dde576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ef2565b600082905060005b60008214611e10578080611df9906131d2565b915050600a82611e099190612ffa565b9150611de6565b60008167ffffffffffffffff811115611e2c57611e2b613308565b5b6040519080825280601f01601f191660200182016040528015611e5e5781602001600182028036833780820191505090505b5090505b60008514611eeb57600182611e779190613085565b9150600a85611e86919061321b565b6030611e929190612fa4565b60f81b818381518110611ea857611ea76132d9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ee49190612ffa565b9450611e62565b8093505050505b919050565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6890612d8a565b60405180910390fd5b611f7a81611566565b15611fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb190612c8a565b60405180910390fd5b611fc660008383611ef7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120169190612fa4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120d760008383611efc565b5050565b60006120fc8473ffffffffffffffffffffffffffffffffffffffff16612272565b15612265578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121256115d2565b8786866040518563ffffffff1660e01b81526004016121479493929190612b81565b602060405180830381600087803b15801561216157600080fd5b505af192505050801561219257506040513d601f19601f8201168201806040525081019061218f9190612671565b60015b612215573d80600081146121c2576040519150601f19603f3d011682016040523d82523d6000602084013e6121c7565b606091505b5060008151141561220d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220490612c2a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061226a565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546122a19061316f565b90600052602060002090601f0160209004810192826122c3576000855561230a565b82601f106122dc57805160ff191683800117855561230a565b8280016001018555821561230a579182015b828111156123095782518255916020019190600101906122ee565b5b509050612317919061231b565b5090565b5b8082111561233457600081600090555060010161231c565b5090565b600061234b61234684612eea565b612ec5565b9050828152602081018484840111156123675761236661333c565b5b61237284828561312d565b509392505050565b600061238d61238884612f1b565b612ec5565b9050828152602081018484840111156123a9576123a861333c565b5b6123b484828561312d565b509392505050565b6000813590506123cb81613881565b92915050565b6000813590506123e081613898565b92915050565b6000813590506123f5816138af565b92915050565b60008151905061240a816138af565b92915050565b600082601f83011261242557612424613337565b5b8135612435848260208601612338565b91505092915050565b600082601f83011261245357612452613337565b5b813561246384826020860161237a565b91505092915050565b60008135905061247b816138c6565b92915050565b60006020828403121561249757612496613346565b5b60006124a5848285016123bc565b91505092915050565b600080604083850312156124c5576124c4613346565b5b60006124d3858286016123bc565b92505060206124e4858286016123bc565b9150509250929050565b60008060006060848603121561250757612506613346565b5b6000612515868287016123bc565b9350506020612526868287016123bc565b92505060406125378682870161246c565b9150509250925092565b6000806000806080858703121561255b5761255a613346565b5b6000612569878288016123bc565b945050602061257a878288016123bc565b935050604061258b8782880161246c565b925050606085013567ffffffffffffffff8111156125ac576125ab613341565b5b6125b887828801612410565b91505092959194509250565b600080604083850312156125db576125da613346565b5b60006125e9858286016123bc565b92505060206125fa858286016123d1565b9150509250929050565b6000806040838503121561261b5761261a613346565b5b6000612629858286016123bc565b925050602061263a8582860161246c565b9150509250929050565b60006020828403121561265a57612659613346565b5b6000612668848285016123e6565b91505092915050565b60006020828403121561268757612686613346565b5b6000612695848285016123fb565b91505092915050565b6000602082840312156126b4576126b3613346565b5b600082013567ffffffffffffffff8111156126d2576126d1613341565b5b6126de8482850161243e565b91505092915050565b6000602082840312156126fd576126fc613346565b5b600061270b8482850161246c565b91505092915050565b61271d816130b9565b82525050565b61272c816130cb565b82525050565b600061273d82612f61565b6127478185612f77565b935061275781856020860161313c565b6127608161334b565b840191505092915050565b600061277682612f6c565b6127808185612f88565b935061279081856020860161313c565b6127998161334b565b840191505092915050565b60006127af82612f6c565b6127b98185612f99565b93506127c981856020860161313c565b80840191505092915050565b600081546127e28161316f565b6127ec8186612f99565b9450600182166000811461280757600181146128185761284b565b60ff1983168652818601935061284b565b61282185612f4c565b60005b8381101561284357815481890152600182019150602081019050612824565b838801955050505b50505092915050565b6000612861602083612f88565b915061286c8261335c565b602082019050919050565b6000612884603283612f88565b915061288f82613385565b604082019050919050565b60006128a7602683612f88565b91506128b2826133d4565b604082019050919050565b60006128ca602583612f88565b91506128d582613423565b604082019050919050565b60006128ed601c83612f88565b91506128f882613472565b602082019050919050565b6000612910602483612f88565b915061291b8261349b565b604082019050919050565b6000612933601983612f88565b915061293e826134ea565b602082019050919050565b6000612956602c83612f88565b915061296182613513565b604082019050919050565b6000612979601683612f88565b915061298482613562565b602082019050919050565b600061299c603883612f88565b91506129a78261358b565b604082019050919050565b60006129bf602a83612f88565b91506129ca826135da565b604082019050919050565b60006129e2602983612f88565b91506129ed82613629565b604082019050919050565b6000612a05602083612f88565b9150612a1082613678565b602082019050919050565b6000612a28602283612f88565b9150612a33826136a1565b604082019050919050565b6000612a4b602c83612f88565b9150612a56826136f0565b604082019050919050565b6000612a6e602083612f88565b9150612a798261373f565b602082019050919050565b6000612a91600f83612f88565b9150612a9c82613768565b602082019050919050565b6000612ab4602183612f88565b9150612abf82613791565b604082019050919050565b6000612ad7601183612f88565b9150612ae2826137e0565b602082019050919050565b6000612afa603183612f88565b9150612b0582613809565b604082019050919050565b6000612b1d600883612f88565b9150612b2882613858565b602082019050919050565b612b3c81613123565b82525050565b6000612b4e82856127d5565b9150612b5a82846127a4565b91508190509392505050565b6000602082019050612b7b6000830184612714565b92915050565b6000608082019050612b966000830187612714565b612ba36020830186612714565b612bb06040830185612b33565b8181036060830152612bc28184612732565b905095945050505050565b6000602082019050612be26000830184612723565b92915050565b60006020820190508181036000830152612c02818461276b565b905092915050565b60006020820190508181036000830152612c2381612854565b9050919050565b60006020820190508181036000830152612c4381612877565b9050919050565b60006020820190508181036000830152612c638161289a565b9050919050565b60006020820190508181036000830152612c83816128bd565b9050919050565b60006020820190508181036000830152612ca3816128e0565b9050919050565b60006020820190508181036000830152612cc381612903565b9050919050565b60006020820190508181036000830152612ce381612926565b9050919050565b60006020820190508181036000830152612d0381612949565b9050919050565b60006020820190508181036000830152612d238161296c565b9050919050565b60006020820190508181036000830152612d438161298f565b9050919050565b60006020820190508181036000830152612d63816129b2565b9050919050565b60006020820190508181036000830152612d83816129d5565b9050919050565b60006020820190508181036000830152612da3816129f8565b9050919050565b60006020820190508181036000830152612dc381612a1b565b9050919050565b60006020820190508181036000830152612de381612a3e565b9050919050565b60006020820190508181036000830152612e0381612a61565b9050919050565b60006020820190508181036000830152612e2381612a84565b9050919050565b60006020820190508181036000830152612e4381612aa7565b9050919050565b60006020820190508181036000830152612e6381612aca565b9050919050565b60006020820190508181036000830152612e8381612aed565b9050919050565b60006020820190508181036000830152612ea381612b10565b9050919050565b6000602082019050612ebf6000830184612b33565b92915050565b6000612ecf612ee0565b9050612edb82826131a1565b919050565b6000604051905090565b600067ffffffffffffffff821115612f0557612f04613308565b5b612f0e8261334b565b9050602081019050919050565b600067ffffffffffffffff821115612f3657612f35613308565b5b612f3f8261334b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612faf82613123565b9150612fba83613123565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612fef57612fee61324c565b5b828201905092915050565b600061300582613123565b915061301083613123565b9250826130205761301f61327b565b5b828204905092915050565b600061303682613123565b915061304183613123565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561307a5761307961324c565b5b828202905092915050565b600061309082613123565b915061309b83613123565b9250828210156130ae576130ad61324c565b5b828203905092915050565b60006130c482613103565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561315a57808201518184015260208101905061313f565b83811115613169576000848401525b50505050565b6000600282049050600182168061318757607f821691505b6020821081141561319b5761319a6132aa565b5b50919050565b6131aa8261334b565b810181811067ffffffffffffffff821117156131c9576131c8613308565b5b80604052505050565b60006131dd82613123565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156132105761320f61324c565b5b600182019050919050565b600061322682613123565b915061323183613123565b9250826132415761324061327b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f53616c65206973206e6f742061637469766520696e20746865206d6f6d656e74600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f53656e642070726f7065722045544820616d6f756e7400000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f596f752063616e206f6e6c79206d696e74203130204e4654206174206120746960008201527f6d65000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616e2774206d696e74207a65726f0000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f72652066726565206d696e74000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b61388a816130b9565b811461389557600080fd5b50565b6138a1816130cb565b81146138ac57600080fd5b50565b6138b8816130d7565b81146138c357600080fd5b50565b6138cf81613123565b81146138da57600080fd5b5056fea2646970667358221220741100062922031c98f0a3626fde20fafff840131e76ebe92aca242856807fe864736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80637c928fe9116100f7578063cfc86f7b11610095578063e985e9c511610064578063e985e9c514610624578063f19e75d414610661578063f2fde38b1461068a578063f4a0a528146106b3576101cd565b8063cfc86f7b14610578578063d008b056146105a3578063d5abeb01146105ce578063e150007e146105f9576101cd565b8063a035b1fe116100d1578063a035b1fe146104be578063a22cb465146104e9578063b88d4fde14610512578063c87b56dd1461053b576101cd565b80637c928fe91461043f5780638da5cb5b1461046857806395d89b4114610493576101cd565b806330176e131161016f578063603f4d521161013e578063603f4d52146103835780636352211e146103ae57806370a08231146103eb578063715018a614610428576101cd565b806330176e131461031057806334918dfd146103395780633ccfd60b1461035057806342842e0e1461035a576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632db11544146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612644565b6106dc565b6040516102069190612bcd565b60405180910390f35b34801561021b57600080fd5b506102246107be565b6040516102319190612be8565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c91906126e7565b610850565b60405161026e9190612b66565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612604565b6108d5565b005b3480156102ac57600080fd5b506102b56109ed565b6040516102c29190612eaa565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed91906124ee565b6109f3565b005b61030e600480360381019061030991906126e7565b610a53565b005b34801561031c57600080fd5b506103376004803603810190610332919061269e565b610af2565b005b34801561034557600080fd5b5061034e610b88565b005b610358610c30565b005b34801561036657600080fd5b50610381600480360381019061037c91906124ee565b610d80565b005b34801561038f57600080fd5b50610398610da0565b6040516103a59190612bcd565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d091906126e7565b610db3565b6040516103e29190612b66565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d9190612481565b610e65565b60405161041f9190612eaa565b60405180910390f35b34801561043457600080fd5b5061043d610f1d565b005b34801561044b57600080fd5b50610466600480360381019061046191906126e7565b610fa5565b005b34801561047457600080fd5b5061047d611053565b60405161048a9190612b66565b60405180910390f35b34801561049f57600080fd5b506104a861107d565b6040516104b59190612be8565b60405180910390f35b3480156104ca57600080fd5b506104d361110f565b6040516104e09190612eaa565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b91906125c4565b611115565b005b34801561051e57600080fd5b5061053960048036038101906105349190612541565b61112b565b005b34801561054757600080fd5b50610562600480360381019061055d91906126e7565b61118d565b60405161056f9190612be8565b60405180910390f35b34801561058457600080fd5b5061058d6111c1565b60405161059a9190612be8565b60405180910390f35b3480156105af57600080fd5b506105b861124f565b6040516105c59190612eaa565b60405180910390f35b3480156105da57600080fd5b506105e3611255565b6040516105f09190612eaa565b60405180910390f35b34801561060557600080fd5b5061060e61125b565b60405161061b9190612eaa565b60405180910390f35b34801561063057600080fd5b5061064b600480360381019061064691906124ae565b611261565b6040516106589190612bcd565b60405180910390f35b34801561066d57600080fd5b50610688600480360381019061068391906126e7565b6112f5565b005b34801561069657600080fd5b506106b160048036038101906106ac9190612481565b61137e565b005b3480156106bf57600080fd5b506106da60048036038101906106d591906126e7565b611476565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107b757506107b6826114fc565b5b9050919050565b6060600080546107cd9061316f565b80601f01602080910402602001604051908101604052809291908181526020018280546107f99061316f565b80156108465780601f1061081b57610100808354040283529160200191610846565b820191906000526020600020905b81548152906001019060200180831161082957829003601f168201915b5050505050905090565b600061085b82611566565b61089a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089190612dca565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108e082610db3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610951576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094890612e2a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109706115d2565b73ffffffffffffffffffffffffffffffffffffffff16148061099f575061099e816109996115d2565b611261565b5b6109de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d590612d2a565b60405180910390fd5b6109e883836115da565b505050565b60075481565b610a046109fe6115d2565b82611693565b610a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3a90612e6a565b60405180910390fd5b610a4e838383611771565b505050565b60008111610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d90612e0a565b60405180910390fd5b60085481610aa4919061302b565b3414610ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adc90612d0a565b60405180910390fd5b610aef33826119d8565b50565b610afa6115d2565b73ffffffffffffffffffffffffffffffffffffffff16610b18611053565b73ffffffffffffffffffffffffffffffffffffffff1614610b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6590612dea565b60405180910390fd5b80600c9080519060200190610b84929190612295565b5050565b610b906115d2565b73ffffffffffffffffffffffffffffffffffffffff16610bae611053565b73ffffffffffffffffffffffffffffffffffffffff1614610c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfb90612dea565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610c386115d2565b73ffffffffffffffffffffffffffffffffffffffff16610c56611053565b73ffffffffffffffffffffffffffffffffffffffff1614610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca390612dea565b60405180910390fd5b6000600247610cbb9190612ffa565b9050600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610d1d57600080fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610d7d57600080fd5b50565b610d9b8383836040518060200160405280600081525061112b565b505050565b600d60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5390612d6a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecd90612d4a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f256115d2565b73ffffffffffffffffffffffffffffffffffffffff16610f43611053565b73ffffffffffffffffffffffffffffffffffffffff1614610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9090612dea565b60405180910390fd5b610fa36000611b07565b565b60008111610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf90612e0a565b60405180910390fd5b6000600a541161102d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102490612e4a565b60405180910390fd5b61103733826119d8565b80600a60008282546110499190613085565b9250508190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461108c9061316f565b80601f01602080910402602001604051908101604052809291908181526020018280546110b89061316f565b80156111055780601f106110da57610100808354040283529160200191611105565b820191906000526020600020905b8154815290600101906020018083116110e857829003601f168201915b5050505050905090565b60085481565b6111276111206115d2565b8383611bcd565b5050565b61113c6111366115d2565b83611693565b61117b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117290612e6a565b60405180910390fd5b61118784848484611d3a565b50505050565b6060600c61119a83611d96565b6040516020016111ab929190612b42565b6040516020818303038152906040529050919050565b600c80546111ce9061316f565b80601f01602080910402602001604051908101604052809291908181526020018280546111fa9061316f565b80156112475780601f1061121c57610100808354040283529160200191611247565b820191906000526020600020905b81548152906001019060200180831161122a57829003601f168201915b505050505081565b600b5481565b60095481565b600a5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112fd6115d2565b73ffffffffffffffffffffffffffffffffffffffff1661131b611053565b73ffffffffffffffffffffffffffffffffffffffff1614611371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136890612dea565b60405180910390fd5b61137b33826119d8565b50565b6113866115d2565b73ffffffffffffffffffffffffffffffffffffffff166113a4611053565b73ffffffffffffffffffffffffffffffffffffffff16146113fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f190612dea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561146a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146190612c4a565b60405180910390fd5b61147381611b07565b50565b61147e6115d2565b73ffffffffffffffffffffffffffffffffffffffff1661149c611053565b73ffffffffffffffffffffffffffffffffffffffff16146114f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e990612dea565b60405180910390fd5b8060088190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661164d83610db3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061169e82611566565b6116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d490612cea565b60405180910390fd5b60006116e883610db3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061175757508373ffffffffffffffffffffffffffffffffffffffff1661173f84610850565b73ffffffffffffffffffffffffffffffffffffffff16145b8061176857506117678185611261565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661179182610db3565b73ffffffffffffffffffffffffffffffffffffffff16146117e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117de90612c6a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184e90612caa565b60405180910390fd5b611862838383611ef7565b61186d6000826115da565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118bd9190613085565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119149190612fa4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119d3838383611efc565b505050565b600d60009054906101000a900460ff16611a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1e90612c0a565b60405180910390fd5b60095481600754611a389190612fa4565b1115611a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7090612e8a565b60405180910390fd5b600b54811115611abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab590612daa565b60405180910390fd5b60005b81811015611b0257611ad583600754611f01565b600160076000828254611ae89190612fa4565b925050819055508080611afa906131d2565b915050611ac1565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3390612cca565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d2d9190612bcd565b60405180910390a3505050565b611d45848484611771565b611d51848484846120db565b611d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8790612c2a565b60405180910390fd5b50505050565b60606000821415611dde576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ef2565b600082905060005b60008214611e10578080611df9906131d2565b915050600a82611e099190612ffa565b9150611de6565b60008167ffffffffffffffff811115611e2c57611e2b613308565b5b6040519080825280601f01601f191660200182016040528015611e5e5781602001600182028036833780820191505090505b5090505b60008514611eeb57600182611e779190613085565b9150600a85611e86919061321b565b6030611e929190612fa4565b60f81b818381518110611ea857611ea76132d9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ee49190612ffa565b9450611e62565b8093505050505b919050565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6890612d8a565b60405180910390fd5b611f7a81611566565b15611fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb190612c8a565b60405180910390fd5b611fc660008383611ef7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120169190612fa4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120d760008383611efc565b5050565b60006120fc8473ffffffffffffffffffffffffffffffffffffffff16612272565b15612265578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121256115d2565b8786866040518563ffffffff1660e01b81526004016121479493929190612b81565b602060405180830381600087803b15801561216157600080fd5b505af192505050801561219257506040513d601f19601f8201168201806040525081019061218f9190612671565b60015b612215573d80600081146121c2576040519150601f19603f3d011682016040523d82523d6000602084013e6121c7565b606091505b5060008151141561220d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220490612c2a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061226a565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546122a19061316f565b90600052602060002090601f0160209004810192826122c3576000855561230a565b82601f106122dc57805160ff191683800117855561230a565b8280016001018555821561230a579182015b828111156123095782518255916020019190600101906122ee565b5b509050612317919061231b565b5090565b5b8082111561233457600081600090555060010161231c565b5090565b600061234b61234684612eea565b612ec5565b9050828152602081018484840111156123675761236661333c565b5b61237284828561312d565b509392505050565b600061238d61238884612f1b565b612ec5565b9050828152602081018484840111156123a9576123a861333c565b5b6123b484828561312d565b509392505050565b6000813590506123cb81613881565b92915050565b6000813590506123e081613898565b92915050565b6000813590506123f5816138af565b92915050565b60008151905061240a816138af565b92915050565b600082601f83011261242557612424613337565b5b8135612435848260208601612338565b91505092915050565b600082601f83011261245357612452613337565b5b813561246384826020860161237a565b91505092915050565b60008135905061247b816138c6565b92915050565b60006020828403121561249757612496613346565b5b60006124a5848285016123bc565b91505092915050565b600080604083850312156124c5576124c4613346565b5b60006124d3858286016123bc565b92505060206124e4858286016123bc565b9150509250929050565b60008060006060848603121561250757612506613346565b5b6000612515868287016123bc565b9350506020612526868287016123bc565b92505060406125378682870161246c565b9150509250925092565b6000806000806080858703121561255b5761255a613346565b5b6000612569878288016123bc565b945050602061257a878288016123bc565b935050604061258b8782880161246c565b925050606085013567ffffffffffffffff8111156125ac576125ab613341565b5b6125b887828801612410565b91505092959194509250565b600080604083850312156125db576125da613346565b5b60006125e9858286016123bc565b92505060206125fa858286016123d1565b9150509250929050565b6000806040838503121561261b5761261a613346565b5b6000612629858286016123bc565b925050602061263a8582860161246c565b9150509250929050565b60006020828403121561265a57612659613346565b5b6000612668848285016123e6565b91505092915050565b60006020828403121561268757612686613346565b5b6000612695848285016123fb565b91505092915050565b6000602082840312156126b4576126b3613346565b5b600082013567ffffffffffffffff8111156126d2576126d1613341565b5b6126de8482850161243e565b91505092915050565b6000602082840312156126fd576126fc613346565b5b600061270b8482850161246c565b91505092915050565b61271d816130b9565b82525050565b61272c816130cb565b82525050565b600061273d82612f61565b6127478185612f77565b935061275781856020860161313c565b6127608161334b565b840191505092915050565b600061277682612f6c565b6127808185612f88565b935061279081856020860161313c565b6127998161334b565b840191505092915050565b60006127af82612f6c565b6127b98185612f99565b93506127c981856020860161313c565b80840191505092915050565b600081546127e28161316f565b6127ec8186612f99565b9450600182166000811461280757600181146128185761284b565b60ff1983168652818601935061284b565b61282185612f4c565b60005b8381101561284357815481890152600182019150602081019050612824565b838801955050505b50505092915050565b6000612861602083612f88565b915061286c8261335c565b602082019050919050565b6000612884603283612f88565b915061288f82613385565b604082019050919050565b60006128a7602683612f88565b91506128b2826133d4565b604082019050919050565b60006128ca602583612f88565b91506128d582613423565b604082019050919050565b60006128ed601c83612f88565b91506128f882613472565b602082019050919050565b6000612910602483612f88565b915061291b8261349b565b604082019050919050565b6000612933601983612f88565b915061293e826134ea565b602082019050919050565b6000612956602c83612f88565b915061296182613513565b604082019050919050565b6000612979601683612f88565b915061298482613562565b602082019050919050565b600061299c603883612f88565b91506129a78261358b565b604082019050919050565b60006129bf602a83612f88565b91506129ca826135da565b604082019050919050565b60006129e2602983612f88565b91506129ed82613629565b604082019050919050565b6000612a05602083612f88565b9150612a1082613678565b602082019050919050565b6000612a28602283612f88565b9150612a33826136a1565b604082019050919050565b6000612a4b602c83612f88565b9150612a56826136f0565b604082019050919050565b6000612a6e602083612f88565b9150612a798261373f565b602082019050919050565b6000612a91600f83612f88565b9150612a9c82613768565b602082019050919050565b6000612ab4602183612f88565b9150612abf82613791565b604082019050919050565b6000612ad7601183612f88565b9150612ae2826137e0565b602082019050919050565b6000612afa603183612f88565b9150612b0582613809565b604082019050919050565b6000612b1d600883612f88565b9150612b2882613858565b602082019050919050565b612b3c81613123565b82525050565b6000612b4e82856127d5565b9150612b5a82846127a4565b91508190509392505050565b6000602082019050612b7b6000830184612714565b92915050565b6000608082019050612b966000830187612714565b612ba36020830186612714565b612bb06040830185612b33565b8181036060830152612bc28184612732565b905095945050505050565b6000602082019050612be26000830184612723565b92915050565b60006020820190508181036000830152612c02818461276b565b905092915050565b60006020820190508181036000830152612c2381612854565b9050919050565b60006020820190508181036000830152612c4381612877565b9050919050565b60006020820190508181036000830152612c638161289a565b9050919050565b60006020820190508181036000830152612c83816128bd565b9050919050565b60006020820190508181036000830152612ca3816128e0565b9050919050565b60006020820190508181036000830152612cc381612903565b9050919050565b60006020820190508181036000830152612ce381612926565b9050919050565b60006020820190508181036000830152612d0381612949565b9050919050565b60006020820190508181036000830152612d238161296c565b9050919050565b60006020820190508181036000830152612d438161298f565b9050919050565b60006020820190508181036000830152612d63816129b2565b9050919050565b60006020820190508181036000830152612d83816129d5565b9050919050565b60006020820190508181036000830152612da3816129f8565b9050919050565b60006020820190508181036000830152612dc381612a1b565b9050919050565b60006020820190508181036000830152612de381612a3e565b9050919050565b60006020820190508181036000830152612e0381612a61565b9050919050565b60006020820190508181036000830152612e2381612a84565b9050919050565b60006020820190508181036000830152612e4381612aa7565b9050919050565b60006020820190508181036000830152612e6381612aca565b9050919050565b60006020820190508181036000830152612e8381612aed565b9050919050565b60006020820190508181036000830152612ea381612b10565b9050919050565b6000602082019050612ebf6000830184612b33565b92915050565b6000612ecf612ee0565b9050612edb82826131a1565b919050565b6000604051905090565b600067ffffffffffffffff821115612f0557612f04613308565b5b612f0e8261334b565b9050602081019050919050565b600067ffffffffffffffff821115612f3657612f35613308565b5b612f3f8261334b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612faf82613123565b9150612fba83613123565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612fef57612fee61324c565b5b828201905092915050565b600061300582613123565b915061301083613123565b9250826130205761301f61327b565b5b828204905092915050565b600061303682613123565b915061304183613123565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561307a5761307961324c565b5b828202905092915050565b600061309082613123565b915061309b83613123565b9250828210156130ae576130ad61324c565b5b828203905092915050565b60006130c482613103565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561315a57808201518184015260208101905061313f565b83811115613169576000848401525b50505050565b6000600282049050600182168061318757607f821691505b6020821081141561319b5761319a6132aa565b5b50919050565b6131aa8261334b565b810181811067ffffffffffffffff821117156131c9576131c8613308565b5b80604052505050565b60006131dd82613123565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156132105761320f61324c565b5b600182019050919050565b600061322682613123565b915061323183613123565b9250826132415761324061327b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f53616c65206973206e6f742061637469766520696e20746865206d6f6d656e74600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f53656e642070726f7065722045544820616d6f756e7400000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f596f752063616e206f6e6c79206d696e74203130204e4654206174206120746960008201527f6d65000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616e2774206d696e74207a65726f0000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f72652066726565206d696e74000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b61388a816130b9565b811461389557600080fd5b50565b6138a1816130cb565b81146138ac57600080fd5b50565b6138b8816130d7565b81146138c357600080fd5b50565b6138cf81613123565b81146138da57600080fd5b5056fea2646970667358221220741100062922031c98f0a3626fde20fafff840131e76ebe92aca242856807fe864736f6c63430008070033

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.