ETH Price: $3,457.48 (-1.68%)
Gas: 3 Gwei

Token

Pascal Black Market (PBM)
 

Overview

Max Total Supply

2,502 PBM

Holders

148

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 PBM
0x08c469828f3b0150cda0dfb6874b431d65c8c1db
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:
PascalBlackMarket

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : PascalBlackMarket.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.6;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract PascalBlackMarket is ERC721, Ownable, ERC721Burnable {
    // Token state
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    uint256 private _maxSupply = 1900;
    uint256 private _mintValue = 25000000000000000;
    uint256 private _maxAmountInOneTransaction = 10;
    address private _feeReceiver;



    string public _provenanceHash;
    string public _baseURL;

    bool private _isMintOpen = false;

    constructor() ERC721("Pascal Black Market", "PBM") {}

    function mint(uint256 amount) external payable {
        require(_isMintOpen, "Mint is not active.");
        require(amount > 0 && amount <= _maxAmountInOneTransaction, "You can mint between 1 and maxAmountInOneTransaction in one transaction.");
        require(_tokenIds.current() + amount <= _maxSupply, "Can not mint more than max supply.");
        require(msg.value >= amount * _mintValue, "Insufficient payment");

        for (uint256 i = 0; i < amount; i++) {
            _tokenIds.increment();
            _mint(msg.sender, _tokenIds.current());
        }

        bool success = false;
        (success,) = _feeReceiver.call{value : msg.value}("");
        require(success, "Failed to send to owner");
    }

    function flipMintState() public onlyOwner {
        _isMintOpen = !_isMintOpen;
    }

    function setMintValue(uint256 newMintValue) public onlyOwner {
        _mintValue = newMintValue;
    }

    function setFeeReceiver(address newFeeReceiver) public onlyOwner {
        _feeReceiver = newFeeReceiver;
    }

    function setMaxSupply(uint256 newMaxSupply) public onlyOwner {
        _maxSupply = newMaxSupply;
    }

    function setProvenanceHash(string memory newProvenanceHash) public onlyOwner {
        _provenanceHash = newProvenanceHash;
    }

    function setBaseURL(string memory newBaseURI) public onlyOwner {
        _baseURL = newBaseURI;
    }

    function setMaxAmountInOneTransaction(uint256 newMaxAmountInOneTransaction) public onlyOwner {
        _maxAmountInOneTransaction = newMaxAmountInOneTransaction;
    }

    // Getters
    function _baseURI() internal view override returns (string memory) {
        return _baseURL;
    }

    function totalSupply() public view returns (uint256) {
        return _tokenIds.current();
    }

    function maxSupply() public view returns (uint256) {
        return _maxSupply;
    }

    function isMintOpen() public view returns (bool) {
        return _isMintOpen;
    }

    function mintValue() public view returns (uint256) {
        return _mintValue;
    }

    function feeReceiver() public view returns (address) {
        return _feeReceiver;
    }

    function maxAmountInOneTransaction() public view returns (uint256) {
        return _maxAmountInOneTransaction;
    }
}

File 2 of 14 : 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 14 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;

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

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

File 4 of 14 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 5 of 14 : 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 6 of 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 7 of 14 : 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 8 of 14 : 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 9 of 14 : 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 10 of 14 : 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 11 of 14 : 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 12 of 14 : 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 13 of 14 : 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 14 of 14 : 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"
      ]
    }
  },
  "libraries": {}
}

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":"_baseURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_provenanceHash","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAmountInOneTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintValue","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":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newFeeReceiver","type":"address"}],"name":"setFeeReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxAmountInOneTransaction","type":"uint256"}],"name":"setMaxAmountInOneTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintValue","type":"uint256"}],"name":"setMintValue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newProvenanceHash","type":"string"}],"name":"setProvenanceHash","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"}]

608060405261076c6008556658d15e17628000600955600a80556000600e60006101000a81548160ff0219169083151502179055503480156200004157600080fd5b506040518060400160405280601381526020017f50617363616c20426c61636b204d61726b6574000000000000000000000000008152506040518060400160405280600381526020017f50424d00000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000c6929190620001d6565b508060019080519060200190620000df929190620001d6565b50505062000102620000f66200010860201b60201c565b6200011060201b60201c565b620002eb565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001e49062000286565b90600052602060002090601f01602090048101928262000208576000855562000254565b82601f106200022357805160ff191683800117855562000254565b8280016001018555821562000254579182015b828111156200025357825182559160200191906001019062000236565b5b50905062000263919062000267565b5090565b5b808211156200028257600081600090555060010162000268565b5090565b600060028204905060018216806200029f57607f821691505b60208210811415620002b657620002b5620002bc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613e5b80620002fb6000396000f3fe6080604052600436106101ee5760003560e01c806370a082311161010d578063b3f00674116100a0578063d5abeb011161006f578063d5abeb01146106b4578063e985e9c5146106df578063efdcd9741461071c578063f2fde38b14610745578063f9e0edae1461076e576101ee565b8063b3f00674146105fa578063b88d4fde14610625578063c01031c01461064e578063c87b56dd14610677576101ee565b806395d89b41116100dc57806395d89b411461055f578063a0712d681461058a578063a22cb465146105a6578063ac9deb8f146105cf576101ee565b806370a08231146104b5578063715018a6146104f257806389c77dfe146105095780638da5cb5b14610534576101ee565b806323b872dd11610185578063534308cc11610154578063534308cc1461040d57806359c74f29146104385780636352211e1461044f5780636f8b44b01461048c576101ee565b806323b872dd1461036957806342842e0e1461039257806342966c68146103bb57806349f2553a146103e4576101ee565b806309de346a116101c157806309de346a146102c157806310969523146102ea57806318160ddd14610313578063199080161461033e576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612ad6565b610799565b604051610227919061303b565b60405180910390f35b34801561023c57600080fd5b5061024561087b565b6040516102529190613056565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612b79565b61090d565b60405161028f9190612fd4565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612a96565b610992565b005b3480156102cd57600080fd5b506102e860048036038101906102e39190612b79565b610aaa565b005b3480156102f657600080fd5b50610311600480360381019061030c9190612b30565b610b30565b005b34801561031f57600080fd5b50610328610bc6565b6040516103359190613338565b60405180910390f35b34801561034a57600080fd5b50610353610bd7565b604051610360919061303b565b60405180910390f35b34801561037557600080fd5b50610390600480360381019061038b9190612980565b610bee565b005b34801561039e57600080fd5b506103b960048036038101906103b49190612980565b610c4e565b005b3480156103c757600080fd5b506103e260048036038101906103dd9190612b79565b610c6e565b005b3480156103f057600080fd5b5061040b60048036038101906104069190612b30565b610cca565b005b34801561041957600080fd5b50610422610d60565b60405161042f9190613056565b60405180910390f35b34801561044457600080fd5b5061044d610dee565b005b34801561045b57600080fd5b5061047660048036038101906104719190612b79565b610e96565b6040516104839190612fd4565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae9190612b79565b610f48565b005b3480156104c157600080fd5b506104dc60048036038101906104d79190612913565b610fce565b6040516104e99190613338565b60405180910390f35b3480156104fe57600080fd5b50610507611086565b005b34801561051557600080fd5b5061051e61110e565b60405161052b9190613338565b60405180910390f35b34801561054057600080fd5b50610549611118565b6040516105569190612fd4565b60405180910390f35b34801561056b57600080fd5b50610574611142565b6040516105819190613056565b60405180910390f35b6105a4600480360381019061059f9190612b79565b6111d4565b005b3480156105b257600080fd5b506105cd60048036038101906105c89190612a56565b61142d565b005b3480156105db57600080fd5b506105e4611443565b6040516105f19190613338565b60405180910390f35b34801561060657600080fd5b5061060f61144d565b60405161061c9190612fd4565b60405180910390f35b34801561063157600080fd5b5061064c600480360381019061064791906129d3565b611477565b005b34801561065a57600080fd5b5061067560048036038101906106709190612b79565b6114d9565b005b34801561068357600080fd5b5061069e60048036038101906106999190612b79565b61155f565b6040516106ab9190613056565b60405180910390f35b3480156106c057600080fd5b506106c9611606565b6040516106d69190613338565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190612940565b611610565b604051610713919061303b565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e9190612913565b6116a4565b005b34801561075157600080fd5b5061076c60048036038101906107679190612913565b611764565b005b34801561077a57600080fd5b5061078361185c565b6040516107909190613056565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108745750610873826118ea565b5b9050919050565b60606000805461088a906135f3565b80601f01602080910402602001604051908101604052809291908181526020018280546108b6906135f3565b80156109035780601f106108d857610100808354040283529160200191610903565b820191906000526020600020905b8154815290600101906020018083116108e657829003601f168201915b5050505050905090565b600061091882611954565b610957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094e90613278565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099d82610e96565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a05906132d8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a2d6119c0565b73ffffffffffffffffffffffffffffffffffffffff161480610a5c5750610a5b81610a566119c0565b611610565b5b610a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a92906131d8565b60405180910390fd5b610aa583836119c8565b505050565b610ab26119c0565b73ffffffffffffffffffffffffffffffffffffffff16610ad0611118565b73ffffffffffffffffffffffffffffffffffffffff1614610b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1d90613298565b60405180910390fd5b80600a8190555050565b610b386119c0565b73ffffffffffffffffffffffffffffffffffffffff16610b56611118565b73ffffffffffffffffffffffffffffffffffffffff1614610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba390613298565b60405180910390fd5b80600c9080519060200190610bc2929190612727565b5050565b6000610bd26007611a81565b905090565b6000600e60009054906101000a900460ff16905090565b610bff610bf96119c0565b82611a8f565b610c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c35906132f8565b60405180910390fd5b610c49838383611b6d565b505050565b610c6983838360405180602001604052806000815250611477565b505050565b610c7f610c796119c0565b82611a8f565b610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb590613318565b60405180910390fd5b610cc781611dd4565b50565b610cd26119c0565b73ffffffffffffffffffffffffffffffffffffffff16610cf0611118565b73ffffffffffffffffffffffffffffffffffffffff1614610d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3d90613298565b60405180910390fd5b80600d9080519060200190610d5c929190612727565b5050565b600c8054610d6d906135f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610d99906135f3565b8015610de65780601f10610dbb57610100808354040283529160200191610de6565b820191906000526020600020905b815481529060010190602001808311610dc957829003601f168201915b505050505081565b610df66119c0565b73ffffffffffffffffffffffffffffffffffffffff16610e14611118565b73ffffffffffffffffffffffffffffffffffffffff1614610e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6190613298565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3690613218565b60405180910390fd5b80915050919050565b610f506119c0565b73ffffffffffffffffffffffffffffffffffffffff16610f6e611118565b73ffffffffffffffffffffffffffffffffffffffff1614610fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbb90613298565b60405180910390fd5b8060088190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561103f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611036906131f8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61108e6119c0565b73ffffffffffffffffffffffffffffffffffffffff166110ac611118565b73ffffffffffffffffffffffffffffffffffffffff1614611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f990613298565b60405180910390fd5b61110c6000611ef1565b565b6000600954905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611151906135f3565b80601f016020809104026020016040519081016040528092919081815260200182805461117d906135f3565b80156111ca5780601f1061119f576101008083540402835291602001916111ca565b820191906000526020600020905b8154815290600101906020018083116111ad57829003601f168201915b5050505050905090565b600e60009054906101000a900460ff16611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a90613078565b60405180910390fd5b6000811180156112355750600a548111155b611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90613158565b60405180910390fd5b600854816112826007611a81565b61128c9190613428565b11156112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c490613198565b60405180910390fd5b600954816112db91906134af565b34101561131d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131490613258565b60405180910390fd5b60005b81811015611358576113326007611fb7565b611345336113406007611a81565b611fcd565b808061135090613656565b915050611320565b506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16346040516113a190612fbf565b60006040518083038185875af1925050503d80600081146113de576040519150601f19603f3d011682016040523d82523d6000602084013e6113e3565b606091505b50508091505080611429576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142090613178565b60405180910390fd5b5050565b61143f6114386119c0565b83836121a7565b5050565b6000600a54905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114886114826119c0565b83611a8f565b6114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be906132f8565b60405180910390fd5b6114d384848484612314565b50505050565b6114e16119c0565b73ffffffffffffffffffffffffffffffffffffffff166114ff611118565b73ffffffffffffffffffffffffffffffffffffffff1614611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90613298565b60405180910390fd5b8060098190555050565b606061156a82611954565b6115a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a0906132b8565b60405180910390fd5b60006115b3612370565b905060008151116115d357604051806020016040528060008152506115fe565b806115dd84612402565b6040516020016115ee929190612f9b565b6040516020818303038152906040525b915050919050565b6000600854905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116ac6119c0565b73ffffffffffffffffffffffffffffffffffffffff166116ca611118565b73ffffffffffffffffffffffffffffffffffffffff1614611720576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171790613298565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61176c6119c0565b73ffffffffffffffffffffffffffffffffffffffff1661178a611118565b73ffffffffffffffffffffffffffffffffffffffff16146117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d790613298565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611850576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611847906130b8565b60405180910390fd5b61185981611ef1565b50565b600d8054611869906135f3565b80601f0160208091040260200160405190810160405280929190818152602001828054611895906135f3565b80156118e25780601f106118b7576101008083540402835291602001916118e2565b820191906000526020600020905b8154815290600101906020018083116118c557829003601f168201915b505050505081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a3b83610e96565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611a9a82611954565b611ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad0906131b8565b60405180910390fd5b6000611ae483610e96565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b5357508373ffffffffffffffffffffffffffffffffffffffff16611b3b8461090d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b645750611b638185611610565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b8d82610e96565b73ffffffffffffffffffffffffffffffffffffffff1614611be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bda906130d8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4a90613118565b60405180910390fd5b611c5e838383612563565b611c696000826119c8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cb99190613509565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d109190613428565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611dcf838383612568565b505050565b6000611ddf82610e96565b9050611ded81600084612563565b611df86000836119c8565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e489190613509565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611eed81600084612568565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561203d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203490613238565b60405180910390fd5b61204681611954565b15612086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207d906130f8565b60405180910390fd5b61209260008383612563565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120e29190613428565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121a360008383612568565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220d90613138565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612307919061303b565b60405180910390a3505050565b61231f848484611b6d565b61232b8484848461256d565b61236a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236190613098565b60405180910390fd5b50505050565b6060600d805461237f906135f3565b80601f01602080910402602001604051908101604052809291908181526020018280546123ab906135f3565b80156123f85780601f106123cd576101008083540402835291602001916123f8565b820191906000526020600020905b8154815290600101906020018083116123db57829003601f168201915b5050505050905090565b6060600082141561244a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061255e565b600082905060005b6000821461247c57808061246590613656565b915050600a82612475919061347e565b9150612452565b60008167ffffffffffffffff8111156124985761249761378c565b5b6040519080825280601f01601f1916602001820160405280156124ca5781602001600182028036833780820191505090505b5090505b60008514612557576001826124e39190613509565b9150600a856124f2919061369f565b60306124fe9190613428565b60f81b8183815181106125145761251361375d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612550919061347e565b94506124ce565b8093505050505b919050565b505050565b505050565b600061258e8473ffffffffffffffffffffffffffffffffffffffff16612704565b156126f7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125b76119c0565b8786866040518563ffffffff1660e01b81526004016125d99493929190612fef565b602060405180830381600087803b1580156125f357600080fd5b505af192505050801561262457506040513d601f19601f820116820180604052508101906126219190612b03565b60015b6126a7573d8060008114612654576040519150601f19603f3d011682016040523d82523d6000602084013e612659565b606091505b5060008151141561269f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269690613098565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126fc565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612733906135f3565b90600052602060002090601f016020900481019282612755576000855561279c565b82601f1061276e57805160ff191683800117855561279c565b8280016001018555821561279c579182015b8281111561279b578251825591602001919060010190612780565b5b5090506127a991906127ad565b5090565b5b808211156127c65760008160009055506001016127ae565b5090565b60006127dd6127d884613378565b613353565b9050828152602081018484840111156127f9576127f86137c0565b5b6128048482856135b1565b509392505050565b600061281f61281a846133a9565b613353565b90508281526020810184848401111561283b5761283a6137c0565b5b6128468482856135b1565b509392505050565b60008135905061285d81613dc9565b92915050565b60008135905061287281613de0565b92915050565b60008135905061288781613df7565b92915050565b60008151905061289c81613df7565b92915050565b600082601f8301126128b7576128b66137bb565b5b81356128c78482602086016127ca565b91505092915050565b600082601f8301126128e5576128e46137bb565b5b81356128f584826020860161280c565b91505092915050565b60008135905061290d81613e0e565b92915050565b600060208284031215612929576129286137ca565b5b60006129378482850161284e565b91505092915050565b60008060408385031215612957576129566137ca565b5b60006129658582860161284e565b92505060206129768582860161284e565b9150509250929050565b600080600060608486031215612999576129986137ca565b5b60006129a78682870161284e565b93505060206129b88682870161284e565b92505060406129c9868287016128fe565b9150509250925092565b600080600080608085870312156129ed576129ec6137ca565b5b60006129fb8782880161284e565b9450506020612a0c8782880161284e565b9350506040612a1d878288016128fe565b925050606085013567ffffffffffffffff811115612a3e57612a3d6137c5565b5b612a4a878288016128a2565b91505092959194509250565b60008060408385031215612a6d57612a6c6137ca565b5b6000612a7b8582860161284e565b9250506020612a8c85828601612863565b9150509250929050565b60008060408385031215612aad57612aac6137ca565b5b6000612abb8582860161284e565b9250506020612acc858286016128fe565b9150509250929050565b600060208284031215612aec57612aeb6137ca565b5b6000612afa84828501612878565b91505092915050565b600060208284031215612b1957612b186137ca565b5b6000612b278482850161288d565b91505092915050565b600060208284031215612b4657612b456137ca565b5b600082013567ffffffffffffffff811115612b6457612b636137c5565b5b612b70848285016128d0565b91505092915050565b600060208284031215612b8f57612b8e6137ca565b5b6000612b9d848285016128fe565b91505092915050565b612baf8161353d565b82525050565b612bbe8161354f565b82525050565b6000612bcf826133da565b612bd981856133f0565b9350612be98185602086016135c0565b612bf2816137cf565b840191505092915050565b6000612c08826133e5565b612c12818561340c565b9350612c228185602086016135c0565b612c2b816137cf565b840191505092915050565b6000612c41826133e5565b612c4b818561341d565b9350612c5b8185602086016135c0565b80840191505092915050565b6000612c7460138361340c565b9150612c7f826137e0565b602082019050919050565b6000612c9760328361340c565b9150612ca282613809565b604082019050919050565b6000612cba60268361340c565b9150612cc582613858565b604082019050919050565b6000612cdd60258361340c565b9150612ce8826138a7565b604082019050919050565b6000612d00601c8361340c565b9150612d0b826138f6565b602082019050919050565b6000612d2360248361340c565b9150612d2e8261391f565b604082019050919050565b6000612d4660198361340c565b9150612d518261396e565b602082019050919050565b6000612d6960488361340c565b9150612d7482613997565b606082019050919050565b6000612d8c60178361340c565b9150612d9782613a0c565b602082019050919050565b6000612daf60228361340c565b9150612dba82613a35565b604082019050919050565b6000612dd2602c8361340c565b9150612ddd82613a84565b604082019050919050565b6000612df560388361340c565b9150612e0082613ad3565b604082019050919050565b6000612e18602a8361340c565b9150612e2382613b22565b604082019050919050565b6000612e3b60298361340c565b9150612e4682613b71565b604082019050919050565b6000612e5e60208361340c565b9150612e6982613bc0565b602082019050919050565b6000612e8160148361340c565b9150612e8c82613be9565b602082019050919050565b6000612ea4602c8361340c565b9150612eaf82613c12565b604082019050919050565b6000612ec760208361340c565b9150612ed282613c61565b602082019050919050565b6000612eea602f8361340c565b9150612ef582613c8a565b604082019050919050565b6000612f0d60218361340c565b9150612f1882613cd9565b604082019050919050565b6000612f30600083613401565b9150612f3b82613d28565b600082019050919050565b6000612f5360318361340c565b9150612f5e82613d2b565b604082019050919050565b6000612f7660308361340c565b9150612f8182613d7a565b604082019050919050565b612f95816135a7565b82525050565b6000612fa78285612c36565b9150612fb38284612c36565b91508190509392505050565b6000612fca82612f23565b9150819050919050565b6000602082019050612fe96000830184612ba6565b92915050565b60006080820190506130046000830187612ba6565b6130116020830186612ba6565b61301e6040830185612f8c565b81810360608301526130308184612bc4565b905095945050505050565b60006020820190506130506000830184612bb5565b92915050565b600060208201905081810360008301526130708184612bfd565b905092915050565b6000602082019050818103600083015261309181612c67565b9050919050565b600060208201905081810360008301526130b181612c8a565b9050919050565b600060208201905081810360008301526130d181612cad565b9050919050565b600060208201905081810360008301526130f181612cd0565b9050919050565b6000602082019050818103600083015261311181612cf3565b9050919050565b6000602082019050818103600083015261313181612d16565b9050919050565b6000602082019050818103600083015261315181612d39565b9050919050565b6000602082019050818103600083015261317181612d5c565b9050919050565b6000602082019050818103600083015261319181612d7f565b9050919050565b600060208201905081810360008301526131b181612da2565b9050919050565b600060208201905081810360008301526131d181612dc5565b9050919050565b600060208201905081810360008301526131f181612de8565b9050919050565b6000602082019050818103600083015261321181612e0b565b9050919050565b6000602082019050818103600083015261323181612e2e565b9050919050565b6000602082019050818103600083015261325181612e51565b9050919050565b6000602082019050818103600083015261327181612e74565b9050919050565b6000602082019050818103600083015261329181612e97565b9050919050565b600060208201905081810360008301526132b181612eba565b9050919050565b600060208201905081810360008301526132d181612edd565b9050919050565b600060208201905081810360008301526132f181612f00565b9050919050565b6000602082019050818103600083015261331181612f46565b9050919050565b6000602082019050818103600083015261333181612f69565b9050919050565b600060208201905061334d6000830184612f8c565b92915050565b600061335d61336e565b90506133698282613625565b919050565b6000604051905090565b600067ffffffffffffffff8211156133935761339261378c565b5b61339c826137cf565b9050602081019050919050565b600067ffffffffffffffff8211156133c4576133c361378c565b5b6133cd826137cf565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613433826135a7565b915061343e836135a7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613473576134726136d0565b5b828201905092915050565b6000613489826135a7565b9150613494836135a7565b9250826134a4576134a36136ff565b5b828204905092915050565b60006134ba826135a7565b91506134c5836135a7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134fe576134fd6136d0565b5b828202905092915050565b6000613514826135a7565b915061351f836135a7565b925082821015613532576135316136d0565b5b828203905092915050565b600061354882613587565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156135de5780820151818401526020810190506135c3565b838111156135ed576000848401525b50505050565b6000600282049050600182168061360b57607f821691505b6020821081141561361f5761361e61372e565b5b50919050565b61362e826137cf565b810181811067ffffffffffffffff8211171561364d5761364c61378c565b5b80604052505050565b6000613661826135a7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613694576136936136d0565b5b600182019050919050565b60006136aa826135a7565b91506136b5836135a7565b9250826136c5576136c46136ff565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f596f752063616e206d696e74206265747765656e203120616e64206d6178416d60008201527f6f756e74496e4f6e655472616e73616374696f6e20696e206f6e65207472616e60208201527f73616374696f6e2e000000000000000000000000000000000000000000000000604082015250565b7f4661696c656420746f2073656e6420746f206f776e6572000000000000000000600082015250565b7f43616e206e6f74206d696e74206d6f7265207468616e206d617820737570706c60008201527f792e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b613dd28161353d565b8114613ddd57600080fd5b50565b613de98161354f565b8114613df457600080fd5b50565b613e008161355b565b8114613e0b57600080fd5b50565b613e17816135a7565b8114613e2257600080fd5b5056fea2646970667358221220ced3163a5e5e9ccc7a369237c97ad61e02fc22e6fd4e26e4ccac8d97503661ae64736f6c63430008060033

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806370a082311161010d578063b3f00674116100a0578063d5abeb011161006f578063d5abeb01146106b4578063e985e9c5146106df578063efdcd9741461071c578063f2fde38b14610745578063f9e0edae1461076e576101ee565b8063b3f00674146105fa578063b88d4fde14610625578063c01031c01461064e578063c87b56dd14610677576101ee565b806395d89b41116100dc57806395d89b411461055f578063a0712d681461058a578063a22cb465146105a6578063ac9deb8f146105cf576101ee565b806370a08231146104b5578063715018a6146104f257806389c77dfe146105095780638da5cb5b14610534576101ee565b806323b872dd11610185578063534308cc11610154578063534308cc1461040d57806359c74f29146104385780636352211e1461044f5780636f8b44b01461048c576101ee565b806323b872dd1461036957806342842e0e1461039257806342966c68146103bb57806349f2553a146103e4576101ee565b806309de346a116101c157806309de346a146102c157806310969523146102ea57806318160ddd14610313578063199080161461033e576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612ad6565b610799565b604051610227919061303b565b60405180910390f35b34801561023c57600080fd5b5061024561087b565b6040516102529190613056565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612b79565b61090d565b60405161028f9190612fd4565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612a96565b610992565b005b3480156102cd57600080fd5b506102e860048036038101906102e39190612b79565b610aaa565b005b3480156102f657600080fd5b50610311600480360381019061030c9190612b30565b610b30565b005b34801561031f57600080fd5b50610328610bc6565b6040516103359190613338565b60405180910390f35b34801561034a57600080fd5b50610353610bd7565b604051610360919061303b565b60405180910390f35b34801561037557600080fd5b50610390600480360381019061038b9190612980565b610bee565b005b34801561039e57600080fd5b506103b960048036038101906103b49190612980565b610c4e565b005b3480156103c757600080fd5b506103e260048036038101906103dd9190612b79565b610c6e565b005b3480156103f057600080fd5b5061040b60048036038101906104069190612b30565b610cca565b005b34801561041957600080fd5b50610422610d60565b60405161042f9190613056565b60405180910390f35b34801561044457600080fd5b5061044d610dee565b005b34801561045b57600080fd5b5061047660048036038101906104719190612b79565b610e96565b6040516104839190612fd4565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae9190612b79565b610f48565b005b3480156104c157600080fd5b506104dc60048036038101906104d79190612913565b610fce565b6040516104e99190613338565b60405180910390f35b3480156104fe57600080fd5b50610507611086565b005b34801561051557600080fd5b5061051e61110e565b60405161052b9190613338565b60405180910390f35b34801561054057600080fd5b50610549611118565b6040516105569190612fd4565b60405180910390f35b34801561056b57600080fd5b50610574611142565b6040516105819190613056565b60405180910390f35b6105a4600480360381019061059f9190612b79565b6111d4565b005b3480156105b257600080fd5b506105cd60048036038101906105c89190612a56565b61142d565b005b3480156105db57600080fd5b506105e4611443565b6040516105f19190613338565b60405180910390f35b34801561060657600080fd5b5061060f61144d565b60405161061c9190612fd4565b60405180910390f35b34801561063157600080fd5b5061064c600480360381019061064791906129d3565b611477565b005b34801561065a57600080fd5b5061067560048036038101906106709190612b79565b6114d9565b005b34801561068357600080fd5b5061069e60048036038101906106999190612b79565b61155f565b6040516106ab9190613056565b60405180910390f35b3480156106c057600080fd5b506106c9611606565b6040516106d69190613338565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190612940565b611610565b604051610713919061303b565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e9190612913565b6116a4565b005b34801561075157600080fd5b5061076c60048036038101906107679190612913565b611764565b005b34801561077a57600080fd5b5061078361185c565b6040516107909190613056565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108745750610873826118ea565b5b9050919050565b60606000805461088a906135f3565b80601f01602080910402602001604051908101604052809291908181526020018280546108b6906135f3565b80156109035780601f106108d857610100808354040283529160200191610903565b820191906000526020600020905b8154815290600101906020018083116108e657829003601f168201915b5050505050905090565b600061091882611954565b610957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094e90613278565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099d82610e96565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a05906132d8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a2d6119c0565b73ffffffffffffffffffffffffffffffffffffffff161480610a5c5750610a5b81610a566119c0565b611610565b5b610a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a92906131d8565b60405180910390fd5b610aa583836119c8565b505050565b610ab26119c0565b73ffffffffffffffffffffffffffffffffffffffff16610ad0611118565b73ffffffffffffffffffffffffffffffffffffffff1614610b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1d90613298565b60405180910390fd5b80600a8190555050565b610b386119c0565b73ffffffffffffffffffffffffffffffffffffffff16610b56611118565b73ffffffffffffffffffffffffffffffffffffffff1614610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba390613298565b60405180910390fd5b80600c9080519060200190610bc2929190612727565b5050565b6000610bd26007611a81565b905090565b6000600e60009054906101000a900460ff16905090565b610bff610bf96119c0565b82611a8f565b610c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c35906132f8565b60405180910390fd5b610c49838383611b6d565b505050565b610c6983838360405180602001604052806000815250611477565b505050565b610c7f610c796119c0565b82611a8f565b610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb590613318565b60405180910390fd5b610cc781611dd4565b50565b610cd26119c0565b73ffffffffffffffffffffffffffffffffffffffff16610cf0611118565b73ffffffffffffffffffffffffffffffffffffffff1614610d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3d90613298565b60405180910390fd5b80600d9080519060200190610d5c929190612727565b5050565b600c8054610d6d906135f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610d99906135f3565b8015610de65780601f10610dbb57610100808354040283529160200191610de6565b820191906000526020600020905b815481529060010190602001808311610dc957829003601f168201915b505050505081565b610df66119c0565b73ffffffffffffffffffffffffffffffffffffffff16610e14611118565b73ffffffffffffffffffffffffffffffffffffffff1614610e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6190613298565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3690613218565b60405180910390fd5b80915050919050565b610f506119c0565b73ffffffffffffffffffffffffffffffffffffffff16610f6e611118565b73ffffffffffffffffffffffffffffffffffffffff1614610fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbb90613298565b60405180910390fd5b8060088190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561103f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611036906131f8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61108e6119c0565b73ffffffffffffffffffffffffffffffffffffffff166110ac611118565b73ffffffffffffffffffffffffffffffffffffffff1614611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f990613298565b60405180910390fd5b61110c6000611ef1565b565b6000600954905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611151906135f3565b80601f016020809104026020016040519081016040528092919081815260200182805461117d906135f3565b80156111ca5780601f1061119f576101008083540402835291602001916111ca565b820191906000526020600020905b8154815290600101906020018083116111ad57829003601f168201915b5050505050905090565b600e60009054906101000a900460ff16611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a90613078565b60405180910390fd5b6000811180156112355750600a548111155b611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90613158565b60405180910390fd5b600854816112826007611a81565b61128c9190613428565b11156112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c490613198565b60405180910390fd5b600954816112db91906134af565b34101561131d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131490613258565b60405180910390fd5b60005b81811015611358576113326007611fb7565b611345336113406007611a81565b611fcd565b808061135090613656565b915050611320565b506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16346040516113a190612fbf565b60006040518083038185875af1925050503d80600081146113de576040519150601f19603f3d011682016040523d82523d6000602084013e6113e3565b606091505b50508091505080611429576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142090613178565b60405180910390fd5b5050565b61143f6114386119c0565b83836121a7565b5050565b6000600a54905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114886114826119c0565b83611a8f565b6114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be906132f8565b60405180910390fd5b6114d384848484612314565b50505050565b6114e16119c0565b73ffffffffffffffffffffffffffffffffffffffff166114ff611118565b73ffffffffffffffffffffffffffffffffffffffff1614611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90613298565b60405180910390fd5b8060098190555050565b606061156a82611954565b6115a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a0906132b8565b60405180910390fd5b60006115b3612370565b905060008151116115d357604051806020016040528060008152506115fe565b806115dd84612402565b6040516020016115ee929190612f9b565b6040516020818303038152906040525b915050919050565b6000600854905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116ac6119c0565b73ffffffffffffffffffffffffffffffffffffffff166116ca611118565b73ffffffffffffffffffffffffffffffffffffffff1614611720576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171790613298565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61176c6119c0565b73ffffffffffffffffffffffffffffffffffffffff1661178a611118565b73ffffffffffffffffffffffffffffffffffffffff16146117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d790613298565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611850576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611847906130b8565b60405180910390fd5b61185981611ef1565b50565b600d8054611869906135f3565b80601f0160208091040260200160405190810160405280929190818152602001828054611895906135f3565b80156118e25780601f106118b7576101008083540402835291602001916118e2565b820191906000526020600020905b8154815290600101906020018083116118c557829003601f168201915b505050505081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a3b83610e96565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611a9a82611954565b611ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad0906131b8565b60405180910390fd5b6000611ae483610e96565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b5357508373ffffffffffffffffffffffffffffffffffffffff16611b3b8461090d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b645750611b638185611610565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b8d82610e96565b73ffffffffffffffffffffffffffffffffffffffff1614611be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bda906130d8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4a90613118565b60405180910390fd5b611c5e838383612563565b611c696000826119c8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cb99190613509565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d109190613428565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611dcf838383612568565b505050565b6000611ddf82610e96565b9050611ded81600084612563565b611df86000836119c8565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e489190613509565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611eed81600084612568565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561203d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203490613238565b60405180910390fd5b61204681611954565b15612086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207d906130f8565b60405180910390fd5b61209260008383612563565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120e29190613428565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121a360008383612568565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220d90613138565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612307919061303b565b60405180910390a3505050565b61231f848484611b6d565b61232b8484848461256d565b61236a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236190613098565b60405180910390fd5b50505050565b6060600d805461237f906135f3565b80601f01602080910402602001604051908101604052809291908181526020018280546123ab906135f3565b80156123f85780601f106123cd576101008083540402835291602001916123f8565b820191906000526020600020905b8154815290600101906020018083116123db57829003601f168201915b5050505050905090565b6060600082141561244a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061255e565b600082905060005b6000821461247c57808061246590613656565b915050600a82612475919061347e565b9150612452565b60008167ffffffffffffffff8111156124985761249761378c565b5b6040519080825280601f01601f1916602001820160405280156124ca5781602001600182028036833780820191505090505b5090505b60008514612557576001826124e39190613509565b9150600a856124f2919061369f565b60306124fe9190613428565b60f81b8183815181106125145761251361375d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612550919061347e565b94506124ce565b8093505050505b919050565b505050565b505050565b600061258e8473ffffffffffffffffffffffffffffffffffffffff16612704565b156126f7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125b76119c0565b8786866040518563ffffffff1660e01b81526004016125d99493929190612fef565b602060405180830381600087803b1580156125f357600080fd5b505af192505050801561262457506040513d601f19601f820116820180604052508101906126219190612b03565b60015b6126a7573d8060008114612654576040519150601f19603f3d011682016040523d82523d6000602084013e612659565b606091505b5060008151141561269f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269690613098565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126fc565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612733906135f3565b90600052602060002090601f016020900481019282612755576000855561279c565b82601f1061276e57805160ff191683800117855561279c565b8280016001018555821561279c579182015b8281111561279b578251825591602001919060010190612780565b5b5090506127a991906127ad565b5090565b5b808211156127c65760008160009055506001016127ae565b5090565b60006127dd6127d884613378565b613353565b9050828152602081018484840111156127f9576127f86137c0565b5b6128048482856135b1565b509392505050565b600061281f61281a846133a9565b613353565b90508281526020810184848401111561283b5761283a6137c0565b5b6128468482856135b1565b509392505050565b60008135905061285d81613dc9565b92915050565b60008135905061287281613de0565b92915050565b60008135905061288781613df7565b92915050565b60008151905061289c81613df7565b92915050565b600082601f8301126128b7576128b66137bb565b5b81356128c78482602086016127ca565b91505092915050565b600082601f8301126128e5576128e46137bb565b5b81356128f584826020860161280c565b91505092915050565b60008135905061290d81613e0e565b92915050565b600060208284031215612929576129286137ca565b5b60006129378482850161284e565b91505092915050565b60008060408385031215612957576129566137ca565b5b60006129658582860161284e565b92505060206129768582860161284e565b9150509250929050565b600080600060608486031215612999576129986137ca565b5b60006129a78682870161284e565b93505060206129b88682870161284e565b92505060406129c9868287016128fe565b9150509250925092565b600080600080608085870312156129ed576129ec6137ca565b5b60006129fb8782880161284e565b9450506020612a0c8782880161284e565b9350506040612a1d878288016128fe565b925050606085013567ffffffffffffffff811115612a3e57612a3d6137c5565b5b612a4a878288016128a2565b91505092959194509250565b60008060408385031215612a6d57612a6c6137ca565b5b6000612a7b8582860161284e565b9250506020612a8c85828601612863565b9150509250929050565b60008060408385031215612aad57612aac6137ca565b5b6000612abb8582860161284e565b9250506020612acc858286016128fe565b9150509250929050565b600060208284031215612aec57612aeb6137ca565b5b6000612afa84828501612878565b91505092915050565b600060208284031215612b1957612b186137ca565b5b6000612b278482850161288d565b91505092915050565b600060208284031215612b4657612b456137ca565b5b600082013567ffffffffffffffff811115612b6457612b636137c5565b5b612b70848285016128d0565b91505092915050565b600060208284031215612b8f57612b8e6137ca565b5b6000612b9d848285016128fe565b91505092915050565b612baf8161353d565b82525050565b612bbe8161354f565b82525050565b6000612bcf826133da565b612bd981856133f0565b9350612be98185602086016135c0565b612bf2816137cf565b840191505092915050565b6000612c08826133e5565b612c12818561340c565b9350612c228185602086016135c0565b612c2b816137cf565b840191505092915050565b6000612c41826133e5565b612c4b818561341d565b9350612c5b8185602086016135c0565b80840191505092915050565b6000612c7460138361340c565b9150612c7f826137e0565b602082019050919050565b6000612c9760328361340c565b9150612ca282613809565b604082019050919050565b6000612cba60268361340c565b9150612cc582613858565b604082019050919050565b6000612cdd60258361340c565b9150612ce8826138a7565b604082019050919050565b6000612d00601c8361340c565b9150612d0b826138f6565b602082019050919050565b6000612d2360248361340c565b9150612d2e8261391f565b604082019050919050565b6000612d4660198361340c565b9150612d518261396e565b602082019050919050565b6000612d6960488361340c565b9150612d7482613997565b606082019050919050565b6000612d8c60178361340c565b9150612d9782613a0c565b602082019050919050565b6000612daf60228361340c565b9150612dba82613a35565b604082019050919050565b6000612dd2602c8361340c565b9150612ddd82613a84565b604082019050919050565b6000612df560388361340c565b9150612e0082613ad3565b604082019050919050565b6000612e18602a8361340c565b9150612e2382613b22565b604082019050919050565b6000612e3b60298361340c565b9150612e4682613b71565b604082019050919050565b6000612e5e60208361340c565b9150612e6982613bc0565b602082019050919050565b6000612e8160148361340c565b9150612e8c82613be9565b602082019050919050565b6000612ea4602c8361340c565b9150612eaf82613c12565b604082019050919050565b6000612ec760208361340c565b9150612ed282613c61565b602082019050919050565b6000612eea602f8361340c565b9150612ef582613c8a565b604082019050919050565b6000612f0d60218361340c565b9150612f1882613cd9565b604082019050919050565b6000612f30600083613401565b9150612f3b82613d28565b600082019050919050565b6000612f5360318361340c565b9150612f5e82613d2b565b604082019050919050565b6000612f7660308361340c565b9150612f8182613d7a565b604082019050919050565b612f95816135a7565b82525050565b6000612fa78285612c36565b9150612fb38284612c36565b91508190509392505050565b6000612fca82612f23565b9150819050919050565b6000602082019050612fe96000830184612ba6565b92915050565b60006080820190506130046000830187612ba6565b6130116020830186612ba6565b61301e6040830185612f8c565b81810360608301526130308184612bc4565b905095945050505050565b60006020820190506130506000830184612bb5565b92915050565b600060208201905081810360008301526130708184612bfd565b905092915050565b6000602082019050818103600083015261309181612c67565b9050919050565b600060208201905081810360008301526130b181612c8a565b9050919050565b600060208201905081810360008301526130d181612cad565b9050919050565b600060208201905081810360008301526130f181612cd0565b9050919050565b6000602082019050818103600083015261311181612cf3565b9050919050565b6000602082019050818103600083015261313181612d16565b9050919050565b6000602082019050818103600083015261315181612d39565b9050919050565b6000602082019050818103600083015261317181612d5c565b9050919050565b6000602082019050818103600083015261319181612d7f565b9050919050565b600060208201905081810360008301526131b181612da2565b9050919050565b600060208201905081810360008301526131d181612dc5565b9050919050565b600060208201905081810360008301526131f181612de8565b9050919050565b6000602082019050818103600083015261321181612e0b565b9050919050565b6000602082019050818103600083015261323181612e2e565b9050919050565b6000602082019050818103600083015261325181612e51565b9050919050565b6000602082019050818103600083015261327181612e74565b9050919050565b6000602082019050818103600083015261329181612e97565b9050919050565b600060208201905081810360008301526132b181612eba565b9050919050565b600060208201905081810360008301526132d181612edd565b9050919050565b600060208201905081810360008301526132f181612f00565b9050919050565b6000602082019050818103600083015261331181612f46565b9050919050565b6000602082019050818103600083015261333181612f69565b9050919050565b600060208201905061334d6000830184612f8c565b92915050565b600061335d61336e565b90506133698282613625565b919050565b6000604051905090565b600067ffffffffffffffff8211156133935761339261378c565b5b61339c826137cf565b9050602081019050919050565b600067ffffffffffffffff8211156133c4576133c361378c565b5b6133cd826137cf565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613433826135a7565b915061343e836135a7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613473576134726136d0565b5b828201905092915050565b6000613489826135a7565b9150613494836135a7565b9250826134a4576134a36136ff565b5b828204905092915050565b60006134ba826135a7565b91506134c5836135a7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134fe576134fd6136d0565b5b828202905092915050565b6000613514826135a7565b915061351f836135a7565b925082821015613532576135316136d0565b5b828203905092915050565b600061354882613587565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156135de5780820151818401526020810190506135c3565b838111156135ed576000848401525b50505050565b6000600282049050600182168061360b57607f821691505b6020821081141561361f5761361e61372e565b5b50919050565b61362e826137cf565b810181811067ffffffffffffffff8211171561364d5761364c61378c565b5b80604052505050565b6000613661826135a7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613694576136936136d0565b5b600182019050919050565b60006136aa826135a7565b91506136b5836135a7565b9250826136c5576136c46136ff565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f596f752063616e206d696e74206265747765656e203120616e64206d6178416d60008201527f6f756e74496e4f6e655472616e73616374696f6e20696e206f6e65207472616e60208201527f73616374696f6e2e000000000000000000000000000000000000000000000000604082015250565b7f4661696c656420746f2073656e6420746f206f776e6572000000000000000000600082015250565b7f43616e206e6f74206d696e74206d6f7265207468616e206d617820737570706c60008201527f792e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b613dd28161353d565b8114613ddd57600080fd5b50565b613de98161354f565b8114613df457600080fd5b50565b613e008161355b565b8114613e0b57600080fd5b50565b613e17816135a7565b8114613e2257600080fd5b5056fea2646970667358221220ced3163a5e5e9ccc7a369237c97ad61e02fc22e6fd4e26e4ccac8d97503661ae64736f6c63430008060033

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.