ETH Price: $3,277.34 (-3.90%)
Gas: 19 Gwei

Token

NiftyPistol (PISTOL)
 

Overview

Max Total Supply

0 PISTOL

Holders

2,147

Market

Volume (24H)

0.0148 ETH

Min Price (24H)

$48.50 @ 0.014800 ETH

Max Price (24H)

$48.50 @ 0.014800 ETH
Balance
6 PISTOL
0x931d9fd3be017B6652838A219746D80D38BCE983
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

One of 10,000 legendary pistols created by the master gunsmith on a remote island in the metaverse, 10 of which he honored as relics. Each pistol is uniquely crafted and includes an image, a video, and a 3d model.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NiftyPistol

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : NiftyPistol.sol
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";

contract NiftyPistol is ERC721("NiftyPistol", "PISTOL"), Ownable {
    address private signer;
    string public baseURI = "http://nifty-island-pistol-drop-public.s3-website.us-east-2.amazonaws.com/";
    string private _contractMetadataURI = "pistolContract.json";

    constructor (address _signer) {
        signer = _signer;
    }

    function updateSigner(address newSigner) external onlyOwner {
        signer = newSigner;
    }

    /**
        in the extraBytes you can pass in a boolean to determine whether this is to
        be dropped or auctioned, and minting logic is hanlded accordingly
     */
    function mint(address to, uint256 tokenId, bytes memory extraBytes)
        external {
        (bool drop, bytes memory signature) = abi.decode(extraBytes, (bool, bytes));

        if (drop) {
            bytes32 hash = ECDSA.toEthSignedMessageHash(keccak256(abi.encodePacked(to, tokenId)));
            require(ECDSA.recover(hash, signature) == signer, "Signature failed to recover");
        } else {
            require(msg.sender == owner() || super.isApprovedForAll(owner(), msg.sender), "msg.sender is not authorized to mint");
        }

        _safeMint(to, tokenId);
    }

    function updateBaseURI(string memory newURI) external onlyOwner {
        baseURI = newURI;
    }

    function contractURI() public view returns (string memory) {
        string memory base = baseURI;
        return bytes(base).length > 0 ? string(abi.encodePacked(base, _contractMetadataURI)) : ""; 
    }

    function updateContractURI(string memory newURI) external onlyOwner {
        _contractMetadataURI = newURI;
    }

    function exists(uint256 tokenId) public view returns(bool) {
        return _exists(tokenId);
    }
    
    function _baseURI() internal view override returns(string memory) {
        return baseURI;
    }
}

File 2 of 12 : 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

File 3 of 12 : 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 4 of 12 : ECDSA.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return recover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return recover(hash, r, vs);
        } else {
            revert("ECDSA: invalid signature length");
        }
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return recover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`, `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        require(
            uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0,
            "ECDSA: invalid signature 's' value"
        );
        require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value");

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        require(signer != address(0), "ECDSA: invalid signature");

        return signer;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 5 of 12 : 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 6 of 12 : 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 7 of 12 : 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 8 of 12 : 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);
    }

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

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

File 9 of 12 : 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 10 of 12 : 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 11 of 12 : 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 12 of 12 : 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":"address","name":"_signer","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"extraBytes","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"updateContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newSigner","type":"address"}],"name":"updateSigner","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060800160405280604a815260200162004044604a913960089080519060200190620000359291906200028d565b506040518060400160405280601381526020017f706973746f6c436f6e74726163742e6a736f6e0000000000000000000000000081525060099080519060200190620000839291906200028d565b503480156200009157600080fd5b506040516200408e3803806200408e8339818101604052810190620000b7919062000354565b6040518060400160405280600b81526020017f4e69667479506973746f6c0000000000000000000000000000000000000000008152506040518060400160405280600681526020017f504953544f4c000000000000000000000000000000000000000000000000000081525081600090805190602001906200013b9291906200028d565b508060019080519060200190620001549291906200028d565b505050620001776200016b620001bf60201b60201c565b620001c760201b60201c565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000433565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200029b90620003b4565b90600052602060002090601f016020900481019282620002bf57600085556200030b565b82601f10620002da57805160ff19168380011785556200030b565b828001600101855582156200030b579182015b828111156200030a578251825591602001919060010190620002ed565b5b5090506200031a91906200031e565b5090565b5b80821115620003395760008160009055506001016200031f565b5090565b6000815190506200034e8162000419565b92915050565b6000602082840312156200036757600080fd5b600062000377848285016200033d565b91505092915050565b60006200038d8262000394565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620003cd57607f821691505b60208210811415620003e457620003e3620003ea565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b620004248162000380565b81146200043057600080fd5b50565b613c0180620004436000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c80637e5b1e24116100c3578063a7ecd37e1161007c578063a7ecd37e14610388578063b88d4fde146103a4578063c87b56dd146103c0578063e8a3d485146103f0578063e985e9c51461040e578063f2fde38b1461043e5761014d565b80637e5b1e24146102dc5780638da5cb5b146102f8578063931688cb1461031657806394d008ef1461033257806395d89b411461034e578063a22cb4651461036c5761014d565b806342842e0e1161011557806342842e0e146102085780634f558e79146102245780636352211e146102545780636c0360eb1461028457806370a08231146102a2578063715018a6146102d25761014d565b806301ffc9a71461015257806306fdde0314610182578063081812fc146101a0578063095ea7b3146101d057806323b872dd146101ec575b600080fd5b61016c6004803603810190610167919061273f565b61045a565b6040516101799190612dd3565b60405180910390f35b61018a61053c565b6040516101979190612e33565b60405180910390f35b6101ba60048036038101906101b591906127d2565b6105ce565b6040516101c79190612d6c565b60405180910390f35b6101ea60048036038101906101e59190612648565b610653565b005b61020660048036038101906102019190612542565b61076b565b005b610222600480360381019061021d9190612542565b6107cb565b005b61023e600480360381019061023991906127d2565b6107eb565b60405161024b9190612dd3565b60405180910390f35b61026e600480360381019061026991906127d2565b6107fd565b60405161027b9190612d6c565b60405180910390f35b61028c6108af565b6040516102999190612e33565b60405180910390f35b6102bc60048036038101906102b791906124dd565b61093d565b6040516102c99190613115565b60405180910390f35b6102da6109f5565b005b6102f660048036038101906102f19190612791565b610a7d565b005b610300610b13565b60405161030d9190612d6c565b60405180910390f35b610330600480360381019061032b9190612791565b610b3d565b005b61034c60048036038101906103479190612684565b610bd3565b005b610356610d67565b6040516103639190612e33565b60405180910390f35b6103866004803603810190610381919061260c565b610df9565b005b6103a2600480360381019061039d91906124dd565b610f7a565b005b6103be60048036038101906103b99190612591565b61103a565b005b6103da60048036038101906103d591906127d2565b61109c565b6040516103e79190612e33565b60405180910390f35b6103f8611143565b6040516104059190612e33565b60405180910390f35b61042860048036038101906104239190612506565b61121c565b6040516104359190612dd3565b60405180910390f35b610458600480360381019061045391906124dd565b6112b0565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061052557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105355750610534826113a8565b5b9050919050565b60606000805461054b90613397565b80601f016020809104026020016040519081016040528092919081815260200182805461057790613397565b80156105c45780601f10610599576101008083540402835291602001916105c4565b820191906000526020600020905b8154815290600101906020018083116105a757829003601f168201915b5050505050905090565b60006105d982611412565b610618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060f90613035565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061065e826107fd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c6906130b5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106ee61147e565b73ffffffffffffffffffffffffffffffffffffffff16148061071d575061071c8161071761147e565b61121c565b5b61075c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075390612f75565b60405180910390fd5b6107668383611486565b505050565b61077c61077661147e565b8261153f565b6107bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b2906130d5565b60405180910390fd5b6107c683838361161d565b505050565b6107e68383836040518060200160405280600081525061103a565b505050565b60006107f682611412565b9050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089d90612fb5565b60405180910390fd5b80915050919050565b600880546108bc90613397565b80601f01602080910402602001604051908101604052809291908181526020018280546108e890613397565b80156109355780601f1061090a57610100808354040283529160200191610935565b820191906000526020600020905b81548152906001019060200180831161091857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a590612f95565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109fd61147e565b73ffffffffffffffffffffffffffffffffffffffff16610a1b610b13565b73ffffffffffffffffffffffffffffffffffffffff1614610a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6890613055565b60405180910390fd5b610a7b6000611879565b565b610a8561147e565b73ffffffffffffffffffffffffffffffffffffffff16610aa3610b13565b73ffffffffffffffffffffffffffffffffffffffff1614610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af090613055565b60405180910390fd5b8060099080519060200190610b0f929190612284565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610b4561147e565b73ffffffffffffffffffffffffffffffffffffffff16610b63610b13565b73ffffffffffffffffffffffffffffffffffffffff1614610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb090613055565b60405180910390fd5b8060089080519060200190610bcf929190612284565b5050565b60008082806020019051810190610bea91906126eb565b915091508115610cc8576000610c278686604051602001610c0c929190612cd2565b6040516020818303038152906040528051906020012061193f565b9050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610c6c828461196f565b73ffffffffffffffffffffffffffffffffffffffff1614610cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb990612fd5565b60405180910390fd5b50610d56565b610cd0610b13565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610d165750610d15610d0f610b13565b3361121c565b5b610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c906130f5565b60405180910390fd5b5b610d608585611a1e565b5050505050565b606060018054610d7690613397565b80601f0160208091040260200160405190810160405280929190818152602001828054610da290613397565b8015610def5780601f10610dc457610100808354040283529160200191610def565b820191906000526020600020905b815481529060010190602001808311610dd257829003601f168201915b5050505050905090565b610e0161147e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6690612f15565b60405180910390fd5b8060056000610e7c61147e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f2961147e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f6e9190612dd3565b60405180910390a35050565b610f8261147e565b73ffffffffffffffffffffffffffffffffffffffff16610fa0610b13565b73ffffffffffffffffffffffffffffffffffffffff1614610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed90613055565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61104b61104561147e565b8361153f565b61108a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611081906130d5565b60405180910390fd5b61109684848484611a3c565b50505050565b60606110a782611412565b6110e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dd90613095565b60405180910390fd5b60006110f0611a98565b90506000815111611110576040518060200160405280600081525061113b565b8061111a84611b2a565b60405160200161112b929190612cfe565b6040516020818303038152906040525b915050919050565b606060006008805461115490613397565b80601f016020809104026020016040519081016040528092919081815260200182805461118090613397565b80156111cd5780601f106111a2576101008083540402835291602001916111cd565b820191906000526020600020905b8154815290600101906020018083116111b057829003601f168201915b5050505050905060008151116111f25760405180602001604052806000815250611216565b806009604051602001611206929190612d22565b6040516020818303038152906040525b91505090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112b861147e565b73ffffffffffffffffffffffffffffffffffffffff166112d6610b13565b73ffffffffffffffffffffffffffffffffffffffff161461132c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132390613055565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561139c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139390612eb5565b60405180910390fd5b6113a581611879565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166114f9836107fd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061154a82611412565b611589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158090612f55565b60405180910390fd5b6000611594836107fd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061160357508373ffffffffffffffffffffffffffffffffffffffff166115eb846105ce565b73ffffffffffffffffffffffffffffffffffffffff16145b806116145750611613818561121c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661163d826107fd565b73ffffffffffffffffffffffffffffffffffffffff1614611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a90613075565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa90612ef5565b60405180910390fd5b61170e838383611cd7565b611719600082611486565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117699190613296565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117c0919061320f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000816040516020016119529190612d46565b604051602081830303815290604052805190602001209050919050565b60006041825114156119ae5760008060006020850151925060408501519150606085015160001a90506119a486828585611cdc565b9350505050611a18565b6040825114156119dd5760008060208401519150604084015190506119d4858383611e67565b92505050611a18565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0f90612e75565b60405180910390fd5b92915050565b611a38828260405180602001604052806000815250611eb1565b5050565b611a4784848461161d565b611a5384848484611f0c565b611a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8990612e95565b60405180910390fd5b50505050565b606060088054611aa790613397565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad390613397565b8015611b205780601f10611af557610100808354040283529160200191611b20565b820191906000526020600020905b815481529060010190602001808311611b0357829003601f168201915b5050505050905090565b60606000821415611b72576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611cd2565b600082905060005b60008214611ba4578080611b8d906133fa565b915050600a82611b9d9190613265565b9150611b7a565b60008167ffffffffffffffff811115611be6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c185781602001600182028036833780820191505090505b5090505b60008514611ccb57600182611c319190613296565b9150600a85611c40919061347b565b6030611c4c919061320f565b60f81b818381518110611c88577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611cc49190613265565b9450611c1c565b8093505050505b919050565b505050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08260001c1115611d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3b90612f35565b60405180910390fd5b601b8460ff161480611d595750601c8460ff16145b611d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f90612ff5565b60405180910390fd5b600060018686868660405160008152602001604052604051611dbd9493929190612dee565b6020604051602081039080840390855afa158015611ddf573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5290612e55565b60405180910390fd5b80915050949350505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84169150601b8460ff1c019050611ea686828785611cdc565b925050509392505050565b611ebb83836120a3565b611ec86000848484611f0c565b611f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efe90612e95565b60405180910390fd5b505050565b6000611f2d8473ffffffffffffffffffffffffffffffffffffffff16612271565b15612096578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f5661147e565b8786866040518563ffffffff1660e01b8152600401611f789493929190612d87565b602060405180830381600087803b158015611f9257600080fd5b505af1925050508015611fc357506040513d601f19601f82011682018060405250810190611fc09190612768565b60015b612046573d8060008114611ff3576040519150601f19603f3d011682016040523d82523d6000602084013e611ff8565b606091505b5060008151141561203e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203590612e95565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061209b565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210a90613015565b60405180910390fd5b61211c81611412565b1561215c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215390612ed5565b60405180910390fd5b61216860008383611cd7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121b8919061320f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461229090613397565b90600052602060002090601f0160209004810192826122b257600085556122f9565b82601f106122cb57805160ff19168380011785556122f9565b828001600101855582156122f9579182015b828111156122f85782518255916020019190600101906122dd565b5b509050612306919061230a565b5090565b5b8082111561232357600081600090555060010161230b565b5090565b600061233a61233584613155565b613130565b90508281526020810184848401111561235257600080fd5b61235d848285613355565b509392505050565b600061237861237384613155565b613130565b90508281526020810184848401111561239057600080fd5b61239b848285613364565b509392505050565b60006123b66123b184613186565b613130565b9050828152602081018484840111156123ce57600080fd5b6123d9848285613355565b509392505050565b6000813590506123f081613b6f565b92915050565b60008135905061240581613b86565b92915050565b60008151905061241a81613b86565b92915050565b60008135905061242f81613b9d565b92915050565b60008151905061244481613b9d565b92915050565b600082601f83011261245b57600080fd5b813561246b848260208601612327565b91505092915050565b600082601f83011261248557600080fd5b8151612495848260208601612365565b91505092915050565b600082601f8301126124af57600080fd5b81356124bf8482602086016123a3565b91505092915050565b6000813590506124d781613bb4565b92915050565b6000602082840312156124ef57600080fd5b60006124fd848285016123e1565b91505092915050565b6000806040838503121561251957600080fd5b6000612527858286016123e1565b9250506020612538858286016123e1565b9150509250929050565b60008060006060848603121561255757600080fd5b6000612565868287016123e1565b9350506020612576868287016123e1565b9250506040612587868287016124c8565b9150509250925092565b600080600080608085870312156125a757600080fd5b60006125b5878288016123e1565b94505060206125c6878288016123e1565b93505060406125d7878288016124c8565b925050606085013567ffffffffffffffff8111156125f457600080fd5b6126008782880161244a565b91505092959194509250565b6000806040838503121561261f57600080fd5b600061262d858286016123e1565b925050602061263e858286016123f6565b9150509250929050565b6000806040838503121561265b57600080fd5b6000612669858286016123e1565b925050602061267a858286016124c8565b9150509250929050565b60008060006060848603121561269957600080fd5b60006126a7868287016123e1565b93505060206126b8868287016124c8565b925050604084013567ffffffffffffffff8111156126d557600080fd5b6126e18682870161244a565b9150509250925092565b600080604083850312156126fe57600080fd5b600061270c8582860161240b565b925050602083015167ffffffffffffffff81111561272957600080fd5b61273585828601612474565b9150509250929050565b60006020828403121561275157600080fd5b600061275f84828501612420565b91505092915050565b60006020828403121561277a57600080fd5b600061278884828501612435565b91505092915050565b6000602082840312156127a357600080fd5b600082013567ffffffffffffffff8111156127bd57600080fd5b6127c98482850161249e565b91505092915050565b6000602082840312156127e457600080fd5b60006127f2848285016124c8565b91505092915050565b612804816132ca565b82525050565b61281b612816826132ca565b613443565b82525050565b61282a816132dc565b82525050565b612839816132e8565b82525050565b61285061284b826132e8565b613455565b82525050565b6000612861826131cc565b61286b81856131e2565b935061287b818560208601613364565b61288481613568565b840191505092915050565b600061289a826131d7565b6128a481856131f3565b93506128b4818560208601613364565b6128bd81613568565b840191505092915050565b60006128d3826131d7565b6128dd8185613204565b93506128ed818560208601613364565b80840191505092915050565b6000815461290681613397565b6129108186613204565b9450600182166000811461292b576001811461293c5761296f565b60ff1983168652818601935061296f565b612945856131b7565b60005b8381101561296757815481890152600182019150602081019050612948565b838801955050505b50505092915050565b60006129856018836131f3565b915061299082613586565b602082019050919050565b60006129a8601f836131f3565b91506129b3826135af565b602082019050919050565b60006129cb601c83613204565b91506129d6826135d8565b601c82019050919050565b60006129ee6032836131f3565b91506129f982613601565b604082019050919050565b6000612a116026836131f3565b9150612a1c82613650565b604082019050919050565b6000612a34601c836131f3565b9150612a3f8261369f565b602082019050919050565b6000612a576024836131f3565b9150612a62826136c8565b604082019050919050565b6000612a7a6019836131f3565b9150612a8582613717565b602082019050919050565b6000612a9d6022836131f3565b9150612aa882613740565b604082019050919050565b6000612ac0602c836131f3565b9150612acb8261378f565b604082019050919050565b6000612ae36038836131f3565b9150612aee826137de565b604082019050919050565b6000612b06602a836131f3565b9150612b118261382d565b604082019050919050565b6000612b296029836131f3565b9150612b348261387c565b604082019050919050565b6000612b4c601b836131f3565b9150612b57826138cb565b602082019050919050565b6000612b6f6022836131f3565b9150612b7a826138f4565b604082019050919050565b6000612b926020836131f3565b9150612b9d82613943565b602082019050919050565b6000612bb5602c836131f3565b9150612bc08261396c565b604082019050919050565b6000612bd86020836131f3565b9150612be3826139bb565b602082019050919050565b6000612bfb6029836131f3565b9150612c06826139e4565b604082019050919050565b6000612c1e602f836131f3565b9150612c2982613a33565b604082019050919050565b6000612c416021836131f3565b9150612c4c82613a82565b604082019050919050565b6000612c646031836131f3565b9150612c6f82613ad1565b604082019050919050565b6000612c876024836131f3565b9150612c9282613b20565b604082019050919050565b612ca68161333e565b82525050565b612cbd612cb88261333e565b613471565b82525050565b612ccc81613348565b82525050565b6000612cde828561280a565b601482019150612cee8284612cac565b6020820191508190509392505050565b6000612d0a82856128c8565b9150612d1682846128c8565b91508190509392505050565b6000612d2e82856128c8565b9150612d3a82846128f9565b91508190509392505050565b6000612d51826129be565b9150612d5d828461283f565b60208201915081905092915050565b6000602082019050612d8160008301846127fb565b92915050565b6000608082019050612d9c60008301876127fb565b612da960208301866127fb565b612db66040830185612c9d565b8181036060830152612dc88184612856565b905095945050505050565b6000602082019050612de86000830184612821565b92915050565b6000608082019050612e036000830187612830565b612e106020830186612cc3565b612e1d6040830185612830565b612e2a6060830184612830565b95945050505050565b60006020820190508181036000830152612e4d818461288f565b905092915050565b60006020820190508181036000830152612e6e81612978565b9050919050565b60006020820190508181036000830152612e8e8161299b565b9050919050565b60006020820190508181036000830152612eae816129e1565b9050919050565b60006020820190508181036000830152612ece81612a04565b9050919050565b60006020820190508181036000830152612eee81612a27565b9050919050565b60006020820190508181036000830152612f0e81612a4a565b9050919050565b60006020820190508181036000830152612f2e81612a6d565b9050919050565b60006020820190508181036000830152612f4e81612a90565b9050919050565b60006020820190508181036000830152612f6e81612ab3565b9050919050565b60006020820190508181036000830152612f8e81612ad6565b9050919050565b60006020820190508181036000830152612fae81612af9565b9050919050565b60006020820190508181036000830152612fce81612b1c565b9050919050565b60006020820190508181036000830152612fee81612b3f565b9050919050565b6000602082019050818103600083015261300e81612b62565b9050919050565b6000602082019050818103600083015261302e81612b85565b9050919050565b6000602082019050818103600083015261304e81612ba8565b9050919050565b6000602082019050818103600083015261306e81612bcb565b9050919050565b6000602082019050818103600083015261308e81612bee565b9050919050565b600060208201905081810360008301526130ae81612c11565b9050919050565b600060208201905081810360008301526130ce81612c34565b9050919050565b600060208201905081810360008301526130ee81612c57565b9050919050565b6000602082019050818103600083015261310e81612c7a565b9050919050565b600060208201905061312a6000830184612c9d565b92915050565b600061313a61314b565b905061314682826133c9565b919050565b6000604051905090565b600067ffffffffffffffff8211156131705761316f613539565b5b61317982613568565b9050602081019050919050565b600067ffffffffffffffff8211156131a1576131a0613539565b5b6131aa82613568565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061321a8261333e565b91506132258361333e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561325a576132596134ac565b5b828201905092915050565b60006132708261333e565b915061327b8361333e565b92508261328b5761328a6134db565b5b828204905092915050565b60006132a18261333e565b91506132ac8361333e565b9250828210156132bf576132be6134ac565b5b828203905092915050565b60006132d58261331e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613382578082015181840152602081019050613367565b83811115613391576000848401525b50505050565b600060028204905060018216806133af57607f821691505b602082108114156133c3576133c261350a565b5b50919050565b6133d282613568565b810181811067ffffffffffffffff821117156133f1576133f0613539565b5b80604052505050565b60006134058261333e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613438576134376134ac565b5b600182019050919050565b600061344e8261345f565b9050919050565b6000819050919050565b600061346a82613579565b9050919050565b6000819050919050565b60006134868261333e565b91506134918361333e565b9250826134a1576134a06134db565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f5369676e6174757265206661696c656420746f207265636f7665720000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d73672e73656e646572206973206e6f7420617574686f72697a656420746f2060008201527f6d696e7400000000000000000000000000000000000000000000000000000000602082015250565b613b78816132ca565b8114613b8357600080fd5b50565b613b8f816132dc565b8114613b9a57600080fd5b50565b613ba6816132f2565b8114613bb157600080fd5b50565b613bbd8161333e565b8114613bc857600080fd5b5056fea2646970667358221220bd9b97a5c63d7b022bfb5ac671de1f1cf395b6facac16ef719414ae4ee11ab4c64736f6c63430008030033687474703a2f2f6e696674792d69736c616e642d706973746f6c2d64726f702d7075626c69632e73332d776562736974652e75732d656173742d322e616d617a6f6e6177732e636f6d2f0000000000000000000000009ed078f2015e2bc8e6e4b36dbac3689bbfb9bad5

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c80637e5b1e24116100c3578063a7ecd37e1161007c578063a7ecd37e14610388578063b88d4fde146103a4578063c87b56dd146103c0578063e8a3d485146103f0578063e985e9c51461040e578063f2fde38b1461043e5761014d565b80637e5b1e24146102dc5780638da5cb5b146102f8578063931688cb1461031657806394d008ef1461033257806395d89b411461034e578063a22cb4651461036c5761014d565b806342842e0e1161011557806342842e0e146102085780634f558e79146102245780636352211e146102545780636c0360eb1461028457806370a08231146102a2578063715018a6146102d25761014d565b806301ffc9a71461015257806306fdde0314610182578063081812fc146101a0578063095ea7b3146101d057806323b872dd146101ec575b600080fd5b61016c6004803603810190610167919061273f565b61045a565b6040516101799190612dd3565b60405180910390f35b61018a61053c565b6040516101979190612e33565b60405180910390f35b6101ba60048036038101906101b591906127d2565b6105ce565b6040516101c79190612d6c565b60405180910390f35b6101ea60048036038101906101e59190612648565b610653565b005b61020660048036038101906102019190612542565b61076b565b005b610222600480360381019061021d9190612542565b6107cb565b005b61023e600480360381019061023991906127d2565b6107eb565b60405161024b9190612dd3565b60405180910390f35b61026e600480360381019061026991906127d2565b6107fd565b60405161027b9190612d6c565b60405180910390f35b61028c6108af565b6040516102999190612e33565b60405180910390f35b6102bc60048036038101906102b791906124dd565b61093d565b6040516102c99190613115565b60405180910390f35b6102da6109f5565b005b6102f660048036038101906102f19190612791565b610a7d565b005b610300610b13565b60405161030d9190612d6c565b60405180910390f35b610330600480360381019061032b9190612791565b610b3d565b005b61034c60048036038101906103479190612684565b610bd3565b005b610356610d67565b6040516103639190612e33565b60405180910390f35b6103866004803603810190610381919061260c565b610df9565b005b6103a2600480360381019061039d91906124dd565b610f7a565b005b6103be60048036038101906103b99190612591565b61103a565b005b6103da60048036038101906103d591906127d2565b61109c565b6040516103e79190612e33565b60405180910390f35b6103f8611143565b6040516104059190612e33565b60405180910390f35b61042860048036038101906104239190612506565b61121c565b6040516104359190612dd3565b60405180910390f35b610458600480360381019061045391906124dd565b6112b0565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061052557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105355750610534826113a8565b5b9050919050565b60606000805461054b90613397565b80601f016020809104026020016040519081016040528092919081815260200182805461057790613397565b80156105c45780601f10610599576101008083540402835291602001916105c4565b820191906000526020600020905b8154815290600101906020018083116105a757829003601f168201915b5050505050905090565b60006105d982611412565b610618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060f90613035565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061065e826107fd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c6906130b5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106ee61147e565b73ffffffffffffffffffffffffffffffffffffffff16148061071d575061071c8161071761147e565b61121c565b5b61075c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075390612f75565b60405180910390fd5b6107668383611486565b505050565b61077c61077661147e565b8261153f565b6107bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b2906130d5565b60405180910390fd5b6107c683838361161d565b505050565b6107e68383836040518060200160405280600081525061103a565b505050565b60006107f682611412565b9050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089d90612fb5565b60405180910390fd5b80915050919050565b600880546108bc90613397565b80601f01602080910402602001604051908101604052809291908181526020018280546108e890613397565b80156109355780601f1061090a57610100808354040283529160200191610935565b820191906000526020600020905b81548152906001019060200180831161091857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a590612f95565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109fd61147e565b73ffffffffffffffffffffffffffffffffffffffff16610a1b610b13565b73ffffffffffffffffffffffffffffffffffffffff1614610a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6890613055565b60405180910390fd5b610a7b6000611879565b565b610a8561147e565b73ffffffffffffffffffffffffffffffffffffffff16610aa3610b13565b73ffffffffffffffffffffffffffffffffffffffff1614610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af090613055565b60405180910390fd5b8060099080519060200190610b0f929190612284565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610b4561147e565b73ffffffffffffffffffffffffffffffffffffffff16610b63610b13565b73ffffffffffffffffffffffffffffffffffffffff1614610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb090613055565b60405180910390fd5b8060089080519060200190610bcf929190612284565b5050565b60008082806020019051810190610bea91906126eb565b915091508115610cc8576000610c278686604051602001610c0c929190612cd2565b6040516020818303038152906040528051906020012061193f565b9050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610c6c828461196f565b73ffffffffffffffffffffffffffffffffffffffff1614610cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb990612fd5565b60405180910390fd5b50610d56565b610cd0610b13565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610d165750610d15610d0f610b13565b3361121c565b5b610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c906130f5565b60405180910390fd5b5b610d608585611a1e565b5050505050565b606060018054610d7690613397565b80601f0160208091040260200160405190810160405280929190818152602001828054610da290613397565b8015610def5780601f10610dc457610100808354040283529160200191610def565b820191906000526020600020905b815481529060010190602001808311610dd257829003601f168201915b5050505050905090565b610e0161147e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6690612f15565b60405180910390fd5b8060056000610e7c61147e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f2961147e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f6e9190612dd3565b60405180910390a35050565b610f8261147e565b73ffffffffffffffffffffffffffffffffffffffff16610fa0610b13565b73ffffffffffffffffffffffffffffffffffffffff1614610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed90613055565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61104b61104561147e565b8361153f565b61108a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611081906130d5565b60405180910390fd5b61109684848484611a3c565b50505050565b60606110a782611412565b6110e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dd90613095565b60405180910390fd5b60006110f0611a98565b90506000815111611110576040518060200160405280600081525061113b565b8061111a84611b2a565b60405160200161112b929190612cfe565b6040516020818303038152906040525b915050919050565b606060006008805461115490613397565b80601f016020809104026020016040519081016040528092919081815260200182805461118090613397565b80156111cd5780601f106111a2576101008083540402835291602001916111cd565b820191906000526020600020905b8154815290600101906020018083116111b057829003601f168201915b5050505050905060008151116111f25760405180602001604052806000815250611216565b806009604051602001611206929190612d22565b6040516020818303038152906040525b91505090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112b861147e565b73ffffffffffffffffffffffffffffffffffffffff166112d6610b13565b73ffffffffffffffffffffffffffffffffffffffff161461132c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132390613055565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561139c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139390612eb5565b60405180910390fd5b6113a581611879565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166114f9836107fd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061154a82611412565b611589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158090612f55565b60405180910390fd5b6000611594836107fd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061160357508373ffffffffffffffffffffffffffffffffffffffff166115eb846105ce565b73ffffffffffffffffffffffffffffffffffffffff16145b806116145750611613818561121c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661163d826107fd565b73ffffffffffffffffffffffffffffffffffffffff1614611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a90613075565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa90612ef5565b60405180910390fd5b61170e838383611cd7565b611719600082611486565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117699190613296565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117c0919061320f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000816040516020016119529190612d46565b604051602081830303815290604052805190602001209050919050565b60006041825114156119ae5760008060006020850151925060408501519150606085015160001a90506119a486828585611cdc565b9350505050611a18565b6040825114156119dd5760008060208401519150604084015190506119d4858383611e67565b92505050611a18565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0f90612e75565b60405180910390fd5b92915050565b611a38828260405180602001604052806000815250611eb1565b5050565b611a4784848461161d565b611a5384848484611f0c565b611a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8990612e95565b60405180910390fd5b50505050565b606060088054611aa790613397565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad390613397565b8015611b205780601f10611af557610100808354040283529160200191611b20565b820191906000526020600020905b815481529060010190602001808311611b0357829003601f168201915b5050505050905090565b60606000821415611b72576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611cd2565b600082905060005b60008214611ba4578080611b8d906133fa565b915050600a82611b9d9190613265565b9150611b7a565b60008167ffffffffffffffff811115611be6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c185781602001600182028036833780820191505090505b5090505b60008514611ccb57600182611c319190613296565b9150600a85611c40919061347b565b6030611c4c919061320f565b60f81b818381518110611c88577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611cc49190613265565b9450611c1c565b8093505050505b919050565b505050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08260001c1115611d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3b90612f35565b60405180910390fd5b601b8460ff161480611d595750601c8460ff16145b611d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f90612ff5565b60405180910390fd5b600060018686868660405160008152602001604052604051611dbd9493929190612dee565b6020604051602081039080840390855afa158015611ddf573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5290612e55565b60405180910390fd5b80915050949350505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84169150601b8460ff1c019050611ea686828785611cdc565b925050509392505050565b611ebb83836120a3565b611ec86000848484611f0c565b611f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efe90612e95565b60405180910390fd5b505050565b6000611f2d8473ffffffffffffffffffffffffffffffffffffffff16612271565b15612096578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f5661147e565b8786866040518563ffffffff1660e01b8152600401611f789493929190612d87565b602060405180830381600087803b158015611f9257600080fd5b505af1925050508015611fc357506040513d601f19601f82011682018060405250810190611fc09190612768565b60015b612046573d8060008114611ff3576040519150601f19603f3d011682016040523d82523d6000602084013e611ff8565b606091505b5060008151141561203e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203590612e95565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061209b565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210a90613015565b60405180910390fd5b61211c81611412565b1561215c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215390612ed5565b60405180910390fd5b61216860008383611cd7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121b8919061320f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461229090613397565b90600052602060002090601f0160209004810192826122b257600085556122f9565b82601f106122cb57805160ff19168380011785556122f9565b828001600101855582156122f9579182015b828111156122f85782518255916020019190600101906122dd565b5b509050612306919061230a565b5090565b5b8082111561232357600081600090555060010161230b565b5090565b600061233a61233584613155565b613130565b90508281526020810184848401111561235257600080fd5b61235d848285613355565b509392505050565b600061237861237384613155565b613130565b90508281526020810184848401111561239057600080fd5b61239b848285613364565b509392505050565b60006123b66123b184613186565b613130565b9050828152602081018484840111156123ce57600080fd5b6123d9848285613355565b509392505050565b6000813590506123f081613b6f565b92915050565b60008135905061240581613b86565b92915050565b60008151905061241a81613b86565b92915050565b60008135905061242f81613b9d565b92915050565b60008151905061244481613b9d565b92915050565b600082601f83011261245b57600080fd5b813561246b848260208601612327565b91505092915050565b600082601f83011261248557600080fd5b8151612495848260208601612365565b91505092915050565b600082601f8301126124af57600080fd5b81356124bf8482602086016123a3565b91505092915050565b6000813590506124d781613bb4565b92915050565b6000602082840312156124ef57600080fd5b60006124fd848285016123e1565b91505092915050565b6000806040838503121561251957600080fd5b6000612527858286016123e1565b9250506020612538858286016123e1565b9150509250929050565b60008060006060848603121561255757600080fd5b6000612565868287016123e1565b9350506020612576868287016123e1565b9250506040612587868287016124c8565b9150509250925092565b600080600080608085870312156125a757600080fd5b60006125b5878288016123e1565b94505060206125c6878288016123e1565b93505060406125d7878288016124c8565b925050606085013567ffffffffffffffff8111156125f457600080fd5b6126008782880161244a565b91505092959194509250565b6000806040838503121561261f57600080fd5b600061262d858286016123e1565b925050602061263e858286016123f6565b9150509250929050565b6000806040838503121561265b57600080fd5b6000612669858286016123e1565b925050602061267a858286016124c8565b9150509250929050565b60008060006060848603121561269957600080fd5b60006126a7868287016123e1565b93505060206126b8868287016124c8565b925050604084013567ffffffffffffffff8111156126d557600080fd5b6126e18682870161244a565b9150509250925092565b600080604083850312156126fe57600080fd5b600061270c8582860161240b565b925050602083015167ffffffffffffffff81111561272957600080fd5b61273585828601612474565b9150509250929050565b60006020828403121561275157600080fd5b600061275f84828501612420565b91505092915050565b60006020828403121561277a57600080fd5b600061278884828501612435565b91505092915050565b6000602082840312156127a357600080fd5b600082013567ffffffffffffffff8111156127bd57600080fd5b6127c98482850161249e565b91505092915050565b6000602082840312156127e457600080fd5b60006127f2848285016124c8565b91505092915050565b612804816132ca565b82525050565b61281b612816826132ca565b613443565b82525050565b61282a816132dc565b82525050565b612839816132e8565b82525050565b61285061284b826132e8565b613455565b82525050565b6000612861826131cc565b61286b81856131e2565b935061287b818560208601613364565b61288481613568565b840191505092915050565b600061289a826131d7565b6128a481856131f3565b93506128b4818560208601613364565b6128bd81613568565b840191505092915050565b60006128d3826131d7565b6128dd8185613204565b93506128ed818560208601613364565b80840191505092915050565b6000815461290681613397565b6129108186613204565b9450600182166000811461292b576001811461293c5761296f565b60ff1983168652818601935061296f565b612945856131b7565b60005b8381101561296757815481890152600182019150602081019050612948565b838801955050505b50505092915050565b60006129856018836131f3565b915061299082613586565b602082019050919050565b60006129a8601f836131f3565b91506129b3826135af565b602082019050919050565b60006129cb601c83613204565b91506129d6826135d8565b601c82019050919050565b60006129ee6032836131f3565b91506129f982613601565b604082019050919050565b6000612a116026836131f3565b9150612a1c82613650565b604082019050919050565b6000612a34601c836131f3565b9150612a3f8261369f565b602082019050919050565b6000612a576024836131f3565b9150612a62826136c8565b604082019050919050565b6000612a7a6019836131f3565b9150612a8582613717565b602082019050919050565b6000612a9d6022836131f3565b9150612aa882613740565b604082019050919050565b6000612ac0602c836131f3565b9150612acb8261378f565b604082019050919050565b6000612ae36038836131f3565b9150612aee826137de565b604082019050919050565b6000612b06602a836131f3565b9150612b118261382d565b604082019050919050565b6000612b296029836131f3565b9150612b348261387c565b604082019050919050565b6000612b4c601b836131f3565b9150612b57826138cb565b602082019050919050565b6000612b6f6022836131f3565b9150612b7a826138f4565b604082019050919050565b6000612b926020836131f3565b9150612b9d82613943565b602082019050919050565b6000612bb5602c836131f3565b9150612bc08261396c565b604082019050919050565b6000612bd86020836131f3565b9150612be3826139bb565b602082019050919050565b6000612bfb6029836131f3565b9150612c06826139e4565b604082019050919050565b6000612c1e602f836131f3565b9150612c2982613a33565b604082019050919050565b6000612c416021836131f3565b9150612c4c82613a82565b604082019050919050565b6000612c646031836131f3565b9150612c6f82613ad1565b604082019050919050565b6000612c876024836131f3565b9150612c9282613b20565b604082019050919050565b612ca68161333e565b82525050565b612cbd612cb88261333e565b613471565b82525050565b612ccc81613348565b82525050565b6000612cde828561280a565b601482019150612cee8284612cac565b6020820191508190509392505050565b6000612d0a82856128c8565b9150612d1682846128c8565b91508190509392505050565b6000612d2e82856128c8565b9150612d3a82846128f9565b91508190509392505050565b6000612d51826129be565b9150612d5d828461283f565b60208201915081905092915050565b6000602082019050612d8160008301846127fb565b92915050565b6000608082019050612d9c60008301876127fb565b612da960208301866127fb565b612db66040830185612c9d565b8181036060830152612dc88184612856565b905095945050505050565b6000602082019050612de86000830184612821565b92915050565b6000608082019050612e036000830187612830565b612e106020830186612cc3565b612e1d6040830185612830565b612e2a6060830184612830565b95945050505050565b60006020820190508181036000830152612e4d818461288f565b905092915050565b60006020820190508181036000830152612e6e81612978565b9050919050565b60006020820190508181036000830152612e8e8161299b565b9050919050565b60006020820190508181036000830152612eae816129e1565b9050919050565b60006020820190508181036000830152612ece81612a04565b9050919050565b60006020820190508181036000830152612eee81612a27565b9050919050565b60006020820190508181036000830152612f0e81612a4a565b9050919050565b60006020820190508181036000830152612f2e81612a6d565b9050919050565b60006020820190508181036000830152612f4e81612a90565b9050919050565b60006020820190508181036000830152612f6e81612ab3565b9050919050565b60006020820190508181036000830152612f8e81612ad6565b9050919050565b60006020820190508181036000830152612fae81612af9565b9050919050565b60006020820190508181036000830152612fce81612b1c565b9050919050565b60006020820190508181036000830152612fee81612b3f565b9050919050565b6000602082019050818103600083015261300e81612b62565b9050919050565b6000602082019050818103600083015261302e81612b85565b9050919050565b6000602082019050818103600083015261304e81612ba8565b9050919050565b6000602082019050818103600083015261306e81612bcb565b9050919050565b6000602082019050818103600083015261308e81612bee565b9050919050565b600060208201905081810360008301526130ae81612c11565b9050919050565b600060208201905081810360008301526130ce81612c34565b9050919050565b600060208201905081810360008301526130ee81612c57565b9050919050565b6000602082019050818103600083015261310e81612c7a565b9050919050565b600060208201905061312a6000830184612c9d565b92915050565b600061313a61314b565b905061314682826133c9565b919050565b6000604051905090565b600067ffffffffffffffff8211156131705761316f613539565b5b61317982613568565b9050602081019050919050565b600067ffffffffffffffff8211156131a1576131a0613539565b5b6131aa82613568565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061321a8261333e565b91506132258361333e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561325a576132596134ac565b5b828201905092915050565b60006132708261333e565b915061327b8361333e565b92508261328b5761328a6134db565b5b828204905092915050565b60006132a18261333e565b91506132ac8361333e565b9250828210156132bf576132be6134ac565b5b828203905092915050565b60006132d58261331e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613382578082015181840152602081019050613367565b83811115613391576000848401525b50505050565b600060028204905060018216806133af57607f821691505b602082108114156133c3576133c261350a565b5b50919050565b6133d282613568565b810181811067ffffffffffffffff821117156133f1576133f0613539565b5b80604052505050565b60006134058261333e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613438576134376134ac565b5b600182019050919050565b600061344e8261345f565b9050919050565b6000819050919050565b600061346a82613579565b9050919050565b6000819050919050565b60006134868261333e565b91506134918361333e565b9250826134a1576134a06134db565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f5369676e6174757265206661696c656420746f207265636f7665720000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d73672e73656e646572206973206e6f7420617574686f72697a656420746f2060008201527f6d696e7400000000000000000000000000000000000000000000000000000000602082015250565b613b78816132ca565b8114613b8357600080fd5b50565b613b8f816132dc565b8114613b9a57600080fd5b50565b613ba6816132f2565b8114613bb157600080fd5b50565b613bbd8161333e565b8114613bc857600080fd5b5056fea2646970667358221220bd9b97a5c63d7b022bfb5ac671de1f1cf395b6facac16ef719414ae4ee11ab4c64736f6c63430008030033

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

0000000000000000000000009ed078f2015e2bc8e6e4b36dbac3689bbfb9bad5

-----Decoded View---------------
Arg [0] : _signer (address): 0x9ED078f2015e2BC8E6e4b36dbAC3689BbfB9bAd5

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000009ed078f2015e2bc8e6e4b36dbac3689bbfb9bad5


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.