ETH Price: $2,394.27 (-2.14%)

Token

Passages (PSG)
 

Overview

Max Total Supply

800 PSG

Holders

195

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
crazyartist.eth
Balance
5 PSG
0x26e9910396Bad25722eBbBc0606E0A036A589555
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:
Passages

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : Passages.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.11;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract Passages is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public _baseTokenURI;
  
  uint256 public constant maxSupply = 800;
  uint256 public price = 0.08 ether;
  uint256 public maxMintAmountPerTx = 5;

  bool public saleActive = false;

  constructor() ERC721("Passages", "PSG") {
    _baseTokenURI = "ipfs://QmP3BYoGotb6NGrxxHGWJiS1MoheLQLGoCrFaPr5uuRtiv/";
  }

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

  function refundIfOver(uint256 _price) private {
    require(msg.value >= _price, "Need to send more ETH.");
    if (msg.value > _price) {
      payable(msg.sender).transfer(msg.value - _price);
    }
  }

  function mint(uint256 _mintAmount) public payable {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded");
    require(saleActive, "Sale is not active");
    
    if (msg.sender != owner()) {
      refundIfOver(price * _mintAmount);
    }

    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(msg.sender, supply.current());
    }
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 _supply = totalSupply();
    uint256[] memory tokenIds = new uint256[](balanceOf(_owner));

    uint256 currIndex = 0;
    for (uint256 i = 1; i <= _supply; i++) {
        if (_owner == ownerOf(i)) tokenIds[currIndex++] = i;
    }

    return tokenIds;
  }

  function setPrice(uint256 _price) public onlyOwner {
    price = _price;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setSaleState(bool _state) public onlyOwner {
    saleActive = _state;
  }

  function withdraw() public payable onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }

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

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

File 2 of 12 : 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 12 : 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 4 of 12 : 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 5 of 12 : 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 6 of 12 : 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 7 of 12 : 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 8 of 12 : 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 9 of 12 : 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 10 of 12 : 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 11 of 12 : 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 12 of 12 : 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":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxMintAmountPerTx","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":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405267011c37937e0800006009556005600a556000600b60006101000a81548160ff0219169083151502179055503480156200003d57600080fd5b506040518060400160405280600881526020017f50617373616765730000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f50534700000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000c292919062000204565b508060019080519060200190620000db92919062000204565b505050620000fe620000f26200013660201b60201c565b6200013e60201b60201c565b60405180606001604052806036815260200162003e5960369139600890805190602001906200012f92919062000204565b5062000319565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021290620002e3565b90600052602060002090601f01602090048101928262000236576000855562000282565b82601f106200025157805160ff191683800117855562000282565b8280016001018555821562000282579182015b828111156200028157825182559160200191906001019062000264565b5b50905062000291919062000295565b5090565b5b80821115620002b057600081600090555060010162000296565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002fc57607f821691505b60208210811415620003135762000312620002b4565b5b50919050565b613b3080620003296000396000f3fe6080604052600436106101c25760003560e01c80638da5cb5b116100f7578063b071401b11610095578063cfc86f7b11610064578063cfc86f7b14610610578063d5abeb011461063b578063e985e9c514610666578063f2fde38b146106a3576101c2565b8063b071401b14610558578063b88d4fde14610581578063c4e37095146105aa578063c87b56dd146105d3576101c2565b806395d89b41116100d157806395d89b41146104bd578063a035b1fe146104e8578063a0712d6814610513578063a22cb4651461052f576101c2565b80638da5cb5b1461043e57806391b7f5ed1461046957806394354fd014610492576101c2565b806342842e0e116101645780636352211e1161013e5780636352211e1461038257806368428a1b146103bf57806370a08231146103ea578063715018a614610427576101c2565b806342842e0e146102f3578063438b63001461031c57806355f804b314610359576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780633ccfd60b146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e9919061256e565b6106cc565b6040516101fb91906125b6565b60405180910390f35b34801561021057600080fd5b506102196107ae565b604051610226919061266a565b60405180910390f35b34801561023b57600080fd5b50610256600480360381019061025191906126c2565b610840565b6040516102639190612730565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612777565b6108c5565b005b3480156102a157600080fd5b506102aa6109dd565b6040516102b791906127c6565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e291906127e1565b6109ee565b005b6102f1610a4e565b005b3480156102ff57600080fd5b5061031a600480360381019061031591906127e1565b610b4a565b005b34801561032857600080fd5b50610343600480360381019061033e9190612834565b610b6a565b604051610350919061291f565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b9190612a76565b610c64565b005b34801561038e57600080fd5b506103a960048036038101906103a491906126c2565b610cfa565b6040516103b69190612730565b60405180910390f35b3480156103cb57600080fd5b506103d4610dac565b6040516103e191906125b6565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c9190612834565b610dbf565b60405161041e91906127c6565b60405180910390f35b34801561043357600080fd5b5061043c610e77565b005b34801561044a57600080fd5b50610453610eff565b6040516104609190612730565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b91906126c2565b610f29565b005b34801561049e57600080fd5b506104a7610faf565b6040516104b491906127c6565b60405180910390f35b3480156104c957600080fd5b506104d2610fb5565b6040516104df919061266a565b60405180910390f35b3480156104f457600080fd5b506104fd611047565b60405161050a91906127c6565b60405180910390f35b61052d600480360381019061052891906126c2565b61104d565b005b34801561053b57600080fd5b5061055660048036038101906105519190612aeb565b6111d6565b005b34801561056457600080fd5b5061057f600480360381019061057a91906126c2565b6111ec565b005b34801561058d57600080fd5b506105a860048036038101906105a39190612bcc565b611272565b005b3480156105b657600080fd5b506105d160048036038101906105cc9190612c4f565b6112d4565b005b3480156105df57600080fd5b506105fa60048036038101906105f591906126c2565b61136d565b604051610607919061266a565b60405180910390f35b34801561061c57600080fd5b50610625611414565b604051610632919061266a565b60405180910390f35b34801561064757600080fd5b506106506114a2565b60405161065d91906127c6565b60405180910390f35b34801561067257600080fd5b5061068d60048036038101906106889190612c7c565b6114a8565b60405161069a91906125b6565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c59190612834565b61153c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061079757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a757506107a682611634565b5b9050919050565b6060600080546107bd90612ceb565b80601f01602080910402602001604051908101604052809291908181526020018280546107e990612ceb565b80156108365780601f1061080b57610100808354040283529160200191610836565b820191906000526020600020905b81548152906001019060200180831161081957829003601f168201915b5050505050905090565b600061084b8261169e565b61088a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088190612d8f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108d082610cfa565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093890612e21565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661096061170a565b73ffffffffffffffffffffffffffffffffffffffff16148061098f575061098e8161098961170a565b6114a8565b5b6109ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c590612eb3565b60405180910390fd5b6109d88383611712565b505050565b60006109e960076117cb565b905090565b6109ff6109f961170a565b826117d9565b610a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3590612f45565b60405180910390fd5b610a498383836118b7565b505050565b610a5661170a565b73ffffffffffffffffffffffffffffffffffffffff16610a74610eff565b73ffffffffffffffffffffffffffffffffffffffff1614610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac190612fb1565b60405180910390fd5b6000610ad4610eff565b73ffffffffffffffffffffffffffffffffffffffff1647604051610af790613002565b60006040518083038185875af1925050503d8060008114610b34576040519150601f19603f3d011682016040523d82523d6000602084013e610b39565b606091505b5050905080610b4757600080fd5b50565b610b6583838360405180602001604052806000815250611272565b505050565b60606000610b766109dd565b90506000610b8384610dbf565b67ffffffffffffffff811115610b9c57610b9b61294b565b5b604051908082528060200260200182016040528015610bca5781602001602082028036833780820191505090505b509050600080600190505b838111610c5857610be581610cfa565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415610c455780838380610c2590613046565b945081518110610c3857610c3761308f565b5b6020026020010181815250505b8080610c5090613046565b915050610bd5565b50819350505050919050565b610c6c61170a565b73ffffffffffffffffffffffffffffffffffffffff16610c8a610eff565b73ffffffffffffffffffffffffffffffffffffffff1614610ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd790612fb1565b60405180910390fd5b8060089080519060200190610cf692919061245f565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9a90613130565b60405180910390fd5b80915050919050565b600b60009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e27906131c2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e7f61170a565b73ffffffffffffffffffffffffffffffffffffffff16610e9d610eff565b73ffffffffffffffffffffffffffffffffffffffff1614610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90612fb1565b60405180910390fd5b610efd6000611b1e565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f3161170a565b73ffffffffffffffffffffffffffffffffffffffff16610f4f610eff565b73ffffffffffffffffffffffffffffffffffffffff1614610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c90612fb1565b60405180910390fd5b8060098190555050565b600a5481565b606060018054610fc490612ceb565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff090612ceb565b801561103d5780601f106110125761010080835404028352916020019161103d565b820191906000526020600020905b81548152906001019060200180831161102057829003601f168201915b5050505050905090565b60095481565b60008111801561105f5750600a548111155b61109e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110959061322e565b60405180910390fd5b610320816110ac60076117cb565b6110b6919061324e565b11156110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee906132f0565b60405180910390fd5b600b60009054906101000a900460ff16611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d9061335c565b60405180910390fd5b61114e610eff565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111975761119681600954611191919061337c565b611be4565b5b60005b818110156111d2576111ac6007611c85565b6111bf336111ba60076117cb565b611c9b565b80806111ca90613046565b91505061119a565b5050565b6111e86111e161170a565b8383611cb9565b5050565b6111f461170a565b73ffffffffffffffffffffffffffffffffffffffff16611212610eff565b73ffffffffffffffffffffffffffffffffffffffff1614611268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125f90612fb1565b60405180910390fd5b80600a8190555050565b61128361127d61170a565b836117d9565b6112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b990612f45565b60405180910390fd5b6112ce84848484611e26565b50505050565b6112dc61170a565b73ffffffffffffffffffffffffffffffffffffffff166112fa610eff565b73ffffffffffffffffffffffffffffffffffffffff1614611350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134790612fb1565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b60606113788261169e565b6113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae90613448565b60405180910390fd5b60006113c1611e82565b905060008151116113e1576040518060200160405280600081525061140c565b806113eb84611f14565b6040516020016113fc9291906134a4565b6040516020818303038152906040525b915050919050565b6008805461142190612ceb565b80601f016020809104026020016040519081016040528092919081815260200182805461144d90612ceb565b801561149a5780601f1061146f5761010080835404028352916020019161149a565b820191906000526020600020905b81548152906001019060200180831161147d57829003601f168201915b505050505081565b61032081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61154461170a565b73ffffffffffffffffffffffffffffffffffffffff16611562610eff565b73ffffffffffffffffffffffffffffffffffffffff16146115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af90612fb1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161f9061353a565b60405180910390fd5b61163181611b1e565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661178583610cfa565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006117e48261169e565b611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a906135cc565b60405180910390fd5b600061182e83610cfa565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061189d57508373ffffffffffffffffffffffffffffffffffffffff1661188584610840565b73ffffffffffffffffffffffffffffffffffffffff16145b806118ae57506118ad81856114a8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118d782610cfa565b73ffffffffffffffffffffffffffffffffffffffff161461192d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119249061365e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561199d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611994906136f0565b60405180910390fd5b6119a8838383612075565b6119b3600082611712565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a039190613710565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a5a919061324e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b1983838361207a565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80341015611c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1e90613790565b60405180910390fd5b80341115611c82573373ffffffffffffffffffffffffffffffffffffffff166108fc8234611c559190613710565b9081150290604051600060405180830381858888f19350505050158015611c80573d6000803e3d6000fd5b505b50565b6001816000016000828254019250508190555050565b611cb582826040518060200160405280600081525061207f565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1f906137fc565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e1991906125b6565b60405180910390a3505050565b611e318484846118b7565b611e3d848484846120da565b611e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e739061388e565b60405180910390fd5b50505050565b606060088054611e9190612ceb565b80601f0160208091040260200160405190810160405280929190818152602001828054611ebd90612ceb565b8015611f0a5780601f10611edf57610100808354040283529160200191611f0a565b820191906000526020600020905b815481529060010190602001808311611eed57829003601f168201915b5050505050905090565b60606000821415611f5c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612070565b600082905060005b60008214611f8e578080611f7790613046565b915050600a82611f8791906138dd565b9150611f64565b60008167ffffffffffffffff811115611faa57611fa961294b565b5b6040519080825280601f01601f191660200182016040528015611fdc5781602001600182028036833780820191505090505b5090505b6000851461206957600182611ff59190613710565b9150600a85612004919061390e565b6030612010919061324e565b60f81b8183815181106120265761202561308f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561206291906138dd565b9450611fe0565b8093505050505b919050565b505050565b505050565b6120898383612262565b61209660008484846120da565b6120d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cc9061388e565b60405180910390fd5b505050565b60006120fb8473ffffffffffffffffffffffffffffffffffffffff1661243c565b15612255578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261212461170a565b8786866040518563ffffffff1660e01b81526004016121469493929190613994565b6020604051808303816000875af192505050801561218257506040513d601f19601f8201168201806040525081019061217f91906139f5565b60015b612205573d80600081146121b2576040519150601f19603f3d011682016040523d82523d6000602084013e6121b7565b606091505b506000815114156121fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f49061388e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061225a565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c990613a6e565b60405180910390fd5b6122db8161169e565b1561231b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231290613ada565b60405180910390fd5b61232760008383612075565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612377919061324e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124386000838361207a565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461246b90612ceb565b90600052602060002090601f01602090048101928261248d57600085556124d4565b82601f106124a657805160ff19168380011785556124d4565b828001600101855582156124d4579182015b828111156124d35782518255916020019190600101906124b8565b5b5090506124e191906124e5565b5090565b5b808211156124fe5760008160009055506001016124e6565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61254b81612516565b811461255657600080fd5b50565b60008135905061256881612542565b92915050565b6000602082840312156125845761258361250c565b5b600061259284828501612559565b91505092915050565b60008115159050919050565b6125b08161259b565b82525050565b60006020820190506125cb60008301846125a7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561260b5780820151818401526020810190506125f0565b8381111561261a576000848401525b50505050565b6000601f19601f8301169050919050565b600061263c826125d1565b61264681856125dc565b93506126568185602086016125ed565b61265f81612620565b840191505092915050565b600060208201905081810360008301526126848184612631565b905092915050565b6000819050919050565b61269f8161268c565b81146126aa57600080fd5b50565b6000813590506126bc81612696565b92915050565b6000602082840312156126d8576126d761250c565b5b60006126e6848285016126ad565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061271a826126ef565b9050919050565b61272a8161270f565b82525050565b60006020820190506127456000830184612721565b92915050565b6127548161270f565b811461275f57600080fd5b50565b6000813590506127718161274b565b92915050565b6000806040838503121561278e5761278d61250c565b5b600061279c85828601612762565b92505060206127ad858286016126ad565b9150509250929050565b6127c08161268c565b82525050565b60006020820190506127db60008301846127b7565b92915050565b6000806000606084860312156127fa576127f961250c565b5b600061280886828701612762565b935050602061281986828701612762565b925050604061282a868287016126ad565b9150509250925092565b60006020828403121561284a5761284961250c565b5b600061285884828501612762565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6128968161268c565b82525050565b60006128a8838361288d565b60208301905092915050565b6000602082019050919050565b60006128cc82612861565b6128d6818561286c565b93506128e18361287d565b8060005b838110156129125781516128f9888261289c565b9750612904836128b4565b9250506001810190506128e5565b5085935050505092915050565b6000602082019050818103600083015261293981846128c1565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61298382612620565b810181811067ffffffffffffffff821117156129a2576129a161294b565b5b80604052505050565b60006129b5612502565b90506129c1828261297a565b919050565b600067ffffffffffffffff8211156129e1576129e061294b565b5b6129ea82612620565b9050602081019050919050565b82818337600083830152505050565b6000612a19612a14846129c6565b6129ab565b905082815260208101848484011115612a3557612a34612946565b5b612a408482856129f7565b509392505050565b600082601f830112612a5d57612a5c612941565b5b8135612a6d848260208601612a06565b91505092915050565b600060208284031215612a8c57612a8b61250c565b5b600082013567ffffffffffffffff811115612aaa57612aa9612511565b5b612ab684828501612a48565b91505092915050565b612ac88161259b565b8114612ad357600080fd5b50565b600081359050612ae581612abf565b92915050565b60008060408385031215612b0257612b0161250c565b5b6000612b1085828601612762565b9250506020612b2185828601612ad6565b9150509250929050565b600067ffffffffffffffff821115612b4657612b4561294b565b5b612b4f82612620565b9050602081019050919050565b6000612b6f612b6a84612b2b565b6129ab565b905082815260208101848484011115612b8b57612b8a612946565b5b612b968482856129f7565b509392505050565b600082601f830112612bb357612bb2612941565b5b8135612bc3848260208601612b5c565b91505092915050565b60008060008060808587031215612be657612be561250c565b5b6000612bf487828801612762565b9450506020612c0587828801612762565b9350506040612c16878288016126ad565b925050606085013567ffffffffffffffff811115612c3757612c36612511565b5b612c4387828801612b9e565b91505092959194509250565b600060208284031215612c6557612c6461250c565b5b6000612c7384828501612ad6565b91505092915050565b60008060408385031215612c9357612c9261250c565b5b6000612ca185828601612762565b9250506020612cb285828601612762565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d0357607f821691505b60208210811415612d1757612d16612cbc565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612d79602c836125dc565b9150612d8482612d1d565b604082019050919050565b60006020820190508181036000830152612da881612d6c565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612e0b6021836125dc565b9150612e1682612daf565b604082019050919050565b60006020820190508181036000830152612e3a81612dfe565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612e9d6038836125dc565b9150612ea882612e41565b604082019050919050565b60006020820190508181036000830152612ecc81612e90565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612f2f6031836125dc565b9150612f3a82612ed3565b604082019050919050565b60006020820190508181036000830152612f5e81612f22565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f9b6020836125dc565b9150612fa682612f65565b602082019050919050565b60006020820190508181036000830152612fca81612f8e565b9050919050565b600081905092915050565b50565b6000612fec600083612fd1565b9150612ff782612fdc565b600082019050919050565b600061300d82612fdf565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130518261268c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561308457613083613017565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061311a6029836125dc565b9150613125826130be565b604082019050919050565b600060208201905081810360008301526131498161310d565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006131ac602a836125dc565b91506131b782613150565b604082019050919050565b600060208201905081810360008301526131db8161319f565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b60006132186013836125dc565b9150613223826131e2565b602082019050919050565b600060208201905081810360008301526132478161320b565b9050919050565b60006132598261268c565b91506132648361268c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561329957613298613017565b5b828201905092915050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b60006132da6013836125dc565b91506132e5826132a4565b602082019050919050565b60006020820190508181036000830152613309816132cd565b9050919050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b60006133466012836125dc565b915061335182613310565b602082019050919050565b6000602082019050818103600083015261337581613339565b9050919050565b60006133878261268c565b91506133928361268c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133cb576133ca613017565b5b828202905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613432602f836125dc565b915061343d826133d6565b604082019050919050565b6000602082019050818103600083015261346181613425565b9050919050565b600081905092915050565b600061347e826125d1565b6134888185613468565b93506134988185602086016125ed565b80840191505092915050565b60006134b08285613473565b91506134bc8284613473565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135246026836125dc565b915061352f826134c8565b604082019050919050565b6000602082019050818103600083015261355381613517565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006135b6602c836125dc565b91506135c18261355a565b604082019050919050565b600060208201905081810360008301526135e5816135a9565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006136486025836125dc565b9150613653826135ec565b604082019050919050565b600060208201905081810360008301526136778161363b565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006136da6024836125dc565b91506136e58261367e565b604082019050919050565b60006020820190508181036000830152613709816136cd565b9050919050565b600061371b8261268c565b91506137268361268c565b92508282101561373957613738613017565b5b828203905092915050565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b600061377a6016836125dc565b915061378582613744565b602082019050919050565b600060208201905081810360008301526137a98161376d565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006137e66019836125dc565b91506137f1826137b0565b602082019050919050565b60006020820190508181036000830152613815816137d9565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006138786032836125dc565b91506138838261381c565b604082019050919050565b600060208201905081810360008301526138a78161386b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006138e88261268c565b91506138f38361268c565b925082613903576139026138ae565b5b828204905092915050565b60006139198261268c565b91506139248361268c565b925082613934576139336138ae565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006139668261393f565b613970818561394a565b93506139808185602086016125ed565b61398981612620565b840191505092915050565b60006080820190506139a96000830187612721565b6139b66020830186612721565b6139c360408301856127b7565b81810360608301526139d5818461395b565b905095945050505050565b6000815190506139ef81612542565b92915050565b600060208284031215613a0b57613a0a61250c565b5b6000613a19848285016139e0565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613a586020836125dc565b9150613a6382613a22565b602082019050919050565b60006020820190508181036000830152613a8781613a4b565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613ac4601c836125dc565b9150613acf82613a8e565b602082019050919050565b60006020820190508181036000830152613af381613ab7565b905091905056fea264697066735822122068a4087cd98951d529b2619f3e96786bb258b639b9f765e12d1f5993f85b5aed64736f6c634300080b0033697066733a2f2f516d503342596f476f7462364e477278784847574a6953314d6f68654c514c476f437246615072357575527469762f

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80638da5cb5b116100f7578063b071401b11610095578063cfc86f7b11610064578063cfc86f7b14610610578063d5abeb011461063b578063e985e9c514610666578063f2fde38b146106a3576101c2565b8063b071401b14610558578063b88d4fde14610581578063c4e37095146105aa578063c87b56dd146105d3576101c2565b806395d89b41116100d157806395d89b41146104bd578063a035b1fe146104e8578063a0712d6814610513578063a22cb4651461052f576101c2565b80638da5cb5b1461043e57806391b7f5ed1461046957806394354fd014610492576101c2565b806342842e0e116101645780636352211e1161013e5780636352211e1461038257806368428a1b146103bf57806370a08231146103ea578063715018a614610427576101c2565b806342842e0e146102f3578063438b63001461031c57806355f804b314610359576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780633ccfd60b146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e9919061256e565b6106cc565b6040516101fb91906125b6565b60405180910390f35b34801561021057600080fd5b506102196107ae565b604051610226919061266a565b60405180910390f35b34801561023b57600080fd5b50610256600480360381019061025191906126c2565b610840565b6040516102639190612730565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612777565b6108c5565b005b3480156102a157600080fd5b506102aa6109dd565b6040516102b791906127c6565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e291906127e1565b6109ee565b005b6102f1610a4e565b005b3480156102ff57600080fd5b5061031a600480360381019061031591906127e1565b610b4a565b005b34801561032857600080fd5b50610343600480360381019061033e9190612834565b610b6a565b604051610350919061291f565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b9190612a76565b610c64565b005b34801561038e57600080fd5b506103a960048036038101906103a491906126c2565b610cfa565b6040516103b69190612730565b60405180910390f35b3480156103cb57600080fd5b506103d4610dac565b6040516103e191906125b6565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c9190612834565b610dbf565b60405161041e91906127c6565b60405180910390f35b34801561043357600080fd5b5061043c610e77565b005b34801561044a57600080fd5b50610453610eff565b6040516104609190612730565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b91906126c2565b610f29565b005b34801561049e57600080fd5b506104a7610faf565b6040516104b491906127c6565b60405180910390f35b3480156104c957600080fd5b506104d2610fb5565b6040516104df919061266a565b60405180910390f35b3480156104f457600080fd5b506104fd611047565b60405161050a91906127c6565b60405180910390f35b61052d600480360381019061052891906126c2565b61104d565b005b34801561053b57600080fd5b5061055660048036038101906105519190612aeb565b6111d6565b005b34801561056457600080fd5b5061057f600480360381019061057a91906126c2565b6111ec565b005b34801561058d57600080fd5b506105a860048036038101906105a39190612bcc565b611272565b005b3480156105b657600080fd5b506105d160048036038101906105cc9190612c4f565b6112d4565b005b3480156105df57600080fd5b506105fa60048036038101906105f591906126c2565b61136d565b604051610607919061266a565b60405180910390f35b34801561061c57600080fd5b50610625611414565b604051610632919061266a565b60405180910390f35b34801561064757600080fd5b506106506114a2565b60405161065d91906127c6565b60405180910390f35b34801561067257600080fd5b5061068d60048036038101906106889190612c7c565b6114a8565b60405161069a91906125b6565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c59190612834565b61153c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061079757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a757506107a682611634565b5b9050919050565b6060600080546107bd90612ceb565b80601f01602080910402602001604051908101604052809291908181526020018280546107e990612ceb565b80156108365780601f1061080b57610100808354040283529160200191610836565b820191906000526020600020905b81548152906001019060200180831161081957829003601f168201915b5050505050905090565b600061084b8261169e565b61088a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088190612d8f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108d082610cfa565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093890612e21565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661096061170a565b73ffffffffffffffffffffffffffffffffffffffff16148061098f575061098e8161098961170a565b6114a8565b5b6109ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c590612eb3565b60405180910390fd5b6109d88383611712565b505050565b60006109e960076117cb565b905090565b6109ff6109f961170a565b826117d9565b610a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3590612f45565b60405180910390fd5b610a498383836118b7565b505050565b610a5661170a565b73ffffffffffffffffffffffffffffffffffffffff16610a74610eff565b73ffffffffffffffffffffffffffffffffffffffff1614610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac190612fb1565b60405180910390fd5b6000610ad4610eff565b73ffffffffffffffffffffffffffffffffffffffff1647604051610af790613002565b60006040518083038185875af1925050503d8060008114610b34576040519150601f19603f3d011682016040523d82523d6000602084013e610b39565b606091505b5050905080610b4757600080fd5b50565b610b6583838360405180602001604052806000815250611272565b505050565b60606000610b766109dd565b90506000610b8384610dbf565b67ffffffffffffffff811115610b9c57610b9b61294b565b5b604051908082528060200260200182016040528015610bca5781602001602082028036833780820191505090505b509050600080600190505b838111610c5857610be581610cfa565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415610c455780838380610c2590613046565b945081518110610c3857610c3761308f565b5b6020026020010181815250505b8080610c5090613046565b915050610bd5565b50819350505050919050565b610c6c61170a565b73ffffffffffffffffffffffffffffffffffffffff16610c8a610eff565b73ffffffffffffffffffffffffffffffffffffffff1614610ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd790612fb1565b60405180910390fd5b8060089080519060200190610cf692919061245f565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9a90613130565b60405180910390fd5b80915050919050565b600b60009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e27906131c2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e7f61170a565b73ffffffffffffffffffffffffffffffffffffffff16610e9d610eff565b73ffffffffffffffffffffffffffffffffffffffff1614610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90612fb1565b60405180910390fd5b610efd6000611b1e565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f3161170a565b73ffffffffffffffffffffffffffffffffffffffff16610f4f610eff565b73ffffffffffffffffffffffffffffffffffffffff1614610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c90612fb1565b60405180910390fd5b8060098190555050565b600a5481565b606060018054610fc490612ceb565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff090612ceb565b801561103d5780601f106110125761010080835404028352916020019161103d565b820191906000526020600020905b81548152906001019060200180831161102057829003601f168201915b5050505050905090565b60095481565b60008111801561105f5750600a548111155b61109e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110959061322e565b60405180910390fd5b610320816110ac60076117cb565b6110b6919061324e565b11156110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee906132f0565b60405180910390fd5b600b60009054906101000a900460ff16611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d9061335c565b60405180910390fd5b61114e610eff565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111975761119681600954611191919061337c565b611be4565b5b60005b818110156111d2576111ac6007611c85565b6111bf336111ba60076117cb565b611c9b565b80806111ca90613046565b91505061119a565b5050565b6111e86111e161170a565b8383611cb9565b5050565b6111f461170a565b73ffffffffffffffffffffffffffffffffffffffff16611212610eff565b73ffffffffffffffffffffffffffffffffffffffff1614611268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125f90612fb1565b60405180910390fd5b80600a8190555050565b61128361127d61170a565b836117d9565b6112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b990612f45565b60405180910390fd5b6112ce84848484611e26565b50505050565b6112dc61170a565b73ffffffffffffffffffffffffffffffffffffffff166112fa610eff565b73ffffffffffffffffffffffffffffffffffffffff1614611350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134790612fb1565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b60606113788261169e565b6113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae90613448565b60405180910390fd5b60006113c1611e82565b905060008151116113e1576040518060200160405280600081525061140c565b806113eb84611f14565b6040516020016113fc9291906134a4565b6040516020818303038152906040525b915050919050565b6008805461142190612ceb565b80601f016020809104026020016040519081016040528092919081815260200182805461144d90612ceb565b801561149a5780601f1061146f5761010080835404028352916020019161149a565b820191906000526020600020905b81548152906001019060200180831161147d57829003601f168201915b505050505081565b61032081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61154461170a565b73ffffffffffffffffffffffffffffffffffffffff16611562610eff565b73ffffffffffffffffffffffffffffffffffffffff16146115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af90612fb1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161f9061353a565b60405180910390fd5b61163181611b1e565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661178583610cfa565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006117e48261169e565b611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a906135cc565b60405180910390fd5b600061182e83610cfa565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061189d57508373ffffffffffffffffffffffffffffffffffffffff1661188584610840565b73ffffffffffffffffffffffffffffffffffffffff16145b806118ae57506118ad81856114a8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118d782610cfa565b73ffffffffffffffffffffffffffffffffffffffff161461192d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119249061365e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561199d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611994906136f0565b60405180910390fd5b6119a8838383612075565b6119b3600082611712565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a039190613710565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a5a919061324e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b1983838361207a565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80341015611c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1e90613790565b60405180910390fd5b80341115611c82573373ffffffffffffffffffffffffffffffffffffffff166108fc8234611c559190613710565b9081150290604051600060405180830381858888f19350505050158015611c80573d6000803e3d6000fd5b505b50565b6001816000016000828254019250508190555050565b611cb582826040518060200160405280600081525061207f565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1f906137fc565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e1991906125b6565b60405180910390a3505050565b611e318484846118b7565b611e3d848484846120da565b611e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e739061388e565b60405180910390fd5b50505050565b606060088054611e9190612ceb565b80601f0160208091040260200160405190810160405280929190818152602001828054611ebd90612ceb565b8015611f0a5780601f10611edf57610100808354040283529160200191611f0a565b820191906000526020600020905b815481529060010190602001808311611eed57829003601f168201915b5050505050905090565b60606000821415611f5c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612070565b600082905060005b60008214611f8e578080611f7790613046565b915050600a82611f8791906138dd565b9150611f64565b60008167ffffffffffffffff811115611faa57611fa961294b565b5b6040519080825280601f01601f191660200182016040528015611fdc5781602001600182028036833780820191505090505b5090505b6000851461206957600182611ff59190613710565b9150600a85612004919061390e565b6030612010919061324e565b60f81b8183815181106120265761202561308f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561206291906138dd565b9450611fe0565b8093505050505b919050565b505050565b505050565b6120898383612262565b61209660008484846120da565b6120d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cc9061388e565b60405180910390fd5b505050565b60006120fb8473ffffffffffffffffffffffffffffffffffffffff1661243c565b15612255578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261212461170a565b8786866040518563ffffffff1660e01b81526004016121469493929190613994565b6020604051808303816000875af192505050801561218257506040513d601f19601f8201168201806040525081019061217f91906139f5565b60015b612205573d80600081146121b2576040519150601f19603f3d011682016040523d82523d6000602084013e6121b7565b606091505b506000815114156121fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f49061388e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061225a565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c990613a6e565b60405180910390fd5b6122db8161169e565b1561231b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231290613ada565b60405180910390fd5b61232760008383612075565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612377919061324e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124386000838361207a565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461246b90612ceb565b90600052602060002090601f01602090048101928261248d57600085556124d4565b82601f106124a657805160ff19168380011785556124d4565b828001600101855582156124d4579182015b828111156124d35782518255916020019190600101906124b8565b5b5090506124e191906124e5565b5090565b5b808211156124fe5760008160009055506001016124e6565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61254b81612516565b811461255657600080fd5b50565b60008135905061256881612542565b92915050565b6000602082840312156125845761258361250c565b5b600061259284828501612559565b91505092915050565b60008115159050919050565b6125b08161259b565b82525050565b60006020820190506125cb60008301846125a7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561260b5780820151818401526020810190506125f0565b8381111561261a576000848401525b50505050565b6000601f19601f8301169050919050565b600061263c826125d1565b61264681856125dc565b93506126568185602086016125ed565b61265f81612620565b840191505092915050565b600060208201905081810360008301526126848184612631565b905092915050565b6000819050919050565b61269f8161268c565b81146126aa57600080fd5b50565b6000813590506126bc81612696565b92915050565b6000602082840312156126d8576126d761250c565b5b60006126e6848285016126ad565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061271a826126ef565b9050919050565b61272a8161270f565b82525050565b60006020820190506127456000830184612721565b92915050565b6127548161270f565b811461275f57600080fd5b50565b6000813590506127718161274b565b92915050565b6000806040838503121561278e5761278d61250c565b5b600061279c85828601612762565b92505060206127ad858286016126ad565b9150509250929050565b6127c08161268c565b82525050565b60006020820190506127db60008301846127b7565b92915050565b6000806000606084860312156127fa576127f961250c565b5b600061280886828701612762565b935050602061281986828701612762565b925050604061282a868287016126ad565b9150509250925092565b60006020828403121561284a5761284961250c565b5b600061285884828501612762565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6128968161268c565b82525050565b60006128a8838361288d565b60208301905092915050565b6000602082019050919050565b60006128cc82612861565b6128d6818561286c565b93506128e18361287d565b8060005b838110156129125781516128f9888261289c565b9750612904836128b4565b9250506001810190506128e5565b5085935050505092915050565b6000602082019050818103600083015261293981846128c1565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61298382612620565b810181811067ffffffffffffffff821117156129a2576129a161294b565b5b80604052505050565b60006129b5612502565b90506129c1828261297a565b919050565b600067ffffffffffffffff8211156129e1576129e061294b565b5b6129ea82612620565b9050602081019050919050565b82818337600083830152505050565b6000612a19612a14846129c6565b6129ab565b905082815260208101848484011115612a3557612a34612946565b5b612a408482856129f7565b509392505050565b600082601f830112612a5d57612a5c612941565b5b8135612a6d848260208601612a06565b91505092915050565b600060208284031215612a8c57612a8b61250c565b5b600082013567ffffffffffffffff811115612aaa57612aa9612511565b5b612ab684828501612a48565b91505092915050565b612ac88161259b565b8114612ad357600080fd5b50565b600081359050612ae581612abf565b92915050565b60008060408385031215612b0257612b0161250c565b5b6000612b1085828601612762565b9250506020612b2185828601612ad6565b9150509250929050565b600067ffffffffffffffff821115612b4657612b4561294b565b5b612b4f82612620565b9050602081019050919050565b6000612b6f612b6a84612b2b565b6129ab565b905082815260208101848484011115612b8b57612b8a612946565b5b612b968482856129f7565b509392505050565b600082601f830112612bb357612bb2612941565b5b8135612bc3848260208601612b5c565b91505092915050565b60008060008060808587031215612be657612be561250c565b5b6000612bf487828801612762565b9450506020612c0587828801612762565b9350506040612c16878288016126ad565b925050606085013567ffffffffffffffff811115612c3757612c36612511565b5b612c4387828801612b9e565b91505092959194509250565b600060208284031215612c6557612c6461250c565b5b6000612c7384828501612ad6565b91505092915050565b60008060408385031215612c9357612c9261250c565b5b6000612ca185828601612762565b9250506020612cb285828601612762565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d0357607f821691505b60208210811415612d1757612d16612cbc565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612d79602c836125dc565b9150612d8482612d1d565b604082019050919050565b60006020820190508181036000830152612da881612d6c565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612e0b6021836125dc565b9150612e1682612daf565b604082019050919050565b60006020820190508181036000830152612e3a81612dfe565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612e9d6038836125dc565b9150612ea882612e41565b604082019050919050565b60006020820190508181036000830152612ecc81612e90565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612f2f6031836125dc565b9150612f3a82612ed3565b604082019050919050565b60006020820190508181036000830152612f5e81612f22565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f9b6020836125dc565b9150612fa682612f65565b602082019050919050565b60006020820190508181036000830152612fca81612f8e565b9050919050565b600081905092915050565b50565b6000612fec600083612fd1565b9150612ff782612fdc565b600082019050919050565b600061300d82612fdf565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130518261268c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561308457613083613017565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061311a6029836125dc565b9150613125826130be565b604082019050919050565b600060208201905081810360008301526131498161310d565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006131ac602a836125dc565b91506131b782613150565b604082019050919050565b600060208201905081810360008301526131db8161319f565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b60006132186013836125dc565b9150613223826131e2565b602082019050919050565b600060208201905081810360008301526132478161320b565b9050919050565b60006132598261268c565b91506132648361268c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561329957613298613017565b5b828201905092915050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b60006132da6013836125dc565b91506132e5826132a4565b602082019050919050565b60006020820190508181036000830152613309816132cd565b9050919050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b60006133466012836125dc565b915061335182613310565b602082019050919050565b6000602082019050818103600083015261337581613339565b9050919050565b60006133878261268c565b91506133928361268c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133cb576133ca613017565b5b828202905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613432602f836125dc565b915061343d826133d6565b604082019050919050565b6000602082019050818103600083015261346181613425565b9050919050565b600081905092915050565b600061347e826125d1565b6134888185613468565b93506134988185602086016125ed565b80840191505092915050565b60006134b08285613473565b91506134bc8284613473565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135246026836125dc565b915061352f826134c8565b604082019050919050565b6000602082019050818103600083015261355381613517565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006135b6602c836125dc565b91506135c18261355a565b604082019050919050565b600060208201905081810360008301526135e5816135a9565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006136486025836125dc565b9150613653826135ec565b604082019050919050565b600060208201905081810360008301526136778161363b565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006136da6024836125dc565b91506136e58261367e565b604082019050919050565b60006020820190508181036000830152613709816136cd565b9050919050565b600061371b8261268c565b91506137268361268c565b92508282101561373957613738613017565b5b828203905092915050565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b600061377a6016836125dc565b915061378582613744565b602082019050919050565b600060208201905081810360008301526137a98161376d565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006137e66019836125dc565b91506137f1826137b0565b602082019050919050565b60006020820190508181036000830152613815816137d9565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006138786032836125dc565b91506138838261381c565b604082019050919050565b600060208201905081810360008301526138a78161386b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006138e88261268c565b91506138f38361268c565b925082613903576139026138ae565b5b828204905092915050565b60006139198261268c565b91506139248361268c565b925082613934576139336138ae565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006139668261393f565b613970818561394a565b93506139808185602086016125ed565b61398981612620565b840191505092915050565b60006080820190506139a96000830187612721565b6139b66020830186612721565b6139c360408301856127b7565b81810360608301526139d5818461395b565b905095945050505050565b6000815190506139ef81612542565b92915050565b600060208284031215613a0b57613a0a61250c565b5b6000613a19848285016139e0565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613a586020836125dc565b9150613a6382613a22565b602082019050919050565b60006020820190508181036000830152613a8781613a4b565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613ac4601c836125dc565b9150613acf82613a8e565b602082019050919050565b60006020820190508181036000830152613af381613ab7565b905091905056fea264697066735822122068a4087cd98951d529b2619f3e96786bb258b639b9f765e12d1f5993f85b5aed64736f6c634300080b0033

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.