ETH Price: $3,418.88 (-0.58%)
Gas: 2 Gwei

Token

(0xc1f02ab17a92486197ecfe89ea539cfdc1fa4a18)
 

Overview

Max Total Supply

0 ERC-721 TOKEN*

Holders

65

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
banteg.eth
Balance
0 ERC-721 TOKEN*
0x0035Fc5208eF989c28d47e552E92b0C507D2B318
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:
Honorary

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

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

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";

contract Honorary is
  ERC721,
  ERC721URIStorage,
  Pausable,
  Ownable,
  ERC721Burnable
{
  string private _tokenBaseURI;
  bool private _tokenBaseURILocked;
  uint256 private _tokenIdCounter;
  mapping(uint256 => string) private _tokenURIPaths;

  constructor(
    string memory tokenName_,
    string memory tokenSymbol_,
    string memory tokenBaseURI_
  ) ERC721(tokenName_, tokenSymbol_) {
    _tokenBaseURI = tokenBaseURI_;
  }

  function setTokenURIPath(uint256 tokenId_, string calldata arweaveURIPath_)
    public
    onlyOwner
  {
    _tokenURIPaths[tokenId_] = arweaveURIPath_;
  }

  function setTokenBaseURI(string calldata tokenBaseURI_) public onlyOwner {
    require(!_tokenBaseURILocked, "Token base URI is locked");
    _tokenBaseURI = tokenBaseURI_;
  }

  function lockTokenBaseURI() public onlyOwner {
    require(!_tokenBaseURILocked, "Token base URI is locked");
    _tokenBaseURILocked = true;
  }

  function tokenBaseURILocked() public view returns (bool) {
    return _tokenBaseURILocked;
  }

  function mintedSupply() public view returns (uint256) {
    return _tokenIdCounter;
  }

  function pause() public onlyOwner {
    _pause();
  }

  function unpause() public onlyOwner {
    _unpause();
  }

  function mint(address to_, string calldata arweaveURIPath_)
    public
    onlyOwner
    whenNotPaused
  {
    require(bytes(arweaveURIPath_).length > 0, "Missing arweave URI path");
    _safeMint(to_, mintedSupply());
    _tokenURIPaths[mintedSupply()] = arweaveURIPath_;
    _tokenIdCounter += 1;
  }

  function mintBatch(
    address[] calldata addresses_,
    string[] calldata arweaveURIPaths_
  ) public onlyOwner whenNotPaused {
    require(
      addresses_.length == arweaveURIPaths_.length,
      "Addresses & quantites not equal length"
    );
    for (uint256 i = 0; i < addresses_.length; i++) {
      mint(addresses_[i], arweaveURIPaths_[i]);
    }
  }

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

  function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
    super._burn(tokenId);
  }

  function tokenURI(uint256 tokenId)
    public
    view
    override(ERC721, ERC721URIStorage)
    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, _tokenURIPaths[tokenId]))
        : "";
  }
}

File 2 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT

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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

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

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

File 3 of 14 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 4 of 14 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 5 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_msgSender());
    }

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 6 of 14 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 7 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 9 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 14 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 14 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 12 of 14 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 13 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 14 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT

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":[{"internalType":"string","name":"tokenName_","type":"string"},{"internalType":"string","name":"tokenSymbol_","type":"string"},{"internalType":"string","name":"tokenBaseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"lockTokenBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to_","type":"address"},{"internalType":"string","name":"arweaveURIPath_","type":"string"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses_","type":"address[]"},{"internalType":"string[]","name":"arweaveURIPaths_","type":"string[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"tokenBaseURI_","type":"string"}],"name":"setTokenBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"},{"internalType":"string","name":"arweaveURIPath_","type":"string"}],"name":"setTokenURIPath","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":[],"name":"tokenBaseURILocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200411a3803806200411a8339818101604052810190620000379190620003e5565b828281600090805190602001906200005192919062000198565b5080600190805190602001906200006a92919062000198565b5050506000600760006101000a81548160ff021916908315150217905550620000a86200009c620000ca60201b60201c565b620000d260201b60201c565b8060089080519060200190620000c092919062000198565b5050505062000503565b600033905090565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001a690620004cd565b90600052602060002090601f016020900481019282620001ca576000855562000216565b82601f10620001e557805160ff191683800117855562000216565b8280016001018555821562000216579182015b8281111562000215578251825591602001919060010190620001f8565b5b50905062000225919062000229565b5090565b5b80821115620002445760008160009055506001016200022a565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620002b18262000266565b810181811067ffffffffffffffff82111715620002d357620002d262000277565b5b80604052505050565b6000620002e862000248565b9050620002f68282620002a6565b919050565b600067ffffffffffffffff82111562000319576200031862000277565b5b620003248262000266565b9050602081019050919050565b60005b838110156200035157808201518184015260208101905062000334565b8381111562000361576000848401525b50505050565b60006200037e6200037884620002fb565b620002dc565b9050828152602081018484840111156200039d576200039c62000261565b5b620003aa84828562000331565b509392505050565b600082601f830112620003ca57620003c96200025c565b5b8151620003dc84826020860162000367565b91505092915050565b60008060006060848603121562000401576200040062000252565b5b600084015167ffffffffffffffff81111562000422576200042162000257565b5b6200043086828701620003b2565b935050602084015167ffffffffffffffff81111562000454576200045362000257565b5b6200046286828701620003b2565b925050604084015167ffffffffffffffff81111562000486576200048562000257565b5b6200049486828701620003b2565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004e657607f821691505b60208210811415620004fd57620004fc6200049e565b5b50919050565b613c0780620005136000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806382d237d4116100f9578063a22cb46511610097578063c87b56dd11610071578063c87b56dd14610446578063d0def52114610476578063e985e9c514610492578063f2fde38b146104c2576101a9565b8063a22cb465146103f0578063b88d4fde1461040c578063c1bd8cf914610428576101a9565b80638da5cb5b116100d35780638da5cb5b1461037c5780638ef79e911461039a578063924cff6d146103b657806395d89b41146103d2576101a9565b806382d237d4146103385780638456cb5914610354578063898527151461035e576101a9565b806342842e0e116101665780636352211e116101405780636352211e146102c457806370a08231146102f4578063715018a61461032457806382776b9c1461032e576101a9565b806342842e0e1461026e57806342966c681461028a5780635c975abb146102a6576101a9565b806301ffc9a7146101ae57806306fdde03146101de578063081812fc146101fc578063095ea7b31461022c57806323b872dd146102485780633f4ba83a14610264575b600080fd5b6101c860048036038101906101c391906124a9565b6104de565b6040516101d591906124f1565b60405180910390f35b6101e66105c0565b6040516101f391906125a5565b60405180910390f35b610216600480360381019061021191906125fd565b610652565b604051610223919061266b565b60405180910390f35b610246600480360381019061024191906126b2565b6106d7565b005b610262600480360381019061025d91906126f2565b6107ef565b005b61026c61084f565b005b610288600480360381019061028391906126f2565b6108d5565b005b6102a4600480360381019061029f91906125fd565b6108f5565b005b6102ae610951565b6040516102bb91906124f1565b60405180910390f35b6102de60048036038101906102d991906125fd565b610968565b6040516102eb919061266b565b60405180910390f35b61030e60048036038101906103099190612745565b610a1a565b60405161031b9190612781565b60405180910390f35b61032c610ad2565b005b610336610b5a565b005b610352600480360381019061034d9190612801565b610c43565b005b61035c610ce7565b005b610366610d6d565b60405161037391906124f1565b60405180910390f35b610384610d84565b604051610391919061266b565b60405180910390f35b6103b460048036038101906103af9190612861565b610dae565b005b6103d060048036038101906103cb919061295a565b610e90565b005b6103da611019565b6040516103e791906125a5565b60405180910390f35b61040a60048036038101906104059190612a07565b6110ab565b005b61042660048036038101906104219190612b77565b61122c565b005b61043061128e565b60405161043d9190612781565b60405180910390f35b610460600480360381019061045b91906125fd565b611298565b60405161046d91906125a5565b60405180910390f35b610490600480360381019061048b9190612bfa565b611349565b005b6104ac60048036038101906104a79190612c5a565b6114ad565b6040516104b991906124f1565b60405180910390f35b6104dc60048036038101906104d79190612745565b611541565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105a957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105b957506105b882611639565b5b9050919050565b6060600080546105cf90612cc9565b80601f01602080910402602001604051908101604052809291908181526020018280546105fb90612cc9565b80156106485780601f1061061d57610100808354040283529160200191610648565b820191906000526020600020905b81548152906001019060200180831161062b57829003601f168201915b5050505050905090565b600061065d826116a3565b61069c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069390612d6d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106e282610968565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074a90612dff565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661077261170f565b73ffffffffffffffffffffffffffffffffffffffff1614806107a157506107a08161079b61170f565b6114ad565b5b6107e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d790612e91565b60405180910390fd5b6107ea8383611717565b505050565b6108006107fa61170f565b826117d0565b61083f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083690612f23565b60405180910390fd5b61084a8383836118ae565b505050565b61085761170f565b73ffffffffffffffffffffffffffffffffffffffff16610875610d84565b73ffffffffffffffffffffffffffffffffffffffff16146108cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c290612f8f565b60405180910390fd5b6108d3611b0a565b565b6108f08383836040518060200160405280600081525061122c565b505050565b61090661090061170f565b826117d0565b610945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093c90613021565b60405180910390fd5b61094e81611bac565b50565b6000600760009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a08906130b3565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8290613145565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ada61170f565b73ffffffffffffffffffffffffffffffffffffffff16610af8610d84565b73ffffffffffffffffffffffffffffffffffffffff1614610b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4590612f8f565b60405180910390fd5b610b586000611bb8565b565b610b6261170f565b73ffffffffffffffffffffffffffffffffffffffff16610b80610d84565b73ffffffffffffffffffffffffffffffffffffffff1614610bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcd90612f8f565b60405180910390fd5b600960009054906101000a900460ff1615610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d906131b1565b60405180910390fd5b6001600960006101000a81548160ff021916908315150217905550565b610c4b61170f565b73ffffffffffffffffffffffffffffffffffffffff16610c69610d84565b73ffffffffffffffffffffffffffffffffffffffff1614610cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb690612f8f565b60405180910390fd5b8181600b60008681526020019081526020016000209190610ce192919061235a565b50505050565b610cef61170f565b73ffffffffffffffffffffffffffffffffffffffff16610d0d610d84565b73ffffffffffffffffffffffffffffffffffffffff1614610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a90612f8f565b60405180910390fd5b610d6b611c7e565b565b6000600960009054906101000a900460ff16905090565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610db661170f565b73ffffffffffffffffffffffffffffffffffffffff16610dd4610d84565b73ffffffffffffffffffffffffffffffffffffffff1614610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2190612f8f565b60405180910390fd5b600960009054906101000a900460ff1615610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e71906131b1565b60405180910390fd5b818160089190610e8b92919061235a565b505050565b610e9861170f565b73ffffffffffffffffffffffffffffffffffffffff16610eb6610d84565b73ffffffffffffffffffffffffffffffffffffffff1614610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0390612f8f565b60405180910390fd5b610f14610951565b15610f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4b9061321d565b60405180910390fd5b818190508484905014610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f93906132af565b60405180910390fd5b60005b8484905081101561101257610fff858583818110610fc057610fbf6132cf565b5b9050602002016020810190610fd59190612745565b848484818110610fe857610fe76132cf565b5b9050602002810190610ffa919061330d565b611349565b808061100a9061339f565b915050610f9f565b5050505050565b60606001805461102890612cc9565b80601f016020809104026020016040519081016040528092919081815260200182805461105490612cc9565b80156110a15780601f10611076576101008083540402835291602001916110a1565b820191906000526020600020905b81548152906001019060200180831161108457829003601f168201915b5050505050905090565b6110b361170f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111890613434565b60405180910390fd5b806005600061112e61170f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111db61170f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161122091906124f1565b60405180910390a35050565b61123d61123761170f565b836117d0565b61127c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127390612f23565b60405180910390fd5b61128884848484611d21565b50505050565b6000600a54905090565b60606112a3826116a3565b6112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d9906134c6565b60405180910390fd5b60006112ec611d7d565b9050600081511161130c5760405180602001604052806000815250611341565b80600b60008581526020019081526020016000206040516020016113319291906135b6565b6040516020818303038152906040525b915050919050565b61135161170f565b73ffffffffffffffffffffffffffffffffffffffff1661136f610d84565b73ffffffffffffffffffffffffffffffffffffffff16146113c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bc90612f8f565b60405180910390fd5b6113cd610951565b1561140d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114049061321d565b60405180910390fd5b60008282905011611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a90613626565b60405180910390fd5b6114648361145f61128e565b611e0f565b8181600b600061147261128e565b8152602001908152602001600020919061148d92919061235a565b506001600a60008282546114a19190613646565b92505081905550505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61154961170f565b73ffffffffffffffffffffffffffffffffffffffff16611567610d84565b73ffffffffffffffffffffffffffffffffffffffff16146115bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b490612f8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561162d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116249061370e565b60405180910390fd5b61163681611bb8565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661178a83610968565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117db826116a3565b61181a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611811906137a0565b60405180910390fd5b600061182583610968565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061189457508373ffffffffffffffffffffffffffffffffffffffff1661187c84610652565b73ffffffffffffffffffffffffffffffffffffffff16145b806118a557506118a481856114ad565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118ce82610968565b73ffffffffffffffffffffffffffffffffffffffff1614611924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191b90613832565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198b906138c4565b60405180910390fd5b61199f838383611e2d565b6119aa600082611717565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119fa91906138e4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a519190613646565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611b12610951565b611b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4890613964565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611b9561170f565b604051611ba2919061266b565b60405180910390a1565b611bb581611e32565b50565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c86610951565b15611cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbd9061321d565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d0a61170f565b604051611d17919061266b565b60405180910390a1565b611d2c8484846118ae565b611d3884848484611e85565b611d77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6e906139f6565b60405180910390fd5b50505050565b606060088054611d8c90612cc9565b80601f0160208091040260200160405190810160405280929190818152602001828054611db890612cc9565b8015611e055780601f10611dda57610100808354040283529160200191611e05565b820191906000526020600020905b815481529060010190602001808311611de857829003601f168201915b5050505050905090565b611e2982826040518060200160405280600081525061200d565b5050565b505050565b611e3b81612068565b6000600660008381526020019081526020016000208054611e5b90612cc9565b905014611e8257600660008281526020019081526020016000206000611e8191906123e0565b5b50565b6000611ea68473ffffffffffffffffffffffffffffffffffffffff16612179565b15612000578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ecf61170f565b8786866040518563ffffffff1660e01b8152600401611ef19493929190613a6b565b6020604051808303816000875af1925050508015611f2d57506040513d601f19601f82011682018060405250810190611f2a9190613acc565b60015b611fb0573d8060008114611f5d576040519150601f19603f3d011682016040523d82523d6000602084013e611f62565b606091505b50600081511415611fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9f906139f6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612005565b600190505b949350505050565b612017838361218c565b6120246000848484611e85565b612063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205a906139f6565b60405180910390fd5b505050565b600061207382610968565b905061208181600084611e2d565b61208c600083611717565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120dc91906138e4565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f390613b45565b60405180910390fd5b612205816116a3565b15612245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223c90613bb1565b60405180910390fd5b61225160008383611e2d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122a19190613646565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461236690612cc9565b90600052602060002090601f01602090048101928261238857600085556123cf565b82601f106123a157803560ff19168380011785556123cf565b828001600101855582156123cf579182015b828111156123ce5782358255916020019190600101906123b3565b5b5090506123dc9190612420565b5090565b5080546123ec90612cc9565b6000825580601f106123fe575061241d565b601f01602090049060005260206000209081019061241c9190612420565b5b50565b5b80821115612439576000816000905550600101612421565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61248681612451565b811461249157600080fd5b50565b6000813590506124a38161247d565b92915050565b6000602082840312156124bf576124be612447565b5b60006124cd84828501612494565b91505092915050565b60008115159050919050565b6124eb816124d6565b82525050565b600060208201905061250660008301846124e2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561254657808201518184015260208101905061252b565b83811115612555576000848401525b50505050565b6000601f19601f8301169050919050565b60006125778261250c565b6125818185612517565b9350612591818560208601612528565b61259a8161255b565b840191505092915050565b600060208201905081810360008301526125bf818461256c565b905092915050565b6000819050919050565b6125da816125c7565b81146125e557600080fd5b50565b6000813590506125f7816125d1565b92915050565b60006020828403121561261357612612612447565b5b6000612621848285016125e8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126558261262a565b9050919050565b6126658161264a565b82525050565b6000602082019050612680600083018461265c565b92915050565b61268f8161264a565b811461269a57600080fd5b50565b6000813590506126ac81612686565b92915050565b600080604083850312156126c9576126c8612447565b5b60006126d78582860161269d565b92505060206126e8858286016125e8565b9150509250929050565b60008060006060848603121561270b5761270a612447565b5b60006127198682870161269d565b935050602061272a8682870161269d565b925050604061273b868287016125e8565b9150509250925092565b60006020828403121561275b5761275a612447565b5b60006127698482850161269d565b91505092915050565b61277b816125c7565b82525050565b60006020820190506127966000830184612772565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126127c1576127c061279c565b5b8235905067ffffffffffffffff8111156127de576127dd6127a1565b5b6020830191508360018202830111156127fa576127f96127a6565b5b9250929050565b60008060006040848603121561281a57612819612447565b5b6000612828868287016125e8565b935050602084013567ffffffffffffffff8111156128495761284861244c565b5b612855868287016127ab565b92509250509250925092565b6000806020838503121561287857612877612447565b5b600083013567ffffffffffffffff8111156128965761289561244c565b5b6128a2858286016127ab565b92509250509250929050565b60008083601f8401126128c4576128c361279c565b5b8235905067ffffffffffffffff8111156128e1576128e06127a1565b5b6020830191508360208202830111156128fd576128fc6127a6565b5b9250929050565b60008083601f84011261291a5761291961279c565b5b8235905067ffffffffffffffff811115612937576129366127a1565b5b602083019150836020820283011115612953576129526127a6565b5b9250929050565b6000806000806040858703121561297457612973612447565b5b600085013567ffffffffffffffff8111156129925761299161244c565b5b61299e878288016128ae565b9450945050602085013567ffffffffffffffff8111156129c1576129c061244c565b5b6129cd87828801612904565b925092505092959194509250565b6129e4816124d6565b81146129ef57600080fd5b50565b600081359050612a01816129db565b92915050565b60008060408385031215612a1e57612a1d612447565b5b6000612a2c8582860161269d565b9250506020612a3d858286016129f2565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a848261255b565b810181811067ffffffffffffffff82111715612aa357612aa2612a4c565b5b80604052505050565b6000612ab661243d565b9050612ac28282612a7b565b919050565b600067ffffffffffffffff821115612ae257612ae1612a4c565b5b612aeb8261255b565b9050602081019050919050565b82818337600083830152505050565b6000612b1a612b1584612ac7565b612aac565b905082815260208101848484011115612b3657612b35612a47565b5b612b41848285612af8565b509392505050565b600082601f830112612b5e57612b5d61279c565b5b8135612b6e848260208601612b07565b91505092915050565b60008060008060808587031215612b9157612b90612447565b5b6000612b9f8782880161269d565b9450506020612bb08782880161269d565b9350506040612bc1878288016125e8565b925050606085013567ffffffffffffffff811115612be257612be161244c565b5b612bee87828801612b49565b91505092959194509250565b600080600060408486031215612c1357612c12612447565b5b6000612c218682870161269d565b935050602084013567ffffffffffffffff811115612c4257612c4161244c565b5b612c4e868287016127ab565b92509250509250925092565b60008060408385031215612c7157612c70612447565b5b6000612c7f8582860161269d565b9250506020612c908582860161269d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ce157607f821691505b60208210811415612cf557612cf4612c9a565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612d57602c83612517565b9150612d6282612cfb565b604082019050919050565b60006020820190508181036000830152612d8681612d4a565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612de9602183612517565b9150612df482612d8d565b604082019050919050565b60006020820190508181036000830152612e1881612ddc565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612e7b603883612517565b9150612e8682612e1f565b604082019050919050565b60006020820190508181036000830152612eaa81612e6e565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612f0d603183612517565b9150612f1882612eb1565b604082019050919050565b60006020820190508181036000830152612f3c81612f00565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f79602083612517565b9150612f8482612f43565b602082019050919050565b60006020820190508181036000830152612fa881612f6c565b9050919050565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b600061300b603083612517565b915061301682612faf565b604082019050919050565b6000602082019050818103600083015261303a81612ffe565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061309d602983612517565b91506130a882613041565b604082019050919050565b600060208201905081810360008301526130cc81613090565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061312f602a83612517565b915061313a826130d3565b604082019050919050565b6000602082019050818103600083015261315e81613122565b9050919050565b7f546f6b656e206261736520555249206973206c6f636b65640000000000000000600082015250565b600061319b601883612517565b91506131a682613165565b602082019050919050565b600060208201905081810360008301526131ca8161318e565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613207601083612517565b9150613212826131d1565b602082019050919050565b60006020820190508181036000830152613236816131fa565b9050919050565b7f4164647265737365732026207175616e7469746573206e6f7420657175616c2060008201527f6c656e6774680000000000000000000000000000000000000000000000000000602082015250565b6000613299602683612517565b91506132a48261323d565b604082019050919050565b600060208201905081810360008301526132c88161328c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b600080fd5b600080fd5b6000808335600160200384360303811261332a576133296132fe565b5b80840192508235915067ffffffffffffffff82111561334c5761334b613303565b5b60208301925060018202360383131561336857613367613308565b5b509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006133aa826125c7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133dd576133dc613370565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061341e601983612517565b9150613429826133e8565b602082019050919050565b6000602082019050818103600083015261344d81613411565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006134b0602f83612517565b91506134bb82613454565b604082019050919050565b600060208201905081810360008301526134df816134a3565b9050919050565b600081905092915050565b60006134fc8261250c565b61350681856134e6565b9350613516818560208601612528565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461354481612cc9565b61354e81866134e6565b94506001821660008114613569576001811461357a576135ad565b60ff198316865281860193506135ad565b61358385613522565b60005b838110156135a557815481890152600182019150602081019050613586565b838801955050505b50505092915050565b60006135c282856134f1565b91506135ce8284613537565b91508190509392505050565b7f4d697373696e6720617277656176652055524920706174680000000000000000600082015250565b6000613610601883612517565b915061361b826135da565b602082019050919050565b6000602082019050818103600083015261363f81613603565b9050919050565b6000613651826125c7565b915061365c836125c7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561369157613690613370565b5b828201905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136f8602683612517565b91506137038261369c565b604082019050919050565b60006020820190508181036000830152613727816136eb565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061378a602c83612517565b91506137958261372e565b604082019050919050565b600060208201905081810360008301526137b98161377d565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b600061381c602983612517565b9150613827826137c0565b604082019050919050565b6000602082019050818103600083015261384b8161380f565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006138ae602483612517565b91506138b982613852565b604082019050919050565b600060208201905081810360008301526138dd816138a1565b9050919050565b60006138ef826125c7565b91506138fa836125c7565b92508282101561390d5761390c613370565b5b828203905092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061394e601483612517565b915061395982613918565b602082019050919050565b6000602082019050818103600083015261397d81613941565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006139e0603283612517565b91506139eb82613984565b604082019050919050565b60006020820190508181036000830152613a0f816139d3565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613a3d82613a16565b613a478185613a21565b9350613a57818560208601612528565b613a608161255b565b840191505092915050565b6000608082019050613a80600083018761265c565b613a8d602083018661265c565b613a9a6040830185612772565b8181036060830152613aac8184613a32565b905095945050505050565b600081519050613ac68161247d565b92915050565b600060208284031215613ae257613ae1612447565b5b6000613af084828501613ab7565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613b2f602083612517565b9150613b3a82613af9565b602082019050919050565b60006020820190508181036000830152613b5e81613b22565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613b9b601c83612517565b9150613ba682613b65565b602082019050919050565b60006020820190508181036000830152613bca81613b8e565b905091905056fea26469706673582212200c7b70c0e12fcde8ebd0cc73328180326b45cb3cd1f0fa74f4aeae70733c51fb64736f6c634300080c0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000010467269656e6473206f6620416e617461000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003464f410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001468747470733a2f2f617277656176652e6e65742f000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806382d237d4116100f9578063a22cb46511610097578063c87b56dd11610071578063c87b56dd14610446578063d0def52114610476578063e985e9c514610492578063f2fde38b146104c2576101a9565b8063a22cb465146103f0578063b88d4fde1461040c578063c1bd8cf914610428576101a9565b80638da5cb5b116100d35780638da5cb5b1461037c5780638ef79e911461039a578063924cff6d146103b657806395d89b41146103d2576101a9565b806382d237d4146103385780638456cb5914610354578063898527151461035e576101a9565b806342842e0e116101665780636352211e116101405780636352211e146102c457806370a08231146102f4578063715018a61461032457806382776b9c1461032e576101a9565b806342842e0e1461026e57806342966c681461028a5780635c975abb146102a6576101a9565b806301ffc9a7146101ae57806306fdde03146101de578063081812fc146101fc578063095ea7b31461022c57806323b872dd146102485780633f4ba83a14610264575b600080fd5b6101c860048036038101906101c391906124a9565b6104de565b6040516101d591906124f1565b60405180910390f35b6101e66105c0565b6040516101f391906125a5565b60405180910390f35b610216600480360381019061021191906125fd565b610652565b604051610223919061266b565b60405180910390f35b610246600480360381019061024191906126b2565b6106d7565b005b610262600480360381019061025d91906126f2565b6107ef565b005b61026c61084f565b005b610288600480360381019061028391906126f2565b6108d5565b005b6102a4600480360381019061029f91906125fd565b6108f5565b005b6102ae610951565b6040516102bb91906124f1565b60405180910390f35b6102de60048036038101906102d991906125fd565b610968565b6040516102eb919061266b565b60405180910390f35b61030e60048036038101906103099190612745565b610a1a565b60405161031b9190612781565b60405180910390f35b61032c610ad2565b005b610336610b5a565b005b610352600480360381019061034d9190612801565b610c43565b005b61035c610ce7565b005b610366610d6d565b60405161037391906124f1565b60405180910390f35b610384610d84565b604051610391919061266b565b60405180910390f35b6103b460048036038101906103af9190612861565b610dae565b005b6103d060048036038101906103cb919061295a565b610e90565b005b6103da611019565b6040516103e791906125a5565b60405180910390f35b61040a60048036038101906104059190612a07565b6110ab565b005b61042660048036038101906104219190612b77565b61122c565b005b61043061128e565b60405161043d9190612781565b60405180910390f35b610460600480360381019061045b91906125fd565b611298565b60405161046d91906125a5565b60405180910390f35b610490600480360381019061048b9190612bfa565b611349565b005b6104ac60048036038101906104a79190612c5a565b6114ad565b6040516104b991906124f1565b60405180910390f35b6104dc60048036038101906104d79190612745565b611541565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105a957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105b957506105b882611639565b5b9050919050565b6060600080546105cf90612cc9565b80601f01602080910402602001604051908101604052809291908181526020018280546105fb90612cc9565b80156106485780601f1061061d57610100808354040283529160200191610648565b820191906000526020600020905b81548152906001019060200180831161062b57829003601f168201915b5050505050905090565b600061065d826116a3565b61069c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069390612d6d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106e282610968565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074a90612dff565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661077261170f565b73ffffffffffffffffffffffffffffffffffffffff1614806107a157506107a08161079b61170f565b6114ad565b5b6107e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d790612e91565b60405180910390fd5b6107ea8383611717565b505050565b6108006107fa61170f565b826117d0565b61083f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083690612f23565b60405180910390fd5b61084a8383836118ae565b505050565b61085761170f565b73ffffffffffffffffffffffffffffffffffffffff16610875610d84565b73ffffffffffffffffffffffffffffffffffffffff16146108cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c290612f8f565b60405180910390fd5b6108d3611b0a565b565b6108f08383836040518060200160405280600081525061122c565b505050565b61090661090061170f565b826117d0565b610945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093c90613021565b60405180910390fd5b61094e81611bac565b50565b6000600760009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a08906130b3565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8290613145565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ada61170f565b73ffffffffffffffffffffffffffffffffffffffff16610af8610d84565b73ffffffffffffffffffffffffffffffffffffffff1614610b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4590612f8f565b60405180910390fd5b610b586000611bb8565b565b610b6261170f565b73ffffffffffffffffffffffffffffffffffffffff16610b80610d84565b73ffffffffffffffffffffffffffffffffffffffff1614610bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcd90612f8f565b60405180910390fd5b600960009054906101000a900460ff1615610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d906131b1565b60405180910390fd5b6001600960006101000a81548160ff021916908315150217905550565b610c4b61170f565b73ffffffffffffffffffffffffffffffffffffffff16610c69610d84565b73ffffffffffffffffffffffffffffffffffffffff1614610cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb690612f8f565b60405180910390fd5b8181600b60008681526020019081526020016000209190610ce192919061235a565b50505050565b610cef61170f565b73ffffffffffffffffffffffffffffffffffffffff16610d0d610d84565b73ffffffffffffffffffffffffffffffffffffffff1614610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a90612f8f565b60405180910390fd5b610d6b611c7e565b565b6000600960009054906101000a900460ff16905090565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610db661170f565b73ffffffffffffffffffffffffffffffffffffffff16610dd4610d84565b73ffffffffffffffffffffffffffffffffffffffff1614610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2190612f8f565b60405180910390fd5b600960009054906101000a900460ff1615610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e71906131b1565b60405180910390fd5b818160089190610e8b92919061235a565b505050565b610e9861170f565b73ffffffffffffffffffffffffffffffffffffffff16610eb6610d84565b73ffffffffffffffffffffffffffffffffffffffff1614610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0390612f8f565b60405180910390fd5b610f14610951565b15610f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4b9061321d565b60405180910390fd5b818190508484905014610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f93906132af565b60405180910390fd5b60005b8484905081101561101257610fff858583818110610fc057610fbf6132cf565b5b9050602002016020810190610fd59190612745565b848484818110610fe857610fe76132cf565b5b9050602002810190610ffa919061330d565b611349565b808061100a9061339f565b915050610f9f565b5050505050565b60606001805461102890612cc9565b80601f016020809104026020016040519081016040528092919081815260200182805461105490612cc9565b80156110a15780601f10611076576101008083540402835291602001916110a1565b820191906000526020600020905b81548152906001019060200180831161108457829003601f168201915b5050505050905090565b6110b361170f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111890613434565b60405180910390fd5b806005600061112e61170f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111db61170f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161122091906124f1565b60405180910390a35050565b61123d61123761170f565b836117d0565b61127c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127390612f23565b60405180910390fd5b61128884848484611d21565b50505050565b6000600a54905090565b60606112a3826116a3565b6112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d9906134c6565b60405180910390fd5b60006112ec611d7d565b9050600081511161130c5760405180602001604052806000815250611341565b80600b60008581526020019081526020016000206040516020016113319291906135b6565b6040516020818303038152906040525b915050919050565b61135161170f565b73ffffffffffffffffffffffffffffffffffffffff1661136f610d84565b73ffffffffffffffffffffffffffffffffffffffff16146113c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bc90612f8f565b60405180910390fd5b6113cd610951565b1561140d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114049061321d565b60405180910390fd5b60008282905011611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a90613626565b60405180910390fd5b6114648361145f61128e565b611e0f565b8181600b600061147261128e565b8152602001908152602001600020919061148d92919061235a565b506001600a60008282546114a19190613646565b92505081905550505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61154961170f565b73ffffffffffffffffffffffffffffffffffffffff16611567610d84565b73ffffffffffffffffffffffffffffffffffffffff16146115bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b490612f8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561162d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116249061370e565b60405180910390fd5b61163681611bb8565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661178a83610968565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117db826116a3565b61181a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611811906137a0565b60405180910390fd5b600061182583610968565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061189457508373ffffffffffffffffffffffffffffffffffffffff1661187c84610652565b73ffffffffffffffffffffffffffffffffffffffff16145b806118a557506118a481856114ad565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118ce82610968565b73ffffffffffffffffffffffffffffffffffffffff1614611924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191b90613832565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198b906138c4565b60405180910390fd5b61199f838383611e2d565b6119aa600082611717565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119fa91906138e4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a519190613646565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611b12610951565b611b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4890613964565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611b9561170f565b604051611ba2919061266b565b60405180910390a1565b611bb581611e32565b50565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c86610951565b15611cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbd9061321d565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d0a61170f565b604051611d17919061266b565b60405180910390a1565b611d2c8484846118ae565b611d3884848484611e85565b611d77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6e906139f6565b60405180910390fd5b50505050565b606060088054611d8c90612cc9565b80601f0160208091040260200160405190810160405280929190818152602001828054611db890612cc9565b8015611e055780601f10611dda57610100808354040283529160200191611e05565b820191906000526020600020905b815481529060010190602001808311611de857829003601f168201915b5050505050905090565b611e2982826040518060200160405280600081525061200d565b5050565b505050565b611e3b81612068565b6000600660008381526020019081526020016000208054611e5b90612cc9565b905014611e8257600660008281526020019081526020016000206000611e8191906123e0565b5b50565b6000611ea68473ffffffffffffffffffffffffffffffffffffffff16612179565b15612000578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ecf61170f565b8786866040518563ffffffff1660e01b8152600401611ef19493929190613a6b565b6020604051808303816000875af1925050508015611f2d57506040513d601f19601f82011682018060405250810190611f2a9190613acc565b60015b611fb0573d8060008114611f5d576040519150601f19603f3d011682016040523d82523d6000602084013e611f62565b606091505b50600081511415611fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9f906139f6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612005565b600190505b949350505050565b612017838361218c565b6120246000848484611e85565b612063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205a906139f6565b60405180910390fd5b505050565b600061207382610968565b905061208181600084611e2d565b61208c600083611717565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120dc91906138e4565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f390613b45565b60405180910390fd5b612205816116a3565b15612245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223c90613bb1565b60405180910390fd5b61225160008383611e2d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122a19190613646565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461236690612cc9565b90600052602060002090601f01602090048101928261238857600085556123cf565b82601f106123a157803560ff19168380011785556123cf565b828001600101855582156123cf579182015b828111156123ce5782358255916020019190600101906123b3565b5b5090506123dc9190612420565b5090565b5080546123ec90612cc9565b6000825580601f106123fe575061241d565b601f01602090049060005260206000209081019061241c9190612420565b5b50565b5b80821115612439576000816000905550600101612421565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61248681612451565b811461249157600080fd5b50565b6000813590506124a38161247d565b92915050565b6000602082840312156124bf576124be612447565b5b60006124cd84828501612494565b91505092915050565b60008115159050919050565b6124eb816124d6565b82525050565b600060208201905061250660008301846124e2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561254657808201518184015260208101905061252b565b83811115612555576000848401525b50505050565b6000601f19601f8301169050919050565b60006125778261250c565b6125818185612517565b9350612591818560208601612528565b61259a8161255b565b840191505092915050565b600060208201905081810360008301526125bf818461256c565b905092915050565b6000819050919050565b6125da816125c7565b81146125e557600080fd5b50565b6000813590506125f7816125d1565b92915050565b60006020828403121561261357612612612447565b5b6000612621848285016125e8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126558261262a565b9050919050565b6126658161264a565b82525050565b6000602082019050612680600083018461265c565b92915050565b61268f8161264a565b811461269a57600080fd5b50565b6000813590506126ac81612686565b92915050565b600080604083850312156126c9576126c8612447565b5b60006126d78582860161269d565b92505060206126e8858286016125e8565b9150509250929050565b60008060006060848603121561270b5761270a612447565b5b60006127198682870161269d565b935050602061272a8682870161269d565b925050604061273b868287016125e8565b9150509250925092565b60006020828403121561275b5761275a612447565b5b60006127698482850161269d565b91505092915050565b61277b816125c7565b82525050565b60006020820190506127966000830184612772565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126127c1576127c061279c565b5b8235905067ffffffffffffffff8111156127de576127dd6127a1565b5b6020830191508360018202830111156127fa576127f96127a6565b5b9250929050565b60008060006040848603121561281a57612819612447565b5b6000612828868287016125e8565b935050602084013567ffffffffffffffff8111156128495761284861244c565b5b612855868287016127ab565b92509250509250925092565b6000806020838503121561287857612877612447565b5b600083013567ffffffffffffffff8111156128965761289561244c565b5b6128a2858286016127ab565b92509250509250929050565b60008083601f8401126128c4576128c361279c565b5b8235905067ffffffffffffffff8111156128e1576128e06127a1565b5b6020830191508360208202830111156128fd576128fc6127a6565b5b9250929050565b60008083601f84011261291a5761291961279c565b5b8235905067ffffffffffffffff811115612937576129366127a1565b5b602083019150836020820283011115612953576129526127a6565b5b9250929050565b6000806000806040858703121561297457612973612447565b5b600085013567ffffffffffffffff8111156129925761299161244c565b5b61299e878288016128ae565b9450945050602085013567ffffffffffffffff8111156129c1576129c061244c565b5b6129cd87828801612904565b925092505092959194509250565b6129e4816124d6565b81146129ef57600080fd5b50565b600081359050612a01816129db565b92915050565b60008060408385031215612a1e57612a1d612447565b5b6000612a2c8582860161269d565b9250506020612a3d858286016129f2565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a848261255b565b810181811067ffffffffffffffff82111715612aa357612aa2612a4c565b5b80604052505050565b6000612ab661243d565b9050612ac28282612a7b565b919050565b600067ffffffffffffffff821115612ae257612ae1612a4c565b5b612aeb8261255b565b9050602081019050919050565b82818337600083830152505050565b6000612b1a612b1584612ac7565b612aac565b905082815260208101848484011115612b3657612b35612a47565b5b612b41848285612af8565b509392505050565b600082601f830112612b5e57612b5d61279c565b5b8135612b6e848260208601612b07565b91505092915050565b60008060008060808587031215612b9157612b90612447565b5b6000612b9f8782880161269d565b9450506020612bb08782880161269d565b9350506040612bc1878288016125e8565b925050606085013567ffffffffffffffff811115612be257612be161244c565b5b612bee87828801612b49565b91505092959194509250565b600080600060408486031215612c1357612c12612447565b5b6000612c218682870161269d565b935050602084013567ffffffffffffffff811115612c4257612c4161244c565b5b612c4e868287016127ab565b92509250509250925092565b60008060408385031215612c7157612c70612447565b5b6000612c7f8582860161269d565b9250506020612c908582860161269d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ce157607f821691505b60208210811415612cf557612cf4612c9a565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612d57602c83612517565b9150612d6282612cfb565b604082019050919050565b60006020820190508181036000830152612d8681612d4a565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612de9602183612517565b9150612df482612d8d565b604082019050919050565b60006020820190508181036000830152612e1881612ddc565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612e7b603883612517565b9150612e8682612e1f565b604082019050919050565b60006020820190508181036000830152612eaa81612e6e565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612f0d603183612517565b9150612f1882612eb1565b604082019050919050565b60006020820190508181036000830152612f3c81612f00565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f79602083612517565b9150612f8482612f43565b602082019050919050565b60006020820190508181036000830152612fa881612f6c565b9050919050565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b600061300b603083612517565b915061301682612faf565b604082019050919050565b6000602082019050818103600083015261303a81612ffe565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061309d602983612517565b91506130a882613041565b604082019050919050565b600060208201905081810360008301526130cc81613090565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061312f602a83612517565b915061313a826130d3565b604082019050919050565b6000602082019050818103600083015261315e81613122565b9050919050565b7f546f6b656e206261736520555249206973206c6f636b65640000000000000000600082015250565b600061319b601883612517565b91506131a682613165565b602082019050919050565b600060208201905081810360008301526131ca8161318e565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613207601083612517565b9150613212826131d1565b602082019050919050565b60006020820190508181036000830152613236816131fa565b9050919050565b7f4164647265737365732026207175616e7469746573206e6f7420657175616c2060008201527f6c656e6774680000000000000000000000000000000000000000000000000000602082015250565b6000613299602683612517565b91506132a48261323d565b604082019050919050565b600060208201905081810360008301526132c88161328c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b600080fd5b600080fd5b6000808335600160200384360303811261332a576133296132fe565b5b80840192508235915067ffffffffffffffff82111561334c5761334b613303565b5b60208301925060018202360383131561336857613367613308565b5b509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006133aa826125c7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133dd576133dc613370565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061341e601983612517565b9150613429826133e8565b602082019050919050565b6000602082019050818103600083015261344d81613411565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006134b0602f83612517565b91506134bb82613454565b604082019050919050565b600060208201905081810360008301526134df816134a3565b9050919050565b600081905092915050565b60006134fc8261250c565b61350681856134e6565b9350613516818560208601612528565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461354481612cc9565b61354e81866134e6565b94506001821660008114613569576001811461357a576135ad565b60ff198316865281860193506135ad565b61358385613522565b60005b838110156135a557815481890152600182019150602081019050613586565b838801955050505b50505092915050565b60006135c282856134f1565b91506135ce8284613537565b91508190509392505050565b7f4d697373696e6720617277656176652055524920706174680000000000000000600082015250565b6000613610601883612517565b915061361b826135da565b602082019050919050565b6000602082019050818103600083015261363f81613603565b9050919050565b6000613651826125c7565b915061365c836125c7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561369157613690613370565b5b828201905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136f8602683612517565b91506137038261369c565b604082019050919050565b60006020820190508181036000830152613727816136eb565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061378a602c83612517565b91506137958261372e565b604082019050919050565b600060208201905081810360008301526137b98161377d565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b600061381c602983612517565b9150613827826137c0565b604082019050919050565b6000602082019050818103600083015261384b8161380f565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006138ae602483612517565b91506138b982613852565b604082019050919050565b600060208201905081810360008301526138dd816138a1565b9050919050565b60006138ef826125c7565b91506138fa836125c7565b92508282101561390d5761390c613370565b5b828203905092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061394e601483612517565b915061395982613918565b602082019050919050565b6000602082019050818103600083015261397d81613941565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006139e0603283612517565b91506139eb82613984565b604082019050919050565b60006020820190508181036000830152613a0f816139d3565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613a3d82613a16565b613a478185613a21565b9350613a57818560208601612528565b613a608161255b565b840191505092915050565b6000608082019050613a80600083018761265c565b613a8d602083018661265c565b613a9a6040830185612772565b8181036060830152613aac8184613a32565b905095945050505050565b600081519050613ac68161247d565b92915050565b600060208284031215613ae257613ae1612447565b5b6000613af084828501613ab7565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613b2f602083612517565b9150613b3a82613af9565b602082019050919050565b60006020820190508181036000830152613b5e81613b22565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613b9b601c83612517565b9150613ba682613b65565b602082019050919050565b60006020820190508181036000830152613bca81613b8e565b905091905056fea26469706673582212200c7b70c0e12fcde8ebd0cc73328180326b45cb3cd1f0fa74f4aeae70733c51fb64736f6c634300080c0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000010467269656e6473206f6620416e617461000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003464f410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001468747470733a2f2f617277656176652e6e65742f000000000000000000000000

-----Decoded View---------------
Arg [0] : tokenName_ (string): Friends of Anata
Arg [1] : tokenSymbol_ (string): FOA
Arg [2] : tokenBaseURI_ (string): https://arweave.net/

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [4] : 467269656e6473206f6620416e61746100000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 464f410000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [8] : 68747470733a2f2f617277656176652e6e65742f000000000000000000000000


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.