ETH Price: $3,103.78 (+2.59%)
Gas: 3 Gwei

Token

Omnimorphs (OMNI)
 

Overview

Max Total Supply

8,867 OMNI

Holders

3,834

Market

Volume (24H)

0.0079 ETH

Min Price (24H)

$24.52 @ 0.007900 ETH

Max Price (24H)

$24.52 @ 0.007900 ETH
Balance
3 OMNI
0xdea3e18aa866f46da789f0b908e90bf55a0dca90
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

**Omnimorphs is a generative NFT collectible project of 10.000 unique, digitally hand-drawn avatars immortalized on the Ethereum blockchain. ** **Our OmniFusion utility gives owners the opportunity to merge two of their tokens to customise the look & rarity of their avatar. Fusion is now live [here](https://fusion.omnimorphs.com/)** *Omnimorphs* live their lives on the brink of human societies, not getting involved, but close enough to observe. Though they’re inherently devoid of any shape or form, here on Earth, they usually choose to appear as humans. While they’re completely peaceful, their sheer existence is like an eerie reflection of humanity, a constant awkward, inquisitive stare that makes one squirm with discomfort. Visit our [official website ](https://www.omnimorphs.com) for more details.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Omnimorphs

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : Omnimorphs.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "./IOmniFusion.sol";

//  ____  __  __ _   _ _____ __  __  ____  _____  _____  _    _  _____
// / __ \|  \/  | \ | |_   _|  \/  |/ __ \|  __ \|  __ \| |  | |/ ____|
// | |  | | \  / |  \| | | | | \  / | |  | | |__) | |__) | |__| | (___
// | |  | | |\/| | . ` | | | | |\/| | |  | |  _  /|  ___/|  __  |\___ \
// | |__| | |  | | |\  |_| |_| |  | | |__| | | \ \| |    | |  | |____) |
//  \____/|_|  |_|_| \_|_____|_|  |_|\____/|_|  \_\_|    |_|  |_|_____/
contract Omnimorphs is ERC721Enumerable, Ownable {
    using ECDSA for bytes32;

    // price of a single NFT
    uint256 public constant TOKEN_PRICE = 0.08 ether;

    // max. number of tokens that can be purchased in one transaction
    uint public constant MAX_PURCHASE = 5;

    // maximum number of tokens ever gonna be minted on this contract
    uint256 public constant MAX_TOTAL_SUPPLY = 10000;

    // fill this out when calculated
    string public provenanceHash;

    // signer for bot protection
    address public signer;

    // make sure no nonce can be used for 2 transactions
    mapping(string => bool) private usedNonces;

    // can be used to launch and pause the sale
    bool public saleIsActive = false;

    // timestamp when presale stops
    uint public presaleActiveUntil = 0;

    // addresses that can participate in the presale event
    mapping(address => uint) private presaleAccessList;

    // how many presale tokens were already minted by address
    mapping(address => uint) private presaleTokensClaimed;

    // address of OmniFusion contract
    address public omniFusionAddress;

    // base uri for token metadata
    string public baseURI;

    // member1
    address payable public member1Address;

    // member2
    address payable public member2Address;

    // member3
    address payable public member3Address;

    constructor(
        string memory initialBaseURI,
        address payable _member1Address,
        address payable _member2Address,
        address payable _member3Address,
        address _signer
    ) ERC721('Omnimorphs', 'OMNI') {
        baseURI = initialBaseURI;
        member1Address = _member1Address;
        member2Address = _member2Address;
        member3Address = _member3Address;
        signer = _signer;
    }

    // INTERNALS

    // used internally by tokenURI
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    // mints an arbitrary number of tokens for sender
    function _mintTokens(uint numberOfTokens) private {
        for (uint i = 0; i < numberOfTokens; i++) {
            // index from 1 instead of 0
            _safeMint(msg.sender, totalSupply() + 1);
        }
    }

    // hashes a transaction, to verify identity
    function hashTransaction(address sender, uint256 qty, string memory nonce) private pure returns(bytes32) {
        bytes32 hash = keccak256(abi.encodePacked(
                "\x19Ethereum Signed Message:\n32",
                keccak256(abi.encodePacked(sender, qty, nonce)))
        );

        return hash;
    }

    // matches hash and signature against signer
    function matchAddressSigner(bytes32 hash, bytes memory signature) private view returns(bool) {
        return signer == hash.recover(signature);
    }

    // ONLY OWNER

    // set base uri when moving metadata
    function setBaseURI(string memory newBaseURI) external onlyOwner {
        baseURI = newBaseURI;
    }

    // starts or pauses the sale
    function flipSaleState() external onlyOwner {
        saleIsActive = !saleIsActive;
    }

    // reserve some tokens for the contract owner
    function reserveTokens(uint numberOfTokens) external onlyOwner {
        require(numberOfTokens > 0, "Number of tokens cannot be lower than, or equal to 0");
        require(totalSupply() + numberOfTokens <= MAX_TOTAL_SUPPLY, "Minting would exceed MAX_TOTAL_SUPPLY");

        _mintTokens(numberOfTokens);
    }

    // set provenance hash once it's calculated
    function setProvenanceHash(string memory hash) external onlyOwner {
        provenanceHash = hash;
    }

    // owner withdraws funds to members
    function withdraw() external onlyOwner {
        uint balance = address(this).balance;
        uint member3Share = balance / 10;
        uint otherMembersShare = (balance - member3Share) / 2;
        member1Address.transfer(otherMembersShare);
        member2Address.transfer(otherMembersShare);
        member3Address.transfer(member3Share);
    }

    // activate or deactivate presale
    function setPresaleActiveUntil(uint timestamp) external onlyOwner {
        presaleActiveUntil = timestamp;
    }

    // makes addresses eligible for presale minting
    function addPresaleAddresses(uint numberOfTokens, address[] calldata addresses) external onlyOwner {
        require(numberOfTokens <= 3, "One presale address can only mint 3 tokens maximum");

        for (uint256 i = 0; i < addresses.length; i++) {
            // cannot add the null address
            if (addresses[i] != address(0)) {
                // not resetting presaleTokensClaimed[addresses[i]], so we can't add an address twice
                presaleAccessList[addresses[i]] = numberOfTokens;
            }
        }
    }

    // removes addresses from the presale list
    function removePresaleAddresses(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            presaleAccessList[addresses[i]] = 0;
        }
    }

    // changes the address of the OmniFusion implementation
    function setOmniFusionAddress(address _address) external onlyOwner {
        omniFusionAddress = _address;
    }

    // set the signer
    function setSigner(address _address) external onlyOwner {
        signer = _address;
    }

    function setMember1Address(address payable _address) external onlyOwner {
        member1Address = _address;
    }

    function setMember2Address(address payable _address) external onlyOwner {
        member2Address = _address;
    }

    function setMember3Address(address payable _address) external onlyOwner {
        member3Address = _address;
    }

    // PUBLIC

    // purchase tokens from the contract presale
    function mintTokensPresale(uint numberOfTokens) external payable {
        require(isPresaleActive(), "Presale is not currently active");
        require(numberOfTokens <= presaleTokensForAddress(msg.sender), "Trying to mint too many tokens");
        require(numberOfTokens > 0, "Number of tokens cannot be lower than, or equal to 0");
        require(totalSupply() + numberOfTokens <= MAX_TOTAL_SUPPLY, "Minting would exceed MAX_TOTAL_SUPPLY");
        require(TOKEN_PRICE * numberOfTokens == msg.value, "Ether value sent is not correct");

        // if presale, add numberOfTokens to claimed token map
        presaleTokensClaimed[msg.sender] += numberOfTokens;
        _mintTokens(numberOfTokens);
    }

    // purchase tokens from the contract
    function mintTokens(bytes32 hash, bytes memory signature, string memory nonce, uint numberOfTokens) external payable {
        require(saleIsActive, "Sale is not currently active");
        require(totalSupply() + numberOfTokens <= MAX_TOTAL_SUPPLY, "Minting would exceed MAX_TOTAL_SUPPLY");
        require(numberOfTokens <= MAX_PURCHASE, "Trying to mint too many tokens");
        require(numberOfTokens > 0, "Number of tokens cannot be lower than, or equal to 0");
        require(TOKEN_PRICE * numberOfTokens == msg.value, "Ether value sent is not correct");
        require(matchAddressSigner(hash, signature), "Direct minting is not allowed");
        require(!usedNonces[nonce], "Nonce was already used");
        require(hashTransaction(msg.sender, numberOfTokens, nonce) == hash, "Hash mismatch");

        usedNonces[nonce] = true;
        _mintTokens(numberOfTokens);
    }

    // returns the number of tokens an address can mint during the presale
    function presaleTokensForAddress(address _address) public view returns (uint) {
        return presaleAccessList[_address] > presaleTokensClaimed[_address]
        ? presaleAccessList[_address] - presaleTokensClaimed[_address]
        : 0;
    }

    // presale is active, if presaleActiveUntil is in the future, and public sale is not active
    function isPresaleActive() public view returns (bool) {
        return presaleActiveUntil >= block.timestamp && !saleIsActive;
    }

    // fuse two tokens together
    function fuseTokens(uint toFuse, uint toBurn, bytes memory payload) external {
        IOmniFusion(omniFusionAddress).fuseTokens(msg.sender, toFuse, toBurn, payload);
        _burn(toBurn);
    }
}

File 2 of 15 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

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 3 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 15 : ECDSA.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

        return signer;
    }

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

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

File 5 of 15 : IOmniFusion.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IOmniFusion {
    function fuseTokens(address sender, uint toFuse, uint toBurn, bytes calldata payload) external;
}

File 6 of 15 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 7 of 15 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

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 8 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 10 of 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 11 of 15 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 15 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 13 of 15 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initialBaseURI","type":"string"},{"internalType":"address payable","name":"_member1Address","type":"address"},{"internalType":"address payable","name":"_member2Address","type":"address"},{"internalType":"address payable","name":"_member3Address","type":"address"},{"internalType":"address","name":"_signer","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addPresaleAddresses","outputs":[],"stateMutability":"nonpayable","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"toFuse","type":"uint256"},{"internalType":"uint256","name":"toBurn","type":"uint256"},{"internalType":"bytes","name":"payload","type":"bytes"}],"name":"fuseTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"member1Address","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"member2Address","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"member3Address","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"string","name":"nonce","type":"string"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintTokensPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"omniFusionAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActiveUntil","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"presaleTokensForAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removePresaleAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"reserveTokens","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":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_address","type":"address"}],"name":"setMember1Address","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_address","type":"address"}],"name":"setMember2Address","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_address","type":"address"}],"name":"setMember3Address","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setOmniFusionAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"setPresaleActiveUntil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"hash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signer","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"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"}]

60806040526000600e60006101000a81548160ff0219169083151502179055506000600f553480156200003157600080fd5b506040516200663c3803806200663c83398181016040528101906200005791906200045d565b6040518060400160405280600a81526020017f4f6d6e696d6f72706873000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4f4d4e49000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000db9291906200030d565b508060019080519060200190620000f49291906200030d565b505050620001176200010b6200023f60201b60201c565b6200024760201b60201c565b84601390805190602001906200012f9291906200030d565b5083601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050620006a5565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200031b90620005dd565b90600052602060002090601f0160209004810192826200033f57600085556200038b565b82601f106200035a57805160ff19168380011785556200038b565b828001600101855582156200038b579182015b828111156200038a5782518255916020019190600101906200036d565b5b5090506200039a91906200039e565b5090565b5b80821115620003b95760008160009055506001016200039f565b5090565b6000620003d4620003ce846200052c565b620004f8565b905082815260208101848484011115620003ed57600080fd5b620003fa848285620005a7565b509392505050565b600081519050620004138162000671565b92915050565b6000815190506200042a816200068b565b92915050565b600082601f8301126200044257600080fd5b815162000454848260208601620003bd565b91505092915050565b600080600080600060a086880312156200047657600080fd5b600086015167ffffffffffffffff8111156200049157600080fd5b6200049f8882890162000430565b9550506020620004b28882890162000419565b9450506040620004c58882890162000419565b9350506060620004d88882890162000419565b9250506080620004eb8882890162000402565b9150509295509295909350565b6000604051905081810181811067ffffffffffffffff8211171562000522576200052162000642565b5b8060405250919050565b600067ffffffffffffffff8211156200054a576200054962000642565b5b601f19601f8301169050602081019050919050565b60006200056c8262000587565b9050919050565b6000620005808262000587565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620005c7578082015181840152602081019050620005aa565b83811115620005d7576000848401525b50505050565b60006002820490506001821680620005f657607f821691505b602082108114156200060d576200060c62000613565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200067c816200055f565b81146200068857600080fd5b50565b620006968162000573565b8114620006a257600080fd5b50565b615f8780620006b56000396000f3fe6080604052600436106102ae5760003560e01c80636c0360eb11610175578063b88d4fde116100dc578063d031370b11610095578063e985e9c51161006f578063e985e9c514610a56578063eb8d244414610a93578063f2fde38b14610abe578063f927a7e714610ae7576102ae565b8063d031370b146109d7578063d2d8cb6714610a00578063df52fe3714610a2b576102ae565b8063b88d4fde146108d6578063be6da4b1146108ff578063c4f471e61461091b578063c6ab67a314610944578063c87b56dd1461096f578063ca9c60c5146109ac576102ae565b80637d7aa8001161012e5780637d7aa800146107d857806386cb3b0b146108035780638da5cb5b1461082c57806390cd1d451461085757806395d89b4114610882578063a22cb465146108ad576102ae565b80636c0360eb146106dc5780636c19e7831461070757806370a08231146107305780637146bd081461076d578063715018a61461079857806371cb2afc146107af576102ae565b806337d8989e116102195780635c7c1aae116101d25780635c7c1aae146105c95780635ccf5e33146105f25780635f71f3fe1461061b57806360d938dc1461065857806362891783146106835780636352211e1461069f576102ae565b806337d8989e146104d15780633ccfd60b146104fa57806342842e0e146105115780634f6ccce71461053a57806355f804b314610577578063587d62d7146105a0576102ae565b8063238ac9331161026b578063238ac933146103d557806323b872dd146104005780632f745c591461042957806333039d3d1461046657806334918dfd1461049157806337960cba146104a8576102ae565b806301ffc9a7146102b357806306fdde03146102f0578063081812fc1461031b578063095ea7b314610358578063109695231461038157806318160ddd146103aa575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d5919061466d565b610b12565b6040516102e791906155a4565b60405180910390f35b3480156102fc57600080fd5b50610305610b8c565b6040516103129190615604565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d9190614700565b610c1e565b60405161034f91906154d6565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190614559565b610ca3565b005b34801561038d57600080fd5b506103a860048036038101906103a391906146bf565b610dbb565b005b3480156103b657600080fd5b506103bf610e51565b6040516103cc9190615a26565b60405180910390f35b3480156103e157600080fd5b506103ea610e5e565b6040516103f791906154d6565b60405180910390f35b34801561040c57600080fd5b5061042760048036038101906104229190614453565b610e84565b005b34801561043557600080fd5b50610450600480360381019061044b9190614559565b610ee4565b60405161045d9190615a26565b60405180910390f35b34801561047257600080fd5b5061047b610f89565b6040516104889190615a26565b60405180910390f35b34801561049d57600080fd5b506104a6610f8f565b005b3480156104b457600080fd5b506104cf60048036038101906104ca91906143c5565b611037565b005b3480156104dd57600080fd5b506104f860048036038101906104f391906143ee565b6110f7565b005b34801561050657600080fd5b5061050f6111b7565b005b34801561051d57600080fd5b5061053860048036038101906105339190614453565b6113a5565b005b34801561054657600080fd5b50610561600480360381019061055c9190614700565b6113c5565b60405161056e9190615a26565b60405180910390f35b34801561058357600080fd5b5061059e600480360381019061059991906146bf565b61145c565b005b3480156105ac57600080fd5b506105c760048036038101906105c291906143ee565b6114f2565b005b3480156105d557600080fd5b506105f060048036038101906105eb9190614729565b6115b2565b005b3480156105fe57600080fd5b5061061960048036038101906106149190614595565b6117ac565b005b34801561062757600080fd5b50610642600480360381019061063d91906143c5565b6118e0565b60405161064f9190615a26565b60405180910390f35b34801561066457600080fd5b5061066d611a00565b60405161067a91906155a4565b60405180910390f35b61069d600480360381019061069891906145da565b611a26565b005b3480156106ab57600080fd5b506106c660048036038101906106c19190614700565b611cef565b6040516106d391906154d6565b60405180910390f35b3480156106e857600080fd5b506106f1611da1565b6040516106fe9190615604565b60405180910390f35b34801561071357600080fd5b5061072e600480360381019061072991906143c5565b611e2f565b005b34801561073c57600080fd5b50610757600480360381019061075291906143c5565b611eef565b6040516107649190615a26565b60405180910390f35b34801561077957600080fd5b50610782611fa7565b60405161078f9190615a26565b60405180910390f35b3480156107a457600080fd5b506107ad611fac565b005b3480156107bb57600080fd5b506107d660048036038101906107d19190614700565b612034565b005b3480156107e457600080fd5b506107ed6120ba565b6040516107fa91906154f1565b60405180910390f35b34801561080f57600080fd5b5061082a600480360381019061082591906143ee565b6120e0565b005b34801561083857600080fd5b506108416121a0565b60405161084e91906154d6565b60405180910390f35b34801561086357600080fd5b5061086c6121ca565b60405161087991906154d6565b60405180910390f35b34801561088e57600080fd5b506108976121f0565b6040516108a49190615604565b60405180910390f35b3480156108b957600080fd5b506108d460048036038101906108cf919061451d565b612282565b005b3480156108e257600080fd5b506108fd60048036038101906108f891906144a2565b612403565b005b61091960048036038101906109149190614700565b612465565b005b34801561092757600080fd5b50610942600480360381019061093d9190614781565b612648565b005b34801561095057600080fd5b506109596126e9565b6040516109669190615604565b60405180910390f35b34801561097b57600080fd5b5061099660048036038101906109919190614700565b612777565b6040516109a39190615604565b60405180910390f35b3480156109b857600080fd5b506109c161281e565b6040516109ce91906154f1565b60405180910390f35b3480156109e357600080fd5b506109fe60048036038101906109f99190614700565b612844565b005b348015610a0c57600080fd5b50610a15612966565b604051610a229190615a26565b60405180910390f35b348015610a3757600080fd5b50610a40612972565b604051610a4d9190615a26565b60405180910390f35b348015610a6257600080fd5b50610a7d6004803603810190610a789190614417565b612978565b604051610a8a91906155a4565b60405180910390f35b348015610a9f57600080fd5b50610aa8612a0c565b604051610ab591906155a4565b60405180910390f35b348015610aca57600080fd5b50610ae56004803603810190610ae091906143c5565b612a1f565b005b348015610af357600080fd5b50610afc612b17565b604051610b0991906154f1565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b855750610b8482612b3d565b5b9050919050565b606060008054610b9b90615d09565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc790615d09565b8015610c145780601f10610be957610100808354040283529160200191610c14565b820191906000526020600020905b815481529060010190602001808311610bf757829003601f168201915b5050505050905090565b6000610c2982612c1f565b610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f90615866565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cae82611cef565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d16906158e6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d3e612c8b565b73ffffffffffffffffffffffffffffffffffffffff161480610d6d5750610d6c81610d67612c8b565b612978565b5b610dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da390615786565b60405180910390fd5b610db68383612c93565b505050565b610dc3612c8b565b73ffffffffffffffffffffffffffffffffffffffff16610de16121a0565b73ffffffffffffffffffffffffffffffffffffffff1614610e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2e90615886565b60405180910390fd5b80600b9080519060200190610e4d929190614175565b5050565b6000600880549050905090565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e95610e8f612c8b565b82612d4c565b610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb90615946565b60405180910390fd5b610edf838383612e2a565b505050565b6000610eef83611eef565b8210610f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2790615666565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61271081565b610f97612c8b565b73ffffffffffffffffffffffffffffffffffffffff16610fb56121a0565b73ffffffffffffffffffffffffffffffffffffffff161461100b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100290615886565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b61103f612c8b565b73ffffffffffffffffffffffffffffffffffffffff1661105d6121a0565b73ffffffffffffffffffffffffffffffffffffffff16146110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa90615886565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6110ff612c8b565b73ffffffffffffffffffffffffffffffffffffffff1661111d6121a0565b73ffffffffffffffffffffffffffffffffffffffff1614611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a90615886565b60405180910390fd5b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6111bf612c8b565b73ffffffffffffffffffffffffffffffffffffffff166111dd6121a0565b73ffffffffffffffffffffffffffffffffffffffff1614611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a90615886565b60405180910390fd5b60004790506000600a826112479190615b6b565b90506000600282846112599190615bf6565b6112639190615b6b565b9050601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112cd573d6000803e3d6000fd5b50601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611336573d6000803e3d6000fd5b50601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801561139f573d6000803e3d6000fd5b50505050565b6113c083838360405180602001604052806000815250612403565b505050565b60006113cf610e51565b8210611410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140790615966565b60405180910390fd5b6008828154811061144a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b611464612c8b565b73ffffffffffffffffffffffffffffffffffffffff166114826121a0565b73ffffffffffffffffffffffffffffffffffffffff16146114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf90615886565b60405180910390fd5b80601390805190602001906114ee929190614175565b5050565b6114fa612c8b565b73ffffffffffffffffffffffffffffffffffffffff166115186121a0565b73ffffffffffffffffffffffffffffffffffffffff161461156e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156590615886565b60405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6115ba612c8b565b73ffffffffffffffffffffffffffffffffffffffff166115d86121a0565b73ffffffffffffffffffffffffffffffffffffffff161461162e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162590615886565b60405180910390fd5b6003831115611672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166990615a06565b60405180910390fd5b60005b828290508110156117a657600073ffffffffffffffffffffffffffffffffffffffff168383838181106116d1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906116e691906143c5565b73ffffffffffffffffffffffffffffffffffffffff161461179357836010600085858581811061173f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061175491906143c5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b808061179e90615d3b565b915050611675565b50505050565b6117b4612c8b565b73ffffffffffffffffffffffffffffffffffffffff166117d26121a0565b73ffffffffffffffffffffffffffffffffffffffff1614611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90615886565b60405180910390fd5b60005b828290508110156118db57600060106000858585818110611875577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061188a91906143c5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806118d390615d3b565b91505061182b565b505050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161196e5760006119f9565b601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119f89190615bf6565b5b9050919050565b600042600f5410158015611a215750600e60009054906101000a900460ff16155b905090565b600e60009054906101000a900460ff16611a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6c90615926565b60405180910390fd5b61271081611a81610e51565b611a8b9190615b15565b1115611acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac390615846565b60405180910390fd5b6005811115611b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b07906157e6565b60405180910390fd5b60008111611b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4a90615906565b60405180910390fd5b348167011c37937e080000611b689190615b9c565b14611ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9f90615726565b60405180910390fd5b611bb28484613086565b611bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be8906159e6565b60405180910390fd5b600d82604051611c019190615475565b908152602001604051809103902060009054906101000a900460ff1615611c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c54906159c6565b60405180910390fd5b83611c693383856130f3565b14611ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca090615986565b60405180910390fd5b6001600d83604051611cbb9190615475565b908152602001604051809103902060006101000a81548160ff021916908315150217905550611ce981613154565b50505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f906157c6565b60405180910390fd5b80915050919050565b60138054611dae90615d09565b80601f0160208091040260200160405190810160405280929190818152602001828054611dda90615d09565b8015611e275780601f10611dfc57610100808354040283529160200191611e27565b820191906000526020600020905b815481529060010190602001808311611e0a57829003601f168201915b505050505081565b611e37612c8b565b73ffffffffffffffffffffffffffffffffffffffff16611e556121a0565b73ffffffffffffffffffffffffffffffffffffffff1614611eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea290615886565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f57906157a6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600581565b611fb4612c8b565b73ffffffffffffffffffffffffffffffffffffffff16611fd26121a0565b73ffffffffffffffffffffffffffffffffffffffff1614612028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201f90615886565b60405180910390fd5b6120326000613193565b565b61203c612c8b565b73ffffffffffffffffffffffffffffffffffffffff1661205a6121a0565b73ffffffffffffffffffffffffffffffffffffffff16146120b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a790615886565b60405180910390fd5b80600f8190555050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6120e8612c8b565b73ffffffffffffffffffffffffffffffffffffffff166121066121a0565b73ffffffffffffffffffffffffffffffffffffffff161461215c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215390615886565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600180546121ff90615d09565b80601f016020809104026020016040519081016040528092919081815260200182805461222b90615d09565b80156122785780601f1061224d57610100808354040283529160200191612278565b820191906000526020600020905b81548152906001019060200180831161225b57829003601f168201915b5050505050905090565b61228a612c8b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ef90615706565b60405180910390fd5b8060056000612305612c8b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166123b2612c8b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123f791906155a4565b60405180910390a35050565b61241461240e612c8b565b83612d4c565b612453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244a90615946565b60405180910390fd5b61245f84848484613259565b50505050565b61246d611a00565b6124ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a3906159a6565b60405180910390fd5b6124b5336118e0565b8111156124f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ee906157e6565b60405180910390fd5b6000811161253a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253190615906565b60405180910390fd5b61271081612546610e51565b6125509190615b15565b1115612591576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258890615846565b60405180910390fd5b348167011c37937e0800006125a69190615b9c565b146125e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125dd90615726565b60405180910390fd5b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126359190615b15565b9250508190555061264581613154565b50565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635099eaf3338585856040518563ffffffff1660e01b81526004016126a99493929190615558565b600060405180830381600087803b1580156126c357600080fd5b505af11580156126d7573d6000803e3d6000fd5b505050506126e4826132b5565b505050565b600b80546126f690615d09565b80601f016020809104026020016040519081016040528092919081815260200182805461272290615d09565b801561276f5780601f106127445761010080835404028352916020019161276f565b820191906000526020600020905b81548152906001019060200180831161275257829003601f168201915b505050505081565b606061278282612c1f565b6127c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b8906158c6565b60405180910390fd5b60006127cb6133c6565b905060008151116127eb5760405180602001604052806000815250612816565b806127f584613458565b60405160200161280692919061548c565b6040516020818303038152906040525b915050919050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61284c612c8b565b73ffffffffffffffffffffffffffffffffffffffff1661286a6121a0565b73ffffffffffffffffffffffffffffffffffffffff16146128c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b790615886565b60405180910390fd5b60008111612903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fa90615906565b60405180910390fd5b6127108161290f610e51565b6129199190615b15565b111561295a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295190615846565b60405180910390fd5b61296381613154565b50565b67011c37937e08000081565b600f5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60009054906101000a900460ff1681565b612a27612c8b565b73ffffffffffffffffffffffffffffffffffffffff16612a456121a0565b73ffffffffffffffffffffffffffffffffffffffff1614612a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9290615886565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b02906156a6565b60405180910390fd5b612b1481613193565b50565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612c0857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612c185750612c1782613605565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612d0683611cef565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612d5782612c1f565b612d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8d90615766565b60405180910390fd5b6000612da183611cef565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612e1057508373ffffffffffffffffffffffffffffffffffffffff16612df884610c1e565b73ffffffffffffffffffffffffffffffffffffffff16145b80612e215750612e208185612978565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612e4a82611cef565b73ffffffffffffffffffffffffffffffffffffffff1614612ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e97906158a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f07906156e6565b60405180910390fd5b612f1b83838361366f565b612f26600082612c93565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f769190615bf6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fcd9190615b15565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061309b828461378390919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b60008084848460405160200161310b9392919061543c565b6040516020818303038152906040528051906020012060405160200161313191906154b0565b604051602081830303815290604052805190602001209050809150509392505050565b60005b8181101561318f5761317c33600161316d610e51565b6131779190615b15565b613832565b808061318790615d3b565b915050613157565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613264848484612e2a565b61327084848484613850565b6132af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132a690615686565b60405180910390fd5b50505050565b60006132c082611cef565b90506132ce8160008461366f565b6132d9600083612c93565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133299190615bf6565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6060601380546133d590615d09565b80601f016020809104026020016040519081016040528092919081815260200182805461340190615d09565b801561344e5780601f106134235761010080835404028352916020019161344e565b820191906000526020600020905b81548152906001019060200180831161343157829003601f168201915b5050505050905090565b606060008214156134a0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613600565b600082905060005b600082146134d25780806134bb90615d3b565b915050600a826134cb9190615b6b565b91506134a8565b60008167ffffffffffffffff811115613514577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135465781602001600182028036833780820191505090505b5090505b600085146135f95760018261355f9190615bf6565b9150600a8561356e9190615dbc565b603061357a9190615b15565b60f81b8183815181106135b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135f29190615b6b565b945061354a565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61367a8383836139e7565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136bd576136b8816139ec565b6136fc565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146136fb576136fa8382613a35565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561373f5761373a81613ba2565b61377e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461377d5761377c8282613ce5565b5b5b505050565b60006041825114156137c25760008060006020850151925060408501519150606085015160001a90506137b886828585613d64565b935050505061382c565b6040825114156137f15760008060208401519150604084015190506137e8858383613eef565b9250505061382c565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161382390615646565b60405180910390fd5b92915050565b61384c828260405180602001604052806000815250613f39565b5050565b60006138718473ffffffffffffffffffffffffffffffffffffffff16613f94565b156139da578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261389a612c8b565b8786866040518563ffffffff1660e01b81526004016138bc949392919061550c565b602060405180830381600087803b1580156138d657600080fd5b505af192505050801561390757506040513d601f19601f820116820180604052508101906139049190614696565b60015b61398a573d8060008114613937576040519150601f19603f3d011682016040523d82523d6000602084013e61393c565b606091505b50600081511415613982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161397990615686565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506139df565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613a4284611eef565b613a4c9190615bf6565b9050600060076000848152602001908152602001600020549050818114613b31576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613bb69190615bf6565b9050600060096000848152602001908152602001600020549050600060088381548110613c0c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613c54577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613cc9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613cf083611eef565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08260001c1115613dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dc390615746565b60405180910390fd5b601b8460ff161480613de15750601c8460ff16145b613e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e1790615806565b60405180910390fd5b600060018686868660405160008152602001604052604051613e4594939291906155bf565b6020604051602081039080840390855afa158015613e67573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613eda90615626565b60405180910390fd5b80915050949350505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84169150601b8460ff1c019050613f2e86828785613d64565b925050509392505050565b613f438383613fa7565b613f506000848484613850565b613f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f8690615686565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161400e90615826565b60405180910390fd5b61402081612c1f565b15614060576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401614057906156c6565b60405180910390fd5b61406c6000838361366f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546140bc9190615b15565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461418190615d09565b90600052602060002090601f0160209004810192826141a357600085556141ea565b82601f106141bc57805160ff19168380011785556141ea565b828001600101855582156141ea579182015b828111156141e95782518255916020019190600101906141ce565b5b5090506141f791906141fb565b5090565b5b808211156142145760008160009055506001016141fc565b5090565b600061422b61422684615a72565b615a41565b90508281526020810184848401111561424357600080fd5b61424e848285615cc7565b509392505050565b600061426961426484615aa2565b615a41565b90508281526020810184848401111561428157600080fd5b61428c848285615cc7565b509392505050565b6000813590506142a381615ec7565b92915050565b6000813590506142b881615ede565b92915050565b60008083601f8401126142d057600080fd5b8235905067ffffffffffffffff8111156142e957600080fd5b60208301915083602082028301111561430157600080fd5b9250929050565b60008135905061431781615ef5565b92915050565b60008135905061432c81615f0c565b92915050565b60008135905061434181615f23565b92915050565b60008151905061435681615f23565b92915050565b600082601f83011261436d57600080fd5b813561437d848260208601614218565b91505092915050565b600082601f83011261439757600080fd5b81356143a7848260208601614256565b91505092915050565b6000813590506143bf81615f3a565b92915050565b6000602082840312156143d757600080fd5b60006143e584828501614294565b91505092915050565b60006020828403121561440057600080fd5b600061440e848285016142a9565b91505092915050565b6000806040838503121561442a57600080fd5b600061443885828601614294565b925050602061444985828601614294565b9150509250929050565b60008060006060848603121561446857600080fd5b600061447686828701614294565b935050602061448786828701614294565b9250506040614498868287016143b0565b9150509250925092565b600080600080608085870312156144b857600080fd5b60006144c687828801614294565b94505060206144d787828801614294565b93505060406144e8878288016143b0565b925050606085013567ffffffffffffffff81111561450557600080fd5b6145118782880161435c565b91505092959194509250565b6000806040838503121561453057600080fd5b600061453e85828601614294565b925050602061454f85828601614308565b9150509250929050565b6000806040838503121561456c57600080fd5b600061457a85828601614294565b925050602061458b858286016143b0565b9150509250929050565b600080602083850312156145a857600080fd5b600083013567ffffffffffffffff8111156145c257600080fd5b6145ce858286016142be565b92509250509250929050565b600080600080608085870312156145f057600080fd5b60006145fe8782880161431d565b945050602085013567ffffffffffffffff81111561461b57600080fd5b6146278782880161435c565b935050604085013567ffffffffffffffff81111561464457600080fd5b61465087828801614386565b9250506060614661878288016143b0565b91505092959194509250565b60006020828403121561467f57600080fd5b600061468d84828501614332565b91505092915050565b6000602082840312156146a857600080fd5b60006146b684828501614347565b91505092915050565b6000602082840312156146d157600080fd5b600082013567ffffffffffffffff8111156146eb57600080fd5b6146f784828501614386565b91505092915050565b60006020828403121561471257600080fd5b6000614720848285016143b0565b91505092915050565b60008060006040848603121561473e57600080fd5b600061474c868287016143b0565b935050602084013567ffffffffffffffff81111561476957600080fd5b614775868287016142be565b92509250509250925092565b60008060006060848603121561479657600080fd5b60006147a4868287016143b0565b93505060206147b5868287016143b0565b925050604084013567ffffffffffffffff8111156147d257600080fd5b6147de8682870161435c565b9150509250925092565b6147f181615c3c565b82525050565b61480081615c2a565b82525050565b61481761481282615c2a565b615d84565b82525050565b61482681615c4e565b82525050565b61483581615c5a565b82525050565b61484c61484782615c5a565b615d96565b82525050565b600061485d82615ad2565b6148678185615ae8565b9350614877818560208601615cd6565b61488081615ea9565b840191505092915050565b600061489682615add565b6148a08185615af9565b93506148b0818560208601615cd6565b6148b981615ea9565b840191505092915050565b60006148cf82615add565b6148d98185615b0a565b93506148e9818560208601615cd6565b80840191505092915050565b6000614902601883615af9565b91507f45434453413a20696e76616c6964207369676e617475726500000000000000006000830152602082019050919050565b6000614942601f83615af9565b91507f45434453413a20696e76616c6964207369676e6174757265206c656e677468006000830152602082019050919050565b6000614982601c83615b0a565b91507f19457468657265756d205369676e6564204d6573736167653a0a3332000000006000830152601c82019050919050565b60006149c2602b83615af9565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000614a28603283615af9565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614a8e602683615af9565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614af4601c83615af9565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000614b34602483615af9565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b9a601983615af9565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614bda601f83615af9565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000614c1a602283615af9565b91507f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c80602c83615af9565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614ce6603883615af9565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614d4c602a83615af9565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614db2602983615af9565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614e18601e83615af9565b91507f547279696e6720746f206d696e7420746f6f206d616e7920746f6b656e7300006000830152602082019050919050565b6000614e58602283615af9565b91507f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ebe602083615af9565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614efe602583615af9565b91507f4d696e74696e6720776f756c6420657863656564204d41585f544f54414c5f5360008301527f5550504c590000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614f64602c83615af9565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614fca602083615af9565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061500a602983615af9565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000615070602f83615af9565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006150d6602183615af9565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061513c603483615af9565b91507f4e756d626572206f6620746f6b656e732063616e6e6f74206265206c6f77657260008301527f207468616e2c206f7220657175616c20746f20300000000000000000000000006020830152604082019050919050565b60006151a2601c83615af9565b91507f53616c65206973206e6f742063757272656e746c7920616374697665000000006000830152602082019050919050565b60006151e2603183615af9565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000615248602c83615af9565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60006152ae600d83615af9565b91507f48617368206d69736d61746368000000000000000000000000000000000000006000830152602082019050919050565b60006152ee601f83615af9565b91507f50726573616c65206973206e6f742063757272656e746c7920616374697665006000830152602082019050919050565b600061532e601683615af9565b91507f4e6f6e63652077617320616c72656164792075736564000000000000000000006000830152602082019050919050565b600061536e601d83615af9565b91507f446972656374206d696e74696e67206973206e6f7420616c6c6f7765640000006000830152602082019050919050565b60006153ae603283615af9565b91507f4f6e652070726573616c6520616464726573732063616e206f6e6c79206d696e60008301527f74203320746f6b656e73206d6178696d756d00000000000000000000000000006020830152604082019050919050565b61541081615cb0565b82525050565b61542761542282615cb0565b615db2565b82525050565b61543681615cba565b82525050565b60006154488286614806565b6014820191506154588285615416565b60208201915061546882846148c4565b9150819050949350505050565b600061548182846148c4565b915081905092915050565b600061549882856148c4565b91506154a482846148c4565b91508190509392505050565b60006154bb82614975565b91506154c7828461483b565b60208201915081905092915050565b60006020820190506154eb60008301846147f7565b92915050565b600060208201905061550660008301846147e8565b92915050565b600060808201905061552160008301876147f7565b61552e60208301866147f7565b61553b6040830185615407565b818103606083015261554d8184614852565b905095945050505050565b600060808201905061556d60008301876147f7565b61557a6020830186615407565b6155876040830185615407565b81810360608301526155998184614852565b905095945050505050565b60006020820190506155b9600083018461481d565b92915050565b60006080820190506155d4600083018761482c565b6155e1602083018661542d565b6155ee604083018561482c565b6155fb606083018461482c565b95945050505050565b6000602082019050818103600083015261561e818461488b565b905092915050565b6000602082019050818103600083015261563f816148f5565b9050919050565b6000602082019050818103600083015261565f81614935565b9050919050565b6000602082019050818103600083015261567f816149b5565b9050919050565b6000602082019050818103600083015261569f81614a1b565b9050919050565b600060208201905081810360008301526156bf81614a81565b9050919050565b600060208201905081810360008301526156df81614ae7565b9050919050565b600060208201905081810360008301526156ff81614b27565b9050919050565b6000602082019050818103600083015261571f81614b8d565b9050919050565b6000602082019050818103600083015261573f81614bcd565b9050919050565b6000602082019050818103600083015261575f81614c0d565b9050919050565b6000602082019050818103600083015261577f81614c73565b9050919050565b6000602082019050818103600083015261579f81614cd9565b9050919050565b600060208201905081810360008301526157bf81614d3f565b9050919050565b600060208201905081810360008301526157df81614da5565b9050919050565b600060208201905081810360008301526157ff81614e0b565b9050919050565b6000602082019050818103600083015261581f81614e4b565b9050919050565b6000602082019050818103600083015261583f81614eb1565b9050919050565b6000602082019050818103600083015261585f81614ef1565b9050919050565b6000602082019050818103600083015261587f81614f57565b9050919050565b6000602082019050818103600083015261589f81614fbd565b9050919050565b600060208201905081810360008301526158bf81614ffd565b9050919050565b600060208201905081810360008301526158df81615063565b9050919050565b600060208201905081810360008301526158ff816150c9565b9050919050565b6000602082019050818103600083015261591f8161512f565b9050919050565b6000602082019050818103600083015261593f81615195565b9050919050565b6000602082019050818103600083015261595f816151d5565b9050919050565b6000602082019050818103600083015261597f8161523b565b9050919050565b6000602082019050818103600083015261599f816152a1565b9050919050565b600060208201905081810360008301526159bf816152e1565b9050919050565b600060208201905081810360008301526159df81615321565b9050919050565b600060208201905081810360008301526159ff81615361565b9050919050565b60006020820190508181036000830152615a1f816153a1565b9050919050565b6000602082019050615a3b6000830184615407565b92915050565b6000604051905081810181811067ffffffffffffffff82111715615a6857615a67615e7a565b5b8060405250919050565b600067ffffffffffffffff821115615a8d57615a8c615e7a565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115615abd57615abc615e7a565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000615b2082615cb0565b9150615b2b83615cb0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615b6057615b5f615ded565b5b828201905092915050565b6000615b7682615cb0565b9150615b8183615cb0565b925082615b9157615b90615e1c565b5b828204905092915050565b6000615ba782615cb0565b9150615bb283615cb0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615beb57615bea615ded565b5b828202905092915050565b6000615c0182615cb0565b9150615c0c83615cb0565b925082821015615c1f57615c1e615ded565b5b828203905092915050565b6000615c3582615c90565b9050919050565b6000615c4782615c90565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015615cf4578082015181840152602081019050615cd9565b83811115615d03576000848401525b50505050565b60006002820490506001821680615d2157607f821691505b60208210811415615d3557615d34615e4b565b5b50919050565b6000615d4682615cb0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615d7957615d78615ded565b5b600182019050919050565b6000615d8f82615da0565b9050919050565b6000819050919050565b6000615dab82615eba565b9050919050565b6000819050919050565b6000615dc782615cb0565b9150615dd283615cb0565b925082615de257615de1615e1c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b615ed081615c2a565b8114615edb57600080fd5b50565b615ee781615c3c565b8114615ef257600080fd5b50565b615efe81615c4e565b8114615f0957600080fd5b50565b615f1581615c5a565b8114615f2057600080fd5b50565b615f2c81615c64565b8114615f3757600080fd5b50565b615f4381615cb0565b8114615f4e57600080fd5b5056fea26469706673582212202a6177e1510ccc995924b78f017ea4b995c24da6a2f6d6465bdcc7ad3889b15364736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000a6f57ae579ba5095137c4a170705c9d09c3d70e900000000000000000000000046fd6b647dc8c82ad8f6cf0cc6b22acad3f6e39d00000000000000000000000084b90d0785a0268c10fb0dcd8d4fd9bfb6c408b5000000000000000000000000ab7dc2e201c62de37ccb57301fcf42eb8506001a000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d5048324e414174536b4867595933564c696b6352717741426933646f50663577564443343574756a386a51372f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c80636c0360eb11610175578063b88d4fde116100dc578063d031370b11610095578063e985e9c51161006f578063e985e9c514610a56578063eb8d244414610a93578063f2fde38b14610abe578063f927a7e714610ae7576102ae565b8063d031370b146109d7578063d2d8cb6714610a00578063df52fe3714610a2b576102ae565b8063b88d4fde146108d6578063be6da4b1146108ff578063c4f471e61461091b578063c6ab67a314610944578063c87b56dd1461096f578063ca9c60c5146109ac576102ae565b80637d7aa8001161012e5780637d7aa800146107d857806386cb3b0b146108035780638da5cb5b1461082c57806390cd1d451461085757806395d89b4114610882578063a22cb465146108ad576102ae565b80636c0360eb146106dc5780636c19e7831461070757806370a08231146107305780637146bd081461076d578063715018a61461079857806371cb2afc146107af576102ae565b806337d8989e116102195780635c7c1aae116101d25780635c7c1aae146105c95780635ccf5e33146105f25780635f71f3fe1461061b57806360d938dc1461065857806362891783146106835780636352211e1461069f576102ae565b806337d8989e146104d15780633ccfd60b146104fa57806342842e0e146105115780634f6ccce71461053a57806355f804b314610577578063587d62d7146105a0576102ae565b8063238ac9331161026b578063238ac933146103d557806323b872dd146104005780632f745c591461042957806333039d3d1461046657806334918dfd1461049157806337960cba146104a8576102ae565b806301ffc9a7146102b357806306fdde03146102f0578063081812fc1461031b578063095ea7b314610358578063109695231461038157806318160ddd146103aa575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d5919061466d565b610b12565b6040516102e791906155a4565b60405180910390f35b3480156102fc57600080fd5b50610305610b8c565b6040516103129190615604565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d9190614700565b610c1e565b60405161034f91906154d6565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190614559565b610ca3565b005b34801561038d57600080fd5b506103a860048036038101906103a391906146bf565b610dbb565b005b3480156103b657600080fd5b506103bf610e51565b6040516103cc9190615a26565b60405180910390f35b3480156103e157600080fd5b506103ea610e5e565b6040516103f791906154d6565b60405180910390f35b34801561040c57600080fd5b5061042760048036038101906104229190614453565b610e84565b005b34801561043557600080fd5b50610450600480360381019061044b9190614559565b610ee4565b60405161045d9190615a26565b60405180910390f35b34801561047257600080fd5b5061047b610f89565b6040516104889190615a26565b60405180910390f35b34801561049d57600080fd5b506104a6610f8f565b005b3480156104b457600080fd5b506104cf60048036038101906104ca91906143c5565b611037565b005b3480156104dd57600080fd5b506104f860048036038101906104f391906143ee565b6110f7565b005b34801561050657600080fd5b5061050f6111b7565b005b34801561051d57600080fd5b5061053860048036038101906105339190614453565b6113a5565b005b34801561054657600080fd5b50610561600480360381019061055c9190614700565b6113c5565b60405161056e9190615a26565b60405180910390f35b34801561058357600080fd5b5061059e600480360381019061059991906146bf565b61145c565b005b3480156105ac57600080fd5b506105c760048036038101906105c291906143ee565b6114f2565b005b3480156105d557600080fd5b506105f060048036038101906105eb9190614729565b6115b2565b005b3480156105fe57600080fd5b5061061960048036038101906106149190614595565b6117ac565b005b34801561062757600080fd5b50610642600480360381019061063d91906143c5565b6118e0565b60405161064f9190615a26565b60405180910390f35b34801561066457600080fd5b5061066d611a00565b60405161067a91906155a4565b60405180910390f35b61069d600480360381019061069891906145da565b611a26565b005b3480156106ab57600080fd5b506106c660048036038101906106c19190614700565b611cef565b6040516106d391906154d6565b60405180910390f35b3480156106e857600080fd5b506106f1611da1565b6040516106fe9190615604565b60405180910390f35b34801561071357600080fd5b5061072e600480360381019061072991906143c5565b611e2f565b005b34801561073c57600080fd5b50610757600480360381019061075291906143c5565b611eef565b6040516107649190615a26565b60405180910390f35b34801561077957600080fd5b50610782611fa7565b60405161078f9190615a26565b60405180910390f35b3480156107a457600080fd5b506107ad611fac565b005b3480156107bb57600080fd5b506107d660048036038101906107d19190614700565b612034565b005b3480156107e457600080fd5b506107ed6120ba565b6040516107fa91906154f1565b60405180910390f35b34801561080f57600080fd5b5061082a600480360381019061082591906143ee565b6120e0565b005b34801561083857600080fd5b506108416121a0565b60405161084e91906154d6565b60405180910390f35b34801561086357600080fd5b5061086c6121ca565b60405161087991906154d6565b60405180910390f35b34801561088e57600080fd5b506108976121f0565b6040516108a49190615604565b60405180910390f35b3480156108b957600080fd5b506108d460048036038101906108cf919061451d565b612282565b005b3480156108e257600080fd5b506108fd60048036038101906108f891906144a2565b612403565b005b61091960048036038101906109149190614700565b612465565b005b34801561092757600080fd5b50610942600480360381019061093d9190614781565b612648565b005b34801561095057600080fd5b506109596126e9565b6040516109669190615604565b60405180910390f35b34801561097b57600080fd5b5061099660048036038101906109919190614700565b612777565b6040516109a39190615604565b60405180910390f35b3480156109b857600080fd5b506109c161281e565b6040516109ce91906154f1565b60405180910390f35b3480156109e357600080fd5b506109fe60048036038101906109f99190614700565b612844565b005b348015610a0c57600080fd5b50610a15612966565b604051610a229190615a26565b60405180910390f35b348015610a3757600080fd5b50610a40612972565b604051610a4d9190615a26565b60405180910390f35b348015610a6257600080fd5b50610a7d6004803603810190610a789190614417565b612978565b604051610a8a91906155a4565b60405180910390f35b348015610a9f57600080fd5b50610aa8612a0c565b604051610ab591906155a4565b60405180910390f35b348015610aca57600080fd5b50610ae56004803603810190610ae091906143c5565b612a1f565b005b348015610af357600080fd5b50610afc612b17565b604051610b0991906154f1565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b855750610b8482612b3d565b5b9050919050565b606060008054610b9b90615d09565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc790615d09565b8015610c145780601f10610be957610100808354040283529160200191610c14565b820191906000526020600020905b815481529060010190602001808311610bf757829003601f168201915b5050505050905090565b6000610c2982612c1f565b610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f90615866565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cae82611cef565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d16906158e6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d3e612c8b565b73ffffffffffffffffffffffffffffffffffffffff161480610d6d5750610d6c81610d67612c8b565b612978565b5b610dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da390615786565b60405180910390fd5b610db68383612c93565b505050565b610dc3612c8b565b73ffffffffffffffffffffffffffffffffffffffff16610de16121a0565b73ffffffffffffffffffffffffffffffffffffffff1614610e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2e90615886565b60405180910390fd5b80600b9080519060200190610e4d929190614175565b5050565b6000600880549050905090565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e95610e8f612c8b565b82612d4c565b610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb90615946565b60405180910390fd5b610edf838383612e2a565b505050565b6000610eef83611eef565b8210610f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2790615666565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61271081565b610f97612c8b565b73ffffffffffffffffffffffffffffffffffffffff16610fb56121a0565b73ffffffffffffffffffffffffffffffffffffffff161461100b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100290615886565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b61103f612c8b565b73ffffffffffffffffffffffffffffffffffffffff1661105d6121a0565b73ffffffffffffffffffffffffffffffffffffffff16146110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa90615886565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6110ff612c8b565b73ffffffffffffffffffffffffffffffffffffffff1661111d6121a0565b73ffffffffffffffffffffffffffffffffffffffff1614611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a90615886565b60405180910390fd5b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6111bf612c8b565b73ffffffffffffffffffffffffffffffffffffffff166111dd6121a0565b73ffffffffffffffffffffffffffffffffffffffff1614611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a90615886565b60405180910390fd5b60004790506000600a826112479190615b6b565b90506000600282846112599190615bf6565b6112639190615b6b565b9050601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112cd573d6000803e3d6000fd5b50601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611336573d6000803e3d6000fd5b50601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801561139f573d6000803e3d6000fd5b50505050565b6113c083838360405180602001604052806000815250612403565b505050565b60006113cf610e51565b8210611410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140790615966565b60405180910390fd5b6008828154811061144a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b611464612c8b565b73ffffffffffffffffffffffffffffffffffffffff166114826121a0565b73ffffffffffffffffffffffffffffffffffffffff16146114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf90615886565b60405180910390fd5b80601390805190602001906114ee929190614175565b5050565b6114fa612c8b565b73ffffffffffffffffffffffffffffffffffffffff166115186121a0565b73ffffffffffffffffffffffffffffffffffffffff161461156e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156590615886565b60405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6115ba612c8b565b73ffffffffffffffffffffffffffffffffffffffff166115d86121a0565b73ffffffffffffffffffffffffffffffffffffffff161461162e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162590615886565b60405180910390fd5b6003831115611672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166990615a06565b60405180910390fd5b60005b828290508110156117a657600073ffffffffffffffffffffffffffffffffffffffff168383838181106116d1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906116e691906143c5565b73ffffffffffffffffffffffffffffffffffffffff161461179357836010600085858581811061173f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061175491906143c5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b808061179e90615d3b565b915050611675565b50505050565b6117b4612c8b565b73ffffffffffffffffffffffffffffffffffffffff166117d26121a0565b73ffffffffffffffffffffffffffffffffffffffff1614611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90615886565b60405180910390fd5b60005b828290508110156118db57600060106000858585818110611875577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061188a91906143c5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806118d390615d3b565b91505061182b565b505050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161196e5760006119f9565b601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119f89190615bf6565b5b9050919050565b600042600f5410158015611a215750600e60009054906101000a900460ff16155b905090565b600e60009054906101000a900460ff16611a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6c90615926565b60405180910390fd5b61271081611a81610e51565b611a8b9190615b15565b1115611acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac390615846565b60405180910390fd5b6005811115611b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b07906157e6565b60405180910390fd5b60008111611b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4a90615906565b60405180910390fd5b348167011c37937e080000611b689190615b9c565b14611ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9f90615726565b60405180910390fd5b611bb28484613086565b611bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be8906159e6565b60405180910390fd5b600d82604051611c019190615475565b908152602001604051809103902060009054906101000a900460ff1615611c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c54906159c6565b60405180910390fd5b83611c693383856130f3565b14611ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca090615986565b60405180910390fd5b6001600d83604051611cbb9190615475565b908152602001604051809103902060006101000a81548160ff021916908315150217905550611ce981613154565b50505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f906157c6565b60405180910390fd5b80915050919050565b60138054611dae90615d09565b80601f0160208091040260200160405190810160405280929190818152602001828054611dda90615d09565b8015611e275780601f10611dfc57610100808354040283529160200191611e27565b820191906000526020600020905b815481529060010190602001808311611e0a57829003601f168201915b505050505081565b611e37612c8b565b73ffffffffffffffffffffffffffffffffffffffff16611e556121a0565b73ffffffffffffffffffffffffffffffffffffffff1614611eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea290615886565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f57906157a6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600581565b611fb4612c8b565b73ffffffffffffffffffffffffffffffffffffffff16611fd26121a0565b73ffffffffffffffffffffffffffffffffffffffff1614612028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201f90615886565b60405180910390fd5b6120326000613193565b565b61203c612c8b565b73ffffffffffffffffffffffffffffffffffffffff1661205a6121a0565b73ffffffffffffffffffffffffffffffffffffffff16146120b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a790615886565b60405180910390fd5b80600f8190555050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6120e8612c8b565b73ffffffffffffffffffffffffffffffffffffffff166121066121a0565b73ffffffffffffffffffffffffffffffffffffffff161461215c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215390615886565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600180546121ff90615d09565b80601f016020809104026020016040519081016040528092919081815260200182805461222b90615d09565b80156122785780601f1061224d57610100808354040283529160200191612278565b820191906000526020600020905b81548152906001019060200180831161225b57829003601f168201915b5050505050905090565b61228a612c8b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ef90615706565b60405180910390fd5b8060056000612305612c8b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166123b2612c8b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123f791906155a4565b60405180910390a35050565b61241461240e612c8b565b83612d4c565b612453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244a90615946565b60405180910390fd5b61245f84848484613259565b50505050565b61246d611a00565b6124ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a3906159a6565b60405180910390fd5b6124b5336118e0565b8111156124f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ee906157e6565b60405180910390fd5b6000811161253a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253190615906565b60405180910390fd5b61271081612546610e51565b6125509190615b15565b1115612591576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258890615846565b60405180910390fd5b348167011c37937e0800006125a69190615b9c565b146125e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125dd90615726565b60405180910390fd5b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126359190615b15565b9250508190555061264581613154565b50565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635099eaf3338585856040518563ffffffff1660e01b81526004016126a99493929190615558565b600060405180830381600087803b1580156126c357600080fd5b505af11580156126d7573d6000803e3d6000fd5b505050506126e4826132b5565b505050565b600b80546126f690615d09565b80601f016020809104026020016040519081016040528092919081815260200182805461272290615d09565b801561276f5780601f106127445761010080835404028352916020019161276f565b820191906000526020600020905b81548152906001019060200180831161275257829003601f168201915b505050505081565b606061278282612c1f565b6127c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b8906158c6565b60405180910390fd5b60006127cb6133c6565b905060008151116127eb5760405180602001604052806000815250612816565b806127f584613458565b60405160200161280692919061548c565b6040516020818303038152906040525b915050919050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61284c612c8b565b73ffffffffffffffffffffffffffffffffffffffff1661286a6121a0565b73ffffffffffffffffffffffffffffffffffffffff16146128c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b790615886565b60405180910390fd5b60008111612903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fa90615906565b60405180910390fd5b6127108161290f610e51565b6129199190615b15565b111561295a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295190615846565b60405180910390fd5b61296381613154565b50565b67011c37937e08000081565b600f5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60009054906101000a900460ff1681565b612a27612c8b565b73ffffffffffffffffffffffffffffffffffffffff16612a456121a0565b73ffffffffffffffffffffffffffffffffffffffff1614612a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9290615886565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b02906156a6565b60405180910390fd5b612b1481613193565b50565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612c0857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612c185750612c1782613605565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612d0683611cef565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612d5782612c1f565b612d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8d90615766565b60405180910390fd5b6000612da183611cef565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612e1057508373ffffffffffffffffffffffffffffffffffffffff16612df884610c1e565b73ffffffffffffffffffffffffffffffffffffffff16145b80612e215750612e208185612978565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612e4a82611cef565b73ffffffffffffffffffffffffffffffffffffffff1614612ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e97906158a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f07906156e6565b60405180910390fd5b612f1b83838361366f565b612f26600082612c93565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f769190615bf6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fcd9190615b15565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061309b828461378390919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b60008084848460405160200161310b9392919061543c565b6040516020818303038152906040528051906020012060405160200161313191906154b0565b604051602081830303815290604052805190602001209050809150509392505050565b60005b8181101561318f5761317c33600161316d610e51565b6131779190615b15565b613832565b808061318790615d3b565b915050613157565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613264848484612e2a565b61327084848484613850565b6132af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132a690615686565b60405180910390fd5b50505050565b60006132c082611cef565b90506132ce8160008461366f565b6132d9600083612c93565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133299190615bf6565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6060601380546133d590615d09565b80601f016020809104026020016040519081016040528092919081815260200182805461340190615d09565b801561344e5780601f106134235761010080835404028352916020019161344e565b820191906000526020600020905b81548152906001019060200180831161343157829003601f168201915b5050505050905090565b606060008214156134a0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613600565b600082905060005b600082146134d25780806134bb90615d3b565b915050600a826134cb9190615b6b565b91506134a8565b60008167ffffffffffffffff811115613514577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135465781602001600182028036833780820191505090505b5090505b600085146135f95760018261355f9190615bf6565b9150600a8561356e9190615dbc565b603061357a9190615b15565b60f81b8183815181106135b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135f29190615b6b565b945061354a565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61367a8383836139e7565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136bd576136b8816139ec565b6136fc565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146136fb576136fa8382613a35565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561373f5761373a81613ba2565b61377e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461377d5761377c8282613ce5565b5b5b505050565b60006041825114156137c25760008060006020850151925060408501519150606085015160001a90506137b886828585613d64565b935050505061382c565b6040825114156137f15760008060208401519150604084015190506137e8858383613eef565b9250505061382c565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161382390615646565b60405180910390fd5b92915050565b61384c828260405180602001604052806000815250613f39565b5050565b60006138718473ffffffffffffffffffffffffffffffffffffffff16613f94565b156139da578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261389a612c8b565b8786866040518563ffffffff1660e01b81526004016138bc949392919061550c565b602060405180830381600087803b1580156138d657600080fd5b505af192505050801561390757506040513d601f19601f820116820180604052508101906139049190614696565b60015b61398a573d8060008114613937576040519150601f19603f3d011682016040523d82523d6000602084013e61393c565b606091505b50600081511415613982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161397990615686565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506139df565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613a4284611eef565b613a4c9190615bf6565b9050600060076000848152602001908152602001600020549050818114613b31576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613bb69190615bf6565b9050600060096000848152602001908152602001600020549050600060088381548110613c0c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613c54577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613cc9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613cf083611eef565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08260001c1115613dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dc390615746565b60405180910390fd5b601b8460ff161480613de15750601c8460ff16145b613e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e1790615806565b60405180910390fd5b600060018686868660405160008152602001604052604051613e4594939291906155bf565b6020604051602081039080840390855afa158015613e67573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613eda90615626565b60405180910390fd5b80915050949350505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84169150601b8460ff1c019050613f2e86828785613d64565b925050509392505050565b613f438383613fa7565b613f506000848484613850565b613f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f8690615686565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161400e90615826565b60405180910390fd5b61402081612c1f565b15614060576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401614057906156c6565b60405180910390fd5b61406c6000838361366f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546140bc9190615b15565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461418190615d09565b90600052602060002090601f0160209004810192826141a357600085556141ea565b82601f106141bc57805160ff19168380011785556141ea565b828001600101855582156141ea579182015b828111156141e95782518255916020019190600101906141ce565b5b5090506141f791906141fb565b5090565b5b808211156142145760008160009055506001016141fc565b5090565b600061422b61422684615a72565b615a41565b90508281526020810184848401111561424357600080fd5b61424e848285615cc7565b509392505050565b600061426961426484615aa2565b615a41565b90508281526020810184848401111561428157600080fd5b61428c848285615cc7565b509392505050565b6000813590506142a381615ec7565b92915050565b6000813590506142b881615ede565b92915050565b60008083601f8401126142d057600080fd5b8235905067ffffffffffffffff8111156142e957600080fd5b60208301915083602082028301111561430157600080fd5b9250929050565b60008135905061431781615ef5565b92915050565b60008135905061432c81615f0c565b92915050565b60008135905061434181615f23565b92915050565b60008151905061435681615f23565b92915050565b600082601f83011261436d57600080fd5b813561437d848260208601614218565b91505092915050565b600082601f83011261439757600080fd5b81356143a7848260208601614256565b91505092915050565b6000813590506143bf81615f3a565b92915050565b6000602082840312156143d757600080fd5b60006143e584828501614294565b91505092915050565b60006020828403121561440057600080fd5b600061440e848285016142a9565b91505092915050565b6000806040838503121561442a57600080fd5b600061443885828601614294565b925050602061444985828601614294565b9150509250929050565b60008060006060848603121561446857600080fd5b600061447686828701614294565b935050602061448786828701614294565b9250506040614498868287016143b0565b9150509250925092565b600080600080608085870312156144b857600080fd5b60006144c687828801614294565b94505060206144d787828801614294565b93505060406144e8878288016143b0565b925050606085013567ffffffffffffffff81111561450557600080fd5b6145118782880161435c565b91505092959194509250565b6000806040838503121561453057600080fd5b600061453e85828601614294565b925050602061454f85828601614308565b9150509250929050565b6000806040838503121561456c57600080fd5b600061457a85828601614294565b925050602061458b858286016143b0565b9150509250929050565b600080602083850312156145a857600080fd5b600083013567ffffffffffffffff8111156145c257600080fd5b6145ce858286016142be565b92509250509250929050565b600080600080608085870312156145f057600080fd5b60006145fe8782880161431d565b945050602085013567ffffffffffffffff81111561461b57600080fd5b6146278782880161435c565b935050604085013567ffffffffffffffff81111561464457600080fd5b61465087828801614386565b9250506060614661878288016143b0565b91505092959194509250565b60006020828403121561467f57600080fd5b600061468d84828501614332565b91505092915050565b6000602082840312156146a857600080fd5b60006146b684828501614347565b91505092915050565b6000602082840312156146d157600080fd5b600082013567ffffffffffffffff8111156146eb57600080fd5b6146f784828501614386565b91505092915050565b60006020828403121561471257600080fd5b6000614720848285016143b0565b91505092915050565b60008060006040848603121561473e57600080fd5b600061474c868287016143b0565b935050602084013567ffffffffffffffff81111561476957600080fd5b614775868287016142be565b92509250509250925092565b60008060006060848603121561479657600080fd5b60006147a4868287016143b0565b93505060206147b5868287016143b0565b925050604084013567ffffffffffffffff8111156147d257600080fd5b6147de8682870161435c565b9150509250925092565b6147f181615c3c565b82525050565b61480081615c2a565b82525050565b61481761481282615c2a565b615d84565b82525050565b61482681615c4e565b82525050565b61483581615c5a565b82525050565b61484c61484782615c5a565b615d96565b82525050565b600061485d82615ad2565b6148678185615ae8565b9350614877818560208601615cd6565b61488081615ea9565b840191505092915050565b600061489682615add565b6148a08185615af9565b93506148b0818560208601615cd6565b6148b981615ea9565b840191505092915050565b60006148cf82615add565b6148d98185615b0a565b93506148e9818560208601615cd6565b80840191505092915050565b6000614902601883615af9565b91507f45434453413a20696e76616c6964207369676e617475726500000000000000006000830152602082019050919050565b6000614942601f83615af9565b91507f45434453413a20696e76616c6964207369676e6174757265206c656e677468006000830152602082019050919050565b6000614982601c83615b0a565b91507f19457468657265756d205369676e6564204d6573736167653a0a3332000000006000830152601c82019050919050565b60006149c2602b83615af9565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000614a28603283615af9565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614a8e602683615af9565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614af4601c83615af9565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000614b34602483615af9565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b9a601983615af9565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614bda601f83615af9565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000614c1a602283615af9565b91507f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c80602c83615af9565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614ce6603883615af9565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614d4c602a83615af9565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614db2602983615af9565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614e18601e83615af9565b91507f547279696e6720746f206d696e7420746f6f206d616e7920746f6b656e7300006000830152602082019050919050565b6000614e58602283615af9565b91507f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ebe602083615af9565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614efe602583615af9565b91507f4d696e74696e6720776f756c6420657863656564204d41585f544f54414c5f5360008301527f5550504c590000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614f64602c83615af9565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614fca602083615af9565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061500a602983615af9565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000615070602f83615af9565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006150d6602183615af9565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061513c603483615af9565b91507f4e756d626572206f6620746f6b656e732063616e6e6f74206265206c6f77657260008301527f207468616e2c206f7220657175616c20746f20300000000000000000000000006020830152604082019050919050565b60006151a2601c83615af9565b91507f53616c65206973206e6f742063757272656e746c7920616374697665000000006000830152602082019050919050565b60006151e2603183615af9565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000615248602c83615af9565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60006152ae600d83615af9565b91507f48617368206d69736d61746368000000000000000000000000000000000000006000830152602082019050919050565b60006152ee601f83615af9565b91507f50726573616c65206973206e6f742063757272656e746c7920616374697665006000830152602082019050919050565b600061532e601683615af9565b91507f4e6f6e63652077617320616c72656164792075736564000000000000000000006000830152602082019050919050565b600061536e601d83615af9565b91507f446972656374206d696e74696e67206973206e6f7420616c6c6f7765640000006000830152602082019050919050565b60006153ae603283615af9565b91507f4f6e652070726573616c6520616464726573732063616e206f6e6c79206d696e60008301527f74203320746f6b656e73206d6178696d756d00000000000000000000000000006020830152604082019050919050565b61541081615cb0565b82525050565b61542761542282615cb0565b615db2565b82525050565b61543681615cba565b82525050565b60006154488286614806565b6014820191506154588285615416565b60208201915061546882846148c4565b9150819050949350505050565b600061548182846148c4565b915081905092915050565b600061549882856148c4565b91506154a482846148c4565b91508190509392505050565b60006154bb82614975565b91506154c7828461483b565b60208201915081905092915050565b60006020820190506154eb60008301846147f7565b92915050565b600060208201905061550660008301846147e8565b92915050565b600060808201905061552160008301876147f7565b61552e60208301866147f7565b61553b6040830185615407565b818103606083015261554d8184614852565b905095945050505050565b600060808201905061556d60008301876147f7565b61557a6020830186615407565b6155876040830185615407565b81810360608301526155998184614852565b905095945050505050565b60006020820190506155b9600083018461481d565b92915050565b60006080820190506155d4600083018761482c565b6155e1602083018661542d565b6155ee604083018561482c565b6155fb606083018461482c565b95945050505050565b6000602082019050818103600083015261561e818461488b565b905092915050565b6000602082019050818103600083015261563f816148f5565b9050919050565b6000602082019050818103600083015261565f81614935565b9050919050565b6000602082019050818103600083015261567f816149b5565b9050919050565b6000602082019050818103600083015261569f81614a1b565b9050919050565b600060208201905081810360008301526156bf81614a81565b9050919050565b600060208201905081810360008301526156df81614ae7565b9050919050565b600060208201905081810360008301526156ff81614b27565b9050919050565b6000602082019050818103600083015261571f81614b8d565b9050919050565b6000602082019050818103600083015261573f81614bcd565b9050919050565b6000602082019050818103600083015261575f81614c0d565b9050919050565b6000602082019050818103600083015261577f81614c73565b9050919050565b6000602082019050818103600083015261579f81614cd9565b9050919050565b600060208201905081810360008301526157bf81614d3f565b9050919050565b600060208201905081810360008301526157df81614da5565b9050919050565b600060208201905081810360008301526157ff81614e0b565b9050919050565b6000602082019050818103600083015261581f81614e4b565b9050919050565b6000602082019050818103600083015261583f81614eb1565b9050919050565b6000602082019050818103600083015261585f81614ef1565b9050919050565b6000602082019050818103600083015261587f81614f57565b9050919050565b6000602082019050818103600083015261589f81614fbd565b9050919050565b600060208201905081810360008301526158bf81614ffd565b9050919050565b600060208201905081810360008301526158df81615063565b9050919050565b600060208201905081810360008301526158ff816150c9565b9050919050565b6000602082019050818103600083015261591f8161512f565b9050919050565b6000602082019050818103600083015261593f81615195565b9050919050565b6000602082019050818103600083015261595f816151d5565b9050919050565b6000602082019050818103600083015261597f8161523b565b9050919050565b6000602082019050818103600083015261599f816152a1565b9050919050565b600060208201905081810360008301526159bf816152e1565b9050919050565b600060208201905081810360008301526159df81615321565b9050919050565b600060208201905081810360008301526159ff81615361565b9050919050565b60006020820190508181036000830152615a1f816153a1565b9050919050565b6000602082019050615a3b6000830184615407565b92915050565b6000604051905081810181811067ffffffffffffffff82111715615a6857615a67615e7a565b5b8060405250919050565b600067ffffffffffffffff821115615a8d57615a8c615e7a565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115615abd57615abc615e7a565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000615b2082615cb0565b9150615b2b83615cb0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615b6057615b5f615ded565b5b828201905092915050565b6000615b7682615cb0565b9150615b8183615cb0565b925082615b9157615b90615e1c565b5b828204905092915050565b6000615ba782615cb0565b9150615bb283615cb0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615beb57615bea615ded565b5b828202905092915050565b6000615c0182615cb0565b9150615c0c83615cb0565b925082821015615c1f57615c1e615ded565b5b828203905092915050565b6000615c3582615c90565b9050919050565b6000615c4782615c90565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015615cf4578082015181840152602081019050615cd9565b83811115615d03576000848401525b50505050565b60006002820490506001821680615d2157607f821691505b60208210811415615d3557615d34615e4b565b5b50919050565b6000615d4682615cb0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615d7957615d78615ded565b5b600182019050919050565b6000615d8f82615da0565b9050919050565b6000819050919050565b6000615dab82615eba565b9050919050565b6000819050919050565b6000615dc782615cb0565b9150615dd283615cb0565b925082615de257615de1615e1c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b615ed081615c2a565b8114615edb57600080fd5b50565b615ee781615c3c565b8114615ef257600080fd5b50565b615efe81615c4e565b8114615f0957600080fd5b50565b615f1581615c5a565b8114615f2057600080fd5b50565b615f2c81615c64565b8114615f3757600080fd5b50565b615f4381615cb0565b8114615f4e57600080fd5b5056fea26469706673582212202a6177e1510ccc995924b78f017ea4b995c24da6a2f6d6465bdcc7ad3889b15364736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000a6f57ae579ba5095137c4a170705c9d09c3d70e900000000000000000000000046fd6b647dc8c82ad8f6cf0cc6b22acad3f6e39d00000000000000000000000084b90d0785a0268c10fb0dcd8d4fd9bfb6c408b5000000000000000000000000ab7dc2e201c62de37ccb57301fcf42eb8506001a000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d5048324e414174536b4867595933564c696b6352717741426933646f50663577564443343574756a386a51372f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initialBaseURI (string): https://ipfs.io/ipfs/QmPH2NAAtSkHgYY3VLikcRqwABi3doPf5wVDC45tuj8jQ7/
Arg [1] : _member1Address (address): 0xa6f57ae579BA5095137C4a170705c9d09c3d70E9
Arg [2] : _member2Address (address): 0x46Fd6B647Dc8C82aD8f6cf0CC6b22ACad3f6e39d
Arg [3] : _member3Address (address): 0x84B90d0785a0268c10fb0dcD8D4fd9bfB6C408b5
Arg [4] : _signer (address): 0xAB7DC2e201c62De37ccB57301fcF42eB8506001a

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 000000000000000000000000a6f57ae579ba5095137c4a170705c9d09c3d70e9
Arg [2] : 00000000000000000000000046fd6b647dc8c82ad8f6cf0cc6b22acad3f6e39d
Arg [3] : 00000000000000000000000084b90d0785a0268c10fb0dcd8d4fd9bfb6c408b5
Arg [4] : 000000000000000000000000ab7dc2e201c62de37ccb57301fcf42eb8506001a
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [6] : 68747470733a2f2f697066732e696f2f697066732f516d5048324e414174536b
Arg [7] : 4867595933564c696b6352717741426933646f50663577564443343574756a38
Arg [8] : 6a51372f00000000000000000000000000000000000000000000000000000000


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.