ETH Price: $3,637.61 (-0.60%)
 

Overview

Max Total Supply

400 MMNC

Holders

139

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
7 MMNC
0xa42456878a987d6b120e289ba11644c465226ae8
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:
MunchieMafia

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

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

/*
+ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  +
|__       __                                __        __            __       __             ______   __                |
|  \     /  \                              |  \      |  \          |  \     /  \           /      \ |  \               |
| $$\   /  $$ __    __  _______    _______ | $$____   \$$  ______  | $$\   /  $$  ______  |  $$$$$$\ \$$  ______       |
| $$$\ /  $$$|  \  |  \|       \  /       \| $$    \ |  \ /      \ | $$$\ /  $$$ |      \ | $$_  \$$|  \ |      \      |
| $$$$\  $$$$| $$  | $$| $$$$$$$\|  $$$$$$$| $$$$$$$\| $$|  $$$$$$\| $$$$\  $$$$  \$$$$$$\| $$ \    | $$  \$$$$$$\     |
| $$\$$ $$ $$| $$  | $$| $$  | $$| $$      | $$  | $$| $$| $$    $$| $$\$$ $$ $$ /      $$| $$$$    | $$ /      $$     |
| $$ \$$$| $$| $$__/ $$| $$  | $$| $$_____ | $$  | $$| $$| $$$$$$$$| $$ \$$$| $$|  $$$$$$$| $$      | $$|  $$$$$$$     |
| $$  \$ | $$ \$$    $$| $$  | $$ \$$     \| $$  | $$| $$ \$$     \| $$  \$ | $$ \$$    $$| $$      | $$ \$$    $$     |
|\$$      \$$  \$$$$$$  \$$   \$$  \$$$$$$$ \$$   \$$ \$$  \$$$$$$$ \$$      \$$  \$$$$$$$ \$$       \$$  \$$$$$$$     |
+ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  +
*/

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";

contract MunchieMafia is ERC721, ERC721Enumerable, Ownable, PaymentSplitter {
    string public PROVENANCE;
    bool public saleIsActive = false;
    string private _baseURIextended;

    bool public isAllowListActive = false;
    uint256 public constant MAX_SUPPLY = 9999;
    uint256 public constant MAX_PUBLIC_MINT = 20;
    uint256 public constant PRICE_PER_TOKEN = 0.09 ether;

    mapping(address => uint16) private _allowList;

    constructor(address[] memory payees, uint256[] memory shares)
        ERC721("MunchieMafiaNightClub", "MMNC")
        PaymentSplitter(payees, shares)
    {}

    function setIsAllowListActive(bool _isAllowListActive) external onlyOwner {
        isAllowListActive = _isAllowListActive;
    }

    function setAllowList(address[] calldata addresses, uint16 numAllowedToMint)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < addresses.length; i++) {
            _allowList[addresses[i]] = numAllowedToMint;
        }
    }

    function numAvailableToMint(address addr) external view returns (uint16) {
        return _allowList[addr];
    }

    function mintAllowList(uint16 numberOfTokens) external payable {
        uint256 ts = totalSupply();
        require(isAllowListActive, "Allow list is not active");
        require(
            numberOfTokens <= _allowList[msg.sender],
            "Exceeded max available to purchase"
        );
        require(
            ts + numberOfTokens <= MAX_SUPPLY,
            "Purchase would exceed max tokens"
        );
        require(
            PRICE_PER_TOKEN * numberOfTokens <= msg.value,
            "Ether value sent is not correct"
        );

        _allowList[msg.sender] -= numberOfTokens;
        for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, ts + i);
        }
    }

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

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        _baseURIextended = baseURI_;
    }

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

    function setProvenance(string memory provenance) public onlyOwner {
        PROVENANCE = provenance;
    }

    function reserve(uint256 n) public onlyOwner {
        uint256 supply = totalSupply();
        uint256 i;
        for (i = 0; i < n; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function setSaleState(bool newState) public onlyOwner {
        saleIsActive = newState;
    }

    function mint(uint256 numberOfTokens) public payable {
        uint256 ts = totalSupply();
        require(saleIsActive, "Sale must be active to mint tokens");
        require(
            numberOfTokens <= MAX_PUBLIC_MINT,
            "Exceeded max token purchase"
        );
        require(
            ts + numberOfTokens <= MAX_SUPPLY,
            "Purchase would exceed max tokens"
        );
        require(
            PRICE_PER_TOKEN * numberOfTokens <= msg.value,
            "Ether value sent is not correct"
        );

        for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, ts + i);
        }
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

File 2 of 16 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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);
    }

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev 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 {}
}

File 3 of 16 : 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 4 of 16 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 5 of 16 : PaymentSplitter.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/utils/SafeERC20.sol";
import "../utils/Address.sol";
import "../utils/Context.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + totalReleased();
        uint256 payment = _pendingPayment(account, totalReceived, released(account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] += payment;
        _totalReleased += payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
     * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
     * contract.
     */
    function release(IERC20 token, address account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        uint256 payment = _pendingPayment(account, totalReceived, released(token, account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _erc20Released[token][account] += payment;
        _erc20TotalReleased[token] += payment;

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

File 6 of 16 : 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 7 of 16 : 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 8 of 16 : 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 9 of 16 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 16 : 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 11 of 16 : 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 12 of 16 : 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 13 of 16 : 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);
}

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 15 of 16 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 16 of 16 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"payees","type":"address[]"},{"internalType":"uint256[]","name":"shares","type":"uint256[]"}],"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":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","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"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_PER_TOKEN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"numberOfTokens","type":"uint16"}],"name":"mintAllowList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"numAvailableToMint","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint16","name":"numAllowedToMint","type":"uint16"}],"name":"setAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isAllowListActive","type":"bool"}],"name":"setIsAllowListActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenance","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526000601360006101000a81548160ff0219169083151502179055506000601560006101000a81548160ff0219169083151502179055503480156200004757600080fd5b50604051620069753803806200697583398181016040528101906200006d9190620007a9565b81816040518060400160405280601581526020017f4d756e636869654d616669614e69676874436c756200000000000000000000008152506040518060400160405280600481526020017f4d4d4e43000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000f392919062000587565b5080600190805190602001906200010c92919062000587565b5050506200012f620001236200027f60201b60201c565b6200028760201b60201c565b805182511462000176576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016d9062000950565b60405180910390fd5b6000825111620001bd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001b49062000994565b60405180910390fd5b60005b825181101562000274576200025e83828151811062000208577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518383815181106200024a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516200034d60201b60201c565b80806200026b9062000b77565b915050620001c0565b505050505062000dd6565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003b7906200092e565b60405180910390fd5b6000811162000406576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003fd90620009b6565b60405180910390fd5b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146200048b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004829062000972565b60405180910390fd5b600f829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600b5462000542919062000a70565b600b819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac82826040516200057b92919062000901565b60405180910390a15050565b828054620005959062000b0b565b90600052602060002090601f016020900481019282620005b9576000855562000605565b82601f10620005d457805160ff191683800117855562000605565b8280016001018555821562000605579182015b8281111562000604578251825591602001919060010190620005e7565b5b50905062000614919062000618565b5090565b5b808211156200063357600081600090555060010162000619565b5090565b60006200064e620006488462000a01565b620009d8565b905080838252602082019050828560208602820111156200066e57600080fd5b60005b85811015620006a2578162000687888262000721565b84526020840193506020830192505060018101905062000671565b5050509392505050565b6000620006c3620006bd8462000a30565b620009d8565b90508083825260208201905082856020860282011115620006e357600080fd5b60005b85811015620007175781620006fc888262000792565b845260208401935060208301925050600181019050620006e6565b5050509392505050565b600081519050620007328162000da2565b92915050565b600082601f8301126200074a57600080fd5b81516200075c84826020860162000637565b91505092915050565b600082601f8301126200077757600080fd5b815162000789848260208601620006ac565b91505092915050565b600081519050620007a38162000dbc565b92915050565b60008060408385031215620007bd57600080fd5b600083015167ffffffffffffffff811115620007d857600080fd5b620007e68582860162000738565b925050602083015167ffffffffffffffff8111156200080457600080fd5b620008128582860162000765565b9150509250929050565b620008278162000acd565b82525050565b60006200083c602c8362000a5f565b9150620008498262000c63565b604082019050919050565b60006200086360328362000a5f565b9150620008708262000cb2565b604082019050919050565b60006200088a602b8362000a5f565b9150620008978262000d01565b604082019050919050565b6000620008b1601a8362000a5f565b9150620008be8262000d50565b602082019050919050565b6000620008d8601d8362000a5f565b9150620008e58262000d79565b602082019050919050565b620008fb8162000b01565b82525050565b60006040820190506200091860008301856200081c565b620009276020830184620008f0565b9392505050565b6000602082019050818103600083015262000949816200082d565b9050919050565b600060208201905081810360008301526200096b8162000854565b9050919050565b600060208201905081810360008301526200098d816200087b565b9050919050565b60006020820190508181036000830152620009af81620008a2565b9050919050565b60006020820190508181036000830152620009d181620008c9565b9050919050565b6000620009e4620009f7565b9050620009f2828262000b41565b919050565b6000604051905090565b600067ffffffffffffffff82111562000a1f5762000a1e62000c23565b5b602082029050602081019050919050565b600067ffffffffffffffff82111562000a4e5762000a4d62000c23565b5b602082029050602081019050919050565b600082825260208201905092915050565b600062000a7d8262000b01565b915062000a8a8362000b01565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000ac25762000ac162000bc5565b5b828201905092915050565b600062000ada8262000ae1565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000b2457607f821691505b6020821081141562000b3b5762000b3a62000bf4565b5b50919050565b62000b4c8262000c52565b810181811067ffffffffffffffff8211171562000b6e5762000b6d62000c23565b5b80604052505050565b600062000b848262000b01565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000bba5762000bb962000bc5565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008201527f6573206c656e677468206d69736d617463680000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008201527f2068617320736861726573000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206e6f20706179656573000000000000600082015250565b7f5061796d656e7453706c69747465723a20736861726573206172652030000000600082015250565b62000dad8162000acd565b811462000db957600080fd5b50565b62000dc78162000b01565b811462000dd357600080fd5b50565b615b8f8062000de66000396000f3fe60806040526004361061026b5760003560e01c8063718bc4af11610144578063c4b2f112116100b6578063e33b7de31161007a578063e33b7de3146109a7578063e985e9c5146109d2578063eb8d244414610a0f578063f2fde38b14610a3a578063f9aa300214610a63578063ffe630b514610a8c576102b2565b8063c4b2f112146108ab578063c4e37095146108c7578063c87b56dd146108f0578063ce7c2ac21461092d578063d79779b21461096a576102b2565b806395d89b411161010857806395d89b41146107985780639852595c146107c3578063a0712d6814610800578063a22cb4651461081c578063b88d4fde14610845578063c04a28361461086e576102b2565b8063718bc4af146106b3578063819b25ba146106dc578063833b9499146107055780638b83209b146107305780638da5cb5b1461076d576102b2565b80633ccfd60b116101dd57806355f804b3116101a157806355f804b3146105a35780636352211e146105cc5780636373a6b11461060957806365f130971461063457806370a082311461065f578063715018a61461069c576102b2565b80633ccfd60b146104c0578063406072a9146104d757806342842e0e1461051457806348b750441461053d5780634f6ccce714610566576102b2565b8063191655871161022f57806319165587146103b057806323b872dd146103d957806329fc6bae146104025780632f745c591461042d57806332cb6b0c1461046a5780633a98ef3914610495576102b2565b806301ffc9a7146102b757806306fdde03146102f4578063081812fc1461031f578063095ea7b31461035c57806318160ddd14610385576102b2565b366102b2577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770610299610ab5565b346040516102a892919061493e565b60405180910390a1005b600080fd5b3480156102c357600080fd5b506102de60048036038101906102d9919061416c565b610abd565b6040516102eb9190614967565b60405180910390f35b34801561030057600080fd5b50610309610acf565b6040516103169190614982565b60405180910390f35b34801561032b57600080fd5b506103466004803603810190610341919061428d565b610b61565b60405161035391906148ae565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190614086565b610be6565b005b34801561039157600080fd5b5061039a610cfe565b6040516103a79190614d9f565b60405180910390f35b3480156103bc57600080fd5b506103d760048036038101906103d29190613f1b565b610d0b565b005b3480156103e557600080fd5b5061040060048036038101906103fb9190613f80565b610eb6565b005b34801561040e57600080fd5b50610417610f16565b6040516104249190614967565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190614086565b610f29565b6040516104619190614d9f565b60405180910390f35b34801561047657600080fd5b5061047f610fce565b60405161048c9190614d9f565b60405180910390f35b3480156104a157600080fd5b506104aa610fd4565b6040516104b79190614d9f565b60405180910390f35b3480156104cc57600080fd5b506104d5610fde565b005b3480156104e357600080fd5b506104fe60048036038101906104f991906141e7565b6110a9565b60405161050b9190614d9f565b60405180910390f35b34801561052057600080fd5b5061053b60048036038101906105369190613f80565b611130565b005b34801561054957600080fd5b50610564600480360381019061055f91906141e7565b611150565b005b34801561057257600080fd5b5061058d6004803603810190610588919061428d565b611418565b60405161059a9190614d9f565b60405180910390f35b3480156105af57600080fd5b506105ca60048036038101906105c59190614223565b6114af565b005b3480156105d857600080fd5b506105f360048036038101906105ee919061428d565b611545565b60405161060091906148ae565b60405180910390f35b34801561061557600080fd5b5061061e6115f7565b60405161062b9190614982565b60405180910390f35b34801561064057600080fd5b50610649611685565b6040516106569190614d9f565b60405180910390f35b34801561066b57600080fd5b5061068660048036038101906106819190613ef2565b61168a565b6040516106939190614d9f565b60405180910390f35b3480156106a857600080fd5b506106b1611742565b005b3480156106bf57600080fd5b506106da60048036038101906106d5919061411a565b6117ca565b005b3480156106e857600080fd5b5061070360048036038101906106fe919061428d565b611863565b005b34801561071157600080fd5b5061071a611923565b6040516107279190614d9f565b60405180910390f35b34801561073c57600080fd5b506107576004803603810190610752919061428d565b61192f565b60405161076491906148ae565b60405180910390f35b34801561077957600080fd5b5061078261199d565b60405161078f91906148ae565b60405180910390f35b3480156107a457600080fd5b506107ad6119c7565b6040516107ba9190614982565b60405180910390f35b3480156107cf57600080fd5b506107ea60048036038101906107e59190613ef2565b611a59565b6040516107f79190614d9f565b60405180910390f35b61081a6004803603810190610815919061428d565b611aa2565b005b34801561082857600080fd5b50610843600480360381019061083e919061404a565b611c1f565b005b34801561085157600080fd5b5061086c60048036038101906108679190613fcf565b611c35565b005b34801561087a57600080fd5b5061089560048036038101906108909190613ef2565b611c97565b6040516108a29190614d84565b60405180910390f35b6108c560048036038101906108c09190614264565b611cee565b005b3480156108d357600080fd5b506108ee60048036038101906108e9919061411a565b611f41565b005b3480156108fc57600080fd5b506109176004803603810190610912919061428d565b611fda565b6040516109249190614982565b60405180910390f35b34801561093957600080fd5b50610954600480360381019061094f9190613ef2565b612081565b6040516109619190614d9f565b60405180910390f35b34801561097657600080fd5b50610991600480360381019061098c91906141be565b6120ca565b60405161099e9190614d9f565b60405180910390f35b3480156109b357600080fd5b506109bc612113565b6040516109c99190614d9f565b60405180910390f35b3480156109de57600080fd5b506109f960048036038101906109f49190613f44565b61211d565b604051610a069190614967565b60405180910390f35b348015610a1b57600080fd5b50610a246121b1565b604051610a319190614967565b60405180910390f35b348015610a4657600080fd5b50610a616004803603810190610a5c9190613ef2565b6121c4565b005b348015610a6f57600080fd5b50610a8a6004803603810190610a8591906140c2565b6122bc565b005b348015610a9857600080fd5b50610ab36004803603810190610aae9190614223565b612406565b005b600033905090565b6000610ac88261249c565b9050919050565b606060008054610ade906150f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0a906150f6565b8015610b575780601f10610b2c57610100808354040283529160200191610b57565b820191906000526020600020905b815481529060010190602001808311610b3a57829003601f168201915b5050505050905090565b6000610b6c82612516565b610bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba290614be4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bf182611545565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5990614c84565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c81610ab5565b73ffffffffffffffffffffffffffffffffffffffff161480610cb05750610caf81610caa610ab5565b61211d565b5b610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce690614b64565b60405180910390fd5b610cf98383612582565b505050565b6000600880549050905090565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8490614a44565b60405180910390fd5b6000610d97612113565b47610da29190614e8f565b90506000610db98383610db486611a59565b61263b565b90506000811415610dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df690614b44565b60405180910390fd5b80600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e4e9190614e8f565b9250508190555080600c6000828254610e679190614e8f565b92505081905550610e7883826126a9565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610ea99291906148c9565b60405180910390a1505050565b610ec7610ec1610ab5565b8261279d565b610f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efd90614ce4565b60405180910390fd5b610f1183838361287b565b505050565b601560009054906101000a900460ff1681565b6000610f348361168a565b8210610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c906149a4565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61270f81565b6000600b54905090565b610fe6610ab5565b73ffffffffffffffffffffffffffffffffffffffff1661100461199d565b73ffffffffffffffffffffffffffffffffffffffff161461105a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105190614c04565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156110a5573d6000803e3d6000fd5b5050565b6000601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61114b83838360405180602001604052806000815250611c35565b505050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c990614a44565b60405180910390fd5b60006111dd836120ca565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161121691906148ae565b60206040518083038186803b15801561122e57600080fd5b505afa158015611242573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061126691906142b6565b6112709190614e8f565b90506000611288838361128387876110a9565b61263b565b905060008114156112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c590614b44565b60405180910390fd5b80601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461135a9190614e8f565b9250508190555080601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113b09190614e8f565b925050819055506113c2848483612ad7565b8373ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a848360405161140a92919061493e565b60405180910390a250505050565b6000611422610cfe565b8210611463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145a90614d24565b60405180910390fd5b6008828154811061149d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6114b7610ab5565b73ffffffffffffffffffffffffffffffffffffffff166114d561199d565b73ffffffffffffffffffffffffffffffffffffffff161461152b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152290614c04565b60405180910390fd5b8060149080519060200190611541929190613c63565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e590614ba4565b60405180910390fd5b80915050919050565b60128054611604906150f6565b80601f0160208091040260200160405190810160405280929190818152602001828054611630906150f6565b801561167d5780601f106116525761010080835404028352916020019161167d565b820191906000526020600020905b81548152906001019060200180831161166057829003601f168201915b505050505081565b601481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f290614b84565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61174a610ab5565b73ffffffffffffffffffffffffffffffffffffffff1661176861199d565b73ffffffffffffffffffffffffffffffffffffffff16146117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b590614c04565b60405180910390fd5b6117c86000612b5d565b565b6117d2610ab5565b73ffffffffffffffffffffffffffffffffffffffff166117f061199d565b73ffffffffffffffffffffffffffffffffffffffff1614611846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183d90614c04565b60405180910390fd5b80601560006101000a81548160ff02191690831515021790555050565b61186b610ab5565b73ffffffffffffffffffffffffffffffffffffffff1661188961199d565b73ffffffffffffffffffffffffffffffffffffffff16146118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d690614c04565b60405180910390fd5b60006118e9610cfe565b905060005b8281101561191e5761190b3382846119069190614e8f565b612c23565b808061191690615159565b9150506118ee565b505050565b67013fbe85edc9000081565b6000600f828154811061196b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546119d6906150f6565b80601f0160208091040260200160405190810160405280929190818152602001828054611a02906150f6565b8015611a4f5780601f10611a2457610100808354040283529160200191611a4f565b820191906000526020600020905b815481529060010190602001808311611a3257829003601f168201915b5050505050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000611aac610cfe565b9050601360009054906101000a900460ff16611afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af490614c64565b60405180910390fd5b6014821115611b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3890614ca4565b60405180910390fd5b61270f8282611b509190614e8f565b1115611b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8890614a04565b60405180910390fd5b348267013fbe85edc90000611ba69190614f16565b1115611be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bde90614aa4565b60405180910390fd5b60005b82811015611c1a57611c07338284611c029190614e8f565b612c23565b8080611c1290615159565b915050611bea565b505050565b611c31611c2a610ab5565b8383612c41565b5050565b611c46611c40610ab5565b8361279d565b611c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7c90614ce4565b60405180910390fd5b611c9184848484612dae565b50505050565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff169050919050565b6000611cf8610cfe565b9050601560009054906101000a900460ff16611d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4090614d64565b60405180910390fd5b601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff1661ffff168261ffff161115611de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd890614cc4565b60405180910390fd5b61270f8261ffff1682611df49190614e8f565b1115611e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2c90614a04565b60405180910390fd5b348261ffff1667013fbe85edc90000611e4e9190614f16565b1115611e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8690614aa4565b60405180910390fd5b81601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff16611eeb9190614f70565b92506101000a81548161ffff021916908361ffff16021790555060005b8261ffff16811015611f3c57611f29338284611f249190614e8f565b612c23565b8080611f3490615159565b915050611f08565b505050565b611f49610ab5565b73ffffffffffffffffffffffffffffffffffffffff16611f6761199d565b73ffffffffffffffffffffffffffffffffffffffff1614611fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb490614c04565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b6060611fe582612516565b612024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201b90614c44565b60405180910390fd5b600061202e612e0a565b9050600081511161204e5760405180602001604052806000815250612079565b8061205884612e9c565b604051602001612069929190614875565b6040516020818303038152906040525b915050919050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600c54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601360009054906101000a900460ff1681565b6121cc610ab5565b73ffffffffffffffffffffffffffffffffffffffff166121ea61199d565b73ffffffffffffffffffffffffffffffffffffffff1614612240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223790614c04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a7906149e4565b60405180910390fd5b6122b981612b5d565b50565b6122c4610ab5565b73ffffffffffffffffffffffffffffffffffffffff166122e261199d565b73ffffffffffffffffffffffffffffffffffffffff1614612338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232f90614c04565b60405180910390fd5b60005b83839050811015612400578160166000868685818110612384577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906123999190613ef2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff16021790555080806123f890615159565b91505061233b565b50505050565b61240e610ab5565b73ffffffffffffffffffffffffffffffffffffffff1661242c61199d565b73ffffffffffffffffffffffffffffffffffffffff1614612482576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247990614c04565b60405180910390fd5b8060129080519060200190612498929190613c63565b5050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061250f575061250e82613049565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125f583611545565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600b54600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548561268c9190614f16565b6126969190614ee5565b6126a09190614fa4565b90509392505050565b804710156126ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e390614ae4565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161271290614899565b60006040518083038185875af1925050503d806000811461274f576040519150601f19603f3d011682016040523d82523d6000602084013e612754565b606091505b5050905080612798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278f90614ac4565b60405180910390fd5b505050565b60006127a882612516565b6127e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127de90614b24565b60405180910390fd5b60006127f283611545565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061286157508373ffffffffffffffffffffffffffffffffffffffff1661284984610b61565b73ffffffffffffffffffffffffffffffffffffffff16145b806128725750612871818561211d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661289b82611545565b73ffffffffffffffffffffffffffffffffffffffff16146128f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e890614c24565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295890614a64565b60405180910390fd5b61296c83838361312b565b612977600082612582565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129c79190614fa4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a1e9190614e8f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612b588363a9059cbb60e01b8484604051602401612af692919061493e565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061313b565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c3d828260405180602001604052806000815250613202565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca790614a84565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612da19190614967565b60405180910390a3505050565b612db984848461287b565b612dc58484848461325d565b612e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dfb906149c4565b60405180910390fd5b50505050565b606060148054612e19906150f6565b80601f0160208091040260200160405190810160405280929190818152602001828054612e45906150f6565b8015612e925780601f10612e6757610100808354040283529160200191612e92565b820191906000526020600020905b815481529060010190602001808311612e7557829003601f168201915b5050505050905090565b60606000821415612ee4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613044565b600082905060005b60008214612f16578080612eff90615159565b915050600a82612f0f9190614ee5565b9150612eec565b60008167ffffffffffffffff811115612f58577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612f8a5781602001600182028036833780820191505090505b5090505b6000851461303d57600182612fa39190614fa4565b9150600a85612fb291906151a2565b6030612fbe9190614e8f565b60f81b818381518110612ffa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130369190614ee5565b9450612f8e565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061311457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806131245750613123826133f4565b5b9050919050565b61313683838361345e565b505050565b600061319d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166135729092919063ffffffff16565b90506000815111156131fd57808060200190518101906131bd9190614143565b6131fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f390614d44565b60405180910390fd5b5b505050565b61320c838361358a565b613219600084848461325d565b613258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161324f906149c4565b60405180910390fd5b505050565b600061327e8473ffffffffffffffffffffffffffffffffffffffff16613758565b156133e7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132a7610ab5565b8786866040518563ffffffff1660e01b81526004016132c994939291906148f2565b602060405180830381600087803b1580156132e357600080fd5b505af192505050801561331457506040513d601f19601f820116820180604052508101906133119190614195565b60015b613397573d8060008114613344576040519150601f19603f3d011682016040523d82523d6000602084013e613349565b606091505b5060008151141561338f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613386906149c4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506133ec565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61346983838361376b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134ac576134a781613770565b6134eb565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146134ea576134e983826137b9565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561352e5761352981613926565b61356d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461356c5761356b8282613a69565b5b5b505050565b60606135818484600085613ae8565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135f190614bc4565b60405180910390fd5b61360381612516565b15613643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363a90614a24565b60405180910390fd5b61364f6000838361312b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461369f9190614e8f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016137c68461168a565b6137d09190614fa4565b90506000600760008481526020019081526020016000205490508181146138b5576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061393a9190614fa4565b9050600060096000848152602001908152602001600020549050600060088381548110613990577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106139d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613a4d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613a748361168a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b606082471015613b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b2490614b04565b60405180910390fd5b613b3685613758565b613b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b6c90614d04565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051613b9e919061485e565b60006040518083038185875af1925050503d8060008114613bdb576040519150601f19603f3d011682016040523d82523d6000602084013e613be0565b606091505b5091509150613bf0828286613bfc565b92505050949350505050565b60608315613c0c57829050613c5c565b600083511115613c1f5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c539190614982565b60405180910390fd5b9392505050565b828054613c6f906150f6565b90600052602060002090601f016020900481019282613c915760008555613cd8565b82601f10613caa57805160ff1916838001178555613cd8565b82800160010185558215613cd8579182015b82811115613cd7578251825591602001919060010190613cbc565b5b509050613ce59190613ce9565b5090565b5b80821115613d02576000816000905550600101613cea565b5090565b6000613d19613d1484614ddf565b614dba565b905082815260208101848484011115613d3157600080fd5b613d3c8482856150b4565b509392505050565b6000613d57613d5284614e10565b614dba565b905082815260208101848484011115613d6f57600080fd5b613d7a8482856150b4565b509392505050565b600081359050613d9181615ab8565b92915050565b600081359050613da681615acf565b92915050565b60008083601f840112613dbe57600080fd5b8235905067ffffffffffffffff811115613dd757600080fd5b602083019150836020820283011115613def57600080fd5b9250929050565b600081359050613e0581615ae6565b92915050565b600081519050613e1a81615ae6565b92915050565b600081359050613e2f81615afd565b92915050565b600081519050613e4481615afd565b92915050565b600082601f830112613e5b57600080fd5b8135613e6b848260208601613d06565b91505092915050565b600081359050613e8381615b14565b92915050565b600082601f830112613e9a57600080fd5b8135613eaa848260208601613d44565b91505092915050565b600081359050613ec281615b2b565b92915050565b600081359050613ed781615b42565b92915050565b600081519050613eec81615b42565b92915050565b600060208284031215613f0457600080fd5b6000613f1284828501613d82565b91505092915050565b600060208284031215613f2d57600080fd5b6000613f3b84828501613d97565b91505092915050565b60008060408385031215613f5757600080fd5b6000613f6585828601613d82565b9250506020613f7685828601613d82565b9150509250929050565b600080600060608486031215613f9557600080fd5b6000613fa386828701613d82565b9350506020613fb486828701613d82565b9250506040613fc586828701613ec8565b9150509250925092565b60008060008060808587031215613fe557600080fd5b6000613ff387828801613d82565b945050602061400487828801613d82565b935050604061401587828801613ec8565b925050606085013567ffffffffffffffff81111561403257600080fd5b61403e87828801613e4a565b91505092959194509250565b6000806040838503121561405d57600080fd5b600061406b85828601613d82565b925050602061407c85828601613df6565b9150509250929050565b6000806040838503121561409957600080fd5b60006140a785828601613d82565b92505060206140b885828601613ec8565b9150509250929050565b6000806000604084860312156140d757600080fd5b600084013567ffffffffffffffff8111156140f157600080fd5b6140fd86828701613dac565b9350935050602061411086828701613eb3565b9150509250925092565b60006020828403121561412c57600080fd5b600061413a84828501613df6565b91505092915050565b60006020828403121561415557600080fd5b600061416384828501613e0b565b91505092915050565b60006020828403121561417e57600080fd5b600061418c84828501613e20565b91505092915050565b6000602082840312156141a757600080fd5b60006141b584828501613e35565b91505092915050565b6000602082840312156141d057600080fd5b60006141de84828501613e74565b91505092915050565b600080604083850312156141fa57600080fd5b600061420885828601613e74565b925050602061421985828601613d82565b9150509250929050565b60006020828403121561423557600080fd5b600082013567ffffffffffffffff81111561424f57600080fd5b61425b84828501613e89565b91505092915050565b60006020828403121561427657600080fd5b600061428484828501613eb3565b91505092915050565b60006020828403121561429f57600080fd5b60006142ad84828501613ec8565b91505092915050565b6000602082840312156142c857600080fd5b60006142d684828501613edd565b91505092915050565b6142e88161507e565b82525050565b6142f781614fd8565b82525050565b61430681614ffc565b82525050565b600061431782614e41565b6143218185614e57565b93506143318185602086016150c3565b61433a8161528f565b840191505092915050565b600061435082614e41565b61435a8185614e68565b935061436a8185602086016150c3565b80840191505092915050565b600061438182614e4c565b61438b8185614e73565b935061439b8185602086016150c3565b6143a48161528f565b840191505092915050565b60006143ba82614e4c565b6143c48185614e84565b93506143d48185602086016150c3565b80840191505092915050565b60006143ed602b83614e73565b91506143f8826152a0565b604082019050919050565b6000614410603283614e73565b915061441b826152ef565b604082019050919050565b6000614433602683614e73565b915061443e8261533e565b604082019050919050565b6000614456602083614e73565b91506144618261538d565b602082019050919050565b6000614479601c83614e73565b9150614484826153b6565b602082019050919050565b600061449c602683614e73565b91506144a7826153df565b604082019050919050565b60006144bf602483614e73565b91506144ca8261542e565b604082019050919050565b60006144e2601983614e73565b91506144ed8261547d565b602082019050919050565b6000614505601f83614e73565b9150614510826154a6565b602082019050919050565b6000614528603a83614e73565b9150614533826154cf565b604082019050919050565b600061454b601d83614e73565b91506145568261551e565b602082019050919050565b600061456e602683614e73565b915061457982615547565b604082019050919050565b6000614591602c83614e73565b915061459c82615596565b604082019050919050565b60006145b4602b83614e73565b91506145bf826155e5565b604082019050919050565b60006145d7603883614e73565b91506145e282615634565b604082019050919050565b60006145fa602a83614e73565b915061460582615683565b604082019050919050565b600061461d602983614e73565b9150614628826156d2565b604082019050919050565b6000614640602083614e73565b915061464b82615721565b602082019050919050565b6000614663602c83614e73565b915061466e8261574a565b604082019050919050565b6000614686602083614e73565b915061469182615799565b602082019050919050565b60006146a9602983614e73565b91506146b4826157c2565b604082019050919050565b60006146cc602f83614e73565b91506146d782615811565b604082019050919050565b60006146ef602283614e73565b91506146fa82615860565b604082019050919050565b6000614712602183614e73565b915061471d826158af565b604082019050919050565b6000614735601b83614e73565b9150614740826158fe565b602082019050919050565b6000614758602283614e73565b915061476382615927565b604082019050919050565b600061477b600083614e68565b915061478682615976565b600082019050919050565b600061479e603183614e73565b91506147a982615979565b604082019050919050565b60006147c1601d83614e73565b91506147cc826159c8565b602082019050919050565b60006147e4602c83614e73565b91506147ef826159f1565b604082019050919050565b6000614807602a83614e73565b915061481282615a40565b604082019050919050565b600061482a601883614e73565b915061483582615a8f565b602082019050919050565b61484981615046565b82525050565b61485881615074565b82525050565b600061486a8284614345565b915081905092915050565b600061488182856143af565b915061488d82846143af565b91508190509392505050565b60006148a48261476e565b9150819050919050565b60006020820190506148c360008301846142ee565b92915050565b60006040820190506148de60008301856142df565b6148eb602083018461484f565b9392505050565b600060808201905061490760008301876142ee565b61491460208301866142ee565b614921604083018561484f565b8181036060830152614933818461430c565b905095945050505050565b600060408201905061495360008301856142ee565b614960602083018461484f565b9392505050565b600060208201905061497c60008301846142fd565b92915050565b6000602082019050818103600083015261499c8184614376565b905092915050565b600060208201905081810360008301526149bd816143e0565b9050919050565b600060208201905081810360008301526149dd81614403565b9050919050565b600060208201905081810360008301526149fd81614426565b9050919050565b60006020820190508181036000830152614a1d81614449565b9050919050565b60006020820190508181036000830152614a3d8161446c565b9050919050565b60006020820190508181036000830152614a5d8161448f565b9050919050565b60006020820190508181036000830152614a7d816144b2565b9050919050565b60006020820190508181036000830152614a9d816144d5565b9050919050565b60006020820190508181036000830152614abd816144f8565b9050919050565b60006020820190508181036000830152614add8161451b565b9050919050565b60006020820190508181036000830152614afd8161453e565b9050919050565b60006020820190508181036000830152614b1d81614561565b9050919050565b60006020820190508181036000830152614b3d81614584565b9050919050565b60006020820190508181036000830152614b5d816145a7565b9050919050565b60006020820190508181036000830152614b7d816145ca565b9050919050565b60006020820190508181036000830152614b9d816145ed565b9050919050565b60006020820190508181036000830152614bbd81614610565b9050919050565b60006020820190508181036000830152614bdd81614633565b9050919050565b60006020820190508181036000830152614bfd81614656565b9050919050565b60006020820190508181036000830152614c1d81614679565b9050919050565b60006020820190508181036000830152614c3d8161469c565b9050919050565b60006020820190508181036000830152614c5d816146bf565b9050919050565b60006020820190508181036000830152614c7d816146e2565b9050919050565b60006020820190508181036000830152614c9d81614705565b9050919050565b60006020820190508181036000830152614cbd81614728565b9050919050565b60006020820190508181036000830152614cdd8161474b565b9050919050565b60006020820190508181036000830152614cfd81614791565b9050919050565b60006020820190508181036000830152614d1d816147b4565b9050919050565b60006020820190508181036000830152614d3d816147d7565b9050919050565b60006020820190508181036000830152614d5d816147fa565b9050919050565b60006020820190508181036000830152614d7d8161481d565b9050919050565b6000602082019050614d996000830184614840565b92915050565b6000602082019050614db4600083018461484f565b92915050565b6000614dc4614dd5565b9050614dd08282615128565b919050565b6000604051905090565b600067ffffffffffffffff821115614dfa57614df9615260565b5b614e038261528f565b9050602081019050919050565b600067ffffffffffffffff821115614e2b57614e2a615260565b5b614e348261528f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614e9a82615074565b9150614ea583615074565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614eda57614ed96151d3565b5b828201905092915050565b6000614ef082615074565b9150614efb83615074565b925082614f0b57614f0a615202565b5b828204905092915050565b6000614f2182615074565b9150614f2c83615074565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614f6557614f646151d3565b5b828202905092915050565b6000614f7b82615046565b9150614f8683615046565b925082821015614f9957614f986151d3565b5b828203905092915050565b6000614faf82615074565b9150614fba83615074565b925082821015614fcd57614fcc6151d3565b5b828203905092915050565b6000614fe382615054565b9050919050565b6000614ff582615054565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061503f82614fd8565b9050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061508982615090565b9050919050565b600061509b826150a2565b9050919050565b60006150ad82615054565b9050919050565b82818337600083830152505050565b60005b838110156150e15780820151818401526020810190506150c6565b838111156150f0576000848401525b50505050565b6000600282049050600182168061510e57607f821691505b6020821081141561512257615121615231565b5b50919050565b6151318261528f565b810181811067ffffffffffffffff821117156151505761514f615260565b5b80604052505050565b600061516482615074565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615197576151966151d3565b5b600182019050919050565b60006151ad82615074565b91506151b883615074565b9250826151c8576151c7615202565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e73600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820746f6b656e2070757263686173650000000000600082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f416c6c6f77206c697374206973206e6f74206163746976650000000000000000600082015250565b615ac181614fd8565b8114615acc57600080fd5b50565b615ad881614fea565b8114615ae357600080fd5b50565b615aef81614ffc565b8114615afa57600080fd5b50565b615b0681615008565b8114615b1157600080fd5b50565b615b1d81615034565b8114615b2857600080fd5b50565b615b3481615046565b8114615b3f57600080fd5b50565b615b4b81615074565b8114615b5657600080fd5b5056fea2646970667358221220e99c41a5a4ca8fe1e6b26b7949c71c5d0e9c7efcf302ac7ffbe8f73ad7ca24a964736f6c63430008040033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000000b000000000000000000000000f6c115fe7064aba7523bfe896d7bf4dc7b2bd29100000000000000000000000048615509a78b70c9105a859659669750dc361284000000000000000000000000fe711410c7d79631700c85c691e9fa08ba13bc3e000000000000000000000000fa6b20e94b72db37174d06302ed9d58123910154000000000000000000000000a1e0152ddd2bc7018765ca2b8a9b843d4a3a8a16000000000000000000000000b2efb0568918ca474aabcc7f80714586c26bdc49000000000000000000000000300ddef4487654ba3e6c534c9bc66cb39b62e65b0000000000000000000000009f8d55dcc659334487ba27d0d2c49b2b7a7c1d4f000000000000000000000000560a69756d2e252f16ef5d1925325a1fceb1c1f9000000000000000000000000b200646840e2076ccf60a26ca7bc7c49cf22b530000000000000000000000000decbf7a422b8289b90958ac4aa7e9354eee9a7aa000000000000000000000000000000000000000000000000000000000000000b0000000000000000000000000000000000000000000000000000000000003f4d0000000000000000000000000000000000000000000000000000000000003f4d00000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000004e2000000000000000000000000000000000000000000000000000000000000053fc0000000000000000000000000000000000000000000000000000000000001388000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000001f40

Deployed Bytecode

0x60806040526004361061026b5760003560e01c8063718bc4af11610144578063c4b2f112116100b6578063e33b7de31161007a578063e33b7de3146109a7578063e985e9c5146109d2578063eb8d244414610a0f578063f2fde38b14610a3a578063f9aa300214610a63578063ffe630b514610a8c576102b2565b8063c4b2f112146108ab578063c4e37095146108c7578063c87b56dd146108f0578063ce7c2ac21461092d578063d79779b21461096a576102b2565b806395d89b411161010857806395d89b41146107985780639852595c146107c3578063a0712d6814610800578063a22cb4651461081c578063b88d4fde14610845578063c04a28361461086e576102b2565b8063718bc4af146106b3578063819b25ba146106dc578063833b9499146107055780638b83209b146107305780638da5cb5b1461076d576102b2565b80633ccfd60b116101dd57806355f804b3116101a157806355f804b3146105a35780636352211e146105cc5780636373a6b11461060957806365f130971461063457806370a082311461065f578063715018a61461069c576102b2565b80633ccfd60b146104c0578063406072a9146104d757806342842e0e1461051457806348b750441461053d5780634f6ccce714610566576102b2565b8063191655871161022f57806319165587146103b057806323b872dd146103d957806329fc6bae146104025780632f745c591461042d57806332cb6b0c1461046a5780633a98ef3914610495576102b2565b806301ffc9a7146102b757806306fdde03146102f4578063081812fc1461031f578063095ea7b31461035c57806318160ddd14610385576102b2565b366102b2577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770610299610ab5565b346040516102a892919061493e565b60405180910390a1005b600080fd5b3480156102c357600080fd5b506102de60048036038101906102d9919061416c565b610abd565b6040516102eb9190614967565b60405180910390f35b34801561030057600080fd5b50610309610acf565b6040516103169190614982565b60405180910390f35b34801561032b57600080fd5b506103466004803603810190610341919061428d565b610b61565b60405161035391906148ae565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190614086565b610be6565b005b34801561039157600080fd5b5061039a610cfe565b6040516103a79190614d9f565b60405180910390f35b3480156103bc57600080fd5b506103d760048036038101906103d29190613f1b565b610d0b565b005b3480156103e557600080fd5b5061040060048036038101906103fb9190613f80565b610eb6565b005b34801561040e57600080fd5b50610417610f16565b6040516104249190614967565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190614086565b610f29565b6040516104619190614d9f565b60405180910390f35b34801561047657600080fd5b5061047f610fce565b60405161048c9190614d9f565b60405180910390f35b3480156104a157600080fd5b506104aa610fd4565b6040516104b79190614d9f565b60405180910390f35b3480156104cc57600080fd5b506104d5610fde565b005b3480156104e357600080fd5b506104fe60048036038101906104f991906141e7565b6110a9565b60405161050b9190614d9f565b60405180910390f35b34801561052057600080fd5b5061053b60048036038101906105369190613f80565b611130565b005b34801561054957600080fd5b50610564600480360381019061055f91906141e7565b611150565b005b34801561057257600080fd5b5061058d6004803603810190610588919061428d565b611418565b60405161059a9190614d9f565b60405180910390f35b3480156105af57600080fd5b506105ca60048036038101906105c59190614223565b6114af565b005b3480156105d857600080fd5b506105f360048036038101906105ee919061428d565b611545565b60405161060091906148ae565b60405180910390f35b34801561061557600080fd5b5061061e6115f7565b60405161062b9190614982565b60405180910390f35b34801561064057600080fd5b50610649611685565b6040516106569190614d9f565b60405180910390f35b34801561066b57600080fd5b5061068660048036038101906106819190613ef2565b61168a565b6040516106939190614d9f565b60405180910390f35b3480156106a857600080fd5b506106b1611742565b005b3480156106bf57600080fd5b506106da60048036038101906106d5919061411a565b6117ca565b005b3480156106e857600080fd5b5061070360048036038101906106fe919061428d565b611863565b005b34801561071157600080fd5b5061071a611923565b6040516107279190614d9f565b60405180910390f35b34801561073c57600080fd5b506107576004803603810190610752919061428d565b61192f565b60405161076491906148ae565b60405180910390f35b34801561077957600080fd5b5061078261199d565b60405161078f91906148ae565b60405180910390f35b3480156107a457600080fd5b506107ad6119c7565b6040516107ba9190614982565b60405180910390f35b3480156107cf57600080fd5b506107ea60048036038101906107e59190613ef2565b611a59565b6040516107f79190614d9f565b60405180910390f35b61081a6004803603810190610815919061428d565b611aa2565b005b34801561082857600080fd5b50610843600480360381019061083e919061404a565b611c1f565b005b34801561085157600080fd5b5061086c60048036038101906108679190613fcf565b611c35565b005b34801561087a57600080fd5b5061089560048036038101906108909190613ef2565b611c97565b6040516108a29190614d84565b60405180910390f35b6108c560048036038101906108c09190614264565b611cee565b005b3480156108d357600080fd5b506108ee60048036038101906108e9919061411a565b611f41565b005b3480156108fc57600080fd5b506109176004803603810190610912919061428d565b611fda565b6040516109249190614982565b60405180910390f35b34801561093957600080fd5b50610954600480360381019061094f9190613ef2565b612081565b6040516109619190614d9f565b60405180910390f35b34801561097657600080fd5b50610991600480360381019061098c91906141be565b6120ca565b60405161099e9190614d9f565b60405180910390f35b3480156109b357600080fd5b506109bc612113565b6040516109c99190614d9f565b60405180910390f35b3480156109de57600080fd5b506109f960048036038101906109f49190613f44565b61211d565b604051610a069190614967565b60405180910390f35b348015610a1b57600080fd5b50610a246121b1565b604051610a319190614967565b60405180910390f35b348015610a4657600080fd5b50610a616004803603810190610a5c9190613ef2565b6121c4565b005b348015610a6f57600080fd5b50610a8a6004803603810190610a8591906140c2565b6122bc565b005b348015610a9857600080fd5b50610ab36004803603810190610aae9190614223565b612406565b005b600033905090565b6000610ac88261249c565b9050919050565b606060008054610ade906150f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0a906150f6565b8015610b575780601f10610b2c57610100808354040283529160200191610b57565b820191906000526020600020905b815481529060010190602001808311610b3a57829003601f168201915b5050505050905090565b6000610b6c82612516565b610bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba290614be4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bf182611545565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5990614c84565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c81610ab5565b73ffffffffffffffffffffffffffffffffffffffff161480610cb05750610caf81610caa610ab5565b61211d565b5b610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce690614b64565b60405180910390fd5b610cf98383612582565b505050565b6000600880549050905090565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8490614a44565b60405180910390fd5b6000610d97612113565b47610da29190614e8f565b90506000610db98383610db486611a59565b61263b565b90506000811415610dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df690614b44565b60405180910390fd5b80600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e4e9190614e8f565b9250508190555080600c6000828254610e679190614e8f565b92505081905550610e7883826126a9565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610ea99291906148c9565b60405180910390a1505050565b610ec7610ec1610ab5565b8261279d565b610f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efd90614ce4565b60405180910390fd5b610f1183838361287b565b505050565b601560009054906101000a900460ff1681565b6000610f348361168a565b8210610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c906149a4565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61270f81565b6000600b54905090565b610fe6610ab5565b73ffffffffffffffffffffffffffffffffffffffff1661100461199d565b73ffffffffffffffffffffffffffffffffffffffff161461105a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105190614c04565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156110a5573d6000803e3d6000fd5b5050565b6000601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61114b83838360405180602001604052806000815250611c35565b505050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c990614a44565b60405180910390fd5b60006111dd836120ca565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161121691906148ae565b60206040518083038186803b15801561122e57600080fd5b505afa158015611242573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061126691906142b6565b6112709190614e8f565b90506000611288838361128387876110a9565b61263b565b905060008114156112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c590614b44565b60405180910390fd5b80601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461135a9190614e8f565b9250508190555080601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113b09190614e8f565b925050819055506113c2848483612ad7565b8373ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a848360405161140a92919061493e565b60405180910390a250505050565b6000611422610cfe565b8210611463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145a90614d24565b60405180910390fd5b6008828154811061149d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6114b7610ab5565b73ffffffffffffffffffffffffffffffffffffffff166114d561199d565b73ffffffffffffffffffffffffffffffffffffffff161461152b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152290614c04565b60405180910390fd5b8060149080519060200190611541929190613c63565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e590614ba4565b60405180910390fd5b80915050919050565b60128054611604906150f6565b80601f0160208091040260200160405190810160405280929190818152602001828054611630906150f6565b801561167d5780601f106116525761010080835404028352916020019161167d565b820191906000526020600020905b81548152906001019060200180831161166057829003601f168201915b505050505081565b601481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f290614b84565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61174a610ab5565b73ffffffffffffffffffffffffffffffffffffffff1661176861199d565b73ffffffffffffffffffffffffffffffffffffffff16146117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b590614c04565b60405180910390fd5b6117c86000612b5d565b565b6117d2610ab5565b73ffffffffffffffffffffffffffffffffffffffff166117f061199d565b73ffffffffffffffffffffffffffffffffffffffff1614611846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183d90614c04565b60405180910390fd5b80601560006101000a81548160ff02191690831515021790555050565b61186b610ab5565b73ffffffffffffffffffffffffffffffffffffffff1661188961199d565b73ffffffffffffffffffffffffffffffffffffffff16146118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d690614c04565b60405180910390fd5b60006118e9610cfe565b905060005b8281101561191e5761190b3382846119069190614e8f565b612c23565b808061191690615159565b9150506118ee565b505050565b67013fbe85edc9000081565b6000600f828154811061196b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546119d6906150f6565b80601f0160208091040260200160405190810160405280929190818152602001828054611a02906150f6565b8015611a4f5780601f10611a2457610100808354040283529160200191611a4f565b820191906000526020600020905b815481529060010190602001808311611a3257829003601f168201915b5050505050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000611aac610cfe565b9050601360009054906101000a900460ff16611afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af490614c64565b60405180910390fd5b6014821115611b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3890614ca4565b60405180910390fd5b61270f8282611b509190614e8f565b1115611b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8890614a04565b60405180910390fd5b348267013fbe85edc90000611ba69190614f16565b1115611be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bde90614aa4565b60405180910390fd5b60005b82811015611c1a57611c07338284611c029190614e8f565b612c23565b8080611c1290615159565b915050611bea565b505050565b611c31611c2a610ab5565b8383612c41565b5050565b611c46611c40610ab5565b8361279d565b611c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7c90614ce4565b60405180910390fd5b611c9184848484612dae565b50505050565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff169050919050565b6000611cf8610cfe565b9050601560009054906101000a900460ff16611d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4090614d64565b60405180910390fd5b601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff1661ffff168261ffff161115611de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd890614cc4565b60405180910390fd5b61270f8261ffff1682611df49190614e8f565b1115611e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2c90614a04565b60405180910390fd5b348261ffff1667013fbe85edc90000611e4e9190614f16565b1115611e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8690614aa4565b60405180910390fd5b81601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff16611eeb9190614f70565b92506101000a81548161ffff021916908361ffff16021790555060005b8261ffff16811015611f3c57611f29338284611f249190614e8f565b612c23565b8080611f3490615159565b915050611f08565b505050565b611f49610ab5565b73ffffffffffffffffffffffffffffffffffffffff16611f6761199d565b73ffffffffffffffffffffffffffffffffffffffff1614611fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb490614c04565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b6060611fe582612516565b612024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201b90614c44565b60405180910390fd5b600061202e612e0a565b9050600081511161204e5760405180602001604052806000815250612079565b8061205884612e9c565b604051602001612069929190614875565b6040516020818303038152906040525b915050919050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600c54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601360009054906101000a900460ff1681565b6121cc610ab5565b73ffffffffffffffffffffffffffffffffffffffff166121ea61199d565b73ffffffffffffffffffffffffffffffffffffffff1614612240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223790614c04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a7906149e4565b60405180910390fd5b6122b981612b5d565b50565b6122c4610ab5565b73ffffffffffffffffffffffffffffffffffffffff166122e261199d565b73ffffffffffffffffffffffffffffffffffffffff1614612338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232f90614c04565b60405180910390fd5b60005b83839050811015612400578160166000868685818110612384577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906123999190613ef2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff16021790555080806123f890615159565b91505061233b565b50505050565b61240e610ab5565b73ffffffffffffffffffffffffffffffffffffffff1661242c61199d565b73ffffffffffffffffffffffffffffffffffffffff1614612482576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247990614c04565b60405180910390fd5b8060129080519060200190612498929190613c63565b5050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061250f575061250e82613049565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125f583611545565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600b54600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548561268c9190614f16565b6126969190614ee5565b6126a09190614fa4565b90509392505050565b804710156126ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e390614ae4565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161271290614899565b60006040518083038185875af1925050503d806000811461274f576040519150601f19603f3d011682016040523d82523d6000602084013e612754565b606091505b5050905080612798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278f90614ac4565b60405180910390fd5b505050565b60006127a882612516565b6127e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127de90614b24565b60405180910390fd5b60006127f283611545565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061286157508373ffffffffffffffffffffffffffffffffffffffff1661284984610b61565b73ffffffffffffffffffffffffffffffffffffffff16145b806128725750612871818561211d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661289b82611545565b73ffffffffffffffffffffffffffffffffffffffff16146128f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e890614c24565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295890614a64565b60405180910390fd5b61296c83838361312b565b612977600082612582565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129c79190614fa4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a1e9190614e8f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612b588363a9059cbb60e01b8484604051602401612af692919061493e565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061313b565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c3d828260405180602001604052806000815250613202565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca790614a84565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612da19190614967565b60405180910390a3505050565b612db984848461287b565b612dc58484848461325d565b612e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dfb906149c4565b60405180910390fd5b50505050565b606060148054612e19906150f6565b80601f0160208091040260200160405190810160405280929190818152602001828054612e45906150f6565b8015612e925780601f10612e6757610100808354040283529160200191612e92565b820191906000526020600020905b815481529060010190602001808311612e7557829003601f168201915b5050505050905090565b60606000821415612ee4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613044565b600082905060005b60008214612f16578080612eff90615159565b915050600a82612f0f9190614ee5565b9150612eec565b60008167ffffffffffffffff811115612f58577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612f8a5781602001600182028036833780820191505090505b5090505b6000851461303d57600182612fa39190614fa4565b9150600a85612fb291906151a2565b6030612fbe9190614e8f565b60f81b818381518110612ffa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130369190614ee5565b9450612f8e565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061311457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806131245750613123826133f4565b5b9050919050565b61313683838361345e565b505050565b600061319d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166135729092919063ffffffff16565b90506000815111156131fd57808060200190518101906131bd9190614143565b6131fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f390614d44565b60405180910390fd5b5b505050565b61320c838361358a565b613219600084848461325d565b613258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161324f906149c4565b60405180910390fd5b505050565b600061327e8473ffffffffffffffffffffffffffffffffffffffff16613758565b156133e7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132a7610ab5565b8786866040518563ffffffff1660e01b81526004016132c994939291906148f2565b602060405180830381600087803b1580156132e357600080fd5b505af192505050801561331457506040513d601f19601f820116820180604052508101906133119190614195565b60015b613397573d8060008114613344576040519150601f19603f3d011682016040523d82523d6000602084013e613349565b606091505b5060008151141561338f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613386906149c4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506133ec565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61346983838361376b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134ac576134a781613770565b6134eb565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146134ea576134e983826137b9565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561352e5761352981613926565b61356d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461356c5761356b8282613a69565b5b5b505050565b60606135818484600085613ae8565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135f190614bc4565b60405180910390fd5b61360381612516565b15613643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363a90614a24565b60405180910390fd5b61364f6000838361312b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461369f9190614e8f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016137c68461168a565b6137d09190614fa4565b90506000600760008481526020019081526020016000205490508181146138b5576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061393a9190614fa4565b9050600060096000848152602001908152602001600020549050600060088381548110613990577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106139d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613a4d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613a748361168a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b606082471015613b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b2490614b04565b60405180910390fd5b613b3685613758565b613b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b6c90614d04565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051613b9e919061485e565b60006040518083038185875af1925050503d8060008114613bdb576040519150601f19603f3d011682016040523d82523d6000602084013e613be0565b606091505b5091509150613bf0828286613bfc565b92505050949350505050565b60608315613c0c57829050613c5c565b600083511115613c1f5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c539190614982565b60405180910390fd5b9392505050565b828054613c6f906150f6565b90600052602060002090601f016020900481019282613c915760008555613cd8565b82601f10613caa57805160ff1916838001178555613cd8565b82800160010185558215613cd8579182015b82811115613cd7578251825591602001919060010190613cbc565b5b509050613ce59190613ce9565b5090565b5b80821115613d02576000816000905550600101613cea565b5090565b6000613d19613d1484614ddf565b614dba565b905082815260208101848484011115613d3157600080fd5b613d3c8482856150b4565b509392505050565b6000613d57613d5284614e10565b614dba565b905082815260208101848484011115613d6f57600080fd5b613d7a8482856150b4565b509392505050565b600081359050613d9181615ab8565b92915050565b600081359050613da681615acf565b92915050565b60008083601f840112613dbe57600080fd5b8235905067ffffffffffffffff811115613dd757600080fd5b602083019150836020820283011115613def57600080fd5b9250929050565b600081359050613e0581615ae6565b92915050565b600081519050613e1a81615ae6565b92915050565b600081359050613e2f81615afd565b92915050565b600081519050613e4481615afd565b92915050565b600082601f830112613e5b57600080fd5b8135613e6b848260208601613d06565b91505092915050565b600081359050613e8381615b14565b92915050565b600082601f830112613e9a57600080fd5b8135613eaa848260208601613d44565b91505092915050565b600081359050613ec281615b2b565b92915050565b600081359050613ed781615b42565b92915050565b600081519050613eec81615b42565b92915050565b600060208284031215613f0457600080fd5b6000613f1284828501613d82565b91505092915050565b600060208284031215613f2d57600080fd5b6000613f3b84828501613d97565b91505092915050565b60008060408385031215613f5757600080fd5b6000613f6585828601613d82565b9250506020613f7685828601613d82565b9150509250929050565b600080600060608486031215613f9557600080fd5b6000613fa386828701613d82565b9350506020613fb486828701613d82565b9250506040613fc586828701613ec8565b9150509250925092565b60008060008060808587031215613fe557600080fd5b6000613ff387828801613d82565b945050602061400487828801613d82565b935050604061401587828801613ec8565b925050606085013567ffffffffffffffff81111561403257600080fd5b61403e87828801613e4a565b91505092959194509250565b6000806040838503121561405d57600080fd5b600061406b85828601613d82565b925050602061407c85828601613df6565b9150509250929050565b6000806040838503121561409957600080fd5b60006140a785828601613d82565b92505060206140b885828601613ec8565b9150509250929050565b6000806000604084860312156140d757600080fd5b600084013567ffffffffffffffff8111156140f157600080fd5b6140fd86828701613dac565b9350935050602061411086828701613eb3565b9150509250925092565b60006020828403121561412c57600080fd5b600061413a84828501613df6565b91505092915050565b60006020828403121561415557600080fd5b600061416384828501613e0b565b91505092915050565b60006020828403121561417e57600080fd5b600061418c84828501613e20565b91505092915050565b6000602082840312156141a757600080fd5b60006141b584828501613e35565b91505092915050565b6000602082840312156141d057600080fd5b60006141de84828501613e74565b91505092915050565b600080604083850312156141fa57600080fd5b600061420885828601613e74565b925050602061421985828601613d82565b9150509250929050565b60006020828403121561423557600080fd5b600082013567ffffffffffffffff81111561424f57600080fd5b61425b84828501613e89565b91505092915050565b60006020828403121561427657600080fd5b600061428484828501613eb3565b91505092915050565b60006020828403121561429f57600080fd5b60006142ad84828501613ec8565b91505092915050565b6000602082840312156142c857600080fd5b60006142d684828501613edd565b91505092915050565b6142e88161507e565b82525050565b6142f781614fd8565b82525050565b61430681614ffc565b82525050565b600061431782614e41565b6143218185614e57565b93506143318185602086016150c3565b61433a8161528f565b840191505092915050565b600061435082614e41565b61435a8185614e68565b935061436a8185602086016150c3565b80840191505092915050565b600061438182614e4c565b61438b8185614e73565b935061439b8185602086016150c3565b6143a48161528f565b840191505092915050565b60006143ba82614e4c565b6143c48185614e84565b93506143d48185602086016150c3565b80840191505092915050565b60006143ed602b83614e73565b91506143f8826152a0565b604082019050919050565b6000614410603283614e73565b915061441b826152ef565b604082019050919050565b6000614433602683614e73565b915061443e8261533e565b604082019050919050565b6000614456602083614e73565b91506144618261538d565b602082019050919050565b6000614479601c83614e73565b9150614484826153b6565b602082019050919050565b600061449c602683614e73565b91506144a7826153df565b604082019050919050565b60006144bf602483614e73565b91506144ca8261542e565b604082019050919050565b60006144e2601983614e73565b91506144ed8261547d565b602082019050919050565b6000614505601f83614e73565b9150614510826154a6565b602082019050919050565b6000614528603a83614e73565b9150614533826154cf565b604082019050919050565b600061454b601d83614e73565b91506145568261551e565b602082019050919050565b600061456e602683614e73565b915061457982615547565b604082019050919050565b6000614591602c83614e73565b915061459c82615596565b604082019050919050565b60006145b4602b83614e73565b91506145bf826155e5565b604082019050919050565b60006145d7603883614e73565b91506145e282615634565b604082019050919050565b60006145fa602a83614e73565b915061460582615683565b604082019050919050565b600061461d602983614e73565b9150614628826156d2565b604082019050919050565b6000614640602083614e73565b915061464b82615721565b602082019050919050565b6000614663602c83614e73565b915061466e8261574a565b604082019050919050565b6000614686602083614e73565b915061469182615799565b602082019050919050565b60006146a9602983614e73565b91506146b4826157c2565b604082019050919050565b60006146cc602f83614e73565b91506146d782615811565b604082019050919050565b60006146ef602283614e73565b91506146fa82615860565b604082019050919050565b6000614712602183614e73565b915061471d826158af565b604082019050919050565b6000614735601b83614e73565b9150614740826158fe565b602082019050919050565b6000614758602283614e73565b915061476382615927565b604082019050919050565b600061477b600083614e68565b915061478682615976565b600082019050919050565b600061479e603183614e73565b91506147a982615979565b604082019050919050565b60006147c1601d83614e73565b91506147cc826159c8565b602082019050919050565b60006147e4602c83614e73565b91506147ef826159f1565b604082019050919050565b6000614807602a83614e73565b915061481282615a40565b604082019050919050565b600061482a601883614e73565b915061483582615a8f565b602082019050919050565b61484981615046565b82525050565b61485881615074565b82525050565b600061486a8284614345565b915081905092915050565b600061488182856143af565b915061488d82846143af565b91508190509392505050565b60006148a48261476e565b9150819050919050565b60006020820190506148c360008301846142ee565b92915050565b60006040820190506148de60008301856142df565b6148eb602083018461484f565b9392505050565b600060808201905061490760008301876142ee565b61491460208301866142ee565b614921604083018561484f565b8181036060830152614933818461430c565b905095945050505050565b600060408201905061495360008301856142ee565b614960602083018461484f565b9392505050565b600060208201905061497c60008301846142fd565b92915050565b6000602082019050818103600083015261499c8184614376565b905092915050565b600060208201905081810360008301526149bd816143e0565b9050919050565b600060208201905081810360008301526149dd81614403565b9050919050565b600060208201905081810360008301526149fd81614426565b9050919050565b60006020820190508181036000830152614a1d81614449565b9050919050565b60006020820190508181036000830152614a3d8161446c565b9050919050565b60006020820190508181036000830152614a5d8161448f565b9050919050565b60006020820190508181036000830152614a7d816144b2565b9050919050565b60006020820190508181036000830152614a9d816144d5565b9050919050565b60006020820190508181036000830152614abd816144f8565b9050919050565b60006020820190508181036000830152614add8161451b565b9050919050565b60006020820190508181036000830152614afd8161453e565b9050919050565b60006020820190508181036000830152614b1d81614561565b9050919050565b60006020820190508181036000830152614b3d81614584565b9050919050565b60006020820190508181036000830152614b5d816145a7565b9050919050565b60006020820190508181036000830152614b7d816145ca565b9050919050565b60006020820190508181036000830152614b9d816145ed565b9050919050565b60006020820190508181036000830152614bbd81614610565b9050919050565b60006020820190508181036000830152614bdd81614633565b9050919050565b60006020820190508181036000830152614bfd81614656565b9050919050565b60006020820190508181036000830152614c1d81614679565b9050919050565b60006020820190508181036000830152614c3d8161469c565b9050919050565b60006020820190508181036000830152614c5d816146bf565b9050919050565b60006020820190508181036000830152614c7d816146e2565b9050919050565b60006020820190508181036000830152614c9d81614705565b9050919050565b60006020820190508181036000830152614cbd81614728565b9050919050565b60006020820190508181036000830152614cdd8161474b565b9050919050565b60006020820190508181036000830152614cfd81614791565b9050919050565b60006020820190508181036000830152614d1d816147b4565b9050919050565b60006020820190508181036000830152614d3d816147d7565b9050919050565b60006020820190508181036000830152614d5d816147fa565b9050919050565b60006020820190508181036000830152614d7d8161481d565b9050919050565b6000602082019050614d996000830184614840565b92915050565b6000602082019050614db4600083018461484f565b92915050565b6000614dc4614dd5565b9050614dd08282615128565b919050565b6000604051905090565b600067ffffffffffffffff821115614dfa57614df9615260565b5b614e038261528f565b9050602081019050919050565b600067ffffffffffffffff821115614e2b57614e2a615260565b5b614e348261528f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614e9a82615074565b9150614ea583615074565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614eda57614ed96151d3565b5b828201905092915050565b6000614ef082615074565b9150614efb83615074565b925082614f0b57614f0a615202565b5b828204905092915050565b6000614f2182615074565b9150614f2c83615074565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614f6557614f646151d3565b5b828202905092915050565b6000614f7b82615046565b9150614f8683615046565b925082821015614f9957614f986151d3565b5b828203905092915050565b6000614faf82615074565b9150614fba83615074565b925082821015614fcd57614fcc6151d3565b5b828203905092915050565b6000614fe382615054565b9050919050565b6000614ff582615054565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061503f82614fd8565b9050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061508982615090565b9050919050565b600061509b826150a2565b9050919050565b60006150ad82615054565b9050919050565b82818337600083830152505050565b60005b838110156150e15780820151818401526020810190506150c6565b838111156150f0576000848401525b50505050565b6000600282049050600182168061510e57607f821691505b6020821081141561512257615121615231565b5b50919050565b6151318261528f565b810181811067ffffffffffffffff821117156151505761514f615260565b5b80604052505050565b600061516482615074565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615197576151966151d3565b5b600182019050919050565b60006151ad82615074565b91506151b883615074565b9250826151c8576151c7615202565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e73600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820746f6b656e2070757263686173650000000000600082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f416c6c6f77206c697374206973206e6f74206163746976650000000000000000600082015250565b615ac181614fd8565b8114615acc57600080fd5b50565b615ad881614fea565b8114615ae357600080fd5b50565b615aef81614ffc565b8114615afa57600080fd5b50565b615b0681615008565b8114615b1157600080fd5b50565b615b1d81615034565b8114615b2857600080fd5b50565b615b3481615046565b8114615b3f57600080fd5b50565b615b4b81615074565b8114615b5657600080fd5b5056fea2646970667358221220e99c41a5a4ca8fe1e6b26b7949c71c5d0e9c7efcf302ac7ffbe8f73ad7ca24a964736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000000b000000000000000000000000f6c115fe7064aba7523bfe896d7bf4dc7b2bd29100000000000000000000000048615509a78b70c9105a859659669750dc361284000000000000000000000000fe711410c7d79631700c85c691e9fa08ba13bc3e000000000000000000000000fa6b20e94b72db37174d06302ed9d58123910154000000000000000000000000a1e0152ddd2bc7018765ca2b8a9b843d4a3a8a16000000000000000000000000b2efb0568918ca474aabcc7f80714586c26bdc49000000000000000000000000300ddef4487654ba3e6c534c9bc66cb39b62e65b0000000000000000000000009f8d55dcc659334487ba27d0d2c49b2b7a7c1d4f000000000000000000000000560a69756d2e252f16ef5d1925325a1fceb1c1f9000000000000000000000000b200646840e2076ccf60a26ca7bc7c49cf22b530000000000000000000000000decbf7a422b8289b90958ac4aa7e9354eee9a7aa000000000000000000000000000000000000000000000000000000000000000b0000000000000000000000000000000000000000000000000000000000003f4d0000000000000000000000000000000000000000000000000000000000003f4d00000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000004e2000000000000000000000000000000000000000000000000000000000000053fc0000000000000000000000000000000000000000000000000000000000001388000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000001f40

-----Decoded View---------------
Arg [0] : payees (address[]): 0xF6c115FE7064ABA7523Bfe896D7Bf4dc7B2BD291,0x48615509A78B70C9105A859659669750DC361284,0xFe711410C7D79631700C85C691e9fa08Ba13Bc3e,0xfA6B20e94b72dB37174D06302ED9D58123910154,0xA1E0152DdD2bc7018765CA2b8a9B843D4A3a8a16,0xb2EFb0568918Ca474AABcc7F80714586C26bdC49,0x300dDEf4487654BA3E6C534C9Bc66cb39B62e65B,0x9F8d55Dcc659334487ba27D0D2C49b2B7a7C1d4f,0x560A69756D2E252f16EF5D1925325a1fCeb1C1f9,0xB200646840E2076Ccf60A26ca7Bc7C49cf22b530,0xdeCBf7a422b8289B90958aC4Aa7e9354eee9a7aa
Arg [1] : shares (uint256[]): 16205,16205,10000,20000,21500,5000,90,1000,1000,1000,8000

-----Encoded View---------------
26 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [3] : 000000000000000000000000f6c115fe7064aba7523bfe896d7bf4dc7b2bd291
Arg [4] : 00000000000000000000000048615509a78b70c9105a859659669750dc361284
Arg [5] : 000000000000000000000000fe711410c7d79631700c85c691e9fa08ba13bc3e
Arg [6] : 000000000000000000000000fa6b20e94b72db37174d06302ed9d58123910154
Arg [7] : 000000000000000000000000a1e0152ddd2bc7018765ca2b8a9b843d4a3a8a16
Arg [8] : 000000000000000000000000b2efb0568918ca474aabcc7f80714586c26bdc49
Arg [9] : 000000000000000000000000300ddef4487654ba3e6c534c9bc66cb39b62e65b
Arg [10] : 0000000000000000000000009f8d55dcc659334487ba27d0d2c49b2b7a7c1d4f
Arg [11] : 000000000000000000000000560a69756d2e252f16ef5d1925325a1fceb1c1f9
Arg [12] : 000000000000000000000000b200646840e2076ccf60a26ca7bc7c49cf22b530
Arg [13] : 000000000000000000000000decbf7a422b8289b90958ac4aa7e9354eee9a7aa
Arg [14] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [15] : 0000000000000000000000000000000000000000000000000000000000003f4d
Arg [16] : 0000000000000000000000000000000000000000000000000000000000003f4d
Arg [17] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [18] : 0000000000000000000000000000000000000000000000000000000000004e20
Arg [19] : 00000000000000000000000000000000000000000000000000000000000053fc
Arg [20] : 0000000000000000000000000000000000000000000000000000000000001388
Arg [21] : 000000000000000000000000000000000000000000000000000000000000005a
Arg [22] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [23] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [24] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [25] : 0000000000000000000000000000000000000000000000000000000000001f40


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.