ETH Price: $3,170.04 (-7.90%)
Gas: 3 Gwei

Token

The Extraordinary Crystal (CRYSTALS)
 

Overview

Max Total Supply

0 CRYSTALS

Holders

36

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
goatwith3horns.eth
Balance
1 CRYSTALS
0xdb0df63435a64132ddf7c626011cb3bb370150cb
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
ExtraordinaryCrystal

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : GemContract-StandardImplementation.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

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

contract ExtraordinaryCrystal is ERC721, Pausable, Ownable, ERC721Burnable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIdCounter;

    uint alphaToken;

    constructor() ERC721("The Extraordinary Crystal", "CRYSTALS") {
        safeMint(msg.sender);
    }

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

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

    function safeMint(address to) internal {
        uint256 tokenId = _tokenIdCounter.current();
        _tokenIdCounter.increment();
        _safeMint(to, tokenId);
    }

    function _transfer(address from, address to, uint256 tokenId) internal virtual override {
        if (tokenId == alphaToken && from != owner()) {
            require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
            require(to != address(0), "ERC721: transfer to the zero address");

            safeMint(to);
        } else {
            super._transfer(from, to, tokenId);
        }
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal whenNotPaused override {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
        require(_exists(tokenId));

        string memory name = "Ordinary Crystal";
        string memory imageUrl;
        string memory animUrl;
        string memory alphaStatus = "False";
        string memory descPrefix = "The Extraordinary Crystal has been sold to the highest bidder - they now control the collection.";
        if (ownerOf(alphaToken) == owner()) {
            descPrefix = "The Extraordinary Crystal will be sold to the highest bidder - they will control the collection.";
        }

        if (alphaToken == tokenId) {
            name = "Extraordinary Crystal";
            alphaStatus = "True";
            imageUrl = "https://gateway.pinata.cloud/ipfs/QmNTuyMThb76eKZDFUGDn4ZmfaUtLTccTfmhR32dnxfa4W";
            animUrl = "https://gateway.pinata.cloud/ipfs/QmQvSfXc2hLPrnoNGjbR3BWEfaZ7XVYMmt6Dhj2JRq3PLB";
        } else {
            uint c = tokenId % 5;
            if (c == 0) {
                imageUrl = "https://gateway.pinata.cloud/ipfs/QmYhDdz9qsea1sZhj1nV6WGZPuKyJjdnyqPViKNCFX3mAE";
                animUrl = "https://gateway.pinata.cloud/ipfs/QmVYpN2ov7RjjCvCpuMZFyym2hEXuv4QA3gDsecdNLKeAM";
            } else if (c == 1) {
                imageUrl = "https://gateway.pinata.cloud/ipfs/QmWXSKRJBnRLk56FqTDyMiiewwya4yv7qMW5agUe1obAZN";
                animUrl = "https://gateway.pinata.cloud/ipfs/QmUjVWZJrh7W3utTsNQpdEkxTW7W9tYF9Ns3afsCh8Uucp";
            } else if (c == 2) {
                imageUrl = "https://gateway.pinata.cloud/ipfs/QmP8epA6o1XxboKxxQPbndtZx57ikgkSakyunfegsbzBnB";
                animUrl = "https://gateway.pinata.cloud/ipfs/QmZjPfqZTcYxFVhmWrMprhWDMZFjkGmaTm4hqbNQM7kvbS";
            } else if (c == 3) {
                imageUrl = "https://gateway.pinata.cloud/ipfs/Qmeov2DYzcrcUipnkHvkgjGxsjf1k9bMrng8idw85Pvjx5";
                animUrl = "https://gateway.pinata.cloud/ipfs/QmSdqS5a1G3grV9ZYbyerp2LNjQuUSPWEpExVBXBEpjhZ2";
            } else if (c == 4) {
                imageUrl = "https://gateway.pinata.cloud/ipfs/QmVuxmAFjp8WaAPgAMavWMEsdLH6arWYhEg4XAaGMT5AqS";
                animUrl = "https://gateway.pinata.cloud/ipfs/QmT4w2thVRKnnYLyMPKBGqoNzt2mtaYapamAmfECD6VnGA";
            }
        }

        string memory json = string(
                abi.encodePacked( 
                    '{"name": "', name, '",',
                    '"description": "', descPrefix, '\\n\\nThe Extraordinary Crystal can never leave the winner\'s wallet - ',
                    'if they sell or transfer the Extraordinary Crystal, a new Ordinary Crystal will instead be minted to the receiving wallet.\\n\\n',
                    'In this way, the collector of the Extraordinary Crystal becomes the architect of the collection - will they choose scarcity or abundance?\\n\\n',
                    'The Extraordinary Crystals collection is a collaboration from @makeitrad1 and @ktrbychain",',
                    '"created_by": "makeitrad & ktrby",',
                    '"image": "', imageUrl, '",'
                    '"image_url": "', imageUrl, '",',
                    '"animation": "', animUrl, '",',
                    '"animation_url": "', animUrl, '",',
                    '"attributes":[',
                    '{"trait_type":"Alpha","value":"', alphaStatus, '"}',
                    "]}"
                )
            );

        return string(abi.encodePacked('data:application/json;utf8,', json));
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 3 of 14 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 5 of 14 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

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

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

    bool private _paused;

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

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

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 12 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 13 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280601981526020017f5468652045787472616f7264696e617279204372797374616c000000000000008152506040518060400160405280600881526020017f4352595354414c53000000000000000000000000000000000000000000000000815250816000908051906020019062000096929190620007a6565b508060019080519060200190620000af929190620007a6565b5050506000600660006101000a81548160ff021916908315150217905550620000ed620000e16200010460201b60201c565b6200010c60201b60201c565b620000fe33620001d260201b60201c565b62000d32565b600033905090565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000620001eb60076200021a60201b620010ef1760201c565b90506200020460076200022860201b620010fd1760201c565b6200021682826200023e60201b60201c565b5050565b600081600001549050919050565b6001816000016000828254019250508190555050565b620002608282604051806020016040528060008152506200026460201b60201c565b5050565b620002768383620002d260201b60201c565b6200028b6000848484620004cc60201b60201c565b620002cd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c490620009f2565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000345576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200033c9062000a58565b60405180910390fd5b62000356816200068660201b60201c565b1562000399576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003909062000a14565b60405180910390fd5b620003ad60008383620006f260201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003ff919062000aa7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620004c8600083836200076260201b60201c565b5050565b6000620004fa8473ffffffffffffffffffffffffffffffffffffffff166200076760201b620011131760201c565b1562000679578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200052c6200010460201b60201c565b8786866040518563ffffffff1660e01b81526004016200055094939291906200099e565b602060405180830381600087803b1580156200056b57600080fd5b505af19250505080156200059f57506040513d601f19601f820116820180604052508101906200059c91906200086d565b60015b62000628573d8060008114620005d2576040519150601f19603f3d011682016040523d82523d6000602084013e620005d7565b606091505b5060008151141562000620576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200061790620009f2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506200067e565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620007026200078a60201b60201c565b1562000745576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200073c9062000a36565b60405180910390fd5b6200075d838383620007a160201b620011361760201c565b505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000600660009054906101000a900460ff16905090565b505050565b828054620007b49062000ba4565b90600052602060002090601f016020900481019282620007d8576000855562000824565b82601f10620007f357805160ff191683800117855562000824565b8280016001018555821562000824579182015b828111156200082357825182559160200191906001019062000806565b5b50905062000833919062000837565b5090565b5b808211156200085257600081600090555060010162000838565b5090565b600081519050620008678162000d18565b92915050565b60006020828403121562000886576200088562000c38565b5b6000620008968482850162000856565b91505092915050565b620008aa8162000b04565b82525050565b6000620008bd8262000a7a565b620008c9818562000a85565b9350620008db81856020860162000b6e565b620008e68162000c3d565b840191505092915050565b60006200090060328362000a96565b91506200090d8262000c4e565b604082019050919050565b600062000927601c8362000a96565b9150620009348262000c9d565b602082019050919050565b60006200094e60108362000a96565b91506200095b8262000cc6565b602082019050919050565b60006200097560208362000a96565b9150620009828262000cef565b602082019050919050565b620009988162000b64565b82525050565b6000608082019050620009b560008301876200089f565b620009c460208301866200089f565b620009d360408301856200098d565b8181036060830152620009e78184620008b0565b905095945050505050565b6000602082019050818103600083015262000a0d81620008f1565b9050919050565b6000602082019050818103600083015262000a2f8162000918565b9050919050565b6000602082019050818103600083015262000a51816200093f565b9050919050565b6000602082019050818103600083015262000a738162000966565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000ab48262000b64565b915062000ac18362000b64565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000af95762000af862000bda565b5b828201905092915050565b600062000b118262000b44565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000b8e57808201518184015260208101905062000b71565b8381111562000b9e576000848401525b50505050565b6000600282049050600182168062000bbd57607f821691505b6020821081141562000bd45762000bd362000c09565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b62000d238162000b18565b811462000d2f57600080fd5b50565b613f618062000d426000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a22cb46511610071578063a22cb465146102f7578063b88d4fde14610313578063c87b56dd1461032f578063e985e9c51461035f578063f2fde38b1461038f5761012c565b806370a0823114610277578063715018a6146102a75780638456cb59146102b15780638da5cb5b146102bb57806395d89b41146102d95761012c565b80633f4ba83a116100f45780633f4ba83a146101e757806342842e0e146101f157806342966c681461020d5780635c975abb146102295780636352211e146102475761012c565b806301ffc9a71461013157806306fdde0314610161578063081812fc1461017f578063095ea7b3146101af57806323b872dd146101cb575b600080fd5b61014b6004803603810190610146919061235f565b6103ab565b6040516101589190612b3e565b60405180910390f35b61016961048d565b6040516101769190612b59565b60405180910390f35b610199600480360381019061019491906123b9565b61051f565b6040516101a69190612ad7565b60405180910390f35b6101c960048036038101906101c4919061231f565b6105a4565b005b6101e560048036038101906101e09190612209565b6106bc565b005b6101ef61071c565b005b61020b60048036038101906102069190612209565b6107a2565b005b610227600480360381019061022291906123b9565b6107c2565b005b61023161081e565b60405161023e9190612b3e565b60405180910390f35b610261600480360381019061025c91906123b9565b610835565b60405161026e9190612ad7565b60405180910390f35b610291600480360381019061028c919061219c565b6108e7565b60405161029e9190612dbb565b60405180910390f35b6102af61099f565b005b6102b9610a27565b005b6102c3610aad565b6040516102d09190612ad7565b60405180910390f35b6102e1610ad7565b6040516102ee9190612b59565b60405180910390f35b610311600480360381019061030c91906122df565b610b69565b005b61032d6004803603810190610328919061225c565b610b7f565b005b610349600480360381019061034491906123b9565b610be1565b6040516103569190612b59565b60405180910390f35b610379600480360381019061037491906121c9565b610f63565b6040516103869190612b3e565b60405180910390f35b6103a960048036038101906103a4919061219c565b610ff7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061047657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061048657506104858261113b565b5b9050919050565b60606000805461049c90612faf565b80601f01602080910402602001604051908101604052809291908181526020018280546104c890612faf565b80156105155780601f106104ea57610100808354040283529160200191610515565b820191906000526020600020905b8154815290600101906020018083116104f857829003601f168201915b5050505050905090565b600061052a826111a5565b610569576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056090612d1b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105af82610835565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061790612d5b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661063f611211565b73ffffffffffffffffffffffffffffffffffffffff16148061066e575061066d81610668611211565b610f63565b5b6106ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a490612c9b565b60405180910390fd5b6106b78383611219565b505050565b6106cd6106c7611211565b826112d2565b61070c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070390612d7b565b60405180910390fd5b6107178383836113b0565b505050565b610724611211565b73ffffffffffffffffffffffffffffffffffffffff16610742610aad565b73ffffffffffffffffffffffffffffffffffffffff1614610798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078f90612d3b565b60405180910390fd5b6107a06114fe565b565b6107bd83838360405180602001604052806000815250610b7f565b505050565b6107d36107cd611211565b826112d2565b610812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080990612d9b565b60405180910390fd5b61081b816115a0565b50565b6000600660009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d590612cdb565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094f90612cbb565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109a7611211565b73ffffffffffffffffffffffffffffffffffffffff166109c5610aad565b73ffffffffffffffffffffffffffffffffffffffff1614610a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1290612d3b565b60405180910390fd5b610a2560006116bd565b565b610a2f611211565b73ffffffffffffffffffffffffffffffffffffffff16610a4d610aad565b73ffffffffffffffffffffffffffffffffffffffff1614610aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9a90612d3b565b60405180910390fd5b610aab611783565b565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610ae690612faf565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1290612faf565b8015610b5f5780601f10610b3457610100808354040283529160200191610b5f565b820191906000526020600020905b815481529060010190602001808311610b4257829003601f168201915b5050505050905090565b610b7b610b74611211565b8383611826565b5050565b610b90610b8a611211565b836112d2565b610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc690612d7b565b60405180910390fd5b610bdb84848484611993565b50505050565b6060610bec826111a5565b610bf557600080fd5b60006040518060400160405280601081526020017f4f7264696e617279204372797374616c00000000000000000000000000000000815250905060608060006040518060400160405280600581526020017f46616c736500000000000000000000000000000000000000000000000000000081525090506000604051806080016040528060608152602001613b5c606091399050610c91610aad565b73ffffffffffffffffffffffffffffffffffffffff16610cb2600854610835565b73ffffffffffffffffffffffffffffffffffffffff161415610cea57604051806080016040528060608152602001613afc6060913990505b866008541415610d9f576040518060400160405280601581526020017f45787472616f7264696e617279204372797374616c000000000000000000000081525094506040518060400160405280600481526020017f54727565000000000000000000000000000000000000000000000000000000008152509150604051806080016040528060508152602001613e3c605091399350604051806080016040528060508152602001613c5c605091399250610f06565b6000600588610dae9190613012565b90506000811415610df457604051806080016040528060508152602001613edc605091399450604051806080016040528060508152602001613e8c605091399350610f04565b6001811415610e3857604051806080016040528060508152602001613d4c605091399450604051806080016040528060508152602001613bbc605091399350610f03565b6002811415610e7c57604051806080016040528060508152602001613dec605091399450604051806080016040528060508152602001613d9c605091399350610f02565b6003811415610ec057604051806080016040528060508152602001613aac605091399450604051806080016040528060508152602001613cac605091399350610f01565b6004811415610f0057604051806080016040528060508152602001613cfc605091399450604051806080016040528060508152602001613c0c6050913993505b5b5b5b5b505b600085828687878888604051602001610f2597969594939291906129a1565b604051602081830303815290604052905080604051602001610f47919061297f565b6040516020818303038152906040529650505050505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610fff611211565b73ffffffffffffffffffffffffffffffffffffffff1661101d610aad565b73ffffffffffffffffffffffffffffffffffffffff1614611073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106a90612d3b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da90612bbb565b60405180910390fd5b6110ec816116bd565b50565b600081600001549050919050565b6001816000016000828254019250508190555050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661128c83610835565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006112dd826111a5565b61131c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131390612c5b565b60405180910390fd5b600061132783610835565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061139657508373ffffffffffffffffffffffffffffffffffffffff1661137e8461051f565b73ffffffffffffffffffffffffffffffffffffffff16145b806113a757506113a68185610f63565b5b91505092915050565b600854811480156113f457506113c4610aad565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156114ed578273ffffffffffffffffffffffffffffffffffffffff1661141982610835565b73ffffffffffffffffffffffffffffffffffffffff161461146f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146690612bdb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d690612c1b565b60405180910390fd5b6114e8826119ef565b6114f9565b6114f8838383611a15565b5b505050565b61150661081e565b611545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153c90612b7b565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611589611211565b6040516115969190612ad7565b60405180910390a1565b60006115ab82610835565b90506115b981600084611c7c565b6115c4600083611219565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116149190612ec5565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116b981600084611cd4565b5050565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61178b61081e565b156117cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c290612c7b565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861180f611211565b60405161181c9190612ad7565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188c90612c3b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119869190612b3e565b60405180910390a3505050565b61199e8484846113b0565b6119aa84848484611cd9565b6119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e090612b9b565b60405180910390fd5b50505050565b60006119fb60076110ef565b9050611a0760076110fd565b611a118282611e70565b5050565b8273ffffffffffffffffffffffffffffffffffffffff16611a3582610835565b73ffffffffffffffffffffffffffffffffffffffff1614611a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8290612bdb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af290612c1b565b60405180910390fd5b611b06838383611c7c565b611b11600082611219565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b619190612ec5565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bb89190612e6f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c77838383611cd4565b505050565b611c8461081e565b15611cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbb90612c7b565b60405180910390fd5b611ccf838383611136565b505050565b505050565b6000611cfa8473ffffffffffffffffffffffffffffffffffffffff16611113565b15611e63578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d23611211565b8786866040518563ffffffff1660e01b8152600401611d459493929190612af2565b602060405180830381600087803b158015611d5f57600080fd5b505af1925050508015611d9057506040513d601f19601f82011682018060405250810190611d8d919061238c565b60015b611e13573d8060008114611dc0576040519150601f19603f3d011682016040523d82523d6000602084013e611dc5565b606091505b50600081511415611e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0290612b9b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e68565b600190505b949350505050565b611e8a828260405180602001604052806000815250611e8e565b5050565b611e988383611ee9565b611ea56000848484611cd9565b611ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edb90612b9b565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5090612cfb565b60405180910390fd5b611f62816111a5565b15611fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9990612bfb565b60405180910390fd5b611fae60008383611c7c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ffe9190612e6f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120bf60008383611cd4565b5050565b60006120d66120d184612dfb565b612dd6565b9050828152602081018484840111156120f2576120f1613104565b5b6120fd848285612f6d565b509392505050565b60008135905061211481613a4f565b92915050565b60008135905061212981613a66565b92915050565b60008135905061213e81613a7d565b92915050565b60008151905061215381613a7d565b92915050565b600082601f83011261216e5761216d6130ff565b5b813561217e8482602086016120c3565b91505092915050565b60008135905061219681613a94565b92915050565b6000602082840312156121b2576121b161310e565b5b60006121c084828501612105565b91505092915050565b600080604083850312156121e0576121df61310e565b5b60006121ee85828601612105565b92505060206121ff85828601612105565b9150509250929050565b6000806000606084860312156122225761222161310e565b5b600061223086828701612105565b935050602061224186828701612105565b925050604061225286828701612187565b9150509250925092565b600080600080608085870312156122765761227561310e565b5b600061228487828801612105565b945050602061229587828801612105565b93505060406122a687828801612187565b925050606085013567ffffffffffffffff8111156122c7576122c6613109565b5b6122d387828801612159565b91505092959194509250565b600080604083850312156122f6576122f561310e565b5b600061230485828601612105565b92505060206123158582860161211a565b9150509250929050565b600080604083850312156123365761233561310e565b5b600061234485828601612105565b925050602061235585828601612187565b9150509250929050565b6000602082840312156123755761237461310e565b5b60006123838482850161212f565b91505092915050565b6000602082840312156123a2576123a161310e565b5b60006123b084828501612144565b91505092915050565b6000602082840312156123cf576123ce61310e565b5b60006123dd84828501612187565b91505092915050565b6123ef81612ef9565b82525050565b6123fe81612f0b565b82525050565b600061240f82612e2c565b6124198185612e42565b9350612429818560208601612f7c565b61243281613113565b840191505092915050565b600061244882612e37565b6124528185612e53565b9350612462818560208601612f7c565b61246b81613113565b840191505092915050565b600061248182612e37565b61248b8185612e64565b935061249b818560208601612f7c565b80840191505092915050565b60006124b4600e83612e64565b91506124bf82613124565b600e82019050919050565b60006124d7607e83612e64565b91506124e28261314d565b607e82019050919050565b60006124fa601483612e53565b9150612505826131e8565b602082019050919050565b600061251d608d83612e64565b915061252882613211565b608d82019050919050565b6000612540603283612e53565b915061254b826132d2565b604082019050919050565b6000612563602683612e53565b915061256e82613321565b604082019050919050565b6000612586600283612e64565b915061259182613370565b600282019050919050565b60006125a9602583612e53565b91506125b482613399565b604082019050919050565b60006125cc601c83612e53565b91506125d7826133e8565b602082019050919050565b60006125ef605b83612e64565b91506125fa82613411565b605b82019050919050565b6000612612602483612e53565b915061261d82613486565b604082019050919050565b6000612635601983612e53565b9150612640826134d5565b602082019050919050565b6000612658604483612e64565b9150612663826134fe565b604482019050919050565b600061267b602c83612e53565b915061268682613573565b604082019050919050565b600061269e602283612e64565b91506126a9826135c2565b602282019050919050565b60006126c1601083612e64565b91506126cc82613611565b601082019050919050565b60006126e4601083612e53565b91506126ef8261363a565b602082019050919050565b6000612707603883612e53565b915061271282613663565b604082019050919050565b600061272a601f83612e64565b9150612735826136b2565b601f82019050919050565b600061274d602a83612e53565b9150612758826136db565b604082019050919050565b6000612770602983612e53565b915061277b8261372a565b604082019050919050565b6000612793600283612e64565b915061279e82613779565b600282019050919050565b60006127b6602083612e53565b91506127c1826137a2565b602082019050919050565b60006127d9602c83612e53565b91506127e4826137cb565b604082019050919050565b60006127fc601b83612e64565b91506128078261381a565b601b82019050919050565b600061281f602083612e53565b915061282a82613843565b602082019050919050565b6000612842600a83612e64565b915061284d8261386c565b600a82019050919050565b6000612865600283612e64565b915061287082613895565b600282019050919050565b6000612888602183612e53565b9150612893826138be565b604082019050919050565b60006128ab601283612e64565b91506128b68261390d565b601282019050919050565b60006128ce601083612e64565b91506128d982613936565b601082019050919050565b60006128f1603183612e53565b91506128fc8261395f565b604082019050919050565b6000612914600a83612e64565b915061291f826139ae565b600a82019050919050565b6000612937603083612e53565b9150612942826139d7565b604082019050919050565b600061295a600e83612e64565b915061296582613a26565b600e82019050919050565b61297981612f63565b82525050565b600061298a826127ef565b91506129968284612476565b915081905092915050565b60006129ac82612835565b91506129b8828a612476565b91506129c382612579565b91506129ce826126b4565b91506129da8289612476565b91506129e58261264b565b91506129f0826124ca565b91506129fb82612510565b9150612a06826125e2565b9150612a1182612691565b9150612a1c82612907565b9150612a288288612476565b9150612a33826128c1565b9150612a3f8287612476565b9150612a4a82612579565b9150612a55826124a7565b9150612a618286612476565b9150612a6c82612579565b9150612a778261289e565b9150612a838285612476565b9150612a8e82612579565b9150612a998261294d565b9150612aa48261271d565b9150612ab08284612476565b9150612abb82612786565b9150612ac682612858565b915081905098975050505050505050565b6000602082019050612aec60008301846123e6565b92915050565b6000608082019050612b0760008301876123e6565b612b1460208301866123e6565b612b216040830185612970565b8181036060830152612b338184612404565b905095945050505050565b6000602082019050612b5360008301846123f5565b92915050565b60006020820190508181036000830152612b73818461243d565b905092915050565b60006020820190508181036000830152612b94816124ed565b9050919050565b60006020820190508181036000830152612bb481612533565b9050919050565b60006020820190508181036000830152612bd481612556565b9050919050565b60006020820190508181036000830152612bf48161259c565b9050919050565b60006020820190508181036000830152612c14816125bf565b9050919050565b60006020820190508181036000830152612c3481612605565b9050919050565b60006020820190508181036000830152612c5481612628565b9050919050565b60006020820190508181036000830152612c748161266e565b9050919050565b60006020820190508181036000830152612c94816126d7565b9050919050565b60006020820190508181036000830152612cb4816126fa565b9050919050565b60006020820190508181036000830152612cd481612740565b9050919050565b60006020820190508181036000830152612cf481612763565b9050919050565b60006020820190508181036000830152612d14816127a9565b9050919050565b60006020820190508181036000830152612d34816127cc565b9050919050565b60006020820190508181036000830152612d5481612812565b9050919050565b60006020820190508181036000830152612d748161287b565b9050919050565b60006020820190508181036000830152612d94816128e4565b9050919050565b60006020820190508181036000830152612db48161292a565b9050919050565b6000602082019050612dd06000830184612970565b92915050565b6000612de0612df1565b9050612dec8282612fe1565b919050565b6000604051905090565b600067ffffffffffffffff821115612e1657612e156130d0565b5b612e1f82613113565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612e7a82612f63565b9150612e8583612f63565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612eba57612eb9613043565b5b828201905092915050565b6000612ed082612f63565b9150612edb83612f63565b925082821015612eee57612eed613043565b5b828203905092915050565b6000612f0482612f43565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f9a578082015181840152602081019050612f7f565b83811115612fa9576000848401525b50505050565b60006002820490506001821680612fc757607f821691505b60208210811415612fdb57612fda6130a1565b5b50919050565b612fea82613113565b810181811067ffffffffffffffff82111715613009576130086130d0565b5b80604052505050565b600061301d82612f63565b915061302883612f63565b92508261303857613037613072565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f22616e696d6174696f6e223a2022000000000000000000000000000000000000600082015250565b7f696620746865792073656c6c206f72207472616e73666572207468652045787460008201527f72616f7264696e617279204372797374616c2c2061206e6577204f7264696e6160208201527f7279204372797374616c2077696c6c20696e7374656164206265206d696e746560408201527f6420746f2074686520726563656976696e672077616c6c65742e5c6e5c6e0000606082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f496e2074686973207761792c2074686520636f6c6c6563746f72206f6620746860008201527f652045787472616f7264696e617279204372797374616c206265636f6d65732060208201527f74686520617263686974656374206f662074686520636f6c6c656374696f6e2060408201527f2d2077696c6c20746865792063686f6f7365207363617263697479206f72206160608201527f62756e64616e63653f5c6e5c6e00000000000000000000000000000000000000608082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f222c000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5468652045787472616f7264696e617279204372797374616c7320636f6c6c6560008201527f6374696f6e206973206120636f6c6c61626f726174696f6e2066726f6d20406d60208201527f616b6569747261643120616e6420406b74726279636861696e222c0000000000604082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5c6e5c6e5468652045787472616f7264696e617279204372797374616c20636160008201527f6e206e65766572206c65617665207468652077696e6e657227732077616c6c6560208201527f74202d2000000000000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f22637265617465645f6279223a20226d616b6569747261642026206b7472627960008201527f222c000000000000000000000000000000000000000000000000000000000000602082015250565b7f226465736372697074696f6e223a202200000000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f7b2274726169745f74797065223a22416c706861222c2276616c7565223a2200600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c0000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f7b226e616d65223a202200000000000000000000000000000000000000000000600082015250565b7f5d7d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f22616e696d6174696f6e5f75726c223a20220000000000000000000000000000600082015250565b7f222c22696d6167655f75726c223a202200000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f22696d616765223a202200000000000000000000000000000000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f2261747472696275746573223a5b000000000000000000000000000000000000600082015250565b613a5881612ef9565b8114613a6357600080fd5b50565b613a6f81612f0b565b8114613a7a57600080fd5b50565b613a8681612f17565b8114613a9157600080fd5b50565b613a9d81612f63565b8114613aa857600080fd5b5056fe68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d656f763244597a6372635569706e6b48766b676a4778736a66316b39624d726e6738696477383550766a78355468652045787472616f7264696e617279204372797374616c2077696c6c20626520736f6c6420746f20746865206869676865737420626964646572202d20746865792077696c6c20636f6e74726f6c2074686520636f6c6c656374696f6e2e5468652045787472616f7264696e617279204372797374616c20686173206265656e20736f6c6420746f20746865206869676865737420626964646572202d2074686579206e6f7720636f6e74726f6c2074686520636f6c6c656374696f6e2e68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d556a56575a4a7268375733757454734e517064456b785457375739745946394e73336166734368385575637068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d54347732746856524b6e6e594c794d504b4247716f4e7a74326d7461596170616d416d6645434436566e474168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d51765366586332684c50726e6f4e476a62523342574566615a375856594d6d743644686a324a527133504c4268747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d536471533561314733677256395a596279657270324c4e6a517555535057457045785642584245706a685a3268747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5675786d41466a70385761415067414d6176574d4573644c48366172575968456734584161474d543541715368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5758534b524a426e524c6b353646715444794d6969657777796134797637714d573561675565316f62415a4e68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5a6a5066715a546359784656686d57724d70726857444d5a466a6b476d61546d346871624e514d376b76625368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5038657041366f315878626f4b78785150626e64745a783537696b676b53616b79756e66656773627a426e4268747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d4e5475794d5468623736654b5a44465547446e345a6d666155744c54636354666d68523332646e786661345768747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5659704e326f7637526a6a43764370754d5a4679796d326845587576345141336744736563644e4c4b65414d68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d596844647a397173656131735a686a316e563657475a50754b794a6a646e79715056694b4e434658336d4145a264697066735822122053fb4851fd365ed8a3268ab96fddb42c7149d72e49b4d58a6bede2a7fcf128fa64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a22cb46511610071578063a22cb465146102f7578063b88d4fde14610313578063c87b56dd1461032f578063e985e9c51461035f578063f2fde38b1461038f5761012c565b806370a0823114610277578063715018a6146102a75780638456cb59146102b15780638da5cb5b146102bb57806395d89b41146102d95761012c565b80633f4ba83a116100f45780633f4ba83a146101e757806342842e0e146101f157806342966c681461020d5780635c975abb146102295780636352211e146102475761012c565b806301ffc9a71461013157806306fdde0314610161578063081812fc1461017f578063095ea7b3146101af57806323b872dd146101cb575b600080fd5b61014b6004803603810190610146919061235f565b6103ab565b6040516101589190612b3e565b60405180910390f35b61016961048d565b6040516101769190612b59565b60405180910390f35b610199600480360381019061019491906123b9565b61051f565b6040516101a69190612ad7565b60405180910390f35b6101c960048036038101906101c4919061231f565b6105a4565b005b6101e560048036038101906101e09190612209565b6106bc565b005b6101ef61071c565b005b61020b60048036038101906102069190612209565b6107a2565b005b610227600480360381019061022291906123b9565b6107c2565b005b61023161081e565b60405161023e9190612b3e565b60405180910390f35b610261600480360381019061025c91906123b9565b610835565b60405161026e9190612ad7565b60405180910390f35b610291600480360381019061028c919061219c565b6108e7565b60405161029e9190612dbb565b60405180910390f35b6102af61099f565b005b6102b9610a27565b005b6102c3610aad565b6040516102d09190612ad7565b60405180910390f35b6102e1610ad7565b6040516102ee9190612b59565b60405180910390f35b610311600480360381019061030c91906122df565b610b69565b005b61032d6004803603810190610328919061225c565b610b7f565b005b610349600480360381019061034491906123b9565b610be1565b6040516103569190612b59565b60405180910390f35b610379600480360381019061037491906121c9565b610f63565b6040516103869190612b3e565b60405180910390f35b6103a960048036038101906103a4919061219c565b610ff7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061047657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061048657506104858261113b565b5b9050919050565b60606000805461049c90612faf565b80601f01602080910402602001604051908101604052809291908181526020018280546104c890612faf565b80156105155780601f106104ea57610100808354040283529160200191610515565b820191906000526020600020905b8154815290600101906020018083116104f857829003601f168201915b5050505050905090565b600061052a826111a5565b610569576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056090612d1b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105af82610835565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061790612d5b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661063f611211565b73ffffffffffffffffffffffffffffffffffffffff16148061066e575061066d81610668611211565b610f63565b5b6106ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a490612c9b565b60405180910390fd5b6106b78383611219565b505050565b6106cd6106c7611211565b826112d2565b61070c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070390612d7b565b60405180910390fd5b6107178383836113b0565b505050565b610724611211565b73ffffffffffffffffffffffffffffffffffffffff16610742610aad565b73ffffffffffffffffffffffffffffffffffffffff1614610798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078f90612d3b565b60405180910390fd5b6107a06114fe565b565b6107bd83838360405180602001604052806000815250610b7f565b505050565b6107d36107cd611211565b826112d2565b610812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080990612d9b565b60405180910390fd5b61081b816115a0565b50565b6000600660009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d590612cdb565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094f90612cbb565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109a7611211565b73ffffffffffffffffffffffffffffffffffffffff166109c5610aad565b73ffffffffffffffffffffffffffffffffffffffff1614610a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1290612d3b565b60405180910390fd5b610a2560006116bd565b565b610a2f611211565b73ffffffffffffffffffffffffffffffffffffffff16610a4d610aad565b73ffffffffffffffffffffffffffffffffffffffff1614610aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9a90612d3b565b60405180910390fd5b610aab611783565b565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610ae690612faf565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1290612faf565b8015610b5f5780601f10610b3457610100808354040283529160200191610b5f565b820191906000526020600020905b815481529060010190602001808311610b4257829003601f168201915b5050505050905090565b610b7b610b74611211565b8383611826565b5050565b610b90610b8a611211565b836112d2565b610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc690612d7b565b60405180910390fd5b610bdb84848484611993565b50505050565b6060610bec826111a5565b610bf557600080fd5b60006040518060400160405280601081526020017f4f7264696e617279204372797374616c00000000000000000000000000000000815250905060608060006040518060400160405280600581526020017f46616c736500000000000000000000000000000000000000000000000000000081525090506000604051806080016040528060608152602001613b5c606091399050610c91610aad565b73ffffffffffffffffffffffffffffffffffffffff16610cb2600854610835565b73ffffffffffffffffffffffffffffffffffffffff161415610cea57604051806080016040528060608152602001613afc6060913990505b866008541415610d9f576040518060400160405280601581526020017f45787472616f7264696e617279204372797374616c000000000000000000000081525094506040518060400160405280600481526020017f54727565000000000000000000000000000000000000000000000000000000008152509150604051806080016040528060508152602001613e3c605091399350604051806080016040528060508152602001613c5c605091399250610f06565b6000600588610dae9190613012565b90506000811415610df457604051806080016040528060508152602001613edc605091399450604051806080016040528060508152602001613e8c605091399350610f04565b6001811415610e3857604051806080016040528060508152602001613d4c605091399450604051806080016040528060508152602001613bbc605091399350610f03565b6002811415610e7c57604051806080016040528060508152602001613dec605091399450604051806080016040528060508152602001613d9c605091399350610f02565b6003811415610ec057604051806080016040528060508152602001613aac605091399450604051806080016040528060508152602001613cac605091399350610f01565b6004811415610f0057604051806080016040528060508152602001613cfc605091399450604051806080016040528060508152602001613c0c6050913993505b5b5b5b5b505b600085828687878888604051602001610f2597969594939291906129a1565b604051602081830303815290604052905080604051602001610f47919061297f565b6040516020818303038152906040529650505050505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610fff611211565b73ffffffffffffffffffffffffffffffffffffffff1661101d610aad565b73ffffffffffffffffffffffffffffffffffffffff1614611073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106a90612d3b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da90612bbb565b60405180910390fd5b6110ec816116bd565b50565b600081600001549050919050565b6001816000016000828254019250508190555050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661128c83610835565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006112dd826111a5565b61131c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131390612c5b565b60405180910390fd5b600061132783610835565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061139657508373ffffffffffffffffffffffffffffffffffffffff1661137e8461051f565b73ffffffffffffffffffffffffffffffffffffffff16145b806113a757506113a68185610f63565b5b91505092915050565b600854811480156113f457506113c4610aad565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156114ed578273ffffffffffffffffffffffffffffffffffffffff1661141982610835565b73ffffffffffffffffffffffffffffffffffffffff161461146f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146690612bdb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d690612c1b565b60405180910390fd5b6114e8826119ef565b6114f9565b6114f8838383611a15565b5b505050565b61150661081e565b611545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153c90612b7b565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611589611211565b6040516115969190612ad7565b60405180910390a1565b60006115ab82610835565b90506115b981600084611c7c565b6115c4600083611219565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116149190612ec5565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116b981600084611cd4565b5050565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61178b61081e565b156117cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c290612c7b565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861180f611211565b60405161181c9190612ad7565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188c90612c3b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119869190612b3e565b60405180910390a3505050565b61199e8484846113b0565b6119aa84848484611cd9565b6119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e090612b9b565b60405180910390fd5b50505050565b60006119fb60076110ef565b9050611a0760076110fd565b611a118282611e70565b5050565b8273ffffffffffffffffffffffffffffffffffffffff16611a3582610835565b73ffffffffffffffffffffffffffffffffffffffff1614611a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8290612bdb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af290612c1b565b60405180910390fd5b611b06838383611c7c565b611b11600082611219565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b619190612ec5565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bb89190612e6f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c77838383611cd4565b505050565b611c8461081e565b15611cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbb90612c7b565b60405180910390fd5b611ccf838383611136565b505050565b505050565b6000611cfa8473ffffffffffffffffffffffffffffffffffffffff16611113565b15611e63578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d23611211565b8786866040518563ffffffff1660e01b8152600401611d459493929190612af2565b602060405180830381600087803b158015611d5f57600080fd5b505af1925050508015611d9057506040513d601f19601f82011682018060405250810190611d8d919061238c565b60015b611e13573d8060008114611dc0576040519150601f19603f3d011682016040523d82523d6000602084013e611dc5565b606091505b50600081511415611e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0290612b9b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e68565b600190505b949350505050565b611e8a828260405180602001604052806000815250611e8e565b5050565b611e988383611ee9565b611ea56000848484611cd9565b611ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edb90612b9b565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5090612cfb565b60405180910390fd5b611f62816111a5565b15611fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9990612bfb565b60405180910390fd5b611fae60008383611c7c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ffe9190612e6f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120bf60008383611cd4565b5050565b60006120d66120d184612dfb565b612dd6565b9050828152602081018484840111156120f2576120f1613104565b5b6120fd848285612f6d565b509392505050565b60008135905061211481613a4f565b92915050565b60008135905061212981613a66565b92915050565b60008135905061213e81613a7d565b92915050565b60008151905061215381613a7d565b92915050565b600082601f83011261216e5761216d6130ff565b5b813561217e8482602086016120c3565b91505092915050565b60008135905061219681613a94565b92915050565b6000602082840312156121b2576121b161310e565b5b60006121c084828501612105565b91505092915050565b600080604083850312156121e0576121df61310e565b5b60006121ee85828601612105565b92505060206121ff85828601612105565b9150509250929050565b6000806000606084860312156122225761222161310e565b5b600061223086828701612105565b935050602061224186828701612105565b925050604061225286828701612187565b9150509250925092565b600080600080608085870312156122765761227561310e565b5b600061228487828801612105565b945050602061229587828801612105565b93505060406122a687828801612187565b925050606085013567ffffffffffffffff8111156122c7576122c6613109565b5b6122d387828801612159565b91505092959194509250565b600080604083850312156122f6576122f561310e565b5b600061230485828601612105565b92505060206123158582860161211a565b9150509250929050565b600080604083850312156123365761233561310e565b5b600061234485828601612105565b925050602061235585828601612187565b9150509250929050565b6000602082840312156123755761237461310e565b5b60006123838482850161212f565b91505092915050565b6000602082840312156123a2576123a161310e565b5b60006123b084828501612144565b91505092915050565b6000602082840312156123cf576123ce61310e565b5b60006123dd84828501612187565b91505092915050565b6123ef81612ef9565b82525050565b6123fe81612f0b565b82525050565b600061240f82612e2c565b6124198185612e42565b9350612429818560208601612f7c565b61243281613113565b840191505092915050565b600061244882612e37565b6124528185612e53565b9350612462818560208601612f7c565b61246b81613113565b840191505092915050565b600061248182612e37565b61248b8185612e64565b935061249b818560208601612f7c565b80840191505092915050565b60006124b4600e83612e64565b91506124bf82613124565b600e82019050919050565b60006124d7607e83612e64565b91506124e28261314d565b607e82019050919050565b60006124fa601483612e53565b9150612505826131e8565b602082019050919050565b600061251d608d83612e64565b915061252882613211565b608d82019050919050565b6000612540603283612e53565b915061254b826132d2565b604082019050919050565b6000612563602683612e53565b915061256e82613321565b604082019050919050565b6000612586600283612e64565b915061259182613370565b600282019050919050565b60006125a9602583612e53565b91506125b482613399565b604082019050919050565b60006125cc601c83612e53565b91506125d7826133e8565b602082019050919050565b60006125ef605b83612e64565b91506125fa82613411565b605b82019050919050565b6000612612602483612e53565b915061261d82613486565b604082019050919050565b6000612635601983612e53565b9150612640826134d5565b602082019050919050565b6000612658604483612e64565b9150612663826134fe565b604482019050919050565b600061267b602c83612e53565b915061268682613573565b604082019050919050565b600061269e602283612e64565b91506126a9826135c2565b602282019050919050565b60006126c1601083612e64565b91506126cc82613611565b601082019050919050565b60006126e4601083612e53565b91506126ef8261363a565b602082019050919050565b6000612707603883612e53565b915061271282613663565b604082019050919050565b600061272a601f83612e64565b9150612735826136b2565b601f82019050919050565b600061274d602a83612e53565b9150612758826136db565b604082019050919050565b6000612770602983612e53565b915061277b8261372a565b604082019050919050565b6000612793600283612e64565b915061279e82613779565b600282019050919050565b60006127b6602083612e53565b91506127c1826137a2565b602082019050919050565b60006127d9602c83612e53565b91506127e4826137cb565b604082019050919050565b60006127fc601b83612e64565b91506128078261381a565b601b82019050919050565b600061281f602083612e53565b915061282a82613843565b602082019050919050565b6000612842600a83612e64565b915061284d8261386c565b600a82019050919050565b6000612865600283612e64565b915061287082613895565b600282019050919050565b6000612888602183612e53565b9150612893826138be565b604082019050919050565b60006128ab601283612e64565b91506128b68261390d565b601282019050919050565b60006128ce601083612e64565b91506128d982613936565b601082019050919050565b60006128f1603183612e53565b91506128fc8261395f565b604082019050919050565b6000612914600a83612e64565b915061291f826139ae565b600a82019050919050565b6000612937603083612e53565b9150612942826139d7565b604082019050919050565b600061295a600e83612e64565b915061296582613a26565b600e82019050919050565b61297981612f63565b82525050565b600061298a826127ef565b91506129968284612476565b915081905092915050565b60006129ac82612835565b91506129b8828a612476565b91506129c382612579565b91506129ce826126b4565b91506129da8289612476565b91506129e58261264b565b91506129f0826124ca565b91506129fb82612510565b9150612a06826125e2565b9150612a1182612691565b9150612a1c82612907565b9150612a288288612476565b9150612a33826128c1565b9150612a3f8287612476565b9150612a4a82612579565b9150612a55826124a7565b9150612a618286612476565b9150612a6c82612579565b9150612a778261289e565b9150612a838285612476565b9150612a8e82612579565b9150612a998261294d565b9150612aa48261271d565b9150612ab08284612476565b9150612abb82612786565b9150612ac682612858565b915081905098975050505050505050565b6000602082019050612aec60008301846123e6565b92915050565b6000608082019050612b0760008301876123e6565b612b1460208301866123e6565b612b216040830185612970565b8181036060830152612b338184612404565b905095945050505050565b6000602082019050612b5360008301846123f5565b92915050565b60006020820190508181036000830152612b73818461243d565b905092915050565b60006020820190508181036000830152612b94816124ed565b9050919050565b60006020820190508181036000830152612bb481612533565b9050919050565b60006020820190508181036000830152612bd481612556565b9050919050565b60006020820190508181036000830152612bf48161259c565b9050919050565b60006020820190508181036000830152612c14816125bf565b9050919050565b60006020820190508181036000830152612c3481612605565b9050919050565b60006020820190508181036000830152612c5481612628565b9050919050565b60006020820190508181036000830152612c748161266e565b9050919050565b60006020820190508181036000830152612c94816126d7565b9050919050565b60006020820190508181036000830152612cb4816126fa565b9050919050565b60006020820190508181036000830152612cd481612740565b9050919050565b60006020820190508181036000830152612cf481612763565b9050919050565b60006020820190508181036000830152612d14816127a9565b9050919050565b60006020820190508181036000830152612d34816127cc565b9050919050565b60006020820190508181036000830152612d5481612812565b9050919050565b60006020820190508181036000830152612d748161287b565b9050919050565b60006020820190508181036000830152612d94816128e4565b9050919050565b60006020820190508181036000830152612db48161292a565b9050919050565b6000602082019050612dd06000830184612970565b92915050565b6000612de0612df1565b9050612dec8282612fe1565b919050565b6000604051905090565b600067ffffffffffffffff821115612e1657612e156130d0565b5b612e1f82613113565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612e7a82612f63565b9150612e8583612f63565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612eba57612eb9613043565b5b828201905092915050565b6000612ed082612f63565b9150612edb83612f63565b925082821015612eee57612eed613043565b5b828203905092915050565b6000612f0482612f43565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f9a578082015181840152602081019050612f7f565b83811115612fa9576000848401525b50505050565b60006002820490506001821680612fc757607f821691505b60208210811415612fdb57612fda6130a1565b5b50919050565b612fea82613113565b810181811067ffffffffffffffff82111715613009576130086130d0565b5b80604052505050565b600061301d82612f63565b915061302883612f63565b92508261303857613037613072565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f22616e696d6174696f6e223a2022000000000000000000000000000000000000600082015250565b7f696620746865792073656c6c206f72207472616e73666572207468652045787460008201527f72616f7264696e617279204372797374616c2c2061206e6577204f7264696e6160208201527f7279204372797374616c2077696c6c20696e7374656164206265206d696e746560408201527f6420746f2074686520726563656976696e672077616c6c65742e5c6e5c6e0000606082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f496e2074686973207761792c2074686520636f6c6c6563746f72206f6620746860008201527f652045787472616f7264696e617279204372797374616c206265636f6d65732060208201527f74686520617263686974656374206f662074686520636f6c6c656374696f6e2060408201527f2d2077696c6c20746865792063686f6f7365207363617263697479206f72206160608201527f62756e64616e63653f5c6e5c6e00000000000000000000000000000000000000608082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f222c000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5468652045787472616f7264696e617279204372797374616c7320636f6c6c6560008201527f6374696f6e206973206120636f6c6c61626f726174696f6e2066726f6d20406d60208201527f616b6569747261643120616e6420406b74726279636861696e222c0000000000604082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5c6e5c6e5468652045787472616f7264696e617279204372797374616c20636160008201527f6e206e65766572206c65617665207468652077696e6e657227732077616c6c6560208201527f74202d2000000000000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f22637265617465645f6279223a20226d616b6569747261642026206b7472627960008201527f222c000000000000000000000000000000000000000000000000000000000000602082015250565b7f226465736372697074696f6e223a202200000000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f7b2274726169745f74797065223a22416c706861222c2276616c7565223a2200600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c0000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f7b226e616d65223a202200000000000000000000000000000000000000000000600082015250565b7f5d7d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f22616e696d6174696f6e5f75726c223a20220000000000000000000000000000600082015250565b7f222c22696d6167655f75726c223a202200000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f22696d616765223a202200000000000000000000000000000000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f2261747472696275746573223a5b000000000000000000000000000000000000600082015250565b613a5881612ef9565b8114613a6357600080fd5b50565b613a6f81612f0b565b8114613a7a57600080fd5b50565b613a8681612f17565b8114613a9157600080fd5b50565b613a9d81612f63565b8114613aa857600080fd5b5056fe68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d656f763244597a6372635569706e6b48766b676a4778736a66316b39624d726e6738696477383550766a78355468652045787472616f7264696e617279204372797374616c2077696c6c20626520736f6c6420746f20746865206869676865737420626964646572202d20746865792077696c6c20636f6e74726f6c2074686520636f6c6c656374696f6e2e5468652045787472616f7264696e617279204372797374616c20686173206265656e20736f6c6420746f20746865206869676865737420626964646572202d2074686579206e6f7720636f6e74726f6c2074686520636f6c6c656374696f6e2e68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d556a56575a4a7268375733757454734e517064456b785457375739745946394e73336166734368385575637068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d54347732746856524b6e6e594c794d504b4247716f4e7a74326d7461596170616d416d6645434436566e474168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d51765366586332684c50726e6f4e476a62523342574566615a375856594d6d743644686a324a527133504c4268747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d536471533561314733677256395a596279657270324c4e6a517555535057457045785642584245706a685a3268747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5675786d41466a70385761415067414d6176574d4573644c48366172575968456734584161474d543541715368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5758534b524a426e524c6b353646715444794d6969657777796134797637714d573561675565316f62415a4e68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5a6a5066715a546359784656686d57724d70726857444d5a466a6b476d61546d346871624e514d376b76625368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5038657041366f315878626f4b78785150626e64745a783537696b676b53616b79756e66656773627a426e4268747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d4e5475794d5468623736654b5a44465547446e345a6d666155744c54636354666d68523332646e786661345768747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5659704e326f7637526a6a43764370754d5a4679796d326845587576345141336744736563644e4c4b65414d68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d596844647a397173656131735a686a316e563657475a50754b794a6a646e79715056694b4e434658336d4145a264697066735822122053fb4851fd365ed8a3268ab96fddb42c7149d72e49b4d58a6bede2a7fcf128fa64736f6c63430008070033

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.