ETH Price: $3,296.11 (-3.61%)
Gas: 10 Gwei

Token

Infinites (INF)
 

Overview

Max Total Supply

512 INF

Holders

301

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
mattdoogue.eth
Balance
1 INF
0x1A4B7409e020140443a02EF26858a7e53aC7D652
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Infinites AI is a collection of 512 unique artworks generated at the time of the minting process. Each infinite was created utilizing the intersection of two generative processes: A StyleGAN trained with a curation of artworks from the Great Masters, and an on-chain generative process that augmented a selection of the generated pieces from the first process. A set of images previously generated by the StyleGAN are used by a customized software to create an on-chain augmentation. The custom software is written in three.js and generates unique artifacts based on Ethereum transactions. Check also [Infinites IRL](https://opensea.io/collection/infinites-irl) Or other projects by [far](https://twitter.com/0xfar): [mSeascape(s)](https://opensea.io/collection/mseascapes) [processes](https://opensea.io/collection/farprocesses) [Fragments](https://opensea.io/collection/fragments-far)

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Infinites

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 13 of 18: Infinites.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721Enumerable.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./Strings.sol";

import "./ContentMixin.sol";
import "./NativeMetaTransaction.sol";

contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

contract Infinites is
    ERC721Enumerable,
    Ownable,
    ContextMixin,
    NativeMetaTransaction
{
    using SafeMath for uint256;
    using Strings for uint256;

    address proxyRegistryAddress;

    uint256 private mintingFees = 15e16;

    uint256 private currentIndex = 1;

    mapping(uint256 => string) public serialIdToInfinite;
    mapping(string => bool) public existingInfinites;

    uint256 private maxMints = 512;
    uint256 private maxInfinites = 44;

    uint256 private minBaseSpeed = 2;
    uint256 private maxBaseSpeed = 10;

    uint256 private minNoise = 2;
    uint256 private maxNoise = 46;

    string private baseURI =
        "https://infinites.s3.us-east-2.amazonaws.com/json/";

    address dev = 0x7bd8547188e1Dc634D5A340798Ac97581171dC2B;
    address far = 0x20E40560434FC25f8BafFaac820Eab5C369D4589;

    bool private isMintingEnabled = true;

    constructor(
        string memory _name,
        string memory _symbol,
        address _proxyRegistryAddress
    ) ERC721(_name, _symbol) {
        proxyRegistryAddress = _proxyRegistryAddress;
        _initializeEIP712(_name);
    }

    function setMintingEnabled(bool isEnabled) public onlyOwner {
        isMintingEnabled = isEnabled;
    }

    /**
     * @dev Mints a token to an address with a tokenURI.
     * @param _to address of the future owner of the token
     */
    function mint(address _to) public payable returns (uint256) {
        uint256 tokenId = currentIndex;
        require(isMintingEnabled == true, "Minting not allowed currently");
        require(msg.value == mintingFees, "Need to send correct ETH.");
        require(tokenId <= maxMints, "There aren't any infinites left.");
        string memory generatedInfinite = generateInfinite(tokenId);
        require(
            !(isExistingInfinite(generatedInfinite)),
            "Unable to mint, please try again."
        );
        serialIdToInfinite[tokenId] = generatedInfinite;
        existingInfinites[generatedInfinite] = true;
        _mint(_to, tokenId);
        currentIndex = currentIndex + 1;
        return tokenId;
    }

    function generateInfinite(uint256 serialId)
        internal
        view
        returns (string memory)
    {
        uint256 randomInfiniteIndex = (getRandomNumber(
            serialId,
            0,
            maxInfinites
        ) % (maxInfinites - 1)) + 1;

        uint256 randomBaseSpeed = (getRandomNumber(
            randomInfiniteIndex,
            serialId,
            maxInfinites
        ) % (maxBaseSpeed - minBaseSpeed)) + minBaseSpeed;

        uint256 randomNoise = (getRandomNumber(
            randomInfiniteIndex,
            maxInfinites,
            serialId
        ) % (maxNoise - minNoise)) + minNoise;

        return
            createInfiniteStringRepresentation(
                randomInfiniteIndex,
                randomBaseSpeed,
                randomNoise
            );
    }

    function isExistingInfinite(string memory infinite)
        internal
        view
        returns (bool)
    {
        return existingInfinites[infinite];
    }

    function createInfiniteStringRepresentation(
        uint256 index,
        uint256 baseSpeed,
        uint256 randomNoise
    ) internal pure returns (string memory) {
        return
            string(
                abi.encodePacked(
                    convertToString(index),
                    convertToString(baseSpeed),
                    convertToString(randomNoise)
                )
            );
    }

    function convertToString(uint256 num)
        internal
        pure
        returns (string memory)
    {
        if (num == 0) {
            return "00";
        } else if (num == 1) {
            return "01";
        } else if (num == 2) {
            return "02";
        } else if (num == 3) {
            return "03";
        } else if (num == 4) {
            return "04";
        } else if (num == 5) {
            return "05";
        } else if (num == 6) {
            return "06";
        } else if (num == 7) {
            return "07";
        } else if (num == 8) {
            return "08";
        } else if (num == 9) {
            return "09";
        }

        return Strings.toString(num);
    }

    function getRandomNumber(
        uint256 seed1,
        uint256 seed2,
        uint256 seed3
    ) internal view returns (uint256) {
        uint256 randomNum = uint256(
            keccak256(
                abi.encode(
                    msg.sender,
                    tx.gasprice,
                    block.number,
                    block.timestamp,
                    blockhash(block.number - 1),
                    seed1,
                    seed2,
                    seed3
                )
            )
        );

        // never return 0, edge cases where first probability of accessory
        // could be 0 while rerolling
        return (randomNum % 10000) + 1;
    }

    function setMaxInfinites(uint256 _maxInfinites) public onlyOwner {
        maxInfinites = _maxInfinites;
    }

    function setMintingFees(uint256 _fees) public onlyOwner {
        mintingFees = _fees;
    }

    function withdraw() public onlyOwner {
        payable(dev).transfer(address(this).balance.div(2));
        payable(far).transfer(address(this).balance);
    }

    function setBaseURI(string memory _uri) public onlyOwner {
        baseURI = _uri;
    }

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

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        return string(abi.encodePacked(baseURI, _tokenId.toString(), ".json"));
    }

    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    /**
     * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
     */
    function _msgSender() internal view override returns (address sender) {
        return ContextMixin.msgSender();
    }

    function contractURI() public pure returns (string memory) {
        return
            "https://infinites.s3.us-east-2.amazonaws.com/json/infinite.json";
    }
}

File 1 of 18: 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 2 of 18: ContentMixin.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

abstract contract ContextMixin {
    function msgSender()
        internal
        view
        returns (address payable sender)
    {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}

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

pragma solidity ^0.8.0;

import {Initializable} from "./Initializable.sol";

contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string constant public ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(
        bytes(
            "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
        )
    );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contracts that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(
        string memory name
    )
        internal
        initializer
    {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}

File 5 of 18: 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 6 of 18: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./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 18: 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 8 of 18: 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);
}

File 9 of 18: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./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 10 of 18: 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 11 of 18: 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 12 of 18: 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 14 of 18: Initializable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}

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

pragma solidity ^0.8.0;

import "./SafeMath.sol";
import {EIP712Base} from "./EIP712Base.sol";

contract NativeMetaTransaction is EIP712Base {
    using SafeMath for uint256;
    bytes32 private constant META_TRANSACTION_TYPEHASH =
        keccak256(
            bytes(
                "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
            )
        );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress].add(1);

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}

File 16 of 18: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./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 17 of 18: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 18 of 18: 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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_proxyRegistryAddress","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":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","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":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"existingInfinites","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"serialIdToInfinite","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxInfinites","type":"uint256"}],"name":"setMaxInfinites","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isEnabled","type":"bool"}],"name":"setMintingEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fees","type":"uint256"}],"name":"setMintingFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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"}]

600a805460ff60a01b19168155670214e8348c4f0000600e556001600f55610200601255602c60135560026014819055601591909155601655602e60175560e060405260326080818152906200329b60a0398051620000679160189160209091019062000342565b50601980546001600160a01b031916737bd8547188e1dc634d5a340798ac97581171dc2b179055601a8054740120e40560434fc25f8baffaac820eab5c369d45896001600160a81b0319909116179055348015620000c457600080fd5b506040516200331c3803806200331c833981016040819052620000e7916200049f565b8251839083906200010090600090602085019062000342565b5080516200011690600190602084019062000342565b505050620001336200012d6200016260201b60201c565b6200017e565b600d80546001600160a01b0319166001600160a01b0383161790556200015983620001d0565b5050506200057f565b6000620001796200024160201b620015321760201c565b905090565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a54600160a01b900460ff1615620002205760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015260640160405180910390fd5b6200022b81620002a0565b50600a805460ff60a01b1916600160a01b179055565b6000333014156200029a57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506200029d9050565b50335b90565b6040518060800160405280604f8152602001620032cd604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600b55565b82805462000350906200052c565b90600052602060002090601f016020900481019282620003745760008555620003bf565b82601f106200038f57805160ff1916838001178555620003bf565b82800160010185558215620003bf579182015b82811115620003bf578251825591602001919060010190620003a2565b50620003cd929150620003d1565b5090565b5b80821115620003cd5760008155600101620003d2565b600082601f830112620003fa57600080fd5b81516001600160401b038082111562000417576200041762000569565b604051601f8301601f19908116603f0116810190828211818310171562000442576200044262000569565b816040528381526020925086838588010111156200045f57600080fd5b600091505b8382101562000483578582018301518183018401529082019062000464565b83821115620004955760008385830101525b9695505050505050565b600080600060608486031215620004b557600080fd5b83516001600160401b0380821115620004cd57600080fd5b620004db87838801620003e8565b94506020860151915080821115620004f257600080fd5b506200050186828701620003e8565b604086015190935090506001600160a01b03811681146200052157600080fd5b809150509250925092565b600181811c908216806200054157607f821691505b602082108114156200056357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612d0c806200058f6000396000f3fe6080604052600436106101ee5760003560e01c80635115554c1161010d57806395d89b41116100a0578063dcd5fff81161006f578063dcd5fff81461058c578063e8a3d485146105ac578063e985e9c5146105c1578063eec41a77146105e1578063f2fde38b1461060157600080fd5b806395d89b4114610517578063a22cb4651461052c578063b88d4fde1461054c578063c87b56dd1461056c57600080fd5b806370a08231116100dc57806370a0823114610489578063715018a6146104a95780638da5cb5b146104be578063905177db146104dc57600080fd5b80635115554c1461041657806355f804b3146104365780636352211e146104565780636a6278421461047657600080fd5b806323b872dd116101855780633ccfd60b116101545780633ccfd60b146103a157806342842e0e146103b65780634ea3871a146103d65780634f6ccce7146103f657600080fd5b806323b872dd146103185780632d0335ab146103385780632f745c591461036e5780633408e4701461038e57600080fd5b80630c53c51c116101c15780630c53c51c146102a45780630f7e5970146102b757806318160ddd146102e457806320379ee51461030357600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004612745565b610621565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d61064c565b60405161021f91906129f7565b34801561025657600080fd5b5061026a6102653660046127e5565b6106de565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d3660046126fe565b610778565b005b61023d6102b2366004612680565b6108a0565b3480156102c357600080fd5b5061023d604051806040016040528060018152602001603160f81b81525081565b3480156102f057600080fd5b506008545b60405190815260200161021f565b34801561030f57600080fd5b50600b546102f5565b34801561032457600080fd5b506102a261033336600461259e565b610a8a565b34801561034457600080fd5b506102f5610353366004612548565b6001600160a01b03166000908152600c602052604090205490565b34801561037a57600080fd5b506102f56103893660046126fe565b610ac2565b34801561039a57600080fd5b50466102f5565b3480156103ad57600080fd5b506102a2610b58565b3480156103c257600080fd5b506102a26103d136600461259e565b610c20565b3480156103e257600080fd5b506102a26103f136600461272a565b610c3b565b34801561040257600080fd5b506102f56104113660046127e5565b610ca2565b34801561042257600080fd5b5061023d6104313660046127e5565b610d35565b34801561044257600080fd5b506102a261045136600461279c565b610dcf565b34801561046257600080fd5b5061026a6104713660046127e5565b610e2f565b6102f5610484366004612548565b610ea6565b34801561049557600080fd5b506102f56104a4366004612548565b61108f565b3480156104b557600080fd5b506102a2611116565b3480156104ca57600080fd5b50600a546001600160a01b031661026a565b3480156104e857600080fd5b506102136104f736600461279c565b805160208183018101805160118252928201919093012091525460ff1681565b34801561052357600080fd5b5061023d61116b565b34801561053857600080fd5b506102a261054736600461264b565b61117a565b34801561055857600080fd5b506102a26105673660046125df565b61127c565b34801561057857600080fd5b5061023d6105873660046127e5565b6112bb565b34801561059857600080fd5b506102a26105a73660046127e5565b6112ef565b3480156105b857600080fd5b5061023d61133d565b3480156105cd57600080fd5b506102136105dc366004612565565b61135d565b3480156105ed57600080fd5b506102a26105fc3660046127e5565b61142d565b34801561060d57600080fd5b506102a261061c366004612548565b61147b565b60006001600160e01b0319821663780e9d6360e01b148061064657506106468261158f565b92915050565b60606000805461065b90612b51565b80601f016020809104026020016040519081016040528092919081815260200182805461068790612b51565b80156106d45780601f106106a9576101008083540402835291602001916106d4565b820191906000526020600020905b8154815290600101906020018083116106b757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661075c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061078382610e2f565b9050806001600160a01b0316836001600160a01b031614156107f15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610753565b806001600160a01b03166108036115df565b6001600160a01b0316148061081f575061081f816105dc6115df565b6108915760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610753565b61089b83836115ee565b505050565b60408051606081810183526001600160a01b0388166000818152600c6020908152908590205484528301529181018690526108de878287878761165c565b6109345760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610753565b6001600160a01b0387166000908152600c602052604090205461095890600161174c565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b906109a890899033908a9061298e565b60405180910390a1600080306001600160a01b0316888a6040516020016109d0929190612862565b60408051601f19818403018152908290526109ea91612846565b6000604051808303816000865af19150503d8060008114610a27576040519150601f19603f3d011682016040523d82523d6000602084013e610a2c565b606091505b509150915081610a7e5760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610753565b98975050505050505050565b610a9b610a956115df565b8261175f565b610ab75760405162461bcd60e51b815260040161075390612a91565b61089b83838361182e565b6000610acd8361108f565b8210610b2f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610753565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610b606115df565b6001600160a01b0316610b7b600a546001600160a01b031690565b6001600160a01b031614610ba15760405162461bcd60e51b815260040161075390612a5c565b6019546001600160a01b03166108fc610bbb4760026119d9565b6040518115909202916000818181858888f19350505050158015610be3573d6000803e3d6000fd5b50601a546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610c1d573d6000803e3d6000fd5b50565b61089b8383836040518060200160405280600081525061127c565b610c436115df565b6001600160a01b0316610c5e600a546001600160a01b031690565b6001600160a01b031614610c845760405162461bcd60e51b815260040161075390612a5c565b601a8054911515600160a01b0260ff60a01b19909216919091179055565b6000610cad60085490565b8210610d105760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610753565b60088281548110610d2357610d23612bfd565b90600052602060002001549050919050565b60106020526000908152604090208054610d4e90612b51565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7a90612b51565b8015610dc75780601f10610d9c57610100808354040283529160200191610dc7565b820191906000526020600020905b815481529060010190602001808311610daa57829003601f168201915b505050505081565b610dd76115df565b6001600160a01b0316610df2600a546001600160a01b031690565b6001600160a01b031614610e185760405162461bcd60e51b815260040161075390612a5c565b8051610e2b906018906020840190612404565b5050565b6000818152600260205260408120546001600160a01b0316806106465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610753565b600f54601a5460009190600160a01b900460ff161515600114610f0b5760405162461bcd60e51b815260206004820152601d60248201527f4d696e74696e67206e6f7420616c6c6f7765642063757272656e746c790000006044820152606401610753565b600e543414610f5c5760405162461bcd60e51b815260206004820152601960248201527f4e65656420746f2073656e6420636f7272656374204554482e000000000000006044820152606401610753565b601254811115610fae5760405162461bcd60e51b815260206004820181905260248201527f5468657265206172656e277420616e7920696e66696e69746573206c6566742e6044820152606401610753565b6000610fb9826119e5565b9050610fc481611aa1565b1561101b5760405162461bcd60e51b815260206004820152602160248201527f556e61626c6520746f206d696e742c20706c656173652074727920616761696e6044820152601760f91b6064820152608401610753565b6000828152601060209081526040909120825161103a92840190612404565b50600160118260405161104d9190612846565b908152604051908190036020019020805491151560ff199092169190911790556110778483611acc565b600f54611085906001612ae2565b600f555092915050565b60006001600160a01b0382166110fa5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610753565b506001600160a01b031660009081526003602052604090205490565b61111e6115df565b6001600160a01b0316611139600a546001600160a01b031690565b6001600160a01b03161461115f5760405162461bcd60e51b815260040161075390612a5c565b6111696000611c1a565b565b60606001805461065b90612b51565b6111826115df565b6001600160a01b0316826001600160a01b031614156111e35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610753565b80600560006111f06115df565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556112346115df565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611270911515815260200190565b60405180910390a35050565b61128d6112876115df565b8361175f565b6112a95760405162461bcd60e51b815260040161075390612a91565b6112b584848484611c6c565b50505050565b606060186112c883611c9f565b6040516020016112d99291906128dc565b6040516020818303038152906040529050919050565b6112f76115df565b6001600160a01b0316611312600a546001600160a01b031690565b6001600160a01b0316146113385760405162461bcd60e51b815260040161075390612a5c565b600e55565b60606040518060600160405280603f8152602001612c98603f9139905090565b600d5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b1580156113aa57600080fd5b505afa1580156113be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113e2919061277f565b6001600160a01b031614156113fb576001915050610646565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6114356115df565b6001600160a01b0316611450600a546001600160a01b031690565b6001600160a01b0316146114765760405162461bcd60e51b815260040161075390612a5c565b601355565b6114836115df565b6001600160a01b031661149e600a546001600160a01b031690565b6001600160a01b0316146114c45760405162461bcd60e51b815260040161075390612a5c565b6001600160a01b0381166115295760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610753565b610c1d81611c1a565b60003330141561158957600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b0316915061158c9050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b14806115c057506001600160e01b03198216635b5e139f60e01b145b8061064657506301ffc9a760e01b6001600160e01b0319831614610646565b60006115e9611532565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061162382610e2f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166116c25760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610753565b60016116d56116d087611d9d565b611e1a565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015611723573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b60006117588284612ae2565b9392505050565b6000818152600260205260408120546001600160a01b03166117d85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610753565b60006117e383610e2f565b9050806001600160a01b0316846001600160a01b0316148061181e5750836001600160a01b0316611813846106de565b6001600160a01b0316145b806114255750611425818561135d565b826001600160a01b031661184182610e2f565b6001600160a01b0316146118a95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610753565b6001600160a01b03821661190b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610753565b611916838383611e4a565b6119216000826115ee565b6001600160a01b038316600090815260036020526040812080546001929061194a908490612b0e565b90915550506001600160a01b0382166000908152600360205260408120805460019290611978908490612ae2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006117588284612afa565b6060600060016013546119f89190612b0e565b611a06846000601354611f02565b611a109190612ba7565b611a1b906001612ae2565b90506000601454601454601554611a329190612b0e565b611a3f8487601354611f02565b611a499190612ba7565b611a539190612ae2565b90506000601654601654601754611a6a9190612b0e565b611a778560135489611f02565b611a819190612ba7565b611a8b9190612ae2565b9050611a98838383611f8c565b95945050505050565b6000601182604051611ab39190612846565b9081526040519081900360200190205460ff1692915050565b6001600160a01b038216611b225760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610753565b6000818152600260205260409020546001600160a01b031615611b875760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610753565b611b9360008383611e4a565b6001600160a01b0382166000908152600360205260408120805460019290611bbc908490612ae2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611c7784848461182e565b611c8384848484611fd3565b6112b55760405162461bcd60e51b815260040161075390612a0a565b606081611cc35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ced5780611cd781612b8c565b9150611ce69050600a83612afa565b9150611cc7565b60008167ffffffffffffffff811115611d0857611d08612c13565b6040519080825280601f01601f191660200182016040528015611d32576020820181803683370190505b5090505b841561142557611d47600183612b0e565b9150611d54600a86612ba7565b611d5f906030612ae2565b60f81b818381518110611d7457611d74612bfd565b60200101906001600160f81b031916908160001a905350611d96600a86612afa565b9450611d36565b6000604051806080016040528060438152602001612c556043913980516020918201208351848301516040808701518051908601209051611dfd950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000611e25600b5490565b60405161190160f01b6020820152602281019190915260428101839052606201611dfd565b6001600160a01b038316611ea557611ea081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ec8565b816001600160a01b0316836001600160a01b031614611ec857611ec883826120e7565b6001600160a01b038216611edf5761089b81612184565b826001600160a01b0316826001600160a01b03161461089b5761089b8282612233565b600080333a4342611f14600183612b0e565b604080516001600160a01b039096166020870152850193909352606084019190915260808301524060a082015260c0810186905260e0810185905261010081018490526101200160408051601f1981840301815291905280516020909101209050611f8161271082612ba7565b611a98906001612ae2565b6060611f9784612277565b611fa084612277565b611fa984612277565b604051602001611fbb93929190612899565b60405160208183030381529060405290509392505050565b60006001600160a01b0384163b156120dc57836001600160a01b031663150b7a02611ffc6115df565b8786866040518563ffffffff1660e01b815260040161201e94939291906129ba565b602060405180830381600087803b15801561203857600080fd5b505af1925050508015612068575060408051601f3d908101601f1916820190925261206591810190612762565b60015b6120c2573d808015612096576040519150601f19603f3d011682016040523d82523d6000602084013e61209b565b606091505b5080516120ba5760405162461bcd60e51b815260040161075390612a0a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611425565b506001949350505050565b600060016120f48461108f565b6120fe9190612b0e565b600083815260076020526040902054909150808214612151576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061219690600190612b0e565b600083815260096020526040812054600880549394509092849081106121be576121be612bfd565b9060005260206000200154905080600883815481106121df576121df612bfd565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061221757612217612be7565b6001900381819060005260206000200160009055905550505050565b600061223e8361108f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60608161229c575050604080518082019091526002815261030360f41b602082015290565b81600114156122c3575050604080518082019091526002815261303160f01b602082015290565b81600214156122ea575050604080518082019091526002815261181960f11b602082015290565b8160031415612311575050604080518082019091526002815261303360f01b602082015290565b81600414156123385750506040805180820190915260028152610c0d60f21b602082015290565b816005141561235f575050604080518082019091526002815261303560f01b602082015290565b8160061415612386575050604080518082019091526002815261181b60f11b602082015290565b81600714156123ad575050604080518082019091526002815261303760f01b602082015290565b81600814156123d4575050604080518082019091526002815261060760f31b602082015290565b81600914156123fb575050604080518082019091526002815261303960f01b602082015290565b61064682611c9f565b82805461241090612b51565b90600052602060002090601f0160209004810192826124325760008555612478565b82601f1061244b57805160ff1916838001178555612478565b82800160010185558215612478579182015b8281111561247857825182559160200191906001019061245d565b50612484929150612488565b5090565b5b808211156124845760008155600101612489565b600067ffffffffffffffff808411156124b8576124b8612c13565b604051601f8501601f19908116603f011681019082821181831017156124e0576124e0612c13565b816040528093508581528686860111156124f957600080fd5b858560208301376000602087830101525050509392505050565b8035801515811461252357600080fd5b919050565b600082601f83011261253957600080fd5b6117588383356020850161249d565b60006020828403121561255a57600080fd5b813561175881612c29565b6000806040838503121561257857600080fd5b823561258381612c29565b9150602083013561259381612c29565b809150509250929050565b6000806000606084860312156125b357600080fd5b83356125be81612c29565b925060208401356125ce81612c29565b929592945050506040919091013590565b600080600080608085870312156125f557600080fd5b843561260081612c29565b9350602085013561261081612c29565b925060408501359150606085013567ffffffffffffffff81111561263357600080fd5b61263f87828801612528565b91505092959194509250565b6000806040838503121561265e57600080fd5b823561266981612c29565b915061267760208401612513565b90509250929050565b600080600080600060a0868803121561269857600080fd5b85356126a381612c29565b9450602086013567ffffffffffffffff8111156126bf57600080fd5b6126cb88828901612528565b9450506040860135925060608601359150608086013560ff811681146126f057600080fd5b809150509295509295909350565b6000806040838503121561271157600080fd5b823561271c81612c29565b946020939093013593505050565b60006020828403121561273c57600080fd5b61175882612513565b60006020828403121561275757600080fd5b813561175881612c3e565b60006020828403121561277457600080fd5b815161175881612c3e565b60006020828403121561279157600080fd5b815161175881612c29565b6000602082840312156127ae57600080fd5b813567ffffffffffffffff8111156127c557600080fd5b8201601f810184136127d657600080fd5b6114258482356020840161249d565b6000602082840312156127f757600080fd5b5035919050565b60008151808452612816816020860160208601612b25565b601f01601f19169290920160200192915050565b6000815161283c818560208601612b25565b9290920192915050565b60008251612858818460208701612b25565b9190910192915050565b60008351612874818460208801612b25565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b600084516128ab818460208901612b25565b8451908301906128bf818360208901612b25565b84519101906128d2818360208801612b25565b0195945050505050565b600080845481600182811c9150808316806128f857607f831692505b602080841082141561291857634e487b7160e01b86526022600452602486fd5b81801561292c576001811461293d5761296a565b60ff1986168952848901965061296a565b60008b81526020902060005b868110156129625781548b820152908501908301612949565b505084890196505b505050505050611a9861297d828661282a565b64173539b7b760d91b815260050190565b6001600160a01b03848116825283166020820152606060408201819052600090611a98908301846127fe565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129ed908301846127fe565b9695505050505050565b60208152600061175860208301846127fe565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612af557612af5612bbb565b500190565b600082612b0957612b09612bd1565b500490565b600082821015612b2057612b20612bbb565b500390565b60005b83811015612b40578181015183820152602001612b28565b838111156112b55750506000910152565b600181811c90821680612b6557607f821691505b60208210811415612b8657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ba057612ba0612bbb565b5060010190565b600082612bb657612bb6612bd1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610c1d57600080fd5b6001600160e01b031981168114610c1d57600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e61747572652968747470733a2f2f696e66696e697465732e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f6a736f6e2f696e66696e6974652e6a736f6ea26469706673582212202aa4125f057fa4407b6284bd1cd197f86d7df059bba3f51fd3090219ad44d96d64736f6c6343000807003368747470733a2f2f696e66696e697465732e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f6a736f6e2f454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000000000000000000000000000000000000000000009496e66696e6974657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003494e460000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80635115554c1161010d57806395d89b41116100a0578063dcd5fff81161006f578063dcd5fff81461058c578063e8a3d485146105ac578063e985e9c5146105c1578063eec41a77146105e1578063f2fde38b1461060157600080fd5b806395d89b4114610517578063a22cb4651461052c578063b88d4fde1461054c578063c87b56dd1461056c57600080fd5b806370a08231116100dc57806370a0823114610489578063715018a6146104a95780638da5cb5b146104be578063905177db146104dc57600080fd5b80635115554c1461041657806355f804b3146104365780636352211e146104565780636a6278421461047657600080fd5b806323b872dd116101855780633ccfd60b116101545780633ccfd60b146103a157806342842e0e146103b65780634ea3871a146103d65780634f6ccce7146103f657600080fd5b806323b872dd146103185780632d0335ab146103385780632f745c591461036e5780633408e4701461038e57600080fd5b80630c53c51c116101c15780630c53c51c146102a45780630f7e5970146102b757806318160ddd146102e457806320379ee51461030357600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004612745565b610621565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d61064c565b60405161021f91906129f7565b34801561025657600080fd5b5061026a6102653660046127e5565b6106de565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d3660046126fe565b610778565b005b61023d6102b2366004612680565b6108a0565b3480156102c357600080fd5b5061023d604051806040016040528060018152602001603160f81b81525081565b3480156102f057600080fd5b506008545b60405190815260200161021f565b34801561030f57600080fd5b50600b546102f5565b34801561032457600080fd5b506102a261033336600461259e565b610a8a565b34801561034457600080fd5b506102f5610353366004612548565b6001600160a01b03166000908152600c602052604090205490565b34801561037a57600080fd5b506102f56103893660046126fe565b610ac2565b34801561039a57600080fd5b50466102f5565b3480156103ad57600080fd5b506102a2610b58565b3480156103c257600080fd5b506102a26103d136600461259e565b610c20565b3480156103e257600080fd5b506102a26103f136600461272a565b610c3b565b34801561040257600080fd5b506102f56104113660046127e5565b610ca2565b34801561042257600080fd5b5061023d6104313660046127e5565b610d35565b34801561044257600080fd5b506102a261045136600461279c565b610dcf565b34801561046257600080fd5b5061026a6104713660046127e5565b610e2f565b6102f5610484366004612548565b610ea6565b34801561049557600080fd5b506102f56104a4366004612548565b61108f565b3480156104b557600080fd5b506102a2611116565b3480156104ca57600080fd5b50600a546001600160a01b031661026a565b3480156104e857600080fd5b506102136104f736600461279c565b805160208183018101805160118252928201919093012091525460ff1681565b34801561052357600080fd5b5061023d61116b565b34801561053857600080fd5b506102a261054736600461264b565b61117a565b34801561055857600080fd5b506102a26105673660046125df565b61127c565b34801561057857600080fd5b5061023d6105873660046127e5565b6112bb565b34801561059857600080fd5b506102a26105a73660046127e5565b6112ef565b3480156105b857600080fd5b5061023d61133d565b3480156105cd57600080fd5b506102136105dc366004612565565b61135d565b3480156105ed57600080fd5b506102a26105fc3660046127e5565b61142d565b34801561060d57600080fd5b506102a261061c366004612548565b61147b565b60006001600160e01b0319821663780e9d6360e01b148061064657506106468261158f565b92915050565b60606000805461065b90612b51565b80601f016020809104026020016040519081016040528092919081815260200182805461068790612b51565b80156106d45780601f106106a9576101008083540402835291602001916106d4565b820191906000526020600020905b8154815290600101906020018083116106b757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661075c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061078382610e2f565b9050806001600160a01b0316836001600160a01b031614156107f15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610753565b806001600160a01b03166108036115df565b6001600160a01b0316148061081f575061081f816105dc6115df565b6108915760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610753565b61089b83836115ee565b505050565b60408051606081810183526001600160a01b0388166000818152600c6020908152908590205484528301529181018690526108de878287878761165c565b6109345760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610753565b6001600160a01b0387166000908152600c602052604090205461095890600161174c565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b906109a890899033908a9061298e565b60405180910390a1600080306001600160a01b0316888a6040516020016109d0929190612862565b60408051601f19818403018152908290526109ea91612846565b6000604051808303816000865af19150503d8060008114610a27576040519150601f19603f3d011682016040523d82523d6000602084013e610a2c565b606091505b509150915081610a7e5760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610753565b98975050505050505050565b610a9b610a956115df565b8261175f565b610ab75760405162461bcd60e51b815260040161075390612a91565b61089b83838361182e565b6000610acd8361108f565b8210610b2f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610753565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610b606115df565b6001600160a01b0316610b7b600a546001600160a01b031690565b6001600160a01b031614610ba15760405162461bcd60e51b815260040161075390612a5c565b6019546001600160a01b03166108fc610bbb4760026119d9565b6040518115909202916000818181858888f19350505050158015610be3573d6000803e3d6000fd5b50601a546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610c1d573d6000803e3d6000fd5b50565b61089b8383836040518060200160405280600081525061127c565b610c436115df565b6001600160a01b0316610c5e600a546001600160a01b031690565b6001600160a01b031614610c845760405162461bcd60e51b815260040161075390612a5c565b601a8054911515600160a01b0260ff60a01b19909216919091179055565b6000610cad60085490565b8210610d105760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610753565b60088281548110610d2357610d23612bfd565b90600052602060002001549050919050565b60106020526000908152604090208054610d4e90612b51565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7a90612b51565b8015610dc75780601f10610d9c57610100808354040283529160200191610dc7565b820191906000526020600020905b815481529060010190602001808311610daa57829003601f168201915b505050505081565b610dd76115df565b6001600160a01b0316610df2600a546001600160a01b031690565b6001600160a01b031614610e185760405162461bcd60e51b815260040161075390612a5c565b8051610e2b906018906020840190612404565b5050565b6000818152600260205260408120546001600160a01b0316806106465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610753565b600f54601a5460009190600160a01b900460ff161515600114610f0b5760405162461bcd60e51b815260206004820152601d60248201527f4d696e74696e67206e6f7420616c6c6f7765642063757272656e746c790000006044820152606401610753565b600e543414610f5c5760405162461bcd60e51b815260206004820152601960248201527f4e65656420746f2073656e6420636f7272656374204554482e000000000000006044820152606401610753565b601254811115610fae5760405162461bcd60e51b815260206004820181905260248201527f5468657265206172656e277420616e7920696e66696e69746573206c6566742e6044820152606401610753565b6000610fb9826119e5565b9050610fc481611aa1565b1561101b5760405162461bcd60e51b815260206004820152602160248201527f556e61626c6520746f206d696e742c20706c656173652074727920616761696e6044820152601760f91b6064820152608401610753565b6000828152601060209081526040909120825161103a92840190612404565b50600160118260405161104d9190612846565b908152604051908190036020019020805491151560ff199092169190911790556110778483611acc565b600f54611085906001612ae2565b600f555092915050565b60006001600160a01b0382166110fa5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610753565b506001600160a01b031660009081526003602052604090205490565b61111e6115df565b6001600160a01b0316611139600a546001600160a01b031690565b6001600160a01b03161461115f5760405162461bcd60e51b815260040161075390612a5c565b6111696000611c1a565b565b60606001805461065b90612b51565b6111826115df565b6001600160a01b0316826001600160a01b031614156111e35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610753565b80600560006111f06115df565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556112346115df565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611270911515815260200190565b60405180910390a35050565b61128d6112876115df565b8361175f565b6112a95760405162461bcd60e51b815260040161075390612a91565b6112b584848484611c6c565b50505050565b606060186112c883611c9f565b6040516020016112d99291906128dc565b6040516020818303038152906040529050919050565b6112f76115df565b6001600160a01b0316611312600a546001600160a01b031690565b6001600160a01b0316146113385760405162461bcd60e51b815260040161075390612a5c565b600e55565b60606040518060600160405280603f8152602001612c98603f9139905090565b600d5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b1580156113aa57600080fd5b505afa1580156113be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113e2919061277f565b6001600160a01b031614156113fb576001915050610646565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6114356115df565b6001600160a01b0316611450600a546001600160a01b031690565b6001600160a01b0316146114765760405162461bcd60e51b815260040161075390612a5c565b601355565b6114836115df565b6001600160a01b031661149e600a546001600160a01b031690565b6001600160a01b0316146114c45760405162461bcd60e51b815260040161075390612a5c565b6001600160a01b0381166115295760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610753565b610c1d81611c1a565b60003330141561158957600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b0316915061158c9050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b14806115c057506001600160e01b03198216635b5e139f60e01b145b8061064657506301ffc9a760e01b6001600160e01b0319831614610646565b60006115e9611532565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061162382610e2f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166116c25760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610753565b60016116d56116d087611d9d565b611e1a565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015611723573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b60006117588284612ae2565b9392505050565b6000818152600260205260408120546001600160a01b03166117d85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610753565b60006117e383610e2f565b9050806001600160a01b0316846001600160a01b0316148061181e5750836001600160a01b0316611813846106de565b6001600160a01b0316145b806114255750611425818561135d565b826001600160a01b031661184182610e2f565b6001600160a01b0316146118a95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610753565b6001600160a01b03821661190b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610753565b611916838383611e4a565b6119216000826115ee565b6001600160a01b038316600090815260036020526040812080546001929061194a908490612b0e565b90915550506001600160a01b0382166000908152600360205260408120805460019290611978908490612ae2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006117588284612afa565b6060600060016013546119f89190612b0e565b611a06846000601354611f02565b611a109190612ba7565b611a1b906001612ae2565b90506000601454601454601554611a329190612b0e565b611a3f8487601354611f02565b611a499190612ba7565b611a539190612ae2565b90506000601654601654601754611a6a9190612b0e565b611a778560135489611f02565b611a819190612ba7565b611a8b9190612ae2565b9050611a98838383611f8c565b95945050505050565b6000601182604051611ab39190612846565b9081526040519081900360200190205460ff1692915050565b6001600160a01b038216611b225760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610753565b6000818152600260205260409020546001600160a01b031615611b875760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610753565b611b9360008383611e4a565b6001600160a01b0382166000908152600360205260408120805460019290611bbc908490612ae2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611c7784848461182e565b611c8384848484611fd3565b6112b55760405162461bcd60e51b815260040161075390612a0a565b606081611cc35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ced5780611cd781612b8c565b9150611ce69050600a83612afa565b9150611cc7565b60008167ffffffffffffffff811115611d0857611d08612c13565b6040519080825280601f01601f191660200182016040528015611d32576020820181803683370190505b5090505b841561142557611d47600183612b0e565b9150611d54600a86612ba7565b611d5f906030612ae2565b60f81b818381518110611d7457611d74612bfd565b60200101906001600160f81b031916908160001a905350611d96600a86612afa565b9450611d36565b6000604051806080016040528060438152602001612c556043913980516020918201208351848301516040808701518051908601209051611dfd950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000611e25600b5490565b60405161190160f01b6020820152602281019190915260428101839052606201611dfd565b6001600160a01b038316611ea557611ea081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ec8565b816001600160a01b0316836001600160a01b031614611ec857611ec883826120e7565b6001600160a01b038216611edf5761089b81612184565b826001600160a01b0316826001600160a01b03161461089b5761089b8282612233565b600080333a4342611f14600183612b0e565b604080516001600160a01b039096166020870152850193909352606084019190915260808301524060a082015260c0810186905260e0810185905261010081018490526101200160408051601f1981840301815291905280516020909101209050611f8161271082612ba7565b611a98906001612ae2565b6060611f9784612277565b611fa084612277565b611fa984612277565b604051602001611fbb93929190612899565b60405160208183030381529060405290509392505050565b60006001600160a01b0384163b156120dc57836001600160a01b031663150b7a02611ffc6115df565b8786866040518563ffffffff1660e01b815260040161201e94939291906129ba565b602060405180830381600087803b15801561203857600080fd5b505af1925050508015612068575060408051601f3d908101601f1916820190925261206591810190612762565b60015b6120c2573d808015612096576040519150601f19603f3d011682016040523d82523d6000602084013e61209b565b606091505b5080516120ba5760405162461bcd60e51b815260040161075390612a0a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611425565b506001949350505050565b600060016120f48461108f565b6120fe9190612b0e565b600083815260076020526040902054909150808214612151576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061219690600190612b0e565b600083815260096020526040812054600880549394509092849081106121be576121be612bfd565b9060005260206000200154905080600883815481106121df576121df612bfd565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061221757612217612be7565b6001900381819060005260206000200160009055905550505050565b600061223e8361108f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60608161229c575050604080518082019091526002815261030360f41b602082015290565b81600114156122c3575050604080518082019091526002815261303160f01b602082015290565b81600214156122ea575050604080518082019091526002815261181960f11b602082015290565b8160031415612311575050604080518082019091526002815261303360f01b602082015290565b81600414156123385750506040805180820190915260028152610c0d60f21b602082015290565b816005141561235f575050604080518082019091526002815261303560f01b602082015290565b8160061415612386575050604080518082019091526002815261181b60f11b602082015290565b81600714156123ad575050604080518082019091526002815261303760f01b602082015290565b81600814156123d4575050604080518082019091526002815261060760f31b602082015290565b81600914156123fb575050604080518082019091526002815261303960f01b602082015290565b61064682611c9f565b82805461241090612b51565b90600052602060002090601f0160209004810192826124325760008555612478565b82601f1061244b57805160ff1916838001178555612478565b82800160010185558215612478579182015b8281111561247857825182559160200191906001019061245d565b50612484929150612488565b5090565b5b808211156124845760008155600101612489565b600067ffffffffffffffff808411156124b8576124b8612c13565b604051601f8501601f19908116603f011681019082821181831017156124e0576124e0612c13565b816040528093508581528686860111156124f957600080fd5b858560208301376000602087830101525050509392505050565b8035801515811461252357600080fd5b919050565b600082601f83011261253957600080fd5b6117588383356020850161249d565b60006020828403121561255a57600080fd5b813561175881612c29565b6000806040838503121561257857600080fd5b823561258381612c29565b9150602083013561259381612c29565b809150509250929050565b6000806000606084860312156125b357600080fd5b83356125be81612c29565b925060208401356125ce81612c29565b929592945050506040919091013590565b600080600080608085870312156125f557600080fd5b843561260081612c29565b9350602085013561261081612c29565b925060408501359150606085013567ffffffffffffffff81111561263357600080fd5b61263f87828801612528565b91505092959194509250565b6000806040838503121561265e57600080fd5b823561266981612c29565b915061267760208401612513565b90509250929050565b600080600080600060a0868803121561269857600080fd5b85356126a381612c29565b9450602086013567ffffffffffffffff8111156126bf57600080fd5b6126cb88828901612528565b9450506040860135925060608601359150608086013560ff811681146126f057600080fd5b809150509295509295909350565b6000806040838503121561271157600080fd5b823561271c81612c29565b946020939093013593505050565b60006020828403121561273c57600080fd5b61175882612513565b60006020828403121561275757600080fd5b813561175881612c3e565b60006020828403121561277457600080fd5b815161175881612c3e565b60006020828403121561279157600080fd5b815161175881612c29565b6000602082840312156127ae57600080fd5b813567ffffffffffffffff8111156127c557600080fd5b8201601f810184136127d657600080fd5b6114258482356020840161249d565b6000602082840312156127f757600080fd5b5035919050565b60008151808452612816816020860160208601612b25565b601f01601f19169290920160200192915050565b6000815161283c818560208601612b25565b9290920192915050565b60008251612858818460208701612b25565b9190910192915050565b60008351612874818460208801612b25565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b600084516128ab818460208901612b25565b8451908301906128bf818360208901612b25565b84519101906128d2818360208801612b25565b0195945050505050565b600080845481600182811c9150808316806128f857607f831692505b602080841082141561291857634e487b7160e01b86526022600452602486fd5b81801561292c576001811461293d5761296a565b60ff1986168952848901965061296a565b60008b81526020902060005b868110156129625781548b820152908501908301612949565b505084890196505b505050505050611a9861297d828661282a565b64173539b7b760d91b815260050190565b6001600160a01b03848116825283166020820152606060408201819052600090611a98908301846127fe565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129ed908301846127fe565b9695505050505050565b60208152600061175860208301846127fe565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612af557612af5612bbb565b500190565b600082612b0957612b09612bd1565b500490565b600082821015612b2057612b20612bbb565b500390565b60005b83811015612b40578181015183820152602001612b28565b838111156112b55750506000910152565b600181811c90821680612b6557607f821691505b60208210811415612b8657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ba057612ba0612bbb565b5060010190565b600082612bb657612bb6612bd1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610c1d57600080fd5b6001600160e01b031981168114610c1d57600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e61747572652968747470733a2f2f696e66696e697465732e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f6a736f6e2f696e66696e6974652e6a736f6ea26469706673582212202aa4125f057fa4407b6284bd1cd197f86d7df059bba3f51fd3090219ad44d96d64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000000000000000000000000000000000000000000009496e66696e6974657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003494e460000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Infinites
Arg [1] : _symbol (string): INF
Arg [2] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 496e66696e697465730000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 494e460000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

356:6697:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909:222:6;;;;;;;;;;-1:-1:-1;909:222:6;;;;;:::i;:::-;;:::i;:::-;;;11798:14:18;;11791:22;11773:41;;11761:2;11746:18;909:222:6;;;;;;;;2349:98:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3860:217::-;;;;;;;;;;-1:-1:-1;3860:217:5;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9928:32:18;;;9910:51;;9898:2;9883:18;3860:217:5;9764:203:18;3398:401:5;;;;;;;;;;-1:-1:-1;3398:401:5;;;;;:::i;:::-;;:::i;:::-;;950:1117:14;;;;;;:::i;:::-;;:::i;288:43:3:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;288:43:3;;;;;1534:111:6;;;;;;;;;;-1:-1:-1;1621:10:6;:17;1534:111;;;11971:25:18;;;11959:2;11944:18;1534:111:6;11825:177:18;1264:99:3;;;;;;;;;;-1:-1:-1;1341:15:3;;1264:99;;4724:330:5;;;;;;;;;;-1:-1:-1;4724:330:5;;;;;:::i;:::-;;:::i;2475:105:14:-;;;;;;;;;;-1:-1:-1;2475:105:14;;;;;:::i;:::-;-1:-1:-1;;;;;2561:12:14;2528:13;2561:12;;;:6;:12;;;;;;;2475:105;1210:253:6;;;;;;;;;;-1:-1:-1;1210:253:6;;;;;:::i;:::-;;:::i;1369:155:3:-;;;;;;;;;;-1:-1:-1;1480:9:3;1369:155;;5502:159:12;;;;;;;;;;;;;:::i;5120:179:5:-;;;;;;;;;;-1:-1:-1;5120:179:5;;;;;:::i;:::-;;:::i;1481:105:12:-;;;;;;;;;;-1:-1:-1;1481:105:12;;;;;:::i;:::-;;:::i;1717:230:6:-;;;;;;;;;;-1:-1:-1;1717:230:6;;;;;:::i;:::-;;:::i;643:52:12:-;;;;;;;;;;-1:-1:-1;643:52:12;;;;;:::i;:::-;;:::i;5667:88::-;;;;;;;;;;-1:-1:-1;5667:88:12;;;;;:::i;:::-;;:::i;2052:235:5:-;;;;;;;;;;-1:-1:-1;2052:235:5;;;;;:::i;:::-;;:::i;1724:732:12:-;;;;;;:::i;:::-;;:::i;1790:205:5:-;;;;;;;;;;-1:-1:-1;1790:205:5;;;;;:::i;:::-;;:::i;1598:92:15:-;;;;;;;;;;;;;:::i;966:85::-;;;;;;;;;;-1:-1:-1;1038:6:15;;-1:-1:-1;;;;;1038:6:15;966:85;;701:48:12;;;;;;;;;;-1:-1:-1;701:48:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2511:102:5;;;;;;;;;;;;;:::i;4144:290::-;;;;;;;;;;-1:-1:-1;4144:290:5;;;;;:::i;:::-;;:::i;5365:320::-;;;;;;;;;;-1:-1:-1;5365:320:5;;;;;:::i;:::-;;:::i;5865:204:12:-;;;;;;;;;;-1:-1:-1;5865:204:12;;;;;:::i;:::-;;:::i;5404:92::-;;;;;;;;;;-1:-1:-1;5404:92:12;;;;;:::i;:::-;;:::i;6891:160::-;;;;;;;;;;;;;:::i;6196:432::-;;;;;;;;;;-1:-1:-1;6196:432:12;;;;;:::i;:::-;;:::i;5288:110::-;;;;;;;;;;-1:-1:-1;5288:110:12;;;;;:::i;:::-;;:::i;1839:189:15:-;;;;;;;;;;-1:-1:-1;1839:189:15;;;;;:::i;:::-;;:::i;909:222:6:-;1011:4;-1:-1:-1;;;;;;1034:50:6;;-1:-1:-1;;;1034:50:6;;:90;;;1088:36;1112:11;1088:23;:36::i;:::-;1027:97;909:222;-1:-1:-1;;909:222:6:o;2349:98:5:-;2403:13;2435:5;2428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349:98;:::o;3860:217::-;3936:7;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:5;3955:73;;;;-1:-1:-1;;;3955:73:5;;19753:2:18;3955:73:5;;;19735:21:18;19792:2;19772:18;;;19765:30;19831:34;19811:18;;;19804:62;-1:-1:-1;;;19882:18:18;;;19875:42;19934:19;;3955:73:5;;;;;;;;;-1:-1:-1;4046:24:5;;;;:15;:24;;;;;;-1:-1:-1;;;;;4046:24:5;;3860:217::o;3398:401::-;3478:13;3494:23;3509:7;3494:14;:23::i;:::-;3478:39;;3541:5;-1:-1:-1;;;;;3535:11:5;:2;-1:-1:-1;;;;;3535:11:5;;;3527:57;;;;-1:-1:-1;;;3527:57:5;;21700:2:18;3527:57:5;;;21682:21:18;21739:2;21719:18;;;21712:30;21778:34;21758:18;;;21751:62;-1:-1:-1;;;21829:18:18;;;21822:31;21870:19;;3527:57:5;21498:397:18;3527:57:5;3632:5;-1:-1:-1;;;;;3616:21:5;:12;:10;:12::i;:::-;-1:-1:-1;;;;;3616:21:5;;:62;;;;3641:37;3658:5;3665:12;:10;:12::i;3641:37::-;3595:165;;;;-1:-1:-1;;;3595:165:5;;17788:2:18;3595:165:5;;;17770:21:18;17827:2;17807:18;;;17800:30;17866:34;17846:18;;;17839:62;17937:26;17917:18;;;17910:54;17981:19;;3595:165:5;17586:420:18;3595:165:5;3771:21;3780:2;3784:7;3771:8;:21::i;:::-;3468:331;3398:401;;:::o;950:1117:14:-;1201:148;;;1145:12;1201:148;;;;;-1:-1:-1;;;;;1238:19:14;;1169:29;1238:19;;;:6;:19;;;;;;;;;1201:148;;;;;;;;;;;1381:45;1245:11;1201:148;1409:4;1415;1421;1381:6;:45::i;:::-;1360:125;;;;-1:-1:-1;;;1360:125:14;;21298:2:18;1360:125:14;;;21280:21:18;21337:2;21317:18;;;21310:30;21376:34;21356:18;;;21349:62;-1:-1:-1;;;21427:18:18;;;21420:31;21468:19;;1360:125:14;21096:397:18;1360:125:14;-1:-1:-1;;;;;1571:19:14;;;;;;:6;:19;;;;;;:26;;1595:1;1571:23;:26::i;:::-;-1:-1:-1;;;;;1549:19:14;;;;;;:6;:19;;;;;;;:48;;;;1613:122;;;;;1556:11;;1683:10;;1708:17;;1613:122;:::i;:::-;;;;;;;;1843:12;1857:23;1892:4;-1:-1:-1;;;;;1884:18:14;1933:17;1952:11;1916:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;1916:48:14;;;;;;;;;;1884:90;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1842:132;;;;1992:7;1984:48;;;;-1:-1:-1;;;1984:48:14;;14740:2:18;1984:48:14;;;14722:21:18;14779:2;14759:18;;;14752:30;14818;14798:18;;;14791:58;14866:18;;1984:48:14;14538:352:18;1984:48:14;2050:10;950:1117;-1:-1:-1;;;;;;;;950:1117:14:o;4724:330:5:-;4913:41;4932:12;:10;:12::i;:::-;4946:7;4913:18;:41::i;:::-;4905:103;;;;-1:-1:-1;;;4905:103:5;;;;;;;:::i;:::-;5019:28;5029:4;5035:2;5039:7;5019:9;:28::i;1210:253:6:-;1307:7;1342:23;1359:5;1342:16;:23::i;:::-;1334:5;:31;1326:87;;;;-1:-1:-1;;;1326:87:6;;13502:2:18;1326:87:6;;;13484:21:18;13541:2;13521:18;;;13514:30;13580:34;13560:18;;;13553:62;-1:-1:-1;;;13631:18:18;;;13624:41;13682:19;;1326:87:6;13300:407:18;1326:87:6;-1:-1:-1;;;;;;1430:19:6;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1210:253::o;5502:159:12:-;1189:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:15;:7;1038:6;;-1:-1:-1;;;;;1038:6:15;;966:85;1178:7;-1:-1:-1;;;;;1178:23:15;;1170:68;;;;-1:-1:-1;;;1170:68:15;;;;;;;:::i;:::-;5557:3:12::1;::::0;-1:-1:-1;;;;;5557:3:12::1;5549:51;5571:28;:21;5597:1;5571:25;:28::i;:::-;5549:51;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;5618:3:12::1;::::0;5610:44:::1;::::0;-1:-1:-1;;;;;5618:3:12;;::::1;::::0;5632:21:::1;5610:44:::0;::::1;;;::::0;5618:3:::1;5610:44:::0;5618:3;5610:44;5632:21;5618:3;5610:44;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;5502:159::o:0;5120:179:5:-;5253:39;5270:4;5276:2;5280:7;5253:39;;;;;;;;;;;;:16;:39::i;1481:105:12:-;1189:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:15;:7;1038:6;;-1:-1:-1;;;;;1038:6:15;;966:85;1178:7;-1:-1:-1;;;;;1178:23:15;;1170:68;;;;-1:-1:-1;;;1170:68:15;;;;;;;:::i;:::-;1551:16:12::1;:28:::0;;;::::1;;-1:-1:-1::0;;;1551:28:12::1;-1:-1:-1::0;;;;1551:28:12;;::::1;::::0;;;::::1;::::0;;1481:105::o;1717:230:6:-;1792:7;1827:30;1621:10;:17;;1534:111;1827:30;1819:5;:38;1811:95;;;;-1:-1:-1;;;1811:95:6;;22520:2:18;1811:95:6;;;22502:21:18;22559:2;22539:18;;;22532:30;22598:34;22578:18;;;22571:62;-1:-1:-1;;;22649:18:18;;;22642:42;22701:19;;1811:95:6;22318:408:18;1811:95:6;1923:10;1934:5;1923:17;;;;;;;;:::i;:::-;;;;;;;;;1916:24;;1717:230;;;:::o;643:52:12:-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5667:88::-;1189:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:15;:7;1038:6;;-1:-1:-1;;;;;1038:6:15;;966:85;1178:7;-1:-1:-1;;;;;1178:23:15;;1170:68;;;;-1:-1:-1;;;1170:68:15;;;;;;;:::i;:::-;5734:14:12;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;:::-;;5667:88:::0;:::o;2052:235:5:-;2124:7;2159:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2159:16:5;2193:19;2185:73;;;;-1:-1:-1;;;2185:73:5;;18624:2:18;2185:73:5;;;18606:21:18;18663:2;18643:18;;;18636:30;18702:34;18682:18;;;18675:62;-1:-1:-1;;;18753:18:18;;;18746:39;18802:19;;2185:73:5;18422:405:18;1724:732:12;1812:12;;1842:16;;1775:7;;1812:12;-1:-1:-1;;;1842:16:12;;;;:24;;1862:4;1842:24;1834:66;;;;-1:-1:-1;;;1834:66:12;;19034:2:18;1834:66:12;;;19016:21:18;19073:2;19053:18;;;19046:30;19112:31;19092:18;;;19085:59;19161:18;;1834:66:12;18832:353:18;1834:66:12;1931:11;;1918:9;:24;1910:62;;;;-1:-1:-1;;;1910:62:12;;17434:2:18;1910:62:12;;;17416:21:18;17473:2;17453:18;;;17446:30;17512:27;17492:18;;;17485:55;17557:18;;1910:62:12;17232:349:18;1910:62:12;2001:8;;1990:7;:19;;1982:64;;;;-1:-1:-1;;;1982:64:12;;20527:2:18;1982:64:12;;;20509:21:18;;;20546:18;;;20539:30;20605:34;20585:18;;;20578:62;20657:18;;1982:64:12;20325:356:18;1982:64:12;2056:31;2090:25;2107:7;2090:16;:25::i;:::-;2056:59;;2148:37;2167:17;2148:18;:37::i;:::-;2146:40;2125:120;;;;-1:-1:-1;;;2125:120:12;;16626:2:18;2125:120:12;;;16608:21:18;16665:2;16645:18;;;16638:30;16704:34;16684:18;;;16677:62;-1:-1:-1;;;16755:18:18;;;16748:31;16796:19;;2125:120:12;16424:397:18;2125:120:12;2255:27;;;;:18;:27;;;;;;;;:47;;;;;;;;:::i;:::-;;2351:4;2312:17;2330;2312:36;;;;;;:::i;:::-;;;;;;;;;;;;;;:43;;;;;-1:-1:-1;;2312:43:12;;;;;;;;;2365:19;2371:3;2376:7;2365:5;:19::i;:::-;2409:12;;:16;;2424:1;2409:16;:::i;:::-;2394:12;:31;-1:-1:-1;2442:7:12;1724:732;-1:-1:-1;;1724:732:12:o;1790:205:5:-;1862:7;-1:-1:-1;;;;;1889:19:5;;1881:74;;;;-1:-1:-1;;;1881:74:5;;18213:2:18;1881:74:5;;;18195:21:18;18252:2;18232:18;;;18225:30;18291:34;18271:18;;;18264:62;-1:-1:-1;;;18342:18:18;;;18335:40;18392:19;;1881:74:5;18011:406:18;1881:74:5;-1:-1:-1;;;;;;1972:16:5;;;;;:9;:16;;;;;;;1790:205::o;1598:92:15:-;1189:12;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:15;:7;1038:6;;-1:-1:-1;;;;;1038:6:15;;966:85;1178:7;-1:-1:-1;;;;;1178:23:15;;1170:68;;;;-1:-1:-1;;;1170:68:15;;;;;;;:::i;:::-;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;2511:102:5:-;2567:13;2599:7;2592:14;;;;;:::i;4144:290::-;4258:12;:10;:12::i;:::-;-1:-1:-1;;;;;4246:24:5;:8;-1:-1:-1;;;;;4246:24:5;;;4238:62;;;;-1:-1:-1;;;4238:62:5;;15859:2:18;4238:62:5;;;15841:21:18;15898:2;15878:18;;;15871:30;15937:27;15917:18;;;15910:55;15982:18;;4238:62:5;15657:349:18;4238:62:5;4356:8;4311:18;:32;4330:12;:10;:12::i;:::-;-1:-1:-1;;;;;4311:32:5;;;;;;;;;;;;;;;;;-1:-1:-1;4311:32:5;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;4311:53:5;;;;;;;;;;;4394:12;:10;:12::i;:::-;-1:-1:-1;;;;;4379:48:5;;4418:8;4379:48;;;;11798:14:18;11791:22;11773:41;;11761:2;11746:18;;11633:187;4379:48:5;;;;;;;;4144:290;;:::o;5365:320::-;5534:41;5553:12;:10;:12::i;:::-;5567:7;5534:18;:41::i;:::-;5526:103;;;;-1:-1:-1;;;5526:103:5;;;;;;;:::i;:::-;5639:39;5653:4;5659:2;5663:7;5672:5;5639:13;:39::i;:::-;5365:320;;;;:::o;5865:204:12:-;5963:13;6023:7;6032:19;:8;:17;:19::i;:::-;6006:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5992:70;;5865:204;;;:::o;5404:92::-;1189:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:15;:7;1038:6;;-1:-1:-1;;;;;1038:6:15;;966:85;1178:7;-1:-1:-1;;;;;1178:23:15;;1170:68;;;;-1:-1:-1;;;1170:68:15;;;;;;;:::i;:::-;5470:11:12::1;:19:::0;5404:92::o;6891:160::-;6935:13;6960:84;;;;;;;;;;;;;;;;;;;6891:160;:::o;6196:432::-;6443:20;;6486:28;;-1:-1:-1;;;6486:28:12;;-1:-1:-1;;;;;9928:32:18;;;6486:28:12;;;9910:51:18;6317:4:12;;6443:20;;;6478:49;;;;6443:20;;6486:21;;9883:18:18;;6486:28:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;6478:49:12;;6474:91;;;6550:4;6543:11;;;;;6474:91;-1:-1:-1;;;;;4620:25:5;;;4597:4;4620:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;6582:39:12;6575:46;6196:432;-1:-1:-1;;;;6196:432:12:o;5288:110::-;1189:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:15;:7;1038:6;;-1:-1:-1;;;;;1038:6:15;;966:85;1178:7;-1:-1:-1;;;;;1178:23:15;;1170:68;;;;-1:-1:-1;;;1170:68:15;;;;;;;:::i;:::-;5363:12:12::1;:28:::0;5288:110::o;1839:189:15:-;1189:12;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:15;:7;1038:6;;-1:-1:-1;;;;;1038:6:15;;966:85;1178:7;-1:-1:-1;;;;;1178:23:15;;1170:68;;;;-1:-1:-1;;;1170:68:15;;;;;;;:::i;:::-;-1:-1:-1;;;;;1927:22:15;::::1;1919:73;;;::::0;-1:-1:-1;;;1919:73:15;;14333:2:18;1919:73:15::1;::::0;::::1;14315:21:18::0;14372:2;14352:18;;;14345:30;14411:34;14391:18;;;14384:62;-1:-1:-1;;;14462:18:18;;;14455:36;14508:19;;1919:73:15::1;14131:402:18::0;1919:73:15::1;2002:19;2012:8;2002:9;:19::i;95:631:1:-:0;163:22;205:10;227:4;205:27;201:496;;;248:18;269:8;;248:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;307:8:1;514:17;508:24;-1:-1:-1;;;;;483:131:1;;-1:-1:-1;201:496:1;;-1:-1:-1;201:496:1;;-1:-1:-1;675:10:1;201:496;95:631;:::o;1431:300:5:-;1533:4;-1:-1:-1;;;;;;1568:40:5;;-1:-1:-1;;;1568:40:5;;:104;;-1:-1:-1;;;;;;;1624:48:5;;-1:-1:-1;;;1624:48:5;1568:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:4;;;1688:36:5;763:155:4;6767:118:12;6821:14;6854:24;:22;:24::i;:::-;6847:31;;6767:118;:::o;11008:171:5:-;11082:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11082:29:5;-1:-1:-1;;;;;11082:29:5;;;;;;;;:24;;11135:23;11082:24;11135:14;:23::i;:::-;-1:-1:-1;;;;;11126:46:5;;;;;;;;;;;11008:171;;:::o;2586:470:14:-;2758:4;-1:-1:-1;;;;;2782:20:14;;2774:70;;;;-1:-1:-1;;;2774:70:14;;17028:2:18;2774:70:14;;;17010:21:18;17067:2;17047:18;;;17040:30;17106:34;17086:18;;;17079:62;-1:-1:-1;;;17157:18:18;;;17150:35;17202:19;;2774:70:14;16826:401:18;2774:70:14;2895:154;2922:47;2941:27;2961:6;2941:19;:27::i;:::-;2922:18;:47::i;:::-;2895:154;;;;;;;;;;;;12656:25:18;;;;12729:4;12717:17;;12697:18;;;12690:45;12751:18;;;12744:34;;;12794:18;;;12787:34;;;12628:19;;2895:154:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2873:176:14;:6;-1:-1:-1;;;;;2873:176:14;;2854:195;;2586:470;;;;;;;:::o;2672:96:16:-;2730:7;2756:5;2760:1;2756;:5;:::i;:::-;2749:12;2672:96;-1:-1:-1;;;2672:96:16:o;7440:344:5:-;7533:4;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:5;7549:73;;;;-1:-1:-1;;;7549:73:5;;16213:2:18;7549:73:5;;;16195:21:18;16252:2;16232:18;;;16225:30;16291:34;16271:18;;;16264:62;-1:-1:-1;;;16342:18:18;;;16335:42;16394:19;;7549:73:5;16011:408:18;7549:73:5;7632:13;7648:23;7663:7;7648:14;:23::i;:::-;7632:39;;7700:5;-1:-1:-1;;;;;7689:16:5;:7;-1:-1:-1;;;;;7689:16:5;;:51;;;;7733:7;-1:-1:-1;;;;;7709:31:5;:20;7721:7;7709:11;:20::i;:::-;-1:-1:-1;;;;;7709:31:5;;7689:51;:87;;;;7744:32;7761:5;7768:7;7744:16;:32::i;10337:560::-;10491:4;-1:-1:-1;;;;;10464:31:5;:23;10479:7;10464:14;:23::i;:::-;-1:-1:-1;;;;;10464:31:5;;10456:85;;;;-1:-1:-1;;;10456:85:5;;20888:2:18;10456:85:5;;;20870:21:18;20927:2;20907:18;;;20900:30;20966:34;20946:18;;;20939:62;-1:-1:-1;;;21017:18:18;;;21010:39;21066:19;;10456:85:5;20686:405:18;10456:85:5;-1:-1:-1;;;;;10559:16:5;;10551:65;;;;-1:-1:-1;;;10551:65:5;;15454:2:18;10551:65:5;;;15436:21:18;15493:2;15473:18;;;15466:30;15532:34;15512:18;;;15505:62;-1:-1:-1;;;15583:18:18;;;15576:34;15627:19;;10551:65:5;15252:400:18;10551:65:5;10627:39;10648:4;10654:2;10658:7;10627:20;:39::i;:::-;10728:29;10745:1;10749:7;10728:8;:29::i;:::-;-1:-1:-1;;;;;10768:15:5;;;;;;:9;:15;;;;;:20;;10787:1;;10768:15;:20;;10787:1;;10768:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10798:13:5;;;;;;:9;:13;;;;;:18;;10815:1;;10798:13;:18;;10815:1;;10798:18;:::i;:::-;;;;-1:-1:-1;;10826:16:5;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10826:21:5;-1:-1:-1;;;;;10826:21:5;;;;;;;;;10863:27;;10826:16;;10863:27;;;;;;;10337:560;;;:::o;3767:96:16:-;3825:7;3851:5;3855:1;3851;:5;:::i;2462:817:12:-;2553:13;2582:27;2720:1;2705:12;;:16;;;;:::i;:::-;2613:88;2642:8;2664:1;2679:12;;2613:15;:88::i;:::-;:109;;;;:::i;:::-;2612:115;;2726:1;2612:115;:::i;:::-;2582:145;;2738:23;2907:12;;2890;;2875;;:27;;;;:::i;:::-;2765:106;2794:19;2827:8;2849:12;;2765:15;:106::i;:::-;:138;;;;:::i;:::-;2764:155;;;;:::i;:::-;2738:181;;2930:19;3087:8;;3074;;3063;;:19;;;;:::i;:::-;2953:106;2982:19;3015:12;;3041:8;2953:15;:106::i;:::-;:130;;;;:::i;:::-;2952:143;;;;:::i;:::-;2930:165;;3125:147;3177:19;3214:15;3247:11;3125:34;:147::i;:::-;3106:166;2462:817;-1:-1:-1;;;;;2462:817:12:o;3285:160::-;3384:4;3411:17;3429:8;3411:27;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;3285:160;-1:-1:-1;;3285:160:12:o;9076:372:5:-;-1:-1:-1;;;;;9155:16:5;;9147:61;;;;-1:-1:-1;;;9147:61:5;;19392:2:18;9147:61:5;;;19374:21:18;;;19411:18;;;19404:30;19470:34;19450:18;;;19443:62;19522:18;;9147:61:5;19190:356:18;9147:61:5;7222:4;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:5;:30;9218:58;;;;-1:-1:-1;;;9218:58:5;;15097:2:18;9218:58:5;;;15079:21:18;15136:2;15116:18;;;15109:30;15175;15155:18;;;15148:58;15223:18;;9218:58:5;14895:352:18;9218:58:5;9287:45;9316:1;9320:2;9324:7;9287:20;:45::i;:::-;-1:-1:-1;;;;;9343:13:5;;;;;;:9;:13;;;;;:18;;9360:1;;9343:13;:18;;9360:1;;9343:18;:::i;:::-;;;;-1:-1:-1;;9371:16:5;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9371:21:5;-1:-1:-1;;;;;9371:21:5;;;;;;;;9408:33;;9371:16;;;9408:33;;9371:16;;9408:33;9076:372;;:::o;2034:169:15:-;2108:6;;;-1:-1:-1;;;;;2124:17:15;;;-1:-1:-1;;;;;;2124:17:15;;;;;;;2156:40;;2108:6;;;2124:17;2108:6;;2156:40;;2089:16;;2156:40;2079:124;2034:169;:::o;6547:307:5:-;6698:28;6708:4;6714:2;6718:7;6698:9;:28::i;:::-;6744:48;6767:4;6773:2;6777:7;6786:5;6744:22;:48::i;:::-;6736:111;;;;-1:-1:-1;;;6736:111:5;;;;;;;:::i;275:703:17:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:17;;;;;;;;;;;;-1:-1:-1;;;574:10:17;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:17;;-1:-1:-1;720:2:17;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:17;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:17;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:17;;;;;;;;-1:-1:-1;919:11:17;928:2;919:11;;:::i;:::-;;;791:150;;2073:396:14;2180:7;296:106;;;;;;;;;;;;;;;;;273:139;;;;;;;2328:12;;2362:11;;;;2405:24;;;;;2395:35;;;;;;2249:199;;;;;12238:25:18;;;12294:2;12279:18;;12272:34;;;;-1:-1:-1;;;;;12342:32:18;12337:2;12322:18;;12315:60;12406:2;12391:18;;12384:34;12225:3;12210:19;;12007:417;2249:199:14;;;;;;;;;;;;;2222:240;;;;;;2203:259;;2073:396;;;:::o;1884:249:3:-;1980:7;2078:20;1341:15;;;1264:99;2078:20;2049:63;;-1:-1:-1;;;2049:63:3;;;9625:27:18;9668:11;;;9661:27;;;;9704:12;;;9697:28;;;9741:12;;2049:63:3;9367:392:18;2543:572:6;-1:-1:-1;;;;;2742:18:6;;2738:183;;2776:40;2808:7;3924:10;:17;;3897:24;;;;:15;:24;;;;;:44;;;3951:24;;;;;;;;;;;;3821:161;2776:40;2738:183;;;2845:2;-1:-1:-1;;;;;2837:10:6;:4;-1:-1:-1;;;;;2837:10:6;;2833:88;;2863:47;2896:4;2902:7;2863:32;:47::i;:::-;-1:-1:-1;;;;;2934:16:6;;2930:179;;2966:45;3003:7;2966:36;:45::i;2930:179::-;3038:4;-1:-1:-1;;;;;3032:10:6;:2;-1:-1:-1;;;;;3032:10:6;;3028:81;;3058:40;3086:2;3090:7;3058:27;:40::i;4593:689:12:-;4716:7;;4835:10;4867:11;4900:12;4934:15;4981:16;4996:1;4900:12;4981:16;:::i;:::-;4803:294;;;-1:-1:-1;;;;;11284:32:18;;;4803:294:12;;;11266:51:18;11333:18;;11326:34;;;;11376:18;;;11369:34;;;;11419:18;;;11412:34;4971:27:12;11462:19:18;;;11455:35;11506:19;;;11499:35;;;11550:19;;;11543:35;;;11594:19;;;11587:35;;;11238:19;;4803:294:12;;;-1:-1:-1;;4803:294:12;;;;;;;;;4776:335;;4803:294;4776:335;;;;;-1:-1:-1;5253:17:12;5265:5;4776:335;5253:17;:::i;:::-;5252:23;;5274:1;5252:23;:::i;3451:417::-;3603:13;3709:22;3725:5;3709:15;:22::i;:::-;3753:26;3769:9;3753:15;:26::i;:::-;3801:28;3817:11;3801:15;:28::i;:::-;3671:176;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3628:233;;3451:417;;;;;:::o;11732:782:5:-;11882:4;-1:-1:-1;;;;;11902:13:5;;1034:20:0;1080:8;11898:610:5;;11953:2;-1:-1:-1;;;;;11937:36:5;;11974:12;:10;:12::i;:::-;11988:4;11994:7;12003:5;11937:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11937:72:5;;;;;;;;-1:-1:-1;;11937:72:5;;;;;;;;;;;;:::i;:::-;;;11933:523;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12180:13:5;;12176:266;;12222:60;;-1:-1:-1;;;12222:60:5;;;;;;;:::i;12176:266::-;12394:6;12388:13;12379:6;12375:2;12371:15;12364:38;11933:523;-1:-1:-1;;;;;;12059:55:5;-1:-1:-1;;;12059:55:5;;-1:-1:-1;12052:62:5;;11898:610;-1:-1:-1;12493:4:5;11732:782;;;;;;:::o;4599:970:6:-;4861:22;4911:1;4886:22;4903:4;4886:16;:22::i;:::-;:26;;;;:::i;:::-;4922:18;4943:26;;;:17;:26;;;;;;4861:51;;-1:-1:-1;5073:28:6;;;5069:323;;-1:-1:-1;;;;;5139:18:6;;5117:19;5139:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5188:30;;;;;;:44;;;5304:30;;:17;:30;;;;;:43;;;5069:323;-1:-1:-1;5485:26:6;;;;:17;:26;;;;;;;;5478:33;;;-1:-1:-1;;;;;5528:18:6;;;;;:12;:18;;;;;:34;;;;;;;5521:41;4599:970::o;5857:1061::-;6131:10;:17;6106:22;;6131:21;;6151:1;;6131:21;:::i;:::-;6162:18;6183:24;;;:15;:24;;;;;;6551:10;:26;;6106:46;;-1:-1:-1;6183:24:6;;6106:46;;6551:26;;;;;;:::i;:::-;;;;;;;;;6529:48;;6613:11;6588:10;6599;6588:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6692:28;;;:15;:28;;;;;;;:41;;;6861:24;;;;;6854:31;6895:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5928:990;;;5857:1061;:::o;3409:217::-;3493:14;3510:20;3527:2;3510:16;:20::i;:::-;-1:-1:-1;;;;;3540:16:6;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3584:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3409:217:6:o;3874:713:12:-;3959:13;3992:8;3988:554;;-1:-1:-1;;4016:11:12;;;;;;;;;;;;-1:-1:-1;;;4016:11:12;;;;;3874:713::o;3988:554::-;4048:3;4055:1;4048:8;4044:498;;;-1:-1:-1;;4072:11:12;;;;;;;;;;;;-1:-1:-1;;;4072:11:12;;;;;3874:713::o;4044:498::-;4104:3;4111:1;4104:8;4100:442;;;-1:-1:-1;;4128:11:12;;;;;;;;;;;;-1:-1:-1;;;4128:11:12;;;;;3874:713::o;4100:442::-;4160:3;4167:1;4160:8;4156:386;;;-1:-1:-1;;4184:11:12;;;;;;;;;;;;-1:-1:-1;;;4184:11:12;;;;;3874:713::o;4156:386::-;4216:3;4223:1;4216:8;4212:330;;;-1:-1:-1;;4240:11:12;;;;;;;;;;;;-1:-1:-1;;;4240:11:12;;;;;3874:713::o;4212:330::-;4272:3;4279:1;4272:8;4268:274;;;-1:-1:-1;;4296:11:12;;;;;;;;;;;;-1:-1:-1;;;4296:11:12;;;;;3874:713::o;4268:274::-;4328:3;4335:1;4328:8;4324:218;;;-1:-1:-1;;4352:11:12;;;;;;;;;;;;-1:-1:-1;;;4352:11:12;;;;;3874:713::o;4324:218::-;4384:3;4391:1;4384:8;4380:162;;;-1:-1:-1;;4408:11:12;;;;;;;;;;;;-1:-1:-1;;;4408:11:12;;;;;3874:713::o;4380:162::-;4440:3;4447:1;4440:8;4436:106;;;-1:-1:-1;;4464:11:12;;;;;;;;;;;;-1:-1:-1;;;4464:11:12;;;;;3874:713::o;4436:106::-;4496:3;4503:1;4496:8;4492:50;;;-1:-1:-1;;4520:11:12;;;;;;;;;;;;-1:-1:-1;;;4520:11:12;;;;;3874:713::o;4492:50::-;4559:21;4576:3;4559:16;:21::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:18;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:18;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:160::-;715:20;;771:13;;764:21;754:32;;744:60;;800:1;797;790:12;744:60;650:160;;;:::o;815:220::-;857:5;910:3;903:4;895:6;891:17;887:27;877:55;;928:1;925;918:12;877:55;950:79;1025:3;1016:6;1003:20;996:4;988:6;984:17;950:79;:::i;1040:247::-;1099:6;1152:2;1140:9;1131:7;1127:23;1123:32;1120:52;;;1168:1;1165;1158:12;1120:52;1207:9;1194:23;1226:31;1251:5;1226:31;:::i;1292:388::-;1360:6;1368;1421:2;1409:9;1400:7;1396:23;1392:32;1389:52;;;1437:1;1434;1427:12;1389:52;1476:9;1463:23;1495:31;1520:5;1495:31;:::i;:::-;1545:5;-1:-1:-1;1602:2:18;1587:18;;1574:32;1615:33;1574:32;1615:33;:::i;:::-;1667:7;1657:17;;;1292:388;;;;;:::o;1685:456::-;1762:6;1770;1778;1831:2;1819:9;1810:7;1806:23;1802:32;1799:52;;;1847:1;1844;1837:12;1799:52;1886:9;1873:23;1905:31;1930:5;1905:31;:::i;:::-;1955:5;-1:-1:-1;2012:2:18;1997:18;;1984:32;2025:33;1984:32;2025:33;:::i;:::-;1685:456;;2077:7;;-1:-1:-1;;;2131:2:18;2116:18;;;;2103:32;;1685:456::o;2146:665::-;2241:6;2249;2257;2265;2318:3;2306:9;2297:7;2293:23;2289:33;2286:53;;;2335:1;2332;2325:12;2286:53;2374:9;2361:23;2393:31;2418:5;2393:31;:::i;:::-;2443:5;-1:-1:-1;2500:2:18;2485:18;;2472:32;2513:33;2472:32;2513:33;:::i;:::-;2565:7;-1:-1:-1;2619:2:18;2604:18;;2591:32;;-1:-1:-1;2674:2:18;2659:18;;2646:32;2701:18;2690:30;;2687:50;;;2733:1;2730;2723:12;2687:50;2756:49;2797:7;2788:6;2777:9;2773:22;2756:49;:::i;:::-;2746:59;;;2146:665;;;;;;;:::o;2816:315::-;2881:6;2889;2942:2;2930:9;2921:7;2917:23;2913:32;2910:52;;;2958:1;2955;2948:12;2910:52;2997:9;2984:23;3016:31;3041:5;3016:31;:::i;:::-;3066:5;-1:-1:-1;3090:35:18;3121:2;3106:18;;3090:35;:::i;:::-;3080:45;;2816:315;;;;;:::o;3136:758::-;3238:6;3246;3254;3262;3270;3323:3;3311:9;3302:7;3298:23;3294:33;3291:53;;;3340:1;3337;3330:12;3291:53;3379:9;3366:23;3398:31;3423:5;3398:31;:::i;:::-;3448:5;-1:-1:-1;3504:2:18;3489:18;;3476:32;3531:18;3520:30;;3517:50;;;3563:1;3560;3553:12;3517:50;3586:49;3627:7;3618:6;3607:9;3603:22;3586:49;:::i;:::-;3576:59;;;3682:2;3671:9;3667:18;3654:32;3644:42;;3733:2;3722:9;3718:18;3705:32;3695:42;;3789:3;3778:9;3774:19;3761:33;3838:4;3829:7;3825:18;3816:7;3813:31;3803:59;;3858:1;3855;3848:12;3803:59;3881:7;3871:17;;;3136:758;;;;;;;;:::o;3899:315::-;3967:6;3975;4028:2;4016:9;4007:7;4003:23;3999:32;3996:52;;;4044:1;4041;4034:12;3996:52;4083:9;4070:23;4102:31;4127:5;4102:31;:::i;:::-;4152:5;4204:2;4189:18;;;;4176:32;;-1:-1:-1;;;3899:315:18:o;4219:180::-;4275:6;4328:2;4316:9;4307:7;4303:23;4299:32;4296:52;;;4344:1;4341;4334:12;4296:52;4367:26;4383:9;4367:26;:::i;4404:245::-;4462:6;4515:2;4503:9;4494:7;4490:23;4486:32;4483:52;;;4531:1;4528;4521:12;4483:52;4570:9;4557:23;4589:30;4613:5;4589:30;:::i;4654:249::-;4723:6;4776:2;4764:9;4755:7;4751:23;4747:32;4744:52;;;4792:1;4789;4782:12;4744:52;4824:9;4818:16;4843:30;4867:5;4843:30;:::i;4908:280::-;5007:6;5060:2;5048:9;5039:7;5035:23;5031:32;5028:52;;;5076:1;5073;5066:12;5028:52;5108:9;5102:16;5127:31;5152:5;5127:31;:::i;5193:450::-;5262:6;5315:2;5303:9;5294:7;5290:23;5286:32;5283:52;;;5331:1;5328;5321:12;5283:52;5371:9;5358:23;5404:18;5396:6;5393:30;5390:50;;;5436:1;5433;5426:12;5390:50;5459:22;;5512:4;5504:13;;5500:27;-1:-1:-1;5490:55:18;;5541:1;5538;5531:12;5490:55;5564:73;5629:7;5624:2;5611:16;5606:2;5602;5598:11;5564:73;:::i;5648:180::-;5707:6;5760:2;5748:9;5739:7;5735:23;5731:32;5728:52;;;5776:1;5773;5766:12;5728:52;-1:-1:-1;5799:23:18;;5648:180;-1:-1:-1;5648:180:18:o;5833:268::-;5885:3;5923:5;5917:12;5950:6;5945:3;5938:19;5966:63;6022:6;6015:4;6010:3;6006:14;5999:4;5992:5;5988:16;5966:63;:::i;:::-;6083:2;6062:15;-1:-1:-1;;6058:29:18;6049:39;;;;6090:4;6045:50;;5833:268;-1:-1:-1;;5833:268:18:o;6106:184::-;6147:3;6185:5;6179:12;6200:52;6245:6;6240:3;6233:4;6226:5;6222:16;6200:52;:::i;:::-;6268:16;;;;;6106:184;-1:-1:-1;;6106:184:18:o;6413:274::-;6542:3;6580:6;6574:13;6596:53;6642:6;6637:3;6630:4;6622:6;6618:17;6596:53;:::i;:::-;6665:16;;;;;6413:274;-1:-1:-1;;6413:274:18:o;6692:415::-;6849:3;6887:6;6881:13;6903:53;6949:6;6944:3;6937:4;6929:6;6925:17;6903:53;:::i;:::-;7025:2;7021:15;;;;-1:-1:-1;;7017:53:18;6978:16;;;;7003:68;;;7098:2;7087:14;;6692:415;-1:-1:-1;;6692:415:18:o;7393:664::-;7620:3;7658:6;7652:13;7674:53;7720:6;7715:3;7708:4;7700:6;7696:17;7674:53;:::i;:::-;7790:13;;7749:16;;;;7812:57;7790:13;7749:16;7846:4;7834:17;;7812:57;:::i;:::-;7936:13;;7891:20;;;7958:57;7936:13;7891:20;7992:4;7980:17;;7958:57;:::i;:::-;8031:20;;7393:664;-1:-1:-1;;;;;7393:664:18:o;8062:1300::-;8339:3;8368:1;8401:6;8395:13;8431:3;8453:1;8481:9;8477:2;8473:18;8463:28;;8541:2;8530:9;8526:18;8563;8553:61;;8607:4;8599:6;8595:17;8585:27;;8553:61;8633:2;8681;8673:6;8670:14;8650:18;8647:38;8644:165;;;-1:-1:-1;;;8708:33:18;;8764:4;8761:1;8754:15;8794:4;8715:3;8782:17;8644:165;8825:18;8852:104;;;;8970:1;8965:320;;;;8818:467;;8852:104;-1:-1:-1;;8885:24:18;;8873:37;;8930:16;;;;-1:-1:-1;8852:104:18;;8965:320;22986:1;22979:14;;;23023:4;23010:18;;9060:1;9074:165;9088:6;9085:1;9082:13;9074:165;;;9166:14;;9153:11;;;9146:35;9209:16;;;;9103:10;;9074:165;;;9078:3;;9268:6;9263:3;9259:16;9252:23;;8818:467;;;;;;;9301:55;9326:29;9351:3;9343:6;9326:29;:::i;:::-;-1:-1:-1;;;6355:20:18;;6400:1;6391:11;;6295:113;9972:442;-1:-1:-1;;;;;10229:15:18;;;10211:34;;10281:15;;10276:2;10261:18;;10254:43;10333:2;10328;10313:18;;10306:30;;;10154:4;;10353:55;;10389:18;;10381:6;10353:55;:::i;10419:499::-;-1:-1:-1;;;;;10688:15:18;;;10670:34;;10740:15;;10735:2;10720:18;;10713:43;10787:2;10772:18;;10765:34;;;10835:3;10830:2;10815:18;;10808:31;;;10613:4;;10856:56;;10892:19;;10884:6;10856:56;:::i;:::-;10848:64;10419:499;-1:-1:-1;;;;;;10419:499:18:o;12832:228::-;12979:2;12968:9;12961:21;12942:4;12999:55;13050:2;13039:9;13035:18;13027:6;12999:55;:::i;13712:414::-;13914:2;13896:21;;;13953:2;13933:18;;;13926:30;13992:34;13987:2;13972:18;;13965:62;-1:-1:-1;;;14058:2:18;14043:18;;14036:48;14116:3;14101:19;;13712:414::o;19964:356::-;20166:2;20148:21;;;20185:18;;;20178:30;20244:34;20239:2;20224:18;;20217:62;20311:2;20296:18;;19964:356::o;21900:413::-;22102:2;22084:21;;;22141:2;22121:18;;;22114:30;22180:34;22175:2;22160:18;;22153:62;-1:-1:-1;;;22246:2:18;22231:18;;22224:47;22303:3;22288:19;;21900:413::o;23039:128::-;23079:3;23110:1;23106:6;23103:1;23100:13;23097:39;;;23116:18;;:::i;:::-;-1:-1:-1;23152:9:18;;23039:128::o;23172:120::-;23212:1;23238;23228:35;;23243:18;;:::i;:::-;-1:-1:-1;23277:9:18;;23172:120::o;23297:125::-;23337:4;23365:1;23362;23359:8;23356:34;;;23370:18;;:::i;:::-;-1:-1:-1;23407:9:18;;23297:125::o;23427:258::-;23499:1;23509:113;23523:6;23520:1;23517:13;23509:113;;;23599:11;;;23593:18;23580:11;;;23573:39;23545:2;23538:10;23509:113;;;23640:6;23637:1;23634:13;23631:48;;;-1:-1:-1;;23675:1:18;23657:16;;23650:27;23427:258::o;23690:380::-;23769:1;23765:12;;;;23812;;;23833:61;;23887:4;23879:6;23875:17;23865:27;;23833:61;23940:2;23932:6;23929:14;23909:18;23906:38;23903:161;;;23986:10;23981:3;23977:20;23974:1;23967:31;24021:4;24018:1;24011:15;24049:4;24046:1;24039:15;23903:161;;23690:380;;;:::o;24075:135::-;24114:3;-1:-1:-1;;24135:17:18;;24132:43;;;24155:18;;:::i;:::-;-1:-1:-1;24202:1:18;24191:13;;24075:135::o;24215:112::-;24247:1;24273;24263:35;;24278:18;;:::i;:::-;-1:-1:-1;24312:9:18;;24215:112::o;24332:127::-;24393:10;24388:3;24384:20;24381:1;24374:31;24424:4;24421:1;24414:15;24448:4;24445:1;24438:15;24464:127;24525:10;24520:3;24516:20;24513:1;24506:31;24556:4;24553:1;24546:15;24580:4;24577:1;24570:15;24596:127;24657:10;24652:3;24648:20;24645:1;24638:31;24688:4;24685:1;24678:15;24712:4;24709:1;24702:15;24728:127;24789:10;24784:3;24780:20;24777:1;24770:31;24820:4;24817:1;24810:15;24844:4;24841:1;24834:15;24860:127;24921:10;24916:3;24912:20;24909:1;24902:31;24952:4;24949:1;24942:15;24976:4;24973:1;24966:15;24992:131;-1:-1:-1;;;;;25067:31:18;;25057:42;;25047:70;;25113:1;25110;25103:12;25128:131;-1:-1:-1;;;;;;25202:32:18;;25192:43;;25182:71;;25249:1;25246;25239:12

Swarm Source

ipfs://2aa4125f057fa4407b6284bd1cd197f86d7df059bba3f51fd3090219ad44d96d
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.